Remove Creative Zen Vision and Vision:M ports

rockbox-gerrit-noreply--- via rockbox-cvs <[email protected]>
Newsgroups gmane.comp.systems.archos.rockbox.cvs
Message-ID <[email protected]>
commit 58b186d6de1febe934f0715eb1f8a823c9d4ecd6
Author: Aidan MacDonald <[email protected]>
Date:   Wed Feb 4 11:45:07 2026 +0000

    Remove Creative Zen Vision and Vision:M ports
    
    They haven't seen development activity for the better part
    of two decades and apparently were never able to even boot
    to Rockbox, although the Rockbox bootloader could load the
    original firmware.
    
    Change-Id: I5cfa5909c21feaf2825aa685a05e78044b893a13

diff --git a/apps/SOURCES b/apps/SOURCES
index 1898fa6284..923e979af5 100644
--- a/apps/SOURCES
+++ b/apps/SOURCES
@@ -215,10 +215,6 @@ keymaps/keymap-mr500.c
 keymaps/keymap-mr100.c
 #elif CONFIG_KEYPAD == COWON_D2_PAD
 keymaps/keymap-cowond2.c
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-keymaps/keymap-creativezvm.c
-#elif CONFIG_KEYPAD == CREATIVEZV_PAD
-keymaps/keymap-creativezv.c
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI2_PAD
 keymaps/keymap-zenxfi2.c
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 8f4e1d673c..117194b834 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -2601,31 +2601,6 @@ static bool dbg_isp1583(void)
 }
 #endif
 
-#if defined(CREATIVE_ZVx) && !defined(SIMULATOR)
-extern int pic_dbg_num_items(void);
-extern const char* pic_dbg_item(int selected_item, void *data,
-                                char *buffer, size_t buffer_len);
-
-static int pic_action_callback(int action, struct gui_synclist *lists)
-{
-    (void)lists;
-    if (action == ACTION_NONE)
-        action = ACTION_REDRAW;
-    return action;
-}
-
-static bool dbg_pic(void)
-{
-    struct simplelist_info pic;
-    pic.scroll_all = true;
-    simplelist_info_init(&pic, "PIC", pic_dbg_num_items(), NULL);
-    pic.timeout = HZ/100;
-    pic.get_name = pic_dbg_item;
-    pic.action_callback = pic_action_callback;
-    return simplelist_show_list(&pic);
-}
-#endif
-
 #if defined(HAVE_BOOTDATA) && !defined(SIMULATOR)
 static bool dbg_boot_data(void)
 {
@@ -2942,9 +2917,6 @@ static const struct {
 #if CONFIG_USBOTG == USBOTG_ISP1583
         { "View ISP1583 info", dbg_isp1583 },
 #endif
-#if defined(CREATIVE_ZVx) && !defined(SIMULATOR)
-        { "View PIC info", dbg_pic },
-#endif
 #ifdef ROCKBOX_HAS_LOGF
         {"Show Log File", logfdisplay },
         {"Dump Log File", logfdump },
diff --git a/apps/keymaps/keymap-creativezv.c b/apps/keymaps/keymap-creativezv.c
deleted file mode 100644
index 3242e8924f..0000000000
--- a/apps/keymaps/keymap-creativezv.c
+++ /dev/null
@@ -1,256 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2008 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-/* Button Code Definitions for the Creative Zen Vision target */
-/* Copied from ZVM target for now... */
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-
-#include "config.h"
-#include "action.h"
-#include "button.h"
-#include "settings.h"
-
-/*
- * The format of the list is as follows
- * { Action Code,   Button code,    Prereq button code }
- * if there's no need to check the previous button's value, use BUTTON_NONE
- * Insert LAST_ITEM_IN_LIST at the end of each mapping
- */
-
-/* CONTEXT_CUSTOM's used in this file...
-
-CONTEXT_CUSTOM|CONTEXT_TREE = the standard list/tree defines (without directions)
-CONTEXT_CUSTOM|CONTEXT_SETTINGS = the direction keys for the eq/col picker screens
-                                  i.e where up/down is inc/dec
-               CONTEXT_SETTINGS = up/down is prev/next, l/r is inc/dec
-
-*/
-
-static const struct button_mapping button_context_standard[]  = {
-    { ACTION_STD_PREV,          BUTTON_UP|BUTTON_REL,                  BUTTON_NONE },
-    { ACTION_STD_PREVREPEAT,    BUTTON_UP|BUTTON_REPEAT,               BUTTON_NONE },
-    { ACTION_STD_NEXT,          BUTTON_DOWN|BUTTON_REL,                BUTTON_NONE },
-    { ACTION_STD_NEXTREPEAT,    BUTTON_DOWN|BUTTON_REPEAT,             BUTTON_NONE },
-
-    { ACTION_STD_CANCEL,        BUTTON_LEFT,                           BUTTON_NONE },
-    { ACTION_STD_CANCEL,        BUTTON_POWER,                          BUTTON_NONE },
-
-    { ACTION_STD_CONTEXT,       BUTTON_SELECT|BUTTON_REPEAT,           BUTTON_SELECT },
-
-    { ACTION_STD_QUICKSCREEN,   BUTTON_MENU|BUTTON_REPEAT,             BUTTON_MENU },
-    { ACTION_STD_MENU,          BUTTON_MENU|BUTTON_REL,                BUTTON_MENU },
-
-    { ACTION_STD_OK,            BUTTON_SELECT|BUTTON_REL,              BUTTON_SELECT },
-    { ACTION_STD_OK,            BUTTON_RIGHT,                          BUTTON_NONE },
-
-    LAST_ITEM_IN_LIST
-}; /* button_context_standard */
-
-
-static const struct button_mapping button_context_wps[]  = {
-    { ACTION_WPS_PLAY,          BUTTON_PLAY|BUTTON_REL,         BUTTON_PLAY },
-    { ACTION_WPS_STOP,          BUTTON_PLAY|BUTTON_REPEAT,      BUTTON_NONE },
-
-    { ACTION_WPS_SKIPNEXT,      BUTTON_RIGHT|BUTTON_REL,        BUTTON_RIGHT },
-    { ACTION_WPS_SKIPPREV,      BUTTON_LEFT|BUTTON_REL,         BUTTON_LEFT },
-
-    { ACTION_WPS_SEEKBACK,      BUTTON_LEFT|BUTTON_REPEAT,      BUTTON_NONE },
-    { ACTION_WPS_SEEKFWD,       BUTTON_RIGHT|BUTTON_REPEAT,     BUTTON_NONE },
-    { ACTION_WPS_STOPSEEK,      BUTTON_LEFT|BUTTON_REL,         BUTTON_LEFT|BUTTON_REPEAT },
-    { ACTION_WPS_STOPSEEK,      BUTTON_RIGHT|BUTTON_REL,        BUTTON_RIGHT|BUTTON_REPEAT },
-
-    //{ ACTION_WPS_ABSETB_NEXTDIR,BUTTON_RIGHT,                   BUTTON_CUSTOM },
-    //{ ACTION_WPS_ABSETA_PREVDIR,BUTTON_LEFT,                    BUTTON_CUSTOM },
-    //{ ACTION_WPS_ABRESET,       BUTTON_CUSTOM|BUTTON_REPEAT,    BUTTON_NONE   },
-
-    { ACTION_WPS_VOLDOWN,       BUTTON_DOWN|BUTTON_REPEAT,      BUTTON_NONE },
-    { ACTION_WPS_VOLDOWN,       BUTTON_DOWN,                    BUTTON_NONE },
-    { ACTION_WPS_VOLUP,         BUTTON_UP|BUTTON_REPEAT,        BUTTON_NONE },
-    { ACTION_WPS_VOLUP,         BUTTON_UP,                      BUTTON_NONE },
-
-    { ACTION_WPS_PITCHSCREEN,   BUTTON_BACK|BUTTON_REPEAT,      BUTTON_BACK },
-
-    { ACTION_WPS_QUICKSCREEN,   BUTTON_MENU|BUTTON_REPEAT,      BUTTON_MENU },
-    { ACTION_WPS_MENU,          BUTTON_MENU|BUTTON_REL,         BUTTON_MENU },
-    { ACTION_WPS_VIEW_PLAYLIST, BUTTON_POWER,                   BUTTON_NONE },
-    { ACTION_WPS_CONTEXT,       BUTTON_SELECT|BUTTON_REPEAT,    BUTTON_SELECT },
-
-    { ACTION_WPS_HOTKEY,        BUTTON_BACK|BUTTON_REL,         BUTTON_NONE },
-    { ACTION_WPS_BROWSE,        BUTTON_SELECT|BUTTON_REL,       BUTTON_BACK },
-    LAST_ITEM_IN_LIST
-}; /* button_context_wps */
-
-static const struct button_mapping button_context_list[]  = {
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_list */
-
-static const struct button_mapping button_context_tree[]  = {
-    { ACTION_TREE_WPS,    BUTTON_PLAY|BUTTON_REL,         BUTTON_PLAY },
-    { ACTION_TREE_STOP,   BUTTON_POWER,                   BUTTON_NONE },
-    { ACTION_TREE_STOP,   BUTTON_POWER|BUTTON_REL,        BUTTON_POWER },
-    { ACTION_TREE_STOP,   BUTTON_POWER|BUTTON_REPEAT,     BUTTON_NONE },
-    { ACTION_TREE_HOTKEY, BUTTON_BACK|BUTTON_REL,         BUTTON_NONE },
-
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_LIST)
-}; /* button_context_tree */
-
-static const struct button_mapping button_context_listtree_scroll_without_combo[]  = {
-    { ACTION_NONE,              BUTTON_LEFT,                BUTTON_NONE },
-    { ACTION_STD_CANCEL,        BUTTON_LEFT|BUTTON_REL,     BUTTON_LEFT },
-    { ACTION_TREE_ROOT_INIT,    BUTTON_LEFT|BUTTON_REPEAT,  BUTTON_LEFT },
-    { ACTION_TREE_PGLEFT,       BUTTON_LEFT|BUTTON_REPEAT,  BUTTON_NONE },
-    { ACTION_NONE,              BUTTON_RIGHT,               BUTTON_NONE },
-    { ACTION_STD_OK,            BUTTON_RIGHT|BUTTON_REL,    BUTTON_RIGHT },
-    { ACTION_TREE_PGRIGHT,      BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_TREE),
-};
-
-static const struct button_mapping button_context_settings[]  = {
-    { ACTION_SETTINGS_INC,          BUTTON_UP,                      BUTTON_NONE },
-    { ACTION_SETTINGS_INCREPEAT,    BUTTON_UP|BUTTON_REPEAT,        BUTTON_UP },
-    { ACTION_SETTINGS_DEC,          BUTTON_DOWN,                    BUTTON_NONE },
-    { ACTION_SETTINGS_DECREPEAT,    BUTTON_DOWN|BUTTON_REPEAT,      BUTTON_DOWN },
-    { ACTION_STD_PREV,              BUTTON_LEFT,                    BUTTON_NONE },
-    { ACTION_STD_PREVREPEAT,        BUTTON_LEFT|BUTTON_REPEAT,      BUTTON_LEFT },
-    { ACTION_STD_NEXT,              BUTTON_RIGHT,                   BUTTON_NONE },
-    { ACTION_STD_NEXTREPEAT,        BUTTON_RIGHT|BUTTON_REPEAT,     BUTTON_RIGHT },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_settings */
-
-static const struct button_mapping button_context_settings_right_is_inc[]  = {
-    { ACTION_SETTINGS_INC,          BUTTON_RIGHT,               BUTTON_NONE },
-    { ACTION_SETTINGS_INCREPEAT,    BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
-    { ACTION_SETTINGS_DEC,          BUTTON_LEFT,                BUTTON_NONE },
-    { ACTION_SETTINGS_DECREPEAT,    BUTTON_LEFT|BUTTON_REPEAT,  BUTTON_NONE },
-    { ACTION_STD_PREV,              BUTTON_UP,                  BUTTON_NONE },
-    { ACTION_STD_PREVREPEAT,        BUTTON_UP|BUTTON_REPEAT,    BUTTON_NONE },
-    { ACTION_STD_NEXT,              BUTTON_DOWN,                BUTTON_NONE },
-    { ACTION_STD_NEXTREPEAT,        BUTTON_DOWN|BUTTON_REPEAT,  BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_settingsgraphical */
-
-static const struct button_mapping button_context_yesno[]  = {
-    { ACTION_YESNO_ACCEPT,          BUTTON_SELECT,                  BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_settings_yesno */
-
-static const struct button_mapping button_context_colorchooser[]  = {
-    { ACTION_STD_OK,            BUTTON_BACK|BUTTON_REL,   BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_SETTINGS),
-}; /* button_context_colorchooser */
-
-static const struct button_mapping button_context_eq[]  = {
-    { ACTION_STD_OK,            BUTTON_SELECT|BUTTON_REL,   BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_SETTINGS),
-}; /* button_context_eq */
-
-/** Bookmark Screen **/
-static const struct button_mapping button_context_bmark[]  = {
-    { ACTION_BMS_DELETE,       BUTTON_BACK, BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_LIST),
-}; /* button_context_bmark */
-
-static const struct button_mapping button_context_time[]  = {
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_SETTINGS),
-}; /* button_context_time */
-
-static const struct button_mapping button_context_quickscreen[]  = {
-    { ACTION_QS_TOP,        BUTTON_UP,                      BUTTON_NONE },
-    { ACTION_QS_TOP,        BUTTON_UP|BUTTON_REPEAT,        BUTTON_NONE },
-    { ACTION_QS_DOWN,       BUTTON_DOWN,                    BUTTON_NONE },
-    { ACTION_QS_DOWN,       BUTTON_DOWN|BUTTON_REPEAT,      BUTTON_NONE },
-    { ACTION_QS_LEFT,       BUTTON_LEFT,                    BUTTON_NONE },
-    { ACTION_QS_LEFT,       BUTTON_LEFT|BUTTON_REPEAT,      BUTTON_NONE },
-    { ACTION_QS_RIGHT,      BUTTON_RIGHT,                   BUTTON_NONE },
-    { ACTION_QS_RIGHT,      BUTTON_RIGHT|BUTTON_REPEAT,     BUTTON_NONE },
-    { ACTION_STD_CANCEL,    BUTTON_MENU,                    BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_quickscreen */
-
-static const struct button_mapping button_context_pitchscreen[]  = {
-
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_pitchcreen */
-
-static const struct button_mapping button_context_keyboard[]  = {
-    { ACTION_KBD_LEFT,         BUTTON_LEFT,                             BUTTON_NONE },
-    { ACTION_KBD_LEFT,         BUTTON_LEFT|BUTTON_REPEAT,               BUTTON_NONE },
-    { ACTION_KBD_RIGHT,        BUTTON_RIGHT,                            BUTTON_NONE },
-    { ACTION_KBD_RIGHT,        BUTTON_RIGHT|BUTTON_REPEAT,              BUTTON_NONE },
-    { ACTION_KBD_CURSOR_LEFT,  BUTTON_CUSTOM,                           BUTTON_NONE },
-    { ACTION_KBD_CURSOR_LEFT,  BUTTON_CUSTOM|BUTTON_REPEAT,             BUTTON_NONE },
-    { ACTION_KBD_CURSOR_RIGHT, BUTTON_PLAY,                             BUTTON_NONE },
-    { ACTION_KBD_CURSOR_RIGHT, BUTTON_PLAY|BUTTON_REPEAT,               BUTTON_NONE },
-    { ACTION_KBD_SELECT,       BUTTON_SELECT,                           BUTTON_NONE },
-    { ACTION_KBD_PAGE_FLIP,    BUTTON_BACK|BUTTON_MENU,                 BUTTON_NONE },
-    { ACTION_KBD_DONE,         BUTTON_PLAY|BUTTON_REL,                  BUTTON_PLAY },
-    { ACTION_KBD_ABORT,        BUTTON_BACK|BUTTON_REL,                  BUTTON_BACK },
-    { ACTION_KBD_BACKSPACE,    BUTTON_MENU,                             BUTTON_NONE },
-    { ACTION_KBD_BACKSPACE,    BUTTON_MENU|BUTTON_REPEAT,               BUTTON_NONE },
-    { ACTION_KBD_UP,           BUTTON_UP,                               BUTTON_NONE },
-    { ACTION_KBD_UP,           BUTTON_UP|BUTTON_REPEAT,                 BUTTON_NONE },
-    { ACTION_KBD_DOWN,         BUTTON_DOWN,                             BUTTON_NONE },
-    { ACTION_KBD_DOWN,         BUTTON_DOWN|BUTTON_REPEAT,               BUTTON_NONE },
-    { ACTION_KBD_MORSE_SELECT, BUTTON_SELECT|BUTTON_REL,                BUTTON_NONE },
-    LAST_ITEM_IN_LIST
-}; /* button_context_keyboard */
-
-const struct button_mapping* get_context_mapping(int context)
-{
-    switch (context&~CONTEXT_REMOTE)
-    {
-        case CONTEXT_STD:
-            return button_context_standard;
-        case CONTEXT_WPS:
-            return button_context_wps;
-        case CONTEXT_LIST:
-            return button_context_list;
-        case CONTEXT_MAINMENU:
-        case CONTEXT_TREE:
-            return button_context_listtree_scroll_without_combo;
-        case CONTEXT_CUSTOM|CONTEXT_TREE:
-            return button_context_tree;
-        case CONTEXT_SETTINGS:
-            return button_context_settings;
-        case CONTEXT_CUSTOM|CONTEXT_SETTINGS:
-            return button_context_settings_right_is_inc;
-        case CONTEXT_SETTINGS_COLOURCHOOSER:
-            return button_context_colorchooser;
-        case CONTEXT_SETTINGS_EQ:
-            return button_context_eq;
-        case CONTEXT_SETTINGS_TIME:
-            return button_context_time;
-        case CONTEXT_YESNOSCREEN:
-            return button_context_yesno;
-        case CONTEXT_BOOKMARKSCREEN:
-            return button_context_bmark;
-        case CONTEXT_QUICKSCREEN:
-            return button_context_quickscreen;
-        case CONTEXT_PITCHSCREEN:
-            return button_context_pitchscreen;
-        case CONTEXT_KEYBOARD:
-        case CONTEXT_MORSE_INPUT:
-            return button_context_keyboard;
-    }
-    return button_context_standard;
-}
diff --git a/apps/keymaps/keymap-creativezvm.c b/apps/keymaps/keymap-creativezvm.c
deleted file mode 100644
index 47b24bf8b3..0000000000
--- a/apps/keymaps/keymap-creativezvm.c
+++ /dev/null
@@ -1,255 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2008 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-/* Button Code Definitions for the Creative Zen Vision:M target */
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-
-#include "config.h"
-#include "action.h"
-#include "button.h"
-#include "settings.h"
-
-/*
- * The format of the list is as follows
- * { Action Code,   Button code,    Prereq button code }
- * if there's no need to check the previous button's value, use BUTTON_NONE
- * Insert LAST_ITEM_IN_LIST at the end of each mapping
- */
-
-/* CONTEXT_CUSTOM's used in this file...
-
-CONTEXT_CUSTOM|CONTEXT_TREE = the standard list/tree defines (without directions)
-CONTEXT_CUSTOM|CONTEXT_SETTINGS = the direction keys for the eq/col picker screens
-                                  i.e where up/down is inc/dec
-               CONTEXT_SETTINGS = up/down is prev/next, l/r is inc/dec
-
-*/
-
-static const struct button_mapping button_context_standard[]  = {
-    { ACTION_STD_PREV,          BUTTON_UP|BUTTON_REL,                  BUTTON_NONE },
-    { ACTION_STD_PREVREPEAT,    BUTTON_UP|BUTTON_REPEAT,               BUTTON_NONE },
-    { ACTION_STD_NEXT,          BUTTON_DOWN|BUTTON_REL,                BUTTON_NONE },
-    { ACTION_STD_NEXTREPEAT,    BUTTON_DOWN|BUTTON_REPEAT,             BUTTON_NONE },
-
-    { ACTION_STD_CANCEL,        BUTTON_LEFT,                           BUTTON_NONE },
-    { ACTION_STD_CANCEL,        BUTTON_POWER,                          BUTTON_NONE },
-
-    { ACTION_STD_CONTEXT,       BUTTON_SELECT|BUTTON_REPEAT,           BUTTON_SELECT },
-
-    { ACTION_STD_QUICKSCREEN,   BUTTON_MENU|BUTTON_REPEAT,             BUTTON_MENU },
-    { ACTION_STD_MENU,          BUTTON_MENU|BUTTON_REL,                BUTTON_MENU },
-
-    { ACTION_STD_OK,            BUTTON_SELECT|BUTTON_REL,              BUTTON_SELECT },
-    { ACTION_STD_OK,            BUTTON_RIGHT,                          BUTTON_NONE },
-
-    LAST_ITEM_IN_LIST
-}; /* button_context_standard */
-
-
-static const struct button_mapping button_context_wps[]  = {
-    { ACTION_WPS_PLAY,          BUTTON_PLAY|BUTTON_REL,         BUTTON_PLAY },
-    { ACTION_WPS_STOP,          BUTTON_PLAY|BUTTON_REPEAT,      BUTTON_NONE },
-
-    { ACTION_WPS_SKIPNEXT,      BUTTON_RIGHT|BUTTON_REL,        BUTTON_RIGHT },
-    { ACTION_WPS_SKIPPREV,      BUTTON_LEFT|BUTTON_REL,         BUTTON_LEFT },
-
-    { ACTION_WPS_SEEKBACK,      BUTTON_LEFT|BUTTON_REPEAT,      BUTTON_NONE },
-    { ACTION_WPS_SEEKFWD,       BUTTON_RIGHT|BUTTON_REPEAT,     BUTTON_NONE },
-    { ACTION_WPS_STOPSEEK,      BUTTON_LEFT|BUTTON_REL,         BUTTON_LEFT|BUTTON_REPEAT },
-    { ACTION_WPS_STOPSEEK,      BUTTON_RIGHT|BUTTON_REL,        BUTTON_RIGHT|BUTTON_REPEAT },
-
-    //{ ACTION_WPS_ABSETB_NEXTDIR,BUTTON_RIGHT,                   BUTTON_CUSTOM },
-    //{ ACTION_WPS_ABSETA_PREVDIR,BUTTON_LEFT,                    BUTTON_CUSTOM },
-    //{ ACTION_WPS_ABRESET,       BUTTON_CUSTOM|BUTTON_REPEAT,    BUTTON_NONE   },
-
-    { ACTION_WPS_VOLDOWN,       BUTTON_DOWN|BUTTON_REPEAT,      BUTTON_NONE },
-    { ACTION_WPS_VOLDOWN,       BUTTON_DOWN,                    BUTTON_NONE },
-    { ACTION_WPS_VOLUP,         BUTTON_UP|BUTTON_REPEAT,        BUTTON_NONE },
-    { ACTION_WPS_VOLUP,         BUTTON_UP,                      BUTTON_NONE },
-
-    { ACTION_WPS_PITCHSCREEN,   BUTTON_BACK|BUTTON_REPEAT,      BUTTON_BACK },
-
-    { ACTION_WPS_QUICKSCREEN,   BUTTON_MENU|BUTTON_REPEAT,      BUTTON_MENU },
-    { ACTION_WPS_MENU,          BUTTON_MENU|BUTTON_REL,         BUTTON_MENU },
-    { ACTION_WPS_VIEW_PLAYLIST, BUTTON_POWER,                   BUTTON_NONE },
-    { ACTION_WPS_CONTEXT,       BUTTON_SELECT|BUTTON_REPEAT,    BUTTON_SELECT },
-
-    { ACTION_WPS_HOTKEY,        BUTTON_BACK|BUTTON_REL,         BUTTON_NONE },
-    { ACTION_WPS_BROWSE,        BUTTON_SELECT|BUTTON_REL,       BUTTON_BACK },
-    LAST_ITEM_IN_LIST
-}; /* button_context_wps */
-
-static const struct button_mapping button_context_list[]  = {
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_list */
-
-static const struct button_mapping button_context_tree[]  = {
-    { ACTION_TREE_WPS,    BUTTON_PLAY|BUTTON_REL,         BUTTON_PLAY },
-    { ACTION_TREE_STOP,   BUTTON_POWER,                   BUTTON_NONE },
-    { ACTION_TREE_STOP,   BUTTON_POWER|BUTTON_REL,        BUTTON_POWER },
-    { ACTION_TREE_STOP,   BUTTON_POWER|BUTTON_REPEAT,     BUTTON_NONE },
-    { ACTION_TREE_HOTKEY, BUTTON_BACK|BUTTON_REL,         BUTTON_NONE },
-
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_LIST)
-}; /* button_context_tree */
-
-static const struct button_mapping button_context_listtree_scroll_without_combo[]  = {
-    { ACTION_NONE,              BUTTON_LEFT,                BUTTON_NONE },
-    { ACTION_STD_CANCEL,        BUTTON_LEFT|BUTTON_REL,     BUTTON_LEFT },
-    { ACTION_TREE_ROOT_INIT,    BUTTON_LEFT|BUTTON_REPEAT,  BUTTON_LEFT },
-    { ACTION_TREE_PGLEFT,       BUTTON_LEFT|BUTTON_REPEAT,  BUTTON_NONE },
-    { ACTION_NONE,              BUTTON_RIGHT,               BUTTON_NONE },
-    { ACTION_STD_OK,            BUTTON_RIGHT|BUTTON_REL,    BUTTON_RIGHT },
-    { ACTION_TREE_PGRIGHT,      BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_TREE),
-};
-
-static const struct button_mapping button_context_settings[]  = {
-    { ACTION_SETTINGS_INC,          BUTTON_UP,                      BUTTON_NONE },
-    { ACTION_SETTINGS_INCREPEAT,    BUTTON_UP|BUTTON_REPEAT,        BUTTON_UP },
-    { ACTION_SETTINGS_DEC,          BUTTON_DOWN,                    BUTTON_NONE },
-    { ACTION_SETTINGS_DECREPEAT,    BUTTON_DOWN|BUTTON_REPEAT,      BUTTON_DOWN },
-    { ACTION_STD_PREV,              BUTTON_LEFT,                    BUTTON_NONE },
-    { ACTION_STD_PREVREPEAT,        BUTTON_LEFT|BUTTON_REPEAT,      BUTTON_LEFT },
-    { ACTION_STD_NEXT,              BUTTON_RIGHT,                   BUTTON_NONE },
-    { ACTION_STD_NEXTREPEAT,        BUTTON_RIGHT|BUTTON_REPEAT,     BUTTON_RIGHT },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_settings */
-
-static const struct button_mapping button_context_settings_right_is_inc[]  = {
-    { ACTION_SETTINGS_INC,          BUTTON_RIGHT,               BUTTON_NONE },
-    { ACTION_SETTINGS_INCREPEAT,    BUTTON_RIGHT|BUTTON_REPEAT, BUTTON_NONE },
-    { ACTION_SETTINGS_DEC,          BUTTON_LEFT,                BUTTON_NONE },
-    { ACTION_SETTINGS_DECREPEAT,    BUTTON_LEFT|BUTTON_REPEAT,  BUTTON_NONE },
-    { ACTION_STD_PREV,              BUTTON_UP,                  BUTTON_NONE },
-    { ACTION_STD_PREVREPEAT,        BUTTON_UP|BUTTON_REPEAT,    BUTTON_NONE },
-    { ACTION_STD_NEXT,              BUTTON_DOWN,                BUTTON_NONE },
-    { ACTION_STD_NEXTREPEAT,        BUTTON_DOWN|BUTTON_REPEAT,  BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_settingsgraphical */
-
-static const struct button_mapping button_context_yesno[]  = {
-    { ACTION_YESNO_ACCEPT,          BUTTON_SELECT,                  BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_settings_yesno */
-
-static const struct button_mapping button_context_colorchooser[]  = {
-    { ACTION_STD_OK,            BUTTON_BACK|BUTTON_REL,   BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_SETTINGS),
-}; /* button_context_colorchooser */
-
-static const struct button_mapping button_context_eq[]  = {
-    { ACTION_STD_OK,            BUTTON_SELECT|BUTTON_REL,   BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_CUSTOM|CONTEXT_SETTINGS),
-}; /* button_context_eq */
-
-/** Bookmark Screen **/
-static const struct button_mapping button_context_bmark[]  = {
-    { ACTION_BMS_DELETE,       BUTTON_BACK, BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_LIST),
-}; /* button_context_bmark */
-
-static const struct button_mapping button_context_time[]  = {
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_SETTINGS),
-}; /* button_context_time */
-
-static const struct button_mapping button_context_quickscreen[]  = {
-    { ACTION_QS_TOP,        BUTTON_UP,                      BUTTON_NONE },
-    { ACTION_QS_TOP,        BUTTON_UP|BUTTON_REPEAT,        BUTTON_NONE },
-    { ACTION_QS_DOWN,       BUTTON_DOWN,                    BUTTON_NONE },
-    { ACTION_QS_DOWN,       BUTTON_DOWN|BUTTON_REPEAT,      BUTTON_NONE },
-    { ACTION_QS_LEFT,       BUTTON_LEFT,                    BUTTON_NONE },
-    { ACTION_QS_LEFT,       BUTTON_LEFT|BUTTON_REPEAT,      BUTTON_NONE },
-    { ACTION_QS_RIGHT,      BUTTON_RIGHT,                   BUTTON_NONE },
-    { ACTION_QS_RIGHT,      BUTTON_RIGHT|BUTTON_REPEAT,     BUTTON_NONE },
-    { ACTION_STD_CANCEL,    BUTTON_MENU,                    BUTTON_NONE },
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_quickscreen */
-
-static const struct button_mapping button_context_pitchscreen[]  = {
-
-    LAST_ITEM_IN_LIST__NEXTLIST(CONTEXT_STD)
-}; /* button_context_pitchcreen */
-
-static const struct button_mapping button_context_keyboard[]  = {
-    { ACTION_KBD_LEFT,         BUTTON_LEFT,                             BUTTON_NONE },
-    { ACTION_KBD_LEFT,         BUTTON_LEFT|BUTTON_REPEAT,               BUTTON_NONE },
-    { ACTION_KBD_RIGHT,        BUTTON_RIGHT,                            BUTTON_NONE },
-    { ACTION_KBD_RIGHT,        BUTTON_RIGHT|BUTTON_REPEAT,              BUTTON_NONE },
-    { ACTION_KBD_CURSOR_LEFT,  BUTTON_CUSTOM,                           BUTTON_NONE },
-    { ACTION_KBD_CURSOR_LEFT,  BUTTON_CUSTOM|BUTTON_REPEAT,             BUTTON_NONE },
-    { ACTION_KBD_CURSOR_RIGHT, BUTTON_PLAY,                             BUTTON_NONE },
-    { ACTION_KBD_CURSOR_RIGHT, BUTTON_PLAY|BUTTON_REPEAT,               BUTTON_NONE },
-    { ACTION_KBD_SELECT,       BUTTON_SELECT,                           BUTTON_NONE },
-    { ACTION_KBD_PAGE_FLIP,    BUTTON_BACK|BUTTON_MENU,                 BUTTON_NONE },
-    { ACTION_KBD_DONE,         BUTTON_PLAY|BUTTON_REL,                  BUTTON_PLAY },
-    { ACTION_KBD_ABORT,        BUTTON_BACK|BUTTON_REL,                  BUTTON_BACK },
-    { ACTION_KBD_BACKSPACE,    BUTTON_MENU,                             BUTTON_NONE },
-    { ACTION_KBD_BACKSPACE,    BUTTON_MENU|BUTTON_REPEAT,               BUTTON_NONE },
-    { ACTION_KBD_UP,           BUTTON_UP,                               BUTTON_NONE },
-    { ACTION_KBD_UP,           BUTTON_UP|BUTTON_REPEAT,                 BUTTON_NONE },
-    { ACTION_KBD_DOWN,         BUTTON_DOWN,                             BUTTON_NONE },
-    { ACTION_KBD_DOWN,         BUTTON_DOWN|BUTTON_REPEAT,               BUTTON_NONE },
-    { ACTION_KBD_MORSE_SELECT, BUTTON_SELECT|BUTTON_REL,                BUTTON_NONE },
-    LAST_ITEM_IN_LIST
-}; /* button_context_keyboard */
-
-const struct button_mapping* get_context_mapping(int context)
-{
-    switch (context&~CONTEXT_REMOTE)
-    {
-        case CONTEXT_STD:
-            return button_context_standard;
-        case CONTEXT_WPS:
-            return button_context_wps;
-        case CONTEXT_LIST:
-            return button_context_list;
-        case CONTEXT_MAINMENU:
-        case CONTEXT_TREE:
-            return button_context_listtree_scroll_without_combo;
-        case CONTEXT_CUSTOM|CONTEXT_TREE:
-            return button_context_tree;
-        case CONTEXT_SETTINGS:
-            return button_context_settings;
-        case CONTEXT_CUSTOM|CONTEXT_SETTINGS:
-            return button_context_settings_right_is_inc;
-        case CONTEXT_SETTINGS_COLOURCHOOSER:
-            return button_context_colorchooser;
-        case CONTEXT_SETTINGS_EQ:
-            return button_context_eq;
-        case CONTEXT_SETTINGS_TIME:
-            return button_context_time;
-        case CONTEXT_YESNOSCREEN:
-            return button_context_yesno;
-        case CONTEXT_BOOKMARKSCREEN:
-            return button_context_bmark;
-        case CONTEXT_QUICKSCREEN:
-            return button_context_quickscreen;
-        case CONTEXT_PITCHSCREEN:
-            return button_context_pitchscreen;
-        case CONTEXT_KEYBOARD:
-        case CONTEXT_MORSE_INPUT:
-            return button_context_keyboard;
-    }
-    return button_context_standard;
-}
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index de9eb1d942..c244096637 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -14919,7 +14919,7 @@
   user: core
   <source>
     *: "Press LEFT to cancel."
-    android,hifietma*,zenvision: "Press BACK to cancel."
+    android,hifietma*: "Press BACK to cancel."
     cowond2,creativezenxfi2,ibassodx50,ibassodx90,mrobe500,ondavx747: "Press POWER to cancel."
     ihifi760,ihifi960: "Double tap RETURN to cancel."
     ihifi770,ihifi770c,ihifi800: "Press HOME to cancel."
@@ -14934,7 +14934,7 @@
   </source>
   <dest>
     *: "Press LEFT to cancel."
-    android,hifietma*,zenvision: "Press BACK to cancel."
+    android,hifietma*: "Press BACK to cancel."
     cowond2,creativezenxfi2,ibassodx50,ibassodx90,mrobe500,ondavx747: "Press POWER to cancel."
     ihifi760,ihifi960: "Double tap RETURN to cancel."
     ihifi770,ihifi770c,ihifi800: "Press HOME to cancel."
@@ -14949,7 +14949,7 @@
   </dest>
   <voice>
     *: "Press LEFT to cancel."
-    android,hifietma*,zenvision: "Press BACK to cancel."
+    android,hifietma*: "Press BACK to cancel."
     cowond2,creativezenxfi2,ibassodx50,ibassodx90,mrobe500,ondavx747: "Press POWER to cancel."
     ihifi760,ihifi960: "Double tap RETURN to cancel."
     ihifi770,ihifi770c,ihifi800: "Press HOME to cancel."
diff --git a/apps/plugins/battery_bench.c b/apps/plugins/battery_bench.c
index fc67b306b0..6245340fb3 100644
--- a/apps/plugins/battery_bench.c
+++ b/apps/plugins/battery_bench.c
@@ -150,12 +150,6 @@ struct battery_tables_t {
 #define BATTERY_OFF BUTTON_POWER
 #define BATTERY_OFF_TXT "POWER"
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define BATTERY_ON BUTTON_PLAY
-#define BATTERY_ON_TXT  "PLAY - start"
-#define BATTERY_OFF BUTTON_BACK
-#define BATTERY_OFF_TXT "BACK"
-
 #elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
 
 #define BATTERY_ON  BUTTON_MENU
diff --git a/apps/plugins/blackjack.c b/apps/plugins/blackjack.c
index b39aa4b2f4..10272f90e4 100644
--- a/apps/plugins/blackjack.c
+++ b/apps/plugins/blackjack.c
@@ -237,22 +237,6 @@ enum {
 #define BJACK_QUIT          BUTTON_POWER
 #define BJACK_DOUBLEDOWN    BUTTON_MINUS
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define BJACK_SELECT_NAME    "SELECT"
-#define BJACK_STAY_NAME     "PLAY"
-#define BJACK_QUIT_NAME     "POWER"
-#define BJACK_DOUBLE_NAME   "CUSTOM"
-#define BJACK_SELECT        BUTTON_SELECT
-#define BJACK_QUIT          BUTTON_POWER
-#define BJACK_STAY          BUTTON_PLAY
-#define BJACK_MAX           (BUTTON_CUSTOM|BUTTON_UP)
-#define BJACK_MIN           (BUTTON_CUSTOM|BUTTON_DOWN)
-#define BJACK_DOUBLEDOWN    BUTTON_CUSTOM
-#define BJACK_UP            BUTTON_UP
-#define BJACK_DOWN          BUTTON_DOWN
-#define BJACK_RIGHT         BUTTON_RIGHT
-#define BJACK_LEFT          BUTTON_LEFT
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define BJACK_SELECT_NAME   "PLAY"
 #define BJACK_STAY_NAME     "MENU"
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c
index 121a96cdda..bb34219895 100644
--- a/apps/plugins/brickmania.c
+++ b/apps/plugins/brickmania.c
@@ -169,14 +169,6 @@ CONFIG_KEYPAD == SANSA_M200_PAD
 #define DOWN BUTTON_RC_VOL_DOWN
 #define RC_QUIT BUTTON_REC
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define QUIT BUTTON_BACK
-#define LEFT BUTTON_LEFT
-#define RIGHT BUTTON_RIGHT
-#define SELECT BUTTON_SELECT
-#define UP BUTTON_UP
-#define DOWN BUTTON_DOWN
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define QUIT BUTTON_POWER
 #define LEFT BUTTON_BACK
@@ -1504,8 +1496,7 @@ static int brickmania_help(void)
         "Releases", "the", "ball/Fire!", "",                            /* 30 */
 #if CONFIG_KEYPAD == IAUDIO_M3_PAD
         "REC:",
-#elif (CONFIG_KEYPAD == GIGABEAT_S_PAD) || \
-      (CONFIG_KEYPAD == CREATIVEZVM_PAD)
+#elif (CONFIG_KEYPAD == GIGABEAT_S_PAD)
         "BACK:",
 #elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
       (CONFIG_KEYPAD == IPOD_3G_PAD) || \
diff --git a/apps/plugins/calculator.c b/apps/plugins/calculator.c
index f4790a00cd..5e69e1f12a 100644
--- a/apps/plugins/calculator.c
+++ b/apps/plugins/calculator.c
@@ -269,17 +269,6 @@ F3: equal to "="
 #define CALCULATOR_QUIT           BUTTON_POWER
 #define CALCULATOR_CLEAR          BUTTON_MENU
 
-#elif (CONFIG_KEYPAD == CREATIVEZVM_PAD)
-
-#define CALCULATOR_LEFT  BUTTON_LEFT
-#define CALCULATOR_RIGHT BUTTON_RIGHT
-#define CALCULATOR_UP    BUTTON_UP
-#define CALCULATOR_DOWN  BUTTON_DOWN
-#define CALCULATOR_QUIT  BUTTON_BACK
-#define CALCULATOR_INPUT BUTTON_SELECT
-#define CALCULATOR_CALC  BUTTON_MENU
-#define CALCULATOR_CLEAR BUTTON_PLAY
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 
 #define CALCULATOR_LEFT  (BUTTON_BACK|BUTTON_REL)
diff --git a/apps/plugins/calendar.c b/apps/plugins/calendar.c
index deb23f05e7..d1213367ae 100644
--- a/apps/plugins/calendar.c
+++ b/apps/plugins/calendar.c
@@ -149,16 +149,6 @@
 #define CALENDAR_PREV_MONTH BUTTON_BOTTOMLEFT
 #define CALENDAR_EVENT_MENU_NAME "menu"
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define CALENDAR_QUIT       BUTTON_BACK
-#define CALENDAR_SELECT     BUTTON_SELECT
-#define CALENDAR_NEXT_WEEK  BUTTON_DOWN
-#define CALENDAR_PREV_WEEK  BUTTON_UP
-#define CALENDAR_NEXT_DAY   BUTTON_RIGHT
-#define CALENDAR_PREV_DAY   BUTTON_LEFT
-#define CALENDAR_NEXT_MONTH BUTTON_CUSTOM
-#define CALENDAR_PREV_MONTH BUTTON_PLAY
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define CALENDAR_QUIT       BUTTON_POWER
 #define CALENDAR_SELECT     BUTTON_PLAY
diff --git a/apps/plugins/chessbox/chessbox_pgn.h b/apps/plugins/chessbox/chessbox_pgn.h
index 342f2f2cce..681f89150c 100644
--- a/apps/plugins/chessbox/chessbox_pgn.h
+++ b/apps/plugins/chessbox/chessbox_pgn.h
@@ -222,20 +222,6 @@
 #define CB_RESTART BUTTON_MINUS
 #define CB_MENU    (BUTTON_MENU|BUTTON_REL)
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define CB_SELECT  BUTTON_PLAY
-#define CB_UP      BUTTON_UP
-#define CB_DOWN    BUTTON_DOWN
-#define CB_LEFT    BUTTON_LEFT
-#define CB_RIGHT   BUTTON_RIGHT
-#define CB_PLAY    BUTTON_SELECT
-#define CB_LEVEL   BUTTON_CUSTOM
-#define CB_MENU    BUTTON_MENU
-#define CB_SCROLL_UP     (BUTTON_UP|BUTTON_REPEAT)
-#define CB_SCROLL_DOWN   (BUTTON_DOWN|BUTTON_REPEAT)
-#define CB_SCROLL_LEFT   (BUTTON_LEFT|BUTTON_REPEAT)
-#define CB_SCROLL_RIGHT  (BUTTON_RIGHT|BUTTON_REPEAT)
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define CB_SELECT  (BUTTON_PLAY|BUTTON_REL)
 #define CB_UP      BUTTON_UP
diff --git a/apps/plugins/chessclock.c b/apps/plugins/chessclock.c
index 7b01ece12f..521ae034b7 100644
--- a/apps/plugins/chessclock.c
+++ b/apps/plugins/chessclock.c
@@ -147,16 +147,6 @@
 #define CHC_SETTINGS_DEC    BUTTON_MINUS
 #define CHC_SETTINGS_CANCEL BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define CHC_QUIT BUTTON_BACK
-#define CHC_STARTSTOP BUTTON_PLAY
-#define CHC_RESET BUTTON_CUSTOM
-#define CHC_MENU BUTTON_MENU
-#define CHC_SETTINGS_INC BUTTON_UP
-#define CHC_SETTINGS_DEC BUTTON_DOWN
-#define CHC_SETTINGS_OK BUTTON_SELECT
-#define CHC_SETTINGS_CANCEL BUTTON_BACK
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define CHC_QUIT BUTTON_POWER
 #define CHC_STARTSTOP BUTTON_PLAY
diff --git a/apps/plugins/chip8.c b/apps/plugins/chip8.c
index acb23b38c3..fa6acea82a 100644
--- a/apps/plugins/chip8.c
+++ b/apps/plugins/chip8.c
@@ -1048,16 +1048,6 @@ CONFIG_KEYPAD == SANSA_M200_PAD
 #elif (CONFIG_KEYPAD == COWON_D2_PAD)
 #define CHIP8_OFF  BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define CHIP8_OFF  BUTTON_BACK
-#define CHIP8_KEY1 BUTTON_MENU
-#define CHIP8_KEY2 BUTTON_UP
-#define CHIP8_KEY3 BUTTON_CUSTOM
-#define CHIP8_KEY4 BUTTON_LEFT
-#define CHIP8_KEY5 BUTTON_PLAY
-#define CHIP8_KEY6 BUTTON_RIGHT
-#define CHIP8_KEY8 BUTTON_DOWN
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define CHIP8_OFF  BUTTON_POWER
 #define CHIP8_KEY1 BUTTON_VOL_UP
diff --git a/apps/plugins/chopper.c b/apps/plugins/chopper.c
index 864d087076..74d1fc9237 100644
--- a/apps/plugins/chopper.c
+++ b/apps/plugins/chopper.c
@@ -108,12 +108,6 @@ Still To do:
 #define QUIT BUTTON_POWER
 #define ACTION2 BUTTON_PLUS
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define QUIT BUTTON_BACK
-#define ACTION BUTTON_UP
-#define ACTION2 BUTTON_MENU
-#define ACTIONTEXT "UP"
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define QUIT BUTTON_POWER
 #define ACTION BUTTON_UP
diff --git a/apps/plugins/clix.c b/apps/plugins/clix.c
index 321e7129bd..210864968b 100644
--- a/apps/plugins/clix.c
+++ b/apps/plugins/clix.c
@@ -114,14 +114,6 @@
 #define CLIX_BUTTON_UP      BUTTON_UP
 #define CLIX_BUTTON_DOWN    BUTTON_DOWN
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define CLIX_BUTTON_QUIT    BUTTON_BACK
-#define CLIX_BUTTON_LEFT    BUTTON_LEFT
-#define CLIX_BUTTON_RIGHT   BUTTON_RIGHT
-#define CLIX_BUTTON_CLICK   BUTTON_SELECT
-#define CLIX_BUTTON_UP      BUTTON_UP
-#define CLIX_BUTTON_DOWN    BUTTON_DOWN
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define CLIX_BUTTON_QUIT    BUTTON_POWER
 #define CLIX_BUTTON_LEFT    BUTTON_BACK
diff --git a/apps/plugins/cube.c b/apps/plugins/cube.c
index 929630a09f..d3c95be10f 100644
--- a/apps/plugins/cube.c
+++ b/apps/plugins/cube.c
@@ -163,16 +163,6 @@
 #elif CONFIG_KEYPAD == COWON_D2_PAD
 #define CUBE_QUIT          BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define CUBE_QUIT          BUTTON_BACK
-#define CUBE_NEXT          BUTTON_RIGHT
-#define CUBE_PREV          BUTTON_LEFT
-#define CUBE_INC           BUTTON_UP
-#define CUBE_DEC           BUTTON_DOWN
-#define CUBE_MODE          BUTTON_MENU
-#define CUBE_PAUSE         BUTTON_PLAY
-#define CUBE_HIGHSPEED     BUTTON_SELECT
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define CUBE_QUIT          BUTTON_POWER
 #define CUBE_NEXT          BUTTON_UP
diff --git a/apps/plugins/doom/i_video.c b/apps/plugins/doom/i_video.c
index 31a646f988..cdae2a2b5c 100644
--- a/apps/plugins/doom/i_video.c
+++ b/apps/plugins/doom/i_video.c
@@ -316,18 +316,6 @@ void I_ShutdownGraphics(void)
 #define DOOMBUTTON_ENTER   BUTTON_MENU
 #define DOOMBUTTON_WEAPON  BUTTON_DISPLAY
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define DOOMBUTTON_UP      BUTTON_UP
-#define DOOMBUTTON_DOWN    BUTTON_DOWN
-#define DOOMBUTTON_LEFT    BUTTON_LEFT
-#define DOOMBUTTON_RIGHT   BUTTON_RIGHT
-#define DOOMBUTTON_SHOOT   BUTTON_SELECT
-#define DOOMBUTTON_OPEN    BUTTON_PLAY
-#define DOOMBUTTON_ESC     BUTTON_BACK
-#define DOOMBUTTON_ENTER   BUTTON_PLAY
-#define DOOMBUTTON_WEAPON  BUTTON_MENU
-#define DOOMBUTTON_MAP     BUTTON_CUSTOM
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define DOOMBUTTON_UP      BUTTON_UP
 #define DOOMBUTTON_DOWN    BUTTON_DOWN
diff --git a/apps/plugins/flipit.c b/apps/plugins/flipit.c
index 79518bfa80..3080f2f239 100644
--- a/apps/plugins/flipit.c
+++ b/apps/plugins/flipit.c
@@ -226,18 +226,6 @@
 
 #define FLIPIT_QUIT         BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-
-#define FLIPIT_LEFT         BUTTON_LEFT
-#define FLIPIT_RIGHT        BUTTON_RIGHT
-#define FLIPIT_UP           BUTTON_UP
-#define FLIPIT_DOWN         BUTTON_DOWN
-#define FLIPIT_QUIT         BUTTON_BACK
-#define FLIPIT_SHUFFLE      BUTTON_CUSTOM
-#define FLIPIT_SOLVE        BUTTON_PLAY
-#define FLIPIT_STEP_BY_STEP BUTTON_MENU
-#define FLIPIT_TOGGLE       BUTTON_SELECT
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define FLIPIT_LEFT         BUTTON_BACK
 #define FLIPIT_RIGHT        BUTTON_MENU
diff --git a/apps/plugins/fractals/fractal.h b/apps/plugins/fractals/fractal.h
index f3da8bc781..d56b7a1f39 100644
--- a/apps/plugins/fractals/fractal.h
+++ b/apps/plugins/fractals/fractal.h
@@ -200,18 +200,6 @@
 #elif CONFIG_KEYPAD == COWON_D2_PAD
 #define FRACTAL_QUIT            BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define FRACTAL_QUIT            BUTTON_BACK
-#define FRACTAL_UP              BUTTON_UP
-#define FRACTAL_DOWN            BUTTON_DOWN
-#define FRACTAL_LEFT            BUTTON_LEFT
-#define FRACTAL_RIGHT           BUTTON_RIGHT
-#define FRACTAL_ZOOM_IN         BUTTON_PLAY
-#define FRACTAL_ZOOM_OUT        BUTTON_MENU
-#define FRACTAL_PRECISION_INC   (BUTTON_UP | BUTTON_CUSTOM)
-#define FRACTAL_PRECISION_DEC   (BUTTON_DOWN | BUTTON_CUSTOM)
-#define FRACTAL_RESET           BUTTON_SELECT
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define FRACTAL_QUIT            BUTTON_POWER
 #define FRACTAL_UP              BUTTON_UP
diff --git a/apps/plugins/goban/goban.h b/apps/plugins/goban/goban.h
index 83c8a81221..159f3d2fbd 100644
--- a/apps/plugins/goban/goban.h
+++ b/apps/plugins/goban/goban.h
@@ -150,20 +150,6 @@
 #define  GBN_BUTTON_CONTEXT            BUTTON_SELECT | BUTTON_REPEAT
 #define  GBN_BUTTON_NEXT_VAR           BUTTON_NEXT
 
-
-#elif (CONFIG_KEYPAD == CREATIVEZVM_PAD) \
-   || (CONFIG_KEYPAD == CREATIVEZV_PAD)
-#define  GBN_BUTTON_UP                 BUTTON_UP
-#define  GBN_BUTTON_DOWN               BUTTON_DOWN
-#define  GBN_BUTTON_LEFT               BUTTON_LEFT
-#define  GBN_BUTTON_RIGHT              BUTTON_RIGHT
-#define  GBN_BUTTON_RETREAT            BUTTON_BACK
-#define  GBN_BUTTON_ADVANCE            BUTTON_CUSTOM
-#define  GBN_BUTTON_MENU               BUTTON_MENU
-#define  GBN_BUTTON_PLAY               BUTTON_SELECT | BUTTON_REL
-#define  GBN_BUTTON_CONTEXT            BUTTON_SELECT | BUTTON_REPEAT
-#define  GBN_BUTTON_NEXT_VAR           BUTTON_PLAY
-
 #elif (CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD)
 #define  GBN_BUTTON_UP                 BUTTON_UP | BUTTON_REL
 #define  GBN_BUTTON_DOWN               BUTTON_DOWN
diff --git a/apps/plugins/imageviewer/imageviewer_button.h b/apps/plugins/imageviewer/imageviewer_button.h
index aea8904280..46e99ff3f8 100644
--- a/apps/plugins/imageviewer/imageviewer_button.h
+++ b/apps/plugins/imageviewer/imageviewer_button.h
@@ -209,18 +209,6 @@
 
 #elif CONFIG_KEYPAD == COWON_D2_PAD
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-
-#define IMGVIEW_ZOOM_IN     BUTTON_PLAY
-#define IMGVIEW_ZOOM_OUT    BUTTON_CUSTOM
-#define IMGVIEW_UP          BUTTON_UP
-#define IMGVIEW_DOWN        BUTTON_DOWN
-#define IMGVIEW_LEFT        BUTTON_LEFT
-#define IMGVIEW_RIGHT       BUTTON_RIGHT
-#define IMGVIEW_NEXT        BUTTON_SELECT
-#define IMGVIEW_PREVIOUS    BUTTON_BACK
-#define IMGVIEW_MENU        BUTTON_MENU
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define IMGVIEW_ZOOM_IN         (BUTTON_VOL_UP|BUTTON_REL)
 #define IMGVIEW_ZOOM_OUT        (BUTTON_VOL_DOWN|BUTTON_REL)
diff --git a/apps/plugins/invadrox.c b/apps/plugins/invadrox.c
index 0a4eae97f3..d8b792aedc 100644
--- a/apps/plugins/invadrox.c
+++ b/apps/plugins/invadrox.c
@@ -155,13 +155,6 @@
 #define RIGHT BUTTON_PLUS
 #define FIRE BUTTON_MENU
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-
-#define QUIT BUTTON_BACK
-#define LEFT BUTTON_LEFT
-#define RIGHT BUTTON_RIGHT
-#define FIRE BUTTON_SELECT
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 
 #define QUIT BUTTON_POWER
diff --git a/apps/plugins/jewels.c b/apps/plugins/jewels.c
index e9c137b12f..e681c578ad 100644
--- a/apps/plugins/jewels.c
+++ b/apps/plugins/jewels.c
@@ -191,16 +191,6 @@ CONFIG_KEYPAD == SANSA_M200_PAD
 #define JEWELS_CANCEL BUTTON_POWER
 #define HK_CANCEL "POWER"
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define JEWELS_UP     BUTTON_UP
-#define JEWELS_DOWN   BUTTON_DOWN
-#define JEWELS_LEFT   BUTTON_LEFT
-#define JEWELS_RIGHT  BUTTON_RIGHT
-#define JEWELS_SELECT BUTTON_SELECT
-#define JEWELS_CANCEL BUTTON_BACK
-#define HK_SELECT "MIDDLE"
-#define HK_CANCEL "BACK"
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define JEWELS_UP     BUTTON_UP
 #define JEWELS_DOWN   BUTTON_DOWN
diff --git a/apps/plugins/lib/keymaps.h b/apps/plugins/lib/keymaps.h
index a8521af23e..f5194ee053 100644
--- a/apps/plugins/lib/keymaps.h
+++ b/apps/plugins/lib/keymaps.h
@@ -56,7 +56,6 @@
     (CONFIG_KEYPAD == IAUDIO_X5M5_PAD)      || \
     (CONFIG_KEYPAD == CREATIVE_ZEN_PAD)     || \
     (CONFIG_KEYPAD == SONY_NWZ_PAD)         || \
-    (CONFIG_KEYPAD == CREATIVEZVM_PAD)      || \
     (CONFIG_KEYPAD == SAMSUNG_YPR0_PAD)     || \
     (CONFIG_KEYPAD == IRIVER_H300_PAD)      || \
     (CONFIG_KEYPAD == HM801_PAD)            || \
@@ -128,10 +127,6 @@
 #define BTN_FIRE       BUTTON_SELECT
 #define BTN_PAUSE      BUTTON_BACK
 
-#elif (CONFIG_KEYPAD == CREATIVEZVM_PAD)
-#define BTN_FIRE       BUTTON_PLAY
-#define BTN_PAUSE      BUTTON_MENU
-
 #elif (CONFIG_KEYPAD == SAMSUNG_YPR0_PAD)
 #define BTN_FIRE       BUTTON_USER
 #define BTN_PAUSE      BUTTON_MENU
diff --git a/apps/plugins/lib/pluginlib_actions.c b/apps/plugins/lib/pluginlib_actions.c
index 4b759b2437..171522acae 100644
--- a/apps/plugins/lib/pluginlib_actions.c
+++ b/apps/plugins/lib/pluginlib_actions.c
@@ -96,7 +96,6 @@ const struct button_mapping pla_main_ctx[] =
     || (CONFIG_KEYPAD == MROBE100_PAD) \
     || (CONFIG_KEYPAD == PHILIPS_HDD1630_PAD) \
     || (CONFIG_KEYPAD == SANSA_CLIP_PAD) \
-    || (CONFIG_KEYPAD == CREATIVEZVM_PAD) \
     || (CONFIG_KEYPAD == SANSA_M200_PAD)\
     || (CONFIG_KEYPAD == SANSA_E200_PAD) \
     || (CONFIG_KEYPAD == SANSA_FUZE_PAD) \
@@ -405,12 +404,6 @@ const struct button_mapping pla_main_ctx[] =
     {PLA_SELECT,            BUTTON_PLAY,                        BUTTON_NONE},
     {PLA_SELECT_REL,        BUTTON_PLAY|BUTTON_REL,             BUTTON_PLAY},
     {PLA_SELECT_REPEAT,     BUTTON_PLAY|BUTTON_REPEAT,          BUTTON_NONE},
-#elif (CONFIG_KEYPAD == CREATIVEZVM_PAD)
-    {PLA_CANCEL,            BUTTON_BACK|BUTTON_REL,             BUTTON_BACK},
-    {PLA_EXIT,              BUTTON_BACK|BUTTON_REPEAT,          BUTTON_NONE},
-    {PLA_SELECT,            BUTTON_SELECT,                      BUTTON_NONE},
-    {PLA_SELECT_REL,        BUTTON_SELECT|BUTTON_REL,           BUTTON_SELECT},
-    {PLA_SELECT_REPEAT,     BUTTON_SELECT|BUTTON_REPEAT,        BUTTON_NONE},
 #elif (CONFIG_KEYPAD == ONDAVX747_PAD)
     {PLA_CANCEL,            BUTTON_POWER|BUTTON_REL,            BUTTON_POWER},
     {PLA_EXIT,              BUTTON_POWER|BUTTON_REPEAT,         BUTTON_NONE},
diff --git a/apps/plugins/midi/midiplay.c b/apps/plugins/midi/midiplay.c
index f3e74d4ec0..510b03f789 100644
--- a/apps/plugins/midi/midiplay.c
+++ b/apps/plugins/midi/midiplay.c
@@ -140,14 +140,6 @@
 #elif CONFIG_KEYPAD == COWON_D2_PAD
 #define MIDI_QUIT       BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define MIDI_QUIT       BUTTON_BACK
-#define MIDI_FFWD       BUTTON_RIGHT
-#define MIDI_REWIND     BUTTON_LEFT
-#define MIDI_VOL_UP     BUTTON_UP
-#define MIDI_VOL_DOWN   BUTTON_DOWN
-#define MIDI_PLAYPAUSE  BUTTON_PLAY
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define MIDI_QUIT       (BUTTON_PLAY|BUTTON_REPEAT)
 #define MIDI_FFWD       BUTTON_MENU
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c
index bda2093b2a..e4a99e8f22 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -165,16 +165,6 @@ enum minesweeper_status {
 #elif (CONFIG_KEYPAD == COWON_D2_PAD)
 #   define MINESWP_QUIT     BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#   define MINESWP_LEFT     BUTTON_LEFT
-#   define MINESWP_RIGHT    BUTTON_RIGHT
-#   define MINESWP_UP       BUTTON_UP
-#   define MINESWP_DOWN     BUTTON_DOWN
-#   define MINESWP_QUIT     BUTTON_BACK
-#   define MINESWP_TOGGLE   BUTTON_SELECT
-#   define MINESWP_DISCOVER BUTTON_PLAY
-#   define MINESWP_INFO     BUTTON_MENU
-
 #elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
 #   define MINESWP_LEFT     BUTTON_LEFT
 #   define MINESWP_RIGHT    BUTTON_RIGHT
diff --git a/apps/plugins/mp3_encoder.c b/apps/plugins/mp3_encoder.c
index 89851de875..7e96ab81d9 100644
--- a/apps/plugins/mp3_encoder.c
+++ b/apps/plugins/mp3_encoder.c
@@ -2446,12 +2446,6 @@ static void get_mp3_filename(const char *wav_name)
 #elif CONFIG_KEYPAD == COWON_D2_PAD
 #define MP3ENC_DONE BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define MP3ENC_PREV BUTTON_UP
-#define MP3ENC_NEXT BUTTON_DOWN
-#define MP3ENC_DONE BUTTON_BACK
-#define MP3ENC_SELECT BUTTON_SELECT
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define MP3ENC_PREV BUTTON_UP
 #define MP3ENC_NEXT BUTTON_DOWN
diff --git a/apps/plugins/mpegplayer/mpeg_settings.c b/apps/plugins/mpegplayer/mpeg_settings.c
index 1a5b0d99cb..58dc11c89a 100644
--- a/apps/plugins/mpegplayer/mpeg_settings.c
+++ b/apps/plugins/mpegplayer/mpeg_settings.c
@@ -142,16 +142,6 @@ struct mpeg_settings settings;
 #elif CONFIG_KEYPAD == COWON_D2_PAD
 #define MPEG_START_TIME_EXIT        BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define MPEG_START_TIME_SELECT      BUTTON_SELECT
-#define MPEG_START_TIME_LEFT        BUTTON_LEFT
-#define MPEG_START_TIME_RIGHT       BUTTON_RIGHT
-#define MPEG_START_TIME_UP          BUTTON_UP
-#define MPEG_START_TIME_DOWN        BUTTON_DOWN
-#define MPEG_START_TIME_LEFT2       BUTTON_PLAY
-#define MPEG_START_TIME_RIGHT2      BUTTON_MENU
-#define MPEG_START_TIME_EXIT        BUTTON_BACK
-
 #elif (CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD)
 #define MPEG_START_TIME_SELECT      (BUTTON_PLAY|BUTTON_REL)
 #define MPEG_START_TIME_LEFT        BUTTON_BACK
diff --git a/apps/plugins/mpegplayer/mpegplayer.c b/apps/plugins/mpegplayer/mpegplayer.c
index 5d7d6036d2..02eeb6455d 100644
--- a/apps/plugins/mpegplayer/mpegplayer.c
+++ b/apps/plugins/mpegplayer/mpegplayer.c
@@ -254,15 +254,6 @@ CONFIG_KEYPAD == SANSA_M200_PAD
 #define MPEG_VOLDOWN    BUTTON_MINUS
 #define MPEG_VOLUP      BUTTON_PLUS
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define MPEG_MENU       BUTTON_MENU
-#define MPEG_STOP       BUTTON_BACK
-#define MPEG_PAUSE      BUTTON_PLAY
-#define MPEG_VOLDOWN    BUTTON_UP
-#define MPEG_VOLUP      BUTTON_DOWN
-#define MPEG_RW         BUTTON_LEFT
-#define MPEG_FF         BUTTON_RIGHT
-
 #elif CONFIG_KEYPAD ==  CREATIVE_ZENXFI3_PAD
 #define MPEG_MENU       BUTTON_MENU
 #define MPEG_STOP       (BUTTON_PLAY|BUTTON_REPEAT)
diff --git a/apps/plugins/oscilloscope.c b/apps/plugins/oscilloscope.c
index 9943b78aba..49c0aeda4e 100644
--- a/apps/plugins/oscilloscope.c
+++ b/apps/plugins/oscilloscope.c
@@ -223,20 +223,6 @@
 #define OSCILLOSCOPE_VOL_UP          BUTTON_PLUS
 #define OSCILLOSCOPE_VOL_DOWN        BUTTON_MINUS
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define OSCILLOSCOPE_QUIT            BUTTON_BACK
-#define OSCILLOSCOPE_DRAWMODE        BUTTON_SELECT
-#define OSCILLOSCOPE_ADVMODE         BUTTON_CUSTOM
-#define OSCILLOSCOPE_ORIENTATION_PRE BUTTON_MENU
-#define OSCILLOSCOPE_ORIENTATION     (BUTTON_MENU | BUTTON_REL)
-#define OSCILLOSCOPE_GRAPHMODE_PRE   BUTTON_MENU
-#define OSCILLOSCOPE_GRAPHMODE       (BUTTON_MENU | BUTTON_REPEAT)
-#define OSCILLOSCOPE_PAUSE           BUTTON_PLAY
-#define OSCILLOSCOPE_SPEED_UP        BUTTON_RIGHT
-#define OSCILLOSCOPE_SPEED_DOWN      BUTTON_LEFT
-#define OSCILLOSCOPE_VOL_UP          BUTTON_UP
-#define OSCILLOSCOPE_VOL_DOWN        BUTTON_DOWN
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define OSCILLOSCOPE_QUIT            BUTTON_POWER
 #define OSCILLOSCOPE_DRAWMODE        (BUTTON_MENU | BUTTON_UP)
diff --git a/apps/plugins/pacbox/pacbox.h b/apps/plugins/pacbox/pacbox.h
index 1102a01ab1..00cc6b1f59 100644
--- a/apps/plugins/pacbox/pacbox.h
+++ b/apps/plugins/pacbox/pacbox.h
@@ -169,17 +169,6 @@
 
 #define PACMAN_MENU     (BUTTON_MENU|BUTTON_REL)
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-
-#define PACMAN_UP      BUTTON_UP
-#define PACMAN_DOWN    BUTTON_DOWN
-#define PACMAN_LEFT    BUTTON_LEFT
-#define PACMAN_RIGHT   BUTTON_RIGHT
-#define PACMAN_1UP     BUTTON_CUSTOM
-#define PACMAN_2UP     BUTTON_PLAY
-#define PACMAN_COIN    BUTTON_SELECT
-#define PACMAN_MENU    BUTTON_MENU
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 
 #define PACMAN_UP       BUTTON_UP
diff --git a/apps/plugins/pegbox.c b/apps/plugins/pegbox.c
index 8547df603b..832ebc49f7 100644
--- a/apps/plugins/pegbox.c
+++ b/apps/plugins/pegbox.c
@@ -271,23 +271,6 @@
 
 #define QUIT_TEXT "POWER"
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define PEGBOX_SELECT   BUTTON_CUSTOM
-#define PEGBOX_QUIT     BUTTON_BACK
-#define PEGBOX_RESTART  BUTTON_SELECT
-#define PEGBOX_LVL_UP   BUTTON_PLAY
-#define PEGBOX_LVL_DOWN BUTTON_MENU
-#define PEGBOX_UP       BUTTON_UP
-#define PEGBOX_DOWN     BUTTON_DOWN
-#define PEGBOX_RIGHT    BUTTON_RIGHT
-#define PEGBOX_LEFT     BUTTON_LEFT
-
-#define SELECT_TEXT "CUSTOM"
-#define QUIT_TEXT "BACK"
-#define RESTART_TEXT "MIDDLE"
-#define LVL_UP_TEXT "SELECT"
-#define LVL_DOWN_TEXT "MENU"
-
 #elif CONFIG_KEYPAD ==  CREATIVE_ZENXFI3_PAD
 #define PEGBOX_SELECT   (BUTTON_PLAY|BUTTON_REL)
 #define PEGBOX_QUIT     BUTTON_POWER
diff --git a/apps/plugins/pictureflow/pictureflow.c b/apps/plugins/pictureflow/pictureflow.c
index 9ccb73f5ea..259b95f5f0 100644
--- a/apps/plugins/pictureflow/pictureflow.c
+++ b/apps/plugins/pictureflow/pictureflow.c
@@ -126,8 +126,7 @@ const struct button_mapping pf_context_buttons[] =
     {PF_SELECT,       BUTTON_CENTER,              BUTTON_NONE},
     {PF_BACK,         BUTTON_BOTTOMRIGHT,         BUTTON_NONE},
 #endif
-#if CONFIG_KEYPAD == CREATIVEZV_PAD || CONFIG_KEYPAD == CREATIVEZVM_PAD || \
-    CONFIG_KEYPAD == PHILIPS_HDD1630_PAD || \
+#if CONFIG_KEYPAD == PHILIPS_HDD1630_PAD || \
     CONFIG_KEYPAD == GIGABEAT_PAD || CONFIG_KEYPAD == GIGABEAT_S_PAD || \
     CONFIG_KEYPAD == MROBE100_PAD || CONFIG_KEYPAD == MROBE500_PAD || \
     CONFIG_KEYPAD == PHILIPS_SA9200_PAD || CONFIG_KEYPAD == SANSA_CLIP_PAD || \
diff --git a/apps/plugins/pong.c b/apps/plugins/pong.c
index 8f409712b6..c9addff347 100644
--- a/apps/plugins/pong.c
+++ b/apps/plugins/pong.c
@@ -139,13 +139,6 @@
 #elif (CONFIG_KEYPAD == COWON_D2_PAD)
 #define PONG_QUIT BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define PONG_QUIT BUTTON_BACK
-#define PONG_LEFT_UP BUTTON_UP
-#define PONG_LEFT_DOWN BUTTON_DOWN
-#define PONG_RIGHT_UP BUTTON_PLAY
-#define PONG_RIGHT_DOWN BUTTON_MENU
-
 #elif (CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD)
 #define PONG_QUIT BUTTON_POWER
 #define PONG_PAUSE BUTTON_PLAY
diff --git a/apps/plugins/reversi/reversi-gui.h b/apps/plugins/reversi/reversi-gui.h
index 8bf5475164..389d190169 100644
--- a/apps/plugins/reversi/reversi-gui.h
+++ b/apps/plugins/reversi/reversi-gui.h
@@ -136,15 +136,6 @@
 #define REVERSI_BUTTON_QUIT         BUTTON_POWER
 #define REVERSI_BUTTON_MENU         BUTTON_MENU
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define REVERSI_BUTTON_QUIT BUTTON_BACK
-#define REVERSI_BUTTON_UP BUTTON_UP
-#define REVERSI_BUTTON_DOWN BUTTON_DOWN
-#define REVERSI_BUTTON_LEFT BUTTON_LEFT
-#define REVERSI_BUTTON_RIGHT BUTTON_RIGHT
-#define REVERSI_BUTTON_MAKE_MOVE BUTTON_SELECT
-#define REVERSI_BUTTON_MENU BUTTON_MENU
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define REVERSI_BUTTON_QUIT BUTTON_POWER
 #define REVERSI_BUTTON_UP BUTTON_UP
diff --git a/apps/plugins/rockblox.c b/apps/plugins/rockblox.c
index d2887af78f..a657dde2d7 100644
--- a/apps/plugins/rockblox.c
+++ b/apps/plugins/rockblox.c
@@ -195,16 +195,6 @@
 #define ROCKBLOX_OFF           BUTTON_POWER
 #define ROCKBLOX_RESTART       BUTTON_MENU
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define ROCKBLOX_OFF           BUTTON_BACK
-#define ROCKBLOX_ROTATE_CCW    BUTTON_UP
-#define ROCKBLOX_ROTATE_CW     BUTTON_PLAY
-#define ROCKBLOX_DOWN          BUTTON_DOWN
-#define ROCKBLOX_LEFT          BUTTON_LEFT
-#define ROCKBLOX_RIGHT         BUTTON_RIGHT
-#define ROCKBLOX_DROP          BUTTON_SELECT
-#define ROCKBLOX_RESTART       BUTTON_CUSTOM
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define ROCKBLOX_OFF           BUTTON_POWER
 #define ROCKBLOX_ROTATE_CCW    BUTTON_VOL_DOWN
diff --git a/apps/plugins/rockboy/rockboy.c b/apps/plugins/rockboy/rockboy.c
index 7cca8d9130..3cb4ba6771 100644
--- a/apps/plugins/rockboy/rockboy.c
+++ b/apps/plugins/rockboy/rockboy.c
@@ -210,16 +210,6 @@ static void setoptions (void)
         options.SELECT  = BUTTON_SELECT;
         options.MENU    = BUTTON_MENU;
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-        options.UP      = BUTTON_UP;
-        options.DOWN    = BUTTON_DOWN;
-
-        options.A       = BUTTON_CUSTOM;
-        options.B       = BUTTON_PLAY;
-        options.START   = BUTTON_BACK;
-        options.SELECT  = BUTTON_SELECT;
-        options.MENU    = BUTTON_MENU;
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
         options.UP      = BUTTON_UP;
         options.DOWN    = BUTTON_DOWN;
diff --git a/apps/plugins/rockpaint.c b/apps/plugins/rockpaint.c
index c821cd234d..8c7d05c00d 100644
--- a/apps/plugins/rockpaint.c
+++ b/apps/plugins/rockpaint.c
@@ -134,17 +134,6 @@
 #define ROCKPAINT_QUIT      BUTTON_POWER
 #define ROCKPAINT_MENU      BUTTON_MENU
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define ROCKPAINT_QUIT      BUTTON_BACK
-#define ROCKPAINT_DRAW      BUTTON_SELECT
-#define ROCKPAINT_MENU      BUTTON_MENU
-#define ROCKPAINT_TOOLBAR   BUTTON_PLAY
-#define ROCKPAINT_TOOLBAR2  ( BUTTON_PLAY | BUTTON_LEFT )
-#define ROCKPAINT_UP        BUTTON_UP
-#define ROCKPAINT_DOWN      BUTTON_DOWN
-#define ROCKPAINT_LEFT      BUTTON_LEFT
-#define ROCKPAINT_RIGHT     BUTTON_RIGHT
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define ROCKPAINT_QUIT      BUTTON_POWER
 #define ROCKPAINT_DRAW      BUTTON_VOL_UP
diff --git a/apps/plugins/sliding_puzzle.c b/apps/plugins/sliding_puzzle.c
index 273a178c2d..63121edba1 100644
--- a/apps/plugins/sliding_puzzle.c
+++ b/apps/plugins/sliding_puzzle.c
@@ -140,15 +140,6 @@
 #define PUZZLE_QUIT BUTTON_POWER
 #define PUZZLE_QUIT_TEXT "[POWER]"
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define PUZZLE_QUIT BUTTON_BACK
-#define PUZZLE_LEFT BUTTON_LEFT
-#define PUZZLE_RIGHT BUTTON_RIGHT
-#define PUZZLE_UP BUTTON_UP
-#define PUZZLE_DOWN BUTTON_DOWN
-#define PUZZLE_SHUFFLE BUTTON_PLAY
-#define PUZZLE_PICTURE BUTTON_MENU
-
 #elif (CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD)
 #define PUZZLE_QUIT BUTTON_POWER
 #define PUZZLE_LEFT BUTTON_BACK
diff --git a/apps/plugins/snake.c b/apps/plugins/snake.c
index 23842e443c..4055087159 100644
--- a/apps/plugins/snake.c
+++ b/apps/plugins/snake.c
@@ -133,14 +133,6 @@ dir is the current direction of the snake - 0=up, 1=right, 2=down, 3=left;
 
 #define SNAKE_RC_QUIT BUTTON_REC
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define SNAKE_QUIT BUTTON_BACK
-#define SNAKE_LEFT BUTTON_LEFT
-#define SNAKE_RIGHT BUTTON_RIGHT
-#define SNAKE_UP   BUTTON_UP
-#define SNAKE_DOWN BUTTON_DOWN
-#define SNAKE_PLAYPAUSE BUTTON_PLAY
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define SNAKE_QUIT BUTTON_POWER
 #define SNAKE_LEFT BUTTON_BACK
diff --git a/apps/plugins/snake2.c b/apps/plugins/snake2.c
index 864cda688a..d8a97f159f 100644
--- a/apps/plugins/snake2.c
+++ b/apps/plugins/snake2.c
@@ -265,15 +265,6 @@ Head and Tail are stored
 #elif (CONFIG_KEYPAD == COWON_D2_PAD)
 #define SNAKE2_QUIT BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define SNAKE2_LEFT BUTTON_LEFT
-#define SNAKE2_RIGHT BUTTON_RIGHT
-#define SNAKE2_UP   BUTTON_UP
-#define SNAKE2_DOWN BUTTON_DOWN
-#define SNAKE2_QUIT BUTTON_BACK
-#define SNAKE2_PLAYPAUSE BUTTON_PLAY
-#define SNAKE2_PLAYPAUSE_TEXT "Play"
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define SNAKE2_LEFT             BUTTON_BACK
 #define SNAKE2_RIGHT            BUTTON_MENU
diff --git a/apps/plugins/sokoban.c b/apps/plugins/sokoban.c
index 1d61ba1749..7b6e79f70b 100644
--- a/apps/plugins/sokoban.c
+++ b/apps/plugins/sokoban.c
@@ -312,21 +312,6 @@
 #define SOKOBAN_LEVEL_UP BUTTON_PLUS
 #define SOKOBAN_MENU_NAME "[MENU]"
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define SOKOBAN_LEFT BUTTON_LEFT
-#define SOKOBAN_RIGHT BUTTON_RIGHT
-#define SOKOBAN_UP BUTTON_UP
-#define SOKOBAN_DOWN BUTTON_DOWN
-#define SOKOBAN_MENU BUTTON_MENU
-#define SOKOBAN_UNDO BUTTON_BACK
-#define SOKOBAN_REDO (BUTTON_BACK | BUTTON_PLAY)
-#define SOKOBAN_LEVEL_DOWN (BUTTON_SELECT | BUTTON_DOWN)
-#define SOKOBAN_LEVEL_REPEAT (BUTTON_SELECT | BUTTON_RIGHT)
-#define SOKOBAN_LEVEL_UP (BUTTON_SELECT | BUTTON_UP)
-#define SOKOBAN_PAUSE BUTTON_PLAY
-#define BUTTON_SAVE BUTTON_CUSTOM
-#define BUTTON_SAVE_NAME "CUSTOM"
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define SOKOBAN_LEFT          BUTTON_BACK
 #define SOKOBAN_RIGHT         BUTTON_MENU
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index 07cebef043..6205c186ca 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -295,24 +295,6 @@
 #elif (CONFIG_KEYPAD == COWON_D2_PAD)
 #   define SOL_QUIT          BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#   define SOL_QUIT         BUTTON_BACK
-#   define SOL_UP           BUTTON_UP
-#   define SOL_DOWN         BUTTON_DOWN
-#   define SOL_LEFT         BUTTON_LEFT
-#   define SOL_RIGHT        BUTTON_RIGHT
-#   define SOL_MOVE_PRE     BUTTON_SELECT
-#   define SOL_MOVE         (BUTTON_SELECT | BUTTON_REL)
-#   define SOL_DRAW         BUTTON_MENU
-#   define SOL_REM2CUR      (BUTTON_LEFT | BUTTON_SELECT)
-#   define SOL_CUR2STACK    (BUTTON_SELECT | BUTTON_REPEAT)
-#   define SOL_REM2STACK    (BUTTON_RIGHT | BUTTON_SELECT)
-#   define HK_MOVE         "MIDDLE"
-#   define HK_DRAW         "MENU"
-#   define HK_REM2CUR      "PLAY+LEFT"
-#   define HK_CUR2STACK    "PLAY.."
-#   define HK_REM2STACK    "PLAY+RIGHT"
-
 #elif (CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD)
 #   define SOL_QUIT          BUTTON_POWER
 #   define SOL_UP            BUTTON_UP
diff --git a/apps/plugins/spacerocks.c b/apps/plugins/spacerocks.c
index f543065f27..38ee7504ac 100644
--- a/apps/plugins/spacerocks.c
+++ b/apps/plugins/spacerocks.c
@@ -152,15 +152,6 @@
 #elif (CONFIG_KEYPAD == COWON_D2_PAD)
 #define AST_QUIT BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define AST_PAUSE BUTTON_PLAY
-#define AST_QUIT BUTTON_BACK
-#define AST_THRUST BUTTON_UP
-#define AST_HYPERSPACE BUTTON_DOWN
-#define AST_LEFT BUTTON_LEFT
-#define AST_RIGHT BUTTON_RIGHT
-#define AST_FIRE BUTTON_SELECT
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define AST_PAUSE     (BUTTON_PLAY | BUTTON_REL)
 #define AST_QUIT       BUTTON_POWER
diff --git a/apps/plugins/star.c b/apps/plugins/star.c
index 5a7cff70ef..856a2af51a 100644
--- a/apps/plugins/star.c
+++ b/apps/plugins/star.c
@@ -242,23 +242,6 @@
 #define STAR_QUIT           BUTTON_POWER
 #define STAR_QUIT_NAME      "POWER"
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-
-#define STAR_QUIT           BUTTON_BACK
-#define STAR_LEFT           BUTTON_LEFT
-#define STAR_RIGHT          BUTTON_RIGHT
-#define STAR_UP             BUTTON_UP
-#define STAR_DOWN           BUTTON_DOWN
-#define STAR_TOGGLE_CONTROL BUTTON_PLAY
-#define STAR_LEVEL_UP       (BUTTON_CUSTOM | BUTTON_UP)
-#define STAR_LEVEL_DOWN     (BUTTON_CUSTOM | BUTTON_DOWN)
-#define STAR_LEVEL_REPEAT   (BUTTON_CUSTOM | BUTTON_RIGHT)
-#define STAR_TOGGLE_CONTROL_NAME "PLAY"
-#define STAR_QUIT_NAME      "BACK"
-#define STAR_LEVEL_UP_NAME  "CUSTOM+UP"
-#define STAR_LEVEL_DOWN_NAME "CUSTOM+DOWN"
-#define STAR_LEVEL_REPEAT_NAME "CUSTOM+RIGHT"
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 
 #define STAR_QUIT           BUTTON_POWER
diff --git a/apps/plugins/stopwatch.c b/apps/plugins/stopwatch.c
index 7a9737815f..d7ae418611 100644
--- a/apps/plugins/stopwatch.c
+++ b/apps/plugins/stopwatch.c
@@ -123,14 +123,6 @@
 #elif CONFIG_KEYPAD == COWON_D2_PAD
 #define STOPWATCH_QUIT BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define STOPWATCH_QUIT BUTTON_BACK
-#define STOPWATCH_START_STOP BUTTON_PLAY
-#define STOPWATCH_RESET_TIMER BUTTON_SELECT
-#define STOPWATCH_LAP_TIMER BUTTON_CUSTOM
-#define STOPWATCH_SCROLL_UP BUTTON_UP
-#define STOPWATCH_SCROLL_DOWN BUTTON_DOWN
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define STOPWATCH_QUIT BUTTON_POWER
 #define STOPWATCH_START_STOP (BUTTON_PLAY|BUTTON_REL)
diff --git a/apps/plugins/sudoku/sudoku.h b/apps/plugins/sudoku/sudoku.h
index 2ed792872a..8df6fcb870 100644
--- a/apps/plugins/sudoku/sudoku.h
+++ b/apps/plugins/sudoku/sudoku.h
@@ -181,16 +181,6 @@
 #define SUDOKU_BUTTON_QUIT BUTTON_POWER
 #define SUDOKU_BUTTON_MENU BUTTON_MENU
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define SUDOKU_BUTTON_QUIT BUTTON_BACK
-#define SUDOKU_BUTTON_UP BUTTON_UP
-#define SUDOKU_BUTTON_DOWN BUTTON_DOWN
-#define SUDOKU_BUTTON_LEFT BUTTON_LEFT
-#define SUDOKU_BUTTON_RIGHT BUTTON_RIGHT
-#define SUDOKU_BUTTON_TOGGLE BUTTON_SELECT
-#define SUDOKU_BUTTON_MENU BUTTON_MENU
-#define SUDOKU_BUTTON_POSSIBLE BUTTON_PLAY
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define SUDOKU_BUTTON_QUIT       BUTTON_POWER
 #define SUDOKU_BUTTON_UP         BUTTON_UP
diff --git a/apps/plugins/text_viewer/tv_button.h b/apps/plugins/text_viewer/tv_button.h
index 10a2b3ee3e..a7a38221d0 100644
--- a/apps/plugins/text_viewer/tv_button.h
+++ b/apps/plugins/text_viewer/tv_button.h
@@ -236,17 +236,6 @@
 #define TV_SCROLL_DOWN  BUTTON_PLUS
 #define TV_BOOKMARK     (BUTTON_MENU|BUTTON_PLUS)
 
-/* Creative Zen Vision:M keys */
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define TV_QUIT         BUTTON_BACK
-#define TV_SCROLL_UP    BUTTON_UP
-#define TV_SCROLL_DOWN  BUTTON_DOWN
-#define TV_SCREEN_LEFT  BUTTON_LEFT
-#define TV_SCREEN_RIGHT BUTTON_RIGHT
-#define TV_MENU         BUTTON_MENU
-#define TV_AUTOSCROLL   BUTTON_SELECT
-#define TV_BOOKMARK     BUTTON_PLAY
-
 /* Creative Zen X-Fi3 keys */
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define TV_QUIT         BUTTON_POWER
diff --git a/apps/plugins/vu_meter.c b/apps/plugins/vu_meter.c
index f52ac140fe..d18b6a658c 100644
--- a/apps/plugins/vu_meter.c
+++ b/apps/plugins/vu_meter.c
@@ -181,17 +181,6 @@
 #define LABEL_QUIT "POWER"
 #define LABEL_MENU "MENU"
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define VUMETER_QUIT BUTTON_BACK
-#define VUMETER_HELP BUTTON_SELECT
-#define VUMETER_MENU BUTTON_MENU
-#define VUMETER_UP BUTTON_UP
-#define VUMETER_DOWN BUTTON_DOWN
-#define LABEL_HELP "MIDDLE"
-#define LABEL_QUIT "BACK"
-#define LABEL_MENU "MENU"
-#define LABEL_VOLUME "UP/DOWN"
-
 #elif (CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD)
 #define VUMETER_QUIT        BUTTON_POWER
 #define VUMETER_HELP        BUTTON_MENU|BUTTON_REPEAT
diff --git a/apps/plugins/wormlet.c b/apps/plugins/wormlet.c
index 5002ca8790..c02234d500 100644
--- a/apps/plugins/wormlet.c
+++ b/apps/plugins/wormlet.c
@@ -175,16 +175,6 @@ static long max_cycle;
 
 #define BTN_QUIT BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-
-#define BTN_DIR_UP BUTTON_UP
-#define BTN_DIR_DOWN BUTTON_DOWN
-#define BTN_DIR_LEFT BUTTON_LEFT
-#define BTN_DIR_RIGHT BUTTON_RIGHT
-#define BTN_STARTPAUSE BUTTON_PLAY
-#define BTN_QUIT BUTTON_BACK
-#define BTN_STOPRESET BUTTON_MENU
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 
 #define BTN_DIR_UP BUTTON_UP
diff --git a/apps/plugins/xobox.c b/apps/plugins/xobox.c
index b8b883709f..f82cde1c32 100644
--- a/apps/plugins/xobox.c
+++ b/apps/plugins/xobox.c
@@ -146,15 +146,6 @@
 
 #define QUIT BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-
-#define QUIT BUTTON_BACK
-#define LEFT BUTTON_LEFT
-#define RIGHT BUTTON_RIGHT
-#define UP BUTTON_UP
-#define DOWN BUTTON_DOWN
-#define PAUSE BUTTON_PLAY
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define QUIT BUTTON_POWER
 #define LEFT BUTTON_BACK
diff --git a/apps/plugins/zxbox/keymaps.h b/apps/plugins/zxbox/keymaps.h
index 94472d4e15..0bb7d3e80f 100644
--- a/apps/plugins/zxbox/keymaps.h
+++ b/apps/plugins/zxbox/keymaps.h
@@ -102,14 +102,6 @@
 #elif CONFIG_KEYPAD == COWON_D2_PAD
 #define ZX_MENU         (BUTTON_MENU|BUTTON_REL)
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-#define ZX_UP      BUTTON_UP
-#define ZX_DOWN    BUTTON_DOWN
-#define ZX_LEFT    BUTTON_LEFT
-#define ZX_RIGHT   BUTTON_RIGHT
-#define ZX_SELECT     BUTTON_SELECT
-#define ZX_MENU    BUTTON_MENU
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 #define ZX_UP      BUTTON_UP
 #define ZX_DOWN    BUTTON_DOWN
diff --git a/apps/plugins/zxbox/zxbox_keyb.c b/apps/plugins/zxbox/zxbox_keyb.c
index 2eb7feaa06..6a5c2a6c81 100644
--- a/apps/plugins/zxbox/zxbox_keyb.c
+++ b/apps/plugins/zxbox/zxbox_keyb.c
@@ -102,15 +102,6 @@
 
 #define KBD_ABORT BUTTON_POWER
 
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-
-#define KBD_SELECT BUTTON_SELECT
-#define KBD_ABORT BUTTON_BACK
-#define KBD_LEFT BUTTON_LEFT
-#define KBD_RIGHT BUTTON_RIGHT
-#define KBD_UP BUTTON_UP
-#define KBD_DOWN BUTTON_DOWN
-
 #elif CONFIG_KEYPAD == CREATIVE_ZENXFI3_PAD
 
 #define KBD_SELECT (BUTTON_PLAY|BUTTON_REL)
diff --git a/bootloader/SOURCES b/bootloader/SOURCES
index ff6a6b8d6f..8510479739 100644
--- a/bootloader/SOURCES
+++ b/bootloader/SOURCES
@@ -46,8 +46,6 @@ show_logo.c
 #elif defined(XDUOO_X3)
 xduoox3.c
 show_logo.c
-#elif defined(CREATIVE_ZVx)
-creativezvm.c
 #elif CONFIG_CPU==AS3525 || CONFIG_CPU==AS3525v2
 sansa_as3525.c
 show_logo.c
diff --git a/bootloader/creativezvm.c b/bootloader/creativezvm.c
deleted file mode 100644
index db7a8c7459..0000000000
--- a/bootloader/creativezvm.c
+++ /dev/null
@@ -1,120 +0,0 @@
-/***************************************************************************
-*             __________               __   ___.
-*   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
-*   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
-*   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
-*   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
-*                     \/            \/     \/    \/            \/
-* $Id$
-*
-* Copyright (C) 2008 by Maurus Cuelenaere
-*
-* All files in this archive are subject to the GNU General Public License.
-* See the file COPYING in the source tree root for full license agreement.
-*
-* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
-* KIND, either express or implied.
-*
-****************************************************************************/
-
-#include "system.h"
-#include "lcd.h"
-#include "../kernel-internal.h"
-#include "storage.h"
-#include "ata-target.h"
-#include "file_internal.h"
-#include "disk.h"
-#include "font.h"
-#include "backlight.h"
-#include "button.h"
-#include "common.h"
-#include "loader_strerror.h"
-#include "rb-loader.h"
-#include "usb.h"
-#include "version.h"
-
-
-static void load_fw(unsigned char* ptr, unsigned int len)
-{
-    (void)ptr;
-    (void)len;
-    asm volatile("ldr pc, =0x1EE0000");
-}
-
-void main(void)
-{
-    unsigned char* loadbuffer;
-    int buffer_size;
-    int(*kernel_entry)(void);
-    int ret;
-
-    /* Make sure interrupts are disabled */
-    set_irq_level(IRQ_DISABLED);
-    set_fiq_status(FIQ_DISABLED);
-    system_init();
-    kernel_init();
-
-    /* Now enable interrupts */
-    set_irq_level(IRQ_ENABLED);
-    set_fiq_status(FIQ_ENABLED);
-    lcd_init();
-    backlight_init(); /* BUGFIX backlight_init MUST BE AFTER lcd_init */
-    font_init();
-    button_init();
-    usb_init();
-
-#ifdef HAVE_LCD_ENABLE
-    lcd_enable(true);
-#endif
-    lcd_setfont(FONT_SYSFIXED);
-    reset_screen();
-    printf("Rockbox boot loader");
-    printf("Version %s", rbversion);
-
-    ret = storage_init();
-    if(ret)
-        printf("ATA error: %d", ret);
-
-    filesystem_init();
-
-    /* If no button is held, start the OF */
-    if(button_read_device() == 0)
-    {
-        printf("Loading Creative firmware...");
-
-        loadbuffer = (unsigned char*)0x00A00000;
-        ret = load_minifs_file("creativeos.jrm", loadbuffer);
-        if(ret != -1)
-        {
-            set_irq_level(IRQ_DISABLED);
-            set_fiq_status(FIQ_DISABLED);
-            /* Doesn't return! */
-            load_fw(loadbuffer, ret);
-        }
-        else
-            printf("FAILED!");
-    }
-    else
-    {
-        ret = disk_mount_all();
-        if (ret <= 0)
-            error(EDISK, ret, true);
-
-        printf("Loading Rockbox firmware...");
-
-        loadbuffer = (unsigned char*)0x00900000;
-        buffer_size = (unsigned char*)0x01900000 - loadbuffer;
-
-        ret = load_firmware(loadbuffer, BOOTFILE, buffer_size);
-        if(ret <= EFILE_EMPTY)
-            error(EBOOTFILE, ret, true);
-
-        kernel_entry = (void*) loadbuffer;
-        ret = kernel_entry();
-        printf("FAILED!");
-    }
-
-    storage_sleepnow();
-
-    while(1);
-}
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 4fa1cfaaf1..c992b2010c 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -1304,19 +1304,6 @@ target/arm/tms320dm320/mrobe-500/power-mr500.c
 target/arm/tms320dm320/mrobe-500/usb-mr500.c
 #endif /* MROBE_500 */
 
-#ifdef CREATIVE_ZVx
-drivers/lcd-memframe.c
-target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
-target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
-target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
-target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
-target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
-target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
-target/arm/tms320dm320/creative-zvm/power-creativezvm.c
-target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
-target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
-#endif /* CREATIVE_ZVx */
-
 #if defined(CREATIVE_ZEN) || defined(CREATIVE_ZENXFI) || defined(CREATIVE_ZENMOZAIC) \
     || defined(CREATIVE_ZENV) || defined(CREATIVE_ZENXFISTYLE)
 #ifndef BOOTLOADER
diff --git a/firmware/asm/SOURCES b/firmware/asm/SOURCES
index ea1cf94cfa..463c120213 100644
--- a/firmware/asm/SOURCES
+++ b/firmware/asm/SOURCES
@@ -49,7 +49,7 @@ mempcpy.c
 #endif
 
 #if (defined(SANSA_E200) || defined(GIGABEAT_F) || defined(GIGABEAT_S) || \
-    defined(CREATIVE_ZVx) || defined(SANSA_CONNECT) || defined(SANSA_FUZEPLUS) || \
+    defined(SANSA_CONNECT) || defined(SANSA_FUZEPLUS) || \
     defined(COWON_D2) || defined(SAMSUNG_YPR0) || \
     defined(SAMSUNG_YPR1) || defined(DX50) || defined(DX90) || (defined(MROBE_500) && !defined(LCD_USE_DMA)) || \
     defined(CREATIVE_ZEN) || defined(CREATIVE_ZENXFI) || defined(SONY_NWZ_LINUX) || defined(HIBY_LINUX) || \
diff --git a/firmware/drivers/audio/tlv320.c b/firmware/drivers/audio/tlv320.c
index c4c748d527..19212155b1 100644
--- a/firmware/drivers/audio/tlv320.c
+++ b/firmware/drivers/audio/tlv320.c
@@ -50,11 +50,7 @@ static int vol_tenthdb2hw(int db)
 }
 
 /* local functions and definations */
-#ifndef CREATIVE_ZVx
 #define TLV320_ADDR 0x34
-#else
-#define TLV320_ADDR 0x1A
-#endif
 
 static struct tlv320_info
 {
@@ -133,11 +129,7 @@ void audiohw_init(void)
     audiohw_mute(true);
     tlv320_write_reg(REG_AAP, AAP_DAC | AAP_MICM);
     tlv320_write_reg(REG_DAP, 0x00);  /* No deemphasis */
-#ifndef CREATIVE_ZVx
     tlv320_write_reg(REG_DAIF, DAIF_IWL_16 | DAIF_FOR_I2S);
-#else
-    tlv320_write_reg(REG_DAIF, DAIF_IWL_32 | DAIF_FOR_DSP);
-#endif
     tlv320_write_reg(REG_DIA, DIA_ACT);
     audiohw_set_frequency(-1); /* default */
 }
diff --git a/firmware/export/config.h b/firmware/export/config.h
index e43dce9568..261b2d7402 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -112,9 +112,7 @@
 #define GIGABEAT_S_PAD     19
 #define COWON_D2_PAD        22
 #define IAUDIO_M3_PAD      23
-#define CREATIVEZVM_PAD    24
 #define SANSA_M200_PAD     25
-#define CREATIVEZV_PAD     26
 #define PHILIPS_SA9200_PAD 27
 #define PHILIPS_HDD1630_PAD 29
 #define ONDAVX747_PAD      31
@@ -233,7 +231,6 @@
 #define LCD_C200     17 /* as used by Sandisk Sansa c200 */
 #define LCD_MROBE500 18 /* as used by Olympus M:Robe 500i */
 #define LCD_MROBE100 19 /* as used by Olympus M:Robe 100 */
-#define LCD_CREATIVEZVM 22 /* as used by Creative Zen Vision:M */
 #define LCD_TL0350A  23 /* as used by the iAudio M3 remote, treated as main LCD */
 #define LCD_COWOND2  24 /* as used by Cowon D2 - LTV250QV, TCC7801 driver */
 #define LCD_SA9200   25 /* as used by the Philips SA9200 */
@@ -438,12 +435,6 @@ Lyre prototype 1 */
 #include "config/mrobe500.h"
 #elif defined(COWON_D2)
 #include "config/cowond2.h"
-#elif defined(CREATIVE_ZVM)
-#include "config/zenvisionm30gb.h"
-#elif defined(CREATIVE_ZVM60GB)
-#include "config/zenvisionm60gb.h"
-#elif defined(CREATIVE_ZV)
-#include "config/zenvision.h"
 #elif defined(CREATIVE_ZENXFI2)
 #include "config/creativezenxfi2.h"
 #elif defined(CREATIVE_ZENXFI3)
diff --git a/firmware/export/config/zenvision.h b/firmware/export/config/zenvision.h
deleted file mode 100644
index eb94c84ca7..0000000000
--- a/firmware/export/config/zenvision.h
+++ /dev/null
@@ -1,166 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2008 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-/*
- * This config file is for the Creative Zen Vision
- */
-
-#define CONFIG_SDRAM_START 0x00900000
-
-#define CREATIVE_ZV 1
-
-#define MODEL_NAME   "Creative Zen Vision"
-
-/* This makes it part of the Creative Zen Vision family :) */
-#define CREATIVE_ZVx 1
-
-/* For Rolo and boot loader */
-#define MODEL_NUMBER 28
-
-/* define this if you use an ATA controller */
-#define CONFIG_STORAGE STORAGE_ATA
-
-/*define this if the ATA controller and method of USB access support LBA48 */
-#define HAVE_LBA48
-
-
-
-
-/* define this if you have a colour LCD */
-#define HAVE_LCD_COLOR
-
-/* define this if you have access to the quickscreen */
-#define HAVE_QUICKSCREEN
-
-/* define this if you would like tagcache to build on this target */
-#define HAVE_TAGCACHE
-
-/* define this if the target has volume keys which can be used in the lists */
-//#define HAVE_VOLUME_IN_LIST
-
-/* LCD dimensions */
-#define CONFIG_LCD LCD_CREATIVEZVM
-
-/* choose the lcd orientation. both work */
-#define CONFIG_ORIENTATION SCREEN_PORTRAIT
-
-#define LCD_WIDTH  640
-#define LCD_HEIGHT 480
-/* sqrt(640^2 + 480^2) / 2.5 = 320.0 */
-#define LCD_DPI 320
-
-#define LCD_DEPTH  16   /* 65k colours */
-#define LCD_PIXELFORMAT RGB565 /* rgb565 */
-
-/* Define this if your LCD can be enabled/disabled */
-#define HAVE_LCD_ENABLE
-
-#define CONFIG_KEYPAD CREATIVEZV_PAD
-#define HAVE_HEADPHONE_DETECTION
-//#define HAVE_TOUCHPAD
-
-/* Define this to enable morse code input */
-#define HAVE_MORSE_INPUT
-
-
-
-
-/* define this if you have a real-time clock */
-//#define CONFIG_RTC RTC_RX5X348AB
-
-/* define this if you have a disk storage, i.e. something
-   that needs spinups and can cause skips when shaked */
-#define HAVE_DISK_STORAGE
-
-/* Define this for LCD backlight available */
-//#define HAVE_BACKLIGHT
-
-//#define HAVE_BACKLIGHT_BRIGHTNESS
-
-/* Main LCD backlight brightness range and defaults */
-//#define MIN_BRIGHTNESS_SETTING          0
-//#define MAX_BRIGHTNESS_SETTING          127
-//#define DEFAULT_BRIGHTNESS_SETTING      85 /* OF "full brightness" */
-//#define DEFAULT_DIMNESS_SETTING         22 /* OF "most dim" */
-
-/* Define this if you have a software controlled poweroff */
-//#define HAVE_SW_POWEROFF
-//TODO: enable this back
-
-/* The number of bytes reserved for loadable codecs */
-#define CODEC_SIZE 0x100000
-
-/* The number of bytes reserved for loadable plugins */
-#define PLUGIN_BUFFER_SIZE 0x100000
-
-/* Define this if you have the TLV320 audio codec -> controlled by the DSP */
-#define HAVE_TLV320
-
-#define CONFIG_I2C I2C_DM320
-
-/* TLV320 has no tone controls, so we use the software ones */
-#define HAVE_SW_TONE_CONTROLS
-
-/*#define HW_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | \
-    SAMPR_CAP_11)*/
-
-#define BATTERY_CAPACITY_DEFAULT 1250 /* default battery capacity */
-#define BATTERY_CAPACITY_MIN 500        /* min. capacity selectable */
-#define BATTERY_CAPACITY_MAX 2500        /* max. capacity selectable */
-#define BATTERY_CAPACITY_INC 100         /* capacity increment */
-
-
-#define CONFIG_BATTERY_MEASURE VOLTAGE_MEASURE
-
-/* Hardware controlled charging with monitoring */
-//#define CONFIG_CHARGING CHARGING_MONITOR
-
-/* Define this if you have a TI TMS320DM320 */
-#define CONFIG_CPU DM320
-
-/* define this if the hardware can be powered off while charging */
-#define HAVE_POWEROFF_WHILE_CHARGING
-
-/* The size of the flash ROM */
-#define FLASH_SIZE 0x400000
-
-/* Define this to the CPU frequency */
-#define CPU_FREQ 16934400
-
-/* Define this if you have ATA power-off control */
-#define HAVE_ATA_POWER_OFF
-
-/* Define this if you have adjustable CPU frequency */
-/* #define HAVE_ADJUSTABLE_CPU_FREQ */
-
-#define BOOTFILE_EXT "zv"
-#define BOOTFILE "rockbox." BOOTFILE_EXT
-#define BOOTDIR "/.rockbox"
-
-#define CONFIG_USBOTG USBOTG_ISP1583
-#define HAVE_USBSTACK
-//#define HAVE_BOOTLOADER_USB_MODE
-#define USB_VENDOR_ID 0x041e
-#define USB_PRODUCT_ID 0x4133
-#define USB_NUM_ENDPOINTS 7
-
-/* Define this if a programmable hotkey is mapped */
-#define HAVE_HOTKEY
diff --git a/firmware/export/config/zenvisionm30gb.h b/firmware/export/config/zenvisionm30gb.h
deleted file mode 100644
index 236a153a3c..0000000000
--- a/firmware/export/config/zenvisionm30gb.h
+++ /dev/null
@@ -1,175 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2008 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-/*
- * This config file is for the Creative Zen Vision:M
- */
-
-#define CONFIG_SDRAM_START 0x00900000
-
-#define CREATIVE_ZVM 1
-
-#define MODEL_NAME   "Creative Zen Vision:M"
-
-/* This makes it part of the Creative Zen Vision family :) */
-#define CREATIVE_ZVx 1
-
-/* For Rolo and boot loader */
-#define MODEL_NUMBER 26
-
-/* define this if you use an ATA controller */
-#define CONFIG_STORAGE STORAGE_ATA
-
-/*define this if the ATA controller and method of USB access support LBA48 */
-#define HAVE_LBA48
-
-
-
-
-/* define this if you have a colour LCD */
-#define HAVE_LCD_COLOR
-
-/* define this if you have access to the quickscreen */
-#define HAVE_QUICKSCREEN
-
-/* define this if you would like tagcache to build on this target */
-#define HAVE_TAGCACHE
-
-/* define this if the target has volume keys which can be used in the lists */
-//#define HAVE_VOLUME_IN_LIST
-
-/* LCD dimensions */
-#define CONFIG_LCD LCD_CREATIVEZVM
-
-/* choose the lcd orientation. both work */
-#define CONFIG_ORIENTATION SCREEN_PORTRAIT
-
-#define LCD_WIDTH  320
-#define LCD_HEIGHT 240
-/* sqrt(320^2 + 240^2) / 2.5 = 160.0 */
-#define LCD_DPI 160
-
-#define LCD_DEPTH  16   /* 65k colours */
-#define LCD_PIXELFORMAT RGB565 /* rgb565 */
-
-/* Define this if your LCD can be enabled/disabled */
-/* Disabled until properly working
-#define HAVE_LCD_ENABLE */
-
-#define CONFIG_KEYPAD CREATIVEZVM_PAD
-#define HAVE_HEADPHONE_DETECTION
-//#define HAVE_TOUCHPAD
-
-/* Define this to enable morse code input */
-#define HAVE_MORSE_INPUT
-
-
-
-
-/* define this if you have a real-time clock */
-//#define CONFIG_RTC RTC_RX5X348AB
-
-/* define this if you have a disk storage, i.e. something
-   that needs spinups and can cause skips when shaked */
-#define HAVE_DISK_STORAGE
-
-/* Define this for LCD backlight available */
-//#define HAVE_BACKLIGHT
-
-//#define HAVE_BACKLIGHT_BRIGHTNESS
-
-/* Main LCD backlight brightness range and defaults */
-//#define MIN_BRIGHTNESS_SETTING          0
-//#define MAX_BRIGHTNESS_SETTING          127
-//#define DEFAULT_BRIGHTNESS_SETTING      85 /* OF "full brightness" */
-//#define DEFAULT_DIMNESS_SETTING         22 /* OF "most dim" */
-
-/* Define this if you have a software controlled poweroff */
-//#define HAVE_SW_POWEROFF
-//TODO: enable this back
-
-/* The number of bytes reserved for loadable codecs */
-#define CODEC_SIZE 0x100000
-
-/* The number of bytes reserved for loadable plugins */
-#define PLUGIN_BUFFER_SIZE 0x100000
-
-/* Define this if you have the TLV320 audio codec -> controlled by the DSP */
-#define HAVE_TLV320
-
-#define CONFIG_I2C I2C_DM320
-
-/* TLV320 has no tone controls, so we use the software ones */
-#define HAVE_SW_TONE_CONTROLS
-
-/*#define HW_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | \
-    SAMPR_CAP_11)*/
-
-#define BATTERY_CAPACITY_DEFAULT 1250 /* default battery capacity */
-#define BATTERY_CAPACITY_MIN 500        /* min. capacity selectable */
-#define BATTERY_CAPACITY_MAX 2500        /* max. capacity selectable */
-#define BATTERY_CAPACITY_INC 100         /* capacity increment */
-
-
-#define CONFIG_BATTERY_MEASURE VOLTAGE_MEASURE
-
-/* Hardware controlled charging with monitoring */
-//#define CONFIG_CHARGING CHARGING_MONITOR
-
-/* Define this if you have a TI TMS320DM320 */
-#define CONFIG_CPU DM320
-
-/* define this if the hardware can be powered off while charging */
-#define HAVE_POWEROFF_WHILE_CHARGING
-
-/* The size of the flash ROM */
-#define FLASH_SIZE 0x400000
-
-/* Define this to the CPU frequency */
-#define CPU_FREQ 16934400
-
-/* Define this if you have ATA power-off control */
-#define HAVE_ATA_POWER_OFF
-
-/* Define this if you have adjustable CPU frequency */
-/* #define HAVE_ADJUSTABLE_CPU_FREQ */
-
-#define BOOTFILE_EXT "zvm"
-#define BOOTFILE "rockbox." BOOTFILE_EXT
-#define BOOTDIR "/.rockbox"
-
-#define CONFIG_USBOTG USBOTG_ISP1583
-#define HAVE_USBSTACK
-//#define HAVE_BOOTLOADER_USB_MODE
-#define USB_VENDOR_ID 0x041e
-#define USB_PRODUCT_ID 0x4133
-#define USB_NUM_ENDPOINTS 7
-
-/*DEBUGGING!*/
-/*
-#define THREAD_EXTRA_CHECKS 1
-#define DEBUG 1
-#define debug(msg) printf(msg)
-#define BUTTON_DEBUG
-*/
-
-/* Define this if a programmable hotkey is mapped */
-#define HAVE_HOTKEY
diff --git a/firmware/export/config/zenvisionm60gb.h b/firmware/export/config/zenvisionm60gb.h
deleted file mode 100644
index 64f6925328..0000000000
--- a/firmware/export/config/zenvisionm60gb.h
+++ /dev/null
@@ -1,167 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2008 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-/*
- * This config file is for the Creative Zen Vision:M 60GB
- */
-
-#define CONFIG_SDRAM_START 0x00900000
-
-#define CREATIVE_ZVM60GB 1
-
-#define MODEL_NAME   "Creative Zen Vision:M 60GB"
-
-/* This makes it part of the Creative Zen Vision family :) */
-#define CREATIVE_ZVx 1
-
-/* For Rolo and boot loader */
-#define MODEL_NUMBER 27
-
-/* define this if you use an ATA controller */
-#define CONFIG_STORAGE STORAGE_ATA
-
-/*define this if the ATA controller and method of USB access support LBA48 */
-#define HAVE_LBA48
-
-
-
-
-/* define this if you have a colour LCD */
-#define HAVE_LCD_COLOR
-
-/* define this if you have access to the quickscreen */
-#define HAVE_QUICKSCREEN
-
-/* define this if you would like tagcache to build on this target */
-#define HAVE_TAGCACHE
-
-/* define this if the target has volume keys which can be used in the lists */
-//#define HAVE_VOLUME_IN_LIST
-
-/* LCD dimensions */
-#define CONFIG_LCD LCD_CREATIVEZVM
-
-/* choose the lcd orientation. both work */
-#define CONFIG_ORIENTATION SCREEN_PORTRAIT
-
-#define LCD_WIDTH  320
-#define LCD_HEIGHT 240
-/* sqrt(320^2 + 240^2) / 2.5 = 160.0 */
-#define LCD_DPI 160
-
-#define LCD_DEPTH  16   /* 65k colours */
-#define LCD_PIXELFORMAT RGB565 /* rgb565 */
-
-/* Define this if your LCD can be enabled/disabled */
-#define HAVE_LCD_ENABLE
-
-#define CONFIG_KEYPAD CREATIVEZVM_PAD
-#define HAVE_HEADPHONE_DETECTION
-//#define HAVE_TOUCHPAD
-
-/* Define this to enable morse code input */
-#define HAVE_MORSE_INPUT
-
-
-
-
-/* define this if you have a real-time clock */
-//#define CONFIG_RTC RTC_RX5X348AB
-
-/* define this if you have a disk storage, i.e. something
-   that needs spinups and can cause skips when shaked */
-#define HAVE_DISK_STORAGE
-
-/* Define this for LCD backlight available */
-//#define HAVE_BACKLIGHT
-
-//#define HAVE_BACKLIGHT_BRIGHTNESS
-
-/* Main LCD backlight brightness range and defaults */
-//#define MIN_BRIGHTNESS_SETTING          0
-//#define MAX_BRIGHTNESS_SETTING          127
-//#define DEFAULT_BRIGHTNESS_SETTING      85 /* OF "full brightness" */
-//#define DEFAULT_DIMNESS_SETTING         22 /* OF "most dim" */
-
-/* Define this if you have a software controlled poweroff */
-//#define HAVE_SW_POWEROFF
-//TODO: enable this back
-
-/* The number of bytes reserved for loadable codecs */
-#define CODEC_SIZE 0x100000
-
-/* The number of bytes reserved for loadable plugins */
-#define PLUGIN_BUFFER_SIZE 0x100000
-
-/* Define this if you have the TLV320 audio codec -> controlled by the DSP */
-#define HAVE_TLV320
-
-#define CONFIG_I2C I2C_DM320
-
-/* TLV320 has no tone controls, so we use the software ones */
-#define HAVE_SW_TONE_CONTROLS
-
-/*#define HW_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | \
-    SAMPR_CAP_11)*/
-
-#define BATTERY_CAPACITY_DEFAULT 1250 /* default battery capacity */
-#define BATTERY_CAPACITY_MIN 500        /* min. capacity selectable */
-#define BATTERY_CAPACITY_MAX 2500        /* max. capacity selectable */
-#define BATTERY_CAPACITY_INC 100         /* capacity increment */
-
-
-#define CONFIG_BATTERY_MEASURE VOLTAGE_MEASURE
-
-/* Hardware controlled charging with monitoring */
-//#define CONFIG_CHARGING CHARGING_MONITOR
-
-/* Define this if you have a TI TMS320DM320 */
-#define CONFIG_CPU DM320
-
-/* define this if the hardware can be powered off while charging */
-#define HAVE_POWEROFF_WHILE_CHARGING
-
-/* The size of the flash ROM */
-#define FLASH_SIZE 0x400000
-
-/* Define this to the CPU frequency */
-#define CPU_FREQ 16934400
-
-/* Define this if you have ATA power-off control */
-#define HAVE_ATA_POWER_OFF
-
-/* Define this if you have adjustable CPU frequency */
-/* #define HAVE_ADJUSTABLE_CPU_FREQ */
-
-#define BOOTFILE_EXT "zvm60"
-#define BOOTFILE "rockbox." BOOTFILE_EXT
-#define BOOTDIR "/.rockbox"
-
-/* #define CONFIG_USBOTG    USBOTG_ISP1761 */
-#define CONFIG_USBOTG USBOTG_ISP1583
-#define HAVE_USBSTACK
-//#define HAVE_BOOTLOADER_USB_MODE
-#define USB_VENDOR_ID 0x041e
-#define USB_PRODUCT_ID 0x4133
-#define USB_NUM_ENDPOINTS 7
-
-/* Define this if a programmable hotkey is mapped */
-#define HAVE_HOTKEY
diff --git a/firmware/target/arm/ata-as-arm.S b/firmware/target/arm/ata-as-arm.S
index cec4a7e235..4b4701f7fa 100644
--- a/firmware/target/arm/ata-as-arm.S
+++ b/firmware/target/arm/ata-as-arm.S
@@ -36,9 +36,6 @@
     /* Untested */
     .text
     .equ    .ata_port, 0x18000000
-#elif defined(CREATIVE_ZVx) /* Zen Vision could have an other address */
-    .text
-    .equ    .ata_port, 0x50FEE000
 #elif defined(MROBE_500)
     .text
     .equ    .ata_port, 0x50400000
diff --git a/firmware/target/arm/system-arm-classic.h b/firmware/target/arm/system-arm-classic.h
index bc648e43ed..a941a36a7e 100644
--- a/firmware/target/arm/system-arm-classic.h
+++ b/firmware/target/arm/system-arm-classic.h
@@ -104,18 +104,6 @@ static inline int set_interrupt_status(int status, int mask)
     unsigned long cpsr;
     int oldstatus;
     /* Read the old levels and set the new ones */
-#if defined(CREATIVE_ZVx) && defined(BOOTLOADER)
-// FIXME:  This workaround is for a problem with inlining;
-// for some reason 'mask' gets treated as a variable/non-immediate constant
-// but only on this build.  All others (including the nearly-identical mrobe500boot) are fine
-    asm volatile (
-        "mrs    %1, cpsr        \n"
-        "bic    %0, %1, %[mask] \n"
-        "orr    %0, %0, %2      \n"
-        "msr    cpsr_c, %0      \n"
-        : "=&r,r"(cpsr), "=&r,r"(oldstatus)
-        : "r,i"(status & mask), [mask]"r,i"(mask));
-#else
     asm volatile (
         "mrs    %1, cpsr        \n"
         "bic    %0, %1, %[mask] \n"
@@ -123,7 +111,6 @@ static inline int set_interrupt_status(int status, int mask)
         "msr    cpsr_c, %0      \n"
         : "=&r,r"(cpsr), "=&r,r"(oldstatus)
         : "r,i"(status & mask), [mask]"i,i"(mask));
-#endif
     return oldstatus;
 }
 
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/adc-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
deleted file mode 100644
index e891b98eac..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id: adc-mr500.c 14817 2007-09-22 15:43:38Z kkurbjun $
- *
- * Copyright (C) 2007 by Karl Kurbjun
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#include "cpu.h"
-#include "adc.h"
-#include "adc-target.h"
-#include "kernel.h"
-
-void adc_init(void)
-{
-}
-
-/* Called to get the recent ADC reading */
-inline unsigned short adc_read(int channel)
-{
-    return (short)channel;
-}
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/adc-target.h b/firmware/target/arm/tms320dm320/creative-zvm/adc-target.h
deleted file mode 100644
index bf2c5dfc08..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/adc-target.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id: adc-target.h 14817 2007-09-22 15:43:38Z kkurbjun $
- *
- * Copyright (C) 2007 by Karl Kurbjun
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
- 
-#ifndef _ADC_TARGET_H_
-#define _ADC_TARGET_H_
-
-/* only two channels used by the Gigabeat */
-#define NUM_ADC_CHANNELS 2
-
-#define ADC_BATTERY     0
-#define ADC_HPREMOTE    1
-#define ADC_UNKNOWN_3   2
-#define ADC_UNKNOWN_4   3
-#define ADC_UNKNOWN_5   4
-#define ADC_UNKNOWN_6   5
-#define ADC_UNKNOWN_7   6
-#define ADC_UNKNOWN_8   7
-
-#define ADC_UNREG_POWER ADC_BATTERY /* For compatibility */
-#define ADC_READ_ERROR 0xFFFF
-
-#endif
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/ata-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
deleted file mode 100644
index 6936a24873..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
+++ /dev/null
@@ -1,544 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2008 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#include "config.h"
-#include "cpu.h"
-#include "kernel.h"
-#include "thread.h"
-#include "system.h"
-#include "power.h"
-#include "panic.h"
-#include "ata-driver.h"
-#include "dm320.h"
-#include "ata.h"
-#include "string.h"
-#include "core_alloc.h"
-#include "logf.h"
-#include "ata-defines.h"
-
-#undef ata_read_sectors
-#undef ata_write_sectors
-
-static void sleep_ms(int ms)
-{
-    sleep(ms*HZ/1000);
-}
-
-void ide_power_enable(bool on)
-{
-/* Disabled until figured out what's wrong */
-#if 0
-    int old_level = disable_irq_save();
-    if(on)
-    {
-        IO_GIO_BITSET0 = (1 << 14);
-        ata_reset();
-    }
-    else
-        IO_GIO_BITCLR0 = (1 << 14);
-    restore_irq(old_level);
-#else
-    (void)on;
-#endif
-}
-
-inline bool ide_powered()
-{
-#if 0
-    return (IO_GIO_BITSET0 & (1 << 14));
-#else
-    return true;
-#endif
-}
-
-void ata_reset(void)
-{
-    int old_level = disable_irq_save();
-    if(!ide_powered())
-    {
-        ide_power_enable(true);
-        sleep_ms(150);
-    }
-    else
-    {
-        IO_GIO_BITSET0 = (1 << 5);
-        IO_GIO_BITCLR0 = (1 << 3);
-        sleep_ms(1);
-    }
-    IO_GIO_BITCLR0 = (1 << 5);
-    sleep_ms(10);
-    IO_GIO_BITSET0 = (1 << 3);
-    while(!(ATA_COMMAND & STATUS_RDY))
-        sleep_ms(10);
-    restore_irq(old_level);
-}
-
-void ata_enable(bool on)
-{
-    (void)on;
-    return;
-}
-
-bool ata_is_coldstart(void)
-{
-    return true;
-}
-
-void ata_device_init(void)
-{
-    IO_INTC_EINT1 |= INTR_EINT1_EXT2;   /* enable GIO2 interrupt */
-    /* TODO: mimic OF inits... */
-    return;
-}
-
-void GIO2(void)
-{
-#ifdef DEBUG
-    logf("GIO2 interrupt...");
-#endif
-    IO_INTC_IRQ1 = INTR_IRQ1_EXT2; /* Mask GIO2 interrupt */
-    return;
-}
-
-/*
- ---------------------------------------------------------------------------
- CreativeFileSystem parsing/handling code
- ---------------------------------------------------------------------------
- */
-
-#define VFAT_SECTOR_SIZE(x) ( (x)/0x8000 ) /* 1GB array requires 80kB of RAM */
-
-extern int ata_read_sectors(IF_MD(int drive,) sector_t start, int count, void* buf);
-extern int ata_write_sectors(IF_MD(int drive,) sector_t start, int count, const void* buf);
-
-// XXX 64-bit:   Due to this it's not likely that this target will ever handle 64-bit storage.
-
-struct main_header
-{
-    char mblk[4];
-    unsigned int sector_size;
-    long long disk_size;
-    struct partition_header
-    {
-        unsigned long end;
-        unsigned long start;
-        char name[8];
-    } partitions[31];
-};
-
-struct cfs_header
-{
-    unsigned int unk;
-    unsigned int unk2;
-    unsigned int sector_size;
-    unsigned int unk4;
-    unsigned int unk5;
-    char identifier[4];
-    unsigned int first_inode;
-    unsigned int unk8;
-    unsigned int unk9;
-    unsigned int unk10;
-    unsigned int unk11;
-};
-
-struct cfs_inode
-{
-    unsigned char magic[4];
-    unsigned int number;
-    unsigned int parent;
-    unsigned int unk;
-    unsigned int type;
-    unsigned int created_time;
-    unsigned int lastmodified_time;
-    unsigned int unk2;
-    unsigned int first_class_chain[12];
-    unsigned int unk3;
-    unsigned int unk4;
-    unsigned int second_class_chain_first_cluster;
-    unsigned int unk9;
-    unsigned int unk10;
-    unsigned int second_class_chain_second_cluster;
-    unsigned int unk11;
-    unsigned int unk12;
-    unsigned int unk13;
-    unsigned int filesize;
-    unsigned int serial_number;
-    unsigned int number_of_metadata_records;
-};
-
-struct cfs_direntry
-{
-    unsigned char identifier[4];
-    unsigned int unk;
-    unsigned int items;
-    unsigned int unk2;
-    unsigned char maxlen[2];
-    unsigned char padding[202];
-    /* struct cfs_direntry_item _items[items]; */
-};
-struct cfs_direntry_item
-{
-    unsigned int inode_number;
-    unsigned short strlen;
-    unsigned short bytesperchar;
-    char string[32];
-};
-
-static bool cfs_inited = false;
-static unsigned long cfs_start;
-#ifdef BOOTLOADER
-static unsigned long *sectors;
-#else
-static int sectors_handle;
-#endif
-
-#define CFS_START              ( ((hdr->partitions[1].start*hdr->sector_size) & ~0xFFFF) + 0x10000 )
-#define CFS_CLUSTER2CLUSTER(x) ( (CFS_START/512)+((x)-1)*64 )
-
-/* Limited version of UCS -> ASCII */
-static char* ucs2letostring(unsigned char* s)
-{
-    static char res[256];
-    int i;
-
-    for(i=0; (s[i] == 0 && s[i+1] == 0 && i<256); i++)
-        res[i] = s[i*2];
-
-    return (char*)&res;
-}
-
-static void cfs_init(void)
-{
-    struct main_header *hdr;
-    struct cfs_header *cfs;
-    struct cfs_inode *root_inode, *vfat_inode, *inode;
-    struct cfs_direntry *root_direntry, *vfat_direntry;
-    struct cfs_direntry_item *root_direntry_items, *vfat_direntry_items;
-    unsigned int i, j, k, vfat_inode_nr=0, vfat_inodes_nr[10], vfat_sector_count;
-    unsigned char sector[512];
-    static unsigned int vfat_data[2][0x8000];
-    static unsigned char sector2[0x8000];
-
-    if(cfs_inited)
-        return;
-
-    /* Read MBLK */
-    _ata_read_sectors(0, 1, &sector);
-    hdr = (struct main_header*)&sector;
-
-    logf("CFS is at 0x%x [0x%x]", CFS_START, CFS_START/512);
-
-    /* Read CFS header */
-    _ata_read_sectors(CFS_START/512, 64, &sector2);
-    cfs = (struct cfs_header*)&sector2;
-
-    logf("First inode = 0x%x", cfs->first_inode);
-
-    /* Read root inode */
-    _ata_read_sectors(CFS_CLUSTER2CLUSTER(cfs->first_inode), 64, &sector2);
-    root_inode = (struct cfs_inode*)&sector2;
-
-    logf("Root inode = 0x%x", root_inode);
-
-    logf("0x%x 0x%x", CFS_CLUSTER2CLUSTER(root_inode->first_class_chain[0]), root_inode->first_class_chain[0]);
-
-    /* Read root inode's first sector */
-    _ata_read_sectors(CFS_CLUSTER2CLUSTER(root_inode->first_class_chain[0]), 64, &sector2);
-    root_direntry = (struct cfs_direntry*)&sector2;
-    root_direntry_items = (struct cfs_direntry_item*)(&sector2[0]+sizeof(struct cfs_direntry));
-
-    logf("0x%x", root_direntry->identifier);
-
-    logf("%d", root_direntry->items);
-
-    /* Search VFAT inode */
-    for(i=0; i < root_direntry->items; i++)
-    {
-        if(root_direntry_items[i].inode_number != 0)
-        {
-            //logf(" * [%s] at 0x%x", ucs2letostring(&root_direntry_items[i].string[0]), root_direntry_items[i].inode_number);
-            if(strcmp(ucs2letostring(&root_direntry_items[i].string[0]), "VFAT") == 0)
-                vfat_inode_nr = root_direntry_items[i].inode_number;
-        }
-    }
-
-    logf("VFAT inode = 0x%x", vfat_inode_nr);
-
-    if(vfat_inode_nr != 0)
-    {
-        /* Read VFAT inode */
-        _ata_read_sectors(CFS_CLUSTER2CLUSTER(vfat_inode_nr), 64, &sector2);
-        vfat_inode = (struct cfs_inode*)&sector2;
-
-        /* Read VFAT inode's first sector */
-        _ata_read_sectors(CFS_CLUSTER2CLUSTER(vfat_inode->first_class_chain[0]), 64, &sector2);
-        vfat_direntry = (struct cfs_direntry*)&sector2;
-        vfat_direntry_items = (struct cfs_direntry_item*)(&sector2[0]+sizeof(struct cfs_direntry));
-
-        /* Search for VFAT's subinodes */
-        for(i=0; i < vfat_direntry->items; i++)
-        {
-            logf(" * [%s] at 0x%x\n", ucs2letostring(&vfat_direntry_items[i].string[0]), vfat_direntry_items[i].inode_number);
-            if(i > 0)
-                vfat_inodes_nr[i-1] = vfat_direntry_items[i].inode_number;
-        }
-
-        /* Determine size of VFAT file */
-        _ata_read_sectors(CFS_CLUSTER2CLUSTER(vfat_inodes_nr[1]), 1, &sector);
-        inode = (struct cfs_inode*)&sector;
-#ifndef BOOTLOADER
-        sectors_handle = core_alloc(VFAT_SECTOR_SIZE(inode->filesize));
-        unsigned long *sectors = core_get_data(sectors_handle);
-#else
-        static unsigned long _sector[VFAT_SECTOR_SIZE(1024*1024*1024)]; /* 1GB guess */
-        sectors = _sector;
-#endif
-
-        logf("VFAT file size: 0x%x", inode->filesize);
-
-        /* Clear data sectors */
-        memset(&sectors, 0, VFAT_SECTOR_SIZE(inode->filesize)*sizeof(unsigned long));
-
-        /* Read all data sectors' addresses in memory */
-        vfat_sector_count = 0;
-        for(i=0; vfat_inodes_nr[i] != 0; i++)
-        {
-            _ata_read_sectors(CFS_CLUSTER2CLUSTER(vfat_inodes_nr[i]), 1, &sector);
-            inode = (struct cfs_inode*)&sector;
-
-            /* Read second & third class chain */
-            _ata_read_sectors(CFS_CLUSTER2CLUSTER(inode->second_class_chain_first_cluster), 64, &vfat_data[0]);
-            _ata_read_sectors(CFS_CLUSTER2CLUSTER(inode->second_class_chain_second_cluster), 64, &vfat_data[1]);
-
-            /* First class chain */
-#ifndef BOOTLOADER
-            sectors = core_get_data(sectors_handle);
-#endif
-            for(j=0; j<12; j++)
-            {
-                if( (inode->first_class_chain[j] & 0xFFFF) != 0xFFFF &&
-                     inode->first_class_chain[j] != 0
-                  )
-                    sectors[vfat_sector_count++] = inode->first_class_chain[j];
-            }
-
-            /* Second class chain */
-#ifndef BOOTLOADER
-            sectors = core_get_data(sectors_handle);
-#endif
-            for(j=0; j<0x8000/4; j++)
-            {
-                if( (vfat_data[0][j] & 0xFFFF) != 0xFFFF &&
-                    vfat_data[0][j] != 0
-                  )
-                    sectors[vfat_sector_count++] = vfat_data[0][j];
-            }
-
-            /* Third class chain */
-            for(j=0; j<0x8000/4; j++)
-            {
-                if( (vfat_data[1][j] & 0xFFFF) != 0xFFFF &&
-                    vfat_data[1][j] != 0
-                  )
-                {
-                    memset(&vfat_data[0], 0, 0x8000*sizeof(unsigned int));
-
-                    /* Read third class subchain(s) */
-                    _ata_read_sectors(CFS_CLUSTER2CLUSTER(vfat_data[1][j]), 64, &vfat_data[0]);
-
-#ifndef BOOTLOADER
-                    sectors = core_get_data(sectors_handle);
-#endif
-                    for(k=0; k<0x8000/4; k++)
-                    {
-                        if( (vfat_data[0][k] & 0xFFFF) != 0xFFFF &&
-                            vfat_data[0][k] != 0
-                          )
-                            sectors[vfat_sector_count++] = vfat_data[0][k];
-                    }
-                }
-            }
-        }
-
-        logf("Sector count: %d 0x%x", vfat_sector_count, vfat_sector_count);
-    }
-    else
-        panicf("Cannot find virtual FAT filesystem!");
-
-    cfs_inited = true;
-}
-
-static inline sector_t map_sector(sector_t sector)
-{
-    /*
-     *  Sector mapping: start of CFS + FAT_SECTOR2CFS_SECTOR(sector) + missing part
-     *  FAT works with sectors of 0x200 bytes, CFS with sectors of 0x8000 bytes.
-     */
-#ifndef BOOTLOADER
-    sector_t *sectors = core_get_data(sectors_handle);
-#endif
-    return cfs_start+sectors[sector/64]*64+sector%64;
-}
-
-int ata_read_sectors(IF_MD(int drive,) sector_t start, int count, void* buf)
-{
-    if(!cfs_inited)
-        cfs_init();
-
-    /* Check if count is lesser than or equal to 1 native CFS sector */
-    if(count <= 64)
-        return _ata_read_sectors(IF_MD(drive,) map_sector(start), count, buf);
-    else
-    {
-        int i;
-        unsigned char* dest = (unsigned char*)buf;
-
-        /* Read sectors in parts of 0x8000 */
-        for(i=0; i<count; i+=64)
-        {
-            int ret = _ata_read_sectors(IF_MD(drive,) map_sector(start+i), (count-i >= 64 ? 64 : count-i), (void*)dest);
-            if(ret != 0)
-                return ret;
-
-            dest += (count-i >= 64 ? 0x8000 : (count-i)*512);
-        }
-
-        return 0;
-    }
-}
-
-int ata_write_sectors(IF_MD(int drive,) sector_t start, int count, const void* buf)
-{
-    if(!cfs_inited)
-        cfs_init();
-
-#if 0 /* Disabled for now */
-    /* Check if count is lesser than or equal to 1 native CFS sector */
-    if(count <= 64)
-        return _ata_write_sectors(IF_MD(drive,) map_sector(start), count, buf);
-    else
-    {
-        int i, ret;
-        unsigned char* dest = (unsigned char*)buf;
-
-        /* Read sectors in parts of 0x8000 */
-        for(i=0; i<count; i+=64)
-        {
-            ret = _ata_write_sectors(IF_MD(drive,) map_sector(start+i), (count-i >= 64 ? 64 : count-i), (const void*)dest);
-            if(ret != 0)
-                return ret;
-
-            dest += (count-i >= 64 ? 0x8000 : (count-i)*512);
-        }
-
-        return ret;
-    }
-#else
-    (void)start;
-    (void)count;
-    (void)buf;
-    return 0;
-#endif
-}
-
-#ifdef BOOTLOADER
-
-/*
- ---------------------------------------------------------------------------
- MiniFileSystem parsing code
- ---------------------------------------------------------------------------
- */
-
-struct minifs_file
-{
-    char name[0x10];
-    unsigned int unk;
-    unsigned long size;
-    unsigned int chain1;
-    unsigned int chain2;
-};
-
-struct minifs_chain
-{
-    unsigned int unknown;
-    unsigned short chain[0x27FE];
-    unsigned int unknown2;
-    unsigned long length;
-};
-
-
-#define DIR_BITMAP_START       0x0143
-#define DIR_START              0x0144
-#define DATASPACE_BITMAP_START 0x0145
-#define DATASPACE_START        0x0146
-
-#define CLUSTER_CHAIN_SIZE     0x5008
-#define CLUSTER_CHAIN_HEAD     0x0000
-#define CLUSTER_CHAIN_BITMAP   0x0001
-#define CLUSTER_CHAIN_CHAIN    0x0002
-
-
-int load_minifs_file(char* filename, unsigned char* location)
-{
-    struct main_header *hdr;
-    static struct minifs_file files[128];
-    struct minifs_chain *chain;
-    unsigned int i;
-    int found = -1;
-    unsigned char sector[512];
-    static unsigned char chain_data[42*512]; /* stack overflow if not static */
-
-    /* Read MBLK */
-    _ata_read_sectors(0, 1, &sector);
-    hdr = (struct main_header*)&sector;
-
-    /* Read directory listing */
-#define CLUSTER2SECTOR(x) ( (hdr->partitions[0].start + (x)*8) )
-    _ata_read_sectors(CLUSTER2SECTOR(DIR_START), 8, &files);
-
-    for(i=0; i<127; i++)
-    {
-        if(strcmp(files[i].name, filename) == 0)
-            found = i;
-    }
-
-    if(found == -1)
-        return -1;
-
-#define GET_CHAIN(x)   ( CLUSTER2SECTOR(CLUSTER_CHAIN_CHAIN)*512 + (x)*CLUSTER_CHAIN_SIZE )
-#define FILE2SECTOR(x) ( CLUSTER2SECTOR(DATASPACE_START + (x)) )
-
-    /* Read chain list */
-    _ata_read_sectors(GET_CHAIN(files[found].chain1)/512, 41, &chain_data[0]);
-
-    chain = (struct minifs_chain*)&chain_data[GET_CHAIN(files[found].chain1)%512];
-
-    /* Copy data */
-    for(i=0; i<chain->length; i++)
-    {
-        _ata_read_sectors(FILE2SECTOR(chain->chain[i]), 8, location);
-        location += 0x1000;
-    }
-
-    return files[found].size;
-}
-
-#endif
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/ata-target.h b/firmware/target/arm/tms320dm320/creative-zvm/ata-target.h
deleted file mode 100644
index 41b8e73ad4..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/ata-target.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2007 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#ifndef ATA_TARGET_H
-#define ATA_TARGET_H
-
-#include "ata.h"
-
-/* DMA optimized reading and writing */
-#define ATA_OPTIMIZED_READING
-#define ATA_OPTIMIZED_WRITING
-/*
-#include "dma-target.h"
-#define copy_read_sectors dma_ata_read
-#define copy_write_sectors dma_ata_write
-*/
-
-/* Nasty hack, but Creative is nasty... */
-#define ata_read_sectors _ata_read_sectors
-#define ata_write_sectors _ata_write_sectors
-extern int _ata_read_sectors(IF_MD(int drive,) sector_t start, int count, void* buf);
-extern int _ata_write_sectors(IF_MD(int drive,) sector_t start, int count, const void* buf);
-
-/* General purpose memory region #1 */
-#define ATA_IOBASE      0x50FEE000
-#define ATA_DATA        (*((volatile unsigned short*)(ATA_IOBASE)))
-#define ATA_ERROR       (*((volatile unsigned char*)(ATA_IOBASE+0x2)))
-#define ATA_NSECTOR     (*((volatile unsigned char*)(ATA_IOBASE+0x4)))
-#define ATA_SECTOR      (*((volatile unsigned char*)(ATA_IOBASE+0x6)))
-#define ATA_LCYL        (*((volatile unsigned char*)(ATA_IOBASE+0x8)))
-#define ATA_HCYL        (*((volatile unsigned char*)(ATA_IOBASE+0xA)))
-#define ATA_SELECT      (*((volatile unsigned char*)(ATA_IOBASE+0xC)))
-#define ATA_COMMAND     (*((volatile unsigned char*)(ATA_IOBASE+0xE)))
-#define ATA_CONTROL     (*((volatile unsigned char*)(ATA_IOBASE+0x800C)))
-
-#ifdef BOOTLOADER
-int load_minifs_file(char* filename, unsigned char* location);
-#endif
-
-#endif
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/backlight-target.h b/firmware/target/arm/tms320dm320/creative-zvm/backlight-target.h
deleted file mode 100644
index 4ebe3144cf..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/backlight-target.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id: backlight-target.h 15599 2007-11-12 18:49:53Z amiconn $
- *
- * Copyright (C) 2007 by Karl Kurbjun
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
- 
-#ifndef BACKLIGHT_TARGET_H
-#define BACKLIGHT_TARGET_H
-
-bool backlight_hw_init(void);
-void backlight_hw_on(void);
-void backlight_hw_off(void);
-void backlight_hw_brightness(int brightness);
-
-/* true: backlight fades off - false: backlight fades on */
-void __backlight_dim(bool dim);
-
-#endif
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/button-target.h b/firmware/target/arm/tms320dm320/creative-zvm/button-target.h
deleted file mode 100644
index 50a182a210..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/button-target.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/***************************************************************************
-*             __________               __   ___.
-*   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
-*   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
-*   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
-*   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
-*                     \/            \/     \/    \/            \/
-* $Id$
-*
-* Copyright (C) 2008 by Maurus Cuelenaere
-*
-* This program is free software; you can redistribute it and/or
-* modify it under the terms of the GNU General Public License
-* as published by the Free Software Foundation; either version 2
-* of the License, or (at your option) any later version.
-*
-* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
-* KIND, either express or implied.
-*
-****************************************************************************/
-
-#ifndef _BUTTON_TARGET_H_
-#define _BUTTON_TARGET_H_
-
-#include "config.h"
-
-#define BUTTON_BACK         (1 << 0)
-#define BUTTON_CUSTOM       (1 << 1)
-#define BUTTON_MENU         (1 << 2)
-
-#define BUTTON_LEFT         (1 << 3)
-#define BUTTON_RIGHT        (1 << 4)
-#define BUTTON_UP           (1 << 5)
-#define BUTTON_DOWN         (1 << 6)
-#define BUTTON_SELECT       (1 << 7)
-
-#define BUTTON_POWER        (1 << 8)
-#define BUTTON_PLAY         (1 << 9)
-
-#define BUTTON_HOLD         (1 << 10)
-
-#ifdef CREATIVE_ZV
-#define BUTTON_PREV         (1 << 11)
-#define BUTTON_NEXT         (1 << 12)
-
-#define BUTTON_VOL_UP       (1 << 13)
-#define BUTTON_VOL_DOWN     (1 << 14)
-#endif
-
-#ifndef CREATIVE_ZV
-#define BUTTON_MAIN         ( BUTTON_BACK | BUTTON_MENU | BUTTON_LEFT   | BUTTON_RIGHT \
-                            | BUTTON_UP   | BUTTON_DOWN | BUTTON_SELECT | BUTTON_POWER \
-                            | BUTTON_PLAY | BUTTON_HOLD | BUTTON_CUSTOM                )
-#else
-#define BUTTON_MAIN         ( BUTTON_BACK   | BUTTON_MENU     | BUTTON_LEFT   | BUTTON_RIGHT \
-                            | BUTTON_UP     | BUTTON_DOWN     | BUTTON_SELECT | BUTTON_POWER \
-                            | BUTTON_PLAY   | BUTTON_HOLD     | BUTTON_NEXT   | BUTTON_PREV  \
-                            | BUTTON_VOL_UP | BUTTON_VOL_DOWN                                )
-#endif
-
-#define POWEROFF_BUTTON     BUTTON_POWER
-#define POWEROFF_COUNT      10
-
-#define HAS_BUTTON_HOLD
-
-bool button_usb_connected(void);
-
-#endif /* _BUTTON_TARGET_H_ */
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/dma-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
deleted file mode 100644
index 418a28ff09..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
+++ /dev/null
@@ -1,132 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2008 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#include "config.h"
-#include "kernel.h"
-#include "thread.h"
-#include "system.h"
-#include "dma-target.h"
-#include "dm320.h"
-#include "ata.h"
-#include "ata-driver.h"
-#include "ata-defines.h"
-#include <stdbool.h>
-
-#define CS1_START       0x50000000
-#define CS2_START       0x60000000
-#define SDRAM_START     0x00900000
-#define FLASH_START     0x00100000
-#define CF_START        0x40000000
-#define SSFDC_START     0x48000000
-
-static struct semaphore transfer_completion_signal;
-
-static bool dma_in_progress = false;
-
-void MTC0(void)
-{
-    IO_INTC_IRQ1 = INTR_IRQ1_MTC0;
-    semaphore_release(&transfer_completion_signal);
-    dma_in_progress = false;
-}
-
-void dma_start(const void* addr, size_t size)
-{
-  /* Compatibility with Gigabeat S in dma_start.c */
-  (void) addr;
-  (void) size;
-}
-
-#define ATA_DEST        (ATA_IOBASE-CS1_START)
-void dma_ata_read(unsigned char* buf, int shortcount)
-{
-    if(dma_in_progress)
-        semaphore_wait(&transfer_completion_signal, TIMEOUT_BLOCK);
-
-    while((unsigned long)buf & 0x1F)
-    {
-        unsigned short tmp;
-        tmp = ATA_IN16(ATA_DATA);
-        *buf++ = tmp & 0xFF;
-        *buf++ = tmp >> 8;
-        shortcount--;
-    }
-
-    if (!shortcount)
-        return;
-
-    IO_SDRAM_SDDMASEL = 0x0820; /* 32-byte burst mode transfer */
-    IO_EMIF_DMAMTCSEL = 1; /* Select CS1 */
-    IO_EMIF_AHBADDH = ((unsigned long)buf >> 16) & 0x7FFF; /* Set variable address */
-    IO_EMIF_AHBADDL = (unsigned long)buf & 0xFFFF;
-    IO_EMIF_MTCADDH = ( (1 << 15) | (ATA_DEST >> 16) ); /* Set fixed address */
-    IO_EMIF_MTCADDL = ATA_DEST & 0xFFFF;
-    IO_EMIF_DMASIZE = shortcount/2; /* 16-bits *2 = 1 word */
-    IO_EMIF_DMACTL = 3; /* Select MTC->AHB and start transfer */
-
-    dma_in_progress = true;
-    semaphore_wait(&transfer_completion_signal, TIMEOUT_BLOCK);
-
-    if(shortcount % 2)
-    {
-        unsigned short tmp;
-        tmp = ATA_IN16(ATA_DATA);
-        *buf++ = tmp & 0xFF;
-        *buf++ = tmp >> 8;
-    }
-}
-
-void dma_ata_write(unsigned char* buf, int wordcount)
-{
-    if(dma_in_progress)
-        semaphore_wait(&transfer_completion_signal, TIMEOUT_BLOCK);
-
-    while((unsigned long)buf & 0x1F)
-    {
-        unsigned short tmp;
-        tmp = (unsigned short) *buf++;
-        tmp |= (unsigned short) *buf++ << 8;
-        ATA_OUT16(ATA_DATA, tmp);
-        wordcount--;
-    }
-
-    if (!wordcount)
-        return;
-
-    IO_SDRAM_SDDMASEL = 0x0830; /* 32-byte burst mode transfer */
-    IO_EMIF_DMAMTCSEL = 1; /* Select CS1 */
-    IO_EMIF_AHBADDH = ((unsigned long)buf >> 16) & ~(1 << 15); /* Set variable address */
-    IO_EMIF_AHBADDL = (unsigned long)buf & 0xFFFF;
-    IO_EMIF_MTCADDH = ( (1 << 15) | (ATA_DEST >> 16) ); /* Set fixed address */
-    IO_EMIF_MTCADDL = ATA_DEST & 0xFFFF;
-    IO_EMIF_DMASIZE = (wordcount+1)/2;
-    IO_EMIF_DMACTL = 1; /* Select AHB->MTC and start transfer */
-
-    dma_in_progress = true;
-    semaphore_wait(&transfer_completion_signal, TIMEOUT_BLOCK);
-}
-
-void dma_init(void)
-{
-    IO_INTC_EINT1 |= INTR_EINT1_MTC0;     /* enable MTC interrupt */
-    semaphore_init(&transfer_completion_signal, 1, 0);
-    dma_in_progress = false;
-}
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/dma-target.h b/firmware/target/arm/tms320dm320/creative-zvm/dma-target.h
deleted file mode 100644
index f7e1d76626..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/dma-target.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2008 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#ifndef DMA_TARGET_H
-#define DMA_TARGET_H
-
-void dma_start(const void* addr, size_t size); /* Compatibility with Gigabeat S in dma_start.c */
-void dma_ata_read(unsigned char* buf, int wordcount);
-void dma_ata_write(unsigned char* buf, int wordcount);
-void dma_init(void);
-
-#endif
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
deleted file mode 100644
index 9621b532fe..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
+++ /dev/null
@@ -1,427 +0,0 @@
-/***************************************************************************
-*             __________               __   ___.
-*   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
-*   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
-*   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
-*   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
-*                     \/            \/     \/    \/            \/
-* $Id$
-*
-* Copyright (C) 2008 by Maurus Cuelenaere
-*
-* This program is free software; you can redistribute it and/or
-* modify it under the terms of the GNU General Public License
-* as published by the Free Software Foundation; either version 2
-* of the License, or (at your option) any later version.
-*
-* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
-* KIND, either express or implied.
-*
-****************************************************************************/
-#include <sys/types.h>
-#include "config.h"
-
-#include "hwcompat.h"
-#include "kernel.h"
-#include "lcd.h"
-#include "system.h"
-#include "string-extra.h" /* memset16() */
-#include "cpu.h"
-#include "spi.h"
-#include "lcd-target.h"
-#include "ltv350qv.h"
-
-/* Power and display status */
-extern bool lcd_on;  /* lcd-memframe.c */
-static bool direct_fb_access = false; /* Does the DM320 has direct access to the FB? */
-
-/* Copies a rectangle from one framebuffer to another. Can be used in
-   single transfer mode with width = num pixels, and height = 1 which
-   allows a full-width rectangle to be copied more efficiently. */
-extern void lcd_copy_buffer_rect(fb_data *dst, const fb_data *src,
-                                 int width, int height);
-
-int lcd_default_contrast(void)
-{
-    return 0x1f;
-}
-
-void lcd_set_contrast(int val)
-{
-    /* find S6F2002 controller datasheet first */
-    (void)val;
-}
-
-void lcd_set_invert_display(bool yesno) {
-  (void) yesno;
-  /* TODO: */
-}
-
-void lcd_set_flip(bool yesno) {
-  (void) yesno;
-  /* TODO: */
-}
-
-static void enable_venc(bool enable)
-{
-    if(enable)
-    {
-        /* Set OSD clock */
-        IO_CLK_MOD1 &= ~(CLK_MOD1_VENC | CLK_MOD1_OSD); /* disable OSD clock and VENC clock */
-        IO_CLK_O2DIV = 3;
-
-        IO_CLK_OSEL &= ~CLK_OSEL_O2SEL(0xF); /* reset 'General purpose clock output (GIO26, GIO34)' and */
-        IO_CLK_OSEL |= CLK_OSEL_O2SEL(4);    /* set to 'PLLIN clock' */
-
-        IO_CLK_SEL1 |= (CLK_SEL1_OSD | CLK_SEL1_VENC(7)); /* set to 'GP clock output 2 (GIO26, GIO34)' and turn on 'VENC clock' */
-        IO_CLK_MOD1 |= (CLK_MOD1_VENC | CLK_MOD1_OSD);    /* enable OSD clock and VENC clock */
-    }
-    else
-    {
-        /* Disable video encoder */
-        IO_VID_ENC_VMOD &= ~VENC_VMOD_VENC;
-        /* Disable clock for power saving */
-        IO_CLK_MOD1 &= ~(CLK_MOD1_VENC | CLK_MOD1_OSD);
-    }
-}
-
-/* LTV250QV panel functions */
-static void lcd_write_reg(unsigned char reg, unsigned short val)
-{
-    unsigned char block[3] = {LTV_OPC_INDEX, 0, reg | 0xFF};
-    spi_block_transfer(SPI_target_LTV250QV, block, sizeof(block), NULL, 0);
-    block[0] = LTV_OPC_DATA;
-    block[1] = val >> 8;
-    block[2] = val & 0xFF;
-    spi_block_transfer(SPI_target_LTV250QV, block, sizeof(block), NULL, 0);
-}
-
-static void sleep_ms(unsigned int ms)
-{
-    sleep(ms*HZ/1000);
-}
-
-static void lcd_display_on(bool reset)
-{  
-    /* Enable main power */
-    IO_GIO_BITSET2 |= (1 << 3);
-    
-    /* power on sequence as per the ZVM firmware */
-    sleep_ms(250);
-    IO_GIO_BITSET1 = (1 << 13);
-    sleep_ms(5);
-    IO_GIO_BITSET2 = (1 << 5);
-    IO_GIO_BITSET2 = (1 << 8);
-    sleep_ms(1);
-    
-    /*Init SPI here... */
-    sleep_ms(32);
-    
-    IO_GIO_BITSET2 = (1 << 0);
-    sleep_ms(5);
-    IO_GIO_BITSET2 = (1 << 7);
-    sleep_ms(5);
-    IO_GIO_BITSET2 = (1 << 4);
-    sleep_ms(5);
-    IO_GIO_BITCLR2 = (1 << 8);
-    /*TODO: figure out what OF does after this... */
-    IO_GIO_BITSET2 = (1 << 8);
-    sleep_ms(1);
-    
-    lcd_write_reg(LTV_IFCTL,     LTV_NL(29));
-    lcd_write_reg(LTV_DATACTL,   0);
-    lcd_write_reg(LTV_ENTRY_MODE,0);
-    lcd_write_reg(LTV_GATECTL1,  0);
-    lcd_write_reg(LTV_GATECTL2,  (LTV_NW_INV_1LINE | LTV_FHN | LTV_FTI(2) | LTV_FWI(3)));
-    lcd_write_reg(LTV_VBP,       0);
-    lcd_write_reg(LTV_HBP,       0);
-    lcd_write_reg(LTV_SOTCTL,    0);
-    lcd_write_reg(LTV_PWRCTL1,   0);
-    lcd_write_reg(LTV_PWRCTL2,   0);
-    lcd_write_reg(LTV_GAMMA(0),  0);
-    lcd_write_reg(LTV_GAMMA(1),  0);
-    lcd_write_reg(LTV_GAMMA(2),  0);
-    lcd_write_reg(LTV_GAMMA(3),  0);
-    lcd_write_reg(LTV_GAMMA(4),  0);
-    lcd_write_reg(LTV_GAMMA(5),  0);
-    lcd_write_reg(LTV_GAMMA(6),  0);
-    lcd_write_reg(LTV_GAMMA(7),  0);
-    lcd_write_reg(LTV_GAMMA(8),  0);
-    lcd_write_reg(LTV_GAMMA(9),  0);
-    sleep_ms(10);
-    
-    lcd_write_reg(LTV_PWRCTL1,   (LTV_VCOM_DISABLE | LTV_DRIVE_CURRENT(5) | LTV_SUPPLY_CURRENT(5)));
-    lcd_write_reg(LTV_PWRCTL2,   0);
-    sleep_ms(40);
-    
-    lcd_write_reg(LTV_PWRCTL2,   LTV_VCOML_ENABLE);
-    sleep_ms(40);
-    
-    lcd_write_reg(LTV_IFCTL,     (LTV_NMD | LTV_NL(29)));
-    lcd_write_reg(LTV_DATACTL,   (LTV_DS_SAME | LTV_CHS_480 | LTV_DF_RGB | LTV_RGB_BGR));
-    lcd_write_reg(LTV_ENTRY_MODE,(LTV_VSPL_ACTIVE_LOW | LTV_HSPL_ACTIVE_LOW | LTV_DPL_SAMPLE_RISING | LTV_EPL_ACTIVE_LOW | LTV_SS_RIGHT_TO_LEFT));
-    lcd_write_reg(LTV_GATECTL1,  LTV_CLW(1));
-    lcd_write_reg(LTV_GATECTL2,  (LTV_NW_INV_1LINE | LTV_DSC | LTV_FTI(3) | LTV_FWI(3)));
-    lcd_write_reg(LTV_VBP,       0x5);
-    lcd_write_reg(LTV_HBP,       0x1B);
-    lcd_write_reg(LTV_SOTCTL,    LTV_SDT(2));
-    lcd_write_reg(LTV_GAMMA(0),  0x203);
-    lcd_write_reg(LTV_GAMMA(1),  0x302);
-    lcd_write_reg(LTV_GAMMA(2),  0xC08);
-    lcd_write_reg(LTV_GAMMA(3),  0xC08);
-    lcd_write_reg(LTV_GAMMA(4),  0x707);
-    lcd_write_reg(LTV_GAMMA(5),  0x707);
-    lcd_write_reg(LTV_GAMMA(6),  0x104);
-    lcd_write_reg(LTV_GAMMA(7),  0x306);
-    lcd_write_reg(LTV_GAMMA(8),  0);
-    lcd_write_reg(LTV_GAMMA(9),  0);
-    sleep_ms(60);
-    
-    lcd_write_reg(LTV_PWRCTL1,   (LTV_VCOMOUT_ENABLE | LTV_POWER_ON | LTV_DRIVE_CURRENT(5) | LTV_SUPPLY_CURRENT(5)));
-    lcd_write_reg(LTV_PWRCTL2,   (LTV_VCOML_VOLTAGE(17) | LTV_VCOMH_VOLTAGE(26))); /* VCOML=0,0625V VCOMH=1,21875V */
-    sleep_ms(10);
-
-    if(!reset)
-    {
-        enable_venc(true);
-        /* Re-enable video encoder */
-        IO_VID_ENC_VMOD |= VENC_VMOD_VENC;
-    }
-    /* tell that we're on now */
-    lcd_on = true;
-}
-
-#ifdef HAVE_LCD_ENABLE
-static void lcd_display_off(void)
-{
-    /* LQV shutdown sequence */
-    lcd_write_reg(LTV_PWRCTL1,  (LTV_VCOMOUT_ENABLE | LTV_DRIVE_CURRENT(5) | LTV_SUPPLY_CURRENT(5)));
-    sleep_ms(20);
-    
-    lcd_write_reg(LTV_PWRCTL1,  (LTV_DRIVE_CURRENT(5) | LTV_SUPPLY_CURRENT(5)));
-    lcd_write_reg(LTV_GATECTL2, (LTV_NW_INV_1LINE | LTV_FTI(3) | LTV_FWI(3)));
-    lcd_write_reg(LTV_PWRCTL2,  0);
-    sleep_ms(20);
-    
-    lcd_write_reg(LTV_PWRCTL1,  0);
-    sleep_ms(10);
-    unsigned char temp[1];
-    temp[0] = 0;
-    spi_block_transfer(SPI_target_LTV250QV, temp, sizeof(temp), NULL, 0);
-    
-    IO_GIO_BITCLR2 = (1 << 4);
-    sleep_ms(5);
-    IO_GIO_BITCLR2 = (1 << 7);
-    sleep_ms(5);
-    IO_GIO_BITCLR2 = (1 << 0);
-    sleep_ms(2);
-    IO_GIO_BITCLR2 = (1 << 8);
-    IO_GIO_BITCLR2 = (1 << 5);
-    
-    /* Disable main power */
-    IO_GIO_BITCLR2 |= (1 << 3);
-    
-    enable_venc(false);
-    
-    lcd_on = false;
-}
-
-void lcd_enable(bool on)
-{
-/* Disabled until properly working */
-return;
-    if (on == lcd_on)
-        return;
-
-    if (on)
-    {
-        lcd_display_on(false);  /* Turn on display */
-        lcd_update();      /* Resync display */
-        send_event(LCD_EVENT_ACTIVATION, NULL);
-    }
-    else
-    {
-        lcd_display_off();  /* Turn off display */
-    }
-}
-#endif
-
-void lcd_set_direct_fb(bool yes)
-{
-    unsigned int addr;
-    direct_fb_access = yes;
-    if(yes)
-        addr = ((unsigned int)FBADDR(0,0)-CONFIG_SDRAM_START) / 32;
-    else
-        addr = ((unsigned int)FRAME-CONFIG_SDRAM_START) / 32;
-    IO_OSD_OSDWINADH = addr >> 16;
-    IO_OSD_OSDWIN0ADL = addr & 0xFFFF;
-}
-
-bool lcd_get_direct_fb(void)
-{
-    return direct_fb_access;
-}
-
-static bool _lcd_enabled(void)
-{
-    /* Needed to detect if VENC/LCD already is initialized... */
-    if(IO_VID_ENC_VDCTL & VENC_VDCTL_VCLKE)
-        return true;
-    else if(!(IO_VID_ENC_VDCTL & VENC_VDCTL_YCDC))
-        return true;
-    else if(IO_CLK_MOD1 & CLK_MOD1_VENC)
-        return true;
-    else if(IO_CLK_MOD1 & CLK_MOD1_OSD)
-        return true;
-    else
-        return false;
-}
-
-void lcd_init_device(void)
-{    
-    if(!_lcd_enabled())
-    {
-        lcd_display_on(true);
-        
-        enable_venc(true);
-        
-        /* Set LCD values in Video Encoder */
-        IO_VID_ENC_VMOD &= 0x8800; /* Clear all values */
-        IO_VID_ENC_VMOD |= (VENC_VMOD_DACPD | VENC_VMOD_VMD | VENC_VMOD_ITLC | VENC_VMOD_VDMD(2)); /* set mode to RGB666 parallel 16 bit */
-        IO_VID_ENC_VDCTL &= 0x8FE8; /* Clear all values */
-        IO_VID_ENC_VDCTL |= (VENC_VDCTL_VCLKP | VENC_VDCTL_DOMD(2)),
-        IO_VID_ENC_VDPRO = VENC_VDPRO_PFLTR;
-        IO_VID_ENC_SYNCTL &= 0xE000; /* Clear all values */
-        IO_VID_ENC_SYNCTL |= (VENC_SYNCTL_VPL | VENC_SYNCTL_HPL);
-        IO_VID_ENC_HSDLY = 0;
-        IO_VID_ENC_HSPLS = 0x12;
-        IO_VID_ENC_HSTART = 0x1B;
-        IO_VID_ENC_HVALID = 0x140;
-        IO_VID_ENC_HINT = 0x168;
-        IO_VID_ENC_VSDLY = 0;
-        IO_VID_ENC_VSPLS = 3;
-        IO_VID_ENC_VSTART = 5;
-        IO_VID_ENC_VVALID = 0xF0;
-        IO_VID_ENC_VINT = 0x118;
-        IO_VID_ENC_RGBCTL &= 0x088; /* Clear all values */
-        IO_VID_ENC_RGBCTL |= VENC_RGBCTL_DFLTR;
-        IO_VID_ENC_RGBCLP = VENC_RGBCLP_UCLIP(0xFF);
-        IO_VID_ENC_LCDOUT &= 0xFE00; /* Clear all values */
-        IO_VID_ENC_LCDOUT |= (VENC_LCDOUT_OEE | VENC_LCDOUT_FIDS);
-        IO_VID_ENC_DCLKCTL &= 0xC0C0; /* Clear all values */
-        IO_VID_ENC_DCLKCTL |= VENC_DCLKCTL_DCKEC;
-        IO_VID_ENC_DCLKPTN0 = 1;
-        DM320_REG(0x0864) = 0; /* ???? */
-    }
-    else
-        lcd_on = true;
-
-    /* Based on lcd-mr500.c from Catalin Patulea */
-    /* Clear the Frame */
-    memset16(FRAME, 0x0000, LCD_WIDTH*LCD_HEIGHT);
-    
-    IO_OSD_MODE = 0x00ff;
-    IO_OSD_VIDWINMD = 0x0002;
-    IO_OSD_OSDWINMD0 = 0x2001;
-    IO_OSD_OSDWINMD1 = 0x0002;
-    IO_OSD_ATRMD = 0x0000;
-    IO_OSD_RECTCUR = 0x0000;
-
-    unsigned int addr;
-    IO_OSD_OSDWIN0OFST = (LCD_WIDTH*16) / 256;
-    addr = ((unsigned int)FRAME-CONFIG_SDRAM_START) / 32;
-    IO_OSD_OSDWINADH = addr >> 16;
-    IO_OSD_OSDWIN0ADL = addr & 0xFFFF;
-
-#ifndef ZEN_VISION
-    IO_OSD_BASEPX = 26;
-    IO_OSD_BASEPY = 5;
-#else
-    IO_OSD_BASEPX = 80;
-    IO_OSD_BASEPY = 0;
-#endif
-
-    IO_OSD_OSDWIN0XP = 0;
-    IO_OSD_OSDWIN0YP = 0;
-    IO_OSD_OSDWIN0XL = LCD_WIDTH;
-    IO_OSD_OSDWIN0YL = LCD_HEIGHT;
-
-    IO_VID_ENC_VDCTL |= VENC_VDCTL_VCLKE; /* Enable VCLK */
-    IO_VID_ENC_VMOD |= VENC_VMOD_VENC; /* Enable video encoder */
-    IO_VID_ENC_SYNCTL |= VENC_SYNCTL_SYE; /* Enable sync output */
-    IO_VID_ENC_VDCTL &= ~VENC_VDCTL_DOMD(3); /* Normal digital data output */
-}
-
-
-/*** Update functions ***/
-
-/* Update a fraction of the display. */
-void lcd_update_rect(int x, int y, int width, int height)
-{
-    register fb_data *dst, *src;
-
-    if (!lcd_on || direct_fb_access)
-        return;
-
-    if (x + width > LCD_WIDTH)
-        width = LCD_WIDTH - x; /* Clip right */
-    if (x < 0)
-        width += x, x = 0; /* Clip left */
-    if (width <= 0)
-    return; /* nothing left to do */
-
-    if (y + height > LCD_HEIGHT)
-        height = LCD_HEIGHT - y; /* Clip bottom */
-    if (y < 0)
-        height += y, y = 0; /* Clip top */
-    if (height <= 0)
-        return; /* nothing left to do */
-
-#if CONFIG_ORIENTATION == SCREEN_PORTRAIT
-    dst = (fb_data *)FRAME + LCD_WIDTH*y + x;
-    src = FBADDR(x,y);
-
-    /* Copy part of the Rockbox framebuffer to the second framebuffer */
-    if (width < LCD_WIDTH)
-    {
-        /* Not full width - do line-by-line */
-        lcd_copy_buffer_rect(dst, src, width, height);
-    }
-    else
-    {
-        /* Full width - copy as one line */
-        lcd_copy_buffer_rect(dst, src, LCD_WIDTH*height, 1);
-    }
-#else
-    src = FBADDR(x,y);
-    
-    register int xc, yc;
-    register fb_data *start=FRAME + LCD_HEIGHT*(LCD_WIDTH-x-1) + y + 1;
-
-    for(yc=0;yc<height;yc++)
-    {
-        dst=start+yc;
-        for(xc=0; xc<width; xc++)
-        {
-            *dst=*src++;
-            dst-=LCD_HEIGHT;
-        }
-        src+=x;
-    }
-#endif
-}
-
-/* Update the display.
-This must be called after all other LCD functions that change the display. */
-void lcd_update(void)
-{
-    if (!lcd_on || direct_fb_access)
-        return;
-#if CONFIG_ORIENTATION == SCREEN_PORTRAIT
-    lcd_copy_buffer_rect((fb_data *)FRAME, FBADDR(0,0),
-                         LCD_WIDTH*LCD_HEIGHT, 1);
-#else
-    lcd_update_rect(0, 0, LCD_WIDTH, LCD_HEIGHT);
-#endif
-}
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/lcd-target.h b/firmware/target/arm/tms320dm320/creative-zvm/lcd-target.h
deleted file mode 100644
index 456f0e3cfe..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/lcd-target.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2007 by Karl Kurbjun
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#ifndef LCD_TARGET_H
-#define LCD_TARGET_H
-
-void lcd_set_direct_fb(bool yes);
-bool lcd_get_direct_fb(void);
-
-/* Direct FB access disables regular updates */
-#define lcd_write_enabled() \
-    ({ lcd_on && !lcd_get_direct_fb(); })
-
-/* Very strange functions */
-#define LCD_OPTIMIZED_UPDATE
-#define LCD_OPTIMIZED_UPDATE_RECT
-
-#define LCD_FRAMEBUF_ADDR(col, row) ((fb_data *)FRAME + (row)*LCD_WIDTH + (col))
-
-#endif /* LCD_TARGET_H */
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
deleted file mode 100644
index fa1eb2481f..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
+++ /dev/null
@@ -1,80 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2007 by Karl Kurbjun
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-#include "system.h"
-#include "kernel.h"
-#include "logf.h"
-#include "audio.h"
-#include "sound.h"
-#include "file.h"
-#include "dm320.h"
-#include "audiohw.h"
-#include "dsp-target.h"
-#include "pcm-internal.h"
-
-void pcm_play_dma_init(void)
-{
-    IO_CLK_O1DIV = 3;
-    /* Set GIO25 to CLKOUT1A */
-    IO_GIO_FSEL2 |= 3;
-    sleep(5);
-
-    audiohw_init();
-
-    audiohw_set_frequency(HW_FREQ_DEFAULT);
-
-    /* init DSP */
-//    dsp_init();
-}
-
-void pcm_play_dma_postinit(void)
-{
-    audiohw_postinit();
-
-    /* wake DSP */
-//    dsp_wake();
-}
-
-void pcm_dma_apply_settings(void)
-{
-    audiohw_set_frequency(pcm_fsel);
-}
-
-void pcm_play_dma_start(const void *addr, size_t size)
-{
-    (void)addr;
-    (void)size;
-    DEBUGF("pcm_play_dma_start(0x%x, %d)", addr, size);
-}
-
-void pcm_play_dma_stop(void)
-{
-
-}
-
-void pcm_play_lock(void)
-{
-
-}
-
-void pcm_play_unlock(void)
-{
-
-}
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/pic-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
deleted file mode 100644
index ab5462fa90..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
+++ /dev/null
@@ -1,380 +0,0 @@
-/***************************************************************************
-*             __________               __   ___.
-*   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
-*   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
-*   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
-*   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
-*                     \/            \/     \/    \/            \/
-* $Id$
-*
-* Copyright (C) 2008 by Maurus Cuelenaere
-*
-* Creative Zen Vision:M interrupt based PIC driver
-*
-* This program is free software; you can redistribute it and/or
-* modify it under the terms of the GNU General Public License
-* as published by the Free Software Foundation; either version 2
-* of the License, or (at your option) any later version.
-*
-* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
-* KIND, either express or implied.
-*
-****************************************************************************/
-
-#include <stdio.h>
-#include "config.h"
-#include "system.h"
-#include "kernel.h"
-#include "button-target.h"
-#include "i2c-dm320.h"
-#include "logf.h"
-
-#ifdef BUTTON_DEBUG
-#include "lcd-target.h"
-#include "lcd.h"
-#include "font.h"
-#endif
-
-#ifndef ZEN_VISION
-/* Creative Zen Vision:M */
-#define BTN_LEFT                        0xAF00
-#define BTN_RIGHT                       0xA700
-#define BTN_BACK                        0xDF00
-#define BTN_CUSTOM                      0xC700
-#define BTN_PLAY                        0x9700
-#define BTN_POWER                       0x8700
-#define BTN_MENU                        0xCF00
-#define BTN_HOLD                        0xCF07
-#define BTN_UNHOLD                      0xD707
-
-#define BTN_REL                         1
-
-#define BTN_TOUCHPAD_PRESS              0x8F00
-#define BTN_TOUCHPAD_SCROLL_DOWN        0x0F03
-#define BTN_TOUCHPAD_CORNER_DOWN        0xD700
-#define BTN_TOUCHPAD_CORNER_UP          0x9F00
-#define BTN_TOUCHPAD_SCROLL_UP          0x0F04
-
-#define HEADPHONE_PLUGIN_A              0x5707
-#define HEADPHONE_PLUGIN_B              0x5F07
-#define HEADPHONE_UNPLUG_A              0x3707
-#define HEADPHONE_UNPLUG_B              0x3F07
-
-#define DOCK_INSERT                     0x6707
-#define DOCK_UNPLUG                     0xDF06
-#define DOCK_USB_INSERT                 0x2F06
-#define DOCK_USB_UNPLUG                 0x3F06
-#define DOCK_POWER_INSERT               0x1707
-#define DOCK_POWER_UNPLUG               0x1F07
-
-#else
-/* Creative Zen Vision */
-#define BTN_LEFT                        0xCF00
-#define BTN_RIGHT                       0xEF00
-#define BTN_BACK                        0xBF00
-#define BTN_CUSTOM                      0x0
-#define BTN_PLAY                        0x2F00
-#define BTN_POWER                       0x0F00
-#define BTN_MENU                        0x9F00
-#define BTN_HOLD                        0x9F06
-#define BTN_UNHOLD                      0xAF06
-
-
-/* TODO: other values
-
-First number is just pressing it, second is when you release it or keep it
-pressed a bit longer
-
-On/Off    = 0F00 && 0F01
-Hold      = 9F06 && AF06
-Volume Up = 6F00 && 6F01
-Vol Down  = 7F00 && 7F01
-Up        = DF00 && DF01
-Right     = EF00 && EF01
-Down      = FF00 && FF01
-Left      = CF00 && CF01
-Back      = BF00 && BF01
-Menu      = 9F00 && Etcetera
-Ok        = 1F00
-Play      = 2F00
-Next      = 4F00
-Prev      = 5F00
-
-USB       = 2F06
-USB ouot  = 3F06
-Headphones= AF06
-Hdphns out= BF06
-Charger   = 4F06 -> 9F05
-Chgrout   = 5F06 -> 8F05
-AV in     = 8F06
-AV out    = 9F06 */
-
-#define BTN_REL                         1
-
-#define BTN_TOUCHPAD_PRESS              0x1F00
-#define BTN_TOUCHPAD_LONG_PRESS         0x1F01
-#define BTN_TOUCHPAD_CORNER_DOWN        0xFF00
-#define BTN_TOUCHPAD_SCROLL_DOWN        0xFF01
-#define BTN_TOUCHPAD_CORNER_UP          0xDF00
-#define BTN_TOUCHPAD_SCROLL_UP          0xDF01
-
-#define HEADPHONE_PLUGIN_A              0xAF06
-#define HEADPHONE_PLUGIN_B              0x00AF06 //Dummy Value
-#define HEADPHONE_UNPLUG_A              0x00BF06 //Dummy Value 
-#define HEADPHONE_UNPLUG_B              0x00BF061 //Dummy Value 
-
-#define DOCK_INSERT                     0x00003 //Dummy Value
-#define DOCK_UNPLUG                     0x00002 //Dummy Value
-#define DOCK_USB_INSERT                 0x2F06
-#define DOCK_USB_UNPLUG                 0x3F06
-#define DOCK_POWER_INSERT               0x4F06
-#define DOCK_POWER_UNPLUG               0x5F06
-#define DOCK_AV_INSERT                  0x8F06
-#define DOCK_AV_UNPLUG                  0x9F06
-#endif
-
-#define PIC_ADR                         0x07
-
-#define MASK_TV_OUT(x)                  ((x >> 14) & 1)
-#define MASK_xx1(x)                     ((x >> 9) & 3)
-#define MASK_xx2(x)                     ((x >> 4) & 1)
-#define MASK_xx3(x)                     ((x >> 5) & 1)
-#define MASK_xx4(x)                     ((x >> 6) & 1)
-#define MASK_xx5(x)                     ((x >> 13) & 1)
-#define MASK_xx6(x)                     ((x >> 12) & 1)
-#define MASK_xx7(x)                     ((x >> 11) & 1)
-
-#define NONBUTTON_HEADPHONE             (1 << 0)
-#define NONBUTTON_DOCK                  (1 << 1)
-#define NONBUTTON_USB                   (1 << 2)
-#define NONBUTTON_POWER                 (1 << 3)
-#define NONBUTTON_VIDEOUT               (1 << 4)
-
-static unsigned int btn;
-static bool hold_switch;
-static unsigned char nonbtn;
-static unsigned int pic_init_value;
-static unsigned int pic_init2_value;
-static unsigned int last_btn;
-static long last_tick;
-static int tick_diff;
-
-#define TICK_MIN 0x33
-#define TICK_MAX 0x34
-
-/* Taken from scramble.c and modified */
-static inline unsigned short le2short(unsigned char* buf)
-{
-   return (unsigned short)((buf[1] << 8) | buf[0]);
-}
-
-#define map_button(BtN,BtN2) case BtN: \
-                                 btn ^= BtN2; \
-                                 btn &= BtN2; \
-                                 break; \
-                             case BtN ^ BTN_REL: \
-                                 btn ^= BtN2; \
-                                 btn &= BtN2; \
-                                 break;
-
-#ifdef BUTTON_DEBUG
-static bool sw = false;
-#endif
-
-void GIO0(void)
-{
-    /* Mask GIO0 interrupt */
-    IO_INTC_IRQ1 = INTR_IRQ1_EXT0;
-    
-    unsigned char msg[4];
-    i2c_read(PIC_ADR, msg, sizeof(msg));
-    tick_diff = current_tick - last_tick;
-    last_tick = current_tick;
-    unsigned short btn_press = le2short(msg);
-    if(tick_diff >= TICK_MIN && tick_diff <= TICK_MAX)
-    {
-        /* Ignore this, as it is a hold event */
-        return;
-    }
-    last_btn = btn_press;
-    switch(btn_press)
-    {
-        map_button(BTN_LEFT,                 BUTTON_LEFT);
-        map_button(BTN_RIGHT,                BUTTON_RIGHT);
-        map_button(BTN_BACK,                 BUTTON_BACK);
-        map_button(BTN_CUSTOM,               BUTTON_CUSTOM);
-        map_button(BTN_MENU,                 BUTTON_MENU);
-        map_button(BTN_PLAY,                 BUTTON_PLAY);
-        map_button(BTN_POWER,                BUTTON_POWER);
-        map_button(BTN_TOUCHPAD_PRESS,       BUTTON_SELECT);
-        map_button(BTN_TOUCHPAD_CORNER_DOWN, BUTTON_DOWN);
-        map_button(BTN_TOUCHPAD_CORNER_UP,   BUTTON_UP);
-    #ifndef ZEN_VISION
-    /* These don't seem to work for some reason on the Zen Vision.. */
-    case BTN_TOUCHPAD_SCROLL_DOWN:
-        btn = BUTTON_DOWN;
-        break;
-    case BTN_TOUCHPAD_SCROLL_UP:
-        btn = BUTTON_UP;
-        break;
-    #endif
-    case BTN_HOLD:
-        hold_switch = true;
-        break;
-    case BTN_UNHOLD:
-        hold_switch = false;
-        break;
-    #ifndef ZEN_VISION
-    /* These don't seem to work for some reason.. */
-    case HEADPHONE_PLUGIN_A:
-    case HEADPHONE_PLUGIN_B:
-        nonbtn |= NONBUTTON_HEADPHONE;
-        break;
-    case HEADPHONE_UNPLUG_A:
-    case HEADPHONE_UNPLUG_B:
-        nonbtn &= ~NONBUTTON_HEADPHONE;
-        break;
-    #endif
-    case DOCK_INSERT:
-        nonbtn |= NONBUTTON_DOCK;
-        break;
-    case DOCK_UNPLUG:
-        nonbtn &= ~(NONBUTTON_DOCK | NONBUTTON_USB | NONBUTTON_POWER);
-        break;
-    case DOCK_USB_INSERT:
-        nonbtn |= NONBUTTON_USB;
-        break;
-    case DOCK_USB_UNPLUG:
-        nonbtn &= ~NONBUTTON_USB;
-        break;
-    case DOCK_POWER_INSERT:
-        nonbtn |= NONBUTTON_POWER;
-        break;
-    case DOCK_POWER_UNPLUG:
-        nonbtn &= ~NONBUTTON_POWER;
-        break;
-    }
-#ifdef BUTTON_DEBUG
-#ifdef BOOTLOADER
-    lcd_set_foreground((sw ? LCD_RGBPACK(255,0,0) : LCD_RGBPACK(0,255,0) ));
-#endif
-    lcd_putsxyf(LCD_WIDTH-SYSFONT_WIDTH*10, LCD_HEIGHT-SYSFONT_HEIGHT*10, "%x",
-             (unsigned int)((msg[3] << 24) |
-                            (msg[2] << 16) | (msg[1] << 8) | msg[0]));
-    lcd_putsxy(LCD_WIDTH-SYSFONT_WIDTH*10, LCD_HEIGHT-SYSFONT_HEIGHT*7, "%x",
-             btn);
-#ifdef BOOTLOADER
-    lcd_set_foreground(LCD_BLACK);
-#endif
-    lcd_update();
-    sw = !sw;
-#endif
-    logf("PIC: 0x%x", (unsigned int)((msg[3] << 24) |
-                            (msg[2] << 16) | (msg[1] << 8) | msg[0]));
-}
-
-static void send_command_to_pic(const unsigned char in, unsigned char* out,
-                                const unsigned int length)
-{
-    /* Disable GIO0 interrupt */
-    IO_INTC_EINT1 &= ~INTR_EINT1_EXT0;
-    /* Clear EXT0 interrupt */
-    IO_INTC_IRQ1 = INTR_IRQ1_EXT0;
-    /* Write command to I²C */
-    restart:
-    i2c_write(PIC_ADR, &in, 1);
-    /* Wait for PIC */
-    int i = 0;
-    while(!(IO_INTC_IRQ1 & INTR_IRQ1_EXT0))
-    {
-        sleep(0);
-        i++;
-        if(i > 50)
-            goto restart;
-    }
-    /* Read return from I²C */
-    i2c_read(PIC_ADR, out, length);
-    /* Re-enable GIO0 interrupt */
-    IO_INTC_EINT1 |= INTR_EINT1_EXT0;
-}
-
-bool headphones_inserted(void)
-{
-    return (bool)(nonbtn & NONBUTTON_HEADPHONE);
-}
-
-void button_init_device(void)
-{
-    /* TODO: I suppose GIO0 has to be set to input and enable interrupts on
-       it? */
-    /* Enable GIO0 interrupt */
-    IO_INTC_EINT1 |= INTR_EINT1_EXT0;
-    btn=nonbtn=pic_init_value=pic_init2_value=last_btn=hold_switch=0;
-    /* Initialize PIC */
-    send_command_to_pic(1, (unsigned char *)&pic_init_value,
-                        sizeof(pic_init_value));
-    send_command_to_pic(2, (unsigned char *)&pic_init2_value,
-                        sizeof(pic_init2_value));
-}
-
-int button_read_device(void)
-{
-    if(hold_switch)
-        return 0;
-    else
-        return btn;
-}
-
-bool button_hold(void)
-{
-    return hold_switch;
-}
-
-bool button_usb_connected(void)
-{
-    return (bool)(nonbtn & NONBUTTON_USB);
-}
-
-#ifndef BOOTLOADER
-int pic_dbg_num_items(void)
-{
-    return 13;
-}
-
-const char* pic_dbg_item(int selected_item, void *data,
-                         char *buffer, size_t buffer_len)
-{
-    (void)data;
-    switch(selected_item)
-    {
-        case 0:
-            snprintf(buffer, buffer_len, "Init value 1: 0x%04x", pic_init_value);
-            return buffer;
-        case 1:
-            snprintf(buffer, buffer_len, "Init value 2: 0x%04x", pic_init2_value);
-            return buffer;
-        case 2:
-            snprintf(buffer, buffer_len, "Last button value: 0x%04x Raw value: 0x%04x", last_btn, btn);
-            return buffer;
-        case 3:
-            snprintf(buffer, buffer_len, "Last button differs in ticks: 0x%04x", tick_diff);
-            return buffer;
-        case 4:
-            snprintf(buffer, buffer_len, "Dock values: 0x%04x", nonbtn);
-            return buffer;
-        #define B(n,w,b)    case n: \
-                                    snprintf(buffer, buffer_len, "%s: 0x%04x", w, b); \
-                                    return buffer;
-        B(5,  "MASK_TV_OUT", MASK_TV_OUT(pic_init_value));
-        B(6,  "MASK_xx1",    MASK_xx1(pic_init_value));
-        B(7,  "MASK_xx2",    MASK_xx2(pic_init_value));
-        B(8,  "MASK_xx3",    MASK_xx3(pic_init_value));
-        B(9,  "MASK_xx4",    MASK_xx4(pic_init_value));
-        B(10, "MASK_xx5",    MASK_xx5(pic_init_value));
-        B(11, "MASK_xx6",    MASK_xx6(pic_init_value));
-        B(12, "MASK_xx7",    MASK_xx7(pic_init_value));
-        #undef B
-    }
-    return NULL;
-}
-#endif
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/power-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/power-creativezvm.c
deleted file mode 100644
index 90c30d326c..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/power-creativezvm.c
+++ /dev/null
@@ -1,53 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id: power-mr500.c 15599 2007-11-12 18:49:53Z amiconn $
- *
- * Copyright (C) 2007 by Karl Kurbjun
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#include "config.h"
-#include "cpu.h"
-#include <stdbool.h>
-#include "kernel.h"
-#include "system.h"
-#include "power.h"
-#include "backlight.h"
-#include "backlight-target.h"
-
-void power_init(void)
-{
-    /* Initialize IDE power pin */
-    /* set ATA power on and output */
-    /* Charger detect */
-}
-
-#if CONFIG_CHARGING
-unsigned int power_input_status(void)
-{
-    return POWER_INPUT_NONE;
-}
-
-/* Returns true if the unit is charging the batteries. */
-bool charging_state(void)
-{
-    return false;
-}
-#endif
-
-void power_off(void)
-{
-}
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
deleted file mode 100644
index 69b29a3e64..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
+++ /dev/null
@@ -1,50 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2007 by Karl Kurbjun
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#include "config.h"
-#include "adc.h"
-#include "powermgmt.h"
-#include "kernel.h"
-
-/* THIS CONTAINS CURRENTLY DUMMY CODE! */
-
-static const unsigned short current_voltage = 3910;
-unsigned short battery_level_disksafe = 0;
-
-unsigned short battery_level_shutoff = 0;
-
-/* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */
-unsigned short percent_to_volt_discharge[11] =
-{
-    100, 300, 400, 500, 600, 700, 800, 900, 1000, 1200, 1320
-};
-
-/* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */
-unsigned short percent_to_volt_charge[11] =
-{
-    100, 300, 400, 500, 600, 700, 800, 900, 1000, 1200, 1320,
-};
-
-/* Returns battery voltage from ADC [millivolts] */
-int _battery_voltage(void)
-{
-    return current_voltage;
-}
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/usb-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
deleted file mode 100644
index 82a59d792a..0000000000
--- a/firmware/target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
+++ /dev/null
@@ -1,71 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2008 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/
-
-#include "config.h"
-#include "system.h"
-#include "kernel.h"
-#include "usb.h"
-#include "usb_drv.h"
-#include "usb_core.h"
-#include "isp1583.h"
-
-#define printf
-
-bool usb_drv_connected(void)
-{
-    return button_usb_connected();
-}
-
-int usb_detect(void)
-{
-    if(usb_drv_connected())
-        return USB_INSERTED;
-    else
-        return USB_EXTRACTED;
-}
-
-void usb_init_device(void)
-{
-    return;
-}
-
-void usb_enable(bool on)
-{
-    if(on)
-        usb_core_init();
-    else
-         usb_core_exit();
-}
-
-void usb_attach(void)
-{
-    usb_enable(true);
-}
-
-void IRAM_ATTR GIO7(void)
-{
-#ifdef DEBUG
-    //printf("GIO7 interrupt... [%d]", current_tick);
-#endif
-    usb_drv_int();
-    
-    IO_INTC_IRQ1 = INTR_IRQ1_EXT7;
-}
diff --git a/firmware/target/arm/tms320dm320/crt0.S b/firmware/target/arm/tms320dm320/crt0.S
index e57e28a470..4abf1e5e30 100644
--- a/firmware/target/arm/tms320dm320/crt0.S
+++ b/firmware/target/arm/tms320dm320/crt0.S
@@ -111,7 +111,7 @@ _start:
     mov     r0, #0x20
     bl      _delay_cycles
 
-#if defined(BOOTLOADER) && !defined(CREATIVE_ZVx)
+#if defined(BOOTLOADER)
     bl      _init_board
 #endif
 
diff --git a/firmware/target/arm/tms320dm320/debug-dm320.c b/firmware/target/arm/tms320dm320/debug-dm320.c
index 37e48d16a2..a82984f90b 100644
--- a/firmware/target/arm/tms320dm320/debug-dm320.c
+++ b/firmware/target/arm/tms320dm320/debug-dm320.c
@@ -370,17 +370,6 @@ bool dbg_hw_info(void)
         button = button_get_w_tmo(1);
         if(button & BUTTON_POWER)
             done = true;
-#if defined(CREATIVE_ZVx)
-        else if(button & BUTTON_LEFT)
-            lcd_set_direct_fb(false);
-        else if(button & BUTTON_RIGHT)
-            lcd_set_direct_fb(true);
-
-        lcd_puts(0, line++, "LCD info:");
-        lcd_putsf(0, line++, " LCD direct FB access? %s", 
-            (lcd_get_direct_fb() ? "yes" : "no"));
-        line++;
-#endif
 #endif
         lcd_puts(0, line++, "[Rockbox info]");
         lcd_putsf(0, line++, "current tick: %08x Seconds running: %08d",
diff --git a/firmware/target/arm/tms320dm320/dsp/Makefile b/firmware/target/arm/tms320dm320/dsp/Makefile
index 8cc1bd98c0..42cd01254b 100644
--- a/firmware/target/arm/tms320dm320/dsp/Makefile
+++ b/firmware/target/arm/tms320dm320/dsp/Makefile
@@ -16,18 +16,12 @@ LDFLAGS = -w
 
 OBJDIR=./build
 
-OBJS = arm.obj main.obj vectors.obj dma.obj
-
-ifeq ($(findstring -DCREATIVE_ZV,$(TARGET)), -DCREATIVE_ZV)
-OBJS += aic23.obj
-else
-OBJS += tsc2100.obj
-endif
+OBJS = arm.obj main.obj vectors.obj dma.obj tsc2100.obj
 
 OBJS := $(patsubst %.obj, $(OBJDIR)/%.obj, $(OBJS))
 
 all: dsp-image.h
-	
+
 clean:
 	$(call PRINTS,cleaning DSP firmware)rm -f $(OBJS) $(OBJDIR)/dsp-image.out $(OBJDIR)/dsp-image.xml
 	rmdir $(OBJDIR)
diff --git a/firmware/target/arm/tms320dm320/dsp/aic23.c b/firmware/target/arm/tms320dm320/dsp/aic23.c
deleted file mode 100644
index 8ffa5d4e70..0000000000
--- a/firmware/target/arm/tms320dm320/dsp/aic23.c
+++ /dev/null
@@ -1,60 +0,0 @@
-/***************************************************************************
- *             __________               __   ___.
- *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
- *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
- *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
- *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
- *                     \/            \/     \/    \/            \/
- * $Id$
- *
- * Copyright (C) 2008 by Maurus Cuelenaere
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ****************************************************************************/ 
-
-#include "audio.h"
-#include "registers.h"
-
-/* based on http://archopen.svn.sourceforge.net/viewvc/archopen/ArchOpen/trunk/libdsp/aic23.c?revision=213&view=markup */
-void audiohw_init(void)
-{
-    /* port config */
-#if 0
-    SPCR10 = 0;                  /* DLB      = 0 ** RJUST    = 0 ** CLKSTP   = 0 ** DXENA    = 0 ** ABIS     = 0 ** RINTM    = 0 ** RSYNCER  = 0 ** RFULL    = 0 ** RRDY     = 0 ** RRST     = 0 */
-    SPCR20 = (1 << 9);           /* FREE     = 1 ** SOFT     = 0 ** FRST     = 0 ** GRST     = 0 ** XINTM    = 0 ** XSYNCER  = 0 ** XEMPTY   = 0 ** XRDY     = 0 ** XRST     = 0 */
-    RCR10 = (1 << 8) | (2 << 5); /* RFRLEN1  = 1 ** RWDLEN1  = 2 */
-    RCR20 = 0;                   /* RPHASE   = 0 ** RFRLEN2  = 0 ** RWDLEN2  = 0 ** RCOMPAND = 0 ** RFIG     = 0 ** RDATDLY  = 0 */
-    XCR10 = (1 << 8) | (2 << 5); /* XFRLEN1  = 1 ** XWDLEN1  = 2 */
-    XCR20 = 0;                   /* XPHASE   = 0 ** XFRLEN2  = 0 ** XWDLEN2  = 0 ** XCOMPAND = 0 ** XFIG     = 0 ** XDATDLY  = 0 */
-    SRGR10 = 0;                  /* FWID     = 0 ** CLKGDV   = 0 */
-    SRGR20 = 0;                  /* FREE     = 0 ** CLKSP    = 0 ** CLKSM    = 0 ** FSGM     = 0 ** FPER     = 0 */             
-    PCR0 = (1 << 1) | 1;         /* IDLEEN   = 0 ** XIOEN    = 0 ** RIOEN    = 0 ** FSXM     = 0 ** FSRM     = 0 ** SCLKME   = 0 ** CLKSSTAT = 0 ** DXSTAT   = 0 ** DRSTAT   = 0 ** CLKXM    = 0 ** CLKRM    = 0 ** FSXP     = 0 ** FSRP     = 0 ** CLKXP    = 1 ** CLKRP    = 1 */
-#else
-    SPCR10 = 0;
-    SPCR20 = 0x0200; /* SPCR : free running mode */
-    
-    RCR10 = 0x00A0;
-    RCR20 = 0x00A1; /* RCR  : 32 bit receive data length */
-    
-    XCR10 = 0x00A0;
-    XCR20 = 0x00A0; /* XCR  : 32 bit transmit data length */
-    
-    SRGR10 = 0;
-    SRGR20 = 0x3000; /* SRGR 1 & 2 */
-    
-    PCR0 = 0x000E - 8; /* PCR  : FSX, FSR active low, external FS/CLK source */
-#endif
-}
-
-void audiohw_postinit(void)
-{
-    /* Trigger first XEVT0 */
-    SPCR20 |= 1;
-}
diff --git a/firmware/target/arm/tms320dm320/i2c-dm320.c b/firmware/target/arm/tms320dm320/i2c-dm320.c
index 364d3b5c17..d552ba6b68 100644
--- a/firmware/target/arm/tms320dm320/i2c-dm320.c
+++ b/firmware/target/arm/tms320dm320/i2c-dm320.c
@@ -156,13 +156,6 @@ void i2c_init(void)
 {
     mutex_init(&i2c_mtx);
 
-#ifdef CREATIVE_ZVx //TODO: mimic OF I2C clock settings; currently this is done by the bootloader
-    IO_CLK_MOD2 &= ~CLK_MOD2_I2C; // turn I²C clock off (just to be sure)
-    IO_CLK_LPCTL1 &= ~1; // set Powerdown mode to off
-    IO_CLK_SEL0 &= ~0x800; // set I²C clock to PLLA
-    IO_CLK_DIV4 &= ~0x1F; // I²C clock division = 1
-    IO_CLK_MOD2 |= CLK_MOD2_I2C; // enable I²C clock
-#endif
     IO_I2C_SCS &= ~0x8; //set clock to 100 kHz
     IO_INTC_EINT2 &= ~INTR_EINT2_I2C; // disable I²C interrupt
 }
diff --git a/firmware/target/arm/tms320dm320/spi-dm320.c b/firmware/target/arm/tms320dm320/spi-dm320.c
index 2dca324664..f1f5828430 100644
--- a/firmware/target/arm/tms320dm320/spi-dm320.c
+++ b/firmware/target/arm/tms320dm320/spi-dm320.c
@@ -43,10 +43,7 @@ struct SPI_info {
 
 static const struct SPI_info spi_targets[SPI_MAX_TARGETS] =
 {
-#if defined(CREATIVE_ZVx)
-    [SPI_target_LTV250QV] =  { &IO_GIO_BITCLR2, &IO_GIO_BITSET2, 
-        GIO_LCD_ENABLE, true, 0x07},
-#elif defined(MROBE_500)
+#if defined(MROBE_500)
     [SPI_target_TSC2100]   = { &IO_GIO_BITCLR1, &IO_GIO_BITSET1, 
         GIO_TS_ENABLE, 0x260D, true},
     /* RTC seems to have timing problems if the CLK idles low */
diff --git a/firmware/target/arm/tms320dm320/spi-target.h b/firmware/target/arm/tms320dm320/spi-target.h
index 965d499377..16fb2ff01b 100644
--- a/firmware/target/arm/tms320dm320/spi-target.h
+++ b/firmware/target/arm/tms320dm320/spi-target.h
@@ -23,9 +23,7 @@
 #define SPI_TARGET_H
 
 enum SPI_target {
-#if defined(CREATIVE_ZVx)
-    SPI_target_LTV250QV = 0,
-#elif defined(MROBE_500)
+#if defined(MROBE_500)
     SPI_target_TSC2100 = 0,
     SPI_target_RX5X348AB,
     SPI_target_BACKLIGHT,
diff --git a/firmware/target/arm/tms320dm320/system-dm320.c b/firmware/target/arm/tms320dm320/system-dm320.c
index 6df9868f1c..ae8472ca53 100644
--- a/firmware/target/arm/tms320dm320/system-dm320.c
+++ b/firmware/target/arm/tms320dm320/system-dm320.c
@@ -27,9 +27,6 @@
 #include "system-arm.h"
 #include "spi.h"
 #include "i2c.h"
-#ifdef CREATIVE_ZVx
-#include "dma-target.h"
-#endif
 #ifdef MROBE_500
 #include "usb-mr500.h"
 #endif
@@ -370,10 +367,6 @@ void system_init(void)
     IO_GIO_BITCLR2 = 0x0001;
 #endif
 
-#ifdef CREATIVE_ZVx
-    dma_init();
-#endif
-
 #ifdef SANSA_CONNECT
 #ifndef HAVE_WIFI
     /* keep WIFI CS and reset high to save power */
diff --git a/firmware/target/arm/tms320dm320/system-target.h b/firmware/target/arm/tms320dm320/system-target.h
index d228129e0f..cf5a278dc2 100644
--- a/firmware/target/arm/tms320dm320/system-target.h
+++ b/firmware/target/arm/tms320dm320/system-target.h
@@ -38,16 +38,6 @@
 void udelay(int usec);
 void mdelay(int msec);
 
-#if defined(CREATIVE_ZVx) && defined(BOOTLOADER)
-    /* hacky.. */
-#define SLEEP_KERNEL_HOOK(ticks) \
-    ({                                              \
-    long _sleep_ticks = current_tick + (ticks) + 1; \
-    while (TIME_BEFORE(current_tick, _sleep_ticks)) \
-        switch_thread(); \
-    true; }) /* handled here */
-#endif
-
 #ifdef BOOTLOADER
 void tick_stop(void);
 void system_prepare_fw_start(void);
diff --git a/firmware/target/hosted/sdl/sim-ui-defines.h b/firmware/target/hosted/sdl/sim-ui-defines.h
index 5a404736b4..c29c4e0be7 100644
--- a/firmware/target/hosted/sdl/sim-ui-defines.h
+++ b/firmware/target/hosted/sdl/sim-ui-defines.h
@@ -219,24 +219,6 @@
 #define UI_LCD_POSX                 58 /* x position of lcd */
 #define UI_LCD_POSY                 67 /* y position of lcd */
 
-#elif defined(CREATIVE_ZVM) || defined(CREATIVE_ZVM60GB)
-#ifdef CREATIVE_ZVM
- #define UI_TITLE                    "Creative Zen Vision:M 30GB"
-#else
- #define UI_TITLE                    "Creative Zen Vision:M 60GB"
-#endif
-#define UI_WIDTH                    383 /* width of GUI window */
-#define UI_HEIGHT                   643 /* height of GUI window */
-#define UI_LCD_POSX                 31 /* x position of lcd */
-#define UI_LCD_POSY                 62 /* y position of lcd */
-
-#elif defined(CREATIVE_ZV)
-#define UI_TITLE                    "Creative Zen Vision"
-#define UI_WIDTH                    1054 /* width of GUI window */
-#define UI_HEIGHT                   643 /* height of GUI window */
-#define UI_LCD_POSX                 129 /* x position of lcd */
-#define UI_LCD_POSY                 85 /* y position of lcd */
-
 #elif defined(SANSA_FUZEPLUS)
 #define UI_TITLE                    "Sansa Fuze+"
 #define UI_WIDTH                    322 /* width of GUI window */
diff --git a/manual/plugins/xworld.tex b/manual/plugins/xworld.tex
index 36585615db..29e97e4f99 100644
--- a/manual/plugins/xworld.tex
+++ b/manual/plugins/xworld.tex
@@ -49,12 +49,12 @@ Additionally, ``extra'' data files that modify the in-game strings and font can
     \opt{SAMSUNG_YH92X_PAD}{\ButtonFF}
     \opt{IRIVER_H300_PAD,SANSA_E200_PAD,SAMSUNG_YH820_PAD,IAUDIO_X5M5_PAD}{\ButtonRec}
     \opt{IPOD_4G_PAD,IPOD_3G_PAD,IPOD_1G2G_PAD,CREATIVE_ZEN_PAD,SANSA_CLIP_PAD}{\ButtonSelect}
-    \opt{SONY_NWZ_PAD,CREATIVEZVM_PAD}{\ButtonPlay}
+    \opt{SONY_NWZ_PAD}{\ButtonPlay}
     \opt{ONDAVX777_PAD,MROBE500_PAD,PBELL_VIBE500_PAD}{\ButtonPower}
     \opt{SAMSUNG_YPR0_PAD}{\ButtonUser}
     \opt{IRIVER_H10_PAD}{\ButtonRew}
     \opt{HM801_PAD}{\ButtonPrev}
-    \opt{SONY_NWZ_PAD,CREATIVEZVM_PAD}{\ButtonPlay}
+    \opt{SONY_NWZ_PAD}{\ButtonPlay}
     \opt{MROBE500_PAD}{\ButtonPower}
     \opt{DX50_PAD,ONDAVX747_PAD,PHILIPS_HDD1630_PAD,PHILIPS_HDD6330_PAD,PHILIPS_SA9200_PAD%
         ,CREATIVE_ZENXFI2_PAD,CREATIVE_ZENXFI3_PAD,SANSA_CONNECT_PAD,SANSA_C200_PAD%
@@ -73,7 +73,7 @@ Additionally, ``extra'' data files that modify the in-game strings and font can
     \opt{SAMSUNG_YH820_PAD,IAUDIO_X5M5_PAD}{\ButtonPlay}
     \opt{SANSA_E200_PAD,SANSA_CLIP_PAD}{\ButtonPower}
     \opt{CREATIVE_ZEN_PAD,SONY_NWZ_PAD}{\ButtonBack}
-    \opt{CREATIVEZVM_PAD,SAMSUNG_YPR0_PAD}{\ButtonMenu}
+    \opt{SAMSUNG_YPR0_PAD}{\ButtonMenu}
     \opt{IRIVER_H300_PAD}{\ButtonMode}
     \opt{HM801_PAD}{\ButtonNext}
     \opt{PBELL_VIBE500_PAD}{\ButtonRec}
diff --git a/manual/rockbox_interface/images/zenvision-front.pdf b/manual/rockbox_interface/images/zenvision-front.pdf
deleted file mode 100644
index 386fa7ac5a..0000000000
Binary files a/manual/rockbox_interface/images/zenvision-front.pdf and /dev/null differ
diff --git a/manual/rockbox_interface/images/zenvision-front.png b/manual/rockbox_interface/images/zenvision-front.png
deleted file mode 100644
index 5b35fd01f1..0000000000
Binary files a/manual/rockbox_interface/images/zenvision-front.png and /dev/null differ
diff --git a/manual/rockbox_interface/images/zenvision-front.svg b/manual/rockbox_interface/images/zenvision-front.svg
deleted file mode 100644
index 9d86fafe91..0000000000
--- a/manual/rockbox_interface/images/zenvision-front.svg
+++ /dev/null
@@ -1,4979 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="602.36218"
-   height="354.33069"
-   viewBox="0 0 602.36217 354.33068"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.91 r13725"
-   sodipodi:docname="zenvision-front.svg"
-   inkscape:export-filename="C:\Users\admin\Desktop\zenvision-front.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5643">
-      <stop
-         id="stop5645"
-         offset="0"
-         style="stop-color:#120f10;stop-opacity:1" />
-      <stop
-         style="stop-color:#13120e;stop-opacity:1"
-         offset="0.18003653"
-         id="stop5647" />
-      <stop
-         style="stop-color:#151515;stop-opacity:1;"
-         offset="0.9121176"
-         id="stop5649" />
-      <stop
-         style="stop-color:#aaaaaa;stop-opacity:1"
-         offset="0.95837653"
-         id="stop5651" />
-      <stop
-         id="stop5653"
-         offset="1"
-         style="stop-color:#161616;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5633">
-      <stop
-         style="stop-color:#181612;stop-opacity:1"
-         offset="0"
-         id="stop5635" />
-      <stop
-         id="stop5637"
-         offset="0.8992635"
-         style="stop-color:#050903;stop-opacity:1;" />
-      <stop
-         style="stop-color:#aaaaaa;stop-opacity:1"
-         offset="0.93488592"
-         id="stop5639" />
-      <stop
-         style="stop-color:#030802;stop-opacity:1"
-         offset="1"
-         id="stop5641" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5623">
-      <stop
-         style="stop-color:#181612;stop-opacity:1"
-         offset="0"
-         id="stop5625" />
-      <stop
-         id="stop5627"
-         offset="0.8992635"
-         style="stop-color:#050903;stop-opacity:1;" />
-      <stop
-         style="stop-color:#aaaaaa;stop-opacity:1"
-         offset="0.93488592"
-         id="stop5629" />
-      <stop
-         style="stop-color:#030802;stop-opacity:1"
-         offset="1"
-         id="stop5631" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5611">
-      <stop
-         id="stop5613"
-         offset="0"
-         style="stop-color:#120f10;stop-opacity:1" />
-      <stop
-         style="stop-color:#13120e;stop-opacity:1"
-         offset="0.18003653"
-         id="stop5615" />
-      <stop
-         style="stop-color:#151515;stop-opacity:1;"
-         offset="0.9121176"
-         id="stop5617" />
-      <stop
-         style="stop-color:#aaabaa;stop-opacity:1"
-         offset="0.95837653"
-         id="stop5619" />
-      <stop
-         id="stop5621"
-         offset="1"
-         style="stop-color:#161616;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient6201"
-       inkscape:collect="always">
-      <stop
-         id="stop6203"
-         offset="0"
-         style="stop-color:#101010;stop-opacity:1" />
-      <stop
-         style="stop-color:#050505;stop-opacity:1"
-         offset="0.50324225"
-         id="stop6205" />
-      <stop
-         id="stop6207"
-         offset="1"
-         style="stop-color:#111111;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient6193">
-      <stop
-         style="stop-color:#323232;stop-opacity:1"
-         offset="0"
-         id="stop6195" />
-      <stop
-         style="stop-color:#414141;stop-opacity:1"
-         offset="1"
-         id="stop6197" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5626">
-      <stop
-         id="stop5628"
-         offset="0"
-         style="stop-color:#000000;stop-opacity:1" />
-      <stop
-         style="stop-color:#070707;stop-opacity:1"
-         offset="0.87309474"
-         id="stop5630" />
-      <stop
-         style="stop-color:#141414;stop-opacity:1"
-         offset="0.97308838"
-         id="stop5632" />
-      <stop
-         id="stop5634"
-         offset="0.97308838"
-         style="stop-color:#030303;stop-opacity:1" />
-      <stop
-         style="stop-color:#fcfcfc;stop-opacity:1"
-         offset="0.98970217"
-         id="stop5636" />
-      <stop
-         id="stop5638"
-         offset="1"
-         style="stop-color:#171717;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5616">
-      <stop
-         style="stop-color:#a9d3ec;stop-opacity:1"
-         offset="0"
-         id="stop5618" />
-      <stop
-         id="stop5624"
-         offset="0.82512116"
-         style="stop-color:#a9d3ec;stop-opacity:1;" />
-      <stop
-         style="stop-color:#8ab5ce;stop-opacity:1"
-         offset="1"
-         id="stop5620" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5497">
-      <stop
-         style="stop-color:#121212;stop-opacity:1"
-         offset="0"
-         id="stop5499" />
-      <stop
-         id="stop5507"
-         offset="0.05175779"
-         style="stop-color:#101010;stop-opacity:1" />
-      <stop
-         id="stop5505"
-         offset="0.49983957"
-         style="stop-color:#212121;stop-opacity:1" />
-      <stop
-         style="stop-color:#101010;stop-opacity:0.94509804"
-         offset="0.94826722"
-         id="stop5519" />
-      <stop
-         style="stop-color:#141414;stop-opacity:1"
-         offset="1"
-         id="stop5501" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5481"
-       inkscape:collect="always">
-      <stop
-         id="stop5483"
-         offset="0"
-         style="stop-color:#0f0f0f;stop-opacity:1" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="0.50324225"
-         id="stop5485" />
-      <stop
-         id="stop5487"
-         offset="1"
-         style="stop-color:#0e0e0e;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5119"
-       inkscape:collect="always">
-      <stop
-         id="stop5121"
-         offset="0"
-         style="stop-color:#757575;stop-opacity:1" />
-      <stop
-         id="stop5123"
-         offset="1"
-         style="stop-color:#2f2f2f;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient8287"
-       inkscape:collect="always">
-      <stop
-         id="stop8289"
-         offset="0"
-         style="stop-color:#545454;stop-opacity:1" />
-      <stop
-         id="stop8291"
-         offset="1"
-         style="stop-color:#2e2e2e;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient8261">
-      <stop
-         id="stop8263"
-         offset="0"
-         style="stop-color:#000000;stop-opacity:1" />
-      <stop
-         style="stop-color:#070707;stop-opacity:1"
-         offset="0.90391773"
-         id="stop8265" />
-      <stop
-         style="stop-color:#141414;stop-opacity:1"
-         offset="0.96025693"
-         id="stop8267" />
-      <stop
-         id="stop8269"
-         offset="0.97581041"
-         style="stop-color:#131313;stop-opacity:1" />
-      <stop
-         style="stop-color:#979797;stop-opacity:1"
-         offset="0.98970217"
-         id="stop8271" />
-      <stop
-         id="stop8273"
-         offset="1"
-         style="stop-color:#171717;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient7770">
-      <stop
-         style="stop-color:#070707;stop-opacity:1"
-         offset="0"
-         id="stop7772" />
-      <stop
-         id="stop7776"
-         offset="0.50324225"
-         style="stop-color:#030303;stop-opacity:1" />
-      <stop
-         style="stop-color:#070707;stop-opacity:1"
-         offset="1"
-         id="stop7774" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient7760"
-       inkscape:collect="always">
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="0"
-         id="stop7762" />
-      <stop
-         id="stop7780"
-         offset="0.87309474"
-         style="stop-color:#070707;stop-opacity:1" />
-      <stop
-         id="stop7778"
-         offset="0.96025693"
-         style="stop-color:#141414;stop-opacity:1" />
-      <stop
-         style="stop-color:#030303;stop-opacity:1"
-         offset="0.96493173"
-         id="stop7764" />
-      <stop
-         id="stop7766"
-         offset="0.98970217"
-         style="stop-color:#fcfcfc;stop-opacity:1" />
-      <stop
-         style="stop-color:#171717;stop-opacity:1"
-         offset="1"
-         id="stop7768" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5492">
-      <stop
-         style="stop-color:#101010;stop-opacity:1"
-         offset="0"
-         id="stop5494" />
-      <stop
-         id="stop5502"
-         offset="0.10878044"
-         style="stop-color:#282828;stop-opacity:1;" />
-      <stop
-         id="stop5500"
-         offset="0.86124325"
-         style="stop-color:#282828;stop-opacity:1;" />
-      <stop
-         style="stop-color:#0d0d0d;stop-opacity:1"
-         offset="1"
-         id="stop5496" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4887">
-      <stop
-         style="stop-color:#393938;stop-opacity:1"
-         offset="0"
-         id="stop4889" />
-      <stop
-         style="stop-color:#bfbdbb;stop-opacity:1"
-         offset="1"
-         id="stop4891" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5347"
-       inkscape:collect="always">
-      <stop
-         id="stop5349"
-         offset="0"
-         style="stop-color:#848482;stop-opacity:1" />
-      <stop
-         id="stop5351"
-         offset="1"
-         style="stop-color:#d5d3d2;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5341"
-       inkscape:collect="always">
-      <stop
-         id="stop5343"
-         offset="0"
-         style="stop-color:#8f8f8e;stop-opacity:1" />
-      <stop
-         id="stop5345"
-         offset="1"
-         style="stop-color:#d2d1cf;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5155">
-      <stop
-         style="stop-color:#e3e2e0;stop-opacity:1"
-         offset="0"
-         id="stop5157" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="1"
-         id="stop5159" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5100">
-      <stop
-         style="stop-color:#767575;stop-opacity:1"
-         offset="0"
-         id="stop5102" />
-      <stop
-         id="stop5116"
-         offset="0.82512182"
-         style="stop-color:#767575;stop-opacity:1" />
-      <stop
-         style="stop-color:#767575;stop-opacity:1"
-         offset="0.88638496"
-         id="stop5118" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="1"
-         id="stop5104" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5090">
-      <stop
-         style="stop-color:#e0dee7;stop-opacity:1"
-         offset="0"
-         id="stop5092" />
-      <stop
-         id="stop5098"
-         offset="0.40494341"
-         style="stop-color:#2c2b2c;stop-opacity:1;" />
-      <stop
-         style="stop-color:#2c2b2c;stop-opacity:1"
-         offset="1"
-         id="stop5094" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4999"
-       inkscape:collect="always">
-      <stop
-         id="stop5001"
-         offset="0"
-         style="stop-color:#6d6c6c;stop-opacity:1" />
-      <stop
-         style="stop-color:#696868;stop-opacity:1"
-         offset="0.60699928"
-         id="stop5005" />
-      <stop
-         id="stop5007"
-         offset="0.68828166"
-         style="stop-color:#363636;stop-opacity:1" />
-      <stop
-         id="stop5003"
-         offset="1"
-         style="stop-color:#a19e9c;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4963"
-       inkscape:collect="always">
-      <stop
-         id="stop4965"
-         offset="0"
-         style="stop-color:#676666;stop-opacity:1" />
-      <stop
-         style="stop-color:#232324;stop-opacity:1"
-         offset="0.12601018"
-         id="stop4969" />
-      <stop
-         id="stop4971"
-         offset="0.32262352"
-         style="stop-color:#545454;stop-opacity:1" />
-      <stop
-         id="stop4967"
-         offset="1"
-         style="stop-color:#a19e9c;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5172"
-       inkscape:collect="always">
-      <stop
-         id="stop5174"
-         offset="0"
-         style="stop-color:#000000;stop-opacity:1" />
-      <stop
-         id="stop5176"
-         offset="1"
-         style="stop-color:#e4e3e1;stop-opacity:0" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5134"
-       inkscape:collect="always">
-      <stop
-         id="stop5136"
-         offset="0"
-         style="stop-color:#c8c4c1;stop-opacity:1" />
-      <stop
-         style="stop-color:#c9c5c2;stop-opacity:1"
-         offset="0.01412104"
-         id="stop5138" />
-      <stop
-         id="stop5140"
-         offset="0.03957579"
-         style="stop-color:#ede9e6;stop-opacity:1" />
-      <stop
-         style="stop-color:#787572;stop-opacity:1"
-         offset="0.49395123"
-         id="stop5144" />
-      <stop
-         id="stop4811"
-         offset="0.95318896"
-         style="stop-color:#e4e3e1;stop-opacity:1" />
-      <stop
-         id="stop5142"
-         offset="1"
-         style="stop-color:#b5b5b4;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4905">
-      <stop
-         style="stop-color:#423e3b;stop-opacity:1"
-         offset="0"
-         id="stop4907" />
-      <stop
-         style="stop-color:#e4e3e1;stop-opacity:1"
-         offset="1"
-         id="stop4909" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient6245">
-      <stop
-         style="stop-color:#3f3f3f;stop-opacity:1"
-         offset="0"
-         id="stop6247" />
-      <stop
-         style="stop-color:#4d4d4d;stop-opacity:1"
-         offset="1"
-         id="stop6249" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient6237">
-      <stop
-         style="stop-color:#606363;stop-opacity:1"
-         offset="0"
-         id="stop6239" />
-      <stop
-         style="stop-color:#494a4c;stop-opacity:1"
-         offset="1"
-         id="stop6241" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4842">
-      <stop
-         style="stop-color:#0c0c0c;stop-opacity:1"
-         offset="0"
-         id="stop4844" />
-      <stop
-         id="stop4846"
-         offset="0.16062737"
-         style="stop-color:#a0a1a0;stop-opacity:1" />
-      <stop
-         id="stop4850"
-         offset="0.8505348"
-         style="stop-color:#a1a2a1;stop-opacity:1" />
-      <stop
-         style="stop-color:#0c0c0c;stop-opacity:1"
-         offset="1"
-         id="stop4852" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient6081">
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="0"
-         id="stop6083" />
-      <stop
-         id="stop6085"
-         offset="0.03005469"
-         style="stop-color:#000000;stop-opacity:1" />
-      <stop
-         id="stop6087"
-         offset="0.06683247"
-         style="stop-color:#c8c8c8;stop-opacity:1" />
-      <stop
-         id="stop6089"
-         offset="0.8505348"
-         style="stop-color:#a1a2a1;stop-opacity:1" />
-      <stop
-         style="stop-color:#0c0c0c;stop-opacity:1"
-         offset="1"
-         id="stop6091" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient6057">
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="0"
-         id="stop6059" />
-      <stop
-         id="stop6061"
-         offset="0.03005469"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         id="stop6063"
-         offset="0.06683247"
-         style="stop-color:#9f9e9f;stop-opacity:1;" />
-      <stop
-         id="stop6065"
-         offset="0.8505348"
-         style="stop-color:#a1a2a1;stop-opacity:1" />
-      <stop
-         style="stop-color:#0c0c0c;stop-opacity:1"
-         offset="1"
-         id="stop6067" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient6045">
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="0"
-         id="stop6047" />
-      <stop
-         id="stop6049"
-         offset="0.02316931"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         id="stop6051"
-         offset="0.06683247"
-         style="stop-color:#9f9e9e;stop-opacity:1" />
-      <stop
-         id="stop6053"
-         offset="0.8505348"
-         style="stop-color:#a1a2a1;stop-opacity:1" />
-      <stop
-         style="stop-color:#0c0c0c;stop-opacity:1"
-         offset="1"
-         id="stop6055" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5877"
-       inkscape:collect="always">
-      <stop
-         id="stop5879"
-         offset="0"
-         style="stop-color:#000000;stop-opacity:1" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="0.03005469"
-         id="stop5887" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1"
-         offset="0.06683247"
-         id="stop5885" />
-      <stop
-         style="stop-color:#a1a2a1;stop-opacity:1"
-         offset="0.8505348"
-         id="stop5881" />
-      <stop
-         id="stop5883"
-         offset="1"
-         style="stop-color:#0c0c0c;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4996"
-       inkscape:collect="always">
-      <stop
-         id="stop4998"
-         offset="0"
-         style="stop-color:#65666a;stop-opacity:1" />
-      <stop
-         style="stop-color:#4f4f51;stop-opacity:1"
-         offset="0.58651942"
-         id="stop5008" />
-      <stop
-         style="stop-color:#303030;stop-opacity:1"
-         offset="0.62873042"
-         id="stop5006" />
-      <stop
-         id="stop5000"
-         offset="1"
-         style="stop-color:#303030;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4990"
-       inkscape:collect="always">
-      <stop
-         id="stop4992"
-         offset="0"
-         style="stop-color:#65666a;stop-opacity:1" />
-      <stop
-         style="stop-color:#727271;stop-opacity:1;"
-         offset="0.2200668"
-         id="stop5010" />
-      <stop
-         style="stop-color:#474747;stop-opacity:1"
-         offset="0.59561396"
-         id="stop5004" />
-      <stop
-         id="stop5012"
-         offset="0.80347091"
-         style="stop-color:#787876;stop-opacity:1" />
-      <stop
-         id="stop4994"
-         offset="1"
-         style="stop-color:#787876;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4984"
-       inkscape:collect="always">
-      <stop
-         id="stop4986"
-         offset="0"
-         style="stop-color:#424242;stop-opacity:1" />
-      <stop
-         style="stop-color:#525251;stop-opacity:1"
-         offset="0.61854345"
-         id="stop5014" />
-      <stop
-         style="stop-color:#737371;stop-opacity:1"
-         offset="0.65401912"
-         id="stop5002" />
-      <stop
-         id="stop4988"
-         offset="1"
-         style="stop-color:#787876;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4892">
-      <stop
-         style="stop-color:#424242;stop-opacity:1"
-         offset="0"
-         id="stop4894" />
-      <stop
-         style="stop-color:#303030;stop-opacity:1"
-         offset="1"
-         id="stop4896" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4799"
-       inkscape:collect="always">
-      <stop
-         id="stop4801"
-         offset="0"
-         style="stop-color:#232323;stop-opacity:1" />
-      <stop
-         style="stop-color:#1e1e1e;stop-opacity:1"
-         offset="0.28100151"
-         id="stop4803" />
-      <stop
-         id="stop4809"
-         offset="0.58926445"
-         style="stop-color:#292929;stop-opacity:1" />
-      <stop
-         style="stop-color:#3d3d3d;stop-opacity:1"
-         offset="0.64000523"
-         id="stop4805" />
-      <stop
-         id="stop4807"
-         offset="1"
-         style="stop-color:#464646;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4787"
-       inkscape:collect="always">
-      <stop
-         id="stop4789"
-         offset="0"
-         style="stop-color:#2a2a2a;stop-opacity:1" />
-      <stop
-         style="stop-color:#2c2c2c;stop-opacity:1"
-         offset="0.36134228"
-         id="stop4793" />
-      <stop
-         id="stop4795"
-         offset="0.41187242"
-         style="stop-color:#464646;stop-opacity:1" />
-      <stop
-         id="stop4791"
-         offset="1"
-         style="stop-color:#454545;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4779"
-       inkscape:collect="always">
-      <stop
-         id="stop4781"
-         offset="0"
-         style="stop-color:#2a2a2a;stop-opacity:1" />
-      <stop
-         style="stop-color:#252525;stop-opacity:1"
-         offset="0.49882433"
-         id="stop4785" />
-      <stop
-         id="stop4783"
-         offset="1"
-         style="stop-color:#232323;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4739"
-       inkscape:collect="always">
-      <stop
-         id="stop4741"
-         offset="0"
-         style="stop-color:#454545;stop-opacity:1" />
-      <stop
-         style="stop-color:#464646;stop-opacity:1"
-         offset="0.27226824"
-         id="stop4743" />
-      <stop
-         style="stop-color:#656565;stop-opacity:1"
-         offset="0.57452929"
-         id="stop4745" />
-      <stop
-         id="stop4797"
-         offset="0.63350797"
-         style="stop-color:#4b4b4b;stop-opacity:1" />
-      <stop
-         id="stop4747"
-         offset="1"
-         style="stop-color:#464646;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4595">
-      <stop
-         style="stop-color:#676766;stop-opacity:1"
-         offset="0"
-         id="stop4597" />
-      <stop
-         style="stop-color:#0f0f0f;stop-opacity:1"
-         offset="1"
-         id="stop4599" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5060">
-      <stop
-         style="stop-color:#555555;stop-opacity:1"
-         offset="0"
-         id="stop5062" />
-      <stop
-         id="stop5068"
-         offset="0.53957897"
-         style="stop-color:#3e3e3e;stop-opacity:1" />
-      <stop
-         style="stop-color:#7f7f7f;stop-opacity:1"
-         offset="1"
-         id="stop5064" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5050">
-      <stop
-         style="stop-color:#757575;stop-opacity:1"
-         offset="0"
-         id="stop5052" />
-      <stop
-         id="stop5058"
-         offset="0.50075203"
-         style="stop-color:#525252;stop-opacity:1" />
-      <stop
-         style="stop-color:#555555;stop-opacity:1"
-         offset="1"
-         id="stop5054" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5040">
-      <stop
-         style="stop-color:#494949;stop-opacity:1"
-         offset="0"
-         id="stop5042" />
-      <stop
-         id="stop5048"
-         offset="0.53517455"
-         style="stop-color:#606060;stop-opacity:1" />
-      <stop
-         style="stop-color:#818181;stop-opacity:1"
-         offset="1"
-         id="stop5044" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5030">
-      <stop
-         style="stop-color:#767676;stop-opacity:1"
-         offset="0"
-         id="stop5032" />
-      <stop
-         id="stop5038"
-         offset="0.4649069"
-         style="stop-color:#545454;stop-opacity:1" />
-      <stop
-         style="stop-color:#484848;stop-opacity:1"
-         offset="1"
-         id="stop5034" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4902">
-      <stop
-         style="stop-color:#3b3b3b;stop-opacity:1"
-         offset="0"
-         id="stop4904" />
-      <stop
-         id="stop4924"
-         offset="0.00995768"
-         style="stop-color:#424242;stop-opacity:1" />
-      <stop
-         style="stop-color:#565656;stop-opacity:1"
-         offset="0.02094553"
-         id="stop4926" />
-      <stop
-         id="stop4928"
-         offset="0.03300451"
-         style="stop-color:#6c6c6c;stop-opacity:1" />
-      <stop
-         id="stop4906"
-         offset="0.07858519"
-         style="stop-color:#6c6c6c;stop-opacity:1" />
-      <stop
-         style="stop-color:#898989;stop-opacity:1"
-         offset="0.30302408"
-         id="stop4908" />
-      <stop
-         id="stop4910"
-         offset="0.48880965"
-         style="stop-color:#ababab;stop-opacity:1" />
-      <stop
-         style="stop-color:#b2b2b2;stop-opacity:1"
-         offset="0.76520199"
-         id="stop4912" />
-      <stop
-         id="stop4914"
-         offset="0.89875984"
-         style="stop-color:#b5b5b5;stop-opacity:1" />
-      <stop
-         id="stop4916"
-         offset="0.93644053"
-         style="stop-color:#d6d6d6;stop-opacity:1" />
-      <stop
-         style="stop-color:#dedede;stop-opacity:1"
-         offset="0.95885295"
-         id="stop4918" />
-      <stop
-         id="stop4920"
-         offset="0.97963434"
-         style="stop-color:#cacaca;stop-opacity:1" />
-      <stop
-         style="stop-color:#444444;stop-opacity:1"
-         offset="1"
-         id="stop4922" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4551"
-       inkscape:collect="always">
-      <stop
-         id="stop4554"
-         offset="0"
-         style="stop-color:#464646;stop-opacity:1" />
-      <stop
-         style="stop-color:#6c6c6c;stop-opacity:1"
-         offset="0.07858519"
-         id="stop4556" />
-      <stop
-         id="stop4558"
-         offset="0.30302408"
-         style="stop-color:#898989;stop-opacity:1" />
-      <stop
-         style="stop-color:#777777;stop-opacity:1"
-         offset="0.48880965"
-         id="stop4560" />
-      <stop
-         id="stop4562"
-         offset="0.76520199"
-         style="stop-color:#b2b2b2;stop-opacity:1" />
-      <stop
-         style="stop-color:#b5b5b5;stop-opacity:1"
-         offset="0.89875984"
-         id="stop4572" />
-      <stop
-         style="stop-color:#d6d6d6;stop-opacity:1"
-         offset="0.93644053"
-         id="stop4564" />
-      <stop
-         id="stop4566"
-         offset="0.95885295"
-         style="stop-color:#dedede;stop-opacity:1" />
-      <stop
-         style="stop-color:#cacaca;stop-opacity:1"
-         offset="0.97963434"
-         id="stop4568" />
-      <stop
-         id="stop4570"
-         offset="1"
-         style="stop-color:#444444;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4732">
-      <stop
-         style="stop-color:#5b5b5b;stop-opacity:1;"
-         offset="0"
-         id="stop4734" />
-      <stop
-         style="stop-color:#2c2c2c;stop-opacity:1"
-         offset="1"
-         id="stop4736" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4533">
-      <stop
-         style="stop-color:#262626;stop-opacity:1"
-         offset="0"
-         id="stop4535" />
-      <stop
-         id="stop4537"
-         offset="0.02389107"
-         style="stop-color:#535353;stop-opacity:1;" />
-      <stop
-         style="stop-color:#434343;stop-opacity:1"
-         offset="0.04939374"
-         id="stop4539" />
-      <stop
-         id="stop4541"
-         offset="0.10503593"
-         style="stop-color:#313131;stop-opacity:1" />
-      <stop
-         style="stop-color:#373737;stop-opacity:1"
-         offset="0.1743712"
-         id="stop4543" />
-      <stop
-         id="stop4545"
-         offset="0.25397041"
-         style="stop-color:#373737;stop-opacity:1" />
-      <stop
-         style="stop-color:#3b3b3b;stop-opacity:1"
-         offset="0.35134426"
-         id="stop4547" />
-      <stop
-         id="stop4549"
-         offset="0.44021717"
-         style="stop-color:#383838;stop-opacity:1" />
-      <stop
-         style="stop-color:#323232;stop-opacity:1"
-         offset="0.55309659"
-         id="stop4551" />
-      <stop
-         id="stop4553"
-         offset="0.66068494"
-         style="stop-color:#353535;stop-opacity:1" />
-      <stop
-         style="stop-color:#3c3c3c;stop-opacity:1"
-         offset="0.72687018"
-         id="stop4555" />
-      <stop
-         style="stop-color:#343434;stop-opacity:1"
-         offset="0.81321049"
-         id="stop4557" />
-      <stop
-         style="stop-color:#313131;stop-opacity:1"
-         offset="0.90282959"
-         id="stop4559" />
-      <stop
-         id="stop4561"
-         offset="0.94014961"
-         style="stop-color:#383838;stop-opacity:1" />
-      <stop
-         id="stop4563"
-         offset="0.97488439"
-         style="stop-color:#7b7b7b;stop-opacity:1" />
-      <stop
-         style="stop-color:#595959;stop-opacity:1"
-         offset="1"
-         id="stop4565" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4401"
-       inkscape:collect="always">
-      <stop
-         id="stop4499"
-         offset="0"
-         style="stop-color:#262626;stop-opacity:1" />
-      <stop
-         style="stop-color:#535353;stop-opacity:1;"
-         offset="0.02389107"
-         id="stop4501" />
-      <stop
-         id="stop4503"
-         offset="0.04939374"
-         style="stop-color:#8a8b8c;stop-opacity:1" />
-      <stop
-         style="stop-color:#83827f;stop-opacity:1"
-         offset="0.10503593"
-         id="stop4505" />
-      <stop
-         id="stop4507"
-         offset="0.1743712"
-         style="stop-color:#888783;stop-opacity:1" />
-      <stop
-         style="stop-color:#858282;stop-opacity:1"
-         offset="0.25397041"
-         id="stop4509" />
-      <stop
-         id="stop4511"
-         offset="0.35134426"
-         style="stop-color:#92918f;stop-opacity:1" />
-      <stop
-         style="stop-color:#9b9b9b;stop-opacity:1"
-         offset="0.44021717"
-         id="stop4513" />
-      <stop
-         id="stop4515"
-         offset="0.55309659"
-         style="stop-color:#a0a0a0;stop-opacity:1" />
-      <stop
-         style="stop-color:#b8b7b5;stop-opacity:1"
-         offset="0.66068494"
-         id="stop4517" />
-      <stop
-         id="stop4519"
-         offset="0.72687018"
-         style="stop-color:#cac9c7;stop-opacity:1" />
-      <stop
-         id="stop4521"
-         offset="0.81321049"
-         style="stop-color:#bebebe;stop-opacity:1" />
-      <stop
-         id="stop4523"
-         offset="0.90282959"
-         style="stop-color:#c0c0c0;stop-opacity:1" />
-      <stop
-         style="stop-color:#b3b3b3;stop-opacity:1"
-         offset="0.94014961"
-         id="stop4525" />
-      <stop
-         style="stop-color:#818181;stop-opacity:1"
-         offset="0.97488439"
-         id="stop4527" />
-      <stop
-         id="stop4529"
-         offset="1"
-         style="stop-color:#555555;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4437">
-      <stop
-         style="stop-color:#262626;stop-opacity:1"
-         offset="0"
-         id="stop4439" />
-      <stop
-         style="stop-color:#4a4a4a;stop-opacity:1"
-         offset="1"
-         id="stop4441" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4264"
-       inkscape:collect="always">
-      <stop
-         id="stop4266"
-         offset="0"
-         style="stop-color:#000000;stop-opacity:1" />
-      <stop
-         style="stop-color:#494949;stop-opacity:1"
-         offset="0.06596854"
-         id="stop4268" />
-      <stop
-         id="stop4270"
-         offset="0.09547544"
-         style="stop-color:#67625e;stop-opacity:1" />
-      <stop
-         style="stop-color:#dad5d1;stop-opacity:1"
-         offset="0.12310904"
-         id="stop4272" />
-      <stop
-         id="stop4274"
-         offset="0.22989185"
-         style="stop-color:#a19c98;stop-opacity:1" />
-      <stop
-         style="stop-color:#d6d5d4;stop-opacity:1"
-         offset="0.29403493"
-         id="stop4276" />
-      <stop
-         id="stop4278"
-         offset="0.39527276"
-         style="stop-color:#d6d5d3;stop-opacity:1" />
-      <stop
-         style="stop-color:#d7d6d4;stop-opacity:1"
-         offset="0.50037467"
-         id="stop4280" />
-      <stop
-         id="stop4282"
-         offset="0.65957314"
-         style="stop-color:#929190;stop-opacity:1;" />
-      <stop
-         style="stop-color:#d7d7d7;stop-opacity:1"
-         offset="0.85741198"
-         id="stop4284" />
-      <stop
-         id="stop4286"
-         offset="0.93314719"
-         style="stop-color:#b4b4b0;stop-opacity:0.8392157" />
-      <stop
-         style="stop-color:#313132;stop-opacity:1"
-         offset="0.95246744"
-         id="stop4292" />
-      <stop
-         style="stop-color:#d4d4d1;stop-opacity:1"
-         offset="0.9632867"
-         id="stop4288" />
-      <stop
-         id="stop4290"
-         offset="1"
-         style="stop-color:#d1d1ce;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       gradientTransform="translate(-295.30567,568.04528)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient4264"
-       id="linearGradient4335-1-7"
-       x1="296.36642"
-       y1="297.26553"
-       x2="850.77075"
-       y2="297.26553"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4401"
-       id="linearGradient4407"
-       x1="-943.83466"
-       y1="218.30293"
-       x2="-389.43036"
-       y2="218.30293"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(944.89551,568.04527)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4437"
-       id="linearGradient4443"
-       x1="303.42502"
-       y1="459.10965"
-       x2="843.71021"
-       y2="142.27356"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-295.30572,566.53048)" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter4485"
-       x="-0.0019133205"
-       width="1.0038266"
-       y="-0.0032187279"
-       height="1.0064375">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.44198049"
-         id="feGaussianBlur4487" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4533"
-       id="linearGradient4495"
-       x1="296.43921"
-       y1="383.08051"
-       x2="850.84351"
-       y2="383.08051"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,1.0091929,-295.3784,563.76624)" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter4603"
-       x="-0.0015566582"
-       width="1.0031133"
-       y="-0.0052374792"
-       height="1.010475">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.35959083"
-         id="feGaussianBlur4605" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter4611"
-       x="-0.001559938"
-       width="1.0031199"
-       y="-0.0052006892"
-       height="1.0104014">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.36034847"
-         id="feGaussianBlur4613" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter4631"
-       x="-0.0047592716"
-       width="1.0095185"
-       y="-0.0081157535"
-       height="1.0162315">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="1.0714015"
-         id="feGaussianBlur4633" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient4738-8-8-8-20-3-8"
-       x1="106.07191"
-       y1="437.09586"
-       x2="111.68688"
-       y2="431.32251"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.8635466,0,0,0.8635466,708.09274,38.615882)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient4738-8-8-8-20-1-5-6-0-3-8-2"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.73498663,0,0,0.73498663,728.6836,94.437814)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient4738-8-8-8-20-1-5-6-0-8-5-1"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.73498663,0,0,0.73498663,728.6836,101.26006)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient4738-8-8-8-20-1-5-6-0-7-1-7"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.73498663,0,0,0.73498663,728.6836,108.0823)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8270"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.73498663,0,0,0.73498663,728.6836,114.90455)"
-       x1="106.0719"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient9721"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.8635466,0,0,0.8635466,708.09274,38.615882)"
-       x1="106.07191"
-       y1="437.09586"
-       x2="111.68688"
-       y2="431.32251" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient9737"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.8635466,0,0,0.8635466,708.09274,38.615882)"
-       x1="106.07191"
-       y1="437.09586"
-       x2="111.68688"
-       y2="431.32251" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient9753"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.8635466,0,0,0.8635466,708.09274,38.615882)"
-       x1="106.07191"
-       y1="437.09586"
-       x2="111.68688"
-       y2="431.32251" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient4738-8-8-8-20-1-5-6-0-3-8-2-6"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.73498663,0,0,0.73498663,675.6917,94.437826)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient4738-8-8-8-20-1-5-6-0-8-5-1-7"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.73498663,0,0,0.73498663,675.6917,101.26007)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient4738-8-8-8-20-1-5-6-0-7-1-7-2"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.73498663,0,0,0.73498663,675.6917,108.08231)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8270-2"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.73498663,0,0,0.73498663,675.6917,114.90455)"
-       x1="106.0719"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-4"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-0"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-8"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-8-0"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-4-3"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-83"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-0-2"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-8-1"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-4-0"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-7"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-0-0"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-8-5"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-4-9"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-1"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-0-03"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-8-04"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-4-4"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-40"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient8622-0-5"
-       gradientUnits="userSpaceOnUse"
-       x1="106.07189"
-       y1="437.09586"
-       x2="111.68687"
-       y2="431.32254" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient10275"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.8635466,0,0,0.8635466,708.09274,38.615882)"
-       x1="106.07191"
-       y1="437.09586"
-       x2="111.68688"
-       y2="431.32251" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient10277"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.8635466,0,0,0.8635466,708.09274,38.615882)"
-       x1="106.07191"
-       y1="437.09586"
-       x2="111.68688"
-       y2="431.32251" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient10279"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.8635466,0,0,0.8635466,708.09274,38.615882)"
-       x1="106.07191"
-       y1="437.09586"
-       x2="111.68688"
-       y2="431.32251" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4732"
-       id="linearGradient10281"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.8635466,0,0,0.8635466,708.09274,38.615882)"
-       x1="106.07191"
-       y1="437.09586"
-       x2="111.68688"
-       y2="431.32251" />
-    <filter
-       style="color-interpolation-filters:sRGB"
-       inkscape:collect="always"
-       id="filter3995">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="3.9582846"
-         id="feGaussianBlur3997" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4551"
-       id="linearGradient4459-2-0"
-       x1="-388.6752"
-       y1="453.9967"
-       x2="-388.6752"
-       y2="153.2467"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(413.33133,565.91082)" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter4606"
-       x="-0.051120002"
-       width="1.10224"
-       y="-0.0031870324"
-       height="1.0063741">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.399375"
-         id="feGaussianBlur4608" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4902"
-       id="linearGradient4780"
-       x1="844.53363"
-       y1="456.09232"
-       x2="823.06177"
-       y2="151.15253"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-295.4135,568.04527)" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter4938"
-       x="-0.035961773"
-       width="1.0719235"
-       y="-0.0032730435"
-       height="1.0065461">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.41586718"
-         id="feGaussianBlur4940" />
-    </filter>
-    <linearGradient
-       gradientTransform="matrix(0.97931952,0,0,0.94425023,102.59007,-39.492479)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient5030"
-       id="linearGradient5036-3"
-       x1="99.136719"
-       y1="178.218"
-       x2="123.0918"
-       y2="169.61058"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       gradientTransform="matrix(0.97931952,0,0,0.94425023,102.59007,-39.492479)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient5050"
-       id="linearGradient5056-9"
-       x1="99.136719"
-       y1="178.218"
-       x2="123.0918"
-       y2="186.82542"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       gradientTransform="matrix(0.97931952,0,0,0.94425023,102.59007,-39.492479)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient5040"
-       id="linearGradient5046-6"
-       x1="123.0918"
-       y1="169.61058"
-       x2="147.04688"
-       y2="178.218"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       gradientTransform="matrix(0.97931952,0,0,0.94425023,102.59007,-39.492479)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient5060"
-       id="linearGradient5066-1"
-       x1="123.0918"
-       y1="186.82542"
-       x2="147.04688"
-       y2="178.218"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4595"
-       id="linearGradient4601"
-       x1="677.4032"
-       y1="380.44901"
-       x2="901.81232"
-       y2="200.05493"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       gradientTransform="matrix(1.053466,0,0,1.053466,392.19306,917.46148)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient4739"
-       id="linearGradient4569-4"
-       x1="-124.95148"
-       y1="-172.44708"
-       x2="63.783203"
-       y2="-36.376774"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       gradientTransform="matrix(1.053466,0,0,1.053466,392.19306,917.46148)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient4779"
-       id="linearGradient4585-8"
-       x1="-313.68555"
-       y1="-36.376774"
-       x2="-124.95117"
-       y2="99.693359"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       gradientTransform="matrix(1.053466,0,0,1.053466,392.19306,917.46211)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient4787"
-       id="linearGradient4577-2"
-       x1="-313.68555"
-       y1="-36.376774"
-       x2="-124.95148"
-       y2="-172.44708"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       gradientTransform="matrix(1.053466,0,0,1.053466,392.19306,917.46148)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient4799"
-       id="linearGradient4593-2"
-       x1="-124.95148"
-       y1="99.693535"
-       x2="63.783203"
-       y2="-36.376774"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4990"
-       id="linearGradient4898"
-       x1="-124.95118"
-       y1="432.61581"
-       x2="50.44743"
-       y2="301.90341"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0523974,0,0,1.0523974,392.05852,561.4186)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4996"
-       id="linearGradient4898-4"
-       x1="-124.95118"
-       y1="432.61581"
-       x2="50.44743"
-       y2="301.90341"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1.0523974,0,0,1.0523974,129.06191,561.4186)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4984"
-       id="linearGradient4898-48"
-       x1="-124.95118"
-       y1="432.61581"
-       x2="50.44743"
-       y2="301.90341"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0523974,0,0,-1.0523974,392.05956,1196.8625)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4892"
-       id="linearGradient4898-6"
-       x1="-124.95118"
-       y1="432.61581"
-       x2="50.44743"
-       y2="301.90341"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1.0523974,0,0,-1.0523974,129.06191,1196.8628)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#id1-7"
-       id="linearGradient5792-1"
-       gradientUnits="userSpaceOnUse"
-       x1="7257.5498"
-       y1="3098.24"
-       x2="7296.5898"
-       y2="3319.6001" />
-    <linearGradient
-       y2="3319.6001"
-       x2="7296.5898"
-       y1="3098.24"
-       x1="7257.5498"
-       gradientUnits="userSpaceOnUse"
-       id="id1-7">
-      <stop
-         id="stop1624-4"
-         stop-color="#FFC100"
-         offset="0" />
-      <stop
-         id="stop1626-0"
-         stop-color="#997200"
-         offset="0.6" />
-      <stop
-         id="stop1628-9"
-         stop-color="#332201"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5877"
-       id="linearGradient5875"
-       gradientUnits="userSpaceOnUse"
-       x1="-86.738365"
-       y1="128.42082"
-       x2="-28.2826"
-       y2="122.30482" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6081"
-       id="linearGradient5875-6"
-       gradientUnits="userSpaceOnUse"
-       x1="-86.738365"
-       y1="128.42082"
-       x2="-28.2826"
-       y2="122.30482" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6045"
-       id="linearGradient5875-6-3"
-       gradientUnits="userSpaceOnUse"
-       x1="-86.738365"
-       y1="128.42082"
-       x2="-28.2826"
-       y2="122.30482" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6057"
-       id="linearGradient5875-4"
-       gradientUnits="userSpaceOnUse"
-       x1="-86.738365"
-       y1="128.42082"
-       x2="-28.2826"
-       y2="122.30482" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6722"
-       x="-0.028806111"
-       width="1.0576122"
-       y="-0.58433372"
-       height="2.1686673">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58155568"
-         id="feGaussianBlur6724" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6726"
-       x="-0.026603106"
-       width="1.0532062"
-       y="-0.57690895"
-       height="2.1538179">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58382227"
-         id="feGaussianBlur6728" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6730"
-       x="-0.028806111"
-       width="1.0576122"
-       y="-0.58433372"
-       height="2.1686673">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58155568"
-         id="feGaussianBlur6732" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6734"
-       x="-0.026603106"
-       width="1.0532062"
-       y="-0.57690895"
-       height="2.1538179">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58382227"
-         id="feGaussianBlur6736" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6738"
-       x="-0.028806111"
-       width="1.0576122"
-       y="-0.58433372"
-       height="2.1686673">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58155568"
-         id="feGaussianBlur6740" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6742"
-       x="-0.026603106"
-       width="1.0532062"
-       y="-0.57690895"
-       height="2.1538179">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58382227"
-         id="feGaussianBlur6744" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6746"
-       x="-0.025151169"
-       width="1.0503023"
-       y="-0.4129529"
-       height="1.8259058">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58407608"
-         id="feGaussianBlur6748" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6750"
-       x="-0.028806111"
-       width="1.0576122"
-       y="-0.58433372"
-       height="2.1686673">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58155568"
-         id="feGaussianBlur6752" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6754"
-       x="-0.026603106"
-       width="1.0532062"
-       y="-0.57690895"
-       height="2.1538179">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58382227"
-         id="feGaussianBlur6756" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6758"
-       x="-0.025151169"
-       width="1.0503023"
-       y="-0.4129529"
-       height="1.8259058">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58407608"
-         id="feGaussianBlur6760" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6762"
-       x="-0.025151169"
-       width="1.0503023"
-       y="-0.4129529"
-       height="1.8259058">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58407608"
-         id="feGaussianBlur6764" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6766"
-       x="-0.025151169"
-       width="1.0503023"
-       y="-0.4129529"
-       height="1.8259058">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58407608"
-         id="feGaussianBlur6768" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6738-7"
-       x="-0.028806111"
-       width="1.0576122"
-       y="-0.58433372"
-       height="2.1686673">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58155568"
-         id="feGaussianBlur6740-4" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6742-8"
-       x="-0.026603106"
-       width="1.0532062"
-       y="-0.57690895"
-       height="2.1538179">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58382227"
-         id="feGaussianBlur6744-8" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6746-4"
-       x="-0.025151169"
-       width="1.0503023"
-       y="-0.4129529"
-       height="1.8259058">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58407608"
-         id="feGaussianBlur6748-3" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4842"
-       id="linearGradient4840"
-       gradientUnits="userSpaceOnUse"
-       x1="-86.738365"
-       y1="128.42082"
-       x2="-28.2826"
-       y2="122.30482"
-       gradientTransform="matrix(-0.89637943,0,0,1,663.16502,7.5591)" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6738-7-4"
-       x="-0.028806111"
-       width="1.0576122"
-       y="-0.58433372"
-       height="2.1686673">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58155568"
-         id="feGaussianBlur6740-4-6" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6742-8-7"
-       x="-0.026603106"
-       width="1.0532062"
-       y="-0.57690895"
-       height="2.1538179">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58382227"
-         id="feGaussianBlur6744-8-1" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4842"
-       id="linearGradient4840-55"
-       gradientUnits="userSpaceOnUse"
-       x1="-86.738365"
-       y1="128.42082"
-       x2="-28.2826"
-       y2="122.30482"
-       gradientTransform="matrix(-0.89637943,0,0,1,580.19786,-32.007894)" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter6746-4-8"
-       x="-0.025151169"
-       width="1.0503023"
-       y="-0.4129529"
-       height="1.8259058">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.58407608"
-         id="feGaussianBlur6748-3-4" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4887"
-       id="linearGradient4894-1"
-       gradientUnits="userSpaceOnUse"
-       x1="1191.2738"
-       y1="2420.2729"
-       x2="1111.3516"
-       y2="2513.314" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5347"
-       id="linearGradient5227-4-0-3-3"
-       x1="1090.5382"
-       y1="2477.2642"
-       x2="1118.2893"
-       y2="2501.2974"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5155"
-       id="linearGradient5161-9"
-       x1="118.35557"
-       y1="381.43863"
-       x2="118.39975"
-       y2="383.65555"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(688.41098,-101.3877)" />
-    <linearGradient
-       gradientTransform="translate(688.41098,-101.2627)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient5100"
-       id="linearGradient5106-6"
-       x1="164.51575"
-       y1="341.05389"
-       x2="164.50539"
-       y2="384.4772"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5128-7"
-       x="-0.33751288"
-       width="1.6750257"
-       y="-0.019014044"
-       height="1.0380281">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.32581546"
-         id="feGaussianBlur5130-7" />
-    </filter>
-    <linearGradient
-       gradientTransform="translate(688.41098,-101.2627)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient5090"
-       id="linearGradient5096-5"
-       x1="132.2654"
-       y1="342.29321"
-       x2="131.8904"
-       y2="330.07288"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5041-6"
-       x="-0.0068501607"
-       width="1.0137002"
-       y="-0.04834494"
-       height="1.0966899">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.22440674"
-         id="feGaussianBlur5043-0" />
-    </filter>
-    <linearGradient
-       gradientTransform="translate(688.41092,-101.26216)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient4999"
-       id="linearGradient4849-8-3"
-       x1="83.437393"
-       y1="341.16641"
-       x2="99.157143"
-       y2="393.11505"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5045-8"
-       x="-0.14287271"
-       width="1.2857454"
-       y="-0.0062630181"
-       height="1.012526">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.098053342"
-         id="feGaussianBlur5047-5" />
-    </filter>
-    <linearGradient
-       gradientTransform="translate(688.41098,-101.2627)"
-       inkscape:collect="always"
-       xlink:href="#linearGradient4963"
-       id="linearGradient4849-84"
-       x1="84.617233"
-       y1="376.92383"
-       x2="84.617233"
-       y2="393.11523"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5053-6"
-       x="-0.012068737"
-       width="1.0241375"
-       y="-0.011932042"
-       height="1.0238642">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.078615353"
-         id="feGaussianBlur5055-9" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter4873-2-0-7"
-       x="-0.025287505"
-       width="1.050575"
-       y="-0.062459663"
-       height="1.1249193">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.13880035"
-         id="feGaussianBlur4875-4-1-4" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5172"
-       id="radialGradient4911-9-4-3"
-       cx="124.05471"
-       cy="-365.42447"
-       fx="124.05471"
-       fy="-365.42447"
-       r="40.450584"
-       gradientTransform="matrix(0,0.59998448,-2.8817776,4.5945114e-8,-240.60627,-334.88023)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4905"
-       id="radialGradient4911-9-3"
-       cx="124.0547"
-       cy="-365.42447"
-       fx="124.0547"
-       fy="-365.42447"
-       r="40.450584"
-       gradientTransform="matrix(-0.72851256,0.01555788,-0.04722352,-2.2112901,885.58447,-1070.3921)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5134"
-       id="linearGradient4899-7-3"
-       x1="80.84481"
-       y1="-365.42441"
-       x2="167.2646"
-       y2="-365.42441"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(688.41099,105.02179)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6237"
-       id="linearGradient5205"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(6.9522172,-35.405055)"
-       x1="792.03101"
-       y1="307.29178"
-       x2="760.68335"
-       y2="325.98709" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6245"
-       id="linearGradient5207"
-       gradientUnits="userSpaceOnUse"
-       x1="771.73334"
-       y1="287.06351"
-       x2="794.88562"
-       y2="275.49869" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5341"
-       id="linearGradient5209"
-       gradientUnits="userSpaceOnUse"
-       x1="1156.0457"
-       y1="2464.6484"
-       x2="1111.3516"
-       y2="2513.314" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4887"
-       id="linearGradient5211"
-       gradientUnits="userSpaceOnUse"
-       x1="1156.0457"
-       y1="2464.6484"
-       x2="1111.3516"
-       y2="2513.314" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4595"
-       id="linearGradient4848"
-       gradientUnits="userSpaceOnUse"
-       x1="677.4032"
-       y1="380.44901"
-       x2="901.81232"
-       y2="200.05493" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4595"
-       id="linearGradient4850"
-       gradientUnits="userSpaceOnUse"
-       x1="677.4032"
-       y1="380.44901"
-       x2="901.81232"
-       y2="200.05493" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4595"
-       id="linearGradient4852"
-       gradientUnits="userSpaceOnUse"
-       x1="677.4032"
-       y1="380.44901"
-       x2="901.81232"
-       y2="200.05493" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4595"
-       id="linearGradient4854"
-       gradientUnits="userSpaceOnUse"
-       x1="677.4032"
-       y1="380.44901"
-       x2="901.81232"
-       y2="200.05493" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5119"
-       id="linearGradient4915-45-2"
-       x1="45.882389"
-       y1="208.37582"
-       x2="45.882389"
-       y2="201.30046"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5592-8-8"
-       x="-0.012508668"
-       width="1.0250173"
-       y="-0.19595382"
-       height="1.3919076">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.39037672"
-         id="feGaussianBlur5594-00-9" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient7760"
-       id="radialGradient5942-0-6"
-       cx="45.565403"
-       cy="210.2018"
-       fx="45.565403"
-       fy="210.2018"
-       r="38.688763"
-       gradientTransform="matrix(1,0,0,1.3437147,0,-78.966828)"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5688-31-9"
-       x="-0.013830182"
-       width="1.0276604"
-       y="-0.090680711"
-       height="1.1813614">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.43389225"
-         id="feGaussianBlur5690-5-3" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient7770"
-       id="linearGradient5805-97-1"
-       x1="9.184679"
-       y1="202.81145"
-       x2="81.946121"
-       y2="202.81145"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.98337193,737.74399,5.0945596)" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5629-69-1"
-       x="-0.0088587021"
-       width="1.0177174"
-       y="-0.018832903"
-       height="1.0376658">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.2638961"
-         id="feGaussianBlur5631-0-1" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5580-6-0"
-       x="-0.026576107"
-       width="1.0531522"
-       y="-0.056498714"
-       height="1.1129974">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.79168831"
-         id="feGaussianBlur5582-5-0" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5492"
-       id="linearGradient5498-3-4"
-       x1="7.9389567"
-       y1="202.42"
-       x2="83.191849"
-       y2="202.42"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,1.0070626,737.74399,-1.5546104)" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5572-02-3"
-       x="-0.0088223061"
-       width="1.0176446"
-       y="-0.018755527"
-       height="1.0375111">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.27662667"
-         id="feGaussianBlur5574-2-5" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter7835"
-       x="-0.063993975"
-       width="1.1279879"
-       y="-0.082475697"
-       height="1.1649514">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.30038852"
-         id="feGaussianBlur7837" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5572-02-3-9"
-       x="-0.0088223061"
-       width="1.0176446"
-       y="-0.018755527"
-       height="1.0375111">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.27662667"
-         id="feGaussianBlur5574-2-5-1" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5580-6-0-1"
-       x="-0.026576107"
-       width="1.0531522"
-       y="-0.056498714"
-       height="1.1129974">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.79168831"
-         id="feGaussianBlur5582-5-0-6" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5629-69-1-3"
-       x="-0.0088587021"
-       width="1.0177174"
-       y="-0.018832903"
-       height="1.0376658">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.2638961"
-         id="feGaussianBlur5631-0-1-8" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient8261"
-       id="radialGradient5942-0-6-8"
-       cx="45.565403"
-       cy="210.2018"
-       fx="45.565403"
-       fy="210.2018"
-       r="38.688763"
-       gradientTransform="matrix(1,0,0,1.3437147,0,-78.966828)"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5688-31-9-1"
-       x="-0.013830182"
-       width="1.0276604"
-       y="-0.090680711"
-       height="1.1813614">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.43389225"
-         id="feGaussianBlur5690-5-3-3" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient8287"
-       id="linearGradient4915-45-2-2"
-       x1="45.882389"
-       y1="208.37582"
-       x2="45.882389"
-       y2="201.30046"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0047062,0,0,0.96084026,442.22378,723.0186)" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5592-8-8-1"
-       x="-0.012508668"
-       width="1.0250173"
-       y="-0.19595382"
-       height="1.3919076">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.39037672"
-         id="feGaussianBlur5594-00-9-6" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5492"
-       id="linearGradient7950"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,1.0070626,442.43827,713.46837)"
-       x1="7.9389567"
-       y1="202.42"
-       x2="83.191849"
-       y2="202.42" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient7770"
-       id="linearGradient7952"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.98337193,442.43827,720.11754)"
-       x1="9.184679"
-       y1="202.81145"
-       x2="81.946121"
-       y2="202.81145" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter8251"
-       x="-0.053614891"
-       width="1.1072298"
-       y="-0.10957411"
-       height="1.2191482">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.281931"
-         id="feGaussianBlur8253" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5293-3"
-       x="-0.015783926"
-       width="1.0315679"
-       y="-0.16423455"
-       height="1.3284692">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.49117968"
-         id="feGaussianBlur5295-5" />
-    </filter>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5626"
-       id="radialGradient5942-0-6-0-0"
-       cx="45.565403"
-       cy="210.2018"
-       fx="45.565403"
-       fy="210.2018"
-       r="38.688763"
-       gradientTransform="matrix(1,0,0,1.3437147,0,-78.966828)"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5688-31-9-8-8"
-       x="-0.013830182"
-       width="1.0276604"
-       y="-0.090680711"
-       height="1.1813614">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.43389225"
-         id="feGaussianBlur5690-5-3-0-9" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5629-69-1-2-3"
-       x="-0.0088587021"
-       width="1.0177174"
-       y="-0.018832903"
-       height="1.0376658">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.2638961"
-         id="feGaussianBlur5631-0-1-4-0" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5580-6-0-9-1"
-       x="-0.026576107"
-       width="1.0531522"
-       y="-0.056498714"
-       height="1.1129974">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.79168831"
-         id="feGaussianBlur5582-5-0-2-8" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5572-02-3-8-7"
-       x="-0.0088223061"
-       width="1.0176446"
-       y="-0.018755527"
-       height="1.0375111">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.27662667"
-         id="feGaussianBlur5574-2-5-6-5" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5492"
-       id="linearGradient5396"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,1.0070626,656.63176,1.1380971)"
-       x1="7.9389567"
-       y1="202.42"
-       x2="83.191849"
-       y2="202.42" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5481"
-       id="linearGradient5398"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.98337193,656.63176,7.7872671)"
-       x1="9.184679"
-       y1="202.81145"
-       x2="81.946121"
-       y2="202.81145" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5592-8-8-15"
-       x="-0.012508668"
-       width="1.0250173"
-       y="-0.19595382"
-       height="1.3919076">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.39037672"
-         id="feGaussianBlur5594-00-9-1" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5497"
-       id="linearGradient5503"
-       x1="7.1783009"
-       y1="204.64726"
-       x2="83.952496"
-       y2="204.64726"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5612"
-       x="-0.063588622"
-       width="1.1271772"
-       y="-0.082975887"
-       height="1.1659518">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.4281822"
-         id="feGaussianBlur5614" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5616"
-       id="linearGradient5622"
-       x1="147.18355"
-       y1="214.31812"
-       x2="147.18355"
-       y2="228.78061"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5743-6-8-3-9-4"
-       x="-0.052949995"
-       width="1.1059"
-       y="-0.1124602"
-       height="1.2249204">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.23541105"
-         id="feGaussianBlur5745-4-7-8-4-6" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6193"
-       id="linearGradient6199-1-3-6"
-       x1="759.3598"
-       y1="370.51575"
-       x2="759.3598"
-       y2="379.01575"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-294.89942,566.41183)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6201"
-       id="linearGradient5479-1-1-0-4"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-0.33668527,0,0,-0.71572312,481.63433,1074.5299)"
-       x1="9.8183298"
-       y1="202.81145"
-       x2="81.312469"
-       y2="202.81145" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5623"
-       id="radialGradient6025-1-1-6-8-1"
-       cx="109.95122"
-       cy="-285.21072"
-       fx="109.95122"
-       fy="-285.21072"
-       r="9.2353554"
-       gradientTransform="matrix(2.0555361,0,7.7468749e-8,5.7289644,244.10762,2572.6931)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5611"
-       id="radialGradient6017-3-6-9-5-8"
-       cx="98.811478"
-       cy="413.5882"
-       fx="98.811478"
-       fy="413.5882"
-       r="9.2353735"
-       gradientTransform="matrix(2.6827892,0,0,6.8672887,208.26828,-1901.4886)"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5743-6-8-3-9-4-7"
-       x="-0.052949995"
-       width="1.1059"
-       y="-0.1124602"
-       height="1.2249204">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.23541105"
-         id="feGaussianBlur5745-4-7-8-4-6-2" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6193"
-       id="linearGradient6199-1-3-6-6"
-       x1="759.3598"
-       y1="370.51575"
-       x2="759.3598"
-       y2="379.01575"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,1270.9077,566.41182)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6201"
-       id="linearGradient5479-1-1-0-4-6"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.33668527,0,0,-0.71572312,494.37402,1074.5299)"
-       x1="9.8183298"
-       y1="202.81145"
-       x2="81.312469"
-       y2="202.81145" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5633"
-       id="radialGradient6025-1-1-6-8-1-2"
-       cx="109.95122"
-       cy="-285.21072"
-       fx="109.95122"
-       fy="-285.21072"
-       r="9.2353554"
-       gradientTransform="matrix(-2.0563571,0,-7.7499692e-8,5.7289644,731.99102,2572.6932)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5643"
-       id="radialGradient6017-3-6-9-5-8-3"
-       cx="98.811478"
-       cy="413.5882"
-       fx="98.811478"
-       fy="413.5882"
-       r="9.2353735"
-       gradientTransform="matrix(-2.7115016,0,0,6.8672887,770.57722,-1901.4885)"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5519"
-       x="-0.0097403592"
-       width="1.0194807"
-       y="-0.015624744"
-       height="1.0312495">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.097691825"
-         id="feGaussianBlur5521" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5527"
-       x="-0.0097403592"
-       width="1.0194807"
-       y="-0.015624744"
-       height="1.0312495">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.097691825"
-         id="feGaussianBlur5529" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5543"
-       x="-0.014331569"
-       width="1.0286631"
-       y="-0.073760978"
-       height="1.147522">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.2205988"
-         id="feGaussianBlur5545" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5559"
-       x="-0.014331569"
-       width="1.0286631"
-       y="-0.073760978"
-       height="1.147522">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.2205988"
-         id="feGaussianBlur5561" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5567"
-       x="-0.022572461"
-       width="1.0451449"
-       y="-0.025620292"
-       height="1.0512406">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.17372095"
-         id="feGaussianBlur5569" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5575"
-       x="-0.022572461"
-       width="1.0451449"
-       y="-0.025620292"
-       height="1.0512406">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.17372095"
-         id="feGaussianBlur5577" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5591"
-       x="-0.022135313"
-       width="1.0442706"
-       y="-0.026207751"
-       height="1.0524155">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.1775977"
-         id="feGaussianBlur5593" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       style="color-interpolation-filters:sRGB"
-       id="filter5607"
-       x="-0.022135313"
-       width="1.0442706"
-       y="-0.026207751"
-       height="1.0524155">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.1775977"
-         id="feGaussianBlur5609" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5616"
-       id="linearGradient5702"
-       gradientUnits="userSpaceOnUse"
-       x1="147.18355"
-       y1="214.31812"
-       x2="147.18355"
-       y2="228.78061" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5616"
-       id="linearGradient5704"
-       gradientUnits="userSpaceOnUse"
-       x1="147.18355"
-       y1="214.31812"
-       x2="147.18355"
-       y2="228.78061" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5616"
-       id="linearGradient5706"
-       gradientUnits="userSpaceOnUse"
-       x1="147.18355"
-       y1="214.31812"
-       x2="147.18355"
-       y2="228.78061" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5616"
-       id="linearGradient5708"
-       gradientUnits="userSpaceOnUse"
-       x1="147.18355"
-       y1="214.31812"
-       x2="147.18355"
-       y2="228.78061" />
-    <marker
-       inkscape:stockid="Arrow1Mstart"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="Arrow1Mstart"
-       style="overflow:visible">
-      <path
-         inkscape:connector-curvature="0"
-         id="path4276"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
-         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
-         transform="matrix(0.4,0,0,0.4,4,0)" />
-    </marker>
-    <marker
-       inkscape:stockid="Arrow1Mstart"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="Arrow1Mstart-5"
-       style="overflow:visible">
-      <path
-         inkscape:connector-curvature="0"
-         id="path4276-1"
-         d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
-         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
-         transform="matrix(0.4,0,0,0.4,4,0)" />
-    </marker>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="2.1071854"
-     inkscape:cx="348.26405"
-     inkscape:cy="195.28416"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer4"
-     showgrid="false"
-     inkscape:window-width="1920"
-     inkscape:window-height="1021"
-     inkscape:window-x="-6"
-     inkscape:window-y="-6"
-     inkscape:window-maximized="1"
-     showborder="true"
-     showguides="false"
-     inkscape:guide-bbox="true"
-     inkscape:snap-bbox="true"
-     inkscape:object-nodes="true"
-     inkscape:bbox-nodes="true"
-     inkscape:snap-intersection-paths="true"
-     inkscape:bbox-paths="true"
-     inkscape:snap-midpoints="true"
-     inkscape:snap-object-midpoints="true"
-     inkscape:snap-center="true"
-     inkscape:snap-smooth-nodes="true"
-     inkscape:object-paths="true"
-     inkscape:snap-bbox-midpoints="true"
-     inkscape:snap-bbox-edge-midpoints="true"
-     inkscape:snap-to-guides="true"
-     inkscape:snap-nodes="true"
-     inkscape:snap-global="true"
-     inkscape:showpageshadow="false"
-     units="px"
-     height="354.33069mm"
-     inkscape:snap-page="true">
-    <sodipodi:guide
-       position="301.18108,-181"
-       orientation="1,0"
-       id="guide5714" />
-    <sodipodi:guide
-       position="602.36217,0"
-       orientation="1,0"
-       id="guide5718" />
-    <sodipodi:guide
-       position="449.91564,350.51054"
-       orientation="1,0"
-       id="guide5888" />
-    <sodipodi:guide
-       position="440.88107,360.87186"
-       orientation="0,1"
-       id="guide5890" />
-    <sodipodi:guide
-       position="362.5,369.5"
-       orientation="0,1"
-       id="guide5892" />
-    <sodipodi:guide
-       position="612.51293,284.56902"
-       orientation="1,0"
-       id="guide5894" />
-  </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 />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:groupmode="layer"
-     id="layer3"
-     inkscape:label="DAP"
-     style="display:inline"
-     transform="translate(0,-698.03149)"
-     sodipodi:insensitive="true">
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:1;fill:url(#linearGradient4335-1-7);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4485)"
-       d="m 278.19552,700.53247 -148.82617,1.5 -89.326175,3.75 c -21.5773,0.90583 -35.7870498,19.50734 -36.4355518,38.93946 l -1.83984,55.16993 -0.70703,65.41796 1.06054,49.95507 2.121102,75.84183 c 0.6039,21.58778 18.9544798,38.98238 40.5507798,38.98238 l 88.916015,0 144.55274,0 0,-327.30663 c 0,-0.0105 -1e-5,-0.0208 0,-0.0312 10e-6,0.0105 0.002,0.0207 0.002,0.0312 l 0,327.30663 144.55273,0 88.91602,0 c 21.5963,0 39.94688,-17.3946 40.55078,-38.98238 l 2.1211,-75.84183 1.06054,-49.95507 -0.70703,-65.41796 -1.83984,-55.16993 c -0.6485,-19.43212 -14.85825,-38.03363 -36.43555,-38.93946 l -89.32617,-3.75 -148.82617,-1.5 -0.0664,0 -0.0684,0 z"
-       id="rect4146-2-6-5-1-5"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient5875-6-3);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6762)"
-       d="m -83.376056,123.85491 c -0.619904,0.002 -2.001575,0.8012 -2.001575,2.03135 l 0,1.17383 55.734294,0 0,-1.17383 c 0,-1.23015 -0.499175,-2.22293 -1.119078,-2.2207 z"
-       id="rect4551-8-9-9-24-1-3-3"
-       inkscape:connector-curvature="0"
-       transform="matrix(-1.0397436,0,0,-1.053466,213.186,837.69523)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient5875-4);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6766)"
-       d="m -83.376056,123.85491 c -0.619904,0.002 -2.001575,0.8012 -2.001575,2.03135 l 0,1.17383 55.734294,0 0,-1.17383 c 0,-1.23015 -0.499175,-2.22293 -1.119078,-2.2207 z"
-       id="rect4551-8-9-9-24-1-1"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0397436,0,0,-1.053466,389.17612,837.69523)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6726)"
-       d="m -83.37951,124.90669 c -0.585699,-4.6e-4 -0.460087,0.73833 -0.460087,1.60379 l 0,0.82497 52.658226,0 0,-0.82497 c 0,-0.86546 -0.471732,-1.56316 -1.057431,-1.56362 z"
-       id="rect4551-5-2-9-2-0-0-9-9"
-       inkscape:connector-curvature="0"
-       transform="matrix(-1.0406478,0,0,-1.053466,213.15779,837.69523)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6722)"
-       d="m -81.755695,124.94686 c -0.538923,0 -1.26871,0.69816 -1.26871,1.56362 l 0,0.82497 48.452694,0 0,-0.82497 c 0,-0.86546 -0.434054,-1.56362 -0.972971,-1.56362 z"
-       id="rect4551-5-8-0-0-1-5-4-5-3"
-       inkscape:connector-curvature="0"
-       transform="matrix(-1.0487754,0,0,-1.053466,213.32472,837.69523)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6734)"
-       d="m -83.37951,124.90669 c -0.585699,-4.6e-4 -0.460087,0.73833 -0.460087,1.60379 l 0,0.82497 52.658226,0 0,-0.82497 c 0,-0.86546 -0.471732,-1.56316 -1.057431,-1.56362 z"
-       id="rect4551-5-2-9-2-0-0-4"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0406478,0,0,-1.053466,389.20433,837.69523)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6730)"
-       d="m -81.755695,124.94686 c -0.538923,0 -1.26871,0.69816 -1.26871,1.56362 l 0,0.82497 48.452694,0 0,-0.82497 c 0,-0.86546 -0.434054,-1.56362 -0.972971,-1.56362 z"
-       id="rect4551-5-8-0-0-1-5-4-6"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0487754,0,0,-1.053466,389.0374,837.69523)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       inkscape:connector-curvature="0"
-       style="display:inline;opacity:1;fill:url(#linearGradient4840-55);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6746-4-8)"
-       d="m 608.09766,91.658483 c -0.55567,-0.0023 -1.32812,0.990553 -1.32813,2.220703 l 0,1.173828 24.98047,0 24.98047,0 0,-1.173828 c 0,-1.23015 -0.77245,-2.222703 -1.32812,-2.220703 l -23.65235,0.0957 -23.65234,-0.0957 z"
-       id="rect4551-8-9-9-24-1-3-4-7"
-       transform="matrix(1.0533476,0.01579394,0.01579394,-1.0533476,-217.08297,794.99958)" />
-    <path
-       inkscape:connector-curvature="0"
-       style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6742-8-7)"
-       d="m 631.75,92.920202 -22.52343,0.01953 c -0.51876,4.6e-4 -0.93555,0.69704 -0.93555,1.5625 l 0,0.826172 23.45898,0 23.45899,0 0,-0.826172 c 0,-0.86546 -0.41679,-1.56204 -0.93555,-1.5625 L 631.75,92.920202 Z"
-       id="rect4551-5-2-9-2-0-0-9-7-9"
-       transform="matrix(1.0533476,0.01579394,0.01579394,-1.0533476,-217.08297,794.99958)" />
-    <path
-       inkscape:connector-curvature="0"
-       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6738-7-4)"
-       d="m 612.85743,92.920202 c -0.4324,0 -0.78125,0.69704 -0.78125,1.5625 l 0,0.826172 19.67382,0 19.67383,0 0,-0.826172 c 0,-0.86546 -0.34885,-1.5625 -0.78125,-1.5625 l -18.89258,0 -18.89257,0 z"
-       id="rect4551-5-8-0-0-1-5-4-5-0-78"
-       transform="matrix(1.0533476,0.01579394,0.01579394,-1.0533476,-217.08297,794.99958)" />
-    <path
-       style="opacity:1;fill:url(#linearGradient4407);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4603)"
-       d="m 278.19551,703.95952 -148.8261,1.5 -89.326205,3.75 c -21.5773,0.90583 -35.7869998,19.50734 -36.4355018,38.93946 l -1.8399,55.16992 -0.707,65.41797 554.4043068,0 -0.7071,-65.41797 -1.8398,-55.16992 c -0.6485,-19.43212 -14.8582,-38.03362 -36.4355,-38.93946 l -89.3262,-3.75 -148.961,-1.5 z"
-       id="rect4146-2-9"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="opacity:1;fill:url(#linearGradient4495);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4611)"
-       d="m 1.0608032,867.22208 1.0606,50.41233 2.121002,76.53901 c 0.6039,21.78628 18.9544998,39.34078 40.5507998,39.34078 l 88.916005,0 144.5528,0 c 0,0 -131.5041,0 144.5547,0 l 88.916,0 c 21.5963,0 39.9469,-17.5545 40.5508,-39.34078 l 2.1211,-76.53901 1.0605,-50.41233 -554.4043068,0 z"
-       id="rect4146-2-9-5"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="opacity:1;fill:url(#linearGradient4443);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4631)"
-       d="m 278.02559,708.80404 -145.2364,1.75195 -87.273405,1.80469 c -21.0817,0.87503 -34.7511,13.9181 -35.3847,32.68945 l -2.0116998,58.2207 0.5937,63.19335 -0.248,48.25586 3.1424998,80.76168 c 0.8114,20.84638 17.4487,30.15818 38.5489,30.15818 l 86.873005,0 c 230.0475,0 141.2324,0 141.2324,0 0,0 -88.815,0 141.2325,0 l 86.873,0 c 21.1002,0 37.7374,-9.3118 38.5488,-30.15818 l 3.1426,-80.76168 -0.248,-48.25586 0.5937,-63.19335 -2.0117,-58.2207 c -0.6336,-18.77135 -14.3031,-31.81442 -35.3848,-32.68945 l -87.2734,-1.80469 z"
-       id="rect4146-2-9-2"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="ccccccccccccccccccccc"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <g
-       id="g10285"
-       transform="matrix(1.053466,0,0,1.053466,-303.05392,561.09543)">
-      <g
-         id="g4743-8-8-8-7-7"
-         transform="matrix(0.94225999,0,0,0.94225999,692.88827,11.260073)">
-        <g
-           id="g4740-3-0-1-5-60">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g9675">
-        <ellipse
-           ry="2.4927685"
-           rx="2.4243932"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-1-9-4-4-6-24-0"
-           style="opacity:1;fill:url(#linearGradient4738-8-8-8-20-3-8);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-        <ellipse
-           ry="1.6860731"
-           rx="0.56146324"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-7-0-5-0-9-9"
-           style="opacity:1;fill:#1c1c1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <ellipse
-         style="opacity:1;fill:url(#linearGradient4738-8-8-8-20-1-5-6-0-3-8-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         id="path4707-1-9-4-4-6-2-1-7-9-4-8-5"
-         cx="808.7085"
-         cy="413.57578"
-         rx="2.0634632"
-         ry="2.1216593" />
-      <ellipse
-         style="opacity:1;fill:url(#linearGradient4738-8-8-8-20-1-5-6-0-8-5-1);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         id="path4707-1-9-4-4-6-2-1-7-9-8-8-6"
-         cx="808.7085"
-         cy="420.39801"
-         rx="2.0634632"
-         ry="2.1216593" />
-      <ellipse
-         style="opacity:1;fill:url(#linearGradient4738-8-8-8-20-1-5-6-0-7-1-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         id="path4707-1-9-4-4-6-2-1-7-9-5-6-1"
-         cx="808.7085"
-         cy="427.22025"
-         rx="2.0634632"
-         ry="2.1216593" />
-      <ellipse
-         ry="2.1216593"
-         rx="2.0634632"
-         cy="434.04251"
-         cx="808.7085"
-         id="path4707-1-9-4-4-6-2-1-7-9-9-6-4"
-         style="opacity:1;fill:url(#linearGradient8270);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <g
-         id="g9675-5"
-         transform="translate(4.4226233e-7,6.8222834)">
-        <ellipse
-           ry="2.4927685"
-           rx="2.4243932"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-1-9-4-4-6-24-0-9"
-           style="opacity:1;fill:url(#linearGradient9721);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-        <ellipse
-           ry="1.6860731"
-           rx="0.56146324"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-7-0-5-0-9-9-7"
-           style="opacity:1;fill:#1c1c1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g9675-9"
-         transform="translate(4.422624e-7,13.644533)">
-        <ellipse
-           ry="2.4927685"
-           rx="2.4243932"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-1-9-4-4-6-24-0-1"
-           style="opacity:1;fill:url(#linearGradient9737);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-        <ellipse
-           ry="1.6860731"
-           rx="0.56146324"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-7-0-5-0-9-9-0"
-           style="opacity:1;fill:#1c1c1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g9675-1"
-         transform="translate(4.4226236e-7,20.466773)">
-        <ellipse
-           ry="2.4927685"
-           rx="2.4243932"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-1-9-4-4-6-24-0-2"
-           style="opacity:1;fill:url(#linearGradient9753);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-        <ellipse
-           ry="1.6860731"
-           rx="0.56146324"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-7-0-5-0-9-9-3"
-           style="opacity:1;fill:#1c1c1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <ellipse
-         style="opacity:1;fill:url(#linearGradient4738-8-8-8-20-1-5-6-0-3-8-2-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         id="path4707-1-9-4-4-6-2-1-7-9-4-8-5-9"
-         cx="755.71661"
-         cy="413.57578"
-         rx="2.0634632"
-         ry="2.1216593" />
-      <ellipse
-         style="opacity:1;fill:url(#linearGradient4738-8-8-8-20-1-5-6-0-8-5-1-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         id="path4707-1-9-4-4-6-2-1-7-9-8-8-6-1"
-         cx="755.71661"
-         cy="420.39801"
-         rx="2.0634632"
-         ry="2.1216593" />
-      <ellipse
-         style="opacity:1;fill:url(#linearGradient4738-8-8-8-20-1-5-6-0-7-1-7-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         id="path4707-1-9-4-4-6-2-1-7-9-5-6-1-6"
-         cx="755.71661"
-         cy="427.22025"
-         rx="2.0634632"
-         ry="2.1216593" />
-      <ellipse
-         ry="2.1216593"
-         rx="2.0634632"
-         cy="434.04251"
-         cx="755.71661"
-         id="path4707-1-9-4-4-6-2-1-7-9-9-6-4-5"
-         style="opacity:1;fill:url(#linearGradient8270-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <g
-         id="g4743-8-8-8-7-7-1"
-         transform="matrix(0.94225999,0,0,0.94225999,692.88827,4.4378236)">
-        <g
-           id="g4740-3-0-1-5-60-1">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-4);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-5"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-9"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-4"
-         transform="matrix(0.94225999,0,0,0.94225999,692.88827,18.082323)">
-        <g
-           id="g4740-3-0-1-5-60-7">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-0);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-3"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-7"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-2"
-         transform="matrix(0.94225999,0,0,0.94225999,692.88827,24.904563)">
-        <g
-           id="g4740-3-0-1-5-60-2">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-8);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-31"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-5"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-6"
-         transform="matrix(0.94225999,0,0,0.94225999,686.25406,11.260073)">
-        <g
-           id="g4740-3-0-1-5-60-0">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-83);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-1"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-99"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-1-6"
-         transform="matrix(0.94225999,0,0,0.94225999,686.25406,4.4378234)">
-        <g
-           id="g4740-3-0-1-5-60-1-2">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-4-3);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-5-9"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-9-1"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-4-0"
-         transform="matrix(0.94225999,0,0,0.94225999,686.25406,18.082324)">
-        <g
-           id="g4740-3-0-1-5-60-7-5">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-0-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-3-5"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-7-1"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-2-9"
-         transform="matrix(0.94225999,0,0,0.94225999,686.25406,24.904564)">
-        <g
-           id="g4740-3-0-1-5-60-2-4">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-8-0);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-31-9"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-5-8"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-0"
-         transform="matrix(0.94225999,0,0,0.94225999,679.61985,11.260073)">
-        <g
-           id="g4740-3-0-1-5-60-9">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-36"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-6"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-1-7"
-         transform="matrix(0.94225999,0,0,0.94225999,679.61985,4.4378234)">
-        <g
-           id="g4740-3-0-1-5-60-1-0">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-4-0);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-5-0"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-9-4"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-4-01"
-         transform="matrix(0.94225999,0,0,0.94225999,679.61985,18.082324)">
-        <g
-           id="g4740-3-0-1-5-60-7-7">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-0-0);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-3-2"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-7-4"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-2-8"
-         transform="matrix(0.94225999,0,0,0.94225999,679.61985,24.904564)">
-        <g
-           id="g4740-3-0-1-5-60-2-5">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-8-1);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-31-4"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-5-4"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-69"
-         transform="matrix(0.94225999,0,0,0.94225999,666.35144,11.260064)">
-        <g
-           id="g4740-3-0-1-5-60-3">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-1);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-6"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-8"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-1-8"
-         transform="matrix(0.94225999,0,0,0.94225999,666.35144,4.4378136)">
-        <g
-           id="g4740-3-0-1-5-60-1-3">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-4-9);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-5-4"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-9-6"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-4-2"
-         transform="matrix(0.94225999,0,0,0.94225999,666.35144,18.082314)">
-        <g
-           id="g4740-3-0-1-5-60-7-4">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-0-03);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-3-0"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-7-12"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-2-1"
-         transform="matrix(0.94225999,0,0,0.94225999,666.35144,24.904553)">
-        <g
-           id="g4740-3-0-1-5-60-2-6">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-8-5);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-31-3"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-5-89"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-43"
-         transform="matrix(0.94225999,0,0,0.94225999,672.98564,11.260073)">
-        <g
-           id="g4740-3-0-1-5-60-08">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-40);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-7"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-0"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-1-5"
-         transform="matrix(0.94225999,0,0,0.94225999,672.98564,4.4378234)">
-        <g
-           id="g4740-3-0-1-5-60-1-7">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-4-4);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-5-6"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-9-9"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-4-22"
-         transform="matrix(0.94225999,0,0,0.94225999,672.98564,18.082323)">
-        <g
-           id="g4740-3-0-1-5-60-7-6">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-0-5);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-3-6"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-7-9"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g4743-8-8-8-7-7-2-4"
-         transform="matrix(0.94225999,0,0,0.94225999,672.98564,24.904563)">
-        <g
-           id="g4740-3-0-1-5-60-2-8">
-          <ellipse
-             style="opacity:1;fill:url(#linearGradient8622-8-04);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-             id="path4707-1-0-1-82-4-13-31-5"
-             cx="108.87938"
-             cy="434.2092"
-             rx="2.8074839"
-             ry="2.8866637" />
-        </g>
-        <ellipse
-           ry="1.7399037"
-           rx="1.6921791"
-           cy="434.2092"
-           cx="108.87938"
-           id="path4707-19-11-0-1-7-5-0"
-           style="opacity:1;fill:#090909;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g9675-6"
-         transform="translate(-39.805239,2.3499825e-5)">
-        <ellipse
-           ry="2.4927685"
-           rx="2.4243932"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-1-9-4-4-6-24-0-6"
-           style="opacity:1;fill:url(#linearGradient10275);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-        <ellipse
-           ry="1.6860731"
-           rx="0.56146324"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-7-0-5-0-9-9-9"
-           style="opacity:1;fill:#1c1c1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g9675-5-4"
-         transform="translate(-39.805239,6.8223135)">
-        <ellipse
-           ry="2.4927685"
-           rx="2.4243932"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-1-9-4-4-6-24-0-9-4"
-           style="opacity:1;fill:url(#linearGradient10277);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-        <ellipse
-           ry="1.6860731"
-           rx="0.56146324"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-7-0-5-0-9-9-7-3"
-           style="opacity:1;fill:#1c1c1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g9675-9-6"
-         transform="translate(-39.805239,13.644564)">
-        <ellipse
-           ry="2.4927685"
-           rx="2.4243932"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-1-9-4-4-6-24-0-1-4"
-           style="opacity:1;fill:url(#linearGradient10279);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-        <ellipse
-           ry="1.6860731"
-           rx="0.56146324"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-7-0-5-0-9-9-0-3"
-           style="opacity:1;fill:#1c1c1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-      <g
-         id="g9675-1-1"
-         transform="translate(-39.805239,20.466803)">
-        <ellipse
-           ry="2.4927685"
-           rx="2.4243932"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-1-9-4-4-6-24-0-2-3"
-           style="opacity:1;fill:url(#linearGradient10281);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-        <ellipse
-           ry="1.6860731"
-           rx="0.56146324"
-           cy="413.57574"
-           cx="802.11517"
-           id="path4707-7-0-5-0-9-9-3-0"
-           style="opacity:1;fill:#1c1c1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      </g>
-    </g>
-    <g
-       transform="matrix(0.05487781,0,0,0.04743066,103.74441,738.79913)"
-       id="g3815-9"
-       style="display:inline;fill:#f1f1f1;fill-opacity:1;stroke:none;filter:url(#filter3995)">
-      <path
-         d="m -212.06208,-266.29087 16.57184,23.68581 c 0,0 -20.50436,15.60768 -32.38587,20.11701 -15.9676,6.06012 -33.42995,9.15452 -50.5014,8.64952 -17.78904,-0.52623 -36.27962,-3.76446 -51.99939,-12.10805 -12.53859,-6.65513 -23.89363,-16.79412 -31.24235,-28.93921 -6.89681,-11.39822 -10.37304,-25.25359 -10.45383,-38.57571 -0.0894,-14.73631 3.1444,-30.36809 11.0451,-42.80776 8.55481,-13.46958 22.51806,-23.55701 36.87016,-30.53063 14.16705,-6.8837 30.43442,-9.88461 46.18498,-9.98814 20.15145,-0.13244 40.25081,5.29046 59.25253,12.00116 6.13905,2.16809 17.33248,9.00457 17.33248,9.00457 l -15.66211,25.02495 c 0,0 -7.89515,-6.03065 -12.3873,-8.04667 -13.64354,-6.12304 -28.32246,-11.31055 -43.26679,-11.8628 -13.7068,-0.50653 -28.16254,1.68502 -40.37874,7.9218 -8.93737,4.56283 -16.92499,11.88273 -22.01974,20.52793 -4.51258,7.65732 -6.38353,16.98274 -6.45741,25.87051 -0.0808,9.72449 1.65723,20.04088 6.5938,28.41956 5.32511,9.03817 13.95313,16.45345 23.36862,21.07879 11.97852,5.884!
 42 26.0617,7.70686 39.39554,7.14102 13.49265,-0.57258 26.99241,-4.61413 39.10926,-10.57747 7.90422,-3.89009 21.03062,-16.00619 21.03062,-16.00619 z"
-         id="path3798-9"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccaaaaaaaaaccaaaaaaaaac"
-         style="font-style:normal;font-weight:normal;font-size:246.21794128px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:none" />
-      <path
-         style="font-style:normal;font-weight:normal;font-size:237.17167664px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#f1f1f1;fill-opacity:1;stroke:none"
-         d="m -163.40625,-374.84375 0,158.53125 30.3125,0 0,-64.90625 0,-5.5 0,-22.53125 0,-13.625 0,-25.65625 51.34375,0 c 13.47677,1.4e-4 26.755278,-1.60943 36.803571,5.67857 3.812011,2.76484 6.141877,8.37673 6.383929,12.60268 0.25284,4.41429 -1.382816,9.14921 -4.125,12.625 -2.589339,3.28206 -6.695914,5.32 -10.6875,6.5625 -10.916012,3.39794 -23.25363,1.8125 -34.25,1.8125 l -18.625,0 c 0,0 5.71261,6.63439 14.053571,19.70089 12.092738,18.94385 36.998121,53.07057 50.544643,73.23661 l 38.464286,0 -31.5,-44.40625 c -6.283843,-8.4346 -14.78125,-21.84375 -14.78125,-21.84375 0,0 14.955152,-3.41113 21.237309,-7.52744 6.821201,-4.46952 13.073845,-10.57436 16.700191,-17.87881 3.5531978,-7.15711 4.8074392,-15.66922 4.0625,-23.625 -0.8053815,-8.60129 -3.72644,-17.48462 -9.057424,-24.28252 -5.378389,-6.85835 -13.415318,-11.75647 -21.613578,-14.71494 -14.070126,-5.07743 -28.46753,-4.25238 -44.672748,-4.25254 z"
-         id="path3805-0"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccasaascsccccaaaaasc" />
-      <path
-         style="font-style:normal;font-weight:normal;font-size:247.64382935px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#f1f1f1;fill-opacity:1;stroke:none"
-         d="m 35.34375,-374.46875 0,63.4375 31.3125,0 0,-38.03125 116.375,0 0,-25.40625 z m 61.625,63.4375 0,30.90625 41.60268,-0.0128 0,-30.89291 z m -61.625,30.90625 0,63.75 147.6875,0 0,-25.78125 -116.375,0 0,-37.96875 z"
-         id="path3914-9"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccccccccccccccc" />
-      <path
-         style="font-style:normal;font-weight:normal;font-size:139.86547852px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#f1f1f1;fill-opacity:1;stroke:none"
-         d="m 433.57143,-216.38942 0,-132.677 -62.14286,0 0,-25.4119 156.07143,0 0,25.4119 -62.76786,0 0,132.677 z"
-         id="path3870-0"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccccc" />
-      <path
-         d="m 696.42857,-216.38942 -71.77549,-158.0889 34.09265,0 52.86141,115.2837 53.125,-115.2837 34.47064,0 -71.70278,158.0889 z"
-         id="path3890-9"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccc"
-         style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#f1f1f1;fill-opacity:1;stroke:none" />
-      <path
-         style="font-style:normal;font-weight:normal;font-size:247.64382935px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#f1f1f1;fill-opacity:1;stroke:none"
-         d="m 820.35714,-374.47833 0,63.4375 31.3125,0 0,-38.03125 116.375,0 0,-25.40625 z m 61.625,63.4375 0,30.90625 41.60268,-0.0128 0,-30.89291 z m -61.625,30.90625 0,63.75 147.6875,0 0,-25.78125 -116.375,0 0,-37.96875 z"
-         id="path3914-8-3"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccccccccccccccc" />
-      <path
-         sodipodi:nodetypes="ccccccc"
-         inkscape:connector-curvature="0"
-         id="path3069-7"
-         d="m 291.11334,-408.31842 89.2438,191.929 -33.87482,0 -57.55375,-121.5971 -54.19437,121.5971 -30.09134,0 z"
-         style="fill:#f1f1f1;fill-opacity:1;stroke:none" />
-      <path
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path3069-9-6"
-         d="m 380.35714,-191.26182 0,26.1377 -175.71428,0 0,-26.1377 z"
-         style="fill:#f1f1f1;fill-opacity:1;stroke:none" />
-      <path
-         inkscape:connector-curvature="0"
-         id="rect3895-6"
-         d="m 560.625,-374.47832 31.07143,0 0,158.0889 -31.07143,0 z"
-         style="fill:#f1f1f1;fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    </g>
-    <path
-       style="fill:url(#linearGradient4459-2-0);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4606)"
-       d="m 24.656105,719.15748 c 0,0 -2.51146,1.45476 -3.625,2.375 -1.43098,1.18257 -2.69186,2.56949 -3.875,4 -1.20089,1.45197 -2.30333,2.99584 -3.25,4.625 -0.78,1.34233 -1.43724,2.76067 -1.98483,4.21339 -0.55248,1.46569 -0.97789,2.98265 -1.30178,4.51516 -0.35747,1.69138 -0.51918,3.41942 -0.7024398,5.13842 -0.30142,2.82741 -0.65236,8.50532 -0.65236,8.50532 l -0.81363,21.11734 -1.23744,39.95153 -0.80752,60.80884 -0.048,26.75029 0.47157,23.60524 0.74925,24.64812 0.70211,32.99635 c 0,0 0.13877,8.85524 0.625,13.25004 0.18606,1.6817 0.4812,3.3544 0.875,4.99998 0.3650498,1.5254 0.8284198,3.0298 1.3749998,4.5 0.59374,1.597 1.20296,3.2057 2.0625,4.6767 0.84225,1.4415 1.95198,2.8876 3,4.0108 0.78621,0.8426 2.05637,1.8407 3.1875,2.625 1.91759,1.3295 6.0625,3.5 6.0625,3.5 0,0 -3.06151,-2.2583 -4.5,-3.5 -1.00388,-0.8666 -1.98182,-1.7698 -2.875,-2.75 -0.82364,-0.904 -1.7084,-2.1818 -2.40403,-3.375 -0.68315,-1.1719 -1.2158,-2.4287 -1.72097,-3.6875 -0.50789,-1.2657 -0.94162,-2.5627 -1.31!
 25,-3.875 -0.60324,-2.1346 -1.33768,-5.26208 -1.47991,-6.48778 -0.88881,-7.65972 -0.89509,-19.26224 -0.89509,-19.26224 l -0.7411198,-32.68934 -0.47855,-20.82322 -0.53033,-20.23744 0,-47.5 0.875,-39.75 1.3749998,-45.875 c 0,0 0.42205,-11.83872 0.77641,-17.75065 0.19001,-3.16993 0.39301,-6.34098 0.72359,-9.49935 0.13128,-1.25421 0.24531,-2.51492 0.5,-3.75 0.27973,-1.35652 0.6086,-2.7148 1.125,-4 0.79227,-1.97178 1.92455,-3.79223 3,-5.625 0.70192,-1.19621 1.45908,-2.36067 2.25,-3.5 0.76284,-1.09888 1.57113,-2.16661 2.40403,-3.21339 0.99519,-1.25074 3.09604,-3.66161 3.09604,-3.66161 z"
-       id="path4428-0-0"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cssssssccccccccsssssscassssscccccccsssssssc"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="fill:url(#linearGradient4780);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4938)"
-       d="m 531.39695,718.3228 c 0,0 2.52977,1.84707 3.72747,2.85432 0.8567,0.72047 1.69967,1.46316 2.4686,2.27665 0.82028,0.86781 1.56781,1.80494 2.27665,2.76593 0.77631,1.05246 1.49731,2.14796 2.15793,3.27664 0.59726,1.02043 1.15006,2.07001 1.6276,3.15165 0.51965,1.17703 0.94252,2.3961 1.341,3.61948 0.38939,1.19547 0.65665,2.4909 0.89068,3.72622 0.30163,1.59213 0.4722,3.12726 0.61635,4.74129 0.15687,1.75645 0.41557,5.27397 0.41557,5.27397 l 0.61034,18.68632 0.73433,23.83513 0.37499,22.69821 0.48166,34.43038 -0.6281,51.9964 -0.75,40 -1.25,36.25 c 0,0 -0.0177,13.86763 -0.75,20.75003 -0.2099,1.97278 -0.49138,3.95378 -1.04132,5.85998 -0.56417,1.9555 -1.31686,3.8737 -2.2981,5.6568 -0.73315,1.3323 -1.6128,2.6018 -2.65165,3.7123 -1.3484,1.4415 -2.94788,2.6429 -4.57843,3.7552 -1.60725,1.0965 -5.09296,2.8514 -5.09296,2.8514 0,0 2.87981,-2.1856 4.19131,-3.4246 1.3946,-1.3174 2.70177,-2.7357 3.88909,-4.2426 1.0772,-1.3672 2.1121,-2.7877 2.91681,-4.3311 0.66034,-1.2664 1.16813,-2.619!
  1.54367,-3.9971 0.45364,-1.6646 0.66561,-3.3907 0.84283,-5.10688 0.86022,-8.3306 1.06066,-25.10227 1.06066,-25.10227 l 1.5931,-43.00617 0.625,-44.125 0.125,-45.875 -1.28244,-65.69082 c 0,0 -0.39178,-18.71828 -0.96756,-28.05917 -0.11581,-1.87883 -0.21188,-3.76479 -0.5,-5.625 -0.29399,-1.89811 -0.71116,-3.78139 -1.25,-5.625 -0.39198,-1.34112 -0.86178,-2.66439 -1.4375,-3.9375 -0.64536,-1.42711 -1.41916,-2.79728 -2.25,-4.125 -0.9905,-1.58286 -2.10264,-3.08937 -3.25,-4.5625 -1.43349,-1.8405 -4.53258,-5.33259 -4.53258,-5.33259 z"
-       id="path4622-7"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cssssssssccccccccssssscssssscccccssssssc"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <g
-       id="g5329"
-       transform="matrix(1.053466,0,0,1.053466,285.11756,592.54851)">
-      <path
-         inkscape:connector-curvature="0"
-         id="rect4416-2-22"
-         d="m 244.11896,128.78991 0,0.6584 c 0,2.77781 -2.31975,5.01263 -5.20073,5.01263 l -15.78196,0 0,2.45653 16.00958,0 c 4.12814,0 7.4501,-3.20483 7.4501,-7.18515 l 0,-0.94241 -2.47699,0 z"
-         style="opacity:1;fill:url(#linearGradient5066-1);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         id="rect4416-2-4-9"
-         d="m 244.11896,128.78991 0,-0.6584 c 0,-2.77781 -2.31975,-5.01263 -5.20073,-5.01263 l -15.78196,0 0,-2.45653 16.00958,0 c 4.12814,0 7.4501,3.20483 7.4501,7.18515 l 0,0.94241 -2.47699,0 z"
-         style="opacity:1;fill:url(#linearGradient5046-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         inkscape:connector-curvature="0" />
-      <path
-         id="rect4416-2-2-0"
-         d="m 202.15359,128.78991 0,0.6584 c 0,2.77781 2.31973,5.01263 5.20071,5.01263 l 15.78197,0 0,2.45653 -16.00959,0 c -4.12814,0 -7.45009,-3.20483 -7.45009,-7.18515 l 0,-0.94241 2.477,0 z"
-         style="opacity:1;fill:url(#linearGradient5056-9);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         inkscape:connector-curvature="0" />
-      <path
-         id="rect4416-2-9-5"
-         d="m 202.15359,128.78991 0,-0.6584 c 0,-2.77781 2.31973,-5.01263 5.20071,-5.01263 l 15.78197,0 0,-2.45653 -16.00959,0 c -4.12814,0 -7.45009,3.20483 -7.45009,7.18515 l 0,0.94241 2.477,0 z"
-         style="opacity:1;fill:url(#linearGradient5036-3);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         inkscape:connector-curvature="0" />
-      <rect
-         ry="5.6971521"
-         y="122.34399"
-         x="201.24939"
-         height="12.891806"
-         width="43.773769"
-         id="rect4416-1-7"
-         style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.89999998;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    </g>
-    <g
-       id="g4585"
-       style="fill:url(#linearGradient4601);fill-opacity:1"
-       transform="matrix(1.053466,0,0,1.053466,-303.05392,561.09543)">
-      <path
-         inkscape:connector-curvature="0"
-         id="rect5418-6"
-         d="m 783.30938,168.89955 0,1.67969 29.95703,0 c 9.99176,0 17.50977,6.62734 17.50977,15.73047 0,0 2.28711,63.3762 2.28711,94.72852 l 1.70507,0 c 0,-31.82888 -2.36523,-95.45704 -2.36523,-95.45703 0,-9.24151 -8.32021,-16.68165 -18.6543,-16.68165 l -30.43945,0 z"
-         style="opacity:1;fill:url(#linearGradient4848);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         id="rect5418-6-4"
-         d="m 783.30938,168.89955 0,1.67969 -29.95703,0 c -9.99176,0 -17.50977,6.62734 -17.50977,15.73047 0,0 -2.28711,63.3762 -2.28711,94.72852 l -1.70507,0 c 0,-31.82888 2.36523,-95.45704 2.36523,-95.45703 0,-9.24151 8.32021,-16.68165 18.6543,-16.68165 l 30.43945,0 z"
-         style="opacity:1;fill:url(#linearGradient4850);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         inkscape:connector-curvature="0" />
-      <path
-         id="rect5418-6-2"
-         d="m 783.30938,393.17691 0,-1.67969 29.95703,0 c 9.99176,0 17.50977,-6.62734 17.50977,-15.73047 0,0 2.28711,-63.3762 2.28711,-94.72852 l 1.70507,0 c 0,31.82888 -2.36523,95.45704 -2.36523,95.45703 0,9.24151 -8.32021,16.68165 -18.6543,16.68165 l -30.43945,0 z"
-         style="opacity:1;fill:url(#linearGradient4852);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         inkscape:connector-curvature="0" />
-      <path
-         id="rect5418-6-5"
-         d="m 783.30938,393.17691 0,-1.67969 -29.95703,0 c -9.99176,0 -17.50977,-6.62734 -17.50977,-15.73047 0,0 -2.28711,-63.3762 -2.28711,-94.72852 l -1.70507,0 c 0,31.82888 2.36523,95.45704 2.36523,95.45703 0,9.24151 8.32021,16.68165 18.6543,16.68165 l 30.43945,0 z"
-         style="opacity:1;fill:url(#linearGradient4854);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         inkscape:connector-curvature="0" />
-    </g>
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:1;fill:url(#linearGradient4593-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 260.56125,879.1396 0,143.3454 187.33587,0 c 6.36527,0 11.48937,-3.832 11.48937,-8.5923 l 0,-134.7531 -198.82524,0 z"
-       id="rect4473-7" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:1;fill:url(#linearGradient4577-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 260.56125,879.14042 0,-143.34544 -187.335876,0 c -6.365262,0 -11.489363,3.83199 -11.489363,8.59233 l 0,134.75311 198.825239,0 z"
-       id="rect4473-2-1" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:1;fill:url(#linearGradient4585-8);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 260.56125,879.13979 0,143.34541 -187.335876,0 c -6.365262,0 -11.489363,-3.832 -11.489363,-8.5923 l 0,-134.75311 198.825239,0 z"
-       id="rect4473-9-4" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:1;fill:url(#linearGradient4569-4);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 260.56125,879.13979 0,-143.34544 187.33587,0 c 6.36527,0 11.48937,3.83199 11.48937,8.59233 l 0,134.75311 -198.82524,0 z"
-       id="rect4473-8-7" />
-    <path
-       style="opacity:1;fill:url(#linearGradient4898);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 260.56021,879.1407 0,137.5616 181.33812,0 c 1.80095,0 3.25093,-1.453 3.25093,-3.2571 l 0,-134.3045 -184.58905,0 z"
-       id="rect4820"
-       inkscape:connector-curvature="0" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:1;fill:url(#linearGradient4898-4);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 260.56021,879.1407 0,137.5616 -181.338118,0 c -1.800963,0 -3.250932,-1.453 -3.250932,-3.2571 l 0,-134.3045 184.58905,0 z"
-       id="rect4820-1" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:1;fill:url(#linearGradient4898-48);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 260.56125,879.14042 0,-137.56167 181.33812,0 c 1.80097,0 3.25094,1.45308 3.25094,3.25711 l 0,134.30456 -184.58906,0 z"
-       id="rect4820-7" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:1;fill:url(#linearGradient4898-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 260.56021,879.1407 0,-137.56167 -181.338118,0 c -1.800963,0 -3.250932,1.45308 -3.250932,3.25711 l 0,134.30456 184.58905,0 z"
-       id="rect4820-0" />
-    <rect
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect4820-2"
-       width="365.82739"
-       height="271.67816"
-       x="77.646507"
-       y="743.30157"
-       rx="2.0304329"
-       ry="2.0304329" />
-    <rect
-       style="opacity:1;fill:#1a1b27;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect5016"
-       width="357.18637"
-       height="268.72736"
-       x="81.968071"
-       y="744.77673"
-       rx="0"
-       ry="0" />
-    <g
-       transform="matrix(0.04927321,0,0,0.04926563,38.83186,709.12911)"
-       style="display:inline;fill-rule:evenodd"
-       id="g1619-8">
-      <defs
-         id="defs1621-8" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         id="path1630-2"
-         d="m 875.45,3825.1 7249.1,0 0,-2244.3 -7249.1,0 0,2244.3 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#ffffff"
-         id="path1632-4"
-         d="m 1333.89,3695.16 c 0,-31.54 -25.56,-57.1 -57.09,-57.1 -31.53,0 -57.09,25.56 -57.09,57.1 0,31.52 25.56,57.09 57.09,57.09 31.53,0 57.09,-25.57 57.09,-57.09 z m 179.32,-47.8 c 22.95,-15.62 53.43,-11.19 71.41,10.35 18,21.54 18,53.62 0,75.18 -17.98,21.54 -48.46,25.95 -71.41,10.34 l 0,47.31 -30.24,0 0,-149.7 30.24,0 0,6.52 z m 345.25,47.79 c 0,-31.54 -25.56,-57.09 -57.09,-57.09 -31.52,0 -57.08,25.55 -57.08,57.09 0,31.53 25.56,57.09 57.08,57.09 16.25,0 30.93,-6.79 41.32,-17.69 l -21.85,-20.84 21.85,20.84 -21.85,-20.84 c -5.59,5.87 -13.55,8.9 -21.66,8.24 -8.09,-0.69 -15.45,-4.98 -20.01,-11.69 l 77.28,0 c 1.32,-4.82 2.01,-9.88 2.01,-15.11 z m 1896.14,0 c 0,-31.54 -25.56,-57.09 -57.1,-57.09 -31.51,0 -57.08,25.55 -57.08,57.09 0,31.53 25.57,57.09 57.08,57.09 16.26,0 30.93,-6.79 41.33,-17.69 l -21.84,-20.84 21.84,20.84 -21.84,-20.84 c -5.61,5.87 -13.57,8.9 -21.67,8.24 -8.1,-0.69 -15.46,-4.98 -20.02,-11.69 l 77.29,0 c 1.32,-4.82 2.01,-9.88 2.01,-15.11 z m 1128.28,0 c 0,-31.5!
 4 -25.56,-57.09 -57.08,-57.09 -31.53,0 -57.08,25.55 -57.08,57.09 0,31.53 25.55,57.09 57.08,57.09 16.25,0 30.92,-6.79 41.32,-17.69 l -21.85,-20.84 21.85,20.84 -21.85,-20.84 c -5.61,5.87 -13.56,8.9 -21.66,8.24 -8.08,-0.69 -15.44,-4.98 -20.01,-11.69 l 77.28,0 c 1.32,-4.82 2,-9.88 2,-15.11 z m 2883.6,0 c 0,-31.54 -25.56,-57.09 -57.08,-57.09 -31.53,0 -57.09,25.55 -57.09,57.09 0,31.53 25.56,57.09 57.09,57.09 16.24,0 30.92,-6.79 41.31,-17.69 l -21.85,-20.84 21.85,20.84 -21.85,-20.84 c -5.59,5.87 -13.55,8.9 -21.66,8.24 -8.08,-0.69 -15.44,-4.98 -20.01,-11.69 l 77.28,0 c 1.32,-4.82 2.01,-9.88 2.01,-15.11 z m -5660.49,-8.49 c 0,-18.27 -8.91,-35.01 -23.06,-43.31 -14.14,-8.29 -31.13,-6.74 -43.96,4.01 l 0,-6.52 -30.24,0 0,108.93 30.24,0 0,-63.11 c 0,-10.16 8.22,-18.38 18.38,-18.38 10.16,0 18.39,8.22 18.39,18.38 l 0,63.11 30.25,0 0,-63.11 z m 437.24,-14.09 c 0,-14.47 -10.9,-27.39 -27.31,-32.39 -16.4,-4.98 -34.82,-0.99 -46.13,10.03 -11.32,11.02 -13.14,26.71 -4.56,39.3 4.34,6.08 10.52,10.54!
  17.62,12.76 8.04,2.71 16.25,4.9 24.57,6.57 6.82,1.33 10.41,4.!
 73 8.42,7.96 -1.98,3.22 -8.96,5.3 -16.32,4.84 -7.35,-0.46 -12.83,-3.3 -12.83,-6.64 l 0,-3.23 -30.21,0 0,3.23 c 0,16.03 12.23,30.29 30.43,35.5 18.2,5.21 38.37,0.22 50.18,-12.45 11.83,-12.64 12.7,-30.17 2.18,-43.59 -6.1,-7.12 -14.48,-11.87 -23.72,-13.42 -7.3,-1.36 -14.52,-3.13 -21.63,-5.27 -3.94,-1.31 -5,-3.46 -2.54,-5.2 2.46,-1.75 7.79,-2.65 12.91,-2.16 5.12,0.46 8.73,2.18 8.73,4.16 l 0,1.5 30.21,0 0,-1.5 z m 263.01,22.59 c 0,-31.54 -25.56,-57.1 -57.09,-57.1 -31.53,0 -57.09,25.56 -57.09,57.1 0,31.52 25.56,57.09 57.09,57.09 31.53,0 57.09,-25.57 57.09,-57.09 z m 149.73,8.78 0,-63.1 30.23,0 0,63.1 c 0,10.15 8.25,18.39 18.4,18.39 10.15,0 18.38,-8.24 18.38,-18.39 l 0,-63.1 30.24,0 0,108.93 -30.24,0 0,-6.54 c -12.83,10.76 -29.81,12.31 -43.96,4.01 -14.14,-8.28 -23.05,-25.01 -23.05,-43.3 z m 279.74,-56.58 0,-6.52 -30.24,0 0,108.93 30.24,0 0,-54.61 c 0,-7.14 2.84,-13.97 7.87,-19.02 5.05,-5.03 11.89,-7.86 19,-7.86 l 0,-30.12 c -9.57,0.56 -18.83,3.74 -26.87,9.2 z m 266.04,8.38 c -10.39!
 ,-10.88 -25.07,-17.68 -41.32,-17.68 -31.51,0 -57.07,25.54 -57.07,57.08 0,0 0,0 0,0.01 0,31.52 25.56,57.08 57.07,57.08 16.25,0 30.93,-6.8 41.32,-17.7 l -21.86,-20.83 c -4.88,5.11 -11.79,8.32 -19.43,8.32 -14.83,0 -26.87,-12.04 -26.88,-26.87 0,-0.01 0,-0.01 0,-0.01 0.01,-14.84 12.05,-26.86 26.88,-26.86 7.64,0 14.55,3.19 19.43,8.3 l 21.86,-20.84 z m 3499.75,39.33 -15.58,-54.23 -26.99,0 -15.58,54.23 -15.58,-54.23 -31.45,0 31.3,108.93 31.44,0 13.36,-46.5 13.37,46.5 31.43,0 31.31,-108.93 -31.44,0 -15.59,54.23 m -767.53,-89.7 -30.23,0 0,30.21 30.23,0 0,-30.21 m 0,35.47 -30.23,0 0,108.93 30.23,0 0,-108.93 m -626.55,54.51 33.66,54.42 -35.61,0 -15.84,-25.64 -15.87,25.64 -35.59,0 33.65,-54.42 -33.71,-54.51 35.6,0 15.92,25.73 15.91,-25.73 35.6,0 -33.72,54.51 m -1012.87,-54.51 -27.71,44.82 0,-80.29 -30.25,0 0,144.4 30.25,0 0,-45.43 34.06,45.43 37.76,0 -41.57,-55.46 33.07,-53.47 -35.61,0 m -460.66,-35.47 -30.24,0 0,30.21 30.24,0 0,-30.21 m 0,149.71 0,-114.24 -30.24,0 0,114.27 c 0,2.89 -2.!
 34,5.22 -5.22,5.22 l -8.56,0 0,30.21 8.56,0 c 19.59,0 35.46,-1!
 5.89 35.4!
 6,-35.46 m 1273.22,-59.92 c 0,-31.54 -25.56,-57.1 -57.09,-57.1 -31.52,0 -57.08,25.56 -57.08,57.1 0,31.52 25.56,57.09 57.08,57.09 31.53,0 57.09,-25.57 57.09,-57.09 z m -1052.95,48.07 0,6.54 30.23,0 0,-108.93 -30.23,0 0,63.1 c 0,10.15 -8.24,18.39 -18.39,18.39 -10.16,0 -18.39,-8.24 -18.39,-18.39 l 0,-63.1 -30.24,0 0,63.1 c 0,18.29 8.89,35.02 23.04,43.3 14.16,8.3 31.14,6.75 43.98,-4.01 z m 707.46,-95.87 0,-41.99 -30.23,0 0,144.4 30.23,0 0,-6.54 c 22.95,15.61 53.43,11.2 71.42,-10.34 17.99,-21.56 17.99,-53.63 0,-75.18 -17.99,-21.54 -48.47,-25.97 -71.42,-10.35 z m 992.23,-11.78 -25.1,0 c -0.66,-0.06 -1.32,0.18 -1.81,0.67 -0.48,0.47 -0.72,1.13 -0.66,1.81 l 0,2.78 0,0 13.79,0 0,30.22 -13.79,0 0,78.71 -30.24,0 0,-78.71 -13.79,0 0,-30.22 13.79,0 c 0,-19.59 15.88,-35.47 35.46,-35.47 l 22.35,0 0,30.21 z m 390.01,2.58 0,30.12 c -7.13,0 -13.97,2.83 -19.01,7.86 -5.05,5.05 -7.87,11.88 -7.87,19.02 l 0,54.61 -30.25,0 0,-108.93 30.25,0 0,6.52 c 8.03,-5.46 17.29,-8.64 26.88,-9.2 z m 177.25,9.2 !
 0,-6.52 -30.24,0 0,108.93 30.24,0 0,-63.11 c 0,-10.16 8.24,-18.38 18.4,-18.38 10.15,0 18.38,8.22 18.38,18.38 l 0,63.11 30.24,0 0,-63.11 c 0,-10.16 8.24,-18.38 18.4,-18.38 10.15,0 18.39,8.22 18.39,18.38 l 0,63.11 30.23,0 -0.01,-63.11 c 0,-19.18 -11.27,-36.57 -28.78,-44.38 -17.51,-7.83 -38.01,-4.63 -52.28,8.17 -14.83,-15.27 -36.89,-16.56 -52.97,-3.09 z m 646.89,0 0,-6.52 30.26,0 0,108.93 -30.26,0 0,-6.54 c -22.94,15.61 -53.41,11.2 -71.39,-10.34 -17.99,-21.56 -17.99,-53.63 0,-75.18 17.98,-21.54 48.45,-25.97 71.39,-10.35 z m 243.81,-9.2 0,30.12 c -7.12,0 -13.96,2.83 -19.01,7.86 -5.03,5.05 -7.87,11.88 -7.87,19.02 l 0,54.61 -30.23,0 0,-108.93 30.23,0 0,6.52 c 8.03,-5.46 17.31,-8.64 26.88,-9.2 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         id="path1634-5"
-         d="m 1303.67,3695.16 c 0,-14.85 -12.02,-26.88 -26.87,-26.88 -14.84,0 -26.89,12.03 -26.89,26.88 0,14.84 12.05,26.88 26.89,26.88 14.85,0 26.87,-12.04 26.87,-26.88 z m 3499.91,-15.11 44.46,0 c -5,-7.37 -13.32,-11.77 -22.23,-11.77 -8.9,0 -17.23,4.4 -22.23,11.77 m -1128.28,0 44.47,0 c -5.01,-7.37 -13.33,-11.77 -22.23,-11.77 -8.91,0 -17.22,4.4 -22.24,11.77 m -899.27,15.11 c 0,-14.85 -12.03,-26.88 -26.88,-26.88 -14.84,0 -26.87,12.03 -26.87,26.88 0,14.84 12.03,26.88 26.87,26.88 14.85,0 26.88,-12.04 26.88,-26.88 z m 2600.88,0 c 0,-14.85 -12.04,-26.88 -26.89,-26.88 -14.85,0 -26.87,12.03 -26.87,26.88 0,14.84 12.02,26.88 26.87,26.88 14.85,0 26.89,-12.04 26.89,-26.88 z m -261.53,0 c 0,-14.85 -12.03,-26.88 -26.88,-26.88 -14.84,0 -26.88,12.03 -26.88,26.88 0,14.84 12.04,26.88 26.88,26.88 14.85,0 26.88,-12.04 26.88,-26.88 z m -3548.42,0.29 c 0,-14.85 -12.02,-26.88 -26.88,-26.88 -14.83,0 -26.87,12.03 -26.87,26.88 0,14.84 12.04,26.88 26.87,26.88 14.86,0 26.88,-12.04 26.88,-26.88 z m !
 212.21,-15.4 44.47,0 c -5.01,-7.37 -13.34,-11.77 -22.24,-11.77 -8.9,0 -17.23,4.4 -22.23,11.77 m 5908,0 44.47,0 c -5,-7.37 -13.33,-11.77 -22.23,-11.77 -8.91,0 -17.23,4.4 -22.24,11.77 M 7268,3695.16 c 0,-14.85 -12.02,-26.88 -26.86,-26.88 -14.85,0 -26.88,12.03 -26.88,26.88 0,14.84 12.03,26.88 26.88,26.88 14.84,0 26.86,-12.04 26.86,-26.88 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#ffc000"
-         id="path1636-5"
-         d="m 918.37,1633.25 7156.1,0 0,1906.25 -7156.1,0 0,-1906.25" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:url(#linearGradient5792-1)"
-         id="path1638-1"
-         d="m 6542.59,3424.95 0,0 m 1512.67,-313.2 19.21,0 0,10.92 -8.28,0 0,43.65 -10.93,0 0,-54.57 m -54.55,0 32.74,0 0,10.92 -32.74,0 0,-10.92 m 0,43.64 32.74,0 0,10.93 -32.74,0 0,-10.93 m -76.4,-43.64 0,0 0,0 0,0 0,0 m 21.83,10.92 10.91,0 0,43.65 -10.91,0 0,-43.65 m 10.91,-10.92 10.92,0 0,10.92 -10.92,0 0,-10.92 m 10.92,10.92 10.92,0 0,43.65 -10.92,0 0,-43.65 m -43.66,-10.92 21.83,0 0,10.92 -10.92,0 0,43.65 -10.91,0 0,-54.57 m -21.83,-10.92 10.92,0 0,21.84 -10.92,0 0,-21.84 m 0,32.74 10.92,0 0,21.82 -10.92,0 0,-21.82 m -87.3,-21.82 10.92,0 0,21.82 -10.92,0 0,-21.82 m -78.14,0 10.91,0 0,10.92 -10.91,0 0,-10.92 m -32.74,21.82 10.92,0 0,21.82 -10.92,0 0,-21.82 m -42,21.82 42,0 0,10.93 -42,0 0,-10.93 m -43.65,-32.72 10.91,0 0,10.9 -10.91,0 0,-10.9 m -10.91,-32.75 32.74,0 0,10.91 -32.74,0 0,-10.91 m 0,65.47 32.74,0 0,10.93 -32.74,0 0,-10.93 m -54.57,-65.47 21.83,0 0,10.91 -21.83,0 0,-10.91 m -10.91,10.91 10.91,0 0,10.92 -10.91,0 0,-10.92 m 32.74,32.74 10.91,0 0,21.82 -10.91,!
 0 0,-21.82 m 294.75,-140.69 43.65,0 0,10.93 -43.65,0 0,-10.93 m -10.91,10.93 10.91,0 0,10.9 -10.91,0 0,-10.9 m 10.91,10.9 32.73,0 0,10.92 -32.73,0 0,-10.92 m 32.73,10.92 10.92,0 0,10.9 -10.92,0 0,-10.9 m -43.64,10.9 43.64,0 0,10.92 -43.64,0 0,-10.92 m 65.47,-43.65 10.91,0 0,43.65 -10.91,0 0,-43.65 m 10.91,65.48 32.75,0 0,10.92 -32.75,0 0,-10.92 m 54.57,-21.83 43.66,0 0,10.92 -43.66,0 0,-10.92 m 43.66,-10.9 10.91,0 0,10.9 -10.91,0 0,-10.9 m -32.74,-10.92 32.74,0 0,10.92 -32.74,0 0,-10.92 m -10.92,-10.9 10.92,0 0,10.9 -10.92,0 0,-10.9 m 10.92,-10.93 43.65,0 0,10.93 -43.65,0 0,-10.93 m -130.96,237.73 43.65,0 0,10.91 -43.65,0 0,-10.91 m -10.91,10.91 10.91,0 0,10.91 -10.91,0 0,-10.91 m 10.91,10.91 32.73,0 0,10.92 -32.73,0 0,-10.92 m 32.73,10.92 10.92,0 0,10.93 -10.92,0 0,-10.93 m -43.64,10.93 43.64,0 0,10.9 -43.64,0 0,-10.9 m -262.32,0 43.65,0 0,10.9 -43.65,0 0,-10.9 m 43.65,-10.93 10.9,0 0,10.93 -10.9,0 0,-10.93 m -32.75,-10.92 32.75,0 0,10.92 -32.75,0 0,-10.92 m -10.9,-10.91 1!
 0.9,0 0,10.91 -10.9,0 0,-10.91 m 10.9,-10.91 43.65,0 0,10.91 -!
 43.65,0 0,-10.91 m -328.02,118.87 43.66,0 0,10.91 -43.66,0 0,-10.91 m -10.9,10.91 10.9,0 0,10.91 -10.9,0 0,-10.91 m 10.9,10.91 32.74,0 0,10.92 -32.74,0 0,-10.92 m 32.74,10.92 10.92,0 0,10.91 -10.92,0 0,-10.91 m -43.64,10.91 43.64,0 0,10.91 -43.64,0 0,-10.91 m -724.99,0 43.64,0 0,10.91 -43.64,0 0,-10.91 m 43.64,-10.91 10.91,0 0,10.91 -10.91,0 0,-10.91 m -32.74,-10.92 32.74,0 0,10.92 -32.74,0 0,-10.92 m -10.9,-10.91 10.9,0 0,10.91 -10.9,0 0,-10.91 m 10.9,-10.91 43.65,0 0,10.91 -43.65,0 0,-10.91 m 1173.46,0 21.83,0 0,10.91 -10.91,0 0,43.65 -10.92,0 0,-54.56 m 43.66,10.91 10.91,0 0,43.65 -10.91,0 0,-43.65 m -10.92,-10.91 10.92,0 0,10.91 -10.92,0 0,-10.91 m -10.91,10.91 10.91,0 0,43.65 -10.91,0 0,-43.65 m -21.83,-10.91 0,0 0,0 0,0 0,0 m -1051.63,0 0,0 0,0 0,0 0,0 m 21.83,10.91 10.92,0 0,43.65 -10.92,0 0,-43.65 m 10.92,-10.91 10.9,0 0,10.91 -10.9,0 0,-10.91 m 10.9,10.91 10.92,0 0,43.65 -10.92,0 0,-43.65 m -43.65,-10.91 21.83,0 0,10.91 -10.91,0 0,43.65 -10.92,0 0,-54.56 m 1291.73,!
 -312.95 0,-43.65 10.92,0 0,65.48 -10.92,0 0,-10.91 -32.75,0 0,-10.92 32.75,0 m -853.76,354.96 0,-43.67 10.93,0 0,65.49 -10.93,0 0,-10.92 -32.73,0 0,-10.9 32.73,0 m -32.73,21.82 32.73,0 0,10.9 -32.73,0 0,-10.9 m -10.91,-65.49 10.91,0 0,43.67 -10.91,0 0,-43.67 m 919.22,-225.15 10.92,0 0,10.9 32.74,0 0,-10.9 10.91,0 0,21.82 -43.65,0 0,10.9 -10.92,0 0,-32.72 m -196.44,118.85 10.92,0 0,10.91 32.74,0 0,-10.91 10.9,0 0,21.83 -43.64,0 0,10.93 -10.92,0 0,-32.76 m 10.92,32.76 32.74,0 0,10.9 -32.74,0 0,-10.9 m 0,-43.67 32.74,0 0,10.91 -32.74,0 0,-10.91 m -262.33,0 32.74,0 0,10.91 -32.74,0 0,-10.91 m 0,43.67 32.74,0 0,10.9 -32.74,0 0,-10.9 m -10.91,-32.76 10.91,0 0,10.91 32.74,0 0,-10.91 10.91,0 0,21.83 -43.65,0 0,10.93 -10.91,0 0,-32.76 m 393.28,118.87 10.91,0 0,10.91 32.75,0 0,-10.91 10.92,0 0,21.83 -43.67,0 0,10.91 -10.91,0 0,-32.74 m 10.91,32.74 32.75,0 0,10.91 -32.75,0 0,-10.91 m 0,-43.65 32.75,0 0,10.91 -32.75,0 0,-10.91 m 130.97,0 8.28,0 0,10.91 -8.28,0 0,-10.91 m 0,43.65 8.28,0!
  0,10.91 -8.28,0 0,-10.91 m -10.93,-32.74 10.93,0 0,10.91 8.28!
 ,0 0,0 0,!
 0 0,10.92 -8.28,0 0,10.91 -10.93,0 0,-32.74 m -1564.68,-10.91 32.74,0 0,10.91 -32.74,0 0,-10.91 m 0,43.65 32.74,0 0,10.91 -32.74,0 0,-10.91 m -10.92,-32.74 10.92,0 0,10.91 32.74,0 0,-10.91 10.91,0 0,21.83 -43.65,0 0,10.91 -10.92,0 0,-32.74 m 140.22,21.83 21.82,0 0,20.17 -21.82,0 0,-20.17 m 1315.34,-151.61 32.75,0 0,10.91 -32.75,0 0,-10.91 m -10.91,10.91 10.91,0 0,32.76 -10.91,0 0,-32.76 m 10.91,32.76 32.75,0 0,10.9 -32.75,0 0,-10.9 m 32.75,-10.93 10.92,0 0,10.93 -10.92,0 0,-10.93 m 32.74,-32.74 32.74,0 0,10.91 -32.74,0 0,-10.91 m -10.92,32.74 10.92,0 0,10.93 -10.92,0 0,-10.93 m -876.5,0 10.91,0 0,10.93 -10.91,0 0,-10.93 m -32.74,10.93 32.74,0 0,10.9 -32.74,0 0,-10.9 m -10.92,-32.76 10.92,0 0,32.76 -10.92,0 0,-32.76 m 10.92,-10.91 32.74,0 0,10.91 -32.74,0 0,-10.91 m 603.67,-21.83 10.92,0 0,10.92 -10.92,0 0,-10.92 m 65.48,43.65 10.91,0 0,10.92 -10.91,0 0,-10.92 m -327.81,-21.82 21.83,0 0,10.91 -21.83,0 0,-10.91 m 21.83,10.91 10.92,0 0,43.66 -10.92,0 0,-43.66 m -297.69,-10.91 !
 31.09,0 0,10.91 -31.09,0 0,-10.91 m -10.91,10.91 10.91,0 0,32.76 -10.91,0 0,-32.76 m 10.91,32.76 31.09,0 0,10.9 -31.09,0 0,-10.9 m 31.09,-32.76 10.91,0 0,32.76 -10.91,0 0,-32.76 m 526.25,118.87 10.91,0 0,32.74 -10.91,0 0,-32.74 m -31.09,32.74 31.09,0 0,10.91 -31.09,0 0,-10.91 m -10.91,-32.74 10.91,0 0,32.74 -10.91,0 0,-32.74 m 10.91,-10.91 31.09,0 0,10.91 -31.09,0 0,-10.91 m -272.22,-118.87 10.92,0 0,10.91 10.91,0 0,10.91 -10.91,0 0,32.75 -10.92,0 0,-54.57 m 655.2,0 10.93,0 0,10.91 8.28,0 0,10.91 -8.28,0 0,32.75 -10.93,0 0,-54.57 m -535.15,54.57 -10.9,0 0,-10.9 -10.92,0 0,-10.93 10.92,0 0,-32.74 10.9,0 0,54.57 m -43.65,-10.9 -10.91,0 0,-43.67 10.91,0 0,43.67 m 21.83,10.9 -21.83,0 0,-10.9 21.83,0 0,10.9 m -294.66,-54.57 10.92,0 0,10.91 10.91,0 0,10.91 -10.91,0 0,32.75 -10.92,0 0,-54.57 m 43.65,10.91 10.91,0 0,43.66 -10.91,0 0,-43.66 m -21.82,-10.91 21.82,0 0,10.91 -21.82,0 0,-10.91 m 326.77,118.87 21.82,0 0,10.91 -21.82,0 0,-10.91 m 21.82,10.91 10.92,0 0,43.65 -10.92,0 0,-43!
 .65 m -43.65,-10.91 10.93,0 0,10.91 10.9,0 0,10.91 -10.9,0 0,3!
 2.74 -10.!
 93,0 0,-54.56 m 361.17,54.56 -21.82,0 0,-10.91 21.82,0 0,10.91 m -21.82,-10.91 -10.91,0 0,-43.65 10.91,0 0,43.65 m 43.65,10.91 -10.92,0 0,-10.91 -10.91,0 0,-10.91 10.91,0 0,-32.74 10.92,0 0,54.56 m 130.96,0 -10.91,0 0,-10.91 -10.91,0 0,-10.91 10.91,0 0,-32.74 10.91,0 0,54.56 m -43.65,-10.91 -10.92,0 0,-43.65 10.92,0 0,43.65 m 21.83,10.91 -21.83,0 0,-10.91 21.83,0 0,10.91 m 10.91,-162.52 10.91,0 0,43.66 -43.65,0 0,-10.9 32.74,0 0,-10.93 -32.74,0 0,-10.92 32.74,0 0,-10.91 m -524.87,118.87 10.91,0 0,43.65 -43.65,0 0,-10.91 32.74,0 0,-10.91 -32.74,0 0,-10.92 32.74,0 0,-10.91 m -43.66,21.83 10.92,0 0,10.91 -10.92,0 0,-10.91 m 10.92,-32.74 32.74,0 0,10.91 -32.74,0 0,-10.91 m -459.84,0 32.74,0 0,10.91 -32.74,0 0,-10.91 m -10.92,32.74 10.92,0 0,10.91 -10.92,0 0,-10.91 m 43.66,-21.83 10.91,0 0,43.65 -43.65,0 0,-10.91 32.74,0 0,-10.91 -32.74,0 0,-10.92 32.74,0 0,-10.91 m 853.74,-270.47 -43.64,0 0,76.4 43.64,0 0,-10.93 -32.73,0 0,-21.82 32.73,0 0,-10.9 -32.73,0 0,-21.84 32.73,0 0,-10.!
 91 m -109.13,0 0,76.4 10.92,0 0,-54.57 10.91,0 0,-10.92 -10.91,0 0,-10.91 -10.92,0 m 54.56,0 0,76.4 -10.9,0 0,-54.57 -10.91,0 0,-10.92 10.91,0 0,-10.91 10.9,0 m -89.04,0 10.91,0 0,43.65 10.92,0 0,10.92 -10.92,0 0,21.83 -10.91,0 0,-21.83 -32.74,0 0,-21.82 10.91,0 0,10.9 21.83,0 0,-21.82 -10.92,0 0,-10.92 10.92,0 0,-10.91 m -96.57,0 0,10.91 31.09,0 0,10.92 10.91,0 0,-10.92 10.92,0 0,-10.91 -52.92,0 m 31.09,21.83 -10.91,0 0,10.92 -10.91,0 0,10.9 32.73,0 0,-10.9 -10.91,0 0,-10.92 m -96.56,-10.92 0,54.56 10.91,0 0,-10.9 10.91,0 0,-10.92 -10.91,0 0,-32.74 -10.91,0 m 43.65,0 0,10.92 -10.92,0 0,10.92 10.92,0 0,32.72 10.91,0 0,-54.56 -10.91,0 m -109.13,10.92 0,43.64 10.91,0 0,-21.82 32.74,0 0,-10.9 -32.74,0 0,-10.92 -10.91,0 m 10.91,43.64 32.74,0 0,10.93 -32.74,0 0,-10.93 m -702.32,194.09 -10.92,0 0,10.91 -10.9,0 0,10.91 32.73,0 0,-10.91 -10.91,0 0,-10.91 m -31.08,-21.83 0,10.91 31.08,0 0,10.92 10.91,0 0,-10.92 10.92,0 0,-10.91 -52.91,0 m 0,65.48 41.99,0 0,10.91 -41.99,0 0,-10.91 m !
 41.99,-21.83 10.92,0 0,21.83 -10.92,0 0,-21.83 m 877.02,-140.6!
 9 0,10.91!
  32.74,0 0,10.91 10.92,0 0,-10.91 10.91,0 0,-10.91 -54.57,0 m 10.92,32.74 10.91,0 0,10.93 32.74,0 0,10.9 -54.57,0 0,-10.9 10.92,0 0,-10.93 m -65.48,-32.74 21.83,0 0,43.67 10.91,0 0,10.9 -32.74,0 0,-10.9 10.91,0 0,-32.76 -10.91,0 0,-10.91 m -327.8,0 21.82,0 0,43.67 10.92,0 0,10.9 -32.74,0 0,-10.9 10.9,0 0,-32.76 -10.9,0 0,-10.91 m 10.9,-21.83 10.92,0 0,10.92 -10.92,0 0,-10.92 m -131.58,118.87 10.92,0 0,10.91 -10.92,0 0,-10.91 m -10.91,21.83 21.83,0 0,43.65 10.92,0 0,10.91 -32.75,0 0,-10.91 10.91,0 0,-32.74 -10.91,0 0,-10.91 m 98.84,-86.13 10.93,0 0,10.93 -10.93,0 0,-10.93 m -10.9,10.93 10.9,0 0,10.9 -10.9,0 0,-10.9 m -10.92,-65.5 10.92,0 0,21.83 10.9,0 0,10.91 -10.9,0 0,32.76 -10.92,0 0,-32.76 -10.91,0 0,-10.91 10.91,0 0,-21.83 m 64.86,118.87 10.9,0 0,21.83 10.93,0 0,10.91 -10.93,0 0,32.74 -10.9,0 0,-32.74 -10.93,0 0,-10.91 10.93,0 0,-21.83 m 10.9,65.48 10.93,0 0,10.91 -10.93,0 0,-10.91 m 10.93,-10.91 10.9,0 0,10.91 -10.9,0 0,-10.91 m 21.82,-32.74 10.91,0 0,10.91 10.91,0 0,1!
 0.91 -10.91,0 0,32.74 -10.91,0 0,-54.56 m 43.65,10.91 10.92,0 0,12.57 -10.92,0 0,-12.57 m -21.83,-10.91 21.83,0 0,10.91 -21.83,0 0,-10.91 m -274.31,-21.83 20.17,0 0,65.48 10.92,0 0,9.26 -31.09,0 0,-9.26 10.9,0 0,-54.57 -10.9,0 0,-10.91 m -194.79,0 20.17,0 0,65.48 10.92,0 0,9.26 -31.09,0 0,-9.26 10.91,0 0,-54.57 -10.91,0 0,-10.91 m 654.63,21.83 21.82,0 0,10.91 -21.82,0 0,-10.91 m -10.92,10.91 10.92,0 0,32.74 -10.92,0 0,-32.74 m 32.74,0 10.91,0 0,-32.74 10.92,0 0,74.74 -43.65,0 0,-9.26 32.73,0 0,-21.83 -10.91,0 0,-10.91 m 164.73,0 10.92,0 0,32.74 -10.92,0 0,-32.74 m 10.92,-10.91 21.83,0 0,10.91 -21.83,0 0,-10.91 m 21.83,10.91 10.91,0 0,-10.91 10.9,0 0,74.73 -10.9,0 0,-21.82 -32.74,0 0,-9.26 32.74,0 0,-21.83 -10.91,0 0,-10.91 m -908.31,-10.91 -21.84,0 0,10.91 21.84,0 0,-10.91 m -21.84,10.91 -10.91,0 0,-10.91 -10.91,0 0,74.73 10.91,0 0,-21.82 32.75,0 0,-9.26 -32.75,0 0,-21.83 10.91,0 0,-10.91 m 32.74,0 -10.9,0 0,32.74 10.9,0 0,-32.74 m -132.4,0 -10.93,0 0,32.74 10.93,0 0,-32.74!
  m -32.74,0 -10.91,0 0,-10.91 -10.93,0 0,74.73 10.93,0 0,-21.8!
 2 32.72,0!
  0,-9.26 -32.72,0 0,-21.83 10.91,0 0,-10.91 m 21.81,-10.91 -21.81,0 0,10.91 21.81,0 0,-10.91 m -242.77,75.47 0,0" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         id="path1640-7"
-         d="m 2772.69,2181.06 c -98.54,-428.82 -353.71,-447.47 -413.71,-447.47 l 0,-25.08 c 133.05,0 348.1,94.96 426.25,420.85 100.11,-325.2 271.08,-412.49 391.07,-414.14 114.35,-1.58 184.87,25.07 293.24,81.53 l 0,-50.89 312.9,0 0,-42.89 25.07,0 0,42.89 53.05,0 0,25.07 -53.05,0 0,613.13 225.02,-568.78 215.58,0 18.78,-44.35 -268.62,0 0,-25.07 279.26,0 29.52,-69.67 23.08,9.79 -25.39,59.88 59.43,0 0,25.07 -70.05,0 -175.35,413.86 232.24,0 0,310.18 c 217.36,-106.98 477.4,-28.48 608.47,180.93 130.01,-200.39 383.99,-280.25 605.28,-190.31 l -8.81,-14.24 374.02,0 74.73,120.8 72.97,-117.99 c 1.08,-1.75 2.98,-2.81 5.05,-2.81 l 0,0 c 2.14,0 4.12,1.16 5.15,3.04 1.06,1.88 1.01,4.17 -0.12,6 l -76.09,123.02 9.74,15.76 89.7,-145.01 c 1.08,-1.75 2.98,-2.81 5.04,-2.81 l 0,0 c 2.15,0 4.13,1.16 5.17,3.04 1.05,1.88 0.99,4.17 -0.14,6 l -92.8,150.04 9.75,15.77 108.15,-174.85 374.01,0 -295.16,477.2 9.76,15.76 311.43,-503.52 -388.55,0 c -2.13,0 -4.12,-1.16 -5.17,-3.03 -1.04,-1.9 -0.99,-4.18 0.14,-6.!
 01 l 0,0 c 1.09,-1.74 2.99,-2.8 5.03,-2.8 l 409.8,0 -309,499.6 289.06,467.36 c 1.14,1.84 1.19,4.13 0.15,6.01 -1.04,1.87 -3.03,3.03 -5.18,3.03 -2.05,0 -3.96,-1.06 -5.03,-2.8 l -285.98,-462.35 -9.75,15.76 277.96,449.39 -374.01,0 -71.44,-115.5 -69.72,112.7 c -1.08,1.74 -2.97,2.8 -5.04,2.8 l 0,0 c -0.96,0 -1.92,-0.24 -2.78,-0.7 -0.85,0.46 -1.81,0.7 -2.79,0.7 -2.13,0 -4.12,-1.16 -5.17,-3.03 -1.05,-1.88 -1,-4.17 0.14,-6.01 l 75.6,-122.22 -9.75,-15.77 -89.2,144.23 c -1.08,1.74 -2.99,2.8 -5.05,2.8 -2.14,0 -4.11,-1.16 -5.16,-3.03 -1.05,-1.88 -0.99,-4.17 0.13,-6.01 l 92.32,-149.25 -9.75,-15.76 -107.65,174.05 -374.02,0 10.94,-17.7 c -221.48,91.5 -476.71,12.28 -607.46,-188.54 -130.9,209.94 -391.28,286.75 -608.92,179.63 l 0,26.61 -317.8,0 0,-2.38 -52.45,0 22.91,64.68 -23.64,8.36 -25.87,-73.04 -100.74,0 0,-25.07 91.86,0 -187.19,-528.36 -11.05,26.94 0,528.87 -207.29,0 0,-1609.67 207.29,0 0,721.65 35.4,-89.48 0,-676.52 -287.82,0 0,73.28 c -124.87,-83.95 -208.53,-103.92 -318.32,-103.92 -86.!
 93,0 -277.7,63.37 -378.54,440.77 l -25.07,0 z m 448.99,1277.73!
  -395.21,0.02 0,-25.08 269.89,0 c -205.67,-91.32 -295.28,-421.82 -295.28,-813.61 0,-461.94 124.51,-838.69 417.02,-838.69 134.42,0 210.79,69.05 276.52,131.98 l 0,41.04 c 0.02,0.04 0.05,0.08 0.07,0.11 l -0.02,347.84 -22.33,0 c -48.46,-88.29 -137.56,-212.3 -229.57,-212.3 -153.37,0 -229.22,237.52 -227.3,530.02 -1.92,292.5 73.93,530.02 227.3,530.02 92.01,0 181.11,-124.01 229.57,-212.32 l 22.33,0 0.02,347.85 c -0.02,0.04 -0.05,0.08 -0.07,0.12 l 0,41.04 c -65.14,62.36 -140.75,130.73 -272.94,131.96 z M 2355.94,1781.43 c 289.99,0 413.44,395.49 413.44,838.69 0,443.19 -123.45,838.69 -413.44,838.69 -289.99,0 -413.43,-376.76 -413.43,-838.69 0,-461.94 123.44,-838.69 413.43,-838.69 z m -721.95,33.85 -377.58,0 0,934.79 c 2.43,6.54 4.86,13.08 7.27,19.62 16.95,-4.64 34.54,-6.51 52.09,-5.59 34.33,1.85 65.28,21.33 81.77,51.51 14.9,27.27 21.99,58.11 20.5,89.14 -0.63,12.98 -4.05,25.67 -10.02,37.21 -14.67,28.33 -37.3,51.74 -65.12,67.36 9.41,31.95 18.41,64 26.99,96.18 16.39,61.57 24.11,125.11 22.8!
 8,188.81 -0.32,16.43 -3.88,32.64 -10.49,47.68 -6.78,15.42 -18.64,28.04 -33.62,35.76 -10.86,5.6 -23.54,6.52 -35.1,2.56 -11.56,-3.96 -21,-12.46 -26.17,-23.53 -5.99,-12.91 -8.94,-27.02 -8.57,-41.26 0.2,-7.99 4.06,-15.47 10.48,-20.25 8.11,-6.05 18.05,-9.07 28.14,-8.59 6.62,0.32 12.54,4.18 15.52,10.12 2.97,5.93 2.49,13 -1.22,18.49 -4.57,6.77 -11.3,11.81 -19.07,14.31 l 2.66,5.8 c 1.25,3.29 4.03,5.77 7.46,6.6 3.43,0.85 7.04,-0.03 9.68,-2.35 13.04,-11.1 21.16,-26.9 22.58,-43.95 1.88,-29.39 1.27,-58.89 -1.85,-88.18 -9.17,-62.54 -22.8,-124.35 -40.8,-184.95 -4.62,1.47 -9.31,2.73 -14.03,3.78 -13.87,3.07 -27.87,5.48 -41.96,7.19 l 0,391.41 252.69,0 0,52.35 25.08,0 0,-52.35 53.83,0 0,-25.07 -53.83,0 0,-564.41 24.2,0 220.54,589.48 242.19,0 21.89,55.87 23.33,-9.15 -21.75,-55.54 75.57,0 0,-25.07 -85.39,0 -260.8,-665.62 c 96,-99.03 151.07,-248.06 151.07,-437.34 0,-253.68 -68.67,-472.82 -291.04,-472.82 z m -332.61,1171.98 c -14.4,5.91 -29.53,9.9 -44.97,11.81 l 0,-142.65 c 15.55,43.24 30.49,86.!
 7 44.82,130.36 0.05,0.16 0.1,0.31 0.15,0.48 0,0 0,0 0,0 0,0 0,!
 0 0,0 0,0!
  0,0 0,0 m -23.68,-178.71 c 4.94,-1.36 9.92,-2.51 14.94,-3.44 15.76,-2.92 32.02,0.87 44.82,10.5 11.66,8.75 20.05,21.15 23.86,35.23 8.47,31.39 6.62,64.67 -5.27,94.93 -2.48,6.35 -6.6,11.93 -11.91,16.21 -4.09,3.28 -8.3,6.37 -12.67,9.27 -16.72,-54.62 -34.63,-108.88 -53.77,-162.7 m -21.29,190.52 c -3.96,0.48 -7.94,0.84 -11.92,1.05 -43.42,2.36 -83.8,-22.28 -101.56,-61.98 -31.51,-70.46 -36.08,-150.02 -12.87,-223.62 8.15,-25.84 16.57,-51.59 25.27,-77.24 2.4,-7.1 4.82,-14.19 7.29,-21.29 23.3,55.36 45.6,111.16 66.83,167.35 -30.27,16.22 -54.69,41.51 -69.84,72.31 -2.5,5.1 -1.52,11.21 2.47,15.27 3.95,4.05 10.06,5.15 15.19,2.76 4.48,-3.22 8.62,-6.87 12.39,-10.88 15.29,-16.97 33.63,-30.95 54.07,-41.22 4.26,11.61 8.49,23.22 12.68,34.84 l 0,-106.35 c -20.1,-53.81 -41.41,-107.14 -63.89,-160 -3.72,-8.75 -7.54,-17.47 -11.4,-26.14 4.67,-12.85 9.43,-25.67 14.25,-38.47 6.9,-18.25 12.17,-37.07 15.75,-56.25 4.02,-21.69 2.22,-44.08 -5.26,-64.84 -17.03,-47.33 -49.87,-87.33 -92.97,-113.24 -18.96,-11.4!
 1 -40.82,-17.04 -62.94,-16.23 -18.52,0.7 -33.48,15.36 -34.57,33.87 -0.97,16.78 2.93,33.51 11.21,48.15 7.69,13.55 15.94,26.74 24.79,39.57 27.29,39.55 50.86,81.53 70.44,125.4 3.86,8.64 7.68,17.28 11.48,25.93 -5.97,16.43 -11.82,32.89 -17.54,49.41 -26.57,76.62 -43.7,156.21 -51.02,236.98 -3.46,38.11 -0.07,76.54 10,113.47 13.84,50.66 58.87,86.54 111.34,88.68 23.48,0.96 47,0.02 70.33,-2.82 l 0,-34.47 m 343.36,-1250.81 -390.37,0 0,-60.83 -25.07,0 0,60.83 -58.38,0 0,25.06 58.38,0 0,279.28 25.07,0 0,-279.28 390.37,0 0,-25.06" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#b4c3d3"
-         id="path1642-1"
-         d="m 6454.4,2508.06 -287.67,0 -128.61,207.93 -128.6,-207.93 -287.67,0 53.94,87.23 c -109.8,-93.21 -256.85,-129.78 -397.51,-98.89 -140.67,30.9 -258.85,125.75 -319.46,256.4 -54.32,-121.55 -156.59,-212.52 -280.24,-249.35 -123.67,-36.82 -256.59,-15.89 -364.28,57.41 l 0,-345.07 -244.36,0 0,1166.72 244.36,0 0,-47.06 c 107.88,73.43 241.06,94.3 364.9,57.22 123.82,-37.08 226.09,-128.46 280.16,-250.39 61.3,131.16 180.62,225.93 322.24,255.95 141.64,30.03 289.14,-8.18 398.37,-103.19 l -57.64,93.19 287.68,0 128.11,-207.14 128.12,207.14 287.67,0 -271.95,-439.68 272.44,-440.49 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         id="path1644-1"
-         d="m 4748.65,2946.97 c 0,-119.95 -97.24,-217.19 -217.18,-217.19 -119.94,0 -217.17,97.24 -217.17,217.19 0,119.94 97.23,217.18 217.17,217.18 119.94,0 217.18,-97.24 217.18,-217.18 z m 1076.57,-110.08 c 18.22,74.12 17.74,151.6 -1.35,225.49 l 70.42,-113.83 -69.07,-111.66 m -230.78,110.08 c 0,-119.95 -97.23,-217.19 -217.18,-217.19 -119.95,0 -217.18,97.24 -217.18,217.19 0,119.94 97.23,217.18 217.18,217.18 119.95,0 217.18,-97.24 217.18,-217.18 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#ffc000"
-         id="path1646-5"
-         d="m 1463.69,3399.88 45.41,0 0,-564.41 -45.41,0 0,564.41 m 93.77,-920.19 c 76.6,0 88.61,-97.11 88.53,-163.75 -0.08,-66.65 -9.75,-138.98 -76.58,-138.98 l -105.72,0 0,368.29 45.41,0 0,-65.56 48.36,0 z m 0,25.07 -23.28,0 0,40.49 1.6,0 c 170.71,0 170.71,-152.85 170.71,-205.97 l 0,-34.28 c 0,-51.48 -0.35,-193.6 -144.09,-193.6 l -98.71,0 0,40.49 93.77,0 c 48.8,0 114.23,6.94 114.23,170.52 0,163.58 -65.77,180.99 -114.23,182.35 z m -406.49,-4.47 c -19.66,-39.21 -40.9,-77.61 -63.73,-115.06 -7.25,-11.92 -13.8,-24.23 -19.64,-36.9 -3.81,-8.25 -6.07,-17.14 -6.68,-26.21 -0.13,-1.96 0.58,-3.89 1.94,-5.29 1.36,-1.41 3.25,-2.17 5.21,-2.1 9.42,0.32 18.61,3.02 26.7,7.86 34.79,20.81 59.58,54.9 68.67,94.41 2.63,11.51 2.71,23.49 0.23,35.04 -3.52,16.27 -7.75,32.37 -12.7,48.25 l 0,0 m 4220.37,627.03 11.84,0 c 98.46,-3.23 176.14,-84.81 174.52,-183.32 -1.62,-98.5 -81.92,-177.5 -180.44,-177.5 -98.51,0 -178.81,79 -180.43,177.5 -1.62,98.51 76.05,180.09 174.51,183.32 z m -845.78,0 11.84,0 c 98.4!
 5,-3.23 176.13,-84.81 174.5,-183.32 -1.61,-98.5 -81.92,-177.5 -180.43,-177.5 -98.5,0 -178.82,79 -180.43,177.5 -1.62,98.51 76.06,180.09 174.52,183.32 z m -565.76,-567.39 73.41,189.89 0,-363.14 -73.41,173.25 m 12.08,837.57 -199.5,-563.15 23.38,-56.99 230.54,620.14 -54.42,0 M 2355.93,2084.66 c 139.65,0 199.05,252.48 199.05,535.46 0,282.97 -59.4,535.45 -199.05,535.45 -139.63,0 -199.04,-240.54 -199.04,-535.45 0,-294.92 59.41,-535.46 199.04,-535.46 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         id="path1648-2"
-         d="m 5371.34,3127.32 c 3.95,0.28 7.88,0.27 11.84,0 l 0,-16.58 c 89.32,-3.24 159.56,-77.44 157.93,-166.8 -1.64,-89.35 -74.58,-160.92 -163.96,-160.86 -2.14,-0.04 -3.92,1.09 -4.99,2.92 -1.09,1.86 -1.09,4.15 -0.01,5.99 1.07,1.86 2.87,2.98 5,2.94 55.04,-0.05 105.79,29.67 132.71,77.67 26.92,47.99 25.79,106.81 -2.93,153.74 -28.73,46.93 -80.61,74.68 -135.59,72.54 l 0,28.44 z m -839.87,-44.91 c -3.28,0 -5.91,-2.65 -5.91,-5.91 0,-3.28 2.63,-5.93 5.91,-5.93 68.27,0 123.61,-55.34 123.61,-123.6 0,-68.28 -55.34,-123.62 -123.61,-123.62 -3.28,0 -5.91,-2.65 -5.91,-5.91 0,-3.28 2.63,-5.93 5.91,-5.93 74.81,0 135.44,60.64 135.44,135.46 0,74.8 -60.63,135.44 -135.44,135.44 z m 845.79,0 c -3.28,0 -5.92,-2.65 -5.92,-5.91 0,-3.28 2.64,-5.93 5.92,-5.93 68.26,0 123.6,-55.34 123.6,-123.6 0,-68.28 -55.34,-123.62 -123.6,-123.62 -3.28,0 -5.92,-2.65 -5.92,-5.91 0,-3.28 2.64,-5.93 5.92,-5.93 74.81,0 135.45,60.64 135.45,135.46 0,74.8 -60.64,135.44 -135.45,135.44 z m -851.7,44.91 c 3.93,0.19 7.88,0.!
 15 11.84,0 l 0,-16.58 c 89.31,-3.24 159.56,-77.44 157.93,-166.8 -1.65,-89.35 -74.61,-160.92 -163.97,-160.86 -2.15,-0.04 -3.91,1.09 -5,2.92 -1.08,1.86 -1.08,4.15 0,5.99 1.08,1.86 2.86,2.98 5,2.94 55.05,-0.05 105.8,29.67 132.71,77.67 26.93,47.99 25.8,106.81 -2.93,153.74 -28.73,46.93 -80.59,74.68 -135.58,72.54 l 0,28.44 z m -2169.62,-47.1 0,-61.93 -25.07,0 0,65.95 0,25.07 c 135.53,0 175.31,-230.16 176.25,-476.67 l 570.42,0 c 1.35,173.53 39.4,439.13 152.69,457.44 l 0,65.49 25.07,0 0,-522.93 99.81,0 0,-25.07 -99.81,0 0,-90.45 -25.07,0 0,90.45 -127.54,0 c 2.72,-171.99 50.77,-423.43 140.08,-427.51 l 0,-25.08 c -117.15,4.53 -162.68,272.92 -165.16,452.59 l -570.53,0 c -1.63,-245.33 -41.23,-473.61 -176.21,-473.61 l 0,24.06 0,449.55 -76.62,0 0,25.07 76.62,0 0,87.58 25.07,0 0,-87.58 126.07,0 c -1.26,157.79 -21.13,412.74 -126.07,447.58 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#ffc000"
-         id="path1650-7"
-         d="m 3102.62,2632.64 c 1.61,164.28 43.22,409.55 127.61,431.82 l 0,-431.82 -127.61,0 z m -620.57,-25.07 -126.11,0 0,-445.5 c 104.4,34.7 125.36,287.45 126.11,445.5 z" />
-    </g>
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient5875);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6758)"
-       d="m -83.376056,123.85491 c -0.619904,0.002 -2.001575,0.8012 -2.001575,2.03135 l 0,1.17383 55.734294,0 0,-1.17383 c 0,-1.23015 -0.499175,-2.22293 -1.119078,-2.2207 z"
-       id="rect4551-8-9-9-24-1"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0397436,0,0,1.053466,389.17612,569.23077)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6754)"
-       d="m -83.37951,124.90669 c -0.585699,-4.6e-4 -0.460087,0.73833 -0.460087,1.60379 l 0,0.82497 52.658226,0 0,-0.82497 c 0,-0.86546 -0.471732,-1.56316 -1.057431,-1.56362 z"
-       id="rect4551-5-2-9-2-0-0"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0406478,0,0,1.053466,389.20433,569.23077)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6750)"
-       d="m -81.755695,124.94686 c -0.538923,0 -1.26871,0.69816 -1.26871,1.56362 l 0,0.82497 48.452694,0 0,-0.82497 c 0,-0.86546 -0.434054,-1.56362 -0.972971,-1.56362 z"
-       id="rect4551-5-8-0-0-1-5-4"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0487754,0,0,1.053466,389.0374,569.23077)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient5875-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6746)"
-       d="m -83.376056,123.85491 c -0.619904,0.002 -2.001575,0.8012 -2.001575,2.03135 l 0,1.17383 55.734294,0 0,-1.17383 c 0,-1.23015 -0.499175,-2.22293 -1.119078,-2.2207 z"
-       id="rect4551-8-9-9-24-1-3"
-       inkscape:connector-curvature="0"
-       transform="matrix(-1.0397436,0,0,1.053466,213.186,569.23077)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6742)"
-       d="m -83.37951,124.90669 c -0.585699,-4.6e-4 -0.460087,0.73833 -0.460087,1.60379 l 0,0.82497 52.658226,0 0,-0.82497 c 0,-0.86546 -0.471732,-1.56316 -1.057431,-1.56362 z"
-       id="rect4551-5-2-9-2-0-0-9"
-       inkscape:connector-curvature="0"
-       transform="matrix(-1.0406478,0,0,1.053466,213.15779,569.23077)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6738)"
-       d="m -81.755695,124.94686 c -0.538923,0 -1.26871,0.69816 -1.26871,1.56362 l 0,0.82497 48.452694,0 0,-0.82497 c 0,-0.86546 -0.434054,-1.56362 -0.972971,-1.56362 z"
-       id="rect4551-5-8-0-0-1-5-4-5"
-       inkscape:connector-curvature="0"
-       transform="matrix(-1.0487754,0,0,1.053466,213.32472,569.23077)"
-       sodipodi:nodetypes="ssccsss" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient4840);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6746-4)"
-       d="m 691.06482,131.22548 c -0.55567,-0.002 -1.32812,0.99055 -1.32813,2.2207 l 0,1.17383 24.98047,0 24.98047,0 0,-1.17383 c 0,-1.23015 -0.77245,-2.2227 -1.32812,-2.2207 l -23.65235,0.0957 -23.65234,-0.0957 z"
-       id="rect4551-8-9-9-24-1-3-4"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0533476,0.01579394,-0.01579394,1.0533476,-300.83746,551.00836)" />
-    <path
-       style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6742-8)"
-       d="m 714.71716,132.4872 -22.52343,0.0195 c -0.51876,4.6e-4 -0.93555,0.69704 -0.93555,1.5625 l 0,0.82617 23.45898,0 23.45899,0 0,-0.82617 c 0,-0.86546 -0.41679,-1.56204 -0.93555,-1.5625 l -22.52344,-0.0195 z"
-       id="rect4551-5-2-9-2-0-0-9-7"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0533476,0.01579394,-0.01579394,1.0533476,-300.83746,551.00836)" />
-    <path
-       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter6738-7)"
-       d="m 695.82459,132.4872 c -0.4324,0 -0.78125,0.69704 -0.78125,1.5625 l 0,0.82617 19.67382,0 19.67383,0 0,-0.82617 c 0,-0.86546 -0.34885,-1.5625 -0.78125,-1.5625 l -18.89258,0 -18.89257,0 z"
-       id="rect4551-5-8-0-0-1-5-4-5-0"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0533476,0.01579394,-0.01579394,1.0533476,-300.83746,551.00836)" />
-    <g
-       style="display:inline"
-       id="g5213"
-       transform="matrix(1.053466,0,0,1.053466,-333.76911,583.09021)">
-      <rect
-         transform="scale(1,-1)"
-         rx="18.927773"
-         ry="18.927773"
-         y="-295.26221"
-         x="767.45166"
-         height="69.719185"
-         width="90.028114"
-         id="rect4783-7-6-2"
-         style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <rect
-         transform="scale(1,-1)"
-         rx="18.169149"
-         ry="18.039158"
-         y="-293.62561"
-         x="769.2558"
-         height="66.44603"
-         width="86.419792"
-         id="rect4783-7-8-1-3"
-         style="display:inline;opacity:1;fill:url(#linearGradient4899-7-3);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <rect
-         transform="scale(1,-1)"
-         rx="14.764146"
-         ry="14.764146"
-         y="-291.50308"
-         x="772.01514"
-         height="62.200943"
-         width="80.901169"
-         id="rect4783-7-8-3-0-8"
-         style="display:inline;opacity:1;fill:url(#radialGradient4911-9-3);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <rect
-         transform="scale(1,-1)"
-         rx="14.764146"
-         ry="14.764146"
-         y="-291.54984"
-         x="772.0152"
-         height="62.200943"
-         width="80.901169"
-         id="rect4783-7-8-3-0-3-6"
-         style="display:inline;opacity:1;fill:url(#radialGradient4911-9-4-3);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <rect
-         transform="scale(1,-1)"
-         rx="2.0640993"
-         ry="2.0640993"
-         y="-280.17593"
-         x="782.99023"
-         height="39.54665"
-         width="58.950928"
-         id="rect4783-7-8-3-2-4-9"
-         style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <rect
-         transform="scale(1,-1)"
-         rx="1.9787426"
-         ry="1.9903519"
-         y="-279.57559"
-         x="783.89075"
-         height="38.133705"
-         width="56.513126"
-         id="rect4783-7-8-3-2-5-6-0"
-         style="display:inline;opacity:1;fill:#404040;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <g
-         id="g4972-3-1-6"
-         style="display:inline"
-         transform="translate(29.156301,-20.83174)">
-        <rect
-           style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-           id="rect5170-68-8-5-7-3"
-           width="32.909798"
-           height="21.249405"
-           x="766.85449"
-           y="270.60968"
-           ry="5.8945169" />
-        <path
-           style="display:inline;opacity:1;fill:url(#linearGradient5205);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-           d="m 771.98127,271.88672 c -1.06081,0 -1.99516,0.42193 -2.74805,1.04883 -0.95586,0.79589 -1.59766,1.95009 -1.59766,3.29688 l 0,5.00195 0,5.00195 c 0,1.34679 0.6418,2.50099 1.59766,3.29688 0.75289,0.6269 1.68724,1.04883 2.74805,1.04883 l 11.32812,0 11.32813,0 c 1.06082,0 1.99514,-0.42193 2.74804,-1.04883 0.95586,-0.79589 1.59766,-1.95009 1.59766,-3.29688 l 0,-5.00195 0,-5.00195 c 0,-1.34679 -0.6418,-2.50099 -1.59766,-3.29688 -0.7529,-0.6269 -1.68722,-1.04883 -2.74804,-1.04883 l -11.32813,0 -11.32812,0 z"
-           id="rect5170-5-1-0-0-0-9-4-6"
-           inkscape:connector-curvature="0" />
-        <rect
-           style="display:inline;opacity:1;fill:url(#linearGradient5207);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-           id="rect5170-5-1-7-5-4-5"
-           width="23.152262"
-           height="11.564808"
-           x="771.73334"
-           y="275.49869"
-           ry="2.6712437" />
-        <g
-           id="g4857-1-2-1"
-           style="fill:#1d95e7;fill-opacity:1;filter:url(#filter4873-2-0-7)"
-           transform="translate(659.58836,-0.76869016)">
-          <path
-             transform="matrix(0.82685392,0,0,0.81485173,21.741064,43.48662)"
-             inkscape:connector-curvature="0"
-             id="rect4711-1-4-8"
-             d="m 115.6669,289.25548 0,6.54503 6.5409,0 0,-6.54503 -6.5409,0 z m 1.7747,1.83438 2.99151,0 0,2.87627 -2.99151,0 0,-2.87627 z"
-             style="opacity:1;fill:#1d95e7;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-          <path
-             transform="matrix(0.82685392,0,0,0.81485173,21.741064,43.48662)"
-             sodipodi:nodetypes="cccccccccccc"
-             inkscape:connector-curvature="0"
-             id="rect4711-2-5-4-5"
-             d="m 124.69521,289.25548 0.0183,6.54521 2.20498,0 0,-2.47552 2.15772,2.47534 2.52257,0 -2.86513,-3.24043 2.86513,-3.3046 -2.4227,0 -2.25836,2.52178 0,-2.52178 z"
-             style="opacity:1;fill:#1d95e7;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-        </g>
-      </g>
-      <path
-         sodipodi:nodetypes="ccssssscssssssccc"
-         inkscape:connector-curvature="0"
-         id="path4841-0"
-         d="m 771.93442,276.29003 0.002,0.61133 c 0,0 0.006,1.39787 0.0859,2.08985 0.0922,0.79386 0.20428,1.57973 0.46289,2.33593 0.39942,1.1679 0.97796,2.21687 1.67383,3.23633 1.33214,1.95163 2.60412,2.91034 4.29883,4.32227 1.36477,1.13705 3.81855,2.27774 5.55664,2.64453 1.17747,0.24848 3.55273,0.32226 3.55273,0.32226 0,0 -2.73908,-0.72468 -3.98633,-1.18945 -1.2614,-0.47005 -2.02681,-0.80405 -3.13086,-1.57422 -0.87917,-0.6133 -1.9704,-1.40038 -2.72265,-2.16406 -0.85792,-0.87095 -1.74106,-1.79694 -2.46875,-2.7793 -0.59421,-0.80216 -1.14007,-1.66067 -1.5,-2.59179 -0.41375,-1.07033 -0.54087,-2.20678 -0.66406,-3.34766 -0.0625,-0.57861 -0.0665,-1.65233 -0.0664,-2.15474 l -1.09446,-0.0114 z"
-         style="display:inline;fill:url(#linearGradient4849-84);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5053-6)" />
-      <path
-         inkscape:connector-curvature="0"
-         id="path4961-7"
-         d="m 773.49501,238.71581 c 0,0 -0.42494,0.7153 -0.76563,1.57227 -0.3076,0.77375 -0.52875,1.68024 -0.60742,1.98047 -0.30053,1.14699 -0.27343,3.54687 -0.27343,3.54687 l 0.0859,30.47461 1.09375,0 c 2e-5,-0.18216 -0.002,-0.48047 -0.002,-0.48047 l -0.0703,-32.0625 c 0,0 0.0558,-1.56631 0.13085,-2.33203 0.0903,-0.92093 0.40821,-2.69922 0.40821,-2.69922 z"
-         style="display:inline;fill:url(#linearGradient4849-8-3);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5045-8)" />
-      <path
-         sodipodi:nodetypes="ccsssssscsssssccssssscsssssssc"
-         inkscape:connector-curvature="0"
-         id="path4819-2"
-         d="m 787.70865,229.34889 49.86656,0 c 0,0 2.04725,1.6e-4 3.03976,0.0965 1.16892,0.11344 2.30305,0.18663 3.40926,0.58102 0.87553,0.31215 1.6995,0.77938 2.4585,1.31595 0.80532,0.56931 1.54366,1.24536 2.18634,1.99343 0.60435,0.70346 1.30189,1.87904 1.85988,2.8746 0.37182,0.6634 0.67118,1.36512 0.9871,2.05689 0.21523,0.4713 0.61868,1.42595 0.61868,1.42595 0,0 -2.24916,-3.44101 -2.70182,-3.93912 -0.51007,-0.5613 -1.04146,-1.16748 -1.61587,-1.66274 -0.60914,-0.5252 -1.23818,-1.01882 -1.92799,-1.43239 -0.54654,-0.32768 -1.14701,-0.57109 -1.75894,-0.74892 -0.73874,-0.21469 -1.47644,-0.25528 -2.24319,-0.31795 -0.71963,-0.0588 -2.2002,-0.0568 -2.2002,-0.0568 l -53.94727,0 c 0,0 -1.23129,-0.008 -1.83612,0.0568 -0.89264,0.0951 -1.77876,0.20079 -2.6212,0.51087 -0.91753,0.33771 -1.81299,0.78669 -2.58387,1.38805 -0.95068,0.74162 -1.59152,1.431 -2.30716,2.22402 -0.69257,0.76746 -1.31162,1.60014 -1.91258,2.44127 -0.77025,1.07809 -1.52903,2.33285 -1.52903,2.33285 0,0 -0.23736,0.0805!
  -0.0489,-0.64749 0.11941,-0.46137 0.43771,-1.60005 0.77497,-2.35425 0.32897,-0.73564 0.75082,-1.43044 1.20752,-2.09438 0.65669,-0.95469 1.3397,-1.9128 2.19138,-2.69849 0.91721,-0.84613 1.9574,-1.58731 3.08661,-2.11844 0.85466,-0.40199 1.80291,-0.57179 2.72481,-0.77706 0.72061,-0.16045 1.45167,-0.28109 2.18634,-0.35367 0.87516,-0.0865 2.63648,-0.0965 2.63648,-0.0965 z"
-         style="display:inline;fill:url(#linearGradient5096-5);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5041-6)" />
-      <path
-         sodipodi:nodetypes="ccssccssscc"
-         inkscape:connector-curvature="0"
-         id="path5057-6-9"
-         d="m 852.09848,239.79142 c -0.016,13.85514 0.12563,41.125 0.12563,41.125 0,0 0.25657,-0.47655 0.34174,-0.73201 0.11341,-0.34015 0.17822,-0.69674 0.22095,-1.05274 0.0769,-0.64045 0.062,-1.93414 0.062,-1.93414 l -0.10777,-32.89567 c 0,0 0.004,-0.67159 -0.003,-1.00728 -0.005,-0.25214 -0.0568,-0.91879 -0.11679,-1.37476 -0.0502,-0.3811 -0.11018,-0.76214 -0.20299,-1.13515 -0.084,-0.33753 -0.31906,-0.99349 -0.31906,-0.99349 z"
-         style="display:inline;fill:url(#linearGradient5106-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5128-7)" />
-      <path
-         inkscape:connector-curvature="0"
-         id="rect4783-7-8-3-2-4-5-8"
-         d="m 782.99009,280.05093 0,0.21875 c 0,1.14351 0.92094,2.06445 2.06445,2.06445 l 54.82226,0 c 1.14351,0 2.06445,-0.92094 2.06445,-2.06445 l 0,-0.21875 c -0.197,0.90245 -1.02385,1.57617 -2.02148,1.57617 l -54.90819,0 c -0.99764,0 -1.8245,-0.67372 -2.02149,-1.57617 z"
-         style="display:inline;opacity:1;fill:url(#linearGradient5161-9);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         inkscape:transform-center-x="-0.65219287"
-         sodipodi:type="star"
-         style="display:inline;fill:#3a3939;fill-opacity:1;stroke:none"
-         id="path15581-7-9-1-5-5-8-3-8"
-         sodipodi:sides="3"
-         sodipodi:cx="1118.2893"
-         sodipodi:cy="2501.2974"
-         sodipodi:r1="27.751125"
-         sodipodi:r2="13.875563"
-         sodipodi:arg1="-1.0471976"
-         sodipodi:arg2="7.4051008e-017"
-         inkscape:flatsided="false"
-         inkscape:rounded="0"
-         inkscape:randomized="0"
-         d="m 1132.1649,2477.2642 0,24.0332 0,24.0331 -20.8134,-12.0165 -20.8133,-12.0166 20.8133,-12.0166 z"
-         transform="matrix(-0.0940056,0,0,0.13198604,951.73345,-69.85658)" />
-      <path
-         sodipodi:type="star"
-         style="display:inline;fill:#8d8b8b;fill-opacity:1;stroke:none"
-         id="path15581-7-9-9-8-3-4-5-3-1"
-         sodipodi:sides="3"
-         sodipodi:cx="1118.2893"
-         sodipodi:cy="2501.2974"
-         sodipodi:r1="27.751125"
-         sodipodi:r2="13.875563"
-         sodipodi:arg1="-1.0471976"
-         sodipodi:arg2="7.4051008e-017"
-         inkscape:flatsided="false"
-         inkscape:rounded="0"
-         inkscape:randomized="0"
-         d="m 1132.1649,2477.2642 0,24.0332 0,24.0331 -20.8134,-12.0165 -20.8133,-12.0166 20.8133,-12.0166 z"
-         inkscape:transform-center-x="-0.61293574"
-         transform="matrix(-0.08834831,0,0,0.12404323,945.32847,-49.79835)"
-         inkscape:transform-center-y="-5.518128e-005" />
-      <path
-         inkscape:transform-center-x="-0.52655816"
-         inkscape:transform-center-y="-4.6396463e-005"
-         transform="matrix(-0.07589813,0,0,-0.10656286,931.47275,526.7986)"
-         d="m 1132.1649,2477.2642 0,24.0332 0,24.0331 -20.8134,-12.0165 -20.8133,-12.0166 20.8133,-12.0166 z"
-         inkscape:randomized="0"
-         inkscape:rounded="0"
-         inkscape:flatsided="false"
-         sodipodi:arg2="7.4051008e-017"
-         sodipodi:arg1="-1.0471976"
-         sodipodi:r2="13.875563"
-         sodipodi:r1="27.751125"
-         sodipodi:cy="2501.2974"
-         sodipodi:cx="1118.2893"
-         sodipodi:sides="3"
-         id="path15579-8-3-2-4-0-5-4-3"
-         style="display:inline;fill:url(#linearGradient5209);fill-opacity:1;stroke:none"
-         sodipodi:type="star" />
-      <path
-         inkscape:connector-curvature="0"
-         id="path15581-7-9-1-5-5-8-3-7-3-8-3"
-         d="m 779.62776,257.08088 -2.10507,1.70761 -1.80855,1.46577 1.67186,1.3543 2.24176,1.81696 0,-2.92942 0,-3.41522 z"
-         style="display:inline;fill:#424242;fill-opacity:1;stroke:none" />
-      <path
-         inkscape:transform-center-x="0.56842633"
-         sodipodi:type="star"
-         style="display:inline;fill:#9a9a98;fill-opacity:1;stroke:none"
-         id="path15581-7-9-1-5-5-8-3-7-3-3-1-0"
-         sodipodi:sides="3"
-         sodipodi:cx="1118.2893"
-         sodipodi:cy="2501.2974"
-         sodipodi:r1="27.751125"
-         sodipodi:r2="13.875563"
-         sodipodi:arg1="-1.0471976"
-         sodipodi:arg2="7.4051008e-017"
-         inkscape:flatsided="false"
-         inkscape:rounded="0"
-         inkscape:randomized="0"
-         d="m 1132.1649,2477.2642 0,24.0332 0,24.0331 -20.8134,-12.0165 -20.8133,-12.0166 20.8133,-12.0166 z"
-         transform="matrix(0.08192991,0,0,0.11503151,686.61895,-27.27001)" />
-      <path
-         inkscape:transform-center-x="0.52655755"
-         inkscape:transform-center-y="-4.3146578e-005"
-         transform="matrix(0.07589813,0,0,-0.10656286,693.44792,526.79757)"
-         d="m 1132.1649,2477.2642 0,24.0332 0,24.0331 -20.8134,-12.0165 -20.8133,-12.0166 20.8133,-12.0166 z"
-         inkscape:randomized="0"
-         inkscape:rounded="0"
-         inkscape:flatsided="false"
-         sodipodi:arg2="7.4051008e-017"
-         sodipodi:arg1="-1.0471976"
-         sodipodi:r2="13.875563"
-         sodipodi:r1="27.751125"
-         sodipodi:cy="2501.2974"
-         sodipodi:cx="1118.2893"
-         sodipodi:sides="3"
-         id="path15579-8-3-2-4-0-5-0-2-9"
-         style="display:inline;fill:url(#linearGradient5227-4-0-3-3);fill-opacity:1;stroke:none"
-         sodipodi:type="star" />
-      <path
-         inkscape:transform-center-x="-0.61038656"
-         sodipodi:type="star"
-         style="display:inline;fill:#9a9a98;fill-opacity:1;stroke:none"
-         id="path15581-7-9-1-5-5-8-3-7-3-3-1-1-4"
-         sodipodi:sides="3"
-         sodipodi:cx="1118.2893"
-         sodipodi:cy="2501.2974"
-         sodipodi:r1="27.751125"
-         sodipodi:r2="13.875563"
-         sodipodi:arg1="-1.0471976"
-         sodipodi:arg2="7.4051008e-017"
-         inkscape:flatsided="false"
-         inkscape:rounded="0"
-         inkscape:randomized="0"
-         d="m 1132.1649,2477.2642 0,24.0332 0,24.0331 -20.8134,-12.0165 -20.8133,-12.0166 20.8133,-12.0166 z"
-         transform="matrix(0,-0.08797914,-0.12352477,0,1121.4372,385.58614)" />
-      <path
-         inkscape:connector-curvature="0"
-         id="path15581-7-9-1-5-5-8-3-7-3-8-8-6"
-         d="m 815.63801,285.7286 -1.59744,1.96925 -1.37119,1.69186 -1.26693,-1.56399 -1.69973,-2.09712 2.74042,0 3.19487,0 z"
-         style="display:inline;fill:#313030;fill-opacity:1;stroke:none" />
-      <path
-         inkscape:transform-center-x="-4.3531611e-005"
-         inkscape:transform-center-y="0.52655355"
-         transform="matrix(0,-0.07589813,0.10656286,0,545.91902,371.90844)"
-         d="m 1132.1649,2477.2642 0,24.0332 0,24.0331 -20.8134,-12.0165 -20.8133,-12.0166 20.8133,-12.0166 z"
-         inkscape:randomized="0"
-         inkscape:rounded="0"
-         inkscape:flatsided="false"
-         sodipodi:arg2="7.4051008e-017"
-         sodipodi:arg1="-1.0471976"
-         sodipodi:r2="13.875563"
-         sodipodi:r1="27.751125"
-         sodipodi:cy="2501.2974"
-         sodipodi:cx="1118.2893"
-         sodipodi:sides="3"
-         id="path15579-8-3-2-4-0-5-5-3-6"
-         style="display:inline;fill:url(#linearGradient5211);fill-opacity:1;stroke:none"
-         sodipodi:type="star" />
-      <path
-         inkscape:transform-center-x="-0.65216003"
-         sodipodi:type="star"
-         style="display:inline;fill:#424242;fill-opacity:1;stroke:none"
-         id="path15581-7-9-1-5-5-8-3-7-3-3-1-1-5-7"
-         sodipodi:sides="3"
-         sodipodi:cx="1118.2893"
-         sodipodi:cy="2501.2974"
-         sodipodi:r1="27.751125"
-         sodipodi:r2="13.875563"
-         sodipodi:arg1="-1.0471976"
-         sodipodi:arg2="7.4051008e-017"
-         inkscape:flatsided="false"
-         inkscape:rounded="0"
-         inkscape:randomized="0"
-         d="m 1132.1649,2477.2642 0,24.0332 0,24.0331 -20.8134,-12.0165 -20.8133,-12.0166 20.8133,-12.0166 z"
-         transform="matrix(0,0.09400047,-0.13197886,0,1142.5841,131.29512)" />
-      <path
-         inkscape:connector-curvature="0"
-         id="path15581-7-9-1-5-5-8-3-7-3-8-8-1-7-7"
-         d="m 815.22904,237.71937 -1.59744,-1.96925 -1.37119,-1.69186 -1.26693,1.56399 -1.69973,2.09712 2.74042,0 3.19487,0 z"
-         style="display:inline;fill:#9a9a98;fill-opacity:1;stroke:none" />
-      <path
-         inkscape:transform-center-x="-4.3531611e-005"
-         inkscape:transform-center-y="-0.52655222"
-         transform="matrix(0,0.07589813,0.10656286,0,545.92029,151.53931)"
-         d="m 1132.1649,2477.2642 0,24.0332 0,24.0331 -20.8134,-12.0165 -20.8133,-12.0166 20.8133,-12.0166 z"
-         inkscape:randomized="0"
-         inkscape:rounded="0"
-         inkscape:flatsided="false"
-         sodipodi:arg2="7.4051008e-017"
-         sodipodi:arg1="-1.0471976"
-         sodipodi:r2="13.875563"
-         sodipodi:r1="27.751125"
-         sodipodi:cy="2501.2974"
-         sodipodi:cx="1118.2893"
-         sodipodi:sides="3"
-         id="path15579-8-3-2-4-0-5-5-3-4-7"
-         style="display:inline;fill:url(#linearGradient4894-1);fill-opacity:1;stroke:none"
-         sodipodi:type="star" />
-    </g>
-    <rect
-       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect4783-5-8-5-8-83-2"
-       width="82.157425"
-       height="32.257359"
-       x="-563.21454"
-       y="-804.98212"
-       ry="10.147693"
-       rx="12.521734"
-       transform="scale(-1,-1)" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient5396);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5572-02-3-8-7)"
-       d="m 676.26259,187.16386 c -6.47752,0 -11.6914,4.09178 -11.6914,9.17382 l 0,14.97071 75.25195,0 0,-14.97071 c 0,-5.08204 -5.21388,-9.17382 -11.69141,-9.17382 l -51.86914,0 z"
-       id="rect4783-5-8-7-6-34-4-76-8"
-       inkscape:connector-curvature="0"
-       transform="matrix(-1.053466,0,0,-1.0418042,1261.8767,998.75841)" />
-    <path
-       style="display:inline;opacity:1;fill:#020202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5580-6-0-9-1)"
-       d="m 676.49501,189.43925 c -5.56541,0 -10.04492,4.09967 -10.04492,9.19336 l 0,12.67578 71.49414,0 0,-12.67578 c 0,-5.09369 -4.47951,-9.19336 -10.04492,-9.19336 l -51.4043,0 z"
-       id="rect4783-5-8-7-6-0-4-2-5-7"
-       inkscape:connector-curvature="0"
-       transform="matrix(-1.053466,0,0,-1.053466,1261.8767,1001.2215)" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient5398);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5629-69-1-2-3)"
-       d="m 676.49501,190.6912 c -5.56541,0 -10.04492,4.1248 -10.04492,9.24805 l 0,11.36914 71.49414,0 0,-11.36914 c 0,-5.12325 -4.47951,-9.24805 -10.04492,-9.24805 l -51.4043,0 z"
-       id="rect4783-5-8-7-6-0-5-5-1-9-5"
-       inkscape:connector-curvature="0"
-       transform="matrix(-1.0938412,0,0,-1.053466,1290.228,1001.2215)" />
-    <g
-       style="display:inline"
-       id="g5459"
-       transform="matrix(1.053466,0,0,1.053466,-303.05392,561.09543)">
-      <rect
-         rx="11.886226"
-         ry="9.6326723"
-         y="183.58708"
-         x="744.31555"
-         height="30.62022"
-         width="77.987732"
-         id="rect4783-5-8-5-8"
-         style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         inkscape:connector-curvature="0"
-         id="rect4783-5-8-7-6-34-4"
-         d="m 757.37482,184.47115 c -6.47752,0 -11.6914,4.09178 -11.6914,9.17382 l 0,14.97071 75.25195,0 0,-14.97071 c 0,-5.08204 -5.21388,-9.17382 -11.69141,-9.17382 l -51.86914,0 z"
-         style="display:inline;opacity:1;fill:url(#linearGradient5498-3-4);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5572-02-3)" />
-      <path
-         inkscape:connector-curvature="0"
-         id="rect4783-5-8-7-6-0-4-2"
-         d="m 757.60724,186.74654 c -5.56541,0 -10.04492,4.09967 -10.04492,9.19336 l 0,12.67578 71.49414,0 0,-12.67578 c 0,-5.09369 -4.47951,-9.19336 -10.04492,-9.19336 l -51.4043,0 z"
-         style="display:inline;opacity:1;fill:#020202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5580-6-0)" />
-      <path
-         inkscape:connector-curvature="0"
-         id="rect4783-5-8-7-6-0-5-5-1"
-         d="m 757.60724,187.99849 c -5.56541,0 -10.04492,4.1248 -10.04492,9.24805 l 0,11.36914 71.49414,0 0,-11.36914 c 0,-5.12325 -4.47951,-9.24805 -10.04492,-9.24805 l -51.4043,0 z"
-         style="display:inline;opacity:1;fill:url(#linearGradient5805-97-1);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5629-69-1)" />
-      <rect
-         transform="matrix(1,0,0,1.2710995,737.74399,-51.72298)"
-         rx="2.3404191"
-         ry="2.0936713"
-         y="190.8114"
-         x="7.9179811"
-         height="11.483604"
-         width="75.294846"
-         id="rect4783-5-8-0-53-4"
-         style="display:inline;opacity:1;fill:url(#radialGradient5942-0-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5688-31-9)" />
-      <path
-         sodipodi:nodetypes="sccss"
-         transform="matrix(1.0047062,0,0,0.96084026,737.52955,7.9956295)"
-         inkscape:connector-curvature="0"
-         id="rect4897-0-8"
-         d="m 10.771453,202.25664 c -2.6493625,0 -2.656248,2.13189 -2.656248,4.78125 l 74.900392,0 c 0,-2.64936 -0.0069,-4.78125 -2.65625,-4.78125 z"
-         style="display:inline;opacity:1;fill:url(#linearGradient4915-45-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5592-8-8)" />
-    </g>
-    <path
-       style="display:inline;opacity:1;fill:#a9d3ec;fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter7835)"
-       d="m 123.1712,191.33514 -5.23339,4.03302 5.23339,3.97971 0,-2.64722 2.82048,0 0,3.37564 3.21176,0 c 0,0 0,-2.2313 0,-3.37564 0,-0.56708 -0.25766,-1.12488 -0.55546,-1.5899 -0.24498,-0.38258 -0.5892,-0.70313 -0.96888,-0.91863 -0.51415,-0.29182 -1.68742,-0.45849 -1.68742,-0.45849 l -2.82048,0 z"
-       id="path4375-2-4-8-5-7-3"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccccccsssccc"
-       transform="matrix(1.022263,0,0,1.0073263,394.89235,570.00549)" />
-    <rect
-       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect4783-5-8-5-8-8-5-4"
-       width="82.157425"
-       height="32.257359"
-       x="-563.2146"
-       y="-959.33173"
-       ry="10.147693"
-       rx="12.521734"
-       transform="scale(-1,-1)" />
-    <rect
-       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect4783-5-8-5-8-8"
-       width="82.157425"
-       height="32.257359"
-       x="481.0571"
-       y="909.33417"
-       ry="10.147693"
-       rx="12.521734" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient7950);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5572-02-3-9)"
-       d="m 462.0691,899.49413 c -6.47752,0 -11.6914,4.09178 -11.6914,9.17382 l 0,14.97071 75.25195,0 0,-14.97071 c 0,-5.08204 -5.21388,-9.17382 -11.69141,-9.17382 l -51.86914,0 z"
-       id="rect4783-5-8-7-6-34-4-7"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="display:inline;opacity:1;fill:#020202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5580-6-0-1)"
-       d="m 462.30152,901.76952 c -5.56541,0 -10.04492,4.09967 -10.04492,9.19336 l 0,12.67578 71.49414,0 0,-12.67578 c 0,-5.09369 -4.47951,-9.19336 -10.04492,-9.19336 l -51.4043,0 z"
-       id="rect4783-5-8-7-6-0-4-2-7"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient7952);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5629-69-1-3)"
-       d="m 462.30152,903.02147 c -5.56541,0 -10.04492,4.1248 -10.04492,9.24805 l 0,11.36914 71.49414,0 0,-11.36914 c 0,-5.12325 -4.47951,-9.24805 -10.04492,-9.24805 l -51.4043,0 z"
-       id="rect4783-5-8-7-6-0-5-5-1-4"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <rect
-       style="display:inline;opacity:1;fill:url(#radialGradient5942-0-6-8);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5688-31-9-1)"
-       id="rect4783-5-8-0-53-4-6"
-       width="75.294846"
-       height="11.483604"
-       x="7.9179811"
-       y="190.8114"
-       ry="2.0936713"
-       rx="2.3404191"
-       transform="matrix(1.053466,0,0,1.3390601,474.13422,661.44305)" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient4915-45-2-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5592-8-8-1)"
-       d="m 525.62396,916.36191 -3.80469,0.0273 c 0,0 -0.10773,0.59738 -0.39648,0.79102 -0.17249,0.11568 -0.46402,0.15864 -0.74024,0.17578 l -0.60742,0 c -0.009,-7.2e-4 -0.0781,-0.002 -0.0781,-0.002 l -31.99414,0 -31.99218,0 c 0,0 -1.0328,0.093 -1.42774,-0.17187 -0.28875,-0.19364 -0.39453,-0.79297 -0.39453,-0.79297 l -3.80469,-0.0254 c 0,0 -0.006,4.20675 -0.006,5.58594 l 75.25196,0 c 0,-7e-4 0,-10e-4 0,-0.002 0,-1.37919 -0.006,-5.58593 -0.006,-5.58593 z"
-       id="rect4897-0-8-6"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <g
-       id="g5932-8-9"
-       transform="matrix(1.053466,0,0,1.053466,392.57825,549.57613)"
-       style="display:inline;filter:url(#filter8251)">
-      <path
-         sodipodi:nodetypes="cccc"
-         inkscape:connector-curvature="0"
-         id="path4375-5-5"
-         d="m 117.08864,350.57462 -0.0175,6.17512 5.30648,-3.03033 z"
-         style="opacity:0.98999999;fill:#a9d3ec;fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path4375-2-8-1"
-         d="m 124.12701,350.57461 0,6.17512 2.08198,0 0,-6.17512 z"
-         style="fill:#a9d3ec;fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path4375-2-4-0-9"
-         d="m 127.60943,350.57461 0,6.17512 2.08198,0 0,-6.17512 z"
-         style="fill:#a9d3ec;fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    </g>
-    <rect
-       style="display:inline;opacity:1;fill:url(#radialGradient5942-0-6-0-0);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5688-31-9-8-8)"
-       id="rect4783-5-8-0-53-4-9-6"
-       width="75.294846"
-       height="11.483604"
-       x="7.9179811"
-       y="190.8114"
-       ry="2.0936713"
-       rx="2.3404191"
-       transform="matrix(-1.0490832,0,0,1.3328067,569.77332,525.32192)" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient5503);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5592-8-8-15)"
-       d="m 10.771453,202.25664 c -2.6493625,0 -2.656248,2.13189 -2.656248,4.78125 l 74.900392,0 c 0,-2.64936 -0.0069,-4.78125 -2.65625,-4.78125 z"
-       id="rect4897-0-8-9"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0150191,0,0,-0.30987768,475.88612,843.94587)"
-       sodipodi:nodetypes="sccss" />
-    <path
-       style="display:inline;opacity:1;fill:#535353;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5293-3)"
-       d="m 450.66092,791.17884 c 1.15627,4.11489 5.80595,7.17773 11.4082,7.17773 l 51.86915,0 c 5.60224,0 10.25193,-3.06284 11.4082,-7.17773 l -4.42774,0 c -2.00461,1.55645 -5.10131,2.55468 -8.59765,2.55468 l -48.63477,0 c -3.49635,0 -6.59304,-0.99823 -8.59766,-2.55468 l -4.42773,0 z"
-       id="rect4783-5-8-7-6-34-4-76-0-7"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <g
-       transform="matrix(1.053466,0,0,1.053466,367.08299,560.45492)"
-       id="g6065-3-5"
-       style="display:inline;fill:url(#linearGradient5622);fill-opacity:1;filter:url(#filter5612)">
-      <path
-         sodipodi:nodetypes="cccccccc"
-         inkscape:connector-curvature="0"
-         id="path4375-2-4-9-7-1-1"
-         d="m 140.23981,219.87148 0,2.632 -1.91919,0 2.9544,4.85515 2.7683,-4.85515 -1.72146,0 0,-2.632 z"
-         style="opacity:1;fill:url(#linearGradient5702);fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         id="path4375-2-4-5-45-5-1"
-         d="m 139.76844,215.36776 0,2.3418 5.26758,0 0,10.04297 9.44531,0 0,-2.39649 0,-7.64648 0,-2.3418 -14.71289,0 z m 7.17579,2.3418 5.49218,0 0,7.64648 -5.49218,0 0,-7.64648 z"
-         style="opacity:1;fill:url(#linearGradient5704);fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         inkscape:connector-curvature="0" />
-      <rect
-         y="219.46542"
-         x="147.93361"
-         height="1.3347225"
-         width="3.5870669"
-         id="rect5035-8-3-0"
-         style="opacity:1;fill:url(#linearGradient5706);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <rect
-         y="222.3851"
-         x="147.91972"
-         height="1.3347225"
-         width="3.5870669"
-         id="rect5035-1-8-2-8"
-         style="opacity:1;fill:url(#linearGradient5708);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    </g>
-    <path
-       style="display:inline;fill:url(#radialGradient6017-3-6-9-5-8);fill-opacity:1;stroke:none;filter:url(#filter5575)"
-       d="m 453.23513,922.46738 c -1.58333,10e-6 -2.85743,1.26668 -2.85743,2.83985 l 0,0.70703 0,0.70703 0,1.16016 0,1.67969 0,2.29882 0.002,5.85352 0.36524,1.02734 18.10351,0 0,-16.27344 -15.61328,0 z"
-       id="path5984-6-57-2-3-2"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="display:inline;fill:url(#radialGradient6025-1-1-6-8-1);fill-opacity:1;stroke:none;filter:url(#filter5591)"
-       d="m 468.04958,922.46738 0,16.26368 19.25586,0 0,-6.8711 0,-2.29882 0,-1.67383 0,-1.87305 0,-0.70703 c 0,-1.57317 -1.27409,-2.83982 -2.85742,-2.83985 l -16.39844,0 z"
-       id="rect5973-0-3-0-1-5"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient5479-1-1-0-4);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5527)"
-       d="m 471.27444,941.40774 7.0542,0 0,-15.00571 -24.07102,0 0,8.27474 c 0,3.72885 3.45764,6.73097 7.05421,6.73097 z"
-       id="rect4783-5-8-7-6-0-5-5-1-9-5-2-6-3-0-2"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="ccccssc"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient6199-1-3-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5543)"
-       d="m 450.37956,937.71366 c 1.15627,4.11489 5.48334,7.17774 11.08559,7.17774 l 16.85288,0 9.00355,0 0,-6.13954 -9.00355,0 c 0,0 0.0453,0.89146 -0.21181,1.17588 -0.27071,0.29975 -1.1979,0.34061 -1.1979,0.34061 l -13.26349,0 c -3.49635,0 -6.57801,-0.99824 -8.58263,-2.55469 z"
-       id="rect4783-5-8-7-6-34-4-76-0-7-8-3-3-2-9"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="csccccscscc"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <g
-       transform="matrix(-1.053466,0,0,1.053466,651.33822,551.59026)"
-       id="g6150-6-9-0-0-9-9-8"
-       style="display:inline;filter:url(#filter5743-6-8-3-9-4)">
-      <path
-         sodipodi:nodetypes="cccc"
-         inkscape:connector-curvature="0"
-         id="path4375-7-2-1-8-7-5-0-3"
-         d="m 137.31017,373.6212 -0.0175,4.97774 5.30648,-2.44273 z"
-         style="opacity:1;fill:#a9d3ec;fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         transform="matrix(0.74311341,0,0,1,37.545229,3.8890873)"
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path4375-2-1-5-8-3-7-8-4-2-7"
-         d="m 146.15488,369.73211 0,4.97774 2.43298,0 0,-4.97774 z"
-         style="opacity:1;fill:#a9d3ec;fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         sodipodi:nodetypes="cccc"
-         inkscape:connector-curvature="0"
-         id="path4375-7-1-5-0-2-4-0-3-0"
-         d="m 141.76989,373.57506 -0.0175,4.97774 5.30648,-2.44273 z"
-         style="opacity:1;fill:#a9d3ec;fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    </g>
-    <path
-       style="display:inline;fill:url(#radialGradient6017-3-6-9-5-8-3);fill-opacity:1;stroke:none;filter:url(#filter5567)"
-       d="m 522.77322,922.46738 c 1.58333,10e-6 2.85743,1.26668 2.85743,2.83985 l 0,0.70703 0,0.70703 0,1.16016 0,1.67969 0,2.29882 -0.002,5.85352 -0.36524,1.02734 -18.10351,0 0,-16.27344 15.61328,0 z"
-       id="path5984-6-57-2-3-2-3"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="display:inline;fill:url(#radialGradient6025-1-1-6-8-1-2);fill-opacity:1;stroke:none;filter:url(#filter5607)"
-       d="m 507.95877,922.46738 0,16.26368 -19.25586,0 0,-6.8711 0,-2.29882 0,-1.67383 0,-1.87305 0,-0.70703 c 0,-1.57317 1.27409,-2.83982 2.85742,-2.83985 l 16.39844,0 z"
-       id="rect5973-0-3-0-1-5-6"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient5479-1-1-0-4-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5519)"
-       d="m 504.73391,941.40774 -7.0542,0 0,-15.00571 24.07102,0 0,8.27474 c 0,3.72885 -3.45764,6.73097 -7.05421,6.73097 z"
-       id="rect4783-5-8-7-6-0-5-5-1-9-5-2-6-3-0-2-0"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="ccccssc"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <path
-       style="display:inline;opacity:1;fill:url(#linearGradient6199-1-3-6-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5559)"
-       d="m 525.62879,937.71366 c -1.15627,4.11489 -5.48334,7.17774 -11.08559,7.17774 l -16.85288,0 -9.00355,0 0,-6.13954 9.00355,0 c 0,0 -0.0453,0.89146 0.21181,1.17588 0.27071,0.29975 1.1979,0.34061 1.1979,0.34061 l 13.26349,0 c 3.49635,0 6.57801,-0.99824 8.58263,-2.55469 z"
-       id="rect4783-5-8-7-6-34-4-76-0-7-8-3-3-2-9-3"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="csccccscscc"
-       transform="matrix(1.053466,0,0,1.053466,8.0405607,-37.320929)" />
-    <g
-       transform="matrix(1.053466,0,0,1.053466,392.90434,551.61456)"
-       id="g6150-6-9-0-0-9-9-8-0"
-       style="display:inline;filter:url(#filter5743-6-8-3-9-4-7)">
-      <path
-         sodipodi:nodetypes="cccc"
-         inkscape:connector-curvature="0"
-         id="path4375-7-2-1-8-7-5-0-3-8"
-         d="m 137.31017,373.6212 -0.0175,4.97774 5.30648,-2.44273 z"
-         style="opacity:1;fill:#a9d3ec;fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         transform="matrix(0.74311341,0,0,1,37.545229,3.8890873)"
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path4375-2-1-5-8-3-7-8-4-2-7-2"
-         d="m 146.15488,369.73211 0,4.97774 2.43298,0 0,-4.97774 z"
-         style="opacity:1;fill:#a9d3ec;fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         sodipodi:nodetypes="cccc"
-         inkscape:connector-curvature="0"
-         id="path4375-7-1-5-0-2-4-0-3-0-2"
-         d="m 141.76989,373.57506 -0.0175,4.97774 5.30648,-2.44273 z"
-         style="opacity:1;fill:#a9d3ec;fill-opacity:1;stroke:none;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    </g>
-  </g>
-  <g
-     inkscape:groupmode="layer"
-     id="layer4"
-     inkscape:label="Text"
-     transform="translate(0,-901.17175)"
-     style="display:inline"
-     sodipodi:insensitive="true">
-    <text
-       sodipodi:linespacing="125%"
-       id="text5542"
-       y="984.31055"
-       x="612.22583"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       xml:space="preserve"><tspan
-         y="984.31055"
-         x="612.22583"
-         id="tspan5544"
-         sodipodi:role="line">Menu</tspan></text>
-    <path
-       inkscape:connector-curvature="0"
-       id="path4667"
-       d="M 539.16385,997.4737 602.20293,976.203"
-       style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:#02b27a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       x="612.25317"
-       y="955.30524"
-       id="text4630"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan4632"
-         x="612.25317"
-         y="955.30524">Back</tspan><tspan
-         sodipodi:role="line"
-         x="612.25317"
-         y="990.30524"
-         id="tspan4636" /></text>
-    <path
-       style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:#02b27a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 539.42851,967.91293 62.86146,-22.64365"
-       id="path4634"
-       inkscape:connector-curvature="0" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       x="612.1438"
-       y="1156.1578"
-       id="text4638"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         x="612.1438"
-         y="1156.1578"
-         id="tspan4650">Play</tspan></text>
-    <path
-       style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:#02b27a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 543.85421,1126.7869 58.24257,20.7429"
-       id="path4642"
-       inkscape:connector-curvature="0" />
-    <text
-       sodipodi:linespacing="125%"
-       id="text4662"
-       y="1129.5389"
-       x="612.1438"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       xml:space="preserve"><tspan
-         y="1129.5389"
-         x="612.1438"
-         sodipodi:role="line"
-         id="tspan4686">Down</tspan></text>
-    <path
-       inkscape:connector-curvature="0"
-       id="path4666"
-       d="m 528.70619,1090.1511 73.58606,29.7057"
-       style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:#02b27a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       x="613.04614"
-       y="1044.209"
-       id="text4668"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         x="613.04614"
-         y="1044.209"
-         id="tspan4670">Select</tspan></text>
-    <path
-       style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:#02b27a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 534.41508,1054.2114 67.86304,-18.1352"
-       id="path4672"
-       inkscape:connector-curvature="0" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       x="612.25317"
-       y="1102.3065"
-       id="text4718"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         x="612.25317"
-         y="1102.3065"
-         id="tspan4720">Left</tspan></text>
-    <path
-       style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:#02b27a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 485.62505,1069.3184 116.68216,23.5388"
-       id="path4722"
-       inkscape:connector-curvature="0" />
-    <text
-       sodipodi:linespacing="125%"
-       id="text4724"
-       y="1070.9702"
-       x="612.10278"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       xml:space="preserve"><tspan
-         id="tspan4726"
-         y="1070.9702"
-         x="612.10278"
-         sodipodi:role="line">Right</tspan></text>
-    <path
-       inkscape:connector-curvature="0"
-       id="path4728"
-       d="m 560.62765,1065.588 41.7743,-3.64"
-       style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:#02b27a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       x="612.10278"
-       y="1012.8419"
-       id="text4738"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         x="612.10278"
-         y="1012.8419"
-         id="tspan4740">Up</tspan></text>
-    <path
-       style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:#02b27a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 526.71464,1033.17 75.56704,-27.9713"
-       id="path4742"
-       inkscape:connector-curvature="0" />
-    <text
-       sodipodi:linespacing="125%"
-       id="text4662-3"
-       y="885.18213"
-       x="370.93323"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       xml:space="preserve"><tspan
-         y="885.18213"
-         x="370.93323"
-         sodipodi:role="line"
-         id="tspan4686-2">Power</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text4662-3-2-4"
-       y="889.42889"
-       x="257.34338"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       xml:space="preserve"><tspan
-         y="889.42889"
-         x="257.34338"
-         sodipodi:role="line"
-         id="tspan5777">Vol -/+</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       x="458.68762"
-       y="885.18213"
-       id="text4630-4"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         x="458.68762"
-         y="885.18213"
-         id="tspan4636-8">Hold</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       x="612.17114"
-       y="1183.3102"
-       id="text4638-9"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         x="612.17114"
-         y="1183.3102"
-         id="tspan4650-3">Next</tspan></text>
-    <path
-       style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:#02b27a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 553.02813,1151.7175 49.09115,21.0341"
-       id="path4642-0"
-       inkscape:connector-curvature="0" />
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28px;line-height:125%;font-family:'URW Palladio L';-inkscape-font-specification:'URW Palladio L';text-align:start;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       x="612.1438"
-       y="1211.4625"
-       id="text4638-7"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         x="612.1438"
-         y="1211.4625"
-         id="tspan4650-32">Prev</tspan></text>
-    <path
-       style="display:inline;fill:#7a7a7a;fill-opacity:1;stroke:#02b27a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 502.91372,1156.5992 99.00102,45.3171"
-       id="path4642-3"
-       inkscape:connector-curvature="0" />
-    <path
-       inkscape:connector-curvature="0"
-       style="display:inline;fill:none;stroke:#000000;stroke-width:1.00199997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow1Mstart);enable-background:new"
-       d="m 410.49578,894.63057 35.0361,0"
-       id="path4715-8-4" />
-    <path
-       inkscape:connector-curvature="0"
-       style="display:inline;fill:none;stroke:#000000;stroke-width:1.00199997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow1Mstart-5);enable-background:new"
-       d="m 488.73169,894.63057 -35.0361,0"
-       id="path4715-8-4-2" />
-  </g>
-</svg>
diff --git a/manual/rockbox_interface/images/zenvisionm-front.pdf b/manual/rockbox_interface/images/zenvisionm-front.pdf
deleted file mode 100644
index db4d73032e..0000000000
Binary files a/manual/rockbox_interface/images/zenvisionm-front.pdf and /dev/null differ
diff --git a/manual/rockbox_interface/images/zenvisionm-front.png b/manual/rockbox_interface/images/zenvisionm-front.png
deleted file mode 100644
index 778ef7a3b7..0000000000
Binary files a/manual/rockbox_interface/images/zenvisionm-front.png and /dev/null differ
diff --git a/manual/rockbox_interface/images/zenvisionm-front.svg b/manual/rockbox_interface/images/zenvisionm-front.svg
deleted file mode 100644
index 9218ad2417..0000000000
--- a/manual/rockbox_interface/images/zenvisionm-front.svg
+++ /dev/null
@@ -1,1368 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="354.33069"
-   height="602.36218"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.48.4 r9939"
-   sodipodi:docname="zen_vision _m.svg">
-  <defs
-     id="defs4">
-    <linearGradient
-       id="linearGradient4261">
-      <stop
-         style="stop-color:#232323;stop-opacity:1;"
-         offset="0"
-         id="stop4263" />
-      <stop
-         style="stop-color:#0f0f0f;stop-opacity:1;"
-         offset="1"
-         id="stop4265" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4161">
-      <stop
-         style="stop-color:#050505;stop-opacity:1;"
-         offset="0"
-         id="stop4163" />
-      <stop
-         style="stop-color:#0f0f0f;stop-opacity:1"
-         offset="1"
-         id="stop4165" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4039">
-      <stop
-         style="stop-color:#000000;stop-opacity:0;"
-         offset="0"
-         id="stop4041" />
-      <stop
-         id="stop4047"
-         offset="0.5"
-         style="stop-color:#6e6e6e;stop-opacity:1;" />
-      <stop
-         style="stop-color:#000000;stop-opacity:0;"
-         offset="1"
-         id="stop4043" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4198">
-      <stop
-         style="stop-color:#1a1a1a;stop-opacity:1;"
-         offset="0"
-         id="stop4201" />
-      <stop
-         style="stop-color:#050505;stop-opacity:1;"
-         offset="1"
-         id="stop4203" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4197">
-      <stop
-         style="stop-color:#fffff4;stop-opacity:1;"
-         offset="0"
-         id="stop4200" />
-      <stop
-         id="stop4208"
-         offset="0.01295624"
-         style="stop-color:#030303;stop-opacity:1;" />
-      <stop
-         id="stop4206"
-         offset="0.98822081"
-         style="stop-color:#030303;stop-opacity:1;" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="1"
-         id="stop4202" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient6006">
-      <stop
-         id="stop6008"
-         offset="0"
-         style="stop-color:#191919;stop-opacity:1;" />
-      <stop
-         style="stop-color:#323232;stop-opacity:1;"
-         offset="0.64024448"
-         id="stop6010" />
-      <stop
-         id="stop6012"
-         offset="1"
-         style="stop-color:#191919;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4992">
-      <stop
-         style="stop-color:#191919;stop-opacity:0;"
-         offset="0"
-         id="stop4994" />
-      <stop
-         id="stop5006"
-         offset="0.0625"
-         style="stop-color:#191919;stop-opacity:1;" />
-      <stop
-         style="stop-color:#191919;stop-opacity:1;"
-         offset="0.90269148"
-         id="stop5018" />
-      <stop
-         id="stop5002"
-         offset="0.90269148"
-         style="stop-color:#191919;stop-opacity:0;" />
-      <stop
-         id="stop5000"
-         offset="0.9780696"
-         style="stop-color:#191919;stop-opacity:1;" />
-      <stop
-         style="stop-color:#191919;stop-opacity:1;"
-         offset="1"
-         id="stop4996" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4112">
-      <stop
-         style="stop-color:#393838;stop-opacity:1;"
-         offset="0"
-         id="stop4114" />
-      <stop
-         style="stop-color:#262626;stop-opacity:1"
-         offset="1"
-         id="stop4116" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4000">
-      <stop
-         style="stop-color:#4d4d4d;stop-opacity:1"
-         offset="0"
-         id="stop4002" />
-      <stop
-         style="stop-color:#737373;stop-opacity:1"
-         offset="0.15991025"
-         id="stop4004" />
-      <stop
-         style="stop-color:#4d4d4d;stop-opacity:1"
-         offset="0.28134969"
-         id="stop4006" />
-      <stop
-         id="stop4008"
-         offset="1"
-         style="stop-color:#464646;stop-opacity:1" />
-    </linearGradient>
-    <filter
-       inkscape:collect="always"
-       id="filter3876"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="1.2229314"
-         id="feGaussianBlur3878" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter3880"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="1.1203223"
-         id="feGaussianBlur3882" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter3889"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.99738375"
-         id="feGaussianBlur3891" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter3901"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="1.1354745"
-         id="feGaussianBlur3903" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter3995"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="3.9582846"
-         id="feGaussianBlur3997" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter4110"
-       x="-0.16035947"
-       width="1.3207189"
-       y="-0.0036826744"
-       height="1.0073653"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="2.6660451"
-         id="feGaussianBlur4112" />
-    </filter>
-    <linearGradient
-       y2="3319.6001"
-       x2="7296.5898"
-       y1="3098.24"
-       x1="7257.5498"
-       gradientUnits="userSpaceOnUse"
-       id="id1">
-      <stop
-         id="stop1624"
-         stop-color="#FFC100"
-         offset="0" />
-      <stop
-         id="stop1626"
-         stop-color="#997200"
-         offset="0.6" />
-      <stop
-         id="stop1628"
-         stop-color="#332201"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#id1"
-       id="linearGradient5792"
-       gradientUnits="userSpaceOnUse"
-       x1="7257.5498"
-       y1="3098.24"
-       x2="7296.5898"
-       y2="3319.6001" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4000"
-       id="linearGradient3984"
-       x1="2916.3572"
-       y1="-134.03864"
-       x2="2916.3572"
-       y2="-19.896536"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       id="filter4086"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="2.937671"
-         id="feGaussianBlur4088" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4112"
-       id="linearGradient4118"
-       x1="2916.0581"
-       y1="1869.3107"
-       x2="2916.0581"
-       y2="1935.2192"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       id="linearGradient4173-4">
-      <stop
-         id="stop4175-9"
-         offset="0"
-         style="stop-color:#000000;stop-opacity:1;" />
-      <stop
-         style="stop-color:#141414;stop-opacity:1;"
-         offset="0.30998552"
-         id="stop4177-4" />
-      <stop
-         style="stop-color:#646464;stop-opacity:1;"
-         offset="0.5084421"
-         id="stop4179-6" />
-      <stop
-         id="stop4185-0"
-         offset="0.54826033"
-         style="stop-color:#646464;stop-opacity:1;" />
-      <stop
-         id="stop4181-3"
-         offset="0.73192322"
-         style="stop-color:#141414;stop-opacity:1;" />
-      <stop
-         id="stop4183-6"
-         offset="1"
-         style="stop-color:#000000;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4283-8"
-       id="linearGradient4171-5"
-       x1="2025.3719"
-       y1="151.17377"
-       x2="2104.4026"
-       y2="151.17377"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(1432.3,-27.529369)" />
-    <linearGradient
-       id="linearGradient4283-8">
-      <stop
-         style="stop-color:#000000;stop-opacity:1;"
-         offset="0"
-         id="stop4285-8" />
-      <stop
-         id="stop4287-1"
-         offset="0.27685004"
-         style="stop-color:#141414;stop-opacity:1" />
-      <stop
-         id="stop4289-2"
-         offset="0.50960356"
-         style="stop-color:#646464;stop-opacity:1;" />
-      <stop
-         style="stop-color:#646464;stop-opacity:1;"
-         offset="0.55384535"
-         id="stop4291-1" />
-      <stop
-         style="stop-color:#141414;stop-opacity:1"
-         offset="0.77331185"
-         id="stop4293-4" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1;"
-         offset="1"
-         id="stop4295-9" />
-    </linearGradient>
-    <radialGradient
-       r="36.765743"
-       fy="21.715626"
-       fx="1926.4427"
-       cy="21.715626"
-       cx="1926.4427"
-       gradientTransform="matrix(2.1760773,-0.57122307,1.31629,5.0144083,-770.20211,1033.1336)"
-       gradientUnits="userSpaceOnUse"
-       id="radialGradient4348"
-       xlink:href="#linearGradient4173-4"
-       inkscape:collect="always" />
-    <linearGradient
-       id="linearGradient4491-3">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop4493-8" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop4495-6" />
-    </linearGradient>
-    <radialGradient
-       r="11.523911"
-       fy="15.372553"
-       fx="1965.2021"
-       cy="15.372553"
-       cx="1965.2021"
-       gradientTransform="matrix(0.5779459,-0.21256573,1.3697378,3.7241859,2333.5387,382.33124)"
-       gradientUnits="userSpaceOnUse"
-       id="radialGradient4514"
-       xlink:href="#linearGradient4491-3"
-       inkscape:collect="always" />
-    <filter
-       inkscape:collect="always"
-       id="filter4561"
-       x="-0.16227163"
-       width="1.3245434"
-       y="-0.056666799"
-       height="1.1133336"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="2.1593791"
-         id="feGaussianBlur4563" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter4751"
-       x="-0.18428069"
-       width="1.3685614"
-       y="-0.0062019289"
-       height="1.0124038"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="4.4799104"
-         id="feGaussianBlur4753" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter4795"
-       x="-0.2023989"
-       width="1.4047978"
-       y="-0.10468995"
-       height="1.2093799"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="6.2011213"
-         id="feGaussianBlur4797" />
-    </filter>
-    <filter
-       inkscape:collect="always"
-       id="filter4980"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="2.1728527"
-         id="feGaussianBlur4982" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4992"
-       id="linearGradient4998"
-       x1="2489.1892"
-       y1="890.53131"
-       x2="3472.2673"
-       y2="890.53131"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6006"
-       id="linearGradient6002"
-       x1="3442.4961"
-       y1="1.997587"
-       x2="3371.7786"
-       y2="-57.388973"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4197"
-       id="linearGradient4204"
-       x1="2302.4797"
-       y1="979.53015"
-       x2="3529.636"
-       y2="979.53015"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0012394,0,0,1,-2.9111065,0.76352217)" />
-    <filter
-       inkscape:collect="always"
-       id="filter3982"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.31029845"
-         id="feGaussianBlur3984" />
-    </filter>
-    <filter
-       color-interpolation-filters="sRGB"
-       inkscape:collect="always"
-       id="filter4178-1"
-       x="-0.10257578"
-       width="1.2051516"
-       y="-0.042400829"
-       height="1.0848017">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.81201125"
-         id="feGaussianBlur4180-7" />
-    </filter>
-    <filter
-       color-interpolation-filters="sRGB"
-       inkscape:collect="always"
-       id="filter4178-1-0"
-       x="-0.10257578"
-       width="1.2051516"
-       y="-0.042400829"
-       height="1.0848017">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.81201125"
-         id="feGaussianBlur4180-7-9" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4198"
-       id="linearGradient4052"
-       gradientUnits="userSpaceOnUse"
-       x1="1836.3088"
-       y1="1438.089"
-       x2="3170.5422"
-       y2="1509.2571"
-       gradientTransform="translate(-2302.4801,134.42331)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4039"
-       id="linearGradient4055"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.30140989,0,0,0.28817958,-701.7633,492.52881)"
-       x1="2793.998"
-       y1="1428.3889"
-       x2="3037.1094"
-       y2="1438.1385" />
-    <filter
-       inkscape:collect="always"
-       id="filter4145"
-       color-interpolation-filters="sRGB">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.250643"
-         id="feGaussianBlur4147" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4161"
-       id="linearGradient4167"
-       x1="2709.1384"
-       y1="1373.7101"
-       x2="3121.1316"
-       y2="1405.3213"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.28782617,0,0,0.28778183,-662.15246,493.1005)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4261"
-       id="linearGradient4267"
-       x1="2687.6687"
-       y1="1438.089"
-       x2="3144.4475"
-       y2="1438.089"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.28782618,0,0,0.28778183,-662.15243,493.1005)" />
-    <linearGradient
-       id="linearGradient4834-7">
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:0;"
-         offset="0"
-         id="stop4836-7" />
-      <stop
-         id="stop4844-1"
-         offset="0.506459"
-         style="stop-color:#a0a0a0;stop-opacity:1;" />
-      <stop
-         id="stop4842-3"
-         offset="1"
-         style="stop-color:#c8c8c8;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4514-7">
-      <stop
-         id="stop4516-03"
-         offset="0"
-         style="stop-color:#646464;stop-opacity:1;" />
-      <stop
-         style="stop-color:#636363;stop-opacity:0;"
-         offset="0.06107992"
-         id="stop4518-8" />
-      <stop
-         id="stop4520-2"
-         offset="1"
-         style="stop-color:#636363;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4349-0">
-      <stop
-         style="stop-color:#dedede;stop-opacity:0;"
-         offset="0"
-         id="stop4353-0" />
-      <stop
-         id="stop4357-0"
-         offset="0.15097311"
-         style="stop-color:#c8c8c8;stop-opacity:1;" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1;"
-         offset="0.93402547"
-         id="stop4359-1" />
-      <stop
-         id="stop4355-92"
-         offset="1"
-         style="stop-color:#dedede;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4287-7">
-      <stop
-         style="stop-color:#646464;stop-opacity:1;"
-         offset="0"
-         id="stop4290-3" />
-      <stop
-         id="stop4296-37"
-         offset="0.01514291"
-         style="stop-color:#636363;stop-opacity:0;" />
-      <stop
-         style="stop-color:#636363;stop-opacity:0;"
-         offset="1"
-         id="stop4298-1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4287-7"
-       id="linearGradient4972"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(18.425659,1459.4324)"
-       x1="1901.5372"
-       y1="1099.853"
-       x2="1973.876"
-       y2="1534.0615" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4349-0"
-       id="linearGradient4974"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(18.425859,1459.4323)"
-       x1="1695.5477"
-       y1="1258.4819"
-       x2="1732.9735"
-       y2="1259.7023" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4514-7"
-       id="linearGradient4976"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(18.425859,-4310.6451)"
-       x1="1895.9583"
-       y1="1226.1648"
-       x2="1866.085"
-       y2="1804.4296" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4834-7"
-       id="linearGradient4978"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(9.9030595,1446.9499)"
-       x1="1942.0804"
-       y1="1192.3358"
-       x2="2004.7144"
-       y2="1327.9872" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="1.2932419"
-     inkscape:cx="177.16534"
-     inkscape:cy="301.18109"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer2"
-     showgrid="false"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1680"
-     inkscape:window-height="994"
-     inkscape:window-x="-4"
-     inkscape:window-y="-4"
-     inkscape:window-maximized="1"
-     inkscape:snap-global="false"
-     inkscape:snap-bbox="true"
-     inkscape:object-nodes="true"
-     inkscape:bbox-paths="true"
-     inkscape:snap-to-guides="true"
-     inkscape:snap-grids="true"
-     inkscape:snap-bbox-edge-midpoints="true"
-     inkscape:bbox-nodes="true"
-     inkscape:object-paths="true"
-     inkscape:snap-smooth-nodes="true"
-     inkscape:snap-object-midpoints="true"
-     inkscape:snap-center="true"
-     inkscape:snap-midpoints="true"
-     inkscape:snap-page="true"
-     inkscape:snap-bbox-midpoints="true"
-     inkscape:snap-intersection-paths="true"
-     inkscape:snap-nodes="true"
-     units="mm">
-    <sodipodi:guide
-       orientation="1,0"
-       position="177.16494,275.1121"
-       id="guide3416" />
-    <sodipodi:guide
-       orientation="1,0"
-       position="376.04368,145.26182"
-       id="guide3418" />
-    <sodipodi:guide
-       orientation="1,0"
-       position="391.08967,302.60479"
-       id="guide3420" />
-    <sodipodi:guide
-       orientation="1,0"
-       position="-18.237342,202.63713"
-       id="guide3422" />
-    <sodipodi:guide
-       orientation="1,0"
-       position="-32.421941,272.88467"
-       id="guide3424" />
-  </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></dc:title>
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     style="display:inline"
-     transform="translate(0,-450)">
-    <rect
-       style="fill:#030303;fill-opacity:1;fill-rule:nonzero;stroke:#575656;stroke-width:2.5332942;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       id="rect4587"
-       width="351.77191"
-       height="594.16992"
-       x="1.2793949"
-       y="455.13361"
-       ry="60.119999" />
-    <g
-       id="g3905"
-       transform="matrix(0.28782617,0,0,0.28778183,-224.40532,492.66881)">
-      <g
-         style="filter:url(#filter3876)"
-         id="g3860">
-        <path
-           style="fill:#00c9f9;fill-opacity:1;stroke:#001cf2;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;marker-end:none"
-           d="m 960.84317,1162.2449 42.10323,15.4744 -24.70148,37.7219 -6.23732,-16.8047 c 0,0 -7.46126,3.4848 -10.38571,6.2804 -2.77455,2.6522 -4.267,4.6519 -5.76504,8.1858 -1.2437,2.9339 -2.14658,10.6066 -2.14658,10.6066 l -18.30902,-0.1263 c 0,0 0.0179,-7.6405 0.75762,-11.3642 0.66652,-3.3551 1.71851,-6.6808 3.28299,-9.7227 1.61346,-3.1372 3.51991,-6.0278 5.80838,-8.7126 2.69493,-3.1616 5.96485,-6.0738 9.20866,-8.6692 3.25769,-2.6065 10.56329,-6.7138 10.56329,-6.7138 z"
-           id="path3913"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="ccccssccsssscc" />
-        <path
-           sodipodi:type="arc"
-           style="fill:#00c9f9;fill-opacity:1;fill-rule:nonzero;stroke:#001cf2;stroke-width:2.41971135;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-           id="path4309"
-           sodipodi:cx="1011.4784"
-           sodipodi:cy="1144.728"
-           sodipodi:rx="5.2401662"
-           sodipodi:ry="5.2401662"
-           d="m 1016.7186,1144.728 c 0,2.8941 -2.3461,5.2402 -5.2402,5.2402 -2.8941,0 -5.2402,-2.3461 -5.2402,-5.2402 0,-2.894 2.3461,-5.2401 5.2402,-5.2401 2.8941,0 5.2402,2.3461 5.2402,5.2401 z"
-           transform="matrix(2.1878627,0,0,2.1878627,-1191.3959,-1332.5057)" />
-      </g>
-      <g
-         style="filter:url(#filter3889)"
-         id="g3884">
-        <path
-           style="fill:#00c9f9;fill-opacity:1;stroke:#001cf2;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-           d="m 1758.2904,1172.9274 -0.1199,44.7326 36.3528,-21.9517 z"
-           id="path4375"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="cccc" />
-        <path
-           style="fill:#00c9f9;fill-opacity:1;stroke:#001cf2;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-           d="m 1803.8799,1172.9274 0,44.7326 16.6675,0 0,-44.7326 z"
-           id="path4375-2"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="ccccc" />
-        <path
-           style="fill:#00c5f9;fill-opacity:1;stroke:#001cf2;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-           d="m 1829.2549,1173.4274 0,44.7326 16.6675,0 0,-44.7326 z"
-           id="path4375-2-1"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="ccccc" />
-      </g>
-      <g
-         style="filter:url(#filter3901)"
-         id="g3893">
-        <path
-           style="fill:#00c9f9;fill-opacity:1;stroke:#001cf2;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-           d="m 1764.9259,1677.2678 0,13.0057 -10.4172,0 16.0362,23.9911 15.026,-23.9911 -9.3439,0 0,-13.0057 z"
-           id="path4375-2-4"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="cccccccc" />
-        <path
-           style="fill:#00c7f9;fill-opacity:1;stroke:#001cf2;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-           d="m 1764.9259,1653.1504 0,10.9854 28.5999,0 0,47.0984 51.2653,0 0,-11.238 -40.9112,0 0,-11.3159 40.9112,-0.1225 0,-12.5155 -40.9112,0.1225 0,-12.029 40.9112,0 0,-10.9854 z"
-           id="path4375-2-4-5"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="ccccccccccccccc" />
-      </g>
-      <path
-         sodipodi:nodetypes="cccccccsssccc"
-         inkscape:connector-curvature="0"
-         id="path4375-2-4-8"
-         d="m 976.18616,1648.0996 -40.53237,28.6631 40.53237,28.2843 0,-18.8141 21.84455,0 0,23.9911 24.87499,0 c 0,0 0,-15.8581 0,-23.9911 0,-4.0303 -1.9956,-7.9946 -4.302,-11.2996 -1.8974,-2.719 -4.5634,-4.9972 -7.504,-6.5288 -3.982,-2.074 -13.06899,-3.2585 -13.06899,-3.2585 l -21.84455,0 z"
-         style="fill:#00c9f9;fill-opacity:1;stroke:#001cf2;stroke-width:5.29399633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3880)" />
-    </g>
-    <g
-       id="g4834"
-       transform="matrix(0.28782617,0,0,0.28778183,-662.15246,493.1005)">
-      <rect
-         rx="17.778175"
-         ry="17.772322"
-         y="52.861626"
-         x="2389.8523"
-         height="780.80817"
-         width="1051.9109"
-         id="rect3845"
-         style="fill:#130f13;fill-opacity:1;fill-rule:nonzero;stroke:#3c3235;stroke-width:1.76270092;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
-      <rect
-         ry="0"
-         rx="0"
-         y="68.014381"
-         x="2404.5051"
-         height="750.50269"
-         width="1022.6053"
-         id="rect3847"
-         style="fill:#404040;fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    </g>
-    <g
-       transform="matrix(0.06514628,0,0,0.06513624,157.68068,507.17157)"
-       id="g3815-9"
-       style="fill:#717171;fill-opacity:1;stroke:#717171;stroke-width:15.59312248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3995)">
-      <path
-         d="m -212.06208,-266.29087 16.57184,23.68581 c 0,0 -20.50436,15.60768 -32.38587,20.11701 -15.9676,6.06012 -33.42995,9.15452 -50.5014,8.64952 -17.78904,-0.52623 -36.27962,-3.76446 -51.99939,-12.10805 -12.53859,-6.65513 -23.89363,-16.79412 -31.24235,-28.93921 -6.89681,-11.39822 -10.37304,-25.25359 -10.45383,-38.57571 -0.0894,-14.73631 3.1444,-30.36809 11.0451,-42.80776 8.55481,-13.46958 22.51806,-23.55701 36.87016,-30.53063 14.16705,-6.8837 30.43442,-9.88461 46.18498,-9.98814 20.15145,-0.13244 40.25081,5.29046 59.25253,12.00116 6.13905,2.16809 17.33248,9.00457 17.33248,9.00457 l -15.66211,25.02495 c 0,0 -7.89515,-6.03065 -12.3873,-8.04667 -13.64354,-6.12304 -28.32246,-11.31055 -43.26679,-11.8628 -13.7068,-0.50653 -28.16254,1.68502 -40.37874,7.9218 -8.93737,4.56283 -16.92499,11.88273 -22.01974,20.52793 -4.51258,7.65732 -6.38353,16.98274 -6.45741,25.87051 -0.0808,9.72449 1.65723,20.04088 6.5938,28.41956 5.32511,9.03817 13.95313,16.45345 23.36862,21.07879 11.97852,5.884!
 42 26.0617,7.70686 39.39554,7.14102 13.49265,-0.57258 26.99241,-4.61413 39.10926,-10.57747 7.90422,-3.89009 21.03062,-16.00619 21.03062,-16.00619 z"
-         id="path3798-9"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccaaaaaaaaaccaaaaaaaaac"
-         style="font-size:246.21794128px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#717171;fill-opacity:1;fill-rule:nonzero;stroke:#717171;stroke-width:15.59312248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans" />
-      <path
-         style="font-size:237.17167664px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#717171;fill-opacity:1;stroke:#717171;stroke-width:15.59312248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
-         d="m -163.40625,-374.84375 0,158.53125 30.3125,0 0,-64.90625 0,-5.5 0,-22.53125 0,-13.625 0,-25.65625 51.34375,0 c 13.47677,1.4e-4 26.755278,-1.60943 36.803571,5.67857 3.812011,2.76484 6.141877,8.37673 6.383929,12.60268 0.25284,4.41429 -1.382816,9.14921 -4.125,12.625 -2.589339,3.28206 -6.695914,5.32 -10.6875,6.5625 -10.916012,3.39794 -23.25363,1.8125 -34.25,1.8125 l -18.625,0 c 0,0 5.71261,6.63439 14.053571,19.70089 12.092738,18.94385 36.998121,53.07057 50.544643,73.23661 l 38.464286,0 -31.5,-44.40625 c -6.283843,-8.4346 -14.78125,-21.84375 -14.78125,-21.84375 0,0 14.955152,-3.41113 21.237309,-7.52744 6.821201,-4.46952 13.073845,-10.57436 16.700191,-17.87881 3.5531978,-7.15711 4.8074392,-15.66922 4.0625,-23.625 -0.8053815,-8.60129 -3.72644,-17.48462 -9.057424,-24.28252 -5.378389,-6.85835 -13.415318,-11.75647 -21.613578,-14.71494 -14.070126,-5.07743 -28.46753,-4.25238 -44.672748,-4.25254 z"
-         id="path3805-0"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccasaascsccccaaaaasc" />
-      <path
-         style="font-size:247.64382935px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#717171;fill-opacity:1;stroke:#717171;stroke-width:15.59312248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
-         d="m 35.34375,-374.46875 0,63.4375 31.3125,0 0,-38.03125 116.375,0 0,-25.40625 z m 61.625,63.4375 0,30.90625 41.60268,-0.0128 0,-30.89291 z m -61.625,30.90625 0,63.75 147.6875,0 0,-25.78125 -116.375,0 0,-37.96875 z"
-         id="path3914-9"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccccccccccccccc" />
-      <path
-         style="font-size:139.86547852px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#717171;fill-opacity:1;stroke:#717171;stroke-width:15.59312248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
-         d="m 433.57143,-216.38942 0,-132.677 -62.14286,0 0,-25.4119 156.07143,0 0,25.4119 -62.76786,0 0,132.677 z"
-         id="path3870-0"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccccc" />
-      <path
-         d="m 696.42857,-216.38942 -71.77549,-158.0889 34.09265,0 52.86141,115.2837 53.125,-115.2837 34.47064,0 -71.70278,158.0889 z"
-         id="path3890-9"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccc"
-         style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#717171;fill-opacity:1;stroke:#717171;stroke-width:15.59312248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans" />
-      <path
-         style="font-size:247.64382935px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#717171;fill-opacity:1;stroke:#717171;stroke-width:15.59312248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
-         d="m 820.35714,-374.47833 0,63.4375 31.3125,0 0,-38.03125 116.375,0 0,-25.40625 z m 61.625,63.4375 0,30.90625 41.60268,-0.0128 0,-30.89291 z m -61.625,30.90625 0,63.75 147.6875,0 0,-25.78125 -116.375,0 0,-37.96875 z"
-         id="path3914-8-3"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="ccccccccccccccccccc" />
-      <path
-         sodipodi:nodetypes="ccccccc"
-         inkscape:connector-curvature="0"
-         id="path3069-7"
-         d="m 291.11334,-408.31842 89.2438,191.929 -33.87482,0 -57.55375,-121.5971 -54.19437,121.5971 -30.09134,0 z"
-         style="fill:#717171;fill-opacity:1;stroke:#717171;stroke-width:15.59312248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
-      <path
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path3069-9-6"
-         d="m 380.35714,-191.26182 0,26.1377 -175.71428,0 0,-26.1377 z"
-         style="fill:#717171;fill-opacity:1;stroke:#717171;stroke-width:15.59312248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
-      <path
-         inkscape:connector-curvature="0"
-         id="rect3895-6"
-         d="m 560.625,-374.47832 31.07143,0 0,158.0889 -31.07143,0 z"
-         style="fill:#717171;fill-opacity:1;fill-rule:nonzero;stroke:#717171;stroke-width:15.59312248;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
-    </g>
-    <g
-       transform="matrix(0.04060263,0,0,0.04059638,-5.6185351,472.17132)"
-       style="fill-rule:evenodd;display:inline"
-       id="g1619">
-      <defs
-         id="defs1621" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         id="path1630"
-         d="m 875.45,3825.1 7249.1,0 0,-2244.3 -7249.1,0 0,2244.3 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#ffffff"
-         id="path1632"
-         d="m 1333.89,3695.16 c 0,-31.54 -25.56,-57.1 -57.09,-57.1 -31.53,0 -57.09,25.56 -57.09,57.1 0,31.52 25.56,57.09 57.09,57.09 31.53,0 57.09,-25.57 57.09,-57.09 z m 179.32,-47.8 c 22.95,-15.62 53.43,-11.19 71.41,10.35 18,21.54 18,53.62 0,75.18 -17.98,21.54 -48.46,25.95 -71.41,10.34 l 0,47.31 -30.24,0 0,-149.7 30.24,0 0,6.52 z m 345.25,47.79 c 0,-31.54 -25.56,-57.09 -57.09,-57.09 -31.52,0 -57.08,25.55 -57.08,57.09 0,31.53 25.56,57.09 57.08,57.09 16.25,0 30.93,-6.79 41.32,-17.69 l -21.85,-20.84 21.85,20.84 -21.85,-20.84 c -5.59,5.87 -13.55,8.9 -21.66,8.24 -8.09,-0.69 -15.45,-4.98 -20.01,-11.69 l 77.28,0 c 1.32,-4.82 2.01,-9.88 2.01,-15.11 z m 1896.14,0 c 0,-31.54 -25.56,-57.09 -57.1,-57.09 -31.51,0 -57.08,25.55 -57.08,57.09 0,31.53 25.57,57.09 57.08,57.09 16.26,0 30.93,-6.79 41.33,-17.69 l -21.84,-20.84 21.84,20.84 -21.84,-20.84 c -5.61,5.87 -13.57,8.9 -21.67,8.24 -8.1,-0.69 -15.46,-4.98 -20.02,-11.69 l 77.29,0 c 1.32,-4.82 2.01,-9.88 2.01,-15.11 z m 1128.28,0 c 0,-31.5!
 4 -25.56,-57.09 -57.08,-57.09 -31.53,0 -57.08,25.55 -57.08,57.09 0,31.53 25.55,57.09 57.08,57.09 16.25,0 30.92,-6.79 41.32,-17.69 l -21.85,-20.84 21.85,20.84 -21.85,-20.84 c -5.61,5.87 -13.56,8.9 -21.66,8.24 -8.08,-0.69 -15.44,-4.98 -20.01,-11.69 l 77.28,0 c 1.32,-4.82 2,-9.88 2,-15.11 z m 2883.6,0 c 0,-31.54 -25.56,-57.09 -57.08,-57.09 -31.53,0 -57.09,25.55 -57.09,57.09 0,31.53 25.56,57.09 57.09,57.09 16.24,0 30.92,-6.79 41.31,-17.69 l -21.85,-20.84 21.85,20.84 -21.85,-20.84 c -5.59,5.87 -13.55,8.9 -21.66,8.24 -8.08,-0.69 -15.44,-4.98 -20.01,-11.69 l 77.28,0 c 1.32,-4.82 2.01,-9.88 2.01,-15.11 z m -5660.49,-8.49 c 0,-18.27 -8.91,-35.01 -23.06,-43.31 -14.14,-8.29 -31.13,-6.74 -43.96,4.01 l 0,-6.52 -30.24,0 0,108.93 30.24,0 0,-63.11 c 0,-10.16 8.22,-18.38 18.38,-18.38 10.16,0 18.39,8.22 18.39,18.38 l 0,63.11 30.25,0 0,-63.11 z m 437.24,-14.09 c 0,-14.47 -10.9,-27.39 -27.31,-32.39 -16.4,-4.98 -34.82,-0.99 -46.13,10.03 -11.32,11.02 -13.14,26.71 -4.56,39.3 4.34,6.08 10.52,10.54!
  17.62,12.76 8.04,2.71 16.25,4.9 24.57,6.57 6.82,1.33 10.41,4.!
 73 8.42,7.96 -1.98,3.22 -8.96,5.3 -16.32,4.84 -7.35,-0.46 -12.83,-3.3 -12.83,-6.64 l 0,-3.23 -30.21,0 0,3.23 c 0,16.03 12.23,30.29 30.43,35.5 18.2,5.21 38.37,0.22 50.18,-12.45 11.83,-12.64 12.7,-30.17 2.18,-43.59 -6.1,-7.12 -14.48,-11.87 -23.72,-13.42 -7.3,-1.36 -14.52,-3.13 -21.63,-5.27 -3.94,-1.31 -5,-3.46 -2.54,-5.2 2.46,-1.75 7.79,-2.65 12.91,-2.16 5.12,0.46 8.73,2.18 8.73,4.16 l 0,1.5 30.21,0 0,-1.5 z m 263.01,22.59 c 0,-31.54 -25.56,-57.1 -57.09,-57.1 -31.53,0 -57.09,25.56 -57.09,57.1 0,31.52 25.56,57.09 57.09,57.09 31.53,0 57.09,-25.57 57.09,-57.09 z m 149.73,8.78 0,-63.1 30.23,0 0,63.1 c 0,10.15 8.25,18.39 18.4,18.39 10.15,0 18.38,-8.24 18.38,-18.39 l 0,-63.1 30.24,0 0,108.93 -30.24,0 0,-6.54 c -12.83,10.76 -29.81,12.31 -43.96,4.01 -14.14,-8.28 -23.05,-25.01 -23.05,-43.3 z m 279.74,-56.58 0,-6.52 -30.24,0 0,108.93 30.24,0 0,-54.61 c 0,-7.14 2.84,-13.97 7.87,-19.02 5.05,-5.03 11.89,-7.86 19,-7.86 l 0,-30.12 c -9.57,0.56 -18.83,3.74 -26.87,9.2 z m 266.04,8.38 c -10.39!
 ,-10.88 -25.07,-17.68 -41.32,-17.68 -31.51,0 -57.07,25.54 -57.07,57.08 0,0 0,0 0,0.01 0,31.52 25.56,57.08 57.07,57.08 16.25,0 30.93,-6.8 41.32,-17.7 l -21.86,-20.83 c -4.88,5.11 -11.79,8.32 -19.43,8.32 -14.83,0 -26.87,-12.04 -26.88,-26.87 0,-0.01 0,-0.01 0,-0.01 0.01,-14.84 12.05,-26.86 26.88,-26.86 7.64,0 14.55,3.19 19.43,8.3 l 21.86,-20.84 z m 3499.75,39.33 -15.58,-54.23 -26.99,0 -15.58,54.23 -15.58,-54.23 -31.45,0 31.3,108.93 31.44,0 13.36,-46.5 13.37,46.5 31.43,0 31.31,-108.93 -31.44,0 -15.59,54.23 m -767.53,-89.7 -30.23,0 0,30.21 30.23,0 0,-30.21 m 0,35.47 -30.23,0 0,108.93 30.23,0 0,-108.93 m -626.55,54.51 33.66,54.42 -35.61,0 -15.84,-25.64 -15.87,25.64 -35.59,0 33.65,-54.42 -33.71,-54.51 35.6,0 15.92,25.73 15.91,-25.73 35.6,0 -33.72,54.51 m -1012.87,-54.51 -27.71,44.82 0,-80.29 -30.25,0 0,144.4 30.25,0 0,-45.43 34.06,45.43 37.76,0 -41.57,-55.46 33.07,-53.47 -35.61,0 m -460.66,-35.47 -30.24,0 0,30.21 30.24,0 0,-30.21 m 0,149.71 0,-114.24 -30.24,0 0,114.27 c 0,2.89 -2.!
 34,5.22 -5.22,5.22 l -8.56,0 0,30.21 8.56,0 c 19.59,0 35.46,-1!
 5.89 35.4!
 6,-35.46 m 1273.22,-59.92 c 0,-31.54 -25.56,-57.1 -57.09,-57.1 -31.52,0 -57.08,25.56 -57.08,57.1 0,31.52 25.56,57.09 57.08,57.09 31.53,0 57.09,-25.57 57.09,-57.09 z m -1052.95,48.07 0,6.54 30.23,0 0,-108.93 -30.23,0 0,63.1 c 0,10.15 -8.24,18.39 -18.39,18.39 -10.16,0 -18.39,-8.24 -18.39,-18.39 l 0,-63.1 -30.24,0 0,63.1 c 0,18.29 8.89,35.02 23.04,43.3 14.16,8.3 31.14,6.75 43.98,-4.01 z m 707.46,-95.87 0,-41.99 -30.23,0 0,144.4 30.23,0 0,-6.54 c 22.95,15.61 53.43,11.2 71.42,-10.34 17.99,-21.56 17.99,-53.63 0,-75.18 -17.99,-21.54 -48.47,-25.97 -71.42,-10.35 z m 992.23,-11.78 -25.1,0 c -0.66,-0.06 -1.32,0.18 -1.81,0.67 -0.48,0.47 -0.72,1.13 -0.66,1.81 l 0,2.78 0,0 13.79,0 0,30.22 -13.79,0 0,78.71 -30.24,0 0,-78.71 -13.79,0 0,-30.22 13.79,0 c 0,-19.59 15.88,-35.47 35.46,-35.47 l 22.35,0 0,30.21 z m 390.01,2.58 0,30.12 c -7.13,0 -13.97,2.83 -19.01,7.86 -5.05,5.05 -7.87,11.88 -7.87,19.02 l 0,54.61 -30.25,0 0,-108.93 30.25,0 0,6.52 c 8.03,-5.46 17.29,-8.64 26.88,-9.2 z m 177.25,9.2 !
 0,-6.52 -30.24,0 0,108.93 30.24,0 0,-63.11 c 0,-10.16 8.24,-18.38 18.4,-18.38 10.15,0 18.38,8.22 18.38,18.38 l 0,63.11 30.24,0 0,-63.11 c 0,-10.16 8.24,-18.38 18.4,-18.38 10.15,0 18.39,8.22 18.39,18.38 l 0,63.11 30.23,0 -0.01,-63.11 c 0,-19.18 -11.27,-36.57 -28.78,-44.38 -17.51,-7.83 -38.01,-4.63 -52.28,8.17 -14.83,-15.27 -36.89,-16.56 -52.97,-3.09 z m 646.89,0 0,-6.52 30.26,0 0,108.93 -30.26,0 0,-6.54 c -22.94,15.61 -53.41,11.2 -71.39,-10.34 -17.99,-21.56 -17.99,-53.63 0,-75.18 17.98,-21.54 48.45,-25.97 71.39,-10.35 z m 243.81,-9.2 0,30.12 c -7.12,0 -13.96,2.83 -19.01,7.86 -5.03,5.05 -7.87,11.88 -7.87,19.02 l 0,54.61 -30.23,0 0,-108.93 30.23,0 0,6.52 c 8.03,-5.46 17.31,-8.64 26.88,-9.2 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         id="path1634"
-         d="m 1303.67,3695.16 c 0,-14.85 -12.02,-26.88 -26.87,-26.88 -14.84,0 -26.89,12.03 -26.89,26.88 0,14.84 12.05,26.88 26.89,26.88 14.85,0 26.87,-12.04 26.87,-26.88 z m 3499.91,-15.11 44.46,0 c -5,-7.37 -13.32,-11.77 -22.23,-11.77 -8.9,0 -17.23,4.4 -22.23,11.77 m -1128.28,0 44.47,0 c -5.01,-7.37 -13.33,-11.77 -22.23,-11.77 -8.91,0 -17.22,4.4 -22.24,11.77 m -899.27,15.11 c 0,-14.85 -12.03,-26.88 -26.88,-26.88 -14.84,0 -26.87,12.03 -26.87,26.88 0,14.84 12.03,26.88 26.87,26.88 14.85,0 26.88,-12.04 26.88,-26.88 z m 2600.88,0 c 0,-14.85 -12.04,-26.88 -26.89,-26.88 -14.85,0 -26.87,12.03 -26.87,26.88 0,14.84 12.02,26.88 26.87,26.88 14.85,0 26.89,-12.04 26.89,-26.88 z m -261.53,0 c 0,-14.85 -12.03,-26.88 -26.88,-26.88 -14.84,0 -26.88,12.03 -26.88,26.88 0,14.84 12.04,26.88 26.88,26.88 14.85,0 26.88,-12.04 26.88,-26.88 z m -3548.42,0.29 c 0,-14.85 -12.02,-26.88 -26.88,-26.88 -14.83,0 -26.87,12.03 -26.87,26.88 0,14.84 12.04,26.88 26.87,26.88 14.86,0 26.88,-12.04 26.88,-26.88 z m !
 212.21,-15.4 44.47,0 c -5.01,-7.37 -13.34,-11.77 -22.24,-11.77 -8.9,0 -17.23,4.4 -22.23,11.77 m 5908,0 44.47,0 c -5,-7.37 -13.33,-11.77 -22.23,-11.77 -8.91,0 -17.23,4.4 -22.24,11.77 M 7268,3695.16 c 0,-14.85 -12.02,-26.88 -26.86,-26.88 -14.85,0 -26.88,12.03 -26.88,26.88 0,14.84 12.03,26.88 26.88,26.88 14.84,0 26.86,-12.04 26.86,-26.88 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#ffc000"
-         id="path1636"
-         d="m 918.37,1633.25 7156.1,0 0,1906.25 -7156.1,0 0,-1906.25" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:url(#linearGradient5792)"
-         id="path1638"
-         d="m 6542.59,3424.95 0,0 m 1512.67,-313.2 19.21,0 0,10.92 -8.28,0 0,43.65 -10.93,0 0,-54.57 m -54.55,0 32.74,0 0,10.92 -32.74,0 0,-10.92 m 0,43.64 32.74,0 0,10.93 -32.74,0 0,-10.93 m -76.4,-43.64 0,0 0,0 0,0 0,0 m 21.83,10.92 10.91,0 0,43.65 -10.91,0 0,-43.65 m 10.91,-10.92 10.92,0 0,10.92 -10.92,0 0,-10.92 m 10.92,10.92 10.92,0 0,43.65 -10.92,0 0,-43.65 m -43.66,-10.92 21.83,0 0,10.92 -10.92,0 0,43.65 -10.91,0 0,-54.57 m -21.83,-10.92 10.92,0 0,21.84 -10.92,0 0,-21.84 m 0,32.74 10.92,0 0,21.82 -10.92,0 0,-21.82 m -87.3,-21.82 10.92,0 0,21.82 -10.92,0 0,-21.82 m -78.14,0 10.91,0 0,10.92 -10.91,0 0,-10.92 m -32.74,21.82 10.92,0 0,21.82 -10.92,0 0,-21.82 m -42,21.82 42,0 0,10.93 -42,0 0,-10.93 m -43.65,-32.72 10.91,0 0,10.9 -10.91,0 0,-10.9 m -10.91,-32.75 32.74,0 0,10.91 -32.74,0 0,-10.91 m 0,65.47 32.74,0 0,10.93 -32.74,0 0,-10.93 m -54.57,-65.47 21.83,0 0,10.91 -21.83,0 0,-10.91 m -10.91,10.91 10.91,0 0,10.92 -10.91,0 0,-10.92 m 32.74,32.74 10.91,0 0,21.82 -10.91,!
 0 0,-21.82 m 294.75,-140.69 43.65,0 0,10.93 -43.65,0 0,-10.93 m -10.91,10.93 10.91,0 0,10.9 -10.91,0 0,-10.9 m 10.91,10.9 32.73,0 0,10.92 -32.73,0 0,-10.92 m 32.73,10.92 10.92,0 0,10.9 -10.92,0 0,-10.9 m -43.64,10.9 43.64,0 0,10.92 -43.64,0 0,-10.92 m 65.47,-43.65 10.91,0 0,43.65 -10.91,0 0,-43.65 m 10.91,65.48 32.75,0 0,10.92 -32.75,0 0,-10.92 m 54.57,-21.83 43.66,0 0,10.92 -43.66,0 0,-10.92 m 43.66,-10.9 10.91,0 0,10.9 -10.91,0 0,-10.9 m -32.74,-10.92 32.74,0 0,10.92 -32.74,0 0,-10.92 m -10.92,-10.9 10.92,0 0,10.9 -10.92,0 0,-10.9 m 10.92,-10.93 43.65,0 0,10.93 -43.65,0 0,-10.93 m -130.96,237.73 43.65,0 0,10.91 -43.65,0 0,-10.91 m -10.91,10.91 10.91,0 0,10.91 -10.91,0 0,-10.91 m 10.91,10.91 32.73,0 0,10.92 -32.73,0 0,-10.92 m 32.73,10.92 10.92,0 0,10.93 -10.92,0 0,-10.93 m -43.64,10.93 43.64,0 0,10.9 -43.64,0 0,-10.9 m -262.32,0 43.65,0 0,10.9 -43.65,0 0,-10.9 m 43.65,-10.93 10.9,0 0,10.93 -10.9,0 0,-10.93 m -32.75,-10.92 32.75,0 0,10.92 -32.75,0 0,-10.92 m -10.9,-10.91 1!
 0.9,0 0,10.91 -10.9,0 0,-10.91 m 10.9,-10.91 43.65,0 0,10.91 -!
 43.65,0 0,-10.91 m -328.02,118.87 43.66,0 0,10.91 -43.66,0 0,-10.91 m -10.9,10.91 10.9,0 0,10.91 -10.9,0 0,-10.91 m 10.9,10.91 32.74,0 0,10.92 -32.74,0 0,-10.92 m 32.74,10.92 10.92,0 0,10.91 -10.92,0 0,-10.91 m -43.64,10.91 43.64,0 0,10.91 -43.64,0 0,-10.91 m -724.99,0 43.64,0 0,10.91 -43.64,0 0,-10.91 m 43.64,-10.91 10.91,0 0,10.91 -10.91,0 0,-10.91 m -32.74,-10.92 32.74,0 0,10.92 -32.74,0 0,-10.92 m -10.9,-10.91 10.9,0 0,10.91 -10.9,0 0,-10.91 m 10.9,-10.91 43.65,0 0,10.91 -43.65,0 0,-10.91 m 1173.46,0 21.83,0 0,10.91 -10.91,0 0,43.65 -10.92,0 0,-54.56 m 43.66,10.91 10.91,0 0,43.65 -10.91,0 0,-43.65 m -10.92,-10.91 10.92,0 0,10.91 -10.92,0 0,-10.91 m -10.91,10.91 10.91,0 0,43.65 -10.91,0 0,-43.65 m -21.83,-10.91 0,0 0,0 0,0 0,0 m -1051.63,0 0,0 0,0 0,0 0,0 m 21.83,10.91 10.92,0 0,43.65 -10.92,0 0,-43.65 m 10.92,-10.91 10.9,0 0,10.91 -10.9,0 0,-10.91 m 10.9,10.91 10.92,0 0,43.65 -10.92,0 0,-43.65 m -43.65,-10.91 21.83,0 0,10.91 -10.91,0 0,43.65 -10.92,0 0,-54.56 m 1291.73,!
 -312.95 0,-43.65 10.92,0 0,65.48 -10.92,0 0,-10.91 -32.75,0 0,-10.92 32.75,0 m -853.76,354.96 0,-43.67 10.93,0 0,65.49 -10.93,0 0,-10.92 -32.73,0 0,-10.9 32.73,0 m -32.73,21.82 32.73,0 0,10.9 -32.73,0 0,-10.9 m -10.91,-65.49 10.91,0 0,43.67 -10.91,0 0,-43.67 m 919.22,-225.15 10.92,0 0,10.9 32.74,0 0,-10.9 10.91,0 0,21.82 -43.65,0 0,10.9 -10.92,0 0,-32.72 m -196.44,118.85 10.92,0 0,10.91 32.74,0 0,-10.91 10.9,0 0,21.83 -43.64,0 0,10.93 -10.92,0 0,-32.76 m 10.92,32.76 32.74,0 0,10.9 -32.74,0 0,-10.9 m 0,-43.67 32.74,0 0,10.91 -32.74,0 0,-10.91 m -262.33,0 32.74,0 0,10.91 -32.74,0 0,-10.91 m 0,43.67 32.74,0 0,10.9 -32.74,0 0,-10.9 m -10.91,-32.76 10.91,0 0,10.91 32.74,0 0,-10.91 10.91,0 0,21.83 -43.65,0 0,10.93 -10.91,0 0,-32.76 m 393.28,118.87 10.91,0 0,10.91 32.75,0 0,-10.91 10.92,0 0,21.83 -43.67,0 0,10.91 -10.91,0 0,-32.74 m 10.91,32.74 32.75,0 0,10.91 -32.75,0 0,-10.91 m 0,-43.65 32.75,0 0,10.91 -32.75,0 0,-10.91 m 130.97,0 8.28,0 0,10.91 -8.28,0 0,-10.91 m 0,43.65 8.28,0!
  0,10.91 -8.28,0 0,-10.91 m -10.93,-32.74 10.93,0 0,10.91 8.28!
 ,0 0,0 0,!
 0 0,10.92 -8.28,0 0,10.91 -10.93,0 0,-32.74 m -1564.68,-10.91 32.74,0 0,10.91 -32.74,0 0,-10.91 m 0,43.65 32.74,0 0,10.91 -32.74,0 0,-10.91 m -10.92,-32.74 10.92,0 0,10.91 32.74,0 0,-10.91 10.91,0 0,21.83 -43.65,0 0,10.91 -10.92,0 0,-32.74 m 140.22,21.83 21.82,0 0,20.17 -21.82,0 0,-20.17 m 1315.34,-151.61 32.75,0 0,10.91 -32.75,0 0,-10.91 m -10.91,10.91 10.91,0 0,32.76 -10.91,0 0,-32.76 m 10.91,32.76 32.75,0 0,10.9 -32.75,0 0,-10.9 m 32.75,-10.93 10.92,0 0,10.93 -10.92,0 0,-10.93 m 32.74,-32.74 32.74,0 0,10.91 -32.74,0 0,-10.91 m -10.92,32.74 10.92,0 0,10.93 -10.92,0 0,-10.93 m -876.5,0 10.91,0 0,10.93 -10.91,0 0,-10.93 m -32.74,10.93 32.74,0 0,10.9 -32.74,0 0,-10.9 m -10.92,-32.76 10.92,0 0,32.76 -10.92,0 0,-32.76 m 10.92,-10.91 32.74,0 0,10.91 -32.74,0 0,-10.91 m 603.67,-21.83 10.92,0 0,10.92 -10.92,0 0,-10.92 m 65.48,43.65 10.91,0 0,10.92 -10.91,0 0,-10.92 m -327.81,-21.82 21.83,0 0,10.91 -21.83,0 0,-10.91 m 21.83,10.91 10.92,0 0,43.66 -10.92,0 0,-43.66 m -297.69,-10.91 !
 31.09,0 0,10.91 -31.09,0 0,-10.91 m -10.91,10.91 10.91,0 0,32.76 -10.91,0 0,-32.76 m 10.91,32.76 31.09,0 0,10.9 -31.09,0 0,-10.9 m 31.09,-32.76 10.91,0 0,32.76 -10.91,0 0,-32.76 m 526.25,118.87 10.91,0 0,32.74 -10.91,0 0,-32.74 m -31.09,32.74 31.09,0 0,10.91 -31.09,0 0,-10.91 m -10.91,-32.74 10.91,0 0,32.74 -10.91,0 0,-32.74 m 10.91,-10.91 31.09,0 0,10.91 -31.09,0 0,-10.91 m -272.22,-118.87 10.92,0 0,10.91 10.91,0 0,10.91 -10.91,0 0,32.75 -10.92,0 0,-54.57 m 655.2,0 10.93,0 0,10.91 8.28,0 0,10.91 -8.28,0 0,32.75 -10.93,0 0,-54.57 m -535.15,54.57 -10.9,0 0,-10.9 -10.92,0 0,-10.93 10.92,0 0,-32.74 10.9,0 0,54.57 m -43.65,-10.9 -10.91,0 0,-43.67 10.91,0 0,43.67 m 21.83,10.9 -21.83,0 0,-10.9 21.83,0 0,10.9 m -294.66,-54.57 10.92,0 0,10.91 10.91,0 0,10.91 -10.91,0 0,32.75 -10.92,0 0,-54.57 m 43.65,10.91 10.91,0 0,43.66 -10.91,0 0,-43.66 m -21.82,-10.91 21.82,0 0,10.91 -21.82,0 0,-10.91 m 326.77,118.87 21.82,0 0,10.91 -21.82,0 0,-10.91 m 21.82,10.91 10.92,0 0,43.65 -10.92,0 0,-43!
 .65 m -43.65,-10.91 10.93,0 0,10.91 10.9,0 0,10.91 -10.9,0 0,3!
 2.74 -10.!
 93,0 0,-54.56 m 361.17,54.56 -21.82,0 0,-10.91 21.82,0 0,10.91 m -21.82,-10.91 -10.91,0 0,-43.65 10.91,0 0,43.65 m 43.65,10.91 -10.92,0 0,-10.91 -10.91,0 0,-10.91 10.91,0 0,-32.74 10.92,0 0,54.56 m 130.96,0 -10.91,0 0,-10.91 -10.91,0 0,-10.91 10.91,0 0,-32.74 10.91,0 0,54.56 m -43.65,-10.91 -10.92,0 0,-43.65 10.92,0 0,43.65 m 21.83,10.91 -21.83,0 0,-10.91 21.83,0 0,10.91 m 10.91,-162.52 10.91,0 0,43.66 -43.65,0 0,-10.9 32.74,0 0,-10.93 -32.74,0 0,-10.92 32.74,0 0,-10.91 m -524.87,118.87 10.91,0 0,43.65 -43.65,0 0,-10.91 32.74,0 0,-10.91 -32.74,0 0,-10.92 32.74,0 0,-10.91 m -43.66,21.83 10.92,0 0,10.91 -10.92,0 0,-10.91 m 10.92,-32.74 32.74,0 0,10.91 -32.74,0 0,-10.91 m -459.84,0 32.74,0 0,10.91 -32.74,0 0,-10.91 m -10.92,32.74 10.92,0 0,10.91 -10.92,0 0,-10.91 m 43.66,-21.83 10.91,0 0,43.65 -43.65,0 0,-10.91 32.74,0 0,-10.91 -32.74,0 0,-10.92 32.74,0 0,-10.91 m 853.74,-270.47 -43.64,0 0,76.4 43.64,0 0,-10.93 -32.73,0 0,-21.82 32.73,0 0,-10.9 -32.73,0 0,-21.84 32.73,0 0,-10.!
 91 m -109.13,0 0,76.4 10.92,0 0,-54.57 10.91,0 0,-10.92 -10.91,0 0,-10.91 -10.92,0 m 54.56,0 0,76.4 -10.9,0 0,-54.57 -10.91,0 0,-10.92 10.91,0 0,-10.91 10.9,0 m -89.04,0 10.91,0 0,43.65 10.92,0 0,10.92 -10.92,0 0,21.83 -10.91,0 0,-21.83 -32.74,0 0,-21.82 10.91,0 0,10.9 21.83,0 0,-21.82 -10.92,0 0,-10.92 10.92,0 0,-10.91 m -96.57,0 0,10.91 31.09,0 0,10.92 10.91,0 0,-10.92 10.92,0 0,-10.91 -52.92,0 m 31.09,21.83 -10.91,0 0,10.92 -10.91,0 0,10.9 32.73,0 0,-10.9 -10.91,0 0,-10.92 m -96.56,-10.92 0,54.56 10.91,0 0,-10.9 10.91,0 0,-10.92 -10.91,0 0,-32.74 -10.91,0 m 43.65,0 0,10.92 -10.92,0 0,10.92 10.92,0 0,32.72 10.91,0 0,-54.56 -10.91,0 m -109.13,10.92 0,43.64 10.91,0 0,-21.82 32.74,0 0,-10.9 -32.74,0 0,-10.92 -10.91,0 m 10.91,43.64 32.74,0 0,10.93 -32.74,0 0,-10.93 m -702.32,194.09 -10.92,0 0,10.91 -10.9,0 0,10.91 32.73,0 0,-10.91 -10.91,0 0,-10.91 m -31.08,-21.83 0,10.91 31.08,0 0,10.92 10.91,0 0,-10.92 10.92,0 0,-10.91 -52.91,0 m 0,65.48 41.99,0 0,10.91 -41.99,0 0,-10.91 m !
 41.99,-21.83 10.92,0 0,21.83 -10.92,0 0,-21.83 m 877.02,-140.6!
 9 0,10.91!
  32.74,0 0,10.91 10.92,0 0,-10.91 10.91,0 0,-10.91 -54.57,0 m 10.92,32.74 10.91,0 0,10.93 32.74,0 0,10.9 -54.57,0 0,-10.9 10.92,0 0,-10.93 m -65.48,-32.74 21.83,0 0,43.67 10.91,0 0,10.9 -32.74,0 0,-10.9 10.91,0 0,-32.76 -10.91,0 0,-10.91 m -327.8,0 21.82,0 0,43.67 10.92,0 0,10.9 -32.74,0 0,-10.9 10.9,0 0,-32.76 -10.9,0 0,-10.91 m 10.9,-21.83 10.92,0 0,10.92 -10.92,0 0,-10.92 m -131.58,118.87 10.92,0 0,10.91 -10.92,0 0,-10.91 m -10.91,21.83 21.83,0 0,43.65 10.92,0 0,10.91 -32.75,0 0,-10.91 10.91,0 0,-32.74 -10.91,0 0,-10.91 m 98.84,-86.13 10.93,0 0,10.93 -10.93,0 0,-10.93 m -10.9,10.93 10.9,0 0,10.9 -10.9,0 0,-10.9 m -10.92,-65.5 10.92,0 0,21.83 10.9,0 0,10.91 -10.9,0 0,32.76 -10.92,0 0,-32.76 -10.91,0 0,-10.91 10.91,0 0,-21.83 m 64.86,118.87 10.9,0 0,21.83 10.93,0 0,10.91 -10.93,0 0,32.74 -10.9,0 0,-32.74 -10.93,0 0,-10.91 10.93,0 0,-21.83 m 10.9,65.48 10.93,0 0,10.91 -10.93,0 0,-10.91 m 10.93,-10.91 10.9,0 0,10.91 -10.9,0 0,-10.91 m 21.82,-32.74 10.91,0 0,10.91 10.91,0 0,1!
 0.91 -10.91,0 0,32.74 -10.91,0 0,-54.56 m 43.65,10.91 10.92,0 0,12.57 -10.92,0 0,-12.57 m -21.83,-10.91 21.83,0 0,10.91 -21.83,0 0,-10.91 m -274.31,-21.83 20.17,0 0,65.48 10.92,0 0,9.26 -31.09,0 0,-9.26 10.9,0 0,-54.57 -10.9,0 0,-10.91 m -194.79,0 20.17,0 0,65.48 10.92,0 0,9.26 -31.09,0 0,-9.26 10.91,0 0,-54.57 -10.91,0 0,-10.91 m 654.63,21.83 21.82,0 0,10.91 -21.82,0 0,-10.91 m -10.92,10.91 10.92,0 0,32.74 -10.92,0 0,-32.74 m 32.74,0 10.91,0 0,-32.74 10.92,0 0,74.74 -43.65,0 0,-9.26 32.73,0 0,-21.83 -10.91,0 0,-10.91 m 164.73,0 10.92,0 0,32.74 -10.92,0 0,-32.74 m 10.92,-10.91 21.83,0 0,10.91 -21.83,0 0,-10.91 m 21.83,10.91 10.91,0 0,-10.91 10.9,0 0,74.73 -10.9,0 0,-21.82 -32.74,0 0,-9.26 32.74,0 0,-21.83 -10.91,0 0,-10.91 m -908.31,-10.91 -21.84,0 0,10.91 21.84,0 0,-10.91 m -21.84,10.91 -10.91,0 0,-10.91 -10.91,0 0,74.73 10.91,0 0,-21.82 32.75,0 0,-9.26 -32.75,0 0,-21.83 10.91,0 0,-10.91 m 32.74,0 -10.9,0 0,32.74 10.9,0 0,-32.74 m -132.4,0 -10.93,0 0,32.74 10.93,0 0,-32.74!
  m -32.74,0 -10.91,0 0,-10.91 -10.93,0 0,74.73 10.93,0 0,-21.8!
 2 32.72,0!
  0,-9.26 -32.72,0 0,-21.83 10.91,0 0,-10.91 m 21.81,-10.91 -21.81,0 0,10.91 21.81,0 0,-10.91 m -242.77,75.47 0,0" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         id="path1640"
-         d="m 2772.69,2181.06 c -98.54,-428.82 -353.71,-447.47 -413.71,-447.47 l 0,-25.08 c 133.05,0 348.1,94.96 426.25,420.85 100.11,-325.2 271.08,-412.49 391.07,-414.14 114.35,-1.58 184.87,25.07 293.24,81.53 l 0,-50.89 312.9,0 0,-42.89 25.07,0 0,42.89 53.05,0 0,25.07 -53.05,0 0,613.13 225.02,-568.78 215.58,0 18.78,-44.35 -268.62,0 0,-25.07 279.26,0 29.52,-69.67 23.08,9.79 -25.39,59.88 59.43,0 0,25.07 -70.05,0 -175.35,413.86 232.24,0 0,310.18 c 217.36,-106.98 477.4,-28.48 608.47,180.93 130.01,-200.39 383.99,-280.25 605.28,-190.31 l -8.81,-14.24 374.02,0 74.73,120.8 72.97,-117.99 c 1.08,-1.75 2.98,-2.81 5.05,-2.81 l 0,0 c 2.14,0 4.12,1.16 5.15,3.04 1.06,1.88 1.01,4.17 -0.12,6 l -76.09,123.02 9.74,15.76 89.7,-145.01 c 1.08,-1.75 2.98,-2.81 5.04,-2.81 l 0,0 c 2.15,0 4.13,1.16 5.17,3.04 1.05,1.88 0.99,4.17 -0.14,6 l -92.8,150.04 9.75,15.77 108.15,-174.85 374.01,0 -295.16,477.2 9.76,15.76 311.43,-503.52 -388.55,0 c -2.13,0 -4.12,-1.16 -5.17,-3.03 -1.04,-1.9 -0.99,-4.18 0.14,-6.!
 01 l 0,0 c 1.09,-1.74 2.99,-2.8 5.03,-2.8 l 409.8,0 -309,499.6 289.06,467.36 c 1.14,1.84 1.19,4.13 0.15,6.01 -1.04,1.87 -3.03,3.03 -5.18,3.03 -2.05,0 -3.96,-1.06 -5.03,-2.8 l -285.98,-462.35 -9.75,15.76 277.96,449.39 -374.01,0 -71.44,-115.5 -69.72,112.7 c -1.08,1.74 -2.97,2.8 -5.04,2.8 l 0,0 c -0.96,0 -1.92,-0.24 -2.78,-0.7 -0.85,0.46 -1.81,0.7 -2.79,0.7 -2.13,0 -4.12,-1.16 -5.17,-3.03 -1.05,-1.88 -1,-4.17 0.14,-6.01 l 75.6,-122.22 -9.75,-15.77 -89.2,144.23 c -1.08,1.74 -2.99,2.8 -5.05,2.8 -2.14,0 -4.11,-1.16 -5.16,-3.03 -1.05,-1.88 -0.99,-4.17 0.13,-6.01 l 92.32,-149.25 -9.75,-15.76 -107.65,174.05 -374.02,0 10.94,-17.7 c -221.48,91.5 -476.71,12.28 -607.46,-188.54 -130.9,209.94 -391.28,286.75 -608.92,179.63 l 0,26.61 -317.8,0 0,-2.38 -52.45,0 22.91,64.68 -23.64,8.36 -25.87,-73.04 -100.74,0 0,-25.07 91.86,0 -187.19,-528.36 -11.05,26.94 0,528.87 -207.29,0 0,-1609.67 207.29,0 0,721.65 35.4,-89.48 0,-676.52 -287.82,0 0,73.28 c -124.87,-83.95 -208.53,-103.92 -318.32,-103.92 -86.!
 93,0 -277.7,63.37 -378.54,440.77 l -25.07,0 z m 448.99,1277.73!
  -395.21,0.02 0,-25.08 269.89,0 c -205.67,-91.32 -295.28,-421.82 -295.28,-813.61 0,-461.94 124.51,-838.69 417.02,-838.69 134.42,0 210.79,69.05 276.52,131.98 l 0,41.04 c 0.02,0.04 0.05,0.08 0.07,0.11 l -0.02,347.84 -22.33,0 c -48.46,-88.29 -137.56,-212.3 -229.57,-212.3 -153.37,0 -229.22,237.52 -227.3,530.02 -1.92,292.5 73.93,530.02 227.3,530.02 92.01,0 181.11,-124.01 229.57,-212.32 l 22.33,0 0.02,347.85 c -0.02,0.04 -0.05,0.08 -0.07,0.12 l 0,41.04 c -65.14,62.36 -140.75,130.73 -272.94,131.96 z M 2355.94,1781.43 c 289.99,0 413.44,395.49 413.44,838.69 0,443.19 -123.45,838.69 -413.44,838.69 -289.99,0 -413.43,-376.76 -413.43,-838.69 0,-461.94 123.44,-838.69 413.43,-838.69 z m -721.95,33.85 -377.58,0 0,934.79 c 2.43,6.54 4.86,13.08 7.27,19.62 16.95,-4.64 34.54,-6.51 52.09,-5.59 34.33,1.85 65.28,21.33 81.77,51.51 14.9,27.27 21.99,58.11 20.5,89.14 -0.63,12.98 -4.05,25.67 -10.02,37.21 -14.67,28.33 -37.3,51.74 -65.12,67.36 9.41,31.95 18.41,64 26.99,96.18 16.39,61.57 24.11,125.11 22.8!
 8,188.81 -0.32,16.43 -3.88,32.64 -10.49,47.68 -6.78,15.42 -18.64,28.04 -33.62,35.76 -10.86,5.6 -23.54,6.52 -35.1,2.56 -11.56,-3.96 -21,-12.46 -26.17,-23.53 -5.99,-12.91 -8.94,-27.02 -8.57,-41.26 0.2,-7.99 4.06,-15.47 10.48,-20.25 8.11,-6.05 18.05,-9.07 28.14,-8.59 6.62,0.32 12.54,4.18 15.52,10.12 2.97,5.93 2.49,13 -1.22,18.49 -4.57,6.77 -11.3,11.81 -19.07,14.31 l 2.66,5.8 c 1.25,3.29 4.03,5.77 7.46,6.6 3.43,0.85 7.04,-0.03 9.68,-2.35 13.04,-11.1 21.16,-26.9 22.58,-43.95 1.88,-29.39 1.27,-58.89 -1.85,-88.18 -9.17,-62.54 -22.8,-124.35 -40.8,-184.95 -4.62,1.47 -9.31,2.73 -14.03,3.78 -13.87,3.07 -27.87,5.48 -41.96,7.19 l 0,391.41 252.69,0 0,52.35 25.08,0 0,-52.35 53.83,0 0,-25.07 -53.83,0 0,-564.41 24.2,0 220.54,589.48 242.19,0 21.89,55.87 23.33,-9.15 -21.75,-55.54 75.57,0 0,-25.07 -85.39,0 -260.8,-665.62 c 96,-99.03 151.07,-248.06 151.07,-437.34 0,-253.68 -68.67,-472.82 -291.04,-472.82 z m -332.61,1171.98 c -14.4,5.91 -29.53,9.9 -44.97,11.81 l 0,-142.65 c 15.55,43.24 30.49,86.!
 7 44.82,130.36 0.05,0.16 0.1,0.31 0.15,0.48 0,0 0,0 0,0 0,0 0,!
 0 0,0 0,0!
  0,0 0,0 m -23.68,-178.71 c 4.94,-1.36 9.92,-2.51 14.94,-3.44 15.76,-2.92 32.02,0.87 44.82,10.5 11.66,8.75 20.05,21.15 23.86,35.23 8.47,31.39 6.62,64.67 -5.27,94.93 -2.48,6.35 -6.6,11.93 -11.91,16.21 -4.09,3.28 -8.3,6.37 -12.67,9.27 -16.72,-54.62 -34.63,-108.88 -53.77,-162.7 m -21.29,190.52 c -3.96,0.48 -7.94,0.84 -11.92,1.05 -43.42,2.36 -83.8,-22.28 -101.56,-61.98 -31.51,-70.46 -36.08,-150.02 -12.87,-223.62 8.15,-25.84 16.57,-51.59 25.27,-77.24 2.4,-7.1 4.82,-14.19 7.29,-21.29 23.3,55.36 45.6,111.16 66.83,167.35 -30.27,16.22 -54.69,41.51 -69.84,72.31 -2.5,5.1 -1.52,11.21 2.47,15.27 3.95,4.05 10.06,5.15 15.19,2.76 4.48,-3.22 8.62,-6.87 12.39,-10.88 15.29,-16.97 33.63,-30.95 54.07,-41.22 4.26,11.61 8.49,23.22 12.68,34.84 l 0,-106.35 c -20.1,-53.81 -41.41,-107.14 -63.89,-160 -3.72,-8.75 -7.54,-17.47 -11.4,-26.14 4.67,-12.85 9.43,-25.67 14.25,-38.47 6.9,-18.25 12.17,-37.07 15.75,-56.25 4.02,-21.69 2.22,-44.08 -5.26,-64.84 -17.03,-47.33 -49.87,-87.33 -92.97,-113.24 -18.96,-11.4!
 1 -40.82,-17.04 -62.94,-16.23 -18.52,0.7 -33.48,15.36 -34.57,33.87 -0.97,16.78 2.93,33.51 11.21,48.15 7.69,13.55 15.94,26.74 24.79,39.57 27.29,39.55 50.86,81.53 70.44,125.4 3.86,8.64 7.68,17.28 11.48,25.93 -5.97,16.43 -11.82,32.89 -17.54,49.41 -26.57,76.62 -43.7,156.21 -51.02,236.98 -3.46,38.11 -0.07,76.54 10,113.47 13.84,50.66 58.87,86.54 111.34,88.68 23.48,0.96 47,0.02 70.33,-2.82 l 0,-34.47 m 343.36,-1250.81 -390.37,0 0,-60.83 -25.07,0 0,60.83 -58.38,0 0,25.06 58.38,0 0,279.28 25.07,0 0,-279.28 390.37,0 0,-25.06" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#b4c3d3"
-         id="path1642"
-         d="m 6454.4,2508.06 -287.67,0 -128.61,207.93 -128.6,-207.93 -287.67,0 53.94,87.23 c -109.8,-93.21 -256.85,-129.78 -397.51,-98.89 -140.67,30.9 -258.85,125.75 -319.46,256.4 -54.32,-121.55 -156.59,-212.52 -280.24,-249.35 -123.67,-36.82 -256.59,-15.89 -364.28,57.41 l 0,-345.07 -244.36,0 0,1166.72 244.36,0 0,-47.06 c 107.88,73.43 241.06,94.3 364.9,57.22 123.82,-37.08 226.09,-128.46 280.16,-250.39 61.3,131.16 180.62,225.93 322.24,255.95 141.64,30.03 289.14,-8.18 398.37,-103.19 l -57.64,93.19 287.68,0 128.11,-207.14 128.12,207.14 287.67,0 -271.95,-439.68 272.44,-440.49 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         id="path1644"
-         d="m 4748.65,2946.97 c 0,-119.95 -97.24,-217.19 -217.18,-217.19 -119.94,0 -217.17,97.24 -217.17,217.19 0,119.94 97.23,217.18 217.17,217.18 119.94,0 217.18,-97.24 217.18,-217.18 z m 1076.57,-110.08 c 18.22,74.12 17.74,151.6 -1.35,225.49 l 70.42,-113.83 -69.07,-111.66 m -230.78,110.08 c 0,-119.95 -97.23,-217.19 -217.18,-217.19 -119.95,0 -217.18,97.24 -217.18,217.19 0,119.94 97.23,217.18 217.18,217.18 119.95,0 217.18,-97.24 217.18,-217.18 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#ffc000"
-         id="path1646"
-         d="m 1463.69,3399.88 45.41,0 0,-564.41 -45.41,0 0,564.41 m 93.77,-920.19 c 76.6,0 88.61,-97.11 88.53,-163.75 -0.08,-66.65 -9.75,-138.98 -76.58,-138.98 l -105.72,0 0,368.29 45.41,0 0,-65.56 48.36,0 z m 0,25.07 -23.28,0 0,40.49 1.6,0 c 170.71,0 170.71,-152.85 170.71,-205.97 l 0,-34.28 c 0,-51.48 -0.35,-193.6 -144.09,-193.6 l -98.71,0 0,40.49 93.77,0 c 48.8,0 114.23,6.94 114.23,170.52 0,163.58 -65.77,180.99 -114.23,182.35 z m -406.49,-4.47 c -19.66,-39.21 -40.9,-77.61 -63.73,-115.06 -7.25,-11.92 -13.8,-24.23 -19.64,-36.9 -3.81,-8.25 -6.07,-17.14 -6.68,-26.21 -0.13,-1.96 0.58,-3.89 1.94,-5.29 1.36,-1.41 3.25,-2.17 5.21,-2.1 9.42,0.32 18.61,3.02 26.7,7.86 34.79,20.81 59.58,54.9 68.67,94.41 2.63,11.51 2.71,23.49 0.23,35.04 -3.52,16.27 -7.75,32.37 -12.7,48.25 l 0,0 m 4220.37,627.03 11.84,0 c 98.46,-3.23 176.14,-84.81 174.52,-183.32 -1.62,-98.5 -81.92,-177.5 -180.44,-177.5 -98.51,0 -178.81,79 -180.43,177.5 -1.62,98.51 76.05,180.09 174.51,183.32 z m -845.78,0 11.84,0 c 98.4!
 5,-3.23 176.13,-84.81 174.5,-183.32 -1.61,-98.5 -81.92,-177.5 -180.43,-177.5 -98.5,0 -178.82,79 -180.43,177.5 -1.62,98.51 76.06,180.09 174.52,183.32 z m -565.76,-567.39 73.41,189.89 0,-363.14 -73.41,173.25 m 12.08,837.57 -199.5,-563.15 23.38,-56.99 230.54,620.14 -54.42,0 M 2355.93,2084.66 c 139.65,0 199.05,252.48 199.05,535.46 0,282.97 -59.4,535.45 -199.05,535.45 -139.63,0 -199.04,-240.54 -199.04,-535.45 0,-294.92 59.41,-535.46 199.04,-535.46 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#000000"
-         id="path1648"
-         d="m 5371.34,3127.32 c 3.95,0.28 7.88,0.27 11.84,0 l 0,-16.58 c 89.32,-3.24 159.56,-77.44 157.93,-166.8 -1.64,-89.35 -74.58,-160.92 -163.96,-160.86 -2.14,-0.04 -3.92,1.09 -4.99,2.92 -1.09,1.86 -1.09,4.15 -0.01,5.99 1.07,1.86 2.87,2.98 5,2.94 55.04,-0.05 105.79,29.67 132.71,77.67 26.92,47.99 25.79,106.81 -2.93,153.74 -28.73,46.93 -80.61,74.68 -135.59,72.54 l 0,28.44 z m -839.87,-44.91 c -3.28,0 -5.91,-2.65 -5.91,-5.91 0,-3.28 2.63,-5.93 5.91,-5.93 68.27,0 123.61,-55.34 123.61,-123.6 0,-68.28 -55.34,-123.62 -123.61,-123.62 -3.28,0 -5.91,-2.65 -5.91,-5.91 0,-3.28 2.63,-5.93 5.91,-5.93 74.81,0 135.44,60.64 135.44,135.46 0,74.8 -60.63,135.44 -135.44,135.44 z m 845.79,0 c -3.28,0 -5.92,-2.65 -5.92,-5.91 0,-3.28 2.64,-5.93 5.92,-5.93 68.26,0 123.6,-55.34 123.6,-123.6 0,-68.28 -55.34,-123.62 -123.6,-123.62 -3.28,0 -5.92,-2.65 -5.92,-5.91 0,-3.28 2.64,-5.93 5.92,-5.93 74.81,0 135.45,60.64 135.45,135.46 0,74.8 -60.64,135.44 -135.45,135.44 z m -851.7,44.91 c 3.93,0.19 7.88,0.!
 15 11.84,0 l 0,-16.58 c 89.31,-3.24 159.56,-77.44 157.93,-166.8 -1.65,-89.35 -74.61,-160.92 -163.97,-160.86 -2.15,-0.04 -3.91,1.09 -5,2.92 -1.08,1.86 -1.08,4.15 0,5.99 1.08,1.86 2.86,2.98 5,2.94 55.05,-0.05 105.8,29.67 132.71,77.67 26.93,47.99 25.8,106.81 -2.93,153.74 -28.73,46.93 -80.59,74.68 -135.58,72.54 l 0,28.44 z m -2169.62,-47.1 0,-61.93 -25.07,0 0,65.95 0,25.07 c 135.53,0 175.31,-230.16 176.25,-476.67 l 570.42,0 c 1.35,173.53 39.4,439.13 152.69,457.44 l 0,65.49 25.07,0 0,-522.93 99.81,0 0,-25.07 -99.81,0 0,-90.45 -25.07,0 0,90.45 -127.54,0 c 2.72,-171.99 50.77,-423.43 140.08,-427.51 l 0,-25.08 c -117.15,4.53 -162.68,272.92 -165.16,452.59 l -570.53,0 c -1.63,-245.33 -41.23,-473.61 -176.21,-473.61 l 0,24.06 0,449.55 -76.62,0 0,25.07 76.62,0 0,87.58 25.07,0 0,-87.58 126.07,0 c -1.26,157.79 -21.13,412.74 -126.07,447.58 z" />
-      <path
-         inkscape:connector-curvature="0"
-         style="fill:#ffc000"
-         id="path1650"
-         d="m 3102.62,2632.64 c 1.61,164.28 43.22,409.55 127.61,431.82 l 0,-431.82 -127.61,0 z m -620.57,-25.07 -126.11,0 0,-445.5 c 104.4,34.7 125.36,287.45 126.11,445.5 z" />
-    </g>
-    <g
-       id="g4811"
-       transform="matrix(0.28782617,0,0,0.28778183,-662.15246,493.1005)">
-      <path
-         sodipodi:nodetypes="caaaccaaaaaac"
-         inkscape:connector-curvature="0"
-         id="path4120-2"
-         d="m 3441.9854,-52.081289 c 0,0 15.0336,27.12825 21.5691,41.17729 4.9147,10.56485045 10.0813,21.13656 13.2355,32.35358 2.7778,9.87873 4.0169,20.16916 4.9021,30.39276 1.0995,12.69889 0.4902,38.23606 0.4902,38.23606 l 33.334,-0.49021 c 0,0 0.058,-22.26651 -0.9804,-33.334 -0.6803,-7.24824 -1.6073,-14.5212 -3.4315,-21.56905 -2.8754,-11.10933 -6.9105,-21.95551 -11.7649,-32.3535896 -4.5527,-9.75183 -9.5084,-19.4943904 -16.1768,-27.9417304 -5.4429,-6.89483 -11.8861,-13.15127 -19.118,-18.13761 -3.5025,-2.41497 -7.5117,-4.05655 -11.5025,-5.53074 -3.4153,-1.2616 -10.5568,-2.80276 -10.5568,-2.80276 z"
-         style="fill:url(#radialGradient4348);fill-opacity:1;stroke:none;filter:url(#filter4795)" />
-      <path
-         sodipodi:nodetypes="ccsssccccsscsscccccsssc"
-         inkscape:connector-curvature="0"
-         id="path4052"
-         d="m 2342.1282,-7.2878089 4.6721,18.8393459 c 0,0 -0.666,6.762466 -2.2946,11.138726 -2.1082,5.664947 -3.4764,11.555672 -4.3978,17.499098 -2.3126,14.918348 -2.2378,30.117456 -2.7779,45.204327 -1.9826,55.385482 -1.6935,166.254242 -1.6935,166.254242 l -3.8623,769.90457 -3.5356,335.8758 -5.5558,286.3782 c 0,0 -0.4724,24.2529 0,36.3655 0.4212,10.7996 2.3355,21.5188 2.5254,32.3249 0.1036,5.897 -0.7576,17.6776 -0.7576,17.6776 0,0 -5.5052,-7.5384 -7.0711,-11.8693 -3.3035,-9.1364 -3.6346,-19.1168 -4.5457,-28.7893 -2.022,-21.4654 -2.0203,-64.6498 -2.0203,-64.6498 l 0.5373,-185.0039 5.7143,-536.07142 4.1025,-705.00747 1.0101,-123.238609 c 0,0 0.2554,-14.51044 1.0102,-21.71828 0.9772,-9.331859 2.1171,-18.716044 4.5457,-27.779195 1.4229,-5.310342 3.6722,-10.371846 5.8319,-15.427544 2.5992,-6.0845364 8.5627,-17.9074909 8.5627,-17.9074909 z"
-         style="fill:#cacaca;fill-opacity:1;stroke:none;filter:url(#filter4110)" />
-      <path
-         sodipodi:nodetypes="caaaacaaacccaaccaaaacac"
-         inkscape:connector-curvature="0"
-         id="path3075-4"
-         d="m 2359.4997,-24.626782 c 0,0 20.9317,-23.16988 33.2763,-32.58302 15.317,-11.6797 32.0147,-22.00149 49.9144,-29.11674 17.5281,-6.96752 36.4026,-10.443732 55.1138,-12.825232 32.676,-4.158876 65.8508,-2.128606 98.789,-2.426386 249.7982,-2.25837 749.4094,4.852786 749.4094,4.852786 0,0 10.2288,0.475042 15.2516,1.386512 9.4325,1.71169 18.7138,4.36924 27.7303,7.62581 10.019,3.61866 19.9736,7.70563 29.1167,13.17186 4.2447,2.5377 11.7853,9.01232 11.7853,9.01232 l -3.6586,-11.900075 -1.8874,-22.069457 c 0,0 -23.4552,-12.954356 -36.0493,-17.331386 -10.9618,-3.80974 -22.505,-5.8257 -33.9695,-7.62581 -12.6076,-1.9796 -38.1291,-3.46628 -38.1291,-3.46628 l -798.6306,-1.38651 c 0,0 -23.6844,0.8966 -35.356,2.77302 -12.4507,2.00166 -24.8892,4.7083 -36.7426,9.01233 -12.8227,4.65601 -25.203,10.74874 -36.7425,18.024636 -10.7155,6.756292 -21.2816,14.204032 -29.81,23.570702 -6.8613,7.53568 -16.6382,25.65046 -16.6382,25.65046 0,0 1.4855,5.50954 1.3865,8.31907 -0.209,5.9375 -4.1595,17.3!
 3139 -4.1595,17.33139 z"
-         style="fill:url(#linearGradient3984);fill-opacity:1;stroke:#464646;stroke-width:1.7646656px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4086)" />
-      <path
-         sodipodi:nodetypes="ccaaaacccssssscccccccsssaascccaaaaascc"
-         inkscape:connector-curvature="0"
-         id="path4092-2"
-         d="m 2304.5964,1608.7137 0.6701,126.3049 c 0,0 7.5433,50.2367 17.4039,73.35 8.5837,20.1201 21.0256,38.8179 35.6072,55.1236 14.2661,15.9529 31.3548,29.6328 49.719,40.6225 16.2334,9.7146 34.1315,16.9091 52.4171,21.7601 16.7994,4.4568 51.7337,6.5088 51.7337,6.5088 l 141.7527,0.3414 664.2511,0 c 0,0 37.7934,-1.3361 59.82,-8.5988 19.1156,-6.3028 46.4678,-18.5342 62.7583,-30.431 14.252,-10.4082 28.474,-24.0243 39.5917,-37.7816 10.6014,-13.1184 18.9998,-26.8593 26.5662,-41.9661 7.3264,-14.628 12.164,-30.7903 15.7856,-46.7672 3.3774,-14.8996 4.3407,-45.5103 4.3407,-45.5103 l 0.5058,-337.1418 -0.7438,-172.359 -5.8106,138.7382 0.9685,359.5469 -6.7792,19.5405 1.9368,-145.5773 c 0,0 -1.7026,63.9484 -4.8421,95.7488 -2.3935,24.245 -4.8163,48.6576 -10.6529,72.3003 -3.2696,13.2437 -9.3983,26.9535 -16.4636,38.5926 -6.6187,10.9034 -18.2508,22.3346 -29.0534,31.7535 -11.2456,9.8052 -23.5052,18.6995 -36.801,25.4027 -17.9894,9.0697 -39.5912,16.6389 -57.1383,19.5407 -19.456,3.2174 -59.07!
 52,2.931 -59.0752,2.931 l -582.7212,-2.0726 -216.2472,0 c 0,0 -40.7604,-4.0264 -60.0437,-10.4611 -19.0285,-6.3498 -37.3054,-15.7165 -53.6657,-27.3568 -14.7097,-10.4659 -27.3826,-23.75 -39.0551,-37.5218 -7.853,-9.2653 -15.0051,-19.275 -20.596,-30.0572 -5.9752,-11.5234 -10.2209,-23.9595 -13.5712,-36.5001 -2.9935,-11.2047 -4.6168,-22.7721 -5.7545,-34.3138 -5.0656,-51.3911 -4.7011,-154.849 -4.7011,-154.849 z"
-         style="fill:url(#linearGradient4118);fill-opacity:1;stroke:none" />
-      <path
-         sodipodi:nodetypes="csascssc"
-         inkscape:connector-curvature="0"
-         id="path4489-9"
-         d="m 3471.4675,-22.901268 c 0,0 9.766,14.057987 14.1242,21.4150581 3.9307,6.634847 7.8478,13.9452339 10.5733,21.4298119 3.1484,8.645541 5.3352,17.692453 6.5647,26.810903 0.9714,7.204333 0.6088,21.80007 0.6088,21.80007 0,0 -8.7052,-19.445667 -12.6322,-29.344546 -3.7099,-9.351805 -7.3076,-18.76421 -10.3159,-28.36471 -3.4791,-11.10311793 -8.9229,-33.746587 -8.9229,-33.746587 z"
-         style="fill:url(#radialGradient4514);fill-opacity:1;stroke:none;filter:url(#filter4561)" />
-      <path
-         sodipodi:nodetypes="cccccccccaacac"
-         inkscape:connector-curvature="0"
-         d="m 3482.1823,90.078401 -0.1279,357.492509 -5.7546,897.43409 0,387.2626 m 6.0458,-1655.186661 33.0783,0.508725 0.092,360.044656 c 0.182,224.88522 1.0285,463.06289 0,663.73838 l 0,526.9713 c 0,0 -4.8028,69.2914 -12.7454,102.9432 -3.8227,16.1963 -8.2445,32.7072 -16.667,47.0598 -7.2663,12.3824 -28.4319,32.3535 -28.4319,32.3535 0,0 7.7743,-24.6826 10.7845,-37.2556 3.2534,-13.5885 7.8433,-41.1773 7.8433,-41.1773"
-         style="fill:url(#linearGradient4171-5);fill-opacity:1;stroke:none;filter:url(#filter4751)"
-         id="path4124-7-9" />
-    </g>
-    <g
-       id="g6014"
-       transform="matrix(0.28782617,0,0,0.28778183,-662.15246,493.1005)">
-      <path
-         sodipodi:nodetypes="ccsssc"
-         inkscape:connector-curvature="0"
-         id="rect4952"
-         d="m 2497.4039,-67.367417 42.4089,0 776.2335,0 c 81.9955,0 148.0062,66.0107496 148.0062,148.006165 l 0,1634.475952 c 0,58.8198 -33.969,109.414 -83.4399,133.3153"
-         style="fill:none;stroke:url(#linearGradient4998);stroke-width:10.58799267;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4980)" />
-      <path
-         style="fill:none;stroke:url(#linearGradient6002);stroke-width:10.58799267;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4980)"
-         d="m 3374.0124,-55.66715 c 4.6811,1.983508 9.2375,4.200595 13.6547,6.636807 21.5746,11.899082 39.8278,29.025784 53.0755,49.69577579"
-         id="path5994"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="csc" />
-    </g>
-    <rect
-       y="774.4071"
-       x="0.74484777"
-       height="2.8429797"
-       width="352.84018"
-       id="rect4212"
-       style="fill:#575656;fill-opacity:1;fill-rule:nonzero;stroke:#575656;stroke-width:0.64722377;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
-    <rect
-       style="fill:url(#linearGradient4204);fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter3982)"
-       id="rect3427"
-       width="1227.1564"
-       height="14.037416"
-       x="2303.1829"
-       y="973.27502"
-       transform="matrix(0.2874586,0,0,0.20749289,-661.30618,572.43057)" />
-    <rect
-       style="fill:#080808;fill-opacity:1;stroke:url(#linearGradient4267);stroke-width:1.01575553;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       id="rect4196-3-6"
-       width="130.89726"
-       height="222.57796"
-       x="111.71674"
-       y="795.66736"
-       ry="65.43856" />
-    <g
-       id="g4964"
-       transform="matrix(0.28782617,0,0,0.28778183,-381.71012,76.456814)">
-      <rect
-         ry="216.92894"
-         y="2506.2156"
-         x="1724.7826"
-         height="757.64636"
-         width="433.85788"
-         id="rect4196-3-5-6-5"
-         style="fill:#3f3f3f;fill-opacity:1;stroke:none" />
-      <rect
-         ry="216.92894"
-         y="2506.2156"
-         x="1724.7826"
-         height="757.64636"
-         width="433.85788"
-         id="rect4196-3-5-6-1-9"
-         style="fill:url(#linearGradient4972);fill-opacity:1;stroke:none" />
-      <rect
-         ry="216.92894"
-         y="2506.2156"
-         x="1724.7826"
-         height="757.64636"
-         width="433.85788"
-         id="rect4196-3-5-6-2-3"
-         style="fill:url(#linearGradient4974);fill-opacity:1;stroke:none" />
-      <rect
-         transform="scale(1,-1)"
-         ry="216.92894"
-         y="-3263.8621"
-         x="1724.7826"
-         height="757.64636"
-         width="433.85788"
-         id="rect4196-3-5-6-1-6-7"
-         style="fill:url(#linearGradient4976);fill-opacity:1;stroke:none" />
-      <rect
-         ry="216.92894"
-         y="2506.2156"
-         x="1724.7826"
-         height="757.64636"
-         width="433.85788"
-         id="rect4196-3-5-6-9-4"
-         style="fill:url(#linearGradient4978);fill-opacity:1;stroke:none" />
-      <path
-         sodipodi:nodetypes="caascsaaaaaaaccsccaacc"
-         inkscape:connector-curvature="0"
-         id="path4848-3"
-         d="m 1731.4165,2716.0378 c 0,0 1.4558,-24.7675 3.915,-36.8843 2.7876,-13.7346 8.4331,-26.7358 12.2133,-40.231 1.0035,-3.5826 2.4704,-7.1518 2.7774,-10.8103 0.108,-1.2866 -7.1148,7.1228 -7.1148,7.1228 0.1269,-0.2487 -0.091,0.2074 0.017,-0.039 0.1306,-0.2987 0.4734,-1.0662 0.7134,-1.5978 0.2426,-0.5374 0.4863,-1.0742 0.7343,-1.6091 0.488,-1.0524 0.9815,-2.1023 1.4833,-3.1482 0.3687,-0.7685 0.7405,-1.5356 1.1222,-2.2977 0.9012,-1.7996 1.8204,-3.5902 2.7571,-5.3715 0.3889,-0.7395 0.7886,-1.4731 1.1885,-2.2067 0.2969,-0.5447 0.5765,-1.0996 0.899,-1.6296 6.0396,-9.9258 12.0677,-20.648 19.3676,-28.9807 4.8337,-5.4564 9.9119,-12.9358 16.6907,-14.1301 1.7214,-0.3033 2.7752,2.212 2.1822,3.4307 -2.8802,5.9189 -10.336,15.9567 -10.336,15.9567 0,0 -8.3498,5.0513 -9.6897,6.8128 -7.3976,9.4524 -12.082,20.808 -16.8503,31.8232 -6.7925,15.6911 -12.5353,31.9236 -16.6266,48.525 -2.8462,11.5486 -5.4439,35.2648 -5.4439,35.2648 z"
-         style="fill:#3f3f3f;fill-opacity:1;stroke:none" />
-    </g>
-    <rect
-       style="fill:url(#linearGradient4167);fill-opacity:1;stroke:none"
-       id="rect4196-3"
-       width="117.24828"
-       height="211.38809"
-       x="118.54117"
-       y="801.26227"
-       ry="58.615131" />
-    <rect
-       style="fill:url(#linearGradient4055);fill-opacity:1;stroke:none"
-       id="rect4196-4"
-       width="92.503181"
-       height="205.62868"
-       x="130.91362"
-       y="803.90417"
-       ry="45.112957" />
-    <rect
-       style="fill:url(#linearGradient4052);fill-opacity:1;stroke:#232323;stroke-width:1.7646656;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter4145)"
-       id="rect4196"
-       width="305.7515"
-       height="696.8205"
-       x="460.702"
-       y="1223.2758"
-       ry="152.87575"
-       transform="matrix(0.28782617,0,0,0.28778183,0.56155338,454.41591)" />
-    <path
-       sodipodi:nodetypes="cccccc"
-       inkscape:connector-curvature="0"
-       id="path4819-4"
-       d="m 777.85268,1549.5312 0,45.962 4.8569,-0.011 14.142,-22.9755 -14.1375,-22.9755 z"
-       style="fill:#6c6c6c;fill-opacity:1;stroke:none;stroke-width:4;marker-start:none;filter:url(#filter4178-1)"
-       transform="matrix(0.28782617,0,0,0.28778183,0.56155338,454.41591)" />
-    <path
-       sodipodi:nodetypes="cccccc"
-       inkscape:connector-curvature="0"
-       id="path4819-4-4"
-       d="m 2703.6023,1424.8569 0,45.962 4.8569,-0.011 14.142,-22.9755 -14.1375,-22.9755 z"
-       style="fill:#6c6c6c;fill-opacity:1;stroke:none;stroke-width:4;marker-start:none;filter:url(#filter4178-1-0)"
-       transform="matrix(-0.28782617,0,0,0.28778183,908.05025,490.29493)" />
-    <rect
-       style="fill:#999999;fill-opacity:1;stroke:none"
-       id="rect3396"
-       width="60.310253"
-       height="2.4222901"
-       x="147.01019"
-       y="451.99362" />
-  </g>
-  <g
-     inkscape:groupmode="layer"
-     id="layer2"
-     inkscape:label="Text"
-     style="display:inline"
-     transform="translate(0,-450)">
-    <text
-       sodipodi:linespacing="125%"
-       id="text5542"
-       y="978.99683"
-       x="388.98615"
-       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
-       xml:space="preserve"
-       transform="scale(1.0000649,0.99993508)"><tspan
-         y="978.99683"
-         x="388.98615"
-         id="tspan5544"
-         sodipodi:role="line">Menu</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text5550"
-       y="906.59204"
-       x="-78.931557"
-       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
-       xml:space="preserve"
-       transform="scale(1.0000649,0.99993508)"><tspan
-         y="906.59204"
-         x="-78.931557"
-         id="tspan5552"
-         sodipodi:role="line">Left</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text5554"
-       y="894.50861"
-       x="388.8631"
-       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
-       xml:space="preserve"
-       transform="scale(1.0000649,0.99993508)"><tspan
-         y="894.50861"
-         x="388.8631"
-         id="tspan5556"
-         sodipodi:role="line">Right</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text3672"
-       y="936.34735"
-       x="388.90411"
-       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
-       xml:space="preserve"
-       transform="scale(1.0000649,0.99993508)"><tspan
-         y="936.34735"
-         x="388.90411"
-         id="tspan3674"
-         sodipodi:role="line">Down</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text3668"
-       y="851.04303"
-       x="388.8631"
-       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
-       xml:space="preserve"
-       transform="scale(1.0000649,0.99993508)"><tspan
-         y="851.04303"
-         x="388.8631"
-         id="tspan3670"
-         sodipodi:role="line">Up</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text5514"
-       y="432.00458"
-       x="88.732536"
-       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
-       xml:space="preserve"
-       transform="scale(1.0000649,0.9999351)"><tspan
-         y="432.00458"
-         x="88.732536"
-         id="tspan5516"
-         sodipodi:role="line">Power</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text5584"
-       y="809.43146"
-       x="388.90411"
-       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
-       xml:space="preserve"
-       transform="scale(1.0000649,0.99993508)"><tspan
-         y="809.43146"
-         x="388.90411"
-         id="tspan5586"
-         sodipodi:role="line">Play</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text5584-5"
-       y="833.10126"
-       x="-136.57217"
-       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
-       xml:space="preserve"
-       transform="scale(1.0000649,0.99993508)"><tspan
-         y="833.10126"
-         x="-136.57217"
-         id="tspan5586-1"
-         sodipodi:role="line">Shortcut</tspan></text>
-    <text
-       sodipodi:linespacing="125%"
-       id="text5584-7"
-       y="975.95721"
-       x="-94.599525"
-       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
-       xml:space="preserve"
-       transform="scale(1.0000649,0.99993508)"><tspan
-         y="975.95721"
-         x="-94.599525"
-         id="tspan5586-11"
-         sodipodi:role="line">Back</tspan></text>
-    <path
-       inkscape:connector-curvature="0"
-       id="path4665"
-       d="M 34.571091,973.62731 -18.199374,966.6276"
-       style="fill:none;stroke:#808080;stroke-width:0.99999988px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4669"
-       d="m 375.54368,968.43692 -59.01424,9.24448"
-       style="fill:none;stroke:#808080;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4671"
-       d="M 121.00524,906.79378 -18.199375,898.38592"
-       style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4673"
-       d="m 36.904846,833.42716 -55.104207,-9.40659"
-       style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4675"
-       d="m 375.54368,800.74718 -57.08097,33.81465"
-       style="fill:none;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4677"
-       d="m 375.54368,840.80488 -189.60489,34.4988"
-       style="fill:none;stroke:#808080;stroke-width:0.99999964px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4679"
-       d="M 375.54368,884.70333 233.87075,906.60036"
-       style="fill:none;stroke:#808080;stroke-width:1.00000036px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path4681"
-       d="m 185.28211,934.3979 190.26157,-9.02161"
-       style="fill:none;stroke:#808080;stroke-width:0.99999976px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
-    <text
-       sodipodi:linespacing="125%"
-       id="text5514-1"
-       y="432.00458"
-       x="184.68977"
-       style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:URW Palladio L;-inkscape-font-specification:URW Palladio L"
-       xml:space="preserve"
-       transform="scale(1.0000649,0.9999351)"><tspan
-         y="432.00458"
-         x="184.68977"
-         sodipodi:role="line"
-         id="tspan3421">Hold</tspan></text>
-    <g
-       transform="matrix(0,-1.1111662,1.1113105,0,-234.73847,208.34682)"
-       style="fill:#000000;fill-opacity:1;display:inline"
-       id="g3993">
-      <path
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path3197"
-         d="m -211.7629,413.21121 2.50771,8.72431 2.50771,-8.70323 -2.48663,2.48663 z"
-         style="fill:#000000;fill-opacity:1;stroke:none" />
-      <rect
-         y="385.12549"
-         x="-209.74297"
-         height="35.025406"
-         width="1.002"
-         id="rect3991"
-         style="fill:#000000;fill-opacity:1;stroke:none" />
-    </g>
-    <g
-       transform="matrix(0,1.1111662,-1.1113105,0,589.53484,673.33456)"
-       style="fill:#000000;fill-opacity:1;display:inline"
-       id="g3993-4">
-      <path
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path3197-0"
-         d="m -211.7629,413.21121 2.50771,8.72431 2.50771,-8.70323 -2.48663,2.48663 z"
-         style="fill:#000000;fill-opacity:1;stroke:none" />
-      <rect
-         y="385.12549"
-         x="-209.74297"
-         height="35.025406"
-         width="1.002"
-         id="rect3991-9"
-         style="fill:#000000;fill-opacity:1;stroke:none" />
-    </g>
-    <g
-       transform="matrix(1.1113105,0,0,1.1111662,409.71243,490.53564)"
-       style="fill:#808080;fill-opacity:1;display:inline"
-       id="g3993-48">
-      <path
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path3197-8"
-         d="m -211.7629,413.21121 2.50771,8.72431 2.50771,-8.70323 -2.48663,2.48663 z"
-         style="fill:#808080;fill-opacity:1;stroke:none" />
-      <rect
-         y="385.12549"
-         x="-209.74297"
-         height="35.025406"
-         width="1.002"
-         id="rect3991-2"
-         style="fill:#808080;fill-opacity:1;stroke:none" />
-    </g>
-    <g
-       transform="matrix(1.1113105,0,0,-1.1111662,409.71243,1324.0674)"
-       style="fill:#808080;fill-opacity:1;display:inline"
-       id="g3993-45">
-      <path
-         sodipodi:nodetypes="ccccc"
-         inkscape:connector-curvature="0"
-         id="path3197-5"
-         d="m -211.7629,413.21121 2.50771,8.72431 2.50771,-8.70323 -2.48663,2.48663 z"
-         style="fill:#808080;fill-opacity:1;stroke:none" />
-      <rect
-         y="385.12549"
-         x="-209.74297"
-         height="35.025406"
-         width="1.002"
-         id="rect3991-1"
-         style="fill:#808080;fill-opacity:1;stroke:none" />
-    </g>
-    <flowRoot
-       xml:space="preserve"
-       id="flowRoot4730"
-       style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><flowRegion
-         id="flowRegion4732"><rect
-           id="rect4734"
-           width="112.12588"
-           height="85.107597"
-           x="726.79187"
-           y="915.91986" /></flowRegion><flowPara
-         id="flowPara4736" /></flowRoot>    <flowRoot
-       xml:space="preserve"
-       id="flowRoot4738"
-       style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"><flowRegion
-         id="flowRegion4740"><rect
-           id="rect4742"
-           width="145.19658"
-           height="80.240211"
-           x="733.62482"
-           y="918.62848" /></flowRegion><flowPara
-         id="flowPara4744" /></flowRoot>  </g>
-</svg>
diff --git a/tools/builds.pm b/tools/builds.pm
index 157720a0d8..1a283dd9b1 100644
--- a/tools/builds.pm
+++ b/tools/builds.pm
@@ -318,21 +318,6 @@ $releasenotes="/wiki/ReleaseNotes400";
         name => 'Packard Bell Vibe 500',
         status => 3,
     },
-    'zenvision' => {
-        name => 'Creative Zen Vision',
-        status => 1,
-	sim => 1,
-    },
-    'zenvisionm30gb' => {
-        name => 'Creative Zen Vision:M 30GB',
-        status => 1,
-	sim => 1,
-    },
-    'zenvisionm60gb' => {
-        name => 'Creative Zen Vision:M 60GB',
-        status => 1,
-	sim => 1,
-    },
     'mpiohd200' => {
         name => 'MPIO HD200',
         status => 2,
diff --git a/tools/configure b/tools/configure
index 09178d0426..4afaa15a7d 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1691,47 +1691,47 @@ cat <<EOF
  71) M:Robe 100                                  58) Sansa Fuze
                            ==Creative==          59) Sansa c200v2
  ==Philips==               89) Zen X-Fi Style    60) Sansa Clipv2
- 100) GoGear SA9200        90) Zen Vision:M 30GB 62) Sansa Clip+
- 101) GoGear HDD1630/      91) Zen Vision:M 60GB 63) Sansa Fuze v2
-      HDD1830              92) Zen Vision        64) Sansa Fuze+
- 102) GoGear HDD6330       93) Zen X-Fi2         65) Sansa Clip Zip
-                           94) Zen X-Fi3         66) Sansa Connect
- ==Samsung==               95) Zen V
- 140) YH-820               96) Zen X-Fi          ==Packard Bell==
- 141) YH-920               97) Zen Mozaic        160) Vibe 500
- 142) YH-925               98) Zen
- 144) YP-R0                                      ==ROCKCHIP==
- 145) YP-R1 (WIP)          ==Onda==              180) rk27xx generic
-                           120) VX747
- ==HiFiMAN==               122) VX747+           ==HiFi E.T.==
- 190) HM-60x               121) VX767            210) MA9
- 191) HM-801               123) VX777            211) MA9C
-                                                 212) MA8
- ==Sony==                  ==MPIO==              213) MA8C
- 219) NWZ-E350 series      170) HD200
- 220) NWZ-E370/E380 series 171) HD300            ==IHIFI==
- 221) NWZ-E360 series                            230) 760
- 222) NWZ-E450 series      ==Application==       231) 770
- 223) NWZ-E460 series      200) SDL (Generic)    232) 770C
- 224) NWZ-E470 series      201) Android (ARM)    233) 800
- 225) NWZ-E580 series      202) Android (MIPS)   234) 960
- 226) NWZ-A10 series       203) Android (x86)
- 227) NW-A20 series        209) Anbernic RG Nano ==AIGO==
+ 100) GoGear SA9200        93) Zen X-Fi2         62) Sansa Clip+
+ 101) GoGear HDD1630/      94) Zen X-Fi3         63) Sansa Fuze v2
+      HDD1830              95) Zen V             64) Sansa Fuze+
+ 102) GoGear HDD6330       96) Zen X-Fi          65) Sansa Clip Zip
+                           97) Zen Mozaic        66) Sansa Connect
+ ==Samsung==               98) Zen
+ 140) YH-820                                     ==Packard Bell==
+ 141) YH-920               ==Onda==              160) Vibe 500
+ 142) YH-925               120) VX747
+ 144) YP-R0                122) VX747+           ==ROCKCHIP==
+ 145) YP-R1 (WIP)          121) VX767            180) rk27xx generic
+                           123) VX777
+ ==HiFiMAN==                                     ==HiFi E.T.==
+ 190) HM-60x               ==MPIO==              210) MA9
+ 191) HM-801               170) HD200            211) MA9C
+                           171) HD300            212) MA8
+ ==Sony==                                        213) MA8C
+ 219) NWZ-E350 series      ==Application==
+ 220) NWZ-E370/E380 series 200) SDL (Generic)    ==IHIFI==
+ 221) NWZ-E360 series      201) Android (ARM)    230) 760
+ 222) NWZ-E450 series      202) Android (MIPS)   231) 770
+ 223) NWZ-E460 series      203) Android (x86)    232) 770C
+ 224) NWZ-E470 series      209) Anbernic RG Nano 233) 800
+ 225) NWZ-E580 series                            234) 960
+ 226) NWZ-A10 series       ==AgpTek==
+ 227) NW-A20 series        240) Rocker           ==AIGO==
  228) NWZ-A860 series                            245) Eros Q / K (hosted)
- 229) NWZ-S750 series      ==AgpTek==            247) Eros Q / K native
-                           240) Rocker                 (hw1/hw2 bl, all hw rb)
- ==FiiO==                                        248) Eros Q / K native
- 244) M3K Linux            ==iBasso==                  (hw3 bl only)
- 246) M3K baremetal        250) DX50             249) Eros Q / K native
-                           251) DX90                   (hw4 bl only)
- ==Shanling==
- 260) Q1                   ==xDuoo==             ==HiBy==
-                           241) X3               300) R3 Pro II
- ==Echo project==          242) X3II             301) R1
- 270) Echo R1 (WIP)        243) X20
-
- ==Nintendo==              ==Surfans==
- 290) Nintendo 3DS (WIP)   280) F28 (WIP)
+ 229) NWZ-S750 series      ==iBasso==            247) Eros Q / K native
+                           250) DX50                   (hw1/hw2 bl, all hw rb)
+ ==FiiO==                  251) DX90             248) Eros Q / K native
+ 244) M3K Linux                                        (hw3 bl only)
+ 246) M3K baremetal        ==xDuoo==             249) Eros Q / K native
+                           241) X3                     (hw4 bl only)
+ ==Shanling==              242) X3II
+ 260) Q1                   243) X20              ==HiBy==
+                                                 300) R3 Pro II
+ ==Echo project==          ==Surfans==           301) R1
+ 270) Echo R1 (WIP)        280) F28 (WIP)
+
+ ==Nintendo==
+ 290) Nintendo 3DS (WIP)
 
 EOF
 
@@ -2688,72 +2688,6 @@ fi
     arm926ejscc
     ;;
 
-   90|zenvisionm30gb)
-    target_id=35
-    modelname="zenvisionm30gb"
-    target="CREATIVE_ZVM"
-    memory=64
-    arm926ejscc
-    bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
-    bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
-    tool="$rootdir/tools/scramble -creative=zvm"
-    USE_ELF="yes"
-    output="rockbox.zvm"
-    appextra="recorder:gui:radio"
-    plugins="yes"
-    toolset=$ipodbitmaptools
-    boottool="$rootdir/tools/scramble -creative=zvm -no-ciff"
-    bootoutput="rockbox.zvmboot"
-    # architecture, manufacturer and model for the target-tree build
-    t_cpu="arm"
-    t_manufacturer="tms320dm320"
-    t_model="creative-zvm"
-    ;;
-
-   91|zenvisionm60gb)
-    target_id=40
-    modelname="zenvisionm60gb"
-    target="CREATIVE_ZVM60GB"
-    memory=64
-    arm926ejscc
-    bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
-    bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
-    tool="$rootdir/tools/scramble -creative=zvm60 -no-ciff"
-    USE_ELF="yes"
-    output="rockbox.zvm60"
-    appextra="recorder:gui:radio"
-    plugins="yes"
-    toolset=$ipodbitmaptools
-    boottool="$rootdir/tools/scramble -creative=zvm60"
-    bootoutput="rockbox.zvm60boot"
-    # architecture, manufacturer and model for the target-tree build
-    t_cpu="arm"
-    t_manufacturer="tms320dm320"
-    t_model="creative-zvm"
-    ;;
-
-   92|zenvision)
-    target_id=39
-    modelname="zenvision"
-    target="CREATIVE_ZV"
-    memory=64
-    arm926ejscc
-    bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
-    bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
-    tool="$rootdir/tools/scramble -creative=zenvision -no-ciff"
-    USE_ELF="yes"
-    output="rockbox.zv"
-    appextra="recorder:gui:radio"
-    plugins=""
-    toolset=$ipodbitmaptools
-    boottool="$rootdir/tools/scramble -creative=zenvision"
-    bootoutput="rockbox.zvboot"
-    # architecture, manufacturer and model for the target-tree build
-    t_cpu="arm"
-    t_manufacturer="tms320dm320"
-    t_model="creative-zvm"
-    ;;
-
    93|creativezenxfi2)
     target_id=80
     modelname="creativezenxfi2"
diff --git a/tools/creative.c b/tools/creative.c
index be717bf213..a18b56e448 100644
--- a/tools/creative.c
+++ b/tools/creative.c
@@ -123,19 +123,11 @@ typedef struct
   ---------------------------------------------------------------------------
 */
 
-static const char null_key_v2[]  = "CTL:N0MAD|PDE0.DPMP.";
 static const char null_key_v3[]  = "CTL:Z3N07|PDE0.DPMP.";
 static const char null_key_v4[]  = "CTL:N0MAD|PDE0.DPFP.";
 
 static const struct device_info devices[] =
 {
-    /* Creative Zen Vision:M */
-    {"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0e\0n\0 \0V\0i\0s\0i\0o\0n\0:\0M",             42, null_key_v2},
-    /* Creative Zen Vision:M Go! */
-    {"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0e\0n\0 \0V\0i\0s\0i\0o\0n\0:\0M\0 \0G\0o\0!", 50, null_key_v2},
-    /* Creative Zen Vision © TL */
-    /* The "©" should be ANSI encoded or the device won't accept the firmware package. */
-    {"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0e\0n\0 \0V\0i\0s\0i\0o\0n\0 \0\xA9\0T\0L",       46, null_key_v2},
     /* Creative ZEN V */
     {"C\0r\0e\0a\0t\0i\0v\0e\0 \0Z\0E\0N\0 \0V",                                  42, null_key_v4},
     /* Creative ZEN */
diff --git a/tools/creative.h b/tools/creative.h
index 531336aa32..857f0c4479 100644
--- a/tools/creative.h
+++ b/tools/creative.h
@@ -24,13 +24,10 @@
 
 enum
 {
-    ZENVISIONM = 0,
-    ZENVISIONM60 = 1,
-    ZENVISION = 2,
-    ZENV = 3,
-    ZEN = 4,
-    ZENXFI = 5,
-    ZENMOZAIC = 6
+    ZENV = 0,
+    ZEN = 1,
+    ZENXFI = 2,
+    ZENMOZAIC = 3
 };
 
 struct device_info
diff --git a/tools/scramble.c b/tools/scramble.c
index 45cf92dc16..2ec8cfb7b5 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -85,8 +85,7 @@ void usage(void)
            "\t-ipod4g ipod firmware partition format (4th Gen, Mini, Nano, Photo/Color)\n"
            "\t-ipod5g ipod firmware partition format (5th Gen - aka Video)\n"
            "\t-creative=X [-no-ciff] Creative firmware structure format\n"
-           "\t            (X values: zvm, zvm60, zenvision, zenv, zen,\n"
-           "\t             zenxfi, zenmozaic)\n");
+           "\t            (X values: zenv, zen, zenxfi, zenmozaic)\n");
     printf("\t-gigabeat Toshiba Gigabeat F/X format\n"
            "\t-gigabeats Toshiba Gigabeat S format\n"
            "\t-mi4v2  PortalPlayer .mi4 format (revision 010201)\n"
@@ -416,13 +415,7 @@ int main (int argc, char** argv)
             iname = argv[2];
             oname = argv[3];
         }
-        if(!strcmp(&argv[1][10], "zvm"))
-            return zvm_encode(iname, oname, ZENVISIONM, creative_enable_ciff);
-        else if(!strcmp(&argv[1][10], "zvm60"))
-            return zvm_encode(iname, oname, ZENVISIONM60, creative_enable_ciff);
-        else if(!strcmp(&argv[1][10], "zenvision"))
-            return zvm_encode(iname, oname, ZENVISION, creative_enable_ciff);
-        else if(!strcmp(&argv[1][10], "zenv"))
+        if(!strcmp(&argv[1][10], "zenv"))
             return zvm_encode(iname, oname, ZENV, creative_enable_ciff);
         else if(!strcmp(&argv[1][10], "zen"))
             return zvm_encode(iname, oname, ZEN, creative_enable_ciff);
diff --git a/uisimulator/buttonmap/SOURCES b/uisimulator/buttonmap/SOURCES
index 79075ca844..4efbdee874 100644
--- a/uisimulator/buttonmap/SOURCES
+++ b/uisimulator/buttonmap/SOURCES
@@ -31,10 +31,6 @@ mrobe500.c
 mrobe100.c
 #elif CONFIG_KEYPAD == COWON_D2_PAD
 cowon-d2.c
-#elif CONFIG_KEYPAD == CREATIVEZVM_PAD
-creative-zvm.c
-#elif CONFIG_KEYPAD == CREATIVEZV_PAD
-creative-zv.c
 #elif CONFIG_KEYPAD == PHILIPS_SA9200_PAD
 gogear-sa9200.c
 #elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
diff --git a/utils/themeeditor/resources/targetdb b/utils/themeeditor/resources/targetdb
index c8aea6a09a..010bafde83 100644
--- a/utils/themeeditor/resources/targetdb
+++ b/utils/themeeditor/resources/targetdb
@@ -445,33 +445,6 @@ creativezen
     record : yes
 }
 
-zenvision
-{
-    name   : Creative Zen Vision
-    screen : 320 x 240 @ rgb
-    remote : no
-    fm     : no
-    record : no
-}
-
-zenvisionm30gb
-{
-    name   : Creative Zen Vision%:M 30GB
-    screen : 320 x 240 @ rgb
-    remote : no
-    fm     : no
-    record : no
-}
-
-zenvisionm60gb
-{
-    name   : Creative Zen Vision%:M 60GB
-    screen : 320 x 240 @ rgb
-    remote : no
-    fm     : no
-    record : no
-}
-
 creativezenxfi2
 {
     name   : Creative Zen X-Fi2
-- 
rockbox-cvs mailing list
[email protected]
https://lists.haxx.se/mailman/listinfo/rockbox-cvs
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.