From 5d3b00c5efe7178ae937f13b4fa24b2504dd7c66 Mon Sep 17 00:00:00 2001
From: darealshinji <djcj@gmx.de>
Date: Thu, 22 May 2014 17:12:38 +0200
Subject: [PATCH 3/4] move icons and html files to /usr/share

---
 debian/mintinstall.links                     |    2 -
 debian/rules                                 |    1 -
 usr/bin/mint-search-apt                      |    2 +-
 usr/bin/mint-show-apt                        |    2 +-
 usr/lib/linuxmint/mintInstall/frontend.py    |   44 +-
 usr/lib/linuxmint/mintInstall/icon.svg       | 1160 --------------------------
 usr/lib/linuxmint/mintInstall/mintInstall.py |    4 +-
 usr/lib/linuxmint/mintInstall/mintinstall.py |   42 +-
 usr/lib/linuxmint/mintInstall/remove.py      |    2 +-
 usr/share/linuxmint/mintInstall/icon.svg     | 1160 ++++++++++++++++++++++++++
 10 files changed, 1208 insertions(+), 1211 deletions(-)
 delete mode 100644 usr/lib/linuxmint/mintInstall/icon.svg
 create mode 100644 usr/share/linuxmint/mintInstall/icon.svg

diff --git a/debian/mintinstall.links b/debian/mintinstall.links
index 2c76b6c..ddadae7 100644
--- a/debian/mintinstall.links
+++ b/debian/mintinstall.links
@@ -1,3 +1 @@
 /usr/bin/mintInstall   usr/bin/mintinstall
-/usr/share/linuxmint/mintInstall/data           usr/lib/linuxmint/mintInstall/data
-/usr/share/linuxmint/mintInstall/status-icons   usr/lib/linuxmint/mintInstall/status-icons
diff --git a/debian/rules b/debian/rules
index f50fe3b..8d754fa 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,7 +7,6 @@
 override_dh_install:
 	mkdir -p $(CURDIR)/debian/mintinstall
 	cp -r $(CURDIR)/usr $(CURDIR)/debian/mintinstall/
-	mkdir -p $(CURDIR)/debian/mintinstall/usr/share/linuxmint/mintInstall
 	wget http://community.linuxmint.com/data/reviews.list -O $(CURDIR)/debian/mintinstall/usr/lib/linuxmint/mintInstall/reviews.list
 
 override_dh_builddeb:
diff --git a/usr/bin/mint-search-apt b/usr/bin/mint-search-apt
index 6ccd75a..3d0cffd 100755
--- a/usr/bin/mint-search-apt
+++ b/usr/bin/mint-search-apt
@@ -28,7 +28,7 @@ suggestion = sys.argv[1]
 
 gladefile = "/usr/lib/linuxmint/mintInstall/suggestions.glade"
 wTree = gtk.glade.XML(gladefile,"window_dialog_list")
-wTree.get_widget("window_dialog_list").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+wTree.get_widget("window_dialog_list").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
 wTree.get_widget("window_dialog_list").set_title("apt search " + suggestion)
 wTree.get_widget("window_dialog_list").connect("destroy", gtk.main_quit)
 wTree.get_widget("label_no_results").set_text(_("No results"))
diff --git a/usr/bin/mint-show-apt b/usr/bin/mint-show-apt
index 4f67e91..dd12f4b 100755
--- a/usr/bin/mint-show-apt
+++ b/usr/bin/mint-show-apt
@@ -26,7 +26,7 @@ result = commands.getoutput("dpkg -L " + suggestion)
 results = str.split(result, "\n")
 for result in results:
 	buff.insert_at_cursor(result + "\n")
-wTree.get_widget("window_dialog").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+wTree.get_widget("window_dialog").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
 wTree.get_widget("window_dialog").set_title("apt show " + suggestion)
 wTree.get_widget("window_dialog").connect("destroy", gtk.main_quit)
 wTree.get_widget("window_dialog").show()
diff --git a/usr/lib/linuxmint/mintInstall/frontend.py b/usr/lib/linuxmint/mintInstall/frontend.py
index 0271ff4..bcc49aa 100755
--- a/usr/lib/linuxmint/mintInstall/frontend.py
+++ b/usr/lib/linuxmint/mintInstall/frontend.py
@@ -141,7 +141,7 @@ def open_featured(widget):
 	wTree = gtk.glade.XML(gladefile, "featured_window")
 	treeview_featured = wTree.get_widget("treeview_featured")
 	wTree.get_widget("featured_window").set_title(_("Featured applications"))
-	wTree.get_widget("featured_window").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")	
+	wTree.get_widget("featured_window").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
 	wTree.get_widget("button_close").connect("clicked", close_window, wTree.get_widget("featured_window"))
 	wTree.get_widget("button_apply").connect("clicked", install_featured, wTree, treeview_featured, wTree.get_widget("featured_window"))		
 	wTree.get_widget("featured_window").show_all()	
@@ -255,7 +255,7 @@ def show_screenshot(widget, model):
 		gladefile = "/usr/lib/linuxmint/mintInstall/frontend.glade"
 		wTree = gtk.glade.XML(gladefile, "screenshot_window")
 		wTree.get_widget("screenshot_window").set_title(model.selected_application.name)
-		wTree.get_widget("screenshot_window").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+		wTree.get_widget("screenshot_window").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
 		wTree.get_widget("screenshot_window").connect("delete_event", close_window, wTree.get_widget("screenshot_window"))
 		wTree.get_widget("button_screen_close").connect("clicked", close_window, wTree.get_widget("screenshot_window"))
 		wTree.get_widget("image_screen").set_from_pixbuf(gtk.gdk.pixbuf_new_from_file(model.selected_application.screenshot))	
@@ -326,7 +326,7 @@ def show_more_info(widget, model):
 			gladefile = "/usr/lib/linuxmint/mintInstall/frontend.glade"
 			wTree = gtk.glade.XML(gladefile, "more_info_window")
 			wTree.get_widget("more_info_window").set_title(model.selected_application.name)
-			wTree.get_widget("more_info_window").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+			wTree.get_widget("more_info_window").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
 			wTree.get_widget("button_versions_close").connect("clicked", close_window, wTree.get_widget("more_info_window"))
 
 			tree_repositories = wTree.get_widget("treeview_repositories")
@@ -441,7 +441,7 @@ def install(widget, model, wTree, username):
 			model.selected_application.status = "add"
 			wTree.get_widget("toolbutton_apply").set_sensitive(True)			
 			model_applications, iter = wTree.get_widget("tree_applications").get_selection().get_selected()			
-			model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/add.png"))		
+			model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/add.png"))		
 			model_applications.set_value(iter, 8, 1)
 			show_item(wTree.get_widget("tree_applications").get_selection(), model, wTree, username)
 		
@@ -464,7 +464,7 @@ def remove(widget, model, wTree, username):
 			model.selected_application.status = "remove"
 			wTree.get_widget("toolbutton_apply").set_sensitive(True)
 			model_applications, iter = wTree.get_widget("tree_applications").get_selection().get_selected()			
-			model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/remove.png"))		
+			model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/remove.png"))		
 			model_applications.set_value(iter, 8, 2)
 			show_item(wTree.get_widget("tree_applications").get_selection(), model, wTree, username)
 
@@ -476,14 +476,14 @@ def cancel_change(widget, model, wTree, username):
 				if package in model.packages_to_install:
 					model.packages_to_install.remove(package)
 			model.selected_application.status = "available"
-			model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/available.png"))		
+			model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/available.png"))		
 			model_applications.set_value(iter, 8, 4)
 		elif model.selected_application.status == "remove":
 			for package in model.selected_application.packages:
 				if package in model.packages_to_remove:
 					model.packages_to_remove.remove(package)
 			model.selected_application.status = "installed"
-			model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/installed.png"))		
+			model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/installed.png"))		
 			model_applications.set_value(iter, 8, 3)
 
 		if len(model.packages_to_install) == 0 and len(model.packages_to_remove) == 0:
@@ -580,21 +580,21 @@ def show_applications(wTree, model, scrollback):
 					model_applications.set_value(iter, 5, item)
 					model_applications.set_value(iter, 6, float(item.average_rating) * len(item.reviews) + (item.views / 1000))
 					if item.is_special:
-						model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/special.png"))	
+						model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/special.png"))	
 						model_applications.set_value(iter, 8, 9)
 
 					else:	
 						if item.status == "available":
-							model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/available.png"))		
+							model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/available.png"))		
 							model_applications.set_value(iter, 8, 4)				
 						elif item.status == "installed":
-							model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/installed.png"))
+							model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/installed.png"))
 							model_applications.set_value(iter, 8, 3)
 						elif item.status == "add":
-							model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/add.png"))		
+							model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/add.png"))		
 							model_applications.set_value(iter, 8, 1)
 						elif item.status == "remove":
-							model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/remove.png"))		
+							model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/remove.png"))		
 							model_applications.set_value(iter, 8, 2)
 
 					if model.selected_application == item:						
@@ -633,7 +633,7 @@ def build_GUI(model, username):
 	gladefile = "/usr/lib/linuxmint/mintInstall/frontend.glade"
 	wTree = gtk.glade.XML(gladefile, "main_window")
 	wTree.get_widget("main_window").set_title(_("Software Manager"))
-	wTree.get_widget("main_window").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+	wTree.get_widget("main_window").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
 	wTree.get_widget("main_window").connect("delete_event", close_application)
 
 	wTree.get_widget("image_screenshot").clear()
@@ -826,8 +826,8 @@ def open_about(widget):
         except Exception, detail:
             print detail            
         dlg.set_authors(["Clement Lefebvre <root@linuxmint.com>"]) 
-	dlg.set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
-	dlg.set_logo(gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/icon.svg"))
+	dlg.set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
+	dlg.set_logo(gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/icon.svg"))
         def close(w, res):
             if res == gtk.RESPONSE_CANCEL:
                 w.hide()
@@ -909,7 +909,7 @@ def run(self):
 					gtk.gdk.threads_enter()
 					dialog = gtk.MessageDialog(self.wTree.get_widget("main_window"), gtk.DIALOG_MODAL, gtk.MESSAGE_INFO, gtk.BUTTONS_NONE, _("Please refresh mintInstall by clicking on the Refresh button"))
 					dialog.set_title("mintInstall")
-					dialog.set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+					dialog.set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
 					dialog.add_button(gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE)
 					dialog.connect('response', lambda dialog, response: dialog.destroy())
 					dialog.show()
@@ -1096,7 +1096,7 @@ def load_model_in_GUI(self, wTree, model):
 		iter = model_categories.insert_before(None, None)						
 		model_categories.set_value(iter, 0, _("All applications"))						
 		model_categories.set_value(iter, 1, None)
-		model_categories.set_value(iter, 2, gtk.gdk.pixbuf_new_from_file_at_size("/usr/lib/linuxmint/mintInstall/icon.svg", 16, 16))
+		model_categories.set_value(iter, 2, gtk.gdk.pixbuf_new_from_file_at_size("/usr/share/linuxmint/mintInstall/icon.svg", 16, 16))
 		for portal in model.portals:
 			for category in portal.categories:		
 				if (category.parent == None or category.parent == "None"):
@@ -1128,20 +1128,20 @@ def load_model_in_GUI(self, wTree, model):
 				model_applications.set_value(iter, 5, item)
 				model_applications.set_value(iter, 6, float(item.average_rating) * len(item.reviews) + (item.views / 1000))
 				if item.is_special:
-					model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/special.png"))	
+					model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/special.png"))	
 					model_applications.set_value(iter, 8, 9)	
 				else:					
 					if item.status == "available":
-						model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/available.png"))		
+						model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/available.png"))		
 						model_applications.set_value(iter, 8, 4)				
 					elif item.status == "installed":
-						model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/installed.png"))
+						model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/installed.png"))
 						model_applications.set_value(iter, 8, 3)
 					elif item.status == "add":
-						model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/add.png"))		
+						model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/add.png"))		
 						model_applications.set_value(iter, 8, 1)
 					elif item.status == "remove":
-						model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/status-icons/remove.png"))		
+						model_applications.set_value(iter, 7, gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/status-icons/remove.png"))		
 						model_applications.set_value(iter, 8, 2)
 		model_applications.set_sort_column_id( 6, gtk.SORT_DESCENDING )
 		tree_applications.set_model(model_applications)		
diff --git a/usr/lib/linuxmint/mintInstall/icon.svg b/usr/lib/linuxmint/mintInstall/icon.svg
deleted file mode 100644
index 3ef8eef..0000000
--- a/usr/lib/linuxmint/mintInstall/icon.svg
+++ /dev/null
@@ -1,1160 +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"
-   version="1.0"
-   width="96"
-   height="96"
-   id="svg2408"
-   style="display:inline"
-   inkscape:version="0.48.2 r9819"
-   sodipodi:docname="softwarecenter-ubuntu.svg">
-  <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="640"
-     inkscape:window-height="480"
-     id="namedview211"
-     showgrid="false"
-     inkscape:zoom="2.4583333"
-     inkscape:cx="48"
-     inkscape:cy="48"
-     inkscape:window-x="0"
-     inkscape:window-y="25"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="svg2408" />
-  <defs
-     id="defs2410">
-    <linearGradient
-       id="linearGradient3928">
-      <stop
-         id="stop3930"
-         style="stop-color:#3a240f;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop3932"
-         style="stop-color:#3a240f;stop-opacity:0"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3157">
-      <stop
-         id="stop3159"
-         style="stop-color:#de6010;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop3161"
-         style="stop-color:#f3bd49;stop-opacity:1"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3778">
-      <stop
-         id="stop3780"
-         style="stop-color:#499119;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop3782"
-         style="stop-color:#8fd625;stop-opacity:1"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4426">
-      <stop
-         id="stop4428"
-         style="stop-color:#71461e;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop4430"
-         style="stop-color:#71461e;stop-opacity:0"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4414">
-      <stop
-         id="stop4416"
-         style="stop-color:#dac3a2;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop4418"
-         style="stop-color:#dac3a2;stop-opacity:0"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4370">
-      <stop
-         id="stop4372"
-         style="stop-color:#8a5b30;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop4374"
-         style="stop-color:#8a5b30;stop-opacity:0"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       x1="52.25"
-       y1="47.247101"
-       x2="52.25"
-       y2="0.2393"
-       id="linearGradient4309"
-       gradientUnits="userSpaceOnUse">
-      <stop
-         id="stop4311"
-         style="stop-color:#d8cab2;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop4321"
-         style="stop-color:#d2b98c;stop-opacity:1"
-         offset="0.45710954" />
-      <stop
-         id="stop4323"
-         style="stop-color:#f9f7ef;stop-opacity:1"
-         offset="0.48590001" />
-      <stop
-         id="stop4325"
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0.49110001" />
-      <stop
-         id="stop4327"
-         style="stop-color:#fbf9f4;stop-opacity:1"
-         offset="0.49180001" />
-      <stop
-         id="stop4329"
-         style="stop-color:#efe7d0;stop-opacity:1"
-         offset="0.4946" />
-      <stop
-         id="stop4331"
-         style="stop-color:#e4d6b0;stop-opacity:1"
-         offset="0.49770001" />
-      <stop
-         id="stop4333"
-         style="stop-color:#dac894;stop-opacity:1"
-         offset="0.5011" />
-      <stop
-         id="stop4335"
-         style="stop-color:#c7a572;stop-opacity:1"
-         offset="0.50489998" />
-      <stop
-         id="stop4347"
-         style="stop-color:#d7c198;stop-opacity:1"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4295">
-      <stop
-         id="stop4297"
-         style="stop-color:#b88f56;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop4299"
-         style="stop-color:#d9bd98;stop-opacity:1"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4289">
-      <stop
-         id="stop4291"
-         style="stop-color:#996c3b;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop4293"
-         style="stop-color:#c19e6d;stop-opacity:1"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5092">
-      <stop
-         id="stop5094"
-         style="stop-color:#be9f6a;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop5096"
-         style="stop-color:#e5d2b2;stop-opacity:1"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5010">
-      <stop
-         id="stop5012"
-         style="stop-color:#000000;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop5014"
-         style="stop-color:#000000;stop-opacity:0"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       x1="45.447727"
-       y1="92.539597"
-       x2="45.447727"
-       y2="7.0165396"
-       id="ButtonShadow"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="scale(1.0058652,0.994169)">
-      <stop
-         id="stop3750"
-         style="stop-color:#000000;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop3752"
-         style="stop-color:#000000;stop-opacity:0.58823532"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3737">
-      <stop
-         id="stop3739"
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop3741"
-         style="stop-color:#ffffff;stop-opacity:0"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       x1="54.187183"
-       y1="90"
-       x2="54.187183"
-       y2="39.852562"
-       id="linearGradient3706"
-       xlink:href="#linearGradient4289"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       color-interpolation-filters="sRGB"
-       id="filter3174">
-      <feGaussianBlur
-         id="feGaussianBlur3176"
-         stdDeviation="1.71" />
-    </filter>
-    <filter
-       x="-0.31155673"
-       y="-0.42628157"
-       width="1.6231135"
-       height="1.8525631"
-       color-interpolation-filters="sRGB"
-       id="filter4362">
-      <feGaussianBlur
-         id="feGaussianBlur4364"
-         stdDeviation="6.2124381" />
-    </filter>
-    <linearGradient
-       x1="47.079498"
-       y1="32.782871"
-       x2="6.5962563"
-       y2="9.4098616"
-       id="linearGradient5100"
-       xlink:href="#linearGradient5092"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       x1="48"
-       y1="42"
-       x2="6.7812738"
-       y2="18.202358"
-       id="linearGradient2489"
-       xlink:href="#linearGradient4295"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       x1="47.226776"
-       y1="29.039698"
-       x2="6.3304405"
-       y2="18.081558"
-       id="linearGradient3264"
-       xlink:href="#linearGradient4295"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,96,0)" />
-    <linearGradient
-       x1="50.499405"
-       y1="19.881863"
-       x2="50.499405"
-       y2="47.295406"
-       id="linearGradient3277"
-       xlink:href="#linearGradient4309"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       x1="23.142857"
-       y1="42"
-       x2="66.964287"
-       y2="6"
-       id="linearGradient3285"
-       xlink:href="#linearGradient3737"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       x1="8"
-       y1="38.127232"
-       x2="8"
-       y2="71.877235"
-       id="linearGradient4376"
-       xlink:href="#linearGradient4370"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       x1="10"
-       y1="40.263424"
-       x2="10"
-       y2="89.666374"
-       id="linearGradient4394"
-       xlink:href="#linearGradient3737"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       x1="8"
-       y1="38.127232"
-       x2="8"
-       y2="87.029526"
-       id="linearGradient4400"
-       xlink:href="#linearGradient4370"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,96,0)" />
-    <linearGradient
-       x1="10"
-       y1="40.263424"
-       x2="10"
-       y2="89.666374"
-       id="linearGradient4402"
-       xlink:href="#linearGradient3737"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,96,0)" />
-    <linearGradient
-       x1="8.9651041"
-       y1="44.040279"
-       x2="8.9651041"
-       y2="52.263294"
-       id="linearGradient4420"
-       xlink:href="#linearGradient4414"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       x1="8.9651041"
-       y1="44.040279"
-       x2="8.9651041"
-       y2="52.263294"
-       id="linearGradient4424"
-       xlink:href="#linearGradient4414"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,96.086934,0)" />
-    <radialGradient
-       cx="48"
-       cy="73.14563"
-       r="42"
-       fx="48"
-       fy="73.14563"
-       id="radialGradient4432"
-       xlink:href="#linearGradient4426"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.867765,0,0,0.09523809,6.3472804,36.190476)" />
-    <linearGradient
-       x1="65.262688"
-       y1="64.205269"
-       x2="65.262688"
-       y2="50.068527"
-       id="linearGradient3832"
-       xlink:href="#linearGradient3737"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.625,0,0,0.625,28.5,31.25)" />
-    <linearGradient
-       id="linearGradient3737-4">
-      <stop
-         id="stop3739-1"
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop3741-8"
-         style="stop-color:#ffffff;stop-opacity:0"
-         offset="1" />
-    </linearGradient>
-    <radialGradient
-       cx="48"
-       cy="90.171875"
-       r="42"
-       fx="48"
-       fy="90.171875"
-       id="radialGradient2858"
-       xlink:href="#linearGradient3737-4"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.1573129,0,0,0.99590774,-7.551021,0.1971319)" />
-    <linearGradient
-       x1="56"
-       y1="72"
-       x2="88"
-       y2="72"
-       id="linearGradient3773"
-       xlink:href="#linearGradient3778"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.9375,0,0,0.9375,-140.5,3.5)" />
-    <linearGradient
-       x1="70"
-       y1="54"
-       x2="70"
-       y2="75.095024"
-       id="linearGradient3788"
-       xlink:href="#linearGradient3737"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(0,4)" />
-    <filter
-       color-interpolation-filters="sRGB"
-       id="filter3806">
-      <feGaussianBlur
-         id="feGaussianBlur3808"
-         stdDeviation="1.2" />
-    </filter>
-    <linearGradient
-       x1="65.262688"
-       y1="64.205269"
-       x2="65.262688"
-       y2="50.068527"
-       id="linearGradient3812"
-       xlink:href="#linearGradient5010"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.625,0,0,0.625,78.5,32.25)" />
-    <clipPath
-       id="clipPath3823">
-      <path
-         d="M 108.8125,58 C 107.25437,58 106,59.254375 106,60.8125 l 0,24.375 C 106,86.745625 107.25437,88 108.8125,88 l 24.375,0 C 134.74562,88 136,86.745625 136,85.1875 l 0,-24.375 C 136,59.254375 134.74562,58 133.1875,58 l -24.375,0 z m 7.1875,4.5 10,0 0,8.75 5,0 -10,13.75 -10,-13.75 5,0 0,-8.75 z"
-         inkscape:connector-curvature="0"
-         id="path3825"
-         style="fill:#ffffff;fill-opacity:1;stroke:none" />
-    </clipPath>
-    <filter
-       color-interpolation-filters="sRGB"
-       id="filter3831">
-      <feGaussianBlur
-         id="feGaussianBlur3833"
-         stdDeviation="0.6375" />
-    </filter>
-    <linearGradient
-       x1="51.42857"
-       y1="72.785713"
-       x2="90.714287"
-       y2="72.785713"
-       id="linearGradient3844"
-       xlink:href="#linearGradient3157"
-       gradientUnits="userSpaceOnUse" />
-    <clipPath
-       id="clipPath3871">
-      <path
-         d="M 0,95.999997 0,156 l 96.000001,0 0,-60.000003 -96.000001,0 z M 68,116 c 9.941125,0 18,8.05888 18,18 0,9.94112 -8.058875,18 -18,18 -9.941125,0 -18,-8.05888 -18,-18 0,-9.94112 8.058875,-18 18,-18 z"
-         inkscape:connector-curvature="0"
-         id="path3873"
-         style="fill:#ffffff;fill-opacity:1;stroke:none" />
-    </clipPath>
-    <linearGradient
-       x1="64.321426"
-       y1="55.310268"
-       x2="64.321426"
-       y2="84.889679"
-       id="linearGradient3857-6"
-       xlink:href="#linearGradient3737-1"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2,0)" />
-    <linearGradient
-       id="linearGradient3737-1">
-      <stop
-         id="stop3739-5"
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop3741-9"
-         style="stop-color:#ffffff;stop-opacity:0"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       x1="45.447727"
-       y1="92.539597"
-       x2="45.447727"
-       y2="7.0165396"
-       id="ButtonShadow-0"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)">
-      <stop
-         id="stop3750-8"
-         style="stop-color:#000000;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop3752-5"
-         style="stop-color:#000000;stop-opacity:0.58823532"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       x1="32.251034"
-       y1="6.1317081"
-       x2="32.251034"
-       y2="90.238609"
-       id="linearGradient3780"
-       xlink:href="#ButtonShadow-0"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
-    <linearGradient
-       x1="32.251034"
-       y1="6.1317081"
-       x2="32.251034"
-       y2="90.238609"
-       id="linearGradient3772"
-       xlink:href="#ButtonShadow-0"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
-    <linearGradient
-       x1="32.251034"
-       y1="6.1317081"
-       x2="32.251034"
-       y2="90.238609"
-       id="linearGradient3725"
-       xlink:href="#ButtonShadow-0"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
-    <linearGradient
-       x1="32.251034"
-       y1="6.1317081"
-       x2="32.251034"
-       y2="90.238609"
-       id="linearGradient3721"
-       xlink:href="#ButtonShadow-0"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(0,-97)" />
-    <linearGradient
-       x1="32.251034"
-       y1="6.1317081"
-       x2="32.251034"
-       y2="90.238609"
-       id="linearGradient2918"
-       xlink:href="#ButtonShadow-0"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
-    <linearGradient
-       x1="48.40115"
-       y1="61.990967"
-       x2="48.40115"
-       y2="4.6666145"
-       id="linearGradient3934"
-       xlink:href="#linearGradient3928"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       x1="46.795631"
-       y1="60.307007"
-       x2="46.795631"
-       y2="6.0179305"
-       id="linearGradient3942"
-       xlink:href="#linearGradient3928"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       x1="32"
-       y1="24"
-       x2="48"
-       y2="72"
-       id="linearGradient4201"
-       xlink:href="#linearGradient3312"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       id="linearGradient3312">
-      <stop
-         id="stop3314"
-         style="stop-color:#c7f994;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop3316"
-         style="stop-color:#87cf3e;stop-opacity:1"
-         offset="1" />
-    </linearGradient>
-    <linearGradient
-       x1="29.158056"
-       y1="64.280525"
-       x2="49.614868"
-       y2="39.964417"
-       id="linearGradient4215"
-       xlink:href="#linearGradient4209"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       id="linearGradient4209">
-      <stop
-         id="stop4211"
-         style="stop-color:#000000;stop-opacity:1"
-         offset="0" />
-      <stop
-         id="stop4213"
-         style="stop-color:#000000;stop-opacity:0"
-         offset="1" />
-    </linearGradient>
-  </defs>
-  <metadata
-     id="metadata2413">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer2"
-     style="display:none">
-    <path
-       d="M 11,7 48,5 85,7 c 3.324,0 6,2.676 6,6 l 0,73 c 0,3.324 -2.676,6 -6,6 L 11,92 C 7.676,92 5,89.324 5,86 L 5,13 C 5,9.676 7.676,7 11,7 z"
-       inkscape:connector-curvature="0"
-       id="rect3745"
-       style="opacity:0.9;fill:url(#ButtonShadow);fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter3174)" />
-  </g>
-  <g
-     id="layer3"
-     style="display:inline">
-    <path
-       d="m 12,-95.03125 c -5.5110903,0 -10.03125,4.52016 -10.03125,10.03125 l 0,71 c 0,5.5110902 4.5201598,10.03125 10.03125,10.03125 l 72,0 c 5.51109,0 10.03125,-4.5201597 10.03125,-10.03125 l 0,-71 c 0,-5.51109 -4.52016,-10.03125 -10.03125,-10.03125 l -72,0 z"
-       transform="scale(1,-1)"
-       id="path3786"
-       style="opacity:0.07999998;fill:url(#linearGradient2918);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
-    <path
-       d="m 12,-94.03125 c -4.971633,0 -9.03125,4.059617 -9.03125,9.03125 l 0,71 c 0,4.9716329 4.0596171,9.03125 9.03125,9.03125 l 72,0 c 4.971633,0 9.03125,-4.059617 9.03125,-9.03125 l 0,-71 c 0,-4.971633 -4.059617,-9.03125 -9.03125,-9.03125 l -72,0 z"
-       transform="scale(1,-1)"
-       id="path3778"
-       style="opacity:0.1;fill:url(#linearGradient3780);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
-    <path
-       d="m 12,-93 c -4.4091333,0 -8,3.590867 -8,8 l 0,71 c 0,4.4091333 3.5908667,8 8,8 l 72,0 c 4.409133,0 8,-3.5908667 8,-8 l 0,-71 c 0,-4.409133 -3.590867,-8 -8,-8 l -72,0 z"
-       transform="scale(1,-1)"
-       id="path3770"
-       style="opacity:0.2;fill:url(#linearGradient3772);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
-    <rect
-       width="86"
-       height="85"
-       rx="7"
-       ry="7"
-       x="5"
-       y="-92"
-       transform="scale(1,-1)"
-       id="rect3723"
-       style="opacity:0.3;fill:url(#linearGradient3725);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
-    <rect
-       width="84"
-       height="84"
-       rx="6"
-       ry="6"
-       x="6"
-       y="-91"
-       transform="scale(1,-1)"
-       id="rect3716"
-       style="opacity:0.45;fill:url(#linearGradient3721);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
-  </g>
-  <g
-     id="layer1"
-     style="display:inline">
-    <path
-       d="m 6,36 0,48 c 0,1.781762 0.7745675,3.371709 2,4.46875 L 8,36 6,36 z"
-       inkscape:connector-curvature="0"
-       id="rect5138"
-       style="fill:url(#linearGradient4376);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <rect
-       width="84"
-       height="84"
-       rx="6"
-       ry="6"
-       x="6"
-       y="6"
-       id="rect2419"
-       style="fill:url(#linearGradient3706);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <path
-       d="m 6,36 0,2 c 0,3.324 2.676,6 6,6 l 72,0 c 3.324,0 6,-2.676 6,-6 l 0,-2 c 0,3.324 -2.676,6 -6,6 L 12,42 C 8.676,42 6,39.324 6,36 z"
-       inkscape:connector-curvature="0"
-       id="path3287"
-       style="fill:url(#radialGradient4432);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <path
-       d="m 90,36 0,48 c 0,1.781762 -0.774567,3.371709 -2,4.46875 L 88,36 l 2,0 z"
-       inkscape:connector-curvature="0"
-       id="path4396"
-       style="fill:url(#linearGradient4400);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <rect
-       width="84"
-       height="24"
-       rx="6"
-       ry="6"
-       x="6"
-       y="18"
-       id="rect2483"
-       style="fill:#3c2510;fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <path
-       d="m 88,36 0,52.46875 c -0.576856,0.516417 -1.254924,0.923089 -2,1.1875 L 86,36 l 2,0 z"
-       inkscape:connector-curvature="0"
-       id="path4398"
-       style="opacity:0.3;fill:url(#linearGradient4402);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <path
-       d="m 8,36 0,52.46875 c 0.5768558,0.516417 1.254924,0.923089 2,1.1875 L 10,36 8,36 z"
-       inkscape:connector-curvature="0"
-       id="path4378"
-       style="opacity:0.3;fill:url(#linearGradient4394);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <path
-       d="M 12,6 C 8.7734181,6 6,8.2592995 6,13 L 6,15 6,35.65625 48,35.69067 48,6 14,6 12,6 z"
-       inkscape:connector-curvature="0"
-       id="path5055"
-       style="fill:url(#linearGradient5100);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <rect
-       width="47.855976"
-       height="34.976532"
-       rx="6"
-       ry="6"
-       x="12.753176"
-       y="41.956837"
-       transform="matrix(1,0,0,0.8555957,10,8.5841304)"
-       id="rect4356"
-       style="opacity:0.3;fill:#dac7a8;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4362)" />
-    <path
-       d="M 12,6 C 8.676,6 6,8.676 6,12 l 0,24 c 0,3.324 2.676,6 6,6 L 48,40 48,4 12,6 z"
-       inkscape:connector-curvature="0"
-       id="rect2481"
-       style="fill:url(#linearGradient2489);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <path
-       d="M 54.120367,7.0000001 42,7.0000001 42.060184,31.062224 42.194832,60 l 5.686841,-0.49473 6.043862,-0.525331 0.03264,-5.551173 0.102007,-22.366542 0.06018,-24.0622239 z"
-       inkscape:connector-curvature="0"
-       id="path5008"
-       style="opacity:0.5;fill:#3a240f;fill-opacity:1;display:inline" />
-    <path
-       d="m 84,6 c 3.324,0 6,2.676 6,6 l 0,24 c 0,3.324 -2.676,6 -6,6 L 48,40 48,4 84,6 z"
-       inkscape:connector-curvature="0"
-       id="path3262"
-       style="fill:url(#linearGradient3264);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <path
-       d="m 41.6875,5.125 c 0.0042,-7.112e-4 -0.191651,0.032337 -0.1875,0.03125 0.0042,-0.00109 -0.160287,0.063954 -0.15625,0.0625 0.004,-0.00145 -0.160141,0.064309 -0.15625,0.0625 0.0039,-0.00181 -0.128713,0.06465 -0.125,0.0625 0.0037,-0.00215 -0.159756,0.096223 -0.15625,0.09375 0.0035,-0.00247 -0.128271,0.1277772 -0.125,0.125 0.0033,-0.00278 -0.128009,0.096809 -0.125,0.09375 0.003,-0.00306 -0.127724,0.1283156 -0.125,0.125 0.0027,-0.00332 -0.09617,0.1597959 -0.09375,0.15625 0.0024,-0.00355 -0.09584,0.1287479 -0.09375,0.125 0.0021,-0.00375 -0.06424,0.1601697 -0.0625,0.15625 0.0017,-0.00392 -0.06389,0.1603101 -0.0625,0.15625 0.0014,-0.00406 -0.03227,0.160418 -0.03125,0.15625 0.001,-0.00417 -0.06314,0.1604925 -0.0625,0.15625 6.42e-4,-0.00424 -2.6e-4,0.1917829 0,0.1875 2.08e-4,-0.00343 7.69e-4,0.08233 0,0.125 l 0,0.03125 L 40.1875,31.0625 40.3125,60 a 1.0057838,1.0057838 0 0 0 0,0.03125 c -4.2e-5,-0.0025 1.68e-4,0.0962 0,0.09375 -1.68e-4,-0.0025 2.94e-4,0.09619 0,0.09375 -2.94e-4,-0.0024 0.03167,0.09617 0.03125,0.09375 -4.19e-4,-0.0024 5.42e-4,0.09615 0,0.09375 -5.42e-4,-0.0024 0.03191,0.09611 0.03125,0.09375 -6.64e-4,-0.0024 0.03204,0.09608 0.03125,0.09375 -7.85e-4,-0.0023 0.03215,0.06479 0.03125,0.0625 -9.03e-4,-0.0023 0.03227,0.09599 0.03125,0.09375 -0.001,-0.0022 0.06363,0.09593 0.0625,0.09375 -0.0011,-0.0022 0.03249,0.09587 0.03125,0.09375 -0.0012,-0.0021 0.06385,0.06455 0.0625,0.0625 -0.0014,-0.0021 0.0327,0.09573 0.03125,0.09375 -0.0015,-0.002 0.06405,0.0644 0.0625,0.0625 -0.0016,-0.0019 0.06415,0.09557 0.0625,0.09375 -0.0016,-0.0018 0.06424,0.06423 0.0625,0.0625 -0.0017,-0.0017 0.09558,0.06414 0.09375,0.0625 -0.0018,-0.0016 0.06441,0.06405 0.0625,0.0625 -0.0019,-0.0015 0.06448,0.06395 0.0625,0.0625 -0.002,-0.0014 0.09581,0.06384 0.09375,0.0625 -0.0021,-0.0013 0.06462,0.03249 0.0625,0.03125 -0.0021,-0.0012 0.09593,0.06363 0.09375,0.0625 -0.0022,-0.0011 0.09599,0.03226 0.09375,0.03125 -0.0022,-0.001 0.09604,0.03215 0.09375,0.03125 -0.0023,-8.97e-4 0.09608,0.03203 0.09375,0.03125 -0.0023,-7.79e-4 0.09612,0.03191 0.09375,0.03125 -0.0024,-6.58e-4 0.09615,0.03179 0.09375,0.03125 -0.0024,-5.36e-4 0.09617,4.12e-4 0.09375,0 -0.0024,-4.12e-4 0.09619,0.03154 0.09375,0.03125 -0.0024,-2.88e-4 0.0962,1.62e-4 0.09375,0 -0.0025,-1.62e-4 0.09621,3.6e-5 0.09375,0 -0.0025,-3.6e-5 0.0962,-9e-5 0.09375,0 -0.0025,9e-5 0.0962,-2.16e-4 0.09375,0 l 5.6875,-0.5 6.03125,-0.53125 c -8.93e-4,5.1e-5 0.02019,0.0012 0.03125,0 0.04424,-0.0047 0.128538,-5.37e-4 0.125,0 -0.0044,6.71e-4 0.19184,-0.06358 0.1875,-0.0625 -0.0043,0.0011 0.160471,-0.03273 0.15625,-0.03125 -0.0042,0.0015 0.160314,-0.06437 0.15625,-0.0625 -0.0041,0.0019 0.160122,-0.09599 0.15625,-0.09375 -0.0039,0.0022 0.159897,-0.09634 0.15625,-0.09375 -0.0036,0.0026 0.128389,-0.09667 0.125,-0.09375 -0.0034,0.0029 0.128103,-0.128222 0.125,-0.125 -0.0031,0.0032 0.127789,-0.128497 0.125,-0.125 -0.0028,0.0035 0.0962,-0.159992 0.09375,-0.15625 -0.0025,0.0037 0.09584,-0.160204 0.09375,-0.15625 -0.0021,0.004 0.09546,-0.160382 0.09375,-0.15625 -0.0017,0.0041 0.06382,-0.160524 0.0625,-0.15625 -0.0013,0.0043 0.03217,-0.160628 0.03125,-0.15625 -9.16e-4,0.0044 0.03175,-0.191944 0.03125,-0.1875 -5.04e-4,0.0044 8.7e-5,-0.160722 0,-0.15625 a 1.0057838,1.0057838 0 0 0 0,-0.03125 L 55.84375,53.4375 55.9375,31.0625 56,7 c -7.3e-5,0.00479 -4.06e-4,-0.1610265 0,-0.15625 4.06e-4,0.00478 -0.03213,-0.1922121 -0.03125,-0.1875 8.81e-4,0.00471 -0.0326,-0.1921004 -0.03125,-0.1875 0.0013,0.0046 -0.0643,-0.1919427 -0.0625,-0.1875 0.0018,0.00444 -0.09599,-0.1604906 -0.09375,-0.15625 0.0022,0.00424 -0.0964,-0.160246 -0.09375,-0.15625 0.0026,0.004 -0.09678,-0.1599614 -0.09375,-0.15625 0.003,0.00371 -0.12839,-0.1596397 -0.125,-0.15625 0.0034,0.00339 -0.159961,-0.1280341 -0.15625,-0.125 0.0037,0.00303 -0.160246,-0.096398 -0.15625,-0.09375 0.004,0.00265 -0.160491,-0.095986 -0.15625,-0.09375 0.0042,0.00224 -0.160693,-0.095551 -0.15625,-0.09375 0.0044,0.0018 -0.1921,-0.063848 -0.1875,-0.0625 0.0046,0.00135 -0.192212,-0.032132 -0.1875,-0.03125 0.0047,8.815e-4 -0.192277,-0.031656 -0.1875,-0.03125 0.0048,4.063e-4 -0.161043,7.3e-5 -0.15625,0 l -12.03125,0 c 0.0026,2.364e-4 -0.04386,0.00229 -0.09375,0 -0.03326,-0.00153 -0.06424,0 -0.0625,0 0.0043,0 -0.19183,3.94e-4 -0.1875,0 a 1.0057838,1.0057838 0 0 0 -0.0625,0 z"
-       id="path3926"
-       style="opacity:0.1;fill:url(#linearGradient3934);fill-opacity:1;display:inline" />
-    <path
-       d="M 42,6.125 A 0.8619805,0.8619805 0 0 0 41.125,7 L 41.1875,31.0625 41.3125,60 a 0.8619805,0.8619805 0 0 0 0.9375,0.84375 l 5.6875,-0.5 L 54,59.8125 a 0.8619805,0.8619805 0 0 0 0.8125,-0.84375 L 54.84375,53.4375 54.9375,31.0625 55,7 A 0.8619805,0.8619805 0 0 0 54.125,6.125 L 42,6.125 z"
-       id="path3922"
-       style="opacity:0.2;fill:url(#linearGradient3942);fill-opacity:1;display:inline" />
-    <path
-       d="M 58.191,-1.3602622 52.25,-1.7935124 46.309,-1.3602622 46.368,23.828 46.5,52.196667 l 5.575,-0.485 5.925,-0.515 0.032,-5.442 0.1,-21.926667 0.059,-25.1882622 z"
-       inkscape:connector-curvature="0"
-       transform="matrix(1.0200612,0,0,1.0200612,-5.2981977,5.7562055)"
-       id="polygon120"
-       style="fill:url(#linearGradient3277);fill-opacity:1;display:inline" />
-    <path
-       d="M 12,6 C 8.676,6 6,8.676 6,12 l 0,24 c 0,3.324 2.676,6 6,6 l 36,-2 36,2 c 3.324,0 6,-2.676 6,-6 L 90,12 C 90,8.676 87.324,6 84,6 L 48,4 12,6 z m 0,2 36,-2 36,2 c 2.245802,0 4,1.7541975 4,4 l 0,24 c 0,2.245802 -1.754198,4 -4,4 L 48,38 12,40 C 9.7541975,40 8,38.245802 8,36 L 8,12 C 8,9.7541975 9.7541975,8 12,8 z"
-       inkscape:connector-curvature="0"
-       id="rect3266"
-       style="opacity:0.3;fill:url(#linearGradient3285);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <rect
-       width="1"
-       height="35.714287"
-       x="47"
-       y="4.1250005"
-       id="rect4363"
-       style="opacity:0.2;fill:#8d6137;fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <rect
-       width="1"
-       height="35.714287"
-       x="48"
-       y="4.1250005"
-       id="rect4365"
-       style="opacity:0.2;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    <path
-       d="m 6.1871843,37.284884 c 2.3991123,5.555839 1.894036,16.036171 1.894036,16.036171 L 9.9121217,53.068517 C 9.6595836,44.861028 10.354063,41.83057 14.89975,41.704301 7.7307581,40.509469 6.1871843,37.284884 6.1871843,37.284884 z"
-       inkscape:connector-curvature="0"
-       id="path4404"
-       style="fill:url(#linearGradient4420);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-    <path
-       d="m 89.89975,37.284884 c -2.399112,5.555839 -1.894036,16.036171 -1.894036,16.036171 L 86.174813,53.068517 C 86.427351,44.861028 85.732871,41.83057 81.187184,41.704301 88.356176,40.509469 89.89975,37.284884 89.89975,37.284884 z"
-       inkscape:connector-curvature="0"
-       id="path4422"
-       style="fill:url(#linearGradient4424);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-    <path
-       d="M 12,90 C 8.676,90 6,87.324 6,84 L 6,82 6,14 6,12 c 0,-0.334721 0.04135,-0.6507 0.09375,-0.96875 0.0487,-0.295596 0.09704,-0.596915 0.1875,-0.875 C 6.29113,10.12587 6.302142,10.09265 6.3125,10.0625 6.411365,9.774729 6.5473802,9.515048 6.6875,9.25 6.8320918,8.976493 7.0031161,8.714385 7.1875,8.46875 7.3718839,8.223115 7.5612765,7.995278 7.78125,7.78125 8.221197,7.353194 8.72416,6.966724 9.28125,6.6875 9.559795,6.547888 9.8547231,6.440553 10.15625,6.34375 9.9000482,6.443972 9.6695391,6.580022 9.4375,6.71875 c -0.00741,0.0044 -0.023866,-0.0045 -0.03125,0 -0.031933,0.0193 -0.062293,0.04251 -0.09375,0.0625 -0.120395,0.0767 -0.2310226,0.163513 -0.34375,0.25 -0.1061728,0.0808 -0.2132809,0.161112 -0.3125,0.25 C 8.4783201,7.442683 8.3087904,7.626638 8.15625,7.8125 8.0486711,7.942755 7.9378561,8.077785 7.84375,8.21875 7.818661,8.25713 7.805304,8.30462 7.78125,8.34375 7.716487,8.446782 7.6510225,8.548267 7.59375,8.65625 7.4927417,8.850956 7.3880752,9.071951 7.3125,9.28125 7.30454,9.30306 7.288911,9.3218 7.28125,9.34375 7.2494249,9.4357 7.2454455,9.530581 7.21875,9.625 7.1884177,9.731618 7.1483606,9.828031 7.125,9.9375 7.0521214,10.279012 7,10.635705 7,11 l 0,2 0,68 0,2 c 0,2.781848 2.2181517,5 5,5 l 2,0 68,0 2,0 c 2.781848,0 5,-2.218152 5,-5 l 0,-2 0,-68 0,-2 C 89,10.635705 88.94788,10.279012 88.875,9.9375 88.83085,9.730607 88.78662,9.539842 88.71875,9.34375 88.71105,9.3218 88.69545,9.30306 88.6875,9.28125 88.62476,9.107511 88.549117,8.913801 88.46875,8.75 88.42717,8.6672 88.38971,8.580046 88.34375,8.5 88.28915,8.40279 88.216976,8.31165 88.15625,8.21875 88.06214,8.077785 87.951329,7.942755 87.84375,7.8125 87.700576,7.63805 87.540609,7.465502 87.375,7.3125 87.36383,7.3023 87.35502,7.29135 87.34375,7.28125 87.205364,7.155694 87.058659,7.046814 86.90625,6.9375 86.803679,6.86435 86.701932,6.784136 86.59375,6.71875 c -0.0074,-0.0045 -0.02384,0.0044 -0.03125,0 -0.232039,-0.138728 -0.462548,-0.274778 -0.71875,-0.375 0.301527,0.0968 0.596455,0.204138 0.875,0.34375 0.55709,0.279224 1.060053,0.665694 1.5,1.09375 0.219973,0.214028 0.409366,0.441865 0.59375,0.6875 0.184384,0.245635 0.355408,0.507743 0.5,0.78125 0.14012,0.265048 0.276135,0.524729 0.375,0.8125 0.01041,0.03078 0.02133,0.06274 0.03125,0.09375 0.09046,0.278085 0.1388,0.579404 0.1875,0.875 C 89.95865,11.3493 90,11.665279 90,12 l 0,2 0,68 0,2 c 0,3.324 -2.676,6 -6,6 l -72,0 z"
-       inkscape:connector-curvature="0"
-       id="path3615"
-       style="opacity:0.2;fill:url(#radialGradient2858);fill-opacity:1;fill-rule:nonzero;stroke:none" />
-  </g>
-  <g
-     id="layer5">
-    <g
-       transform="translate(0,-2)"
-       id="g3745"
-       style="display:inline">
-      <rect
-         width="14"
-         height="19"
-         rx="1.8666667"
-         ry="2"
-         x="15.5"
-         y="49.5"
-         id="rect3739"
-         style="fill:none;stroke:#825023;stroke-width:1;stroke-opacity:1" />
-      <path
-         d="m 18.25,66 0,-9.25 -1.25,0 2.5,-4.75 2.5,4.75 -1.25,0 0,9.25 -2.5,0 z"
-         inkscape:connector-curvature="0"
-         id="path3741"
-         style="fill:#825023;fill-opacity:1;fill-rule:nonzero;stroke:none" />
-      <path
-         d="m 24.25,66 0,-9.25 -1.25,0 2.5,-4.75 2.5,4.75 -1.25,0 0,9.25 -2.5,0 z"
-         inkscape:connector-curvature="0"
-         id="path3743"
-         style="fill:#825023;fill-opacity:1;fill-rule:nonzero;stroke:none" />
-    </g>
-    <g
-       id="text3750"
-       style="font-size:2px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#553417;fill-opacity:1;stroke:none;display:inline;font-family:Arial Black;-inkscape-font-specification:'Arial Black, Bold'">
-      <path
-         d="m 15.148438,74.082314 1.093749,0 0,0.307617 -0.649414,0 0,0.25 0.554688,0 0,0.289062 -0.554688,0 0,0.584961 -0.444335,0 0,-1.43164"
-         inkscape:connector-curvature="0"
-         id="path3137" />
-      <path
-         d="m 17.175781,75.277626 -0.503906,0 -0.06934,0.236328 -0.452148,0 0.538086,-1.43164 0.482421,0 0.538086,1.43164 -0.46289,0 -0.07031,-0.236328 m -0.09277,-0.30957 -0.158203,-0.514649 -0.157227,0.514649 0.31543,0"
-         inkscape:connector-curvature="0"
-         id="path3139" />
-      <path
-         d="m 17.848633,74.082314 1.185547,0 0,0.305664 -0.742188,0 0,0.227539 0.688477,0 0,0.291992 -0.688477,0 0,0.282226 0.763672,0 0,0.324219 -1.207031,0 0,-1.43164"
-         inkscape:connector-curvature="0"
-         id="path3141" />
-      <path
-         d="m 19.297852,74.082314 0.413085,0 0.539063,0.791992 0,-0.791992 0.416992,0 0,1.43164 -0.416992,0 -0.536133,-0.786133 0,0.786133 -0.416015,0 0,-1.43164"
-         inkscape:connector-curvature="0"
-         id="path3143" />
-      <path
-         d="m 20.926758,74.082314 1.251953,0 0,0.286132 -0.802734,0.837891 0.832031,0 0,0.307617 -1.358399,0 0,-0.296875 0.793946,-0.829101 -0.716797,0 0,-0.305664"
-         inkscape:connector-curvature="0"
-         id="path3145" />
-      <path
-         d="m 23.289062,75.277626 -0.503906,0 -0.06934,0.236328 -0.452148,0 0.538086,-1.43164 0.482422,0 0.538086,1.43164 -0.462891,0 -0.07031,-0.236328 m -0.09277,-0.30957 -0.158203,-0.514649 -0.157227,0.514649 0.31543,0"
-         inkscape:connector-curvature="0"
-         id="path3147" />
-    </g>
-    <g
-       id="text3754"
-       style="font-size:1.5px;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:#553417;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial">
-      <path
-         d="m 15.109863,81.513954 0,-1.07373 0.14209,0 0,0.53247 0.533203,-0.53247 0.192627,0 -0.450439,0.435058 0.470215,0.638672 -0.1875,0 -0.382325,-0.543457 -0.175781,0.171387 0,0.37207 -0.14209,0"
-         inkscape:connector-curvature="0"
-         id="path3037" />
-      <path
-         d="m 16.633301,81.263466 0.13623,0.01685 c -0.02149,0.07959 -0.06128,0.141357 -0.119385,0.185302 -0.05811,0.04395 -0.132324,0.06592 -0.222656,0.06592 -0.11377,0 -0.204102,-0.03491 -0.270996,-0.104736 -0.06641,-0.07031 -0.09961,-0.168701 -0.09961,-0.295166 0,-0.130859 0.03369,-0.232421 0.101074,-0.304688 0.06738,-0.07226 0.154785,-0.108397 0.262207,-0.108398 0.104003,1e-6 0.188964,0.0354 0.254883,0.106201 0.06592,0.0708 0.09888,0.170411 0.09888,0.298828 -1e-6,0.0078 -2.45e-4,0.01953 -7.33e-4,0.03516 l -0.580078,0 c 0.0049,0.08545 0.02905,0.150879 0.07251,0.196289 0.04346,0.04541 0.09766,0.06812 0.162598,0.06812 0.04834,0 0.0896,-0.0127 0.123779,-0.03809 0.03418,-0.02539 0.06128,-0.06592 0.0813,-0.121582 m -0.432862,-0.213135 0.434327,0 c -0.0059,-0.06543 -0.02246,-0.114501 -0.0498,-0.147217 -0.04199,-0.05078 -0.09644,-0.07617 -0.16333,-0.07617 -0.06055,10e-7 -0.111573,0.02026 -0.153076,0.06079 -0.04102,0.04053 -0.06372,0.09473 -0.06812,0.162598"
-         inkscape:connector-curvature="0"
-         id="path3039" />
-      <path
-         d="m 17.468262,81.263466 0.13623,0.01685 c -0.02149,0.07959 -0.06128,0.141357 -0.119385,0.185302 -0.05811,0.04395 -0.132324,0.06592 -0.222656,0.06592 -0.11377,0 -0.204102,-0.03491 -0.270996,-0.104736 -0.06641,-0.07031 -0.09961,-0.168701 -0.09961,-0.295166 0,-0.130859 0.03369,-0.232421 0.101074,-0.304688 0.06738,-0.07226 0.154785,-0.108397 0.262207,-0.108398 0.104003,1e-6 0.188964,0.0354 0.254883,0.106201 0.06592,0.0708 0.09888,0.170411 0.09888,0.298828 -1e-6,0.0078 -2.45e-4,0.01953 -7.33e-4,0.03516 l -0.580078,0 c 0.0049,0.08545 0.02905,0.150879 0.07251,0.196289 0.04346,0.04541 0.09766,0.06812 0.162598,0.06812 0.04834,0 0.0896,-0.0127 0.123779,-0.03809 0.03418,-0.02539 0.06128,-0.06592 0.0813,-0.121582 m -0.432862,-0.213135 0.434327,0 c -0.0059,-0.06543 -0.02246,-0.114501 -0.0498,-0.147217 -0.04199,-0.05078 -0.09644,-0.07617 -0.16333,-0.07617 -0.06055,10e-7 -0.111573,0.02026 -0.153076,0.06079 -0.04102,0.04053 -0.06372,0.09473 -0.06812,0.162598"
-         inkscape:connector-curvature="0"
-         id="path3041" />
-      <path
-         d="m 17.770752,81.81205 0,-1.075928 0.120117,0 0,0.101074 c 0.02832,-0.03955 0.0603,-0.06909 0.09595,-0.08862 0.03564,-0.02002 0.07886,-0.03003 0.129639,-0.03003 0.06641,10e-7 0.125,0.01709 0.175781,0.05127 0.05078,0.03418 0.08911,0.08252 0.114991,0.145019 0.02588,0.06201 0.03882,0.130127 0.03882,0.204346 -1e-6,0.07959 -0.01441,0.151367 -0.04321,0.215332 -0.02832,0.06348 -0.06983,0.112305 -0.124512,0.146484 -0.0542,0.03369 -0.111328,0.05054 -0.171386,0.05054 -0.04395,0 -0.0835,-0.0093 -0.118653,-0.02783 -0.03467,-0.01855 -0.06323,-0.04199 -0.08569,-0.07031 l 0,0.378662 -0.131836,0 m 0.119385,-0.682617 c 0,0.100098 0.02026,0.174072 0.06079,0.221924 0.04053,0.04785 0.0896,0.07178 0.147217,0.07178 0.05859,0 0.108642,-0.02466 0.150146,-0.07398 0.04199,-0.0498 0.06299,-0.126708 0.06299,-0.230713 0,-0.09912 -0.02051,-0.173339 -0.06152,-0.222656 -0.04053,-0.04932 -0.08911,-0.07397 -0.145752,-0.07398 -0.05615,10e-7 -0.105957,0.02637 -0.149414,0.0791 -0.04297,0.05225 -0.06445,0.128419 -0.06445,0.228516"
-         inkscape:connector-curvature="0"
-         id="path3043" />
-      <path
-         d="m 19.022461,80.591835 0,-0.151611 0.131836,0 0,0.151611 -0.131836,0 m 0,0.922119 0,-0.777832 0.131836,0 0,0.777832 -0.131836,0"
-         inkscape:connector-curvature="0"
-         id="path3045" />
-      <path
-         d="m 19.355713,81.513954 0,-0.777832 0.118652,0 0,0.110596 c 0.05713,-0.08545 0.139648,-0.128173 0.247559,-0.128174 0.04687,1e-6 0.08984,0.0085 0.128906,0.02564 0.03955,0.0166 0.06909,0.03857 0.08862,0.06592 0.01953,0.02734 0.0332,0.05982 0.04102,0.09741 0.0049,0.02441 0.0073,0.06714 0.0073,0.128174 l 0,0.478271 -0.131836,0 0,-0.473144 c -1e-6,-0.05371 -0.0051,-0.09375 -0.01538,-0.120118 -0.01025,-0.02685 -0.02857,-0.0481 -0.05493,-0.06372 -0.02588,-0.01611 -0.0564,-0.02417 -0.09155,-0.02417 -0.05615,0 -0.104737,0.01782 -0.145752,0.05347 -0.04053,0.03565 -0.06079,0.103272 -0.06079,0.20288 l 0,0.424805 -0.131836,0"
-         inkscape:connector-curvature="0"
-         id="path3047" />
-      <path
-         d="m 21.114258,81.418007 c -0.04883,0.0415 -0.09595,0.0708 -0.141358,0.08789 -0.04492,0.01709 -0.09326,0.02563 -0.145019,0.02563 -0.08545,0 -0.151123,-0.02075 -0.197022,-0.06226 -0.0459,-0.04199 -0.06885,-0.09546 -0.06885,-0.1604 0,-0.03809 0.0085,-0.07275 0.02563,-0.104004 0.01758,-0.03174 0.04028,-0.05713 0.06812,-0.07617 0.02832,-0.01904 0.06006,-0.03345 0.09521,-0.04321 0.02588,-0.0068 0.06494,-0.01343 0.117187,-0.01977 0.106445,-0.0127 0.184814,-0.02783 0.235107,-0.04541 4.88e-4,-0.01807 7.32e-4,-0.02954 7.33e-4,-0.03442 -10e-7,-0.05371 -0.01245,-0.09155 -0.03735,-0.113525 -0.03369,-0.02979 -0.08374,-0.04468 -0.150146,-0.04468 -0.06201,10e-7 -0.107911,0.01099 -0.137695,0.03296 -0.0293,0.02148 -0.05103,0.05982 -0.06519,0.11499 l -0.128906,-0.01758 c 0.01172,-0.05517 0.03101,-0.09961 0.05786,-0.133301 0.02686,-0.03418 0.06567,-0.0603 0.116455,-0.07837 0.05078,-0.01855 0.109619,-0.02783 0.176514,-0.02783 0.06641,10e-7 0.120361,0.0078 0.161865,0.02344 0.0415,0.01563 0.07202,0.0354 0.09155,0.05933 0.01953,0.02344 0.0332,0.05322 0.04102,0.08935 0.0044,0.02246 0.0066,0.06299 0.0066,0.121582 l 0,0.175781 c 0,0.122559 0.0027,0.200196 0.0081,0.232911 0.0059,0.03223 0.01709,0.06323 0.03369,0.09302 l -0.137695,0 c -0.01367,-0.02734 -0.02246,-0.05933 -0.02637,-0.09595 m -0.01099,-0.294434 c -0.04785,0.01953 -0.119629,0.03613 -0.215332,0.04981 -0.0542,0.0078 -0.09253,0.0166 -0.11499,0.02637 -0.02246,0.0098 -0.0398,0.02417 -0.052,0.04321 -0.01221,0.01855 -0.01831,0.03931 -0.01831,0.06226 0,0.03516 0.01318,0.06445 0.03955,0.08789 0.02686,0.02344 0.06592,0.03516 0.117188,0.03516 0.05078,0 0.09595,-0.01099 0.135498,-0.03296 0.03955,-0.02246 0.0686,-0.05298 0.08716,-0.09155 0.01416,-0.02978 0.02124,-0.07373 0.02124,-0.131836 l 0,-0.04834"
-         inkscape:connector-curvature="0"
-         id="path3049" />
-      <path
-         d="m 21.804932,81.281776 0.130371,-0.02051 c 0.0073,0.05225 0.02759,0.09229 0.06079,0.120117 0.03369,0.02783 0.08057,0.04175 0.140625,0.04175 0.06055,0 0.105468,-0.01221 0.134765,-0.03662 0.0293,-0.0249 0.04395,-0.05395 0.04395,-0.08716 -10e-7,-0.02979 -0.01294,-0.05322 -0.03882,-0.07031 -0.01807,-0.01172 -0.06299,-0.02661 -0.134765,-0.04468 -0.09668,-0.02441 -0.163819,-0.04541 -0.201416,-0.06299 -0.03711,-0.01807 -0.06543,-0.04272 -0.08496,-0.07398 -0.01904,-0.03174 -0.02857,-0.06665 -0.02857,-0.104736 0,-0.03467 0.0078,-0.06665 0.02344,-0.09595 0.01611,-0.02978 0.03784,-0.05444 0.06518,-0.07397 0.02051,-0.01514 0.04834,-0.02783 0.0835,-0.03809 0.03564,-0.01074 0.07373,-0.01611 0.114258,-0.01611 0.06104,10e-7 0.114502,0.0088 0.160401,0.02637 0.04639,0.01758 0.08057,0.04151 0.102539,0.07178 0.02197,0.02979 0.03711,0.06982 0.04541,0.120117 l -0.128906,0.01758 c -0.0059,-0.04004 -0.02295,-0.07129 -0.05127,-0.09375 -0.02783,-0.02246 -0.06738,-0.03369 -0.118652,-0.03369 -0.06055,10e-7 -0.10376,0.01001 -0.129639,0.03003 -0.02588,0.02002 -0.03882,0.04346 -0.03882,0.07031 0,0.01709 0.0054,0.03247 0.01611,0.04614 0.01074,0.01416 0.02759,0.02588 0.05054,0.03516 0.01318,0.0049 0.052,0.01611 0.116455,0.03369 0.09326,0.0249 0.158203,0.04541 0.194824,0.06152 0.03711,0.01563 0.06616,0.03858 0.08716,0.06885 0.021,0.03027 0.03149,0.06787 0.03149,0.112793 -10e-7,0.04395 -0.01294,0.08545 -0.03882,0.124511 -0.02539,0.03858 -0.06226,0.0686 -0.110595,0.09009 -0.04834,0.021 -0.103028,0.03149 -0.164063,0.03149 -0.101074,0 -0.178223,-0.021 -0.231445,-0.06299 -0.05274,-0.04199 -0.08643,-0.104248 -0.101074,-0.186768"
-         inkscape:connector-curvature="0"
-         id="path3051" />
-      <path
-         d="m 23.115234,81.418007 c -0.04883,0.0415 -0.09595,0.0708 -0.141357,0.08789 -0.04492,0.01709 -0.09326,0.02563 -0.14502,0.02563 -0.08545,0 -0.151123,-0.02075 -0.197021,-0.06226 -0.0459,-0.04199 -0.06885,-0.09546 -0.06885,-0.1604 0,-0.03809 0.0085,-0.07275 0.02563,-0.104004 0.01758,-0.03174 0.04028,-0.05713 0.06812,-0.07617 0.02832,-0.01904 0.06006,-0.03345 0.09521,-0.04321 0.02588,-0.0068 0.06494,-0.01343 0.117188,-0.01977 0.106444,-0.0127 0.184814,-0.02783 0.235107,-0.04541 4.88e-4,-0.01807 7.32e-4,-0.02954 7.32e-4,-0.03442 0,-0.05371 -0.01245,-0.09155 -0.03735,-0.113525 -0.03369,-0.02979 -0.08374,-0.04468 -0.150147,-0.04468 -0.06201,10e-7 -0.10791,0.01099 -0.137695,0.03296 -0.0293,0.02148 -0.05102,0.05982 -0.06518,0.11499 l -0.128907,-0.01758 c 0.01172,-0.05517 0.03101,-0.09961 0.05786,-0.133301 0.02686,-0.03418 0.06567,-0.0603 0.116455,-0.07837 0.05078,-0.01855 0.109619,-0.02783 0.176513,-0.02783 0.06641,10e-7 0.120361,0.0078 0.161866,0.02344 0.0415,0.01563 0.07202,0.0354 0.09155,0.05933 0.01953,0.02344 0.0332,0.05322 0.04102,0.08935 0.0044,0.02246 0.0066,0.06299 0.0066,0.121582 l 0,0.175781 c -1e-6,0.122559 0.0027,0.200196 0.0081,0.232911 0.0059,0.03223 0.01709,0.06323 0.03369,0.09302 l -0.137695,0 c -0.01367,-0.02734 -0.02246,-0.05933 -0.02637,-0.09595 m -0.01099,-0.294434 c -0.04785,0.01953 -0.119629,0.03613 -0.215332,0.04981 -0.0542,0.0078 -0.09253,0.0166 -0.11499,0.02637 -0.02246,0.0098 -0.03979,0.02417 -0.052,0.04321 -0.01221,0.01855 -0.01831,0.03931 -0.01831,0.06226 0,0.03516 0.01318,0.06445 0.03955,0.08789 0.02686,0.02344 0.06592,0.03516 0.117188,0.03516 0.05078,0 0.09595,-0.01099 0.135498,-0.03296 0.03955,-0.02246 0.0686,-0.05298 0.08716,-0.09155 0.01416,-0.02978 0.02124,-0.07373 0.02124,-0.131836 l 0,-0.04834"
-         inkscape:connector-curvature="0"
-         id="path3053" />
-      <path
-         d="m 23.474121,81.513954 0,-0.675293 -0.116455,0 0,-0.102539 0.116455,0 0,-0.08276 c 0,-0.05224 0.0046,-0.09106 0.01392,-0.116455 0.0127,-0.03418 0.03491,-0.06177 0.06665,-0.08276 0.03223,-0.02148 0.07715,-0.03223 0.134766,-0.03223 0.03711,1e-6 0.07813,0.0044 0.123047,0.01318 l -0.01977,0.11499 c -0.02735,-0.0049 -0.05322,-0.0073 -0.07764,-0.0073 -0.04004,10e-7 -0.06836,0.0085 -0.08496,0.02564 -0.0166,0.01709 -0.0249,0.04907 -0.0249,0.09595 l 0,0.07178 0.151611,0 0,0.102539 -0.151611,0 0,0.675293 -0.131104,0"
-         inkscape:connector-curvature="0"
-         id="path3055" />
-      <path
-         d="m 24.391113,81.263466 0.136231,0.01685 c -0.02148,0.07959 -0.06128,0.141357 -0.119385,0.185302 -0.05811,0.04395 -0.132325,0.06592 -0.222656,0.06592 -0.11377,0 -0.204102,-0.03491 -0.270996,-0.104736 -0.06641,-0.07031 -0.09961,-0.168701 -0.09961,-0.295166 0,-0.130859 0.03369,-0.232421 0.101074,-0.304688 0.06738,-0.07226 0.154785,-0.108397 0.262208,-0.108398 0.104003,1e-6 0.188964,0.0354 0.254882,0.106201 0.06592,0.0708 0.09888,0.170411 0.09888,0.298828 0,0.0078 -2.45e-4,0.01953 -7.32e-4,0.03516 l -0.580078,0 c 0.0049,0.08545 0.02905,0.150879 0.07251,0.196289 0.04346,0.04541 0.09766,0.06812 0.162598,0.06812 0.04834,0 0.0896,-0.0127 0.123779,-0.03809 0.03418,-0.02539 0.06128,-0.06592 0.0813,-0.121582 m -0.432861,-0.213135 0.434326,0 c -0.0059,-0.06543 -0.02246,-0.114501 -0.0498,-0.147217 -0.04199,-0.05078 -0.09644,-0.07617 -0.16333,-0.07617 -0.06055,10e-7 -0.111572,0.02026 -0.153076,0.06079 -0.04102,0.04053 -0.06372,0.09473 -0.06811,0.162598"
-         inkscape:connector-curvature="0"
-         id="path3057" />
-      <path
-         d="m 25.109619,81.81205 0,-1.075928 0.120117,0 0,0.101074 c 0.02832,-0.03955 0.0603,-0.06909 0.09595,-0.08862 0.03564,-0.02002 0.07886,-0.03003 0.129638,-0.03003 0.06641,10e-7 0.125,0.01709 0.175782,0.05127 0.05078,0.03418 0.08911,0.08252 0.11499,0.145019 0.02588,0.06201 0.03882,0.130127 0.03882,0.204346 -10e-7,0.07959 -0.01441,0.151367 -0.04321,0.215332 -0.02832,0.06348 -0.06983,0.112305 -0.124512,0.146484 -0.0542,0.03369 -0.111328,0.05054 -0.171386,0.05054 -0.04395,0 -0.0835,-0.0093 -0.118653,-0.02783 -0.03467,-0.01855 -0.06323,-0.04199 -0.08569,-0.07031 l 0,0.378662 -0.131836,0 m 0.119385,-0.682617 c 0,0.100098 0.02026,0.174072 0.06079,0.221924 0.04053,0.04785 0.0896,0.07178 0.147217,0.07178 0.05859,0 0.108642,-0.02466 0.150146,-0.07398 0.04199,-0.0498 0.06299,-0.126708 0.06299,-0.230713 0,-0.09912 -0.02051,-0.173339 -0.06152,-0.222656 -0.04053,-0.04932 -0.08911,-0.07397 -0.145752,-0.07398 -0.05615,10e-7 -0.105957,0.02637 -0.149414,0.0791 -0.04297,0.05225 -0.06445,0.128419 -0.06445,0.228516"
-         inkscape:connector-curvature="0"
-         id="path3059" />
-      <path
-         d="m 25.94165,81.513954 0,-1.07373 0.131836,0 0,1.07373 -0.131836,0"
-         inkscape:connector-curvature="0"
-         id="path3061" />
-      <path
-         d="m 26.786133,81.418007 c -0.04883,0.0415 -0.09595,0.0708 -0.141358,0.08789 -0.04492,0.01709 -0.09326,0.02563 -0.145019,0.02563 -0.08545,0 -0.151123,-0.02075 -0.197022,-0.06226 -0.0459,-0.04199 -0.06885,-0.09546 -0.06885,-0.1604 0,-0.03809 0.0085,-0.07275 0.02563,-0.104004 0.01758,-0.03174 0.04028,-0.05713 0.06812,-0.07617 0.02832,-0.01904 0.06006,-0.03345 0.09521,-0.04321 0.02588,-0.0068 0.06494,-0.01343 0.117187,-0.01977 0.106445,-0.0127 0.184814,-0.02783 0.235107,-0.04541 4.88e-4,-0.01807 7.32e-4,-0.02954 7.33e-4,-0.03442 -10e-7,-0.05371 -0.01245,-0.09155 -0.03735,-0.113525 -0.03369,-0.02979 -0.08374,-0.04468 -0.150146,-0.04468 -0.06201,10e-7 -0.107911,0.01099 -0.137695,0.03296 -0.0293,0.02148 -0.05103,0.05982 -0.06519,0.11499 l -0.128906,-0.01758 c 0.01172,-0.05517 0.03101,-0.09961 0.05786,-0.133301 0.02686,-0.03418 0.06567,-0.0603 0.116455,-0.07837 0.05078,-0.01855 0.109619,-0.02783 0.176514,-0.02783 0.06641,10e-7 0.120361,0.0078 0.161865,0.02344 0.0415,0.01563 0.07202,0.0354 0.09155,0.05933 0.01953,0.02344 0.0332,0.05322 0.04102,0.08935 0.0044,0.02246 0.0066,0.06299 0.0066,0.121582 l 0,0.175781 c 0,0.122559 0.0027,0.200196 0.0081,0.232911 0.0059,0.03223 0.01709,0.06323 0.03369,0.09302 l -0.137695,0 c -0.01367,-0.02734 -0.02246,-0.05933 -0.02637,-0.09595 m -0.01099,-0.294434 c -0.04785,0.01953 -0.119629,0.03613 -0.215332,0.04981 -0.0542,0.0078 -0.09253,0.0166 -0.11499,0.02637 -0.02246,0.0098 -0.0398,0.02417 -0.052,0.04321 -0.01221,0.01855 -0.01831,0.03931 -0.01831,0.06226 0,0.03516 0.01318,0.06445 0.03955,0.08789 0.02686,0.02344 0.06592,0.03516 0.117188,0.03516 0.05078,0 0.09595,-0.01099 0.135498,-0.03296 0.03955,-0.02246 0.0686,-0.05298 0.08716,-0.09155 0.01416,-0.02978 0.02124,-0.07373 0.02124,-0.131836 l 0,-0.04834"
-         inkscape:connector-curvature="0"
-         id="path3063" />
-      <path
-         d="m 27.621094,81.229042 0.129638,0.01685 c -0.01416,0.08936 -0.05054,0.159424 -0.10913,0.210205 -0.05811,0.05029 -0.12964,0.07544 -0.2146,0.07544 -0.106446,0 -0.192139,-0.03467 -0.25708,-0.104004 -0.06445,-0.06982 -0.09668,-0.169677 -0.09668,-0.29956 0,-0.08398 0.01392,-0.15747 0.04175,-0.220459 0.02783,-0.06299 0.07007,-0.110107 0.126709,-0.141358 0.05713,-0.03174 0.11914,-0.04761 0.186035,-0.04761 0.08447,10e-7 0.153564,0.02149 0.207276,0.06445 0.05371,0.04248 0.08813,0.103028 0.103271,0.181641 l -0.128174,0.01978 c -0.01221,-0.05224 -0.03394,-0.09155 -0.06518,-0.11792 -0.03076,-0.02637 -0.06812,-0.03955 -0.112061,-0.03955 -0.06641,10e-7 -0.120361,0.02393 -0.161865,0.07178 -0.0415,0.04736 -0.06226,0.122559 -0.06226,0.225586 0,0.104492 0.02002,0.18042 0.06006,0.227783 0.04004,0.04736 0.09229,0.07104 0.156738,0.07104 0.05176,0 0.09497,-0.01587 0.129639,-0.04761 0.03467,-0.03174 0.05664,-0.08057 0.06592,-0.146484"
-         inkscape:connector-curvature="0"
-         id="path3065" />
-      <path
-         d="m 28.395996,81.263466 0.136231,0.01685 c -0.02149,0.07959 -0.06128,0.141357 -0.119385,0.185302 -0.05811,0.04395 -0.132325,0.06592 -0.222656,0.06592 -0.11377,0 -0.204102,-0.03491 -0.270997,-0.104736 -0.06641,-0.07031 -0.09961,-0.168701 -0.09961,-0.295166 0,-0.130859 0.03369,-0.232421 0.101074,-0.304688 0.06738,-0.07226 0.154785,-0.108397 0.262207,-0.108398 0.104004,1e-6 0.188965,0.0354 0.254883,0.106201 0.06592,0.0708 0.09888,0.170411 0.09888,0.298828 -10e-7,0.0078 -2.45e-4,0.01953 -7.32e-4,0.03516 l -0.580078,0 c 0.0049,0.08545 0.02905,0.150879 0.07251,0.196289 0.04346,0.04541 0.09766,0.06812 0.162598,0.06812 0.04834,0 0.0896,-0.0127 0.123779,-0.03809 0.03418,-0.02539 0.06128,-0.06592 0.0813,-0.121582 m -0.432861,-0.213135 0.434326,0 c -0.0059,-0.06543 -0.02246,-0.114501 -0.0498,-0.147217 -0.04199,-0.05078 -0.09644,-0.07617 -0.16333,-0.07617 -0.06055,10e-7 -0.111572,0.02026 -0.153076,0.06079 -0.04102,0.04053 -0.06372,0.09473 -0.06811,0.162598"
-         inkscape:connector-curvature="0"
-         id="path3067" />
-      <path
-         d="m 16.077393,83.388954 -0.23584,0 -0.09375,-0.243896 -0.429199,0 -0.08862,0.243896 -0.22998,0 0.418213,-1.07373 0.229248,0 0.429932,1.07373 m -0.39917,-0.424805 -0.14795,-0.398437 -0.145019,0.398437 0.292969,0"
-         inkscape:connector-curvature="0"
-         id="path3069"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 16.905029,83.388954 -0.191162,0 0,-0.114258 c -0.03174,0.04443 -0.06934,0.07764 -0.112793,0.09961 -0.04297,0.02148 -0.08643,0.03223 -0.130371,0.03223 -0.08936,0 -0.166016,-0.03589 -0.22998,-0.107666 -0.06348,-0.07227 -0.09521,-0.172851 -0.09521,-0.301758 0,-0.131835 0.03101,-0.231933 0.09302,-0.300293 0.06201,-0.06885 0.140381,-0.10327 0.235108,-0.103271 0.08691,10e-7 0.162109,0.03613 0.225586,0.108398 l 0,-0.386718 0.20581,0 0,1.07373 m -0.549316,-0.405762 c 0,0.08301 0.01147,0.143067 0.03442,0.180176 0.0332,0.05371 0.07959,0.08057 0.13916,0.08057 0.04736,0 0.08765,-0.02002 0.120849,-0.06006 0.0332,-0.04053 0.0498,-0.10083 0.0498,-0.180908 0,-0.08935 -0.01611,-0.153564 -0.04834,-0.192627 -0.03223,-0.03955 -0.07349,-0.05933 -0.123779,-0.05933 -0.04883,0 -0.08984,0.01953 -0.123047,0.05859 -0.03271,0.03858 -0.04907,0.09644 -0.04907,0.173584"
-         inkscape:connector-curvature="0"
-         id="path3071"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 17.093262,82.611122 0.189697,0 0,0.106201 c 0.06787,-0.08252 0.148681,-0.123778 0.242432,-0.123779 0.0498,1e-6 0.09302,0.01026 0.129638,0.03076 0.03662,0.02051 0.06665,0.05151 0.09009,0.09302 0.03418,-0.0415 0.07104,-0.07251 0.110596,-0.09302 0.03955,-0.02051 0.08179,-0.03076 0.126709,-0.03076 0.05713,1e-6 0.105468,0.01172 0.145019,0.03516 0.03955,0.02295 0.06909,0.05689 0.08862,0.101807 0.01416,0.0332 0.02124,0.08691 0.02124,0.161133 l 0,0.497314 -0.205811,0 0,-0.44458 c -1e-6,-0.07715 -0.0071,-0.126952 -0.02124,-0.149414 -0.01904,-0.0293 -0.04834,-0.04395 -0.08789,-0.04395 -0.02881,0 -0.05591,0.0088 -0.0813,0.02637 -0.02539,0.01758 -0.0437,0.04346 -0.05493,0.07764 -0.01123,0.03369 -0.01685,0.08716 -0.01685,0.1604 l 0,0.373535 -0.20581,0 0,-0.426269 c -1e-6,-0.07568 -0.0037,-0.124512 -0.01099,-0.146485 -0.0073,-0.02197 -0.0188,-0.03833 -0.03442,-0.04907 -0.01514,-0.01074 -0.03589,-0.01611 -0.06226,-0.01611 -0.03174,0 -0.0603,0.0085 -0.08569,0.02563 -0.02539,0.01709 -0.0437,0.04175 -0.05493,0.07397 -0.01074,0.03223 -0.01611,0.08569 -0.01611,0.1604 l 0,0.37793 -0.20581,0 0,-0.777832"
-         inkscape:connector-curvature="0"
-         id="path3073"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 18.44165,82.505653 0,-0.190429 0.205811,0 0,0.190429 -0.205811,0 m 0,0.883301 0,-0.777832 0.205811,0 0,0.777832 -0.205811,0"
-         inkscape:connector-curvature="0"
-         id="path3075"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 19.565186,83.388954 -0.205811,0 0,-0.396972 c -1e-6,-0.08398 -0.0044,-0.138184 -0.01318,-0.162598 -0.0088,-0.0249 -0.02319,-0.04419 -0.04321,-0.05786 -0.01953,-0.01367 -0.04321,-0.02051 -0.07105,-0.02051 -0.03564,0 -0.06763,0.0098 -0.09595,0.0293 -0.02832,0.01953 -0.04785,0.04541 -0.05859,0.07764 -0.01026,0.03223 -0.01538,0.0918 -0.01538,0.178711 l 0,0.352295 -0.205811,0 0,-0.777832 0.191162,0 0,0.114258 c 0.06787,-0.08789 0.15332,-0.131835 0.256348,-0.131836 0.04541,1e-6 0.08691,0.0083 0.124512,0.0249 0.0376,0.01611 0.06592,0.03687 0.08496,0.06226 0.01953,0.02539 0.03296,0.0542 0.04028,0.08643 0.0078,0.03223 0.01172,0.07837 0.01172,0.138428 l 0,0.483398"
-         inkscape:connector-curvature="0"
-         id="path3077"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 19.774658,82.505653 0,-0.190429 0.205811,0 0,0.190429 -0.205811,0 m 0,0.883301 0,-0.777832 0.205811,0 0,0.777832 -0.205811,0"
-         inkscape:connector-curvature="0"
-         id="path3079"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 20.118164,83.16703 0.206543,-0.03149 c 0.0088,0.04004 0.02661,0.07056 0.05347,0.09155 0.02685,0.02051 0.06445,0.03076 0.112793,0.03076 0.05322,0 0.09326,-0.0098 0.120117,-0.0293 0.01807,-0.01367 0.0271,-0.03198 0.0271,-0.05493 -10e-7,-0.01563 -0.0049,-0.02856 -0.01465,-0.03882 -0.01025,-0.0098 -0.0332,-0.0188 -0.06885,-0.0271 -0.166015,-0.03662 -0.27124,-0.07007 -0.315673,-0.100342 -0.06152,-0.04199 -0.09229,-0.100341 -0.09229,-0.175048 -10e-7,-0.06738 0.02661,-0.124023 0.07983,-0.169922 0.05322,-0.0459 0.135742,-0.06885 0.247559,-0.06885 0.106445,1e-6 0.185546,0.01734 0.237305,0.052 0.05176,0.03467 0.0874,0.08594 0.106933,0.153809 l -0.194091,0.03589 c -0.0083,-0.03027 -0.02417,-0.05347 -0.04761,-0.06958 -0.02295,-0.01611 -0.05591,-0.02417 -0.09888,-0.02417 -0.0542,10e-7 -0.09302,0.0076 -0.116455,0.0227 -0.01563,0.01074 -0.02344,0.02466 -0.02344,0.04175 -1e-6,0.01465 0.0068,0.0271 0.02051,0.03735 0.01855,0.01367 0.08252,0.03296 0.191895,0.05786 0.109863,0.0249 0.186523,0.05542 0.22998,0.09155 0.04297,0.03662 0.06445,0.08765 0.06445,0.153076 -10e-7,0.07129 -0.02979,0.132569 -0.08936,0.183838 -0.05957,0.05127 -0.147706,0.0769 -0.264404,0.0769 -0.105958,0 -0.189942,-0.02148 -0.251953,-0.06445 -0.06152,-0.04297 -0.101807,-0.101318 -0.12085,-0.175049"
-         inkscape:connector-curvature="0"
-         id="path3081"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 21.382324,82.611122 0,0.164063 -0.140625,0 0,0.313476 c 0,0.06348 0.0012,0.100586 0.0037,0.111328 0.0029,0.01025 0.009,0.0188 0.01831,0.02563 0.0098,0.0068 0.02148,0.01025 0.03516,0.01025 0.01904,0 0.04663,-0.0066 0.08276,-0.01977 l 0.01758,0.159668 c -0.04785,0.02051 -0.102051,0.03076 -0.162598,0.03076 -0.03711,0 -0.07056,-0.0061 -0.100342,-0.01831 -0.02979,-0.0127 -0.05176,-0.02881 -0.06592,-0.04834 -0.01367,-0.02002 -0.02319,-0.04687 -0.02856,-0.08057 -0.0044,-0.02393 -0.0066,-0.07227 -0.0066,-0.145019 l 0,-0.339111 -0.09448,0 0,-0.164063 0.09448,0 0,-0.154541 0.206543,-0.120117 0,0.274658 0.140625,0"
-         inkscape:connector-curvature="0"
-         id="path3083"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 21.723633,83.388954 -0.205811,0 0,-0.777832 0.191162,0 0,0.110596 c 0.03271,-0.05225 0.06201,-0.08667 0.08789,-0.103272 0.02637,-0.0166 0.05615,-0.0249 0.08936,-0.0249 0.04687,10e-7 0.09204,0.01294 0.135499,0.03882 l -0.06372,0.179444 c -0.03467,-0.02246 -0.06689,-0.03369 -0.09668,-0.03369 -0.02881,10e-7 -0.05322,0.0081 -0.07324,0.02417 -0.02002,0.01563 -0.03589,0.04419 -0.04761,0.08569 -0.01123,0.0415 -0.01685,0.128418 -0.01685,0.260742 l 0,0.240234"
-         inkscape:connector-curvature="0"
-         id="path3085"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 22.263428,82.848427 -0.186768,-0.03369 c 0.021,-0.07519 0.05713,-0.130858 0.108399,-0.166992 0.05127,-0.03613 0.127441,-0.0542 0.228515,-0.0542 0.0918,10e-7 0.160156,0.01099 0.205078,0.03296 0.04492,0.02148 0.07642,0.04907 0.09448,0.08276 0.01855,0.0332 0.02783,0.09448 0.02783,0.183838 l -0.0022,0.240234 c -1e-6,0.06836 0.0032,0.118897 0.0095,0.151611 0.0068,0.03223 0.01929,0.0669 0.03735,0.104004 l -0.203614,0 c -0.0054,-0.01367 -0.01196,-0.03393 -0.01977,-0.06079 -0.0034,-0.01221 -0.0059,-0.02026 -0.0073,-0.02417 -0.03516,0.03418 -0.07276,0.05982 -0.112793,0.0769 -0.04004,0.01709 -0.08276,0.02563 -0.128174,0.02563 -0.08008,0 -0.143311,-0.02173 -0.189697,-0.06518 -0.0459,-0.04346 -0.06885,-0.09839 -0.06885,-0.164795 0,-0.04395 0.0105,-0.08301 0.03149,-0.117188 0.021,-0.03467 0.05029,-0.06103 0.08789,-0.0791 0.03809,-0.01855 0.09277,-0.03467 0.164062,-0.04834 0.09619,-0.01807 0.162841,-0.03491 0.199951,-0.05054 l 0,-0.02051 c 0,-0.03955 -0.0098,-0.06763 -0.0293,-0.08423 -0.01953,-0.01709 -0.0564,-0.02563 -0.110595,-0.02563 -0.03662,0 -0.06519,0.0073 -0.08569,0.02197 -0.02051,0.01416 -0.03711,0.03931 -0.0498,0.07544 m 0.27539,0.166992 c -0.02637,0.0088 -0.06811,0.01929 -0.125244,0.03149 -0.05713,0.01221 -0.09448,0.02417 -0.11206,0.03589 -0.02686,0.01904 -0.04028,0.04321 -0.04028,0.07251 0,0.02881 0.01074,0.05371 0.03223,0.07471 0.02148,0.021 0.04883,0.03149 0.08203,0.03149 0.03711,0 0.07251,-0.01221 0.106201,-0.03662 0.0249,-0.01855 0.04126,-0.04126 0.04907,-0.06812 0.0054,-0.01758 0.0081,-0.05102 0.0081,-0.100341 l 0,-0.04102"
-         inkscape:connector-curvature="0"
-         id="path3087"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 23.30127,82.611122 0,0.164063 -0.140625,0 0,0.313476 c -10e-7,0.06348 0.0012,0.100586 0.0037,0.111328 0.0029,0.01025 0.009,0.0188 0.01831,0.02563 0.0098,0.0068 0.02148,0.01025 0.03516,0.01025 0.01904,0 0.04663,-0.0066 0.08276,-0.01977 l 0.01758,0.159668 c -0.04785,0.02051 -0.102051,0.03076 -0.162597,0.03076 -0.03711,0 -0.07056,-0.0061 -0.100342,-0.01831 -0.02979,-0.0127 -0.05176,-0.02881 -0.06592,-0.04834 -0.01367,-0.02002 -0.02319,-0.04687 -0.02857,-0.08057 -0.0044,-0.02393 -0.0066,-0.07227 -0.0066,-0.145019 l 0,-0.339111 -0.09448,0 0,-0.164063 0.09448,0 0,-0.154541 0.206543,-0.120117 0,0.274658 0.140625,0"
-         inkscape:connector-curvature="0"
-         id="path3089"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 23.397949,82.989052 c 0,-0.06836 0.01685,-0.134521 0.05054,-0.198487 0.03369,-0.06396 0.0813,-0.112792 0.142823,-0.146484 0.06201,-0.03369 0.131103,-0.05054 0.207275,-0.05054 0.117675,10e-7 0.214111,0.03833 0.289307,0.11499 0.07519,0.07617 0.112792,0.172608 0.112793,0.289307 -10e-7,0.117676 -0.03809,0.215332 -0.114258,0.292969 -0.07568,0.07715 -0.171143,0.115722 -0.286377,0.115722 -0.07129,0 -0.139405,-0.01611 -0.204346,-0.04834 -0.06445,-0.03223 -0.113525,-0.07935 -0.147217,-0.141357 -0.03369,-0.0625 -0.05054,-0.138427 -0.05054,-0.227783 m 0.210938,0.01099 c -1e-6,0.07715 0.01831,0.136231 0.05493,0.177246 0.03662,0.04102 0.08179,0.06152 0.135498,0.06152 0.05371,0 0.09863,-0.02051 0.134766,-0.06152 0.03662,-0.04102 0.05493,-0.100585 0.05493,-0.178711 -1e-6,-0.07617 -0.01831,-0.134765 -0.05493,-0.175781 -0.03613,-0.04102 -0.08105,-0.06152 -0.134766,-0.06152 -0.05371,0 -0.09888,0.02051 -0.135498,0.06152 -0.03662,0.04102 -0.05493,0.100098 -0.05493,0.177246"
-         inkscape:connector-curvature="0"
-         id="path3091"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 24.55957,83.388954 -0.20581,0 0,-0.777832 0.191162,0 0,0.110596 c 0.03271,-0.05225 0.06201,-0.08667 0.08789,-0.103272 0.02637,-0.0166 0.05615,-0.0249 0.08936,-0.0249 0.04687,10e-7 0.09204,0.01294 0.135498,0.03882 l -0.06372,0.179444 c -0.03467,-0.02246 -0.0669,-0.03369 -0.09668,-0.03369 -0.02881,10e-7 -0.05322,0.0081 -0.07324,0.02417 -0.02002,0.01563 -0.03589,0.04419 -0.04761,0.08569 -0.01123,0.0415 -0.01685,0.128418 -0.01685,0.260742 l 0,0.240234"
-         inkscape:connector-curvature="0"
-         id="path3093"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 24.873047,83.16703 0.206543,-0.03149 c 0.0088,0.04004 0.02661,0.07056 0.05347,0.09155 0.02685,0.02051 0.06445,0.03076 0.112793,0.03076 0.05322,0 0.09326,-0.0098 0.120117,-0.0293 0.01807,-0.01367 0.0271,-0.03198 0.0271,-0.05493 0,-0.01563 -0.0049,-0.02856 -0.01465,-0.03882 -0.01025,-0.0098 -0.0332,-0.0188 -0.06885,-0.0271 -0.166016,-0.03662 -0.27124,-0.07007 -0.315674,-0.100342 -0.06152,-0.04199 -0.09229,-0.100341 -0.09229,-0.175048 0,-0.06738 0.02661,-0.124023 0.07983,-0.169922 0.05322,-0.0459 0.135742,-0.06885 0.247559,-0.06885 0.106445,1e-6 0.185546,0.01734 0.237305,0.052 0.05176,0.03467 0.0874,0.08594 0.106933,0.153809 l -0.194092,0.03589 c -0.0083,-0.03027 -0.02417,-0.05347 -0.04761,-0.06958 -0.02295,-0.01611 -0.05591,-0.02417 -0.09888,-0.02417 -0.0542,10e-7 -0.09302,0.0076 -0.116455,0.0227 -0.01563,0.01074 -0.02344,0.02466 -0.02344,0.04175 0,0.01465 0.0068,0.0271 0.02051,0.03735 0.01855,0.01367 0.08252,0.03296 0.191895,0.05786 0.109862,0.0249 0.186523,0.05542 0.22998,0.09155 0.04297,0.03662 0.06445,0.08765 0.06445,0.153076 0,0.07129 -0.02979,0.132569 -0.08936,0.183838 -0.05957,0.05127 -0.147706,0.0769 -0.264404,0.0769 -0.105958,0 -0.189942,-0.02148 -0.251954,-0.06445 -0.06152,-0.04297 -0.101806,-0.101318 -0.120849,-0.175049"
-         inkscape:connector-curvature="0"
-         id="path3095"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 26.148926,82.989052 c 0,-0.06836 0.01685,-0.134521 0.05054,-0.198487 0.03369,-0.06396 0.0813,-0.112792 0.142822,-0.146484 0.06201,-0.03369 0.131103,-0.05054 0.207276,-0.05054 0.117675,10e-7 0.21411,0.03833 0.289306,0.11499 0.0752,0.07617 0.112792,0.172608 0.112793,0.289307 -1e-6,0.117676 -0.03809,0.215332 -0.114258,0.292969 -0.07568,0.07715 -0.171143,0.115722 -0.286377,0.115722 -0.07129,0 -0.139404,-0.01611 -0.204345,-0.04834 -0.06445,-0.03223 -0.113526,-0.07935 -0.147217,-0.141357 -0.03369,-0.0625 -0.05054,-0.138427 -0.05054,-0.227783 m 0.210937,0.01099 c 0,0.07715 0.01831,0.136231 0.05493,0.177246 0.03662,0.04102 0.08179,0.06152 0.135498,0.06152 0.05371,0 0.09863,-0.02051 0.134766,-0.06152 0.03662,-0.04102 0.05493,-0.100585 0.05493,-0.178711 0,-0.07617 -0.01831,-0.134765 -0.05493,-0.175781 -0.03613,-0.04102 -0.08106,-0.06152 -0.134766,-0.06152 -0.05371,0 -0.09888,0.02051 -0.135498,0.06152 -0.03662,0.04102 -0.05493,0.100098 -0.05493,0.177246"
-         inkscape:connector-curvature="0"
-         id="path3097"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 27.821045,83.388954 -0.205811,0 0,-0.396972 c 0,-0.08398 -0.0044,-0.138184 -0.01318,-0.162598 -0.0088,-0.0249 -0.02319,-0.04419 -0.04321,-0.05786 -0.01953,-0.01367 -0.04321,-0.02051 -0.07105,-0.02051 -0.03564,0 -0.06763,0.0098 -0.09595,0.0293 -0.02832,0.01953 -0.04785,0.04541 -0.05859,0.07764 -0.01025,0.03223 -0.01538,0.0918 -0.01538,0.178711 l 0,0.352295 -0.20581,0 0,-0.777832 0.191162,0 0,0.114258 c 0.06787,-0.08789 0.15332,-0.131835 0.256347,-0.131836 0.04541,1e-6 0.08691,0.0083 0.124512,0.0249 0.0376,0.01611 0.06592,0.03687 0.08496,0.06226 0.01953,0.02539 0.03296,0.0542 0.04028,0.08643 0.0078,0.03223 0.01172,0.07837 0.01172,0.138428 l 0,0.483398"
-         inkscape:connector-curvature="0"
-         id="path3099"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 28.030518,83.388954 0,-1.07373 0.20581,0 0,1.07373 -0.20581,0"
-         inkscape:connector-curvature="0"
-         id="path3101"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-      <path
-         d="m 28.349121,82.611122 0.218994,0 0.186035,0.552246 0.181641,-0.552246 0.213135,0 -0.274658,0.748535 -0.04907,0.135498 c -0.01807,0.04541 -0.0354,0.08008 -0.052,0.104004 -0.01611,0.02393 -0.03491,0.04321 -0.0564,0.05786 -0.021,0.01514 -0.04712,0.02685 -0.07837,0.03516 -0.03076,0.0083 -0.06567,0.01245 -0.104737,0.01245 -0.03955,0 -0.07837,-0.0042 -0.116455,-0.01245 l -0.01831,-0.161133 c 0.03223,0.0063 0.06128,0.0095 0.08716,0.0095 0.04785,0 0.08325,-0.01416 0.106201,-0.04248 0.02295,-0.02783 0.04053,-0.06348 0.05273,-0.106934 l -0.295899,-0.780029"
-         inkscape:connector-curvature="0"
-         id="path3103"
-         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
-    </g>
-    <g
-       id="text3762"
-       style="font-size:1.5px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#553417;fill-opacity:1;stroke:none;display:inline;font-family:Arial Black;-inkscape-font-specification:'Arial Black, Bold'">
-      <path
-         d="m 15.052002,78.15873 0.315674,-0.01978 c 0.0068,0.05127 0.02075,0.09033 0.04175,0.117188 0.03418,0.04346 0.08301,0.06518 0.146484,0.06518 0.04736,0 0.08374,-0.01099 0.109131,-0.03296 0.02588,-0.02246 0.03882,-0.04834 0.03882,-0.07764 0,-0.02783 -0.01221,-0.05273 -0.03662,-0.07471 -0.02441,-0.02197 -0.08106,-0.04272 -0.169922,-0.06226 -0.145508,-0.03271 -0.249267,-0.07617 -0.311279,-0.130371 -0.0625,-0.0542 -0.09375,-0.123291 -0.09375,-0.207276 0,-0.05517 0.01587,-0.107177 0.04761,-0.156006 0.03223,-0.04932 0.08032,-0.08789 0.144287,-0.115722 0.06445,-0.02832 0.152587,-0.04248 0.264404,-0.04248 0.137206,10e-7 0.241698,0.02564 0.313477,0.0769 0.07226,0.05078 0.115233,0.131837 0.128906,0.243165 l -0.312744,0.01831 c -0.0083,-0.04834 -0.02588,-0.0835 -0.05273,-0.105469 -0.02637,-0.02197 -0.06299,-0.03296 -0.109863,-0.03296 -0.03857,1e-6 -0.06763,0.0083 -0.08716,0.0249 -0.01953,0.01611 -0.0293,0.03589 -0.0293,0.05933 0,0.01709 0.0081,0.03247 0.02417,0.04614 0.01562,0.01416 0.05273,0.02734 0.111328,0.03955 0.145019,0.03125 0.248778,0.06299 0.311279,0.09521 0.06299,0.03174 0.108642,0.07129 0.136963,0.118652 0.02881,0.04736 0.04321,0.100343 0.04321,0.158936 -10e-7,0.06885 -0.01904,0.132324 -0.05713,0.19043 -0.03809,0.0581 -0.09131,0.102295 -0.159668,0.132568 -0.06836,0.02978 -0.154541,0.04468 -0.258545,0.04468 -0.182617,0 -0.309082,-0.03516 -0.379394,-0.105469 -0.07031,-0.07031 -0.110108,-0.159668 -0.119385,-0.268066"
-         inkscape:connector-curvature="0"
-         id="path3106" />
-      <path
-         d="m 16.137451,78.127235 c 0,-0.118651 0.04004,-0.216308 0.120117,-0.292968 0.08008,-0.07715 0.188232,-0.115722 0.324463,-0.115723 0.155761,1e-6 0.273437,0.04517 0.353028,0.135498 0.06396,0.07275 0.09595,0.162354 0.09595,0.268799 -1e-6,0.119629 -0.0398,0.217773 -0.119385,0.294433 -0.0791,0.07617 -0.188721,0.114258 -0.328857,0.114258 -0.125001,0 -0.226075,-0.03174 -0.303223,-0.09521 -0.09473,-0.07861 -0.14209,-0.18164 -0.14209,-0.309082 m 0.298828,-7.32e-4 c 0,0.06934 0.01392,0.120606 0.04175,0.153809 0.02832,0.0332 0.06372,0.0498 0.106202,0.0498 0.04297,0 0.07812,-0.01636 0.105468,-0.04907 0.02783,-0.03271 0.04175,-0.0852 0.04175,-0.157471 0,-0.06738 -0.01392,-0.117431 -0.04175,-0.150146 -0.02783,-0.0332 -0.06226,-0.0498 -0.103271,-0.04981 -0.04346,10e-7 -0.07935,0.01685 -0.107666,0.05054 -0.02832,0.0332 -0.04248,0.08398 -0.04248,0.152344"
-         inkscape:connector-curvature="0"
-         id="path3108" />
-      <path
-         d="m 17.507812,77.736122 0.14209,0 0,0.218262 -0.14209,0 0,0.55957 -0.298828,0 0,-0.55957 -0.111328,0 0,-0.218262 0.111328,0 0,-0.03516 c 0,-0.03174 0.0034,-0.06665 0.01025,-0.104736 0.0068,-0.03809 0.01953,-0.06909 0.03809,-0.09302 0.01904,-0.02441 0.04541,-0.04394 0.0791,-0.05859 0.03418,-0.01514 0.08398,-0.0227 0.149414,-0.02271 0.05224,10e-7 0.128173,0.0061 0.227783,0.01831 l -0.03296,0.180175 c -0.03564,-0.0059 -0.06445,-0.0088 -0.08643,-0.0088 -0.02686,10e-7 -0.04614,0.0046 -0.05786,0.01392 -0.01172,0.0088 -0.02002,0.02295 -0.0249,0.04248 -0.0024,0.01074 -0.0037,0.03345 -0.0037,0.06811"
-         inkscape:connector-curvature="0"
-         id="path3110" />
-      <path
-         d="m 18.118652,77.440224 0,0.295898 0.164063,0 0,0.217529 -0.164063,0 0,0.276123 c 0,0.0332 0.0032,0.05518 0.0095,0.06592 0.0098,0.0166 0.02685,0.0249 0.05127,0.0249 0.02197,0 0.05273,-0.0063 0.09229,-0.01904 l 0.02197,0.20581 c -0.07373,0.01611 -0.142578,0.02417 -0.206543,0.02417 -0.07422,0 -0.128906,-0.0095 -0.164062,-0.02856 -0.03516,-0.01904 -0.06128,-0.04785 -0.07837,-0.08643 -0.0166,-0.03906 -0.0249,-0.102051 -0.0249,-0.188965 l 0,-0.273926 -0.109863,0 0,-0.217529 0.109863,0 0,-0.142822 0.298828,-0.153076"
-         inkscape:connector-curvature="0"
-         id="path3112" />
-      <path
-         d="m 18.336182,77.736122 0.288574,0 0.125244,0.48999 0.158203,-0.48999 0.268799,0 0.164062,0.48999 0.125245,-0.48999 0.286377,0 -0.286377,0.777832 -0.265137,0 -0.157471,-0.468017 -0.152344,0.468017 -0.266601,0 -0.288574,-0.777832"
-         inkscape:connector-curvature="0"
-         id="path3114" />
-      <path
-         d="m 20.093262,77.988075 -0.284912,-0.03003 c 0.01074,-0.0498 0.02612,-0.08887 0.04614,-0.117188 0.02051,-0.02881 0.0498,-0.05371 0.08789,-0.07471 0.02734,-0.01514 0.06494,-0.02685 0.112793,-0.03516 0.04785,-0.0083 0.09961,-0.01245 0.155273,-0.01245 0.08936,10e-7 0.161132,0.0051 0.215332,0.01538 0.0542,0.0098 0.09936,0.03052 0.135498,0.06226 0.02539,0.02197 0.04541,0.05322 0.06006,0.09375 0.01465,0.04004 0.02197,0.07837 0.02197,0.11499 l 0,0.343506 c -10e-7,0.03662 0.0022,0.06543 0.0066,0.08643 0.0049,0.02051 0.01514,0.04687 0.03076,0.0791 l -0.279785,0 c -0.01123,-0.02002 -0.01855,-0.03516 -0.02197,-0.04541 -0.0034,-0.01074 -0.0068,-0.02734 -0.01025,-0.0498 -0.03906,0.0376 -0.07788,0.06445 -0.116455,0.08057 -0.05273,0.02148 -0.114014,0.03223 -0.183838,0.03223 -0.09277,0 -0.16333,-0.02148 -0.21167,-0.06445 -0.04785,-0.04297 -0.07178,-0.09595 -0.07178,-0.158935 0,-0.05908 0.01733,-0.107666 0.052,-0.145752 0.03467,-0.03809 0.09863,-0.06641 0.191895,-0.08496 0.111816,-0.02246 0.184325,-0.03809 0.217529,-0.04687 0.0332,-0.0093 0.06836,-0.02124 0.105469,-0.03589 -1e-6,-0.03662 -0.0076,-0.06226 -0.02271,-0.0769 -0.01514,-0.01465 -0.04175,-0.02197 -0.07983,-0.02197 -0.04883,10e-7 -0.08545,0.0078 -0.109864,0.02344 -0.01904,0.01221 -0.03442,0.03516 -0.04614,0.06885 m 0.258545,0.156739 c -0.04102,0.01465 -0.08374,0.02759 -0.128174,0.03882 -0.06055,0.01611 -0.09888,0.03198 -0.11499,0.04761 -0.0166,0.01611 -0.0249,0.03442 -0.0249,0.05493 0,0.02344 0.0081,0.04273 0.02417,0.05786 0.0166,0.01465 0.04077,0.02197 0.07251,0.02197 0.0332,0 0.06396,-0.0081 0.09228,-0.02417 0.02881,-0.01611 0.04907,-0.03564 0.06079,-0.05859 0.01221,-0.02344 0.01831,-0.05371 0.01831,-0.09082 l 0,-0.04761"
-         inkscape:connector-curvature="0"
-         id="path3116" />
-      <path
-         d="m 20.826416,77.736122 0.279053,0 0,0.127442 c 0.02686,-0.05518 0.05444,-0.09302 0.08276,-0.113526 0.02881,-0.02099 0.06421,-0.03149 0.106202,-0.03149 0.04394,10e-7 0.09204,0.01367 0.144287,0.04102 l -0.09229,0.212402 c -0.03516,-0.01465 -0.06299,-0.02197 -0.0835,-0.02197 -0.03906,10e-7 -0.06934,0.01611 -0.09082,0.04834 -0.03076,0.04541 -0.04614,0.130372 -0.04614,0.254883 l 0,0.260742 -0.299561,0 0,-0.777832"
-         inkscape:connector-curvature="0"
-         id="path3118" />
-      <path
-         d="m 22.375488,78.199013 -0.597656,0 c 0.0054,0.04785 0.01831,0.0835 0.03882,0.106933 0.02881,0.03369 0.06641,0.05054 0.112793,0.05054 0.0293,10e-7 0.05713,-0.0073 0.0835,-0.02197 0.01611,-0.0093 0.03345,-0.02564 0.052,-0.04907 l 0.293702,0.0271 c -0.04492,0.07813 -0.09912,0.134278 -0.162598,0.168457 -0.06348,0.03369 -0.154542,0.05054 -0.273193,0.05054 -0.103028,0 -0.184083,-0.0144 -0.243165,-0.04321 -0.05908,-0.0293 -0.108154,-0.07544 -0.147216,-0.138427 -0.03858,-0.06348 -0.05786,-0.137939 -0.05786,-0.223389 0,-0.121582 0.03882,-0.21997 0.116455,-0.295166 0.07813,-0.0752 0.185791,-0.112792 0.322998,-0.112793 0.111328,10e-7 0.199219,0.01685 0.263672,0.05054 0.06445,0.03369 0.113525,0.08252 0.147217,0.146484 0.03369,0.06397 0.05054,0.147218 0.05054,0.249756 l 0,0.03369 M 22.072266,78.05619 c -0.0059,-0.05762 -0.02148,-0.09888 -0.04687,-0.123779 -0.0249,-0.0249 -0.05786,-0.03735 -0.09888,-0.03735 -0.04736,0 -0.08521,0.0188 -0.113526,0.0564 -0.01807,0.02344 -0.02954,0.05835 -0.03442,0.104736 l 0.293702,0"
-         inkscape:connector-curvature="0"
-         id="path3120" />
-      <path
-         d="m 23.01709,77.736122 0.27832,0 0,0.113526 c 0.04004,-0.04736 0.08032,-0.08105 0.12085,-0.101075 0.04101,-0.02002 0.09033,-0.03003 0.147949,-0.03003 0.06201,10e-7 0.111083,0.01099 0.147217,0.03296 0.03613,0.02197 0.06567,0.05469 0.08862,0.09815 0.04687,-0.05078 0.0896,-0.08521 0.128174,-0.103272 0.03857,-0.01855 0.08618,-0.02783 0.142822,-0.02783 0.08349,10e-7 0.14868,0.0249 0.195557,0.07471 0.04687,0.04932 0.07031,0.12671 0.07031,0.232178 l 0,0.488525 -0.298828,0 0,-0.443115 c -10e-7,-0.03516 -0.0068,-0.06128 -0.02051,-0.07837 -0.02002,-0.02685 -0.04492,-0.04028 -0.07471,-0.04028 -0.03516,0 -0.06348,0.0127 -0.08496,0.03809 -0.02149,0.02539 -0.03223,0.06616 -0.03223,0.122314 l 0,0.401367 -0.298829,0 0,-0.428467 c 0,-0.03418 -0.002,-0.05737 -0.0059,-0.06958 -0.0063,-0.01953 -0.01733,-0.03516 -0.03296,-0.04687 -0.01563,-0.01221 -0.03394,-0.01831 -0.05493,-0.01831 -0.03418,0 -0.06226,0.01294 -0.08423,0.03882 -0.02197,0.02588 -0.03296,0.06836 -0.03296,0.127442 l 0,0.396972 -0.298828,0 0,-0.777832"
-         inkscape:connector-curvature="0"
-         id="path3122" />
-      <path
-         d="m 24.786621,77.988075 -0.284912,-0.03003 c 0.01074,-0.0498 0.02612,-0.08887 0.04614,-0.117188 0.02051,-0.02881 0.0498,-0.05371 0.08789,-0.07471 0.02734,-0.01514 0.06494,-0.02685 0.112793,-0.03516 0.04785,-0.0083 0.09961,-0.01245 0.155274,-0.01245 0.08935,10e-7 0.161132,0.0051 0.215332,0.01538 0.0542,0.0098 0.09936,0.03052 0.135498,0.06226 0.02539,0.02197 0.04541,0.05322 0.06006,0.09375 0.01465,0.04004 0.02197,0.07837 0.02197,0.11499 l 0,0.343506 c -1e-6,0.03662 0.0022,0.06543 0.0066,0.08643 0.0049,0.02051 0.01514,0.04687 0.03076,0.0791 l -0.279785,0 c -0.01123,-0.02002 -0.01855,-0.03516 -0.02197,-0.04541 -0.0034,-0.01074 -0.0068,-0.02734 -0.01025,-0.0498 -0.03906,0.0376 -0.07788,0.06445 -0.116455,0.08057 -0.05274,0.02148 -0.114014,0.03223 -0.183838,0.03223 -0.09277,0 -0.163331,-0.02148 -0.21167,-0.06445 -0.04785,-0.04297 -0.07178,-0.09595 -0.07178,-0.158935 0,-0.05908 0.01733,-0.107666 0.052,-0.145752 0.03467,-0.03809 0.09863,-0.06641 0.191895,-0.08496 0.111816,-0.02246 0.184326,-0.03809 0.217529,-0.04687 0.0332,-0.0093 0.06836,-0.02124 0.105469,-0.03589 -1e-6,-0.03662 -0.0076,-0.06226 -0.0227,-0.0769 -0.01514,-0.01465 -0.04175,-0.02197 -0.07983,-0.02197 -0.04883,10e-7 -0.08545,0.0078 -0.109863,0.02344 -0.01904,0.01221 -0.03443,0.03516 -0.04614,0.06885 m 0.258545,0.156739 c -0.04102,0.01465 -0.08374,0.02759 -0.128174,0.03882 -0.06055,0.01611 -0.09888,0.03198 -0.11499,0.04761 -0.0166,0.01611 -0.0249,0.03442 -0.0249,0.05493 -10e-7,0.02344 0.0081,0.04273 0.02417,0.05786 0.0166,0.01465 0.04077,0.02197 0.07251,0.02197 0.0332,0 0.06396,-0.0081 0.09229,-0.02417 0.02881,-0.01611 0.04907,-0.03564 0.06079,-0.05859 0.01221,-0.02344 0.01831,-0.05371 0.01831,-0.09082 l 0,-0.04761"
-         inkscape:connector-curvature="0"
-         id="path3124" />
-      <path
-         d="m 25.516846,77.736122 0.277588,0 0,0.126709 c 0.0415,-0.05176 0.0835,-0.08862 0.125976,-0.110596 0.04248,-0.02246 0.09424,-0.03369 0.155274,-0.03369 0.08252,10e-7 0.146971,0.02466 0.193359,0.07398 0.04687,0.04883 0.07031,0.124512 0.07031,0.22705 l 0,0.494385 -0.29956,0 0,-0.427734 c -1e-6,-0.04883 -0.009,-0.08325 -0.0271,-0.103272 -0.01807,-0.02051 -0.04346,-0.03076 -0.07617,-0.03076 -0.03613,0 -0.06543,0.01367 -0.08789,0.04102 -0.02246,0.02734 -0.03369,0.07642 -0.03369,0.147217 l 0,0.373535 -0.298095,0 0,-0.777832"
-         inkscape:connector-curvature="0"
-         id="path3126" />
-      <path
-         d="m 26.790527,77.988075 -0.284912,-0.03003 c 0.01074,-0.0498 0.02612,-0.08887 0.04614,-0.117188 0.02051,-0.02881 0.0498,-0.05371 0.08789,-0.07471 0.02734,-0.01514 0.06494,-0.02685 0.112793,-0.03516 0.04785,-0.0083 0.09961,-0.01245 0.155274,-0.01245 0.08936,10e-7 0.161132,0.0051 0.215332,0.01538 0.0542,0.0098 0.09936,0.03052 0.135498,0.06226 0.02539,0.02197 0.04541,0.05322 0.06006,0.09375 0.01465,0.04004 0.02197,0.07837 0.02197,0.11499 l 0,0.343506 c -1e-6,0.03662 0.0022,0.06543 0.0066,0.08643 0.0049,0.02051 0.01514,0.04687 0.03076,0.0791 l -0.279785,0 c -0.01123,-0.02002 -0.01856,-0.03516 -0.02197,-0.04541 -0.0034,-0.01074 -0.0068,-0.02734 -0.01025,-0.0498 -0.03906,0.0376 -0.07788,0.06445 -0.116455,0.08057 -0.05274,0.02148 -0.114014,0.03223 -0.183838,0.03223 -0.09277,0 -0.16333,-0.02148 -0.21167,-0.06445 -0.04785,-0.04297 -0.07178,-0.09595 -0.07178,-0.158935 0,-0.05908 0.01733,-0.107666 0.052,-0.145752 0.03467,-0.03809 0.09863,-0.06641 0.191894,-0.08496 0.111816,-0.02246 0.184326,-0.03809 0.21753,-0.04687 0.0332,-0.0093 0.06836,-0.02124 0.105468,-0.03589 0,-0.03662 -0.0076,-0.06226 -0.0227,-0.0769 -0.01514,-0.01465 -0.04175,-0.02197 -0.07983,-0.02197 -0.04883,10e-7 -0.08545,0.0078 -0.109863,0.02344 -0.01904,0.01221 -0.03442,0.03516 -0.04614,0.06885 m 0.258545,0.156739 c -0.04102,0.01465 -0.08374,0.02759 -0.128174,0.03882 -0.06055,0.01611 -0.09888,0.03198 -0.11499,0.04761 -0.0166,0.01611 -0.0249,0.03442 -0.0249,0.05493 0,0.02344 0.0081,0.04273 0.02417,0.05786 0.0166,0.01465 0.04077,0.02197 0.07251,0.02197 0.0332,0 0.06396,-0.0081 0.09229,-0.02417 0.02881,-0.01611 0.04907,-0.03564 0.06079,-0.05859 0.01221,-0.02344 0.01831,-0.05371 0.01831,-0.09082 l 0,-0.04761"
-         inkscape:connector-curvature="0"
-         id="path3128" />
-      <path
-         d="m 28.085449,77.736122 0.279053,0 0,0.734619 7.32e-4,0.03442 c -1e-6,0.04883 -0.0105,0.09521 -0.03149,0.13916 -0.02051,0.04443 -0.0481,0.08032 -0.08276,0.107666 -0.03418,0.02734 -0.07788,0.04712 -0.131104,0.05933 -0.05273,0.01221 -0.113282,0.01831 -0.181641,0.01831 -0.15625,0 -0.263672,-0.02344 -0.322265,-0.07031 -0.05811,-0.04687 -0.08716,-0.109619 -0.08716,-0.188232 0,-0.0098 4.88e-4,-0.02295 0.0015,-0.03955 l 0.289307,0.03296 c 0.0073,0.02686 0.01855,0.04541 0.03369,0.05566 0.02197,0.01514 0.04956,0.02271 0.08276,0.02271 0.04297,0 0.07495,-0.01147 0.09595,-0.03442 0.02148,-0.02295 0.03223,-0.06299 0.03223,-0.120118 l 0,-0.11792 c -0.0293,0.03467 -0.05859,0.05982 -0.08789,0.07544 -0.0459,0.02441 -0.09546,0.03662 -0.148681,0.03662 -0.104004,0 -0.187989,-0.04541 -0.251953,-0.13623 -0.04541,-0.06445 -0.06812,-0.149658 -0.06812,-0.255616 0,-0.121093 0.0293,-0.213378 0.08789,-0.276855 0.05859,-0.06348 0.135254,-0.09521 0.22998,-0.09522 0.06055,10e-7 0.110352,0.01026 0.149415,0.03076 0.03955,0.02051 0.07642,0.05444 0.110595,0.101806 l 0,-0.11499 m -0.280517,0.377197 c -1e-6,0.05615 0.01196,0.0979 0.03589,0.125245 0.02393,0.02685 0.05542,0.04028 0.09448,0.04028 0.03711,0 0.06811,-0.01392 0.09302,-0.04175 0.02539,-0.02832 0.03809,-0.0708 0.03809,-0.127442 0,-0.05664 -0.01318,-0.09985 -0.03955,-0.129638 -0.02637,-0.03027 -0.05859,-0.04541 -0.09668,-0.04541 -0.03809,1e-6 -0.0686,0.01392 -0.09155,0.04175 -0.02246,0.02734 -0.03369,0.073 -0.03369,0.136962"
-         inkscape:connector-curvature="0"
-         id="path3130" />
-      <path
-         d="m 29.409668,78.199013 -0.597656,0 c 0.0054,0.04785 0.01831,0.0835 0.03882,0.106933 0.02881,0.03369 0.06641,0.05054 0.112793,0.05054 0.0293,10e-7 0.05713,-0.0073 0.0835,-0.02197 0.01611,-0.0093 0.03345,-0.02564 0.052,-0.04907 l 0.293701,0.0271 c -0.04492,0.07813 -0.09912,0.134278 -0.162597,0.168457 -0.06348,0.03369 -0.154542,0.05054 -0.273194,0.05054 -0.103027,0 -0.184082,-0.0144 -0.243164,-0.04321 -0.05908,-0.0293 -0.108154,-0.07544 -0.147217,-0.138427 -0.03857,-0.06348 -0.05786,-0.137939 -0.05786,-0.223389 0,-0.121582 0.03882,-0.21997 0.116455,-0.295166 0.07813,-0.0752 0.185791,-0.112792 0.322998,-0.112793 0.111328,10e-7 0.199218,0.01685 0.263672,0.05054 0.06445,0.03369 0.113525,0.08252 0.147217,0.146484 0.03369,0.06397 0.05054,0.147218 0.05054,0.249756 l 0,0.03369 M 29.106445,78.05619 c -0.0059,-0.05762 -0.02149,-0.09888 -0.04687,-0.123779 -0.0249,-0.0249 -0.05786,-0.03735 -0.09888,-0.03735 -0.04736,0 -0.0852,0.0188 -0.113525,0.0564 -0.01807,0.02344 -0.02954,0.05835 -0.03442,0.104736 l 0.293701,0"
-         inkscape:connector-curvature="0"
-         id="path3132" />
-      <path
-         d="m 29.551025,77.736122 0.279053,0 0,0.127442 c 0.02686,-0.05518 0.05444,-0.09302 0.08276,-0.113526 0.02881,-0.02099 0.06421,-0.03149 0.106201,-0.03149 0.04395,10e-7 0.09204,0.01367 0.144287,0.04102 l -0.09228,0.212402 c -0.03516,-0.01465 -0.06299,-0.02197 -0.0835,-0.02197 -0.03906,10e-7 -0.06934,0.01611 -0.09082,0.04834 -0.03076,0.04541 -0.04614,0.130372 -0.04614,0.254883 l 0,0.260742 -0.299561,0 0,-0.777832"
-         inkscape:connector-curvature="0"
-         id="path3134" />
-    </g>
-  </g>
-  <g
-     id="layer4"
-     style="display:none">
-    <rect
-       width="30"
-       height="30"
-       rx="2.8125"
-       ry="2.8125"
-       x="-86"
-       y="56"
-       transform="matrix(0,-1,1,0,0,4)"
-       id="rect3790"
-       style="opacity:0.6;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3806)" />
-    <rect
-       width="30"
-       height="30"
-       rx="2.8125"
-       ry="2.8125"
-       x="-88"
-       y="56"
-       transform="matrix(0,-1,1,0,0,0)"
-       id="rect2993"
-       style="fill:url(#linearGradient3773);fill-opacity:1;stroke:none" />
-    <path
-       d="M 58.8125,58 C 57.254375,58 56,59.254375 56,60.8125 l 0,24.375 c 0,0.873066 0.410816,1.641163 1.03125,2.15625 C 57.02841,87.289908 57,87.242129 57,87.1875 l 0,-24.375 C 57,61.254375 58.17075,60 59.625,60 l 22.75,0 C 83.82925,60 85,61.254375 85,62.8125 l 0,24.375 c 0,0.05463 -0.02841,0.102408 -0.03125,0.15625 C 85.589184,86.828663 86,86.060566 86,85.1875 l 0,-24.375 C 86,59.254375 84.745625,58 83.1875,58 l -24.375,0 z"
-       inkscape:connector-curvature="0"
-       id="rect3775"
-       style="opacity:0.5;fill:url(#linearGradient3788);fill-opacity:1;stroke:none" />
-    <path
-       d="m 116,63.5 0,8.75 -5,0 10,13.75 10,-13.75 -5,0 0,-8.75 -10,0 z"
-       inkscape:connector-curvature="0"
-       transform="translate(-50,0)"
-       clip-path="url(#clipPath3823)"
-       id="path3810"
-       style="opacity:0.6;fill:url(#linearGradient3812);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline;filter:url(#filter3831)" />
-    <path
-       d="m 66,62.5 0,8.75 -5,0 10,13.75 10,-13.75 -5,0 0,-8.75 -10,0 z"
-       inkscape:connector-curvature="0"
-       id="path4278"
-       style="fill:url(#linearGradient3832);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
-  </g>
-  <g
-     transform="matrix(0.5283217,0,0,0.51965824,46.515804,49.994171)"
-     id="layer4-6"
-     style="display:inline">
-    <path
-       inkscape:connector-curvature="0"
-       d="m 12.65625,18.9375 c 0.0024,-2.81e-4 -0.158617,0.03172 -0.15625,0.03125 0.0014,-2.73e-4 -0.04749,-0.0112 -0.09375,0 -1.4e-4,2.7e-5 -0.03109,0.02452 -0.0625,0.03125 -0.07263,0.01557 -0.155932,0.03116 -0.15625,0.03125 -4.55e-4,1.3e-4 -0.280808,0.09358 -0.28125,0.09375 -4.42e-4,1.69e-4 -0.249575,0.09354 -0.25,0.09375 -4.25e-4,2.07e-4 -0.249594,0.124757 -0.25,0.125 0,0 -0.09212,0.06128 -0.09375,0.0625 -0.0016,0.0012 0.0019,0.02983 0,0.03125 -0.01189,0.0089 -0.04689,0.01954 -0.0625,0.03125 -0.03123,0.02343 -0.03106,0.03111 -0.03125,0.03125 -0.01952,0.0117 -0.0476,0.02231 -0.0625,0.03125 -0.0074,0.0045 -0.02642,-0.0029 -0.03125,0 -3.57e-4,3.1e-4 -0.343421,0.31216 -0.34375,0.3125 0,0 -0.09242,0.09198 -0.09375,0.09375 -0.0029,0.0039 0.0045,0.02529 0,0.03125 -0.0089,0.01192 -0.01954,0.01563 -0.03125,0.03125 -0.02342,0.03124 -0.0311,0.03107 -0.03125,0.03125 -2.98e-4,3.67e-4 -0.187235,0.249608 -0.1875,0.25 -2.65e-4,3.92e-4 -0.12477,0.218337 -0.125,0.21875 -2.3e-4,4.13e-4 -0.09356,0.218318 -0.09375,0.21875 -9.6e-5,2.16e-4 -0.07814,0.140664 -0.09375,0.1875 -0.01561,0.04684 -0.03117,0.09353 -0.03125,0.09375 -7.7e-5,2.24e-4 0.01562,-0.0078 0,0.03125 -0.0078,0.01951 -0.0253,0.01638 -0.03125,0.03125 -0.003,0.0074 0.0019,0.02647 0,0.03125 -1.16e-4,4.59e-4 -0.093675,0.405783 -0.09375,0.40625 0,0 0.00349,0.08071 0,0.125 6.1e-6,-3.1e-5 0.00111,0.02293 0,0.03125 -4.7e-6,0.0057 4e-7,0.02233 0,0.03125 -0.00183,0.0091 0.00196,0.02149 0,0.03125 -0.00196,0.0098 0.00184,0.02204 0,0.03125 -0.00184,0.0092 -0.029746,-0.0075 -0.03125,0 -0.0015,0.0075 0.00102,0.0261 0,0.03125 l 0.03125,0 L 11,22 l -1.0625,0 0,16 c 0,0 -4.3e-4,0.184876 0,0.1875 9.566e-4,0.0058 -0.00149,0.02232 0,0.03125 0.00298,0.01787 -0.00391,0.03908 0,0.0625 0.00782,0.04684 0.031223,0.03099 0.03125,0.03125 5.4e-5,5.28e-4 0.031145,0.31198 0.03125,0.3125 5.2e-5,2.6e-4 -0.0078,0.01566 0,0.0625 0.0039,0.02342 0.02828,0.04469 0.03125,0.0625 4.74e-4,0.0028 -4.05e-4,0.02885 0,0.03125 1.55e-4,5.07e-4 0.124796,0.37451 0.125,0.375 2.04e-4,4.9e-4 0.155999,0.280783 0.15625,0.28125 2.51e-4,4.67e-4 0.124705,0.249559 0.125,0.25 2.95e-4,4.41e-4 0.187163,0.24959 0.1875,0.25 1.69e-4,2.05e-4 0.03128,0.02346 0.0625,0.0625 0.01561,0.01952 0.01941,0.0477 0.03125,0.0625 0.0059,0.0074 0.02755,-0.0046 0.03125,0 0.0018,0.0023 -0.0014,0.02945 0,0.03125 0,0 0.154455,0.154809 0.15625,0.15625 0.0018,0.0014 0.02894,-0.0018 0.03125,0 0.0046,0.0037 -0.0074,0.02533 0,0.03125 0.0148,0.01184 0.04298,0.01564 0.0625,0.03125 0.03904,0.03122 0.0623,0.06233 0.0625,0.0625 4.1e-4,3.37e-4 0.249559,0.187205 0.25,0.1875 4.41e-4,2.95e-4 0.249533,0.124749 0.25,0.125 4.67e-4,2.51e-4 0.28076,0.156046 0.28125,0.15625 4.9e-4,2.04e-4 0.249493,0.0936 0.25,0.09375 0,0 0.122604,0.03084 0.125,0.03125 0.0024,4.05e-4 0.02842,-4.74e-4 0.03125,0 0.01781,0.003 0.03908,0.02735 0.0625,0.03125 0.04684,0.0078 0.06224,-5.2e-5 0.0625,0 5.2e-4,1.05e-4 0.311972,0.0312 0.3125,0.03125 2.64e-4,2.7e-5 -0.01559,0.02343 0.03125,0.03125 0.02342,0.0039 0.04463,-0.003 0.0625,0 0.0089,0.0015 0.02548,-9.57e-4 0.03125,0 a 1.0779495,1.0779495 0 0 0 0.1875,0 l 4.9375,0 0,3.53125 0,11.59375 c 0,12.624477 10.250523,22.875 22.875,22.875 l 14.375,0 19.8125,0 c 0,0 0.184876,4.3e-4 0.1875,0 0.0058,-9.57e-4 0.02232,0.0015 0.03125,0 0.01787,-0.003 0.03908,0.0039 0.0625,0 0.04684,-0.0078 0.03099,-0.03122 0.03125,-0.03125 5.28e-4,-5.4e-5 0.31198,-0.03114 0.3125,-0.03125 2.6e-4,-5.3e-5 0.01566,0.0078 0.0625,0 0.02342,-0.0039 0.04469,-0.02828 0.0625,-0.03125 0.0028,-4.74e-4 0.02885,4.05e-4 0.03125,0 5.07e-4,-1.55e-4 0.37451,-0.124796 0.375,-0.125 4.9e-4,-2.04e-4 0.280783,-0.155999 0.28125,-0.15625 4.67e-4,-2.51e-4 0.249559,-0.124705 0.25,-0.125 4.41e-4,-2.95e-4 0.24959,-0.187163 0.25,-0.1875 2.05e-4,-1.69e-4 0.02346,-0.03128 0.0625,-0.0625 0.01952,-0.01561 0.0477,-0.01941 0.0625,-0.03125 0.0074,-0.0059 -0.0046,-0.02756 0,-0.03125 0.0023,-0.0018 0.02945,0.0014 0.03125,0 0,0 0.154809,-0.154455 0.15625,-0.15625 0.0014,-0.0018 -0.0018,-0.02894 0,-0.03125 0.0037,-0.0046 0.02533,0.0074 0.03125,0 0.01184,-0.0148 0.01564,-0.04298 0.03125,-0.0625 0.03122,-0.03904 0.06233,-0.0623 0.0625,-0.0625 3.37e-4,-4.1e-4 0.187205,-0.249559 0.1875,-0.25 2.95e-4,-4.41e-4 0.124749,-0.249533 0.125,-0.25 2.51e-4,-4.67e-4 0.156046,-0.28076 0.15625,-0.28125 2.04e-4,-4.9e-4 0.09359,-0.249493 0.09375,-0.25 0,0 0.03084,-0.122604 0.03125,-0.125 4.05e-4,-0.0024 -4.74e-4,-0.02842 0,-0.03125 0.003,-0.01781 0.02735,-0.03908 0.03125,-0.0625 0.0078,-0.04684 -5.2e-5,-0.06224 0,-0.0625 1.05e-4,-5.2e-4 0.0312,-0.311972 0.03125,-0.3125 2.7e-5,-2.64e-4 0.02343,0.01559 0.03125,-0.03125 0.0039,-0.02342 -0.003,-0.04463 0,-0.0625 0.0015,-0.0089 -9.57e-4,-0.02548 0,-0.03125 a 1.0779495,1.0779495 0 0 0 0,-0.1875 l 0,-19.8125 0,-14.375 c 0,-12.624477 -10.250523,-22.875 -22.875,-22.875 l -6.1875,0 -8,0 -20,0 -7.96875,0 -0.03125,0 -0.0625,0 -0.0625,0 c -0.05331,-3e-6 -0.155946,-1.4e-5 -0.15625,0 a 1.0779495,1.0779495 0 0 0 -0.0625,0 z"
-       id="path4259"
-       style="opacity:0.05;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       inkscape:connector-curvature="0"
-       d="M 12.78125,20 A 0.98812041,0.98812041 0 0 0 12.625,20.03125 c -4.64e-4,9e-5 -0.155795,0.03112 -0.15625,0.03125 -4.55e-4,1.3e-4 -0.187058,0.06233 -0.1875,0.0625 -4.42e-4,1.69e-4 -0.155825,0.06229 -0.15625,0.0625 -4.25e-4,2.07e-4 -0.155844,0.09351 -0.15625,0.09375 -4.06e-4,2.43e-4 -0.124617,0.09347 -0.125,0.09375 -3.83e-4,2.78e-4 -0.155893,0.09344 -0.15625,0.09375 -3.57e-4,3.1e-4 -0.124671,0.12466 -0.125,0.125 -3.29e-4,3.4e-4 -0.09345,0.124633 -0.09375,0.125 -2.98e-4,3.67e-4 -0.124735,0.155858 -0.125,0.15625 -2.65e-4,3.92e-4 -0.09352,0.155837 -0.09375,0.15625 -2.3e-4,4.13e-4 -0.06231,0.124568 -0.0625,0.125 -1.93e-4,4.32e-4 -0.06235,0.187053 -0.0625,0.1875 -1.55e-4,4.47e-4 -0.06238,0.155791 -0.0625,0.15625 -1.16e-4,4.59e-4 -0.03117,0.155783 -0.03125,0.15625 -7.5e-5,4.67e-4 3.4e-5,0.187028 0,0.1875 C 11.031216,21.844222 10.999993,21.999527 11,22 l 0,16 c 2e-6,5.3e-4 0.0312,0.186972 0.03125,0.1875 5.4e-5,5.28e-4 0.03115,0.21823 0.03125,0.21875 1.05e-4,5.2e-4 0.0311,0.186993 0.03125,0.1875 1.55e-4,5.07e-4 0.0623,0.15576 0.0625,0.15625 2.04e-4,4.9e-4 0.0935,0.187033 0.09375,0.1875 2.51e-4,4.67e-4 0.09346,0.155809 0.09375,0.15625 2.95e-4,4.41e-4 0.124663,0.15584 0.125,0.15625 3.37e-4,4.1e-4 0.124625,0.155875 0.125,0.15625 3.75e-4,3.75e-4 0.15584,0.124663 0.15625,0.125 4.1e-4,3.37e-4 0.155809,0.124705 0.15625,0.125 4.41e-4,2.95e-4 0.155783,0.0935 0.15625,0.09375 4.67e-4,2.51e-4 0.18701,0.09355 0.1875,0.09375 4.9e-4,2.04e-4 0.155743,0.06235 0.15625,0.0625 5.07e-4,1.55e-4 0.18698,0.03115 0.1875,0.03125 5.2e-4,1.05e-4 0.218222,0.0312 0.21875,0.03125 C 12.813028,39.968804 12.99947,40 13,40 l 6,0 0,4.59375 0,11.59375 C 19,68.228894 28.771106,78 40.8125,78 L 55.1875,78 75,78 c 5.3e-4,-2e-6 0.186972,-0.0312 0.1875,-0.03125 5.28e-4,-5.4e-5 0.21823,-0.03114 0.21875,-0.03125 5.2e-4,-1.05e-4 0.186993,-0.03109 0.1875,-0.03125 5.07e-4,-1.55e-4 0.15576,-0.0623 0.15625,-0.0625 4.9e-4,-2.04e-4 0.187033,-0.0935 0.1875,-0.09375 4.67e-4,-2.51e-4 0.155809,-0.09346 0.15625,-0.09375 4.41e-4,-2.95e-4 0.15584,-0.124663 0.15625,-0.125 4.1e-4,-3.37e-4 0.155875,-0.124625 0.15625,-0.125 3.75e-4,-3.75e-4 0.124663,-0.15584 0.125,-0.15625 3.37e-4,-4.1e-4 0.124705,-0.155809 0.125,-0.15625 2.95e-4,-4.41e-4 0.0935,-0.155783 0.09375,-0.15625 2.51e-4,-4.67e-4 0.09355,-0.18701 0.09375,-0.1875 2.04e-4,-4.9e-4 0.06234,-0.155743 0.0625,-0.15625 1.55e-4,-5.07e-4 0.03114,-0.18698 0.03125,-0.1875 1.05e-4,-5.2e-4 0.0312,-0.218222 0.03125,-0.21875 C 76.968804,76.186972 76.999998,76.00053 77,76 l 0,-19.8125 0,-14.375 C 77,29.771106 67.228894,20 55.1875,20 L 49,20 l -8,0 -20,0 -7.96875,0 c -1.01e-4,-5e-6 -0.01934,3e-6 -0.03125,0 -0.02381,-6e-6 -0.02688,-2e-6 -0.0625,0 -2.03e-4,-9e-6 -0.02688,2e-6 -0.0625,0 -0.05343,-3e-6 -0.09345,-1.4e-5 -0.09375,0 z"
-       id="path4255"
-       style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       inkscape:connector-curvature="0"
-       d="M 12.90625,21 A 1.0043202,1.0043202 0 0 0 12,22 l 0,16 a 1.0043202,1.0043202 0 0 0 1,1 l 7,0 0,5.59375 0,11.59375 C 20,67.696431 29.303569,77 40.8125,77 L 55.1875,77 75,77 a 1.0043202,1.0043202 0 0 0 1,-1 l 0,-19.8125 0,-14.375 C 76,30.303569 66.696431,21 55.1875,21 L 49,21 l -8,0 -20,0 -8,0 a 1.0043202,1.0043202 0 0 0 -0.09375,0 z"
-       id="path4251"
-       style="opacity:0.15;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       d="m 13,22 0,16 8,0 0,6.59375 0,11.59375 C 21,67.156701 29.843299,76 40.8125,76 L 55.1875,76 75,76 75,56.1875 75,41.8125 C 75,30.843299 66.156701,22 55.1875,22 L 49,22 l -8,0 -20,0 -8,0 z"
-       inkscape:connector-curvature="0"
-       id="path4247"
-       style="opacity:0.3;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       d="m 13,21 0,16 8,0 0,6.59375 0,11.59375 C 21,66.156701 29.843299,75 40.8125,75 L 55.1875,75 75,75 75,55.1875 75,40.8125 C 75,29.843299 66.156701,21 55.1875,21 L 49,21 l -8,0 -20,0 -8,0 z"
-       inkscape:connector-curvature="0"
-       id="rect3374"
-       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       d="m 17,25 0,8 4,0 c 2.094806,-0.0015 4.001506,1.905194 4,4 l 0,6.59375 0,11.59375 C 25,64.00861 31.99139,71 40.8125,71 L 55.1875,71 71,71 71,55.1875 71,40.8125 C 71,31.99139 64.00861,25 55.1875,25 L 49,25 l -8,0 -20,0 -4,0 z"
-       inkscape:connector-curvature="0"
-       id="path3389"
-       style="color:#000000;fill:url(#linearGradient4201);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       inkscape:connector-curvature="0"
-       d="M 30.84375,29 A 0.50966883,0.50966883 0 0 0 30.5,29.5 l 0,27 0,1 c 0,4.705513 3.794487,8.5 8.5,8.5 l 18,0 c 4.705513,0 8.5,-3.794487 8.5,-8.5 l 0,-1 0,-14 C 65.5,38.358589 62.141411,35 58,35 56.066776,35 54.328069,35.767892 53,36.96875 51.671931,35.767892 49.933224,35 48,35 c -4.141411,0 -7.5,3.358589 -7.5,7.5 l 0,12 A 0.50966883,0.50966883 0 0 0 41,55 l 4,0 a 0.50966883,0.50966883 0 0 0 0.5,-0.5 l 0,-12 c 0,-1.381436 1.118564,-2.5 2.5,-2.5 1.381436,0 2.5,1.118564 2.5,2.5 l 0,12 A 0.50966883,0.50966883 0 0 0 51,55 l 4,0 a 0.50966883,0.50966883 0 0 0 0.5,-0.5 l 0,-12 c 0,-1.381436 1.118564,-2.5 2.5,-2.5 1.381436,0 2.5,1.118564 2.5,2.5 l 0,14 0,1 c 0,1.942487 -1.557513,3.5 -3.5,3.5 l -18,0 c -1.942487,0 -3.5,-1.557513 -3.5,-3.5 l 0,-1 0,-27 A 0.50966883,0.50966883 0 0 0 35,29 l -4,0 a 0.50966883,0.50966883 0 0 0 -0.15625,0 z"
-       id="path4221"
-       style="opacity:0.07999998;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       d="M 17,31.21875 17,33 l 4,0 c 2.094806,-0.0015 4.001506,1.905194 4,4 l 0,6.59375 0,11.59375 C 25,64.00861 31.99139,71 40.8125,71 l 14.375,0 14.4375,0 C 54.866955,63.915298 55.362996,45.784968 41.78125,36.71875 34.131268,31.61216 21.095399,31.209387 17,31.21875 z"
-       inkscape:connector-curvature="0"
-       id="path4203"
-       style="opacity:0.175;fill:url(#linearGradient4215);fill-opacity:1;stroke:none" />
-    <path
-       d="m 31,29.5 0,27 0,1 c 0,4.432 3.568,8 8,8 l 18,0 c 4.432,0 8,-3.568 8,-8 l 0,-1 0,-14 c 0,-3.865993 -3.134007,-7 -7,-7 -1.964141,0 -3.728741,0.822095 -5,2.125 -1.271259,-1.302905 -3.035859,-2.125 -5,-2.125 -3.865993,0 -7,3.134007 -7,7 l 0,12 4,0 0,-12 c 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 l 0,12 4,0 0,-12 c 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 l 0,14 0,1 c 0,2.216 -1.784,4 -4,4 l -18,0 c -2.216,0 -4,-1.784 -4,-4 l 0,-1 0,-27 -4,0 z"
-       inkscape:connector-curvature="0"
-       id="path4217"
-       style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       d="m 31,29 0,27 0,1 c 0,4.432 3.568,8 8,8 l 18,0 c 4.432,0 8,-3.568 8,-8 l 0,-1 0,-14 c 0,-3.865993 -3.134007,-7 -7,-7 -1.964141,0 -3.728741,0.822095 -5,2.125 C 51.728741,35.822095 49.964141,35 48,35 c -3.865993,0 -7,3.134007 -7,7 l 0,12 4,0 0,-12 c 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 l 0,12 4,0 0,-12 c 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 l 0,14 0,1 c 0,2.216 -1.784,4 -4,4 l -18,0 c -2.216,0 -4,-1.784 -4,-4 l 0,-1 0,-27 -4,0 z"
-       inkscape:connector-curvature="0"
-       id="rect3392"
-       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       d="m 17,25 0,0.5 4,0 20,0 8,0 6.1875,0 C 64.00861,25.5 71,32.49139 71,41.3125 l 0,-0.5 C 71,31.99139 64.00861,25 55.1875,25 L 49,25 l -8,0 -20,0 -4,0 z"
-       inkscape:connector-curvature="0"
-       id="path4227"
-       style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       d="m 17,25 0,8 0.5,0 0,-7 3.5,0 20,0 8,0 6.1875,0 C 63.737725,26 70.5,32.762275 70.5,41.3125 l 0,14.375 0,15.3125 0.5,0 0,-15.8125 0,-14.375 C 71,31.99139 64.00861,25 55.1875,25 L 49,25 l -8,0 -20,0 -4,0 z m 4.78125,8.09375 C 23.54954,33.486338 25.001318,35.167045 25,37 l 0,6.59375 0,11.59375 c 0,7.222498 4.678052,13.188996 11.21875,15.125 C 29.958547,68.394208 25.5,62.634558 25.5,55.6875 l 0,-11.59375 0,-6.59375 c 0.0015,-2.137212 -1.66301,-4.011204 -3.71875,-4.40625 z m 14.4375,37.21875 c 0.477979,0.141479 0.972077,0.277989 1.46875,0.375 -0.501595,-0.100803 -0.987196,-0.227439 -1.46875,-0.375 z"
-       inkscape:connector-curvature="0"
-       id="path4236"
-       style="opacity:0.07999998;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-    <path
-       d="M 61,54.03125 61,56 l 0,1 c 0,2.216 -1.784,4 -4,4 l -11.96875,0 0,4 L 57,65 c 4.432,0 8,-3.568 8,-8 l 0,-1 0,-1.96875 -4,0 z"
-       inkscape:connector-curvature="0"
-       id="rect4261"
-       style="opacity:0.3;color:#000000;fill:#52a800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
-  </g>
-</svg>
diff --git a/usr/lib/linuxmint/mintInstall/mintInstall.py b/usr/lib/linuxmint/mintInstall/mintInstall.py
index 2495de6..e328d23 100755
--- a/usr/lib/linuxmint/mintInstall/mintInstall.py
+++ b/usr/lib/linuxmint/mintInstall/mintInstall.py
@@ -189,7 +189,7 @@ def __init__(self, mintFile, user, home):
         #Set the Glade file
         self.gladefile = "/usr/lib/linuxmint/mintInstall/mintInstall.glade"
         wTree = gtk.glade.XML(self.gladefile,"main_window")
-	wTree.get_widget("main_window").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+	wTree.get_widget("main_window").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
 	wTree.get_widget("main_window").set_title("")
 
 	wTree.get_widget("main_window").connect("destroy", self.giveUp)
@@ -430,7 +430,7 @@ def updateEntries(widget, wTree):
 	wTree.get_widget("txt_search_mint").connect("changed", updateEntries, wTree)
 	wTree.get_widget("txt_search_getdeb").connect("changed", updateEntries, wTree)
 	wTree.get_widget("txt_apt").connect("changed", updateEntries, wTree)
-	wTree.get_widget("window_menu").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+	wTree.get_widget("window_menu").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
 	wTree.get_widget("window_menu").set_title(_("Find Software"))
 
 	#i18n
diff --git a/usr/lib/linuxmint/mintInstall/mintinstall.py b/usr/lib/linuxmint/mintInstall/mintinstall.py
index c5e0c71..e232bf3 100755
--- a/usr/lib/linuxmint/mintInstall/mintinstall.py
+++ b/usr/lib/linuxmint/mintInstall/mintinstall.py
@@ -446,7 +446,7 @@ def __init__(self):
         gladefile = "/usr/lib/linuxmint/mintInstall/mintinstall.glade"
         wTree = gtk.glade.XML(gladefile, "main_window")
         wTree.get_widget("main_window").set_title(_("Software Manager"))
-        wTree.get_widget("main_window").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+        wTree.get_widget("main_window").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
         wTree.get_widget("main_window").connect("delete_event", self.close_application)
         
         self.main_window = wTree.get_widget("main_window")
@@ -582,7 +582,7 @@ def __init__(self):
         sans10  =  ImageFont.truetype ( self.FONT, 12 )
 
         # Build the category browsers
-        template = open("/usr/lib/linuxmint/mintInstall/data/templates/CategoriesView.html").read()
+        template = open("/usr/share/linuxmint/mintInstall/data/templates/CategoriesView.html").read()
         subs = {'header': _("Categories")}      
         subs['subtitle'] = _("Please choose a category")
         subs['package_num'] = _("%d packages are currently available") % len(self.packages)
@@ -592,7 +592,7 @@ def __init__(self):
         self.browser.connect('title-changed', self._on_title_changed)
         wTree.get_widget("scrolled_categories").add(self.browser)
 
-        template = open("/usr/lib/linuxmint/mintInstall/data/templates/SubCategoriesView.html").read()
+        template = open("/usr/share/linuxmint/mintInstall/data/templates/SubCategoriesView.html").read()
         subs = {'header': _("Categories")}
         subs['subtitle'] = _("Please choose a sub-category")
         html = string.Template(template).safe_substitute(subs)
@@ -635,8 +635,8 @@ def __init__(self):
         
         wTree.get_widget("main_window").show_all()        
         
-        self.generic_installed_icon_path = "/usr/lib/linuxmint/mintInstall/data/installed.png"
-        self.generic_available_icon_path = "/usr/lib/linuxmint/mintInstall/data/available.png"        
+        self.generic_installed_icon_path = "/usr/share/linuxmint/mintInstall/data/installed.png"
+        self.generic_available_icon_path = "/usr/share/linuxmint/mintInstall/data/available.png"        
         
         self.generic_installed_icon_pixbuf=gtk.gdk.pixbuf_new_from_file_at_size(self.generic_installed_icon_path, 32, 32)
         self.generic_available_icon_pixbuf=gtk.gdk.pixbuf_new_from_file_at_size(self.generic_available_icon_path, 32, 32)        
@@ -746,7 +746,7 @@ def open_account_info(self, widget):
         gladefile = "/usr/lib/linuxmint/mintInstall/mintinstall.glade"
         wTree = gtk.glade.XML(gladefile, "window_account")
         wTree.get_widget("window_account").set_title(_("Account information"))
-        wTree.get_widget("window_account").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+        wTree.get_widget("window_account").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
         wTree.get_widget("label1").set_label("<b>%s</b>" % _("Your community account"))
         wTree.get_widget("label1").set_use_markup(True)
         wTree.get_widget("label2").set_label("<i><small>%s</small></i>" % _("Fill in your account info to review applications"))
@@ -799,8 +799,8 @@ def open_about(self, widget):
             print detail
 
         dlg.set_authors(["Clement Lefebvre <root@linuxmint.com>"])
-        dlg.set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
-        dlg.set_logo(gtk.gdk.pixbuf_new_from_file("/usr/lib/linuxmint/mintInstall/icon.svg"))
+        dlg.set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
+        dlg.set_logo(gtk.gdk.pixbuf_new_from_file("/usr/share/linuxmint/mintInstall/icon.svg"))
         def close(w, res):
             if res == gtk.RESPONSE_CANCEL:
                 w.hide()
@@ -979,7 +979,7 @@ def _on_package_load_finished(self, view, frame, package):
         reviews.sort(key=lambda x: x.date, reverse=True)
         if len(reviews) > 10:
             for review in reviews[0:10]:
-                rating = "/usr/lib/linuxmint/mintInstall/data/small_" + str(review.rating) + ".png"
+                rating = "/usr/share/linuxmint/mintInstall/data/small_" + str(review.rating) + ".png"
                 comment = review.comment.strip()
                 comment = comment.replace("'", "\'")
                 comment = comment.replace('"', '\"')
@@ -992,7 +992,7 @@ def _on_package_load_finished(self, view, frame, package):
 
         else:
             for review in reviews:
-                rating = "/usr/lib/linuxmint/mintInstall/data/small_" + str(review.rating) + ".png"
+                rating = "/usr/share/linuxmint/mintInstall/data/small_" + str(review.rating) + ".png"
                 comment = review.comment.strip()
                 comment = comment.replace("'", "\'")
                 comment = comment.replace('"', '\"')
@@ -1023,7 +1023,7 @@ def on_button_clicked(self):
     def on_screenshot_clicked(self, url):
         package = self.current_package
         if package is not None:
-            template = open("/usr/lib/linuxmint/mintInstall/data/templates/ScreenshotView.html").read()
+            template = open("/usr/share/linuxmint/mintInstall/data/templates/ScreenshotView.html").read()
             subs = {}
             subs['url'] = url
             print "loading: '%s'" % url
@@ -1043,7 +1043,7 @@ def on_website_clicked(self):
     def on_reviews_clicked(self):
         package = self.current_package
         if package is not None:
-            template = open("/usr/lib/linuxmint/mintInstall/data/templates/ReviewsView.html").read()
+            template = open("/usr/share/linuxmint/mintInstall/data/templates/ReviewsView.html").read()
             subs = {}
             subs['appname'] = self.current_package.pkg.name
             subs['reviewsLabel'] = _("Reviews")
@@ -1065,7 +1065,7 @@ def _on_reviews_load_finished(self, view, frame, reviews):
         self.reviewsBrowser.execute_script('clearReviews()')
         reviews.sort(key=lambda x: x.date, reverse=True)
         for review in reviews:
-            rating = "/usr/lib/linuxmint/mintInstall/data/small_" + str(review.rating) + ".png"
+            rating = "/usr/share/linuxmint/mintInstall/data/small_" + str(review.rating) + ".png"
             comment = review.comment.strip()
             comment = comment.replace("'", "\'")
             comment = comment.replace('"', '\"')
@@ -1111,7 +1111,7 @@ def add_categories(self):
         self.categories = []
         self.root_category = Category(_("Categories"), "applications-other", None, None, self.categories)
         
-        featured = Category(_("Featured"), "/usr/lib/linuxmint/mintInstall/data/templates/featured.svg", None, self.root_category, self.categories)
+        featured = Category(_("Featured"), "/usr/share/linuxmint/mintInstall/data/templates/featured.svg", None, self.root_category, self.categories)
         featured.matchingPackages = self.file_to_array("/usr/lib/linuxmint/mintInstall/categories/featured.list")
         
         self.category_all = Category(_("All Packages"), "applications-other", None, self.root_category, self.categories)
@@ -1359,7 +1359,7 @@ def display_packages_list(self, packages_list, searchTree):
             model_applications.set_value(iter, 1, "%s\n<small><span foreground='#555555'>%s</span></small>" % (package.name, summary.capitalize()))
 
             if package.num_reviews > 0:
-                image = "/usr/lib/linuxmint/mintInstall/data/" + str(package.avg_rating) + ".png"
+                image = "/usr/share/linuxmint/mintInstall/data/" + str(package.avg_rating) + ".png"
                 im=Image.open(image)
                 draw = ImageDraw.Draw(im)
 
@@ -1521,7 +1521,7 @@ def find_app_icon(self, package):
             if package.pkg.is_installed:
                 im=Image.open(icon_path)
                 bg_w,bg_h=im.size
-                im2=Image.open("/usr/lib/linuxmint/mintInstall/data/emblem-installed.png")
+                im2=Image.open("/usr/share/linuxmint/mintInstall/data/emblem-installed.png")
                 img_w,img_h=im2.size 
                 offset=(17,17)         
                 im.paste(im2, offset,im2)
@@ -1785,18 +1785,18 @@ def show_package(self, package, tree):
             subs['action_button_value'] = "remove"
             subs['version'] = package.pkg.installed.version
             subs['action_button_description'] = _("Installed")
-            subs['iconstatus'] = "/usr/lib/linuxmint/mintInstall/data/installed.png"
+            subs['iconstatus'] = "/usr/share/linuxmint/mintInstall/data/installed.png"
         else:
             subs['action_button_label'] = _("Install")
             subs['action_button_value'] = "install"
             subs['version'] = package.pkg.candidate.version
             subs['action_button_description'] = _("Not installed")
-            subs['iconstatus'] = "/usr/lib/linuxmint/mintInstall/data/available.png"
+            subs['iconstatus'] = "/usr/share/linuxmint/mintInstall/data/available.png"
 
         if package.num_reviews > 0:
             sans26 = ImageFont.truetype(self.FONT, 26)
             sans10 = ImageFont.truetype(self.FONT, 12)
-            image = "/usr/lib/linuxmint/mintInstall/data/" + str(package.avg_rating) + ".png"
+            image = "/usr/share/linuxmint/mintInstall/data/" + str(package.avg_rating) + ".png"
             im=Image.open(image)
             draw = ImageDraw.Draw(im)
             color = "#000000"
@@ -1813,10 +1813,10 @@ def show_package(self, package, tree):
             subs['rating'] = tmpFile.name + ".png"
             subs['reviews'] = "<b>" + _("Reviews:") + "</b>"
         else:
-            subs['rating'] = "/usr/lib/linuxmint/mintInstall/data/no-reviews.png"
+            subs['rating'] = "/usr/share/linuxmint/mintInstall/data/no-reviews.png"
             subs['reviews'] = ""
 
-        template = open("/usr/lib/linuxmint/mintInstall/data/templates/PackageView.html")        
+        template = open("/usr/share/linuxmint/mintInstall/data/templates/PackageView.html")        
         html = string.Template(template.read()).safe_substitute(subs)
         self.packageBrowser.load_html_string(html, "file:/")
         template.close()
diff --git a/usr/lib/linuxmint/mintInstall/remove.py b/usr/lib/linuxmint/mintInstall/remove.py
index 1277204..c18be0b 100755
--- a/usr/lib/linuxmint/mintInstall/remove.py
+++ b/usr/lib/linuxmint/mintInstall/remove.py
@@ -90,7 +90,7 @@ def __init__(self, mintFile):
         #Set the Glade file
         self.gladefile = "/usr/lib/linuxmint/mintInstall/remove.glade"
         wTree = gtk.glade.XML(self.gladefile,"main_window")
-	wTree.get_widget("main_window").set_icon_from_file("/usr/lib/linuxmint/mintInstall/icon.svg")
+	wTree.get_widget("main_window").set_icon_from_file("/usr/share/linuxmint/mintInstall/icon.svg")
 	wTree.get_widget("main_window").set_title("")
 	wTree.get_widget("main_window").connect("destroy", self.giveUp)
 
diff --git a/usr/share/linuxmint/mintInstall/icon.svg b/usr/share/linuxmint/mintInstall/icon.svg
new file mode 100644
index 0000000..3ef8eef
--- /dev/null
+++ b/usr/share/linuxmint/mintInstall/icon.svg
@@ -0,0 +1,1160 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="96"
+   height="96"
+   id="svg2408"
+   style="display:inline"
+   inkscape:version="0.48.2 r9819"
+   sodipodi:docname="softwarecenter-ubuntu.svg">
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="640"
+     inkscape:window-height="480"
+     id="namedview211"
+     showgrid="false"
+     inkscape:zoom="2.4583333"
+     inkscape:cx="48"
+     inkscape:cy="48"
+     inkscape:window-x="0"
+     inkscape:window-y="25"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg2408" />
+  <defs
+     id="defs2410">
+    <linearGradient
+       id="linearGradient3928">
+      <stop
+         id="stop3930"
+         style="stop-color:#3a240f;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop3932"
+         style="stop-color:#3a240f;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3157">
+      <stop
+         id="stop3159"
+         style="stop-color:#de6010;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop3161"
+         style="stop-color:#f3bd49;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3778">
+      <stop
+         id="stop3780"
+         style="stop-color:#499119;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop3782"
+         style="stop-color:#8fd625;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4426">
+      <stop
+         id="stop4428"
+         style="stop-color:#71461e;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop4430"
+         style="stop-color:#71461e;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4414">
+      <stop
+         id="stop4416"
+         style="stop-color:#dac3a2;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop4418"
+         style="stop-color:#dac3a2;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4370">
+      <stop
+         id="stop4372"
+         style="stop-color:#8a5b30;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop4374"
+         style="stop-color:#8a5b30;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="52.25"
+       y1="47.247101"
+       x2="52.25"
+       y2="0.2393"
+       id="linearGradient4309"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         id="stop4311"
+         style="stop-color:#d8cab2;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop4321"
+         style="stop-color:#d2b98c;stop-opacity:1"
+         offset="0.45710954" />
+      <stop
+         id="stop4323"
+         style="stop-color:#f9f7ef;stop-opacity:1"
+         offset="0.48590001" />
+      <stop
+         id="stop4325"
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0.49110001" />
+      <stop
+         id="stop4327"
+         style="stop-color:#fbf9f4;stop-opacity:1"
+         offset="0.49180001" />
+      <stop
+         id="stop4329"
+         style="stop-color:#efe7d0;stop-opacity:1"
+         offset="0.4946" />
+      <stop
+         id="stop4331"
+         style="stop-color:#e4d6b0;stop-opacity:1"
+         offset="0.49770001" />
+      <stop
+         id="stop4333"
+         style="stop-color:#dac894;stop-opacity:1"
+         offset="0.5011" />
+      <stop
+         id="stop4335"
+         style="stop-color:#c7a572;stop-opacity:1"
+         offset="0.50489998" />
+      <stop
+         id="stop4347"
+         style="stop-color:#d7c198;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4295">
+      <stop
+         id="stop4297"
+         style="stop-color:#b88f56;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop4299"
+         style="stop-color:#d9bd98;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4289">
+      <stop
+         id="stop4291"
+         style="stop-color:#996c3b;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop4293"
+         style="stop-color:#c19e6d;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5092">
+      <stop
+         id="stop5094"
+         style="stop-color:#be9f6a;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop5096"
+         style="stop-color:#e5d2b2;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5010">
+      <stop
+         id="stop5012"
+         style="stop-color:#000000;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop5014"
+         style="stop-color:#000000;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="45.447727"
+       y1="92.539597"
+       x2="45.447727"
+       y2="7.0165396"
+       id="ButtonShadow"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.0058652,0.994169)">
+      <stop
+         id="stop3750"
+         style="stop-color:#000000;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop3752"
+         style="stop-color:#000000;stop-opacity:0.58823532"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3737">
+      <stop
+         id="stop3739"
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop3741"
+         style="stop-color:#ffffff;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="54.187183"
+       y1="90"
+       x2="54.187183"
+       y2="39.852562"
+       id="linearGradient3706"
+       xlink:href="#linearGradient4289"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       color-interpolation-filters="sRGB"
+       id="filter3174">
+      <feGaussianBlur
+         id="feGaussianBlur3176"
+         stdDeviation="1.71" />
+    </filter>
+    <filter
+       x="-0.31155673"
+       y="-0.42628157"
+       width="1.6231135"
+       height="1.8525631"
+       color-interpolation-filters="sRGB"
+       id="filter4362">
+      <feGaussianBlur
+         id="feGaussianBlur4364"
+         stdDeviation="6.2124381" />
+    </filter>
+    <linearGradient
+       x1="47.079498"
+       y1="32.782871"
+       x2="6.5962563"
+       y2="9.4098616"
+       id="linearGradient5100"
+       xlink:href="#linearGradient5092"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       x1="48"
+       y1="42"
+       x2="6.7812738"
+       y2="18.202358"
+       id="linearGradient2489"
+       xlink:href="#linearGradient4295"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       x1="47.226776"
+       y1="29.039698"
+       x2="6.3304405"
+       y2="18.081558"
+       id="linearGradient3264"
+       xlink:href="#linearGradient4295"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,96,0)" />
+    <linearGradient
+       x1="50.499405"
+       y1="19.881863"
+       x2="50.499405"
+       y2="47.295406"
+       id="linearGradient3277"
+       xlink:href="#linearGradient4309"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       x1="23.142857"
+       y1="42"
+       x2="66.964287"
+       y2="6"
+       id="linearGradient3285"
+       xlink:href="#linearGradient3737"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       x1="8"
+       y1="38.127232"
+       x2="8"
+       y2="71.877235"
+       id="linearGradient4376"
+       xlink:href="#linearGradient4370"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       x1="10"
+       y1="40.263424"
+       x2="10"
+       y2="89.666374"
+       id="linearGradient4394"
+       xlink:href="#linearGradient3737"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       x1="8"
+       y1="38.127232"
+       x2="8"
+       y2="87.029526"
+       id="linearGradient4400"
+       xlink:href="#linearGradient4370"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,96,0)" />
+    <linearGradient
+       x1="10"
+       y1="40.263424"
+       x2="10"
+       y2="89.666374"
+       id="linearGradient4402"
+       xlink:href="#linearGradient3737"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,96,0)" />
+    <linearGradient
+       x1="8.9651041"
+       y1="44.040279"
+       x2="8.9651041"
+       y2="52.263294"
+       id="linearGradient4420"
+       xlink:href="#linearGradient4414"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       x1="8.9651041"
+       y1="44.040279"
+       x2="8.9651041"
+       y2="52.263294"
+       id="linearGradient4424"
+       xlink:href="#linearGradient4414"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,96.086934,0)" />
+    <radialGradient
+       cx="48"
+       cy="73.14563"
+       r="42"
+       fx="48"
+       fy="73.14563"
+       id="radialGradient4432"
+       xlink:href="#linearGradient4426"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.867765,0,0,0.09523809,6.3472804,36.190476)" />
+    <linearGradient
+       x1="65.262688"
+       y1="64.205269"
+       x2="65.262688"
+       y2="50.068527"
+       id="linearGradient3832"
+       xlink:href="#linearGradient3737"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.625,0,0,0.625,28.5,31.25)" />
+    <linearGradient
+       id="linearGradient3737-4">
+      <stop
+         id="stop3739-1"
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop3741-8"
+         style="stop-color:#ffffff;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       cx="48"
+       cy="90.171875"
+       r="42"
+       fx="48"
+       fy="90.171875"
+       id="radialGradient2858"
+       xlink:href="#linearGradient3737-4"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.1573129,0,0,0.99590774,-7.551021,0.1971319)" />
+    <linearGradient
+       x1="56"
+       y1="72"
+       x2="88"
+       y2="72"
+       id="linearGradient3773"
+       xlink:href="#linearGradient3778"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9375,0,0,0.9375,-140.5,3.5)" />
+    <linearGradient
+       x1="70"
+       y1="54"
+       x2="70"
+       y2="75.095024"
+       id="linearGradient3788"
+       xlink:href="#linearGradient3737"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,4)" />
+    <filter
+       color-interpolation-filters="sRGB"
+       id="filter3806">
+      <feGaussianBlur
+         id="feGaussianBlur3808"
+         stdDeviation="1.2" />
+    </filter>
+    <linearGradient
+       x1="65.262688"
+       y1="64.205269"
+       x2="65.262688"
+       y2="50.068527"
+       id="linearGradient3812"
+       xlink:href="#linearGradient5010"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.625,0,0,0.625,78.5,32.25)" />
+    <clipPath
+       id="clipPath3823">
+      <path
+         d="M 108.8125,58 C 107.25437,58 106,59.254375 106,60.8125 l 0,24.375 C 106,86.745625 107.25437,88 108.8125,88 l 24.375,0 C 134.74562,88 136,86.745625 136,85.1875 l 0,-24.375 C 136,59.254375 134.74562,58 133.1875,58 l -24.375,0 z m 7.1875,4.5 10,0 0,8.75 5,0 -10,13.75 -10,-13.75 5,0 0,-8.75 z"
+         inkscape:connector-curvature="0"
+         id="path3825"
+         style="fill:#ffffff;fill-opacity:1;stroke:none" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       id="filter3831">
+      <feGaussianBlur
+         id="feGaussianBlur3833"
+         stdDeviation="0.6375" />
+    </filter>
+    <linearGradient
+       x1="51.42857"
+       y1="72.785713"
+       x2="90.714287"
+       y2="72.785713"
+       id="linearGradient3844"
+       xlink:href="#linearGradient3157"
+       gradientUnits="userSpaceOnUse" />
+    <clipPath
+       id="clipPath3871">
+      <path
+         d="M 0,95.999997 0,156 l 96.000001,0 0,-60.000003 -96.000001,0 z M 68,116 c 9.941125,0 18,8.05888 18,18 0,9.94112 -8.058875,18 -18,18 -9.941125,0 -18,-8.05888 -18,-18 0,-9.94112 8.058875,-18 18,-18 z"
+         inkscape:connector-curvature="0"
+         id="path3873"
+         style="fill:#ffffff;fill-opacity:1;stroke:none" />
+    </clipPath>
+    <linearGradient
+       x1="64.321426"
+       y1="55.310268"
+       x2="64.321426"
+       y2="84.889679"
+       id="linearGradient3857-6"
+       xlink:href="#linearGradient3737-1"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2,0)" />
+    <linearGradient
+       id="linearGradient3737-1">
+      <stop
+         id="stop3739-5"
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop3741-9"
+         style="stop-color:#ffffff;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="45.447727"
+       y1="92.539597"
+       x2="45.447727"
+       y2="7.0165396"
+       id="ButtonShadow-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)">
+      <stop
+         id="stop3750-8"
+         style="stop-color:#000000;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop3752-5"
+         style="stop-color:#000000;stop-opacity:0.58823532"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="32.251034"
+       y1="6.1317081"
+       x2="32.251034"
+       y2="90.238609"
+       id="linearGradient3780"
+       xlink:href="#ButtonShadow-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
+    <linearGradient
+       x1="32.251034"
+       y1="6.1317081"
+       x2="32.251034"
+       y2="90.238609"
+       id="linearGradient3772"
+       xlink:href="#ButtonShadow-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
+    <linearGradient
+       x1="32.251034"
+       y1="6.1317081"
+       x2="32.251034"
+       y2="90.238609"
+       id="linearGradient3725"
+       xlink:href="#ButtonShadow-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
+    <linearGradient
+       x1="32.251034"
+       y1="6.1317081"
+       x2="32.251034"
+       y2="90.238609"
+       id="linearGradient3721"
+       xlink:href="#ButtonShadow-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-97)" />
+    <linearGradient
+       x1="32.251034"
+       y1="6.1317081"
+       x2="32.251034"
+       y2="90.238609"
+       id="linearGradient2918"
+       xlink:href="#ButtonShadow-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
+    <linearGradient
+       x1="48.40115"
+       y1="61.990967"
+       x2="48.40115"
+       y2="4.6666145"
+       id="linearGradient3934"
+       xlink:href="#linearGradient3928"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       x1="46.795631"
+       y1="60.307007"
+       x2="46.795631"
+       y2="6.0179305"
+       id="linearGradient3942"
+       xlink:href="#linearGradient3928"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       x1="32"
+       y1="24"
+       x2="48"
+       y2="72"
+       id="linearGradient4201"
+       xlink:href="#linearGradient3312"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3312">
+      <stop
+         id="stop3314"
+         style="stop-color:#c7f994;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop3316"
+         style="stop-color:#87cf3e;stop-opacity:1"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       x1="29.158056"
+       y1="64.280525"
+       x2="49.614868"
+       y2="39.964417"
+       id="linearGradient4215"
+       xlink:href="#linearGradient4209"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient4209">
+      <stop
+         id="stop4211"
+         style="stop-color:#000000;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop4213"
+         style="stop-color:#000000;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+  </defs>
+  <metadata
+     id="metadata2413">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer2"
+     style="display:none">
+    <path
+       d="M 11,7 48,5 85,7 c 3.324,0 6,2.676 6,6 l 0,73 c 0,3.324 -2.676,6 -6,6 L 11,92 C 7.676,92 5,89.324 5,86 L 5,13 C 5,9.676 7.676,7 11,7 z"
+       inkscape:connector-curvature="0"
+       id="rect3745"
+       style="opacity:0.9;fill:url(#ButtonShadow);fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter3174)" />
+  </g>
+  <g
+     id="layer3"
+     style="display:inline">
+    <path
+       d="m 12,-95.03125 c -5.5110903,0 -10.03125,4.52016 -10.03125,10.03125 l 0,71 c 0,5.5110902 4.5201598,10.03125 10.03125,10.03125 l 72,0 c 5.51109,0 10.03125,-4.5201597 10.03125,-10.03125 l 0,-71 c 0,-5.51109 -4.52016,-10.03125 -10.03125,-10.03125 l -72,0 z"
+       transform="scale(1,-1)"
+       id="path3786"
+       style="opacity:0.07999998;fill:url(#linearGradient2918);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    <path
+       d="m 12,-94.03125 c -4.971633,0 -9.03125,4.059617 -9.03125,9.03125 l 0,71 c 0,4.9716329 4.0596171,9.03125 9.03125,9.03125 l 72,0 c 4.971633,0 9.03125,-4.059617 9.03125,-9.03125 l 0,-71 c 0,-4.971633 -4.059617,-9.03125 -9.03125,-9.03125 l -72,0 z"
+       transform="scale(1,-1)"
+       id="path3778"
+       style="opacity:0.1;fill:url(#linearGradient3780);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    <path
+       d="m 12,-93 c -4.4091333,0 -8,3.590867 -8,8 l 0,71 c 0,4.4091333 3.5908667,8 8,8 l 72,0 c 4.409133,0 8,-3.5908667 8,-8 l 0,-71 c 0,-4.409133 -3.590867,-8 -8,-8 l -72,0 z"
+       transform="scale(1,-1)"
+       id="path3770"
+       style="opacity:0.2;fill:url(#linearGradient3772);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    <rect
+       width="86"
+       height="85"
+       rx="7"
+       ry="7"
+       x="5"
+       y="-92"
+       transform="scale(1,-1)"
+       id="rect3723"
+       style="opacity:0.3;fill:url(#linearGradient3725);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+    <rect
+       width="84"
+       height="84"
+       rx="6"
+       ry="6"
+       x="6"
+       y="-91"
+       transform="scale(1,-1)"
+       id="rect3716"
+       style="opacity:0.45;fill:url(#linearGradient3721);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+  </g>
+  <g
+     id="layer1"
+     style="display:inline">
+    <path
+       d="m 6,36 0,48 c 0,1.781762 0.7745675,3.371709 2,4.46875 L 8,36 6,36 z"
+       inkscape:connector-curvature="0"
+       id="rect5138"
+       style="fill:url(#linearGradient4376);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <rect
+       width="84"
+       height="84"
+       rx="6"
+       ry="6"
+       x="6"
+       y="6"
+       id="rect2419"
+       style="fill:url(#linearGradient3706);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       d="m 6,36 0,2 c 0,3.324 2.676,6 6,6 l 72,0 c 3.324,0 6,-2.676 6,-6 l 0,-2 c 0,3.324 -2.676,6 -6,6 L 12,42 C 8.676,42 6,39.324 6,36 z"
+       inkscape:connector-curvature="0"
+       id="path3287"
+       style="fill:url(#radialGradient4432);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       d="m 90,36 0,48 c 0,1.781762 -0.774567,3.371709 -2,4.46875 L 88,36 l 2,0 z"
+       inkscape:connector-curvature="0"
+       id="path4396"
+       style="fill:url(#linearGradient4400);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <rect
+       width="84"
+       height="24"
+       rx="6"
+       ry="6"
+       x="6"
+       y="18"
+       id="rect2483"
+       style="fill:#3c2510;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       d="m 88,36 0,52.46875 c -0.576856,0.516417 -1.254924,0.923089 -2,1.1875 L 86,36 l 2,0 z"
+       inkscape:connector-curvature="0"
+       id="path4398"
+       style="opacity:0.3;fill:url(#linearGradient4402);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       d="m 8,36 0,52.46875 c 0.5768558,0.516417 1.254924,0.923089 2,1.1875 L 10,36 8,36 z"
+       inkscape:connector-curvature="0"
+       id="path4378"
+       style="opacity:0.3;fill:url(#linearGradient4394);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       d="M 12,6 C 8.7734181,6 6,8.2592995 6,13 L 6,15 6,35.65625 48,35.69067 48,6 14,6 12,6 z"
+       inkscape:connector-curvature="0"
+       id="path5055"
+       style="fill:url(#linearGradient5100);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <rect
+       width="47.855976"
+       height="34.976532"
+       rx="6"
+       ry="6"
+       x="12.753176"
+       y="41.956837"
+       transform="matrix(1,0,0,0.8555957,10,8.5841304)"
+       id="rect4356"
+       style="opacity:0.3;fill:#dac7a8;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4362)" />
+    <path
+       d="M 12,6 C 8.676,6 6,8.676 6,12 l 0,24 c 0,3.324 2.676,6 6,6 L 48,40 48,4 12,6 z"
+       inkscape:connector-curvature="0"
+       id="rect2481"
+       style="fill:url(#linearGradient2489);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       d="M 54.120367,7.0000001 42,7.0000001 42.060184,31.062224 42.194832,60 l 5.686841,-0.49473 6.043862,-0.525331 0.03264,-5.551173 0.102007,-22.366542 0.06018,-24.0622239 z"
+       inkscape:connector-curvature="0"
+       id="path5008"
+       style="opacity:0.5;fill:#3a240f;fill-opacity:1;display:inline" />
+    <path
+       d="m 84,6 c 3.324,0 6,2.676 6,6 l 0,24 c 0,3.324 -2.676,6 -6,6 L 48,40 48,4 84,6 z"
+       inkscape:connector-curvature="0"
+       id="path3262"
+       style="fill:url(#linearGradient3264);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       d="m 41.6875,5.125 c 0.0042,-7.112e-4 -0.191651,0.032337 -0.1875,0.03125 0.0042,-0.00109 -0.160287,0.063954 -0.15625,0.0625 0.004,-0.00145 -0.160141,0.064309 -0.15625,0.0625 0.0039,-0.00181 -0.128713,0.06465 -0.125,0.0625 0.0037,-0.00215 -0.159756,0.096223 -0.15625,0.09375 0.0035,-0.00247 -0.128271,0.1277772 -0.125,0.125 0.0033,-0.00278 -0.128009,0.096809 -0.125,0.09375 0.003,-0.00306 -0.127724,0.1283156 -0.125,0.125 0.0027,-0.00332 -0.09617,0.1597959 -0.09375,0.15625 0.0024,-0.00355 -0.09584,0.1287479 -0.09375,0.125 0.0021,-0.00375 -0.06424,0.1601697 -0.0625,0.15625 0.0017,-0.00392 -0.06389,0.1603101 -0.0625,0.15625 0.0014,-0.00406 -0.03227,0.160418 -0.03125,0.15625 0.001,-0.00417 -0.06314,0.1604925 -0.0625,0.15625 6.42e-4,-0.00424 -2.6e-4,0.1917829 0,0.1875 2.08e-4,-0.00343 7.69e-4,0.08233 0,0.125 l 0,0.03125 L 40.1875,31.0625 40.3125,60 a 1.0057838,1.0057838 0 0 0 0,0.03125 c -4.2e-5,-0.0025 1.68e-4,0.0962 0,0.09375 -1.68e-4,-0.0025 2.94e-4,0.09619 0,0.09375 -2.94e-4,-0.0024 0.03167,0.09617 0.03125,0.09375 -4.19e-4,-0.0024 5.42e-4,0.09615 0,0.09375 -5.42e-4,-0.0024 0.03191,0.09611 0.03125,0.09375 -6.64e-4,-0.0024 0.03204,0.09608 0.03125,0.09375 -7.85e-4,-0.0023 0.03215,0.06479 0.03125,0.0625 -9.03e-4,-0.0023 0.03227,0.09599 0.03125,0.09375 -0.001,-0.0022 0.06363,0.09593 0.0625,0.09375 -0.0011,-0.0022 0.03249,0.09587 0.03125,0.09375 -0.0012,-0.0021 0.06385,0.06455 0.0625,0.0625 -0.0014,-0.0021 0.0327,0.09573 0.03125,0.09375 -0.0015,-0.002 0.06405,0.0644 0.0625,0.0625 -0.0016,-0.0019 0.06415,0.09557 0.0625,0.09375 -0.0016,-0.0018 0.06424,0.06423 0.0625,0.0625 -0.0017,-0.0017 0.09558,0.06414 0.09375,0.0625 -0.0018,-0.0016 0.06441,0.06405 0.0625,0.0625 -0.0019,-0.0015 0.06448,0.06395 0.0625,0.0625 -0.002,-0.0014 0.09581,0.06384 0.09375,0.0625 -0.0021,-0.0013 0.06462,0.03249 0.0625,0.03125 -0.0021,-0.0012 0.09593,0.06363 0.09375,0.0625 -0.0022,-0.0011 0.09599,0.03226 0.09375,0.03125 -0.0022,-0.001 0.09604,0.03215 0.09375,0.03125 -0.0023,-8.97e-4 0.09608,0.03203 0.09375,0.03125 -0.0023,-7.79e-4 0.09612,0.03191 0.09375,0.03125 -0.0024,-6.58e-4 0.09615,0.03179 0.09375,0.03125 -0.0024,-5.36e-4 0.09617,4.12e-4 0.09375,0 -0.0024,-4.12e-4 0.09619,0.03154 0.09375,0.03125 -0.0024,-2.88e-4 0.0962,1.62e-4 0.09375,0 -0.0025,-1.62e-4 0.09621,3.6e-5 0.09375,0 -0.0025,-3.6e-5 0.0962,-9e-5 0.09375,0 -0.0025,9e-5 0.0962,-2.16e-4 0.09375,0 l 5.6875,-0.5 6.03125,-0.53125 c -8.93e-4,5.1e-5 0.02019,0.0012 0.03125,0 0.04424,-0.0047 0.128538,-5.37e-4 0.125,0 -0.0044,6.71e-4 0.19184,-0.06358 0.1875,-0.0625 -0.0043,0.0011 0.160471,-0.03273 0.15625,-0.03125 -0.0042,0.0015 0.160314,-0.06437 0.15625,-0.0625 -0.0041,0.0019 0.160122,-0.09599 0.15625,-0.09375 -0.0039,0.0022 0.159897,-0.09634 0.15625,-0.09375 -0.0036,0.0026 0.128389,-0.09667 0.125,-0.09375 -0.0034,0.0029 0.128103,-0.128222 0.125,-0.125 -0.0031,0.0032 0.127789,-0.128497 0.125,-0.125 -0.0028,0.0035 0.0962,-0.159992 0.09375,-0.15625 -0.0025,0.0037 0.09584,-0.160204 0.09375,-0.15625 -0.0021,0.004 0.09546,-0.160382 0.09375,-0.15625 -0.0017,0.0041 0.06382,-0.160524 0.0625,-0.15625 -0.0013,0.0043 0.03217,-0.160628 0.03125,-0.15625 -9.16e-4,0.0044 0.03175,-0.191944 0.03125,-0.1875 -5.04e-4,0.0044 8.7e-5,-0.160722 0,-0.15625 a 1.0057838,1.0057838 0 0 0 0,-0.03125 L 55.84375,53.4375 55.9375,31.0625 56,7 c -7.3e-5,0.00479 -4.06e-4,-0.1610265 0,-0.15625 4.06e-4,0.00478 -0.03213,-0.1922121 -0.03125,-0.1875 8.81e-4,0.00471 -0.0326,-0.1921004 -0.03125,-0.1875 0.0013,0.0046 -0.0643,-0.1919427 -0.0625,-0.1875 0.0018,0.00444 -0.09599,-0.1604906 -0.09375,-0.15625 0.0022,0.00424 -0.0964,-0.160246 -0.09375,-0.15625 0.0026,0.004 -0.09678,-0.1599614 -0.09375,-0.15625 0.003,0.00371 -0.12839,-0.1596397 -0.125,-0.15625 0.0034,0.00339 -0.159961,-0.1280341 -0.15625,-0.125 0.0037,0.00303 -0.160246,-0.096398 -0.15625,-0.09375 0.004,0.00265 -0.160491,-0.095986 -0.15625,-0.09375 0.0042,0.00224 -0.160693,-0.095551 -0.15625,-0.09375 0.0044,0.0018 -0.1921,-0.063848 -0.1875,-0.0625 0.0046,0.00135 -0.192212,-0.032132 -0.1875,-0.03125 0.0047,8.815e-4 -0.192277,-0.031656 -0.1875,-0.03125 0.0048,4.063e-4 -0.161043,7.3e-5 -0.15625,0 l -12.03125,0 c 0.0026,2.364e-4 -0.04386,0.00229 -0.09375,0 -0.03326,-0.00153 -0.06424,0 -0.0625,0 0.0043,0 -0.19183,3.94e-4 -0.1875,0 a 1.0057838,1.0057838 0 0 0 -0.0625,0 z"
+       id="path3926"
+       style="opacity:0.1;fill:url(#linearGradient3934);fill-opacity:1;display:inline" />
+    <path
+       d="M 42,6.125 A 0.8619805,0.8619805 0 0 0 41.125,7 L 41.1875,31.0625 41.3125,60 a 0.8619805,0.8619805 0 0 0 0.9375,0.84375 l 5.6875,-0.5 L 54,59.8125 a 0.8619805,0.8619805 0 0 0 0.8125,-0.84375 L 54.84375,53.4375 54.9375,31.0625 55,7 A 0.8619805,0.8619805 0 0 0 54.125,6.125 L 42,6.125 z"
+       id="path3922"
+       style="opacity:0.2;fill:url(#linearGradient3942);fill-opacity:1;display:inline" />
+    <path
+       d="M 58.191,-1.3602622 52.25,-1.7935124 46.309,-1.3602622 46.368,23.828 46.5,52.196667 l 5.575,-0.485 5.925,-0.515 0.032,-5.442 0.1,-21.926667 0.059,-25.1882622 z"
+       inkscape:connector-curvature="0"
+       transform="matrix(1.0200612,0,0,1.0200612,-5.2981977,5.7562055)"
+       id="polygon120"
+       style="fill:url(#linearGradient3277);fill-opacity:1;display:inline" />
+    <path
+       d="M 12,6 C 8.676,6 6,8.676 6,12 l 0,24 c 0,3.324 2.676,6 6,6 l 36,-2 36,2 c 3.324,0 6,-2.676 6,-6 L 90,12 C 90,8.676 87.324,6 84,6 L 48,4 12,6 z m 0,2 36,-2 36,2 c 2.245802,0 4,1.7541975 4,4 l 0,24 c 0,2.245802 -1.754198,4 -4,4 L 48,38 12,40 C 9.7541975,40 8,38.245802 8,36 L 8,12 C 8,9.7541975 9.7541975,8 12,8 z"
+       inkscape:connector-curvature="0"
+       id="rect3266"
+       style="opacity:0.3;fill:url(#linearGradient3285);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <rect
+       width="1"
+       height="35.714287"
+       x="47"
+       y="4.1250005"
+       id="rect4363"
+       style="opacity:0.2;fill:#8d6137;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <rect
+       width="1"
+       height="35.714287"
+       x="48"
+       y="4.1250005"
+       id="rect4365"
+       style="opacity:0.2;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    <path
+       d="m 6.1871843,37.284884 c 2.3991123,5.555839 1.894036,16.036171 1.894036,16.036171 L 9.9121217,53.068517 C 9.6595836,44.861028 10.354063,41.83057 14.89975,41.704301 7.7307581,40.509469 6.1871843,37.284884 6.1871843,37.284884 z"
+       inkscape:connector-curvature="0"
+       id="path4404"
+       style="fill:url(#linearGradient4420);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+    <path
+       d="m 89.89975,37.284884 c -2.399112,5.555839 -1.894036,16.036171 -1.894036,16.036171 L 86.174813,53.068517 C 86.427351,44.861028 85.732871,41.83057 81.187184,41.704301 88.356176,40.509469 89.89975,37.284884 89.89975,37.284884 z"
+       inkscape:connector-curvature="0"
+       id="path4422"
+       style="fill:url(#linearGradient4424);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+    <path
+       d="M 12,90 C 8.676,90 6,87.324 6,84 L 6,82 6,14 6,12 c 0,-0.334721 0.04135,-0.6507 0.09375,-0.96875 0.0487,-0.295596 0.09704,-0.596915 0.1875,-0.875 C 6.29113,10.12587 6.302142,10.09265 6.3125,10.0625 6.411365,9.774729 6.5473802,9.515048 6.6875,9.25 6.8320918,8.976493 7.0031161,8.714385 7.1875,8.46875 7.3718839,8.223115 7.5612765,7.995278 7.78125,7.78125 8.221197,7.353194 8.72416,6.966724 9.28125,6.6875 9.559795,6.547888 9.8547231,6.440553 10.15625,6.34375 9.9000482,6.443972 9.6695391,6.580022 9.4375,6.71875 c -0.00741,0.0044 -0.023866,-0.0045 -0.03125,0 -0.031933,0.0193 -0.062293,0.04251 -0.09375,0.0625 -0.120395,0.0767 -0.2310226,0.163513 -0.34375,0.25 -0.1061728,0.0808 -0.2132809,0.161112 -0.3125,0.25 C 8.4783201,7.442683 8.3087904,7.626638 8.15625,7.8125 8.0486711,7.942755 7.9378561,8.077785 7.84375,8.21875 7.818661,8.25713 7.805304,8.30462 7.78125,8.34375 7.716487,8.446782 7.6510225,8.548267 7.59375,8.65625 7.4927417,8.850956 7.3880752,9.071951 7.3125,9.28125 7.30454,9.30306 7.288911,9.3218 7.28125,9.34375 7.2494249,9.4357 7.2454455,9.530581 7.21875,9.625 7.1884177,9.731618 7.1483606,9.828031 7.125,9.9375 7.0521214,10.279012 7,10.635705 7,11 l 0,2 0,68 0,2 c 0,2.781848 2.2181517,5 5,5 l 2,0 68,0 2,0 c 2.781848,0 5,-2.218152 5,-5 l 0,-2 0,-68 0,-2 C 89,10.635705 88.94788,10.279012 88.875,9.9375 88.83085,9.730607 88.78662,9.539842 88.71875,9.34375 88.71105,9.3218 88.69545,9.30306 88.6875,9.28125 88.62476,9.107511 88.549117,8.913801 88.46875,8.75 88.42717,8.6672 88.38971,8.580046 88.34375,8.5 88.28915,8.40279 88.216976,8.31165 88.15625,8.21875 88.06214,8.077785 87.951329,7.942755 87.84375,7.8125 87.700576,7.63805 87.540609,7.465502 87.375,7.3125 87.36383,7.3023 87.35502,7.29135 87.34375,7.28125 87.205364,7.155694 87.058659,7.046814 86.90625,6.9375 86.803679,6.86435 86.701932,6.784136 86.59375,6.71875 c -0.0074,-0.0045 -0.02384,0.0044 -0.03125,0 -0.232039,-0.138728 -0.462548,-0.274778 -0.71875,-0.375 0.301527,0.0968 0.596455,0.204138 0.875,0.34375 0.55709,0.279224 1.060053,0.665694 1.5,1.09375 0.219973,0.214028 0.409366,0.441865 0.59375,0.6875 0.184384,0.245635 0.355408,0.507743 0.5,0.78125 0.14012,0.265048 0.276135,0.524729 0.375,0.8125 0.01041,0.03078 0.02133,0.06274 0.03125,0.09375 0.09046,0.278085 0.1388,0.579404 0.1875,0.875 C 89.95865,11.3493 90,11.665279 90,12 l 0,2 0,68 0,2 c 0,3.324 -2.676,6 -6,6 l -72,0 z"
+       inkscape:connector-curvature="0"
+       id="path3615"
+       style="opacity:0.2;fill:url(#radialGradient2858);fill-opacity:1;fill-rule:nonzero;stroke:none" />
+  </g>
+  <g
+     id="layer5">
+    <g
+       transform="translate(0,-2)"
+       id="g3745"
+       style="display:inline">
+      <rect
+         width="14"
+         height="19"
+         rx="1.8666667"
+         ry="2"
+         x="15.5"
+         y="49.5"
+         id="rect3739"
+         style="fill:none;stroke:#825023;stroke-width:1;stroke-opacity:1" />
+      <path
+         d="m 18.25,66 0,-9.25 -1.25,0 2.5,-4.75 2.5,4.75 -1.25,0 0,9.25 -2.5,0 z"
+         inkscape:connector-curvature="0"
+         id="path3741"
+         style="fill:#825023;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         d="m 24.25,66 0,-9.25 -1.25,0 2.5,-4.75 2.5,4.75 -1.25,0 0,9.25 -2.5,0 z"
+         inkscape:connector-curvature="0"
+         id="path3743"
+         style="fill:#825023;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+    </g>
+    <g
+       id="text3750"
+       style="font-size:2px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#553417;fill-opacity:1;stroke:none;display:inline;font-family:Arial Black;-inkscape-font-specification:'Arial Black, Bold'">
+      <path
+         d="m 15.148438,74.082314 1.093749,0 0,0.307617 -0.649414,0 0,0.25 0.554688,0 0,0.289062 -0.554688,0 0,0.584961 -0.444335,0 0,-1.43164"
+         inkscape:connector-curvature="0"
+         id="path3137" />
+      <path
+         d="m 17.175781,75.277626 -0.503906,0 -0.06934,0.236328 -0.452148,0 0.538086,-1.43164 0.482421,0 0.538086,1.43164 -0.46289,0 -0.07031,-0.236328 m -0.09277,-0.30957 -0.158203,-0.514649 -0.157227,0.514649 0.31543,0"
+         inkscape:connector-curvature="0"
+         id="path3139" />
+      <path
+         d="m 17.848633,74.082314 1.185547,0 0,0.305664 -0.742188,0 0,0.227539 0.688477,0 0,0.291992 -0.688477,0 0,0.282226 0.763672,0 0,0.324219 -1.207031,0 0,-1.43164"
+         inkscape:connector-curvature="0"
+         id="path3141" />
+      <path
+         d="m 19.297852,74.082314 0.413085,0 0.539063,0.791992 0,-0.791992 0.416992,0 0,1.43164 -0.416992,0 -0.536133,-0.786133 0,0.786133 -0.416015,0 0,-1.43164"
+         inkscape:connector-curvature="0"
+         id="path3143" />
+      <path
+         d="m 20.926758,74.082314 1.251953,0 0,0.286132 -0.802734,0.837891 0.832031,0 0,0.307617 -1.358399,0 0,-0.296875 0.793946,-0.829101 -0.716797,0 0,-0.305664"
+         inkscape:connector-curvature="0"
+         id="path3145" />
+      <path
+         d="m 23.289062,75.277626 -0.503906,0 -0.06934,0.236328 -0.452148,0 0.538086,-1.43164 0.482422,0 0.538086,1.43164 -0.462891,0 -0.07031,-0.236328 m -0.09277,-0.30957 -0.158203,-0.514649 -0.157227,0.514649 0.31543,0"
+         inkscape:connector-curvature="0"
+         id="path3147" />
+    </g>
+    <g
+       id="text3754"
+       style="font-size:1.5px;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:#553417;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial">
+      <path
+         d="m 15.109863,81.513954 0,-1.07373 0.14209,0 0,0.53247 0.533203,-0.53247 0.192627,0 -0.450439,0.435058 0.470215,0.638672 -0.1875,0 -0.382325,-0.543457 -0.175781,0.171387 0,0.37207 -0.14209,0"
+         inkscape:connector-curvature="0"
+         id="path3037" />
+      <path
+         d="m 16.633301,81.263466 0.13623,0.01685 c -0.02149,0.07959 -0.06128,0.141357 -0.119385,0.185302 -0.05811,0.04395 -0.132324,0.06592 -0.222656,0.06592 -0.11377,0 -0.204102,-0.03491 -0.270996,-0.104736 -0.06641,-0.07031 -0.09961,-0.168701 -0.09961,-0.295166 0,-0.130859 0.03369,-0.232421 0.101074,-0.304688 0.06738,-0.07226 0.154785,-0.108397 0.262207,-0.108398 0.104003,1e-6 0.188964,0.0354 0.254883,0.106201 0.06592,0.0708 0.09888,0.170411 0.09888,0.298828 -1e-6,0.0078 -2.45e-4,0.01953 -7.33e-4,0.03516 l -0.580078,0 c 0.0049,0.08545 0.02905,0.150879 0.07251,0.196289 0.04346,0.04541 0.09766,0.06812 0.162598,0.06812 0.04834,0 0.0896,-0.0127 0.123779,-0.03809 0.03418,-0.02539 0.06128,-0.06592 0.0813,-0.121582 m -0.432862,-0.213135 0.434327,0 c -0.0059,-0.06543 -0.02246,-0.114501 -0.0498,-0.147217 -0.04199,-0.05078 -0.09644,-0.07617 -0.16333,-0.07617 -0.06055,10e-7 -0.111573,0.02026 -0.153076,0.06079 -0.04102,0.04053 -0.06372,0.09473 -0.06812,0.162598"
+         inkscape:connector-curvature="0"
+         id="path3039" />
+      <path
+         d="m 17.468262,81.263466 0.13623,0.01685 c -0.02149,0.07959 -0.06128,0.141357 -0.119385,0.185302 -0.05811,0.04395 -0.132324,0.06592 -0.222656,0.06592 -0.11377,0 -0.204102,-0.03491 -0.270996,-0.104736 -0.06641,-0.07031 -0.09961,-0.168701 -0.09961,-0.295166 0,-0.130859 0.03369,-0.232421 0.101074,-0.304688 0.06738,-0.07226 0.154785,-0.108397 0.262207,-0.108398 0.104003,1e-6 0.188964,0.0354 0.254883,0.106201 0.06592,0.0708 0.09888,0.170411 0.09888,0.298828 -1e-6,0.0078 -2.45e-4,0.01953 -7.33e-4,0.03516 l -0.580078,0 c 0.0049,0.08545 0.02905,0.150879 0.07251,0.196289 0.04346,0.04541 0.09766,0.06812 0.162598,0.06812 0.04834,0 0.0896,-0.0127 0.123779,-0.03809 0.03418,-0.02539 0.06128,-0.06592 0.0813,-0.121582 m -0.432862,-0.213135 0.434327,0 c -0.0059,-0.06543 -0.02246,-0.114501 -0.0498,-0.147217 -0.04199,-0.05078 -0.09644,-0.07617 -0.16333,-0.07617 -0.06055,10e-7 -0.111573,0.02026 -0.153076,0.06079 -0.04102,0.04053 -0.06372,0.09473 -0.06812,0.162598"
+         inkscape:connector-curvature="0"
+         id="path3041" />
+      <path
+         d="m 17.770752,81.81205 0,-1.075928 0.120117,0 0,0.101074 c 0.02832,-0.03955 0.0603,-0.06909 0.09595,-0.08862 0.03564,-0.02002 0.07886,-0.03003 0.129639,-0.03003 0.06641,10e-7 0.125,0.01709 0.175781,0.05127 0.05078,0.03418 0.08911,0.08252 0.114991,0.145019 0.02588,0.06201 0.03882,0.130127 0.03882,0.204346 -1e-6,0.07959 -0.01441,0.151367 -0.04321,0.215332 -0.02832,0.06348 -0.06983,0.112305 -0.124512,0.146484 -0.0542,0.03369 -0.111328,0.05054 -0.171386,0.05054 -0.04395,0 -0.0835,-0.0093 -0.118653,-0.02783 -0.03467,-0.01855 -0.06323,-0.04199 -0.08569,-0.07031 l 0,0.378662 -0.131836,0 m 0.119385,-0.682617 c 0,0.100098 0.02026,0.174072 0.06079,0.221924 0.04053,0.04785 0.0896,0.07178 0.147217,0.07178 0.05859,0 0.108642,-0.02466 0.150146,-0.07398 0.04199,-0.0498 0.06299,-0.126708 0.06299,-0.230713 0,-0.09912 -0.02051,-0.173339 -0.06152,-0.222656 -0.04053,-0.04932 -0.08911,-0.07397 -0.145752,-0.07398 -0.05615,10e-7 -0.105957,0.02637 -0.149414,0.0791 -0.04297,0.05225 -0.06445,0.128419 -0.06445,0.228516"
+         inkscape:connector-curvature="0"
+         id="path3043" />
+      <path
+         d="m 19.022461,80.591835 0,-0.151611 0.131836,0 0,0.151611 -0.131836,0 m 0,0.922119 0,-0.777832 0.131836,0 0,0.777832 -0.131836,0"
+         inkscape:connector-curvature="0"
+         id="path3045" />
+      <path
+         d="m 19.355713,81.513954 0,-0.777832 0.118652,0 0,0.110596 c 0.05713,-0.08545 0.139648,-0.128173 0.247559,-0.128174 0.04687,1e-6 0.08984,0.0085 0.128906,0.02564 0.03955,0.0166 0.06909,0.03857 0.08862,0.06592 0.01953,0.02734 0.0332,0.05982 0.04102,0.09741 0.0049,0.02441 0.0073,0.06714 0.0073,0.128174 l 0,0.478271 -0.131836,0 0,-0.473144 c -1e-6,-0.05371 -0.0051,-0.09375 -0.01538,-0.120118 -0.01025,-0.02685 -0.02857,-0.0481 -0.05493,-0.06372 -0.02588,-0.01611 -0.0564,-0.02417 -0.09155,-0.02417 -0.05615,0 -0.104737,0.01782 -0.145752,0.05347 -0.04053,0.03565 -0.06079,0.103272 -0.06079,0.20288 l 0,0.424805 -0.131836,0"
+         inkscape:connector-curvature="0"
+         id="path3047" />
+      <path
+         d="m 21.114258,81.418007 c -0.04883,0.0415 -0.09595,0.0708 -0.141358,0.08789 -0.04492,0.01709 -0.09326,0.02563 -0.145019,0.02563 -0.08545,0 -0.151123,-0.02075 -0.197022,-0.06226 -0.0459,-0.04199 -0.06885,-0.09546 -0.06885,-0.1604 0,-0.03809 0.0085,-0.07275 0.02563,-0.104004 0.01758,-0.03174 0.04028,-0.05713 0.06812,-0.07617 0.02832,-0.01904 0.06006,-0.03345 0.09521,-0.04321 0.02588,-0.0068 0.06494,-0.01343 0.117187,-0.01977 0.106445,-0.0127 0.184814,-0.02783 0.235107,-0.04541 4.88e-4,-0.01807 7.32e-4,-0.02954 7.33e-4,-0.03442 -10e-7,-0.05371 -0.01245,-0.09155 -0.03735,-0.113525 -0.03369,-0.02979 -0.08374,-0.04468 -0.150146,-0.04468 -0.06201,10e-7 -0.107911,0.01099 -0.137695,0.03296 -0.0293,0.02148 -0.05103,0.05982 -0.06519,0.11499 l -0.128906,-0.01758 c 0.01172,-0.05517 0.03101,-0.09961 0.05786,-0.133301 0.02686,-0.03418 0.06567,-0.0603 0.116455,-0.07837 0.05078,-0.01855 0.109619,-0.02783 0.176514,-0.02783 0.06641,10e-7 0.120361,0.0078 0.161865,0.02344 0.0415,0.01563 0.07202,0.0354 0.09155,0.05933 0.01953,0.02344 0.0332,0.05322 0.04102,0.08935 0.0044,0.02246 0.0066,0.06299 0.0066,0.121582 l 0,0.175781 c 0,0.122559 0.0027,0.200196 0.0081,0.232911 0.0059,0.03223 0.01709,0.06323 0.03369,0.09302 l -0.137695,0 c -0.01367,-0.02734 -0.02246,-0.05933 -0.02637,-0.09595 m -0.01099,-0.294434 c -0.04785,0.01953 -0.119629,0.03613 -0.215332,0.04981 -0.0542,0.0078 -0.09253,0.0166 -0.11499,0.02637 -0.02246,0.0098 -0.0398,0.02417 -0.052,0.04321 -0.01221,0.01855 -0.01831,0.03931 -0.01831,0.06226 0,0.03516 0.01318,0.06445 0.03955,0.08789 0.02686,0.02344 0.06592,0.03516 0.117188,0.03516 0.05078,0 0.09595,-0.01099 0.135498,-0.03296 0.03955,-0.02246 0.0686,-0.05298 0.08716,-0.09155 0.01416,-0.02978 0.02124,-0.07373 0.02124,-0.131836 l 0,-0.04834"
+         inkscape:connector-curvature="0"
+         id="path3049" />
+      <path
+         d="m 21.804932,81.281776 0.130371,-0.02051 c 0.0073,0.05225 0.02759,0.09229 0.06079,0.120117 0.03369,0.02783 0.08057,0.04175 0.140625,0.04175 0.06055,0 0.105468,-0.01221 0.134765,-0.03662 0.0293,-0.0249 0.04395,-0.05395 0.04395,-0.08716 -10e-7,-0.02979 -0.01294,-0.05322 -0.03882,-0.07031 -0.01807,-0.01172 -0.06299,-0.02661 -0.134765,-0.04468 -0.09668,-0.02441 -0.163819,-0.04541 -0.201416,-0.06299 -0.03711,-0.01807 -0.06543,-0.04272 -0.08496,-0.07398 -0.01904,-0.03174 -0.02857,-0.06665 -0.02857,-0.104736 0,-0.03467 0.0078,-0.06665 0.02344,-0.09595 0.01611,-0.02978 0.03784,-0.05444 0.06518,-0.07397 0.02051,-0.01514 0.04834,-0.02783 0.0835,-0.03809 0.03564,-0.01074 0.07373,-0.01611 0.114258,-0.01611 0.06104,10e-7 0.114502,0.0088 0.160401,0.02637 0.04639,0.01758 0.08057,0.04151 0.102539,0.07178 0.02197,0.02979 0.03711,0.06982 0.04541,0.120117 l -0.128906,0.01758 c -0.0059,-0.04004 -0.02295,-0.07129 -0.05127,-0.09375 -0.02783,-0.02246 -0.06738,-0.03369 -0.118652,-0.03369 -0.06055,10e-7 -0.10376,0.01001 -0.129639,0.03003 -0.02588,0.02002 -0.03882,0.04346 -0.03882,0.07031 0,0.01709 0.0054,0.03247 0.01611,0.04614 0.01074,0.01416 0.02759,0.02588 0.05054,0.03516 0.01318,0.0049 0.052,0.01611 0.116455,0.03369 0.09326,0.0249 0.158203,0.04541 0.194824,0.06152 0.03711,0.01563 0.06616,0.03858 0.08716,0.06885 0.021,0.03027 0.03149,0.06787 0.03149,0.112793 -10e-7,0.04395 -0.01294,0.08545 -0.03882,0.124511 -0.02539,0.03858 -0.06226,0.0686 -0.110595,0.09009 -0.04834,0.021 -0.103028,0.03149 -0.164063,0.03149 -0.101074,0 -0.178223,-0.021 -0.231445,-0.06299 -0.05274,-0.04199 -0.08643,-0.104248 -0.101074,-0.186768"
+         inkscape:connector-curvature="0"
+         id="path3051" />
+      <path
+         d="m 23.115234,81.418007 c -0.04883,0.0415 -0.09595,0.0708 -0.141357,0.08789 -0.04492,0.01709 -0.09326,0.02563 -0.14502,0.02563 -0.08545,0 -0.151123,-0.02075 -0.197021,-0.06226 -0.0459,-0.04199 -0.06885,-0.09546 -0.06885,-0.1604 0,-0.03809 0.0085,-0.07275 0.02563,-0.104004 0.01758,-0.03174 0.04028,-0.05713 0.06812,-0.07617 0.02832,-0.01904 0.06006,-0.03345 0.09521,-0.04321 0.02588,-0.0068 0.06494,-0.01343 0.117188,-0.01977 0.106444,-0.0127 0.184814,-0.02783 0.235107,-0.04541 4.88e-4,-0.01807 7.32e-4,-0.02954 7.32e-4,-0.03442 0,-0.05371 -0.01245,-0.09155 -0.03735,-0.113525 -0.03369,-0.02979 -0.08374,-0.04468 -0.150147,-0.04468 -0.06201,10e-7 -0.10791,0.01099 -0.137695,0.03296 -0.0293,0.02148 -0.05102,0.05982 -0.06518,0.11499 l -0.128907,-0.01758 c 0.01172,-0.05517 0.03101,-0.09961 0.05786,-0.133301 0.02686,-0.03418 0.06567,-0.0603 0.116455,-0.07837 0.05078,-0.01855 0.109619,-0.02783 0.176513,-0.02783 0.06641,10e-7 0.120361,0.0078 0.161866,0.02344 0.0415,0.01563 0.07202,0.0354 0.09155,0.05933 0.01953,0.02344 0.0332,0.05322 0.04102,0.08935 0.0044,0.02246 0.0066,0.06299 0.0066,0.121582 l 0,0.175781 c -1e-6,0.122559 0.0027,0.200196 0.0081,0.232911 0.0059,0.03223 0.01709,0.06323 0.03369,0.09302 l -0.137695,0 c -0.01367,-0.02734 -0.02246,-0.05933 -0.02637,-0.09595 m -0.01099,-0.294434 c -0.04785,0.01953 -0.119629,0.03613 -0.215332,0.04981 -0.0542,0.0078 -0.09253,0.0166 -0.11499,0.02637 -0.02246,0.0098 -0.03979,0.02417 -0.052,0.04321 -0.01221,0.01855 -0.01831,0.03931 -0.01831,0.06226 0,0.03516 0.01318,0.06445 0.03955,0.08789 0.02686,0.02344 0.06592,0.03516 0.117188,0.03516 0.05078,0 0.09595,-0.01099 0.135498,-0.03296 0.03955,-0.02246 0.0686,-0.05298 0.08716,-0.09155 0.01416,-0.02978 0.02124,-0.07373 0.02124,-0.131836 l 0,-0.04834"
+         inkscape:connector-curvature="0"
+         id="path3053" />
+      <path
+         d="m 23.474121,81.513954 0,-0.675293 -0.116455,0 0,-0.102539 0.116455,0 0,-0.08276 c 0,-0.05224 0.0046,-0.09106 0.01392,-0.116455 0.0127,-0.03418 0.03491,-0.06177 0.06665,-0.08276 0.03223,-0.02148 0.07715,-0.03223 0.134766,-0.03223 0.03711,1e-6 0.07813,0.0044 0.123047,0.01318 l -0.01977,0.11499 c -0.02735,-0.0049 -0.05322,-0.0073 -0.07764,-0.0073 -0.04004,10e-7 -0.06836,0.0085 -0.08496,0.02564 -0.0166,0.01709 -0.0249,0.04907 -0.0249,0.09595 l 0,0.07178 0.151611,0 0,0.102539 -0.151611,0 0,0.675293 -0.131104,0"
+         inkscape:connector-curvature="0"
+         id="path3055" />
+      <path
+         d="m 24.391113,81.263466 0.136231,0.01685 c -0.02148,0.07959 -0.06128,0.141357 -0.119385,0.185302 -0.05811,0.04395 -0.132325,0.06592 -0.222656,0.06592 -0.11377,0 -0.204102,-0.03491 -0.270996,-0.104736 -0.06641,-0.07031 -0.09961,-0.168701 -0.09961,-0.295166 0,-0.130859 0.03369,-0.232421 0.101074,-0.304688 0.06738,-0.07226 0.154785,-0.108397 0.262208,-0.108398 0.104003,1e-6 0.188964,0.0354 0.254882,0.106201 0.06592,0.0708 0.09888,0.170411 0.09888,0.298828 0,0.0078 -2.45e-4,0.01953 -7.32e-4,0.03516 l -0.580078,0 c 0.0049,0.08545 0.02905,0.150879 0.07251,0.196289 0.04346,0.04541 0.09766,0.06812 0.162598,0.06812 0.04834,0 0.0896,-0.0127 0.123779,-0.03809 0.03418,-0.02539 0.06128,-0.06592 0.0813,-0.121582 m -0.432861,-0.213135 0.434326,0 c -0.0059,-0.06543 -0.02246,-0.114501 -0.0498,-0.147217 -0.04199,-0.05078 -0.09644,-0.07617 -0.16333,-0.07617 -0.06055,10e-7 -0.111572,0.02026 -0.153076,0.06079 -0.04102,0.04053 -0.06372,0.09473 -0.06811,0.162598"
+         inkscape:connector-curvature="0"
+         id="path3057" />
+      <path
+         d="m 25.109619,81.81205 0,-1.075928 0.120117,0 0,0.101074 c 0.02832,-0.03955 0.0603,-0.06909 0.09595,-0.08862 0.03564,-0.02002 0.07886,-0.03003 0.129638,-0.03003 0.06641,10e-7 0.125,0.01709 0.175782,0.05127 0.05078,0.03418 0.08911,0.08252 0.11499,0.145019 0.02588,0.06201 0.03882,0.130127 0.03882,0.204346 -10e-7,0.07959 -0.01441,0.151367 -0.04321,0.215332 -0.02832,0.06348 -0.06983,0.112305 -0.124512,0.146484 -0.0542,0.03369 -0.111328,0.05054 -0.171386,0.05054 -0.04395,0 -0.0835,-0.0093 -0.118653,-0.02783 -0.03467,-0.01855 -0.06323,-0.04199 -0.08569,-0.07031 l 0,0.378662 -0.131836,0 m 0.119385,-0.682617 c 0,0.100098 0.02026,0.174072 0.06079,0.221924 0.04053,0.04785 0.0896,0.07178 0.147217,0.07178 0.05859,0 0.108642,-0.02466 0.150146,-0.07398 0.04199,-0.0498 0.06299,-0.126708 0.06299,-0.230713 0,-0.09912 -0.02051,-0.173339 -0.06152,-0.222656 -0.04053,-0.04932 -0.08911,-0.07397 -0.145752,-0.07398 -0.05615,10e-7 -0.105957,0.02637 -0.149414,0.0791 -0.04297,0.05225 -0.06445,0.128419 -0.06445,0.228516"
+         inkscape:connector-curvature="0"
+         id="path3059" />
+      <path
+         d="m 25.94165,81.513954 0,-1.07373 0.131836,0 0,1.07373 -0.131836,0"
+         inkscape:connector-curvature="0"
+         id="path3061" />
+      <path
+         d="m 26.786133,81.418007 c -0.04883,0.0415 -0.09595,0.0708 -0.141358,0.08789 -0.04492,0.01709 -0.09326,0.02563 -0.145019,0.02563 -0.08545,0 -0.151123,-0.02075 -0.197022,-0.06226 -0.0459,-0.04199 -0.06885,-0.09546 -0.06885,-0.1604 0,-0.03809 0.0085,-0.07275 0.02563,-0.104004 0.01758,-0.03174 0.04028,-0.05713 0.06812,-0.07617 0.02832,-0.01904 0.06006,-0.03345 0.09521,-0.04321 0.02588,-0.0068 0.06494,-0.01343 0.117187,-0.01977 0.106445,-0.0127 0.184814,-0.02783 0.235107,-0.04541 4.88e-4,-0.01807 7.32e-4,-0.02954 7.33e-4,-0.03442 -10e-7,-0.05371 -0.01245,-0.09155 -0.03735,-0.113525 -0.03369,-0.02979 -0.08374,-0.04468 -0.150146,-0.04468 -0.06201,10e-7 -0.107911,0.01099 -0.137695,0.03296 -0.0293,0.02148 -0.05103,0.05982 -0.06519,0.11499 l -0.128906,-0.01758 c 0.01172,-0.05517 0.03101,-0.09961 0.05786,-0.133301 0.02686,-0.03418 0.06567,-0.0603 0.116455,-0.07837 0.05078,-0.01855 0.109619,-0.02783 0.176514,-0.02783 0.06641,10e-7 0.120361,0.0078 0.161865,0.02344 0.0415,0.01563 0.07202,0.0354 0.09155,0.05933 0.01953,0.02344 0.0332,0.05322 0.04102,0.08935 0.0044,0.02246 0.0066,0.06299 0.0066,0.121582 l 0,0.175781 c 0,0.122559 0.0027,0.200196 0.0081,0.232911 0.0059,0.03223 0.01709,0.06323 0.03369,0.09302 l -0.137695,0 c -0.01367,-0.02734 -0.02246,-0.05933 -0.02637,-0.09595 m -0.01099,-0.294434 c -0.04785,0.01953 -0.119629,0.03613 -0.215332,0.04981 -0.0542,0.0078 -0.09253,0.0166 -0.11499,0.02637 -0.02246,0.0098 -0.0398,0.02417 -0.052,0.04321 -0.01221,0.01855 -0.01831,0.03931 -0.01831,0.06226 0,0.03516 0.01318,0.06445 0.03955,0.08789 0.02686,0.02344 0.06592,0.03516 0.117188,0.03516 0.05078,0 0.09595,-0.01099 0.135498,-0.03296 0.03955,-0.02246 0.0686,-0.05298 0.08716,-0.09155 0.01416,-0.02978 0.02124,-0.07373 0.02124,-0.131836 l 0,-0.04834"
+         inkscape:connector-curvature="0"
+         id="path3063" />
+      <path
+         d="m 27.621094,81.229042 0.129638,0.01685 c -0.01416,0.08936 -0.05054,0.159424 -0.10913,0.210205 -0.05811,0.05029 -0.12964,0.07544 -0.2146,0.07544 -0.106446,0 -0.192139,-0.03467 -0.25708,-0.104004 -0.06445,-0.06982 -0.09668,-0.169677 -0.09668,-0.29956 0,-0.08398 0.01392,-0.15747 0.04175,-0.220459 0.02783,-0.06299 0.07007,-0.110107 0.126709,-0.141358 0.05713,-0.03174 0.11914,-0.04761 0.186035,-0.04761 0.08447,10e-7 0.153564,0.02149 0.207276,0.06445 0.05371,0.04248 0.08813,0.103028 0.103271,0.181641 l -0.128174,0.01978 c -0.01221,-0.05224 -0.03394,-0.09155 -0.06518,-0.11792 -0.03076,-0.02637 -0.06812,-0.03955 -0.112061,-0.03955 -0.06641,10e-7 -0.120361,0.02393 -0.161865,0.07178 -0.0415,0.04736 -0.06226,0.122559 -0.06226,0.225586 0,0.104492 0.02002,0.18042 0.06006,0.227783 0.04004,0.04736 0.09229,0.07104 0.156738,0.07104 0.05176,0 0.09497,-0.01587 0.129639,-0.04761 0.03467,-0.03174 0.05664,-0.08057 0.06592,-0.146484"
+         inkscape:connector-curvature="0"
+         id="path3065" />
+      <path
+         d="m 28.395996,81.263466 0.136231,0.01685 c -0.02149,0.07959 -0.06128,0.141357 -0.119385,0.185302 -0.05811,0.04395 -0.132325,0.06592 -0.222656,0.06592 -0.11377,0 -0.204102,-0.03491 -0.270997,-0.104736 -0.06641,-0.07031 -0.09961,-0.168701 -0.09961,-0.295166 0,-0.130859 0.03369,-0.232421 0.101074,-0.304688 0.06738,-0.07226 0.154785,-0.108397 0.262207,-0.108398 0.104004,1e-6 0.188965,0.0354 0.254883,0.106201 0.06592,0.0708 0.09888,0.170411 0.09888,0.298828 -10e-7,0.0078 -2.45e-4,0.01953 -7.32e-4,0.03516 l -0.580078,0 c 0.0049,0.08545 0.02905,0.150879 0.07251,0.196289 0.04346,0.04541 0.09766,0.06812 0.162598,0.06812 0.04834,0 0.0896,-0.0127 0.123779,-0.03809 0.03418,-0.02539 0.06128,-0.06592 0.0813,-0.121582 m -0.432861,-0.213135 0.434326,0 c -0.0059,-0.06543 -0.02246,-0.114501 -0.0498,-0.147217 -0.04199,-0.05078 -0.09644,-0.07617 -0.16333,-0.07617 -0.06055,10e-7 -0.111572,0.02026 -0.153076,0.06079 -0.04102,0.04053 -0.06372,0.09473 -0.06811,0.162598"
+         inkscape:connector-curvature="0"
+         id="path3067" />
+      <path
+         d="m 16.077393,83.388954 -0.23584,0 -0.09375,-0.243896 -0.429199,0 -0.08862,0.243896 -0.22998,0 0.418213,-1.07373 0.229248,0 0.429932,1.07373 m -0.39917,-0.424805 -0.14795,-0.398437 -0.145019,0.398437 0.292969,0"
+         inkscape:connector-curvature="0"
+         id="path3069"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 16.905029,83.388954 -0.191162,0 0,-0.114258 c -0.03174,0.04443 -0.06934,0.07764 -0.112793,0.09961 -0.04297,0.02148 -0.08643,0.03223 -0.130371,0.03223 -0.08936,0 -0.166016,-0.03589 -0.22998,-0.107666 -0.06348,-0.07227 -0.09521,-0.172851 -0.09521,-0.301758 0,-0.131835 0.03101,-0.231933 0.09302,-0.300293 0.06201,-0.06885 0.140381,-0.10327 0.235108,-0.103271 0.08691,10e-7 0.162109,0.03613 0.225586,0.108398 l 0,-0.386718 0.20581,0 0,1.07373 m -0.549316,-0.405762 c 0,0.08301 0.01147,0.143067 0.03442,0.180176 0.0332,0.05371 0.07959,0.08057 0.13916,0.08057 0.04736,0 0.08765,-0.02002 0.120849,-0.06006 0.0332,-0.04053 0.0498,-0.10083 0.0498,-0.180908 0,-0.08935 -0.01611,-0.153564 -0.04834,-0.192627 -0.03223,-0.03955 -0.07349,-0.05933 -0.123779,-0.05933 -0.04883,0 -0.08984,0.01953 -0.123047,0.05859 -0.03271,0.03858 -0.04907,0.09644 -0.04907,0.173584"
+         inkscape:connector-curvature="0"
+         id="path3071"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 17.093262,82.611122 0.189697,0 0,0.106201 c 0.06787,-0.08252 0.148681,-0.123778 0.242432,-0.123779 0.0498,1e-6 0.09302,0.01026 0.129638,0.03076 0.03662,0.02051 0.06665,0.05151 0.09009,0.09302 0.03418,-0.0415 0.07104,-0.07251 0.110596,-0.09302 0.03955,-0.02051 0.08179,-0.03076 0.126709,-0.03076 0.05713,1e-6 0.105468,0.01172 0.145019,0.03516 0.03955,0.02295 0.06909,0.05689 0.08862,0.101807 0.01416,0.0332 0.02124,0.08691 0.02124,0.161133 l 0,0.497314 -0.205811,0 0,-0.44458 c -1e-6,-0.07715 -0.0071,-0.126952 -0.02124,-0.149414 -0.01904,-0.0293 -0.04834,-0.04395 -0.08789,-0.04395 -0.02881,0 -0.05591,0.0088 -0.0813,0.02637 -0.02539,0.01758 -0.0437,0.04346 -0.05493,0.07764 -0.01123,0.03369 -0.01685,0.08716 -0.01685,0.1604 l 0,0.373535 -0.20581,0 0,-0.426269 c -1e-6,-0.07568 -0.0037,-0.124512 -0.01099,-0.146485 -0.0073,-0.02197 -0.0188,-0.03833 -0.03442,-0.04907 -0.01514,-0.01074 -0.03589,-0.01611 -0.06226,-0.01611 -0.03174,0 -0.0603,0.0085 -0.08569,0.02563 -0.02539,0.01709 -0.0437,0.04175 -0.05493,0.07397 -0.01074,0.03223 -0.01611,0.08569 -0.01611,0.1604 l 0,0.37793 -0.20581,0 0,-0.777832"
+         inkscape:connector-curvature="0"
+         id="path3073"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 18.44165,82.505653 0,-0.190429 0.205811,0 0,0.190429 -0.205811,0 m 0,0.883301 0,-0.777832 0.205811,0 0,0.777832 -0.205811,0"
+         inkscape:connector-curvature="0"
+         id="path3075"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 19.565186,83.388954 -0.205811,0 0,-0.396972 c -1e-6,-0.08398 -0.0044,-0.138184 -0.01318,-0.162598 -0.0088,-0.0249 -0.02319,-0.04419 -0.04321,-0.05786 -0.01953,-0.01367 -0.04321,-0.02051 -0.07105,-0.02051 -0.03564,0 -0.06763,0.0098 -0.09595,0.0293 -0.02832,0.01953 -0.04785,0.04541 -0.05859,0.07764 -0.01026,0.03223 -0.01538,0.0918 -0.01538,0.178711 l 0,0.352295 -0.205811,0 0,-0.777832 0.191162,0 0,0.114258 c 0.06787,-0.08789 0.15332,-0.131835 0.256348,-0.131836 0.04541,1e-6 0.08691,0.0083 0.124512,0.0249 0.0376,0.01611 0.06592,0.03687 0.08496,0.06226 0.01953,0.02539 0.03296,0.0542 0.04028,0.08643 0.0078,0.03223 0.01172,0.07837 0.01172,0.138428 l 0,0.483398"
+         inkscape:connector-curvature="0"
+         id="path3077"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 19.774658,82.505653 0,-0.190429 0.205811,0 0,0.190429 -0.205811,0 m 0,0.883301 0,-0.777832 0.205811,0 0,0.777832 -0.205811,0"
+         inkscape:connector-curvature="0"
+         id="path3079"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 20.118164,83.16703 0.206543,-0.03149 c 0.0088,0.04004 0.02661,0.07056 0.05347,0.09155 0.02685,0.02051 0.06445,0.03076 0.112793,0.03076 0.05322,0 0.09326,-0.0098 0.120117,-0.0293 0.01807,-0.01367 0.0271,-0.03198 0.0271,-0.05493 -10e-7,-0.01563 -0.0049,-0.02856 -0.01465,-0.03882 -0.01025,-0.0098 -0.0332,-0.0188 -0.06885,-0.0271 -0.166015,-0.03662 -0.27124,-0.07007 -0.315673,-0.100342 -0.06152,-0.04199 -0.09229,-0.100341 -0.09229,-0.175048 -10e-7,-0.06738 0.02661,-0.124023 0.07983,-0.169922 0.05322,-0.0459 0.135742,-0.06885 0.247559,-0.06885 0.106445,1e-6 0.185546,0.01734 0.237305,0.052 0.05176,0.03467 0.0874,0.08594 0.106933,0.153809 l -0.194091,0.03589 c -0.0083,-0.03027 -0.02417,-0.05347 -0.04761,-0.06958 -0.02295,-0.01611 -0.05591,-0.02417 -0.09888,-0.02417 -0.0542,10e-7 -0.09302,0.0076 -0.116455,0.0227 -0.01563,0.01074 -0.02344,0.02466 -0.02344,0.04175 -1e-6,0.01465 0.0068,0.0271 0.02051,0.03735 0.01855,0.01367 0.08252,0.03296 0.191895,0.05786 0.109863,0.0249 0.186523,0.05542 0.22998,0.09155 0.04297,0.03662 0.06445,0.08765 0.06445,0.153076 -10e-7,0.07129 -0.02979,0.132569 -0.08936,0.183838 -0.05957,0.05127 -0.147706,0.0769 -0.264404,0.0769 -0.105958,0 -0.189942,-0.02148 -0.251953,-0.06445 -0.06152,-0.04297 -0.101807,-0.101318 -0.12085,-0.175049"
+         inkscape:connector-curvature="0"
+         id="path3081"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 21.382324,82.611122 0,0.164063 -0.140625,0 0,0.313476 c 0,0.06348 0.0012,0.100586 0.0037,0.111328 0.0029,0.01025 0.009,0.0188 0.01831,0.02563 0.0098,0.0068 0.02148,0.01025 0.03516,0.01025 0.01904,0 0.04663,-0.0066 0.08276,-0.01977 l 0.01758,0.159668 c -0.04785,0.02051 -0.102051,0.03076 -0.162598,0.03076 -0.03711,0 -0.07056,-0.0061 -0.100342,-0.01831 -0.02979,-0.0127 -0.05176,-0.02881 -0.06592,-0.04834 -0.01367,-0.02002 -0.02319,-0.04687 -0.02856,-0.08057 -0.0044,-0.02393 -0.0066,-0.07227 -0.0066,-0.145019 l 0,-0.339111 -0.09448,0 0,-0.164063 0.09448,0 0,-0.154541 0.206543,-0.120117 0,0.274658 0.140625,0"
+         inkscape:connector-curvature="0"
+         id="path3083"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 21.723633,83.388954 -0.205811,0 0,-0.777832 0.191162,0 0,0.110596 c 0.03271,-0.05225 0.06201,-0.08667 0.08789,-0.103272 0.02637,-0.0166 0.05615,-0.0249 0.08936,-0.0249 0.04687,10e-7 0.09204,0.01294 0.135499,0.03882 l -0.06372,0.179444 c -0.03467,-0.02246 -0.06689,-0.03369 -0.09668,-0.03369 -0.02881,10e-7 -0.05322,0.0081 -0.07324,0.02417 -0.02002,0.01563 -0.03589,0.04419 -0.04761,0.08569 -0.01123,0.0415 -0.01685,0.128418 -0.01685,0.260742 l 0,0.240234"
+         inkscape:connector-curvature="0"
+         id="path3085"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 22.263428,82.848427 -0.186768,-0.03369 c 0.021,-0.07519 0.05713,-0.130858 0.108399,-0.166992 0.05127,-0.03613 0.127441,-0.0542 0.228515,-0.0542 0.0918,10e-7 0.160156,0.01099 0.205078,0.03296 0.04492,0.02148 0.07642,0.04907 0.09448,0.08276 0.01855,0.0332 0.02783,0.09448 0.02783,0.183838 l -0.0022,0.240234 c -1e-6,0.06836 0.0032,0.118897 0.0095,0.151611 0.0068,0.03223 0.01929,0.0669 0.03735,0.104004 l -0.203614,0 c -0.0054,-0.01367 -0.01196,-0.03393 -0.01977,-0.06079 -0.0034,-0.01221 -0.0059,-0.02026 -0.0073,-0.02417 -0.03516,0.03418 -0.07276,0.05982 -0.112793,0.0769 -0.04004,0.01709 -0.08276,0.02563 -0.128174,0.02563 -0.08008,0 -0.143311,-0.02173 -0.189697,-0.06518 -0.0459,-0.04346 -0.06885,-0.09839 -0.06885,-0.164795 0,-0.04395 0.0105,-0.08301 0.03149,-0.117188 0.021,-0.03467 0.05029,-0.06103 0.08789,-0.0791 0.03809,-0.01855 0.09277,-0.03467 0.164062,-0.04834 0.09619,-0.01807 0.162841,-0.03491 0.199951,-0.05054 l 0,-0.02051 c 0,-0.03955 -0.0098,-0.06763 -0.0293,-0.08423 -0.01953,-0.01709 -0.0564,-0.02563 -0.110595,-0.02563 -0.03662,0 -0.06519,0.0073 -0.08569,0.02197 -0.02051,0.01416 -0.03711,0.03931 -0.0498,0.07544 m 0.27539,0.166992 c -0.02637,0.0088 -0.06811,0.01929 -0.125244,0.03149 -0.05713,0.01221 -0.09448,0.02417 -0.11206,0.03589 -0.02686,0.01904 -0.04028,0.04321 -0.04028,0.07251 0,0.02881 0.01074,0.05371 0.03223,0.07471 0.02148,0.021 0.04883,0.03149 0.08203,0.03149 0.03711,0 0.07251,-0.01221 0.106201,-0.03662 0.0249,-0.01855 0.04126,-0.04126 0.04907,-0.06812 0.0054,-0.01758 0.0081,-0.05102 0.0081,-0.100341 l 0,-0.04102"
+         inkscape:connector-curvature="0"
+         id="path3087"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 23.30127,82.611122 0,0.164063 -0.140625,0 0,0.313476 c -10e-7,0.06348 0.0012,0.100586 0.0037,0.111328 0.0029,0.01025 0.009,0.0188 0.01831,0.02563 0.0098,0.0068 0.02148,0.01025 0.03516,0.01025 0.01904,0 0.04663,-0.0066 0.08276,-0.01977 l 0.01758,0.159668 c -0.04785,0.02051 -0.102051,0.03076 -0.162597,0.03076 -0.03711,0 -0.07056,-0.0061 -0.100342,-0.01831 -0.02979,-0.0127 -0.05176,-0.02881 -0.06592,-0.04834 -0.01367,-0.02002 -0.02319,-0.04687 -0.02857,-0.08057 -0.0044,-0.02393 -0.0066,-0.07227 -0.0066,-0.145019 l 0,-0.339111 -0.09448,0 0,-0.164063 0.09448,0 0,-0.154541 0.206543,-0.120117 0,0.274658 0.140625,0"
+         inkscape:connector-curvature="0"
+         id="path3089"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 23.397949,82.989052 c 0,-0.06836 0.01685,-0.134521 0.05054,-0.198487 0.03369,-0.06396 0.0813,-0.112792 0.142823,-0.146484 0.06201,-0.03369 0.131103,-0.05054 0.207275,-0.05054 0.117675,10e-7 0.214111,0.03833 0.289307,0.11499 0.07519,0.07617 0.112792,0.172608 0.112793,0.289307 -10e-7,0.117676 -0.03809,0.215332 -0.114258,0.292969 -0.07568,0.07715 -0.171143,0.115722 -0.286377,0.115722 -0.07129,0 -0.139405,-0.01611 -0.204346,-0.04834 -0.06445,-0.03223 -0.113525,-0.07935 -0.147217,-0.141357 -0.03369,-0.0625 -0.05054,-0.138427 -0.05054,-0.227783 m 0.210938,0.01099 c -1e-6,0.07715 0.01831,0.136231 0.05493,0.177246 0.03662,0.04102 0.08179,0.06152 0.135498,0.06152 0.05371,0 0.09863,-0.02051 0.134766,-0.06152 0.03662,-0.04102 0.05493,-0.100585 0.05493,-0.178711 -1e-6,-0.07617 -0.01831,-0.134765 -0.05493,-0.175781 -0.03613,-0.04102 -0.08105,-0.06152 -0.134766,-0.06152 -0.05371,0 -0.09888,0.02051 -0.135498,0.06152 -0.03662,0.04102 -0.05493,0.100098 -0.05493,0.177246"
+         inkscape:connector-curvature="0"
+         id="path3091"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 24.55957,83.388954 -0.20581,0 0,-0.777832 0.191162,0 0,0.110596 c 0.03271,-0.05225 0.06201,-0.08667 0.08789,-0.103272 0.02637,-0.0166 0.05615,-0.0249 0.08936,-0.0249 0.04687,10e-7 0.09204,0.01294 0.135498,0.03882 l -0.06372,0.179444 c -0.03467,-0.02246 -0.0669,-0.03369 -0.09668,-0.03369 -0.02881,10e-7 -0.05322,0.0081 -0.07324,0.02417 -0.02002,0.01563 -0.03589,0.04419 -0.04761,0.08569 -0.01123,0.0415 -0.01685,0.128418 -0.01685,0.260742 l 0,0.240234"
+         inkscape:connector-curvature="0"
+         id="path3093"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 24.873047,83.16703 0.206543,-0.03149 c 0.0088,0.04004 0.02661,0.07056 0.05347,0.09155 0.02685,0.02051 0.06445,0.03076 0.112793,0.03076 0.05322,0 0.09326,-0.0098 0.120117,-0.0293 0.01807,-0.01367 0.0271,-0.03198 0.0271,-0.05493 0,-0.01563 -0.0049,-0.02856 -0.01465,-0.03882 -0.01025,-0.0098 -0.0332,-0.0188 -0.06885,-0.0271 -0.166016,-0.03662 -0.27124,-0.07007 -0.315674,-0.100342 -0.06152,-0.04199 -0.09229,-0.100341 -0.09229,-0.175048 0,-0.06738 0.02661,-0.124023 0.07983,-0.169922 0.05322,-0.0459 0.135742,-0.06885 0.247559,-0.06885 0.106445,1e-6 0.185546,0.01734 0.237305,0.052 0.05176,0.03467 0.0874,0.08594 0.106933,0.153809 l -0.194092,0.03589 c -0.0083,-0.03027 -0.02417,-0.05347 -0.04761,-0.06958 -0.02295,-0.01611 -0.05591,-0.02417 -0.09888,-0.02417 -0.0542,10e-7 -0.09302,0.0076 -0.116455,0.0227 -0.01563,0.01074 -0.02344,0.02466 -0.02344,0.04175 0,0.01465 0.0068,0.0271 0.02051,0.03735 0.01855,0.01367 0.08252,0.03296 0.191895,0.05786 0.109862,0.0249 0.186523,0.05542 0.22998,0.09155 0.04297,0.03662 0.06445,0.08765 0.06445,0.153076 0,0.07129 -0.02979,0.132569 -0.08936,0.183838 -0.05957,0.05127 -0.147706,0.0769 -0.264404,0.0769 -0.105958,0 -0.189942,-0.02148 -0.251954,-0.06445 -0.06152,-0.04297 -0.101806,-0.101318 -0.120849,-0.175049"
+         inkscape:connector-curvature="0"
+         id="path3095"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 26.148926,82.989052 c 0,-0.06836 0.01685,-0.134521 0.05054,-0.198487 0.03369,-0.06396 0.0813,-0.112792 0.142822,-0.146484 0.06201,-0.03369 0.131103,-0.05054 0.207276,-0.05054 0.117675,10e-7 0.21411,0.03833 0.289306,0.11499 0.0752,0.07617 0.112792,0.172608 0.112793,0.289307 -1e-6,0.117676 -0.03809,0.215332 -0.114258,0.292969 -0.07568,0.07715 -0.171143,0.115722 -0.286377,0.115722 -0.07129,0 -0.139404,-0.01611 -0.204345,-0.04834 -0.06445,-0.03223 -0.113526,-0.07935 -0.147217,-0.141357 -0.03369,-0.0625 -0.05054,-0.138427 -0.05054,-0.227783 m 0.210937,0.01099 c 0,0.07715 0.01831,0.136231 0.05493,0.177246 0.03662,0.04102 0.08179,0.06152 0.135498,0.06152 0.05371,0 0.09863,-0.02051 0.134766,-0.06152 0.03662,-0.04102 0.05493,-0.100585 0.05493,-0.178711 0,-0.07617 -0.01831,-0.134765 -0.05493,-0.175781 -0.03613,-0.04102 -0.08106,-0.06152 -0.134766,-0.06152 -0.05371,0 -0.09888,0.02051 -0.135498,0.06152 -0.03662,0.04102 -0.05493,0.100098 -0.05493,0.177246"
+         inkscape:connector-curvature="0"
+         id="path3097"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 27.821045,83.388954 -0.205811,0 0,-0.396972 c 0,-0.08398 -0.0044,-0.138184 -0.01318,-0.162598 -0.0088,-0.0249 -0.02319,-0.04419 -0.04321,-0.05786 -0.01953,-0.01367 -0.04321,-0.02051 -0.07105,-0.02051 -0.03564,0 -0.06763,0.0098 -0.09595,0.0293 -0.02832,0.01953 -0.04785,0.04541 -0.05859,0.07764 -0.01025,0.03223 -0.01538,0.0918 -0.01538,0.178711 l 0,0.352295 -0.20581,0 0,-0.777832 0.191162,0 0,0.114258 c 0.06787,-0.08789 0.15332,-0.131835 0.256347,-0.131836 0.04541,1e-6 0.08691,0.0083 0.124512,0.0249 0.0376,0.01611 0.06592,0.03687 0.08496,0.06226 0.01953,0.02539 0.03296,0.0542 0.04028,0.08643 0.0078,0.03223 0.01172,0.07837 0.01172,0.138428 l 0,0.483398"
+         inkscape:connector-curvature="0"
+         id="path3099"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 28.030518,83.388954 0,-1.07373 0.20581,0 0,1.07373 -0.20581,0"
+         inkscape:connector-curvature="0"
+         id="path3101"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+      <path
+         d="m 28.349121,82.611122 0.218994,0 0.186035,0.552246 0.181641,-0.552246 0.213135,0 -0.274658,0.748535 -0.04907,0.135498 c -0.01807,0.04541 -0.0354,0.08008 -0.052,0.104004 -0.01611,0.02393 -0.03491,0.04321 -0.0564,0.05786 -0.021,0.01514 -0.04712,0.02685 -0.07837,0.03516 -0.03076,0.0083 -0.06567,0.01245 -0.104737,0.01245 -0.03955,0 -0.07837,-0.0042 -0.116455,-0.01245 l -0.01831,-0.161133 c 0.03223,0.0063 0.06128,0.0095 0.08716,0.0095 0.04785,0 0.08325,-0.01416 0.106201,-0.04248 0.02295,-0.02783 0.04053,-0.06348 0.05273,-0.106934 l -0.295899,-0.780029"
+         inkscape:connector-curvature="0"
+         id="path3103"
+         style="font-weight:bold;fill:#553417;-inkscape-font-specification:Abandoned Bitplane Bold" />
+    </g>
+    <g
+       id="text3762"
+       style="font-size:1.5px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#553417;fill-opacity:1;stroke:none;display:inline;font-family:Arial Black;-inkscape-font-specification:'Arial Black, Bold'">
+      <path
+         d="m 15.052002,78.15873 0.315674,-0.01978 c 0.0068,0.05127 0.02075,0.09033 0.04175,0.117188 0.03418,0.04346 0.08301,0.06518 0.146484,0.06518 0.04736,0 0.08374,-0.01099 0.109131,-0.03296 0.02588,-0.02246 0.03882,-0.04834 0.03882,-0.07764 0,-0.02783 -0.01221,-0.05273 -0.03662,-0.07471 -0.02441,-0.02197 -0.08106,-0.04272 -0.169922,-0.06226 -0.145508,-0.03271 -0.249267,-0.07617 -0.311279,-0.130371 -0.0625,-0.0542 -0.09375,-0.123291 -0.09375,-0.207276 0,-0.05517 0.01587,-0.107177 0.04761,-0.156006 0.03223,-0.04932 0.08032,-0.08789 0.144287,-0.115722 0.06445,-0.02832 0.152587,-0.04248 0.264404,-0.04248 0.137206,10e-7 0.241698,0.02564 0.313477,0.0769 0.07226,0.05078 0.115233,0.131837 0.128906,0.243165 l -0.312744,0.01831 c -0.0083,-0.04834 -0.02588,-0.0835 -0.05273,-0.105469 -0.02637,-0.02197 -0.06299,-0.03296 -0.109863,-0.03296 -0.03857,1e-6 -0.06763,0.0083 -0.08716,0.0249 -0.01953,0.01611 -0.0293,0.03589 -0.0293,0.05933 0,0.01709 0.0081,0.03247 0.02417,0.04614 0.01562,0.01416 0.05273,0.02734 0.111328,0.03955 0.145019,0.03125 0.248778,0.06299 0.311279,0.09521 0.06299,0.03174 0.108642,0.07129 0.136963,0.118652 0.02881,0.04736 0.04321,0.100343 0.04321,0.158936 -10e-7,0.06885 -0.01904,0.132324 -0.05713,0.19043 -0.03809,0.0581 -0.09131,0.102295 -0.159668,0.132568 -0.06836,0.02978 -0.154541,0.04468 -0.258545,0.04468 -0.182617,0 -0.309082,-0.03516 -0.379394,-0.105469 -0.07031,-0.07031 -0.110108,-0.159668 -0.119385,-0.268066"
+         inkscape:connector-curvature="0"
+         id="path3106" />
+      <path
+         d="m 16.137451,78.127235 c 0,-0.118651 0.04004,-0.216308 0.120117,-0.292968 0.08008,-0.07715 0.188232,-0.115722 0.324463,-0.115723 0.155761,1e-6 0.273437,0.04517 0.353028,0.135498 0.06396,0.07275 0.09595,0.162354 0.09595,0.268799 -1e-6,0.119629 -0.0398,0.217773 -0.119385,0.294433 -0.0791,0.07617 -0.188721,0.114258 -0.328857,0.114258 -0.125001,0 -0.226075,-0.03174 -0.303223,-0.09521 -0.09473,-0.07861 -0.14209,-0.18164 -0.14209,-0.309082 m 0.298828,-7.32e-4 c 0,0.06934 0.01392,0.120606 0.04175,0.153809 0.02832,0.0332 0.06372,0.0498 0.106202,0.0498 0.04297,0 0.07812,-0.01636 0.105468,-0.04907 0.02783,-0.03271 0.04175,-0.0852 0.04175,-0.157471 0,-0.06738 -0.01392,-0.117431 -0.04175,-0.150146 -0.02783,-0.0332 -0.06226,-0.0498 -0.103271,-0.04981 -0.04346,10e-7 -0.07935,0.01685 -0.107666,0.05054 -0.02832,0.0332 -0.04248,0.08398 -0.04248,0.152344"
+         inkscape:connector-curvature="0"
+         id="path3108" />
+      <path
+         d="m 17.507812,77.736122 0.14209,0 0,0.218262 -0.14209,0 0,0.55957 -0.298828,0 0,-0.55957 -0.111328,0 0,-0.218262 0.111328,0 0,-0.03516 c 0,-0.03174 0.0034,-0.06665 0.01025,-0.104736 0.0068,-0.03809 0.01953,-0.06909 0.03809,-0.09302 0.01904,-0.02441 0.04541,-0.04394 0.0791,-0.05859 0.03418,-0.01514 0.08398,-0.0227 0.149414,-0.02271 0.05224,10e-7 0.128173,0.0061 0.227783,0.01831 l -0.03296,0.180175 c -0.03564,-0.0059 -0.06445,-0.0088 -0.08643,-0.0088 -0.02686,10e-7 -0.04614,0.0046 -0.05786,0.01392 -0.01172,0.0088 -0.02002,0.02295 -0.0249,0.04248 -0.0024,0.01074 -0.0037,0.03345 -0.0037,0.06811"
+         inkscape:connector-curvature="0"
+         id="path3110" />
+      <path
+         d="m 18.118652,77.440224 0,0.295898 0.164063,0 0,0.217529 -0.164063,0 0,0.276123 c 0,0.0332 0.0032,0.05518 0.0095,0.06592 0.0098,0.0166 0.02685,0.0249 0.05127,0.0249 0.02197,0 0.05273,-0.0063 0.09229,-0.01904 l 0.02197,0.20581 c -0.07373,0.01611 -0.142578,0.02417 -0.206543,0.02417 -0.07422,0 -0.128906,-0.0095 -0.164062,-0.02856 -0.03516,-0.01904 -0.06128,-0.04785 -0.07837,-0.08643 -0.0166,-0.03906 -0.0249,-0.102051 -0.0249,-0.188965 l 0,-0.273926 -0.109863,0 0,-0.217529 0.109863,0 0,-0.142822 0.298828,-0.153076"
+         inkscape:connector-curvature="0"
+         id="path3112" />
+      <path
+         d="m 18.336182,77.736122 0.288574,0 0.125244,0.48999 0.158203,-0.48999 0.268799,0 0.164062,0.48999 0.125245,-0.48999 0.286377,0 -0.286377,0.777832 -0.265137,0 -0.157471,-0.468017 -0.152344,0.468017 -0.266601,0 -0.288574,-0.777832"
+         inkscape:connector-curvature="0"
+         id="path3114" />
+      <path
+         d="m 20.093262,77.988075 -0.284912,-0.03003 c 0.01074,-0.0498 0.02612,-0.08887 0.04614,-0.117188 0.02051,-0.02881 0.0498,-0.05371 0.08789,-0.07471 0.02734,-0.01514 0.06494,-0.02685 0.112793,-0.03516 0.04785,-0.0083 0.09961,-0.01245 0.155273,-0.01245 0.08936,10e-7 0.161132,0.0051 0.215332,0.01538 0.0542,0.0098 0.09936,0.03052 0.135498,0.06226 0.02539,0.02197 0.04541,0.05322 0.06006,0.09375 0.01465,0.04004 0.02197,0.07837 0.02197,0.11499 l 0,0.343506 c -10e-7,0.03662 0.0022,0.06543 0.0066,0.08643 0.0049,0.02051 0.01514,0.04687 0.03076,0.0791 l -0.279785,0 c -0.01123,-0.02002 -0.01855,-0.03516 -0.02197,-0.04541 -0.0034,-0.01074 -0.0068,-0.02734 -0.01025,-0.0498 -0.03906,0.0376 -0.07788,0.06445 -0.116455,0.08057 -0.05273,0.02148 -0.114014,0.03223 -0.183838,0.03223 -0.09277,0 -0.16333,-0.02148 -0.21167,-0.06445 -0.04785,-0.04297 -0.07178,-0.09595 -0.07178,-0.158935 0,-0.05908 0.01733,-0.107666 0.052,-0.145752 0.03467,-0.03809 0.09863,-0.06641 0.191895,-0.08496 0.111816,-0.02246 0.184325,-0.03809 0.217529,-0.04687 0.0332,-0.0093 0.06836,-0.02124 0.105469,-0.03589 -1e-6,-0.03662 -0.0076,-0.06226 -0.02271,-0.0769 -0.01514,-0.01465 -0.04175,-0.02197 -0.07983,-0.02197 -0.04883,10e-7 -0.08545,0.0078 -0.109864,0.02344 -0.01904,0.01221 -0.03442,0.03516 -0.04614,0.06885 m 0.258545,0.156739 c -0.04102,0.01465 -0.08374,0.02759 -0.128174,0.03882 -0.06055,0.01611 -0.09888,0.03198 -0.11499,0.04761 -0.0166,0.01611 -0.0249,0.03442 -0.0249,0.05493 0,0.02344 0.0081,0.04273 0.02417,0.05786 0.0166,0.01465 0.04077,0.02197 0.07251,0.02197 0.0332,0 0.06396,-0.0081 0.09228,-0.02417 0.02881,-0.01611 0.04907,-0.03564 0.06079,-0.05859 0.01221,-0.02344 0.01831,-0.05371 0.01831,-0.09082 l 0,-0.04761"
+         inkscape:connector-curvature="0"
+         id="path3116" />
+      <path
+         d="m 20.826416,77.736122 0.279053,0 0,0.127442 c 0.02686,-0.05518 0.05444,-0.09302 0.08276,-0.113526 0.02881,-0.02099 0.06421,-0.03149 0.106202,-0.03149 0.04394,10e-7 0.09204,0.01367 0.144287,0.04102 l -0.09229,0.212402 c -0.03516,-0.01465 -0.06299,-0.02197 -0.0835,-0.02197 -0.03906,10e-7 -0.06934,0.01611 -0.09082,0.04834 -0.03076,0.04541 -0.04614,0.130372 -0.04614,0.254883 l 0,0.260742 -0.299561,0 0,-0.777832"
+         inkscape:connector-curvature="0"
+         id="path3118" />
+      <path
+         d="m 22.375488,78.199013 -0.597656,0 c 0.0054,0.04785 0.01831,0.0835 0.03882,0.106933 0.02881,0.03369 0.06641,0.05054 0.112793,0.05054 0.0293,10e-7 0.05713,-0.0073 0.0835,-0.02197 0.01611,-0.0093 0.03345,-0.02564 0.052,-0.04907 l 0.293702,0.0271 c -0.04492,0.07813 -0.09912,0.134278 -0.162598,0.168457 -0.06348,0.03369 -0.154542,0.05054 -0.273193,0.05054 -0.103028,0 -0.184083,-0.0144 -0.243165,-0.04321 -0.05908,-0.0293 -0.108154,-0.07544 -0.147216,-0.138427 -0.03858,-0.06348 -0.05786,-0.137939 -0.05786,-0.223389 0,-0.121582 0.03882,-0.21997 0.116455,-0.295166 0.07813,-0.0752 0.185791,-0.112792 0.322998,-0.112793 0.111328,10e-7 0.199219,0.01685 0.263672,0.05054 0.06445,0.03369 0.113525,0.08252 0.147217,0.146484 0.03369,0.06397 0.05054,0.147218 0.05054,0.249756 l 0,0.03369 M 22.072266,78.05619 c -0.0059,-0.05762 -0.02148,-0.09888 -0.04687,-0.123779 -0.0249,-0.0249 -0.05786,-0.03735 -0.09888,-0.03735 -0.04736,0 -0.08521,0.0188 -0.113526,0.0564 -0.01807,0.02344 -0.02954,0.05835 -0.03442,0.104736 l 0.293702,0"
+         inkscape:connector-curvature="0"
+         id="path3120" />
+      <path
+         d="m 23.01709,77.736122 0.27832,0 0,0.113526 c 0.04004,-0.04736 0.08032,-0.08105 0.12085,-0.101075 0.04101,-0.02002 0.09033,-0.03003 0.147949,-0.03003 0.06201,10e-7 0.111083,0.01099 0.147217,0.03296 0.03613,0.02197 0.06567,0.05469 0.08862,0.09815 0.04687,-0.05078 0.0896,-0.08521 0.128174,-0.103272 0.03857,-0.01855 0.08618,-0.02783 0.142822,-0.02783 0.08349,10e-7 0.14868,0.0249 0.195557,0.07471 0.04687,0.04932 0.07031,0.12671 0.07031,0.232178 l 0,0.488525 -0.298828,0 0,-0.443115 c -10e-7,-0.03516 -0.0068,-0.06128 -0.02051,-0.07837 -0.02002,-0.02685 -0.04492,-0.04028 -0.07471,-0.04028 -0.03516,0 -0.06348,0.0127 -0.08496,0.03809 -0.02149,0.02539 -0.03223,0.06616 -0.03223,0.122314 l 0,0.401367 -0.298829,0 0,-0.428467 c 0,-0.03418 -0.002,-0.05737 -0.0059,-0.06958 -0.0063,-0.01953 -0.01733,-0.03516 -0.03296,-0.04687 -0.01563,-0.01221 -0.03394,-0.01831 -0.05493,-0.01831 -0.03418,0 -0.06226,0.01294 -0.08423,0.03882 -0.02197,0.02588 -0.03296,0.06836 -0.03296,0.127442 l 0,0.396972 -0.298828,0 0,-0.777832"
+         inkscape:connector-curvature="0"
+         id="path3122" />
+      <path
+         d="m 24.786621,77.988075 -0.284912,-0.03003 c 0.01074,-0.0498 0.02612,-0.08887 0.04614,-0.117188 0.02051,-0.02881 0.0498,-0.05371 0.08789,-0.07471 0.02734,-0.01514 0.06494,-0.02685 0.112793,-0.03516 0.04785,-0.0083 0.09961,-0.01245 0.155274,-0.01245 0.08935,10e-7 0.161132,0.0051 0.215332,0.01538 0.0542,0.0098 0.09936,0.03052 0.135498,0.06226 0.02539,0.02197 0.04541,0.05322 0.06006,0.09375 0.01465,0.04004 0.02197,0.07837 0.02197,0.11499 l 0,0.343506 c -1e-6,0.03662 0.0022,0.06543 0.0066,0.08643 0.0049,0.02051 0.01514,0.04687 0.03076,0.0791 l -0.279785,0 c -0.01123,-0.02002 -0.01855,-0.03516 -0.02197,-0.04541 -0.0034,-0.01074 -0.0068,-0.02734 -0.01025,-0.0498 -0.03906,0.0376 -0.07788,0.06445 -0.116455,0.08057 -0.05274,0.02148 -0.114014,0.03223 -0.183838,0.03223 -0.09277,0 -0.163331,-0.02148 -0.21167,-0.06445 -0.04785,-0.04297 -0.07178,-0.09595 -0.07178,-0.158935 0,-0.05908 0.01733,-0.107666 0.052,-0.145752 0.03467,-0.03809 0.09863,-0.06641 0.191895,-0.08496 0.111816,-0.02246 0.184326,-0.03809 0.217529,-0.04687 0.0332,-0.0093 0.06836,-0.02124 0.105469,-0.03589 -1e-6,-0.03662 -0.0076,-0.06226 -0.0227,-0.0769 -0.01514,-0.01465 -0.04175,-0.02197 -0.07983,-0.02197 -0.04883,10e-7 -0.08545,0.0078 -0.109863,0.02344 -0.01904,0.01221 -0.03443,0.03516 -0.04614,0.06885 m 0.258545,0.156739 c -0.04102,0.01465 -0.08374,0.02759 -0.128174,0.03882 -0.06055,0.01611 -0.09888,0.03198 -0.11499,0.04761 -0.0166,0.01611 -0.0249,0.03442 -0.0249,0.05493 -10e-7,0.02344 0.0081,0.04273 0.02417,0.05786 0.0166,0.01465 0.04077,0.02197 0.07251,0.02197 0.0332,0 0.06396,-0.0081 0.09229,-0.02417 0.02881,-0.01611 0.04907,-0.03564 0.06079,-0.05859 0.01221,-0.02344 0.01831,-0.05371 0.01831,-0.09082 l 0,-0.04761"
+         inkscape:connector-curvature="0"
+         id="path3124" />
+      <path
+         d="m 25.516846,77.736122 0.277588,0 0,0.126709 c 0.0415,-0.05176 0.0835,-0.08862 0.125976,-0.110596 0.04248,-0.02246 0.09424,-0.03369 0.155274,-0.03369 0.08252,10e-7 0.146971,0.02466 0.193359,0.07398 0.04687,0.04883 0.07031,0.124512 0.07031,0.22705 l 0,0.494385 -0.29956,0 0,-0.427734 c -1e-6,-0.04883 -0.009,-0.08325 -0.0271,-0.103272 -0.01807,-0.02051 -0.04346,-0.03076 -0.07617,-0.03076 -0.03613,0 -0.06543,0.01367 -0.08789,0.04102 -0.02246,0.02734 -0.03369,0.07642 -0.03369,0.147217 l 0,0.373535 -0.298095,0 0,-0.777832"
+         inkscape:connector-curvature="0"
+         id="path3126" />
+      <path
+         d="m 26.790527,77.988075 -0.284912,-0.03003 c 0.01074,-0.0498 0.02612,-0.08887 0.04614,-0.117188 0.02051,-0.02881 0.0498,-0.05371 0.08789,-0.07471 0.02734,-0.01514 0.06494,-0.02685 0.112793,-0.03516 0.04785,-0.0083 0.09961,-0.01245 0.155274,-0.01245 0.08936,10e-7 0.161132,0.0051 0.215332,0.01538 0.0542,0.0098 0.09936,0.03052 0.135498,0.06226 0.02539,0.02197 0.04541,0.05322 0.06006,0.09375 0.01465,0.04004 0.02197,0.07837 0.02197,0.11499 l 0,0.343506 c -1e-6,0.03662 0.0022,0.06543 0.0066,0.08643 0.0049,0.02051 0.01514,0.04687 0.03076,0.0791 l -0.279785,0 c -0.01123,-0.02002 -0.01856,-0.03516 -0.02197,-0.04541 -0.0034,-0.01074 -0.0068,-0.02734 -0.01025,-0.0498 -0.03906,0.0376 -0.07788,0.06445 -0.116455,0.08057 -0.05274,0.02148 -0.114014,0.03223 -0.183838,0.03223 -0.09277,0 -0.16333,-0.02148 -0.21167,-0.06445 -0.04785,-0.04297 -0.07178,-0.09595 -0.07178,-0.158935 0,-0.05908 0.01733,-0.107666 0.052,-0.145752 0.03467,-0.03809 0.09863,-0.06641 0.191894,-0.08496 0.111816,-0.02246 0.184326,-0.03809 0.21753,-0.04687 0.0332,-0.0093 0.06836,-0.02124 0.105468,-0.03589 0,-0.03662 -0.0076,-0.06226 -0.0227,-0.0769 -0.01514,-0.01465 -0.04175,-0.02197 -0.07983,-0.02197 -0.04883,10e-7 -0.08545,0.0078 -0.109863,0.02344 -0.01904,0.01221 -0.03442,0.03516 -0.04614,0.06885 m 0.258545,0.156739 c -0.04102,0.01465 -0.08374,0.02759 -0.128174,0.03882 -0.06055,0.01611 -0.09888,0.03198 -0.11499,0.04761 -0.0166,0.01611 -0.0249,0.03442 -0.0249,0.05493 0,0.02344 0.0081,0.04273 0.02417,0.05786 0.0166,0.01465 0.04077,0.02197 0.07251,0.02197 0.0332,0 0.06396,-0.0081 0.09229,-0.02417 0.02881,-0.01611 0.04907,-0.03564 0.06079,-0.05859 0.01221,-0.02344 0.01831,-0.05371 0.01831,-0.09082 l 0,-0.04761"
+         inkscape:connector-curvature="0"
+         id="path3128" />
+      <path
+         d="m 28.085449,77.736122 0.279053,0 0,0.734619 7.32e-4,0.03442 c -1e-6,0.04883 -0.0105,0.09521 -0.03149,0.13916 -0.02051,0.04443 -0.0481,0.08032 -0.08276,0.107666 -0.03418,0.02734 -0.07788,0.04712 -0.131104,0.05933 -0.05273,0.01221 -0.113282,0.01831 -0.181641,0.01831 -0.15625,0 -0.263672,-0.02344 -0.322265,-0.07031 -0.05811,-0.04687 -0.08716,-0.109619 -0.08716,-0.188232 0,-0.0098 4.88e-4,-0.02295 0.0015,-0.03955 l 0.289307,0.03296 c 0.0073,0.02686 0.01855,0.04541 0.03369,0.05566 0.02197,0.01514 0.04956,0.02271 0.08276,0.02271 0.04297,0 0.07495,-0.01147 0.09595,-0.03442 0.02148,-0.02295 0.03223,-0.06299 0.03223,-0.120118 l 0,-0.11792 c -0.0293,0.03467 -0.05859,0.05982 -0.08789,0.07544 -0.0459,0.02441 -0.09546,0.03662 -0.148681,0.03662 -0.104004,0 -0.187989,-0.04541 -0.251953,-0.13623 -0.04541,-0.06445 -0.06812,-0.149658 -0.06812,-0.255616 0,-0.121093 0.0293,-0.213378 0.08789,-0.276855 0.05859,-0.06348 0.135254,-0.09521 0.22998,-0.09522 0.06055,10e-7 0.110352,0.01026 0.149415,0.03076 0.03955,0.02051 0.07642,0.05444 0.110595,0.101806 l 0,-0.11499 m -0.280517,0.377197 c -1e-6,0.05615 0.01196,0.0979 0.03589,0.125245 0.02393,0.02685 0.05542,0.04028 0.09448,0.04028 0.03711,0 0.06811,-0.01392 0.09302,-0.04175 0.02539,-0.02832 0.03809,-0.0708 0.03809,-0.127442 0,-0.05664 -0.01318,-0.09985 -0.03955,-0.129638 -0.02637,-0.03027 -0.05859,-0.04541 -0.09668,-0.04541 -0.03809,1e-6 -0.0686,0.01392 -0.09155,0.04175 -0.02246,0.02734 -0.03369,0.073 -0.03369,0.136962"
+         inkscape:connector-curvature="0"
+         id="path3130" />
+      <path
+         d="m 29.409668,78.199013 -0.597656,0 c 0.0054,0.04785 0.01831,0.0835 0.03882,0.106933 0.02881,0.03369 0.06641,0.05054 0.112793,0.05054 0.0293,10e-7 0.05713,-0.0073 0.0835,-0.02197 0.01611,-0.0093 0.03345,-0.02564 0.052,-0.04907 l 0.293701,0.0271 c -0.04492,0.07813 -0.09912,0.134278 -0.162597,0.168457 -0.06348,0.03369 -0.154542,0.05054 -0.273194,0.05054 -0.103027,0 -0.184082,-0.0144 -0.243164,-0.04321 -0.05908,-0.0293 -0.108154,-0.07544 -0.147217,-0.138427 -0.03857,-0.06348 -0.05786,-0.137939 -0.05786,-0.223389 0,-0.121582 0.03882,-0.21997 0.116455,-0.295166 0.07813,-0.0752 0.185791,-0.112792 0.322998,-0.112793 0.111328,10e-7 0.199218,0.01685 0.263672,0.05054 0.06445,0.03369 0.113525,0.08252 0.147217,0.146484 0.03369,0.06397 0.05054,0.147218 0.05054,0.249756 l 0,0.03369 M 29.106445,78.05619 c -0.0059,-0.05762 -0.02149,-0.09888 -0.04687,-0.123779 -0.0249,-0.0249 -0.05786,-0.03735 -0.09888,-0.03735 -0.04736,0 -0.0852,0.0188 -0.113525,0.0564 -0.01807,0.02344 -0.02954,0.05835 -0.03442,0.104736 l 0.293701,0"
+         inkscape:connector-curvature="0"
+         id="path3132" />
+      <path
+         d="m 29.551025,77.736122 0.279053,0 0,0.127442 c 0.02686,-0.05518 0.05444,-0.09302 0.08276,-0.113526 0.02881,-0.02099 0.06421,-0.03149 0.106201,-0.03149 0.04395,10e-7 0.09204,0.01367 0.144287,0.04102 l -0.09228,0.212402 c -0.03516,-0.01465 -0.06299,-0.02197 -0.0835,-0.02197 -0.03906,10e-7 -0.06934,0.01611 -0.09082,0.04834 -0.03076,0.04541 -0.04614,0.130372 -0.04614,0.254883 l 0,0.260742 -0.299561,0 0,-0.777832"
+         inkscape:connector-curvature="0"
+         id="path3134" />
+    </g>
+  </g>
+  <g
+     id="layer4"
+     style="display:none">
+    <rect
+       width="30"
+       height="30"
+       rx="2.8125"
+       ry="2.8125"
+       x="-86"
+       y="56"
+       transform="matrix(0,-1,1,0,0,4)"
+       id="rect3790"
+       style="opacity:0.6;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3806)" />
+    <rect
+       width="30"
+       height="30"
+       rx="2.8125"
+       ry="2.8125"
+       x="-88"
+       y="56"
+       transform="matrix(0,-1,1,0,0,0)"
+       id="rect2993"
+       style="fill:url(#linearGradient3773);fill-opacity:1;stroke:none" />
+    <path
+       d="M 58.8125,58 C 57.254375,58 56,59.254375 56,60.8125 l 0,24.375 c 0,0.873066 0.410816,1.641163 1.03125,2.15625 C 57.02841,87.289908 57,87.242129 57,87.1875 l 0,-24.375 C 57,61.254375 58.17075,60 59.625,60 l 22.75,0 C 83.82925,60 85,61.254375 85,62.8125 l 0,24.375 c 0,0.05463 -0.02841,0.102408 -0.03125,0.15625 C 85.589184,86.828663 86,86.060566 86,85.1875 l 0,-24.375 C 86,59.254375 84.745625,58 83.1875,58 l -24.375,0 z"
+       inkscape:connector-curvature="0"
+       id="rect3775"
+       style="opacity:0.5;fill:url(#linearGradient3788);fill-opacity:1;stroke:none" />
+    <path
+       d="m 116,63.5 0,8.75 -5,0 10,13.75 10,-13.75 -5,0 0,-8.75 -10,0 z"
+       inkscape:connector-curvature="0"
+       transform="translate(-50,0)"
+       clip-path="url(#clipPath3823)"
+       id="path3810"
+       style="opacity:0.6;fill:url(#linearGradient3812);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline;filter:url(#filter3831)" />
+    <path
+       d="m 66,62.5 0,8.75 -5,0 10,13.75 10,-13.75 -5,0 0,-8.75 -10,0 z"
+       inkscape:connector-curvature="0"
+       id="path4278"
+       style="fill:url(#linearGradient3832);fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
+  </g>
+  <g
+     transform="matrix(0.5283217,0,0,0.51965824,46.515804,49.994171)"
+     id="layer4-6"
+     style="display:inline">
+    <path
+       inkscape:connector-curvature="0"
+       d="m 12.65625,18.9375 c 0.0024,-2.81e-4 -0.158617,0.03172 -0.15625,0.03125 0.0014,-2.73e-4 -0.04749,-0.0112 -0.09375,0 -1.4e-4,2.7e-5 -0.03109,0.02452 -0.0625,0.03125 -0.07263,0.01557 -0.155932,0.03116 -0.15625,0.03125 -4.55e-4,1.3e-4 -0.280808,0.09358 -0.28125,0.09375 -4.42e-4,1.69e-4 -0.249575,0.09354 -0.25,0.09375 -4.25e-4,2.07e-4 -0.249594,0.124757 -0.25,0.125 0,0 -0.09212,0.06128 -0.09375,0.0625 -0.0016,0.0012 0.0019,0.02983 0,0.03125 -0.01189,0.0089 -0.04689,0.01954 -0.0625,0.03125 -0.03123,0.02343 -0.03106,0.03111 -0.03125,0.03125 -0.01952,0.0117 -0.0476,0.02231 -0.0625,0.03125 -0.0074,0.0045 -0.02642,-0.0029 -0.03125,0 -3.57e-4,3.1e-4 -0.343421,0.31216 -0.34375,0.3125 0,0 -0.09242,0.09198 -0.09375,0.09375 -0.0029,0.0039 0.0045,0.02529 0,0.03125 -0.0089,0.01192 -0.01954,0.01563 -0.03125,0.03125 -0.02342,0.03124 -0.0311,0.03107 -0.03125,0.03125 -2.98e-4,3.67e-4 -0.187235,0.249608 -0.1875,0.25 -2.65e-4,3.92e-4 -0.12477,0.218337 -0.125,0.21875 -2.3e-4,4.13e-4 -0.09356,0.218318 -0.09375,0.21875 -9.6e-5,2.16e-4 -0.07814,0.140664 -0.09375,0.1875 -0.01561,0.04684 -0.03117,0.09353 -0.03125,0.09375 -7.7e-5,2.24e-4 0.01562,-0.0078 0,0.03125 -0.0078,0.01951 -0.0253,0.01638 -0.03125,0.03125 -0.003,0.0074 0.0019,0.02647 0,0.03125 -1.16e-4,4.59e-4 -0.093675,0.405783 -0.09375,0.40625 0,0 0.00349,0.08071 0,0.125 6.1e-6,-3.1e-5 0.00111,0.02293 0,0.03125 -4.7e-6,0.0057 4e-7,0.02233 0,0.03125 -0.00183,0.0091 0.00196,0.02149 0,0.03125 -0.00196,0.0098 0.00184,0.02204 0,0.03125 -0.00184,0.0092 -0.029746,-0.0075 -0.03125,0 -0.0015,0.0075 0.00102,0.0261 0,0.03125 l 0.03125,0 L 11,22 l -1.0625,0 0,16 c 0,0 -4.3e-4,0.184876 0,0.1875 9.566e-4,0.0058 -0.00149,0.02232 0,0.03125 0.00298,0.01787 -0.00391,0.03908 0,0.0625 0.00782,0.04684 0.031223,0.03099 0.03125,0.03125 5.4e-5,5.28e-4 0.031145,0.31198 0.03125,0.3125 5.2e-5,2.6e-4 -0.0078,0.01566 0,0.0625 0.0039,0.02342 0.02828,0.04469 0.03125,0.0625 4.74e-4,0.0028 -4.05e-4,0.02885 0,0.03125 1.55e-4,5.07e-4 0.124796,0.37451 0.125,0.375 2.04e-4,4.9e-4 0.155999,0.280783 0.15625,0.28125 2.51e-4,4.67e-4 0.124705,0.249559 0.125,0.25 2.95e-4,4.41e-4 0.187163,0.24959 0.1875,0.25 1.69e-4,2.05e-4 0.03128,0.02346 0.0625,0.0625 0.01561,0.01952 0.01941,0.0477 0.03125,0.0625 0.0059,0.0074 0.02755,-0.0046 0.03125,0 0.0018,0.0023 -0.0014,0.02945 0,0.03125 0,0 0.154455,0.154809 0.15625,0.15625 0.0018,0.0014 0.02894,-0.0018 0.03125,0 0.0046,0.0037 -0.0074,0.02533 0,0.03125 0.0148,0.01184 0.04298,0.01564 0.0625,0.03125 0.03904,0.03122 0.0623,0.06233 0.0625,0.0625 4.1e-4,3.37e-4 0.249559,0.187205 0.25,0.1875 4.41e-4,2.95e-4 0.249533,0.124749 0.25,0.125 4.67e-4,2.51e-4 0.28076,0.156046 0.28125,0.15625 4.9e-4,2.04e-4 0.249493,0.0936 0.25,0.09375 0,0 0.122604,0.03084 0.125,0.03125 0.0024,4.05e-4 0.02842,-4.74e-4 0.03125,0 0.01781,0.003 0.03908,0.02735 0.0625,0.03125 0.04684,0.0078 0.06224,-5.2e-5 0.0625,0 5.2e-4,1.05e-4 0.311972,0.0312 0.3125,0.03125 2.64e-4,2.7e-5 -0.01559,0.02343 0.03125,0.03125 0.02342,0.0039 0.04463,-0.003 0.0625,0 0.0089,0.0015 0.02548,-9.57e-4 0.03125,0 a 1.0779495,1.0779495 0 0 0 0.1875,0 l 4.9375,0 0,3.53125 0,11.59375 c 0,12.624477 10.250523,22.875 22.875,22.875 l 14.375,0 19.8125,0 c 0,0 0.184876,4.3e-4 0.1875,0 0.0058,-9.57e-4 0.02232,0.0015 0.03125,0 0.01787,-0.003 0.03908,0.0039 0.0625,0 0.04684,-0.0078 0.03099,-0.03122 0.03125,-0.03125 5.28e-4,-5.4e-5 0.31198,-0.03114 0.3125,-0.03125 2.6e-4,-5.3e-5 0.01566,0.0078 0.0625,0 0.02342,-0.0039 0.04469,-0.02828 0.0625,-0.03125 0.0028,-4.74e-4 0.02885,4.05e-4 0.03125,0 5.07e-4,-1.55e-4 0.37451,-0.124796 0.375,-0.125 4.9e-4,-2.04e-4 0.280783,-0.155999 0.28125,-0.15625 4.67e-4,-2.51e-4 0.249559,-0.124705 0.25,-0.125 4.41e-4,-2.95e-4 0.24959,-0.187163 0.25,-0.1875 2.05e-4,-1.69e-4 0.02346,-0.03128 0.0625,-0.0625 0.01952,-0.01561 0.0477,-0.01941 0.0625,-0.03125 0.0074,-0.0059 -0.0046,-0.02756 0,-0.03125 0.0023,-0.0018 0.02945,0.0014 0.03125,0 0,0 0.154809,-0.154455 0.15625,-0.15625 0.0014,-0.0018 -0.0018,-0.02894 0,-0.03125 0.0037,-0.0046 0.02533,0.0074 0.03125,0 0.01184,-0.0148 0.01564,-0.04298 0.03125,-0.0625 0.03122,-0.03904 0.06233,-0.0623 0.0625,-0.0625 3.37e-4,-4.1e-4 0.187205,-0.249559 0.1875,-0.25 2.95e-4,-4.41e-4 0.124749,-0.249533 0.125,-0.25 2.51e-4,-4.67e-4 0.156046,-0.28076 0.15625,-0.28125 2.04e-4,-4.9e-4 0.09359,-0.249493 0.09375,-0.25 0,0 0.03084,-0.122604 0.03125,-0.125 4.05e-4,-0.0024 -4.74e-4,-0.02842 0,-0.03125 0.003,-0.01781 0.02735,-0.03908 0.03125,-0.0625 0.0078,-0.04684 -5.2e-5,-0.06224 0,-0.0625 1.05e-4,-5.2e-4 0.0312,-0.311972 0.03125,-0.3125 2.7e-5,-2.64e-4 0.02343,0.01559 0.03125,-0.03125 0.0039,-0.02342 -0.003,-0.04463 0,-0.0625 0.0015,-0.0089 -9.57e-4,-0.02548 0,-0.03125 a 1.0779495,1.0779495 0 0 0 0,-0.1875 l 0,-19.8125 0,-14.375 c 0,-12.624477 -10.250523,-22.875 -22.875,-22.875 l -6.1875,0 -8,0 -20,0 -7.96875,0 -0.03125,0 -0.0625,0 -0.0625,0 c -0.05331,-3e-6 -0.155946,-1.4e-5 -0.15625,0 a 1.0779495,1.0779495 0 0 0 -0.0625,0 z"
+       id="path4259"
+       style="opacity:0.05;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       inkscape:connector-curvature="0"
+       d="M 12.78125,20 A 0.98812041,0.98812041 0 0 0 12.625,20.03125 c -4.64e-4,9e-5 -0.155795,0.03112 -0.15625,0.03125 -4.55e-4,1.3e-4 -0.187058,0.06233 -0.1875,0.0625 -4.42e-4,1.69e-4 -0.155825,0.06229 -0.15625,0.0625 -4.25e-4,2.07e-4 -0.155844,0.09351 -0.15625,0.09375 -4.06e-4,2.43e-4 -0.124617,0.09347 -0.125,0.09375 -3.83e-4,2.78e-4 -0.155893,0.09344 -0.15625,0.09375 -3.57e-4,3.1e-4 -0.124671,0.12466 -0.125,0.125 -3.29e-4,3.4e-4 -0.09345,0.124633 -0.09375,0.125 -2.98e-4,3.67e-4 -0.124735,0.155858 -0.125,0.15625 -2.65e-4,3.92e-4 -0.09352,0.155837 -0.09375,0.15625 -2.3e-4,4.13e-4 -0.06231,0.124568 -0.0625,0.125 -1.93e-4,4.32e-4 -0.06235,0.187053 -0.0625,0.1875 -1.55e-4,4.47e-4 -0.06238,0.155791 -0.0625,0.15625 -1.16e-4,4.59e-4 -0.03117,0.155783 -0.03125,0.15625 -7.5e-5,4.67e-4 3.4e-5,0.187028 0,0.1875 C 11.031216,21.844222 10.999993,21.999527 11,22 l 0,16 c 2e-6,5.3e-4 0.0312,0.186972 0.03125,0.1875 5.4e-5,5.28e-4 0.03115,0.21823 0.03125,0.21875 1.05e-4,5.2e-4 0.0311,0.186993 0.03125,0.1875 1.55e-4,5.07e-4 0.0623,0.15576 0.0625,0.15625 2.04e-4,4.9e-4 0.0935,0.187033 0.09375,0.1875 2.51e-4,4.67e-4 0.09346,0.155809 0.09375,0.15625 2.95e-4,4.41e-4 0.124663,0.15584 0.125,0.15625 3.37e-4,4.1e-4 0.124625,0.155875 0.125,0.15625 3.75e-4,3.75e-4 0.15584,0.124663 0.15625,0.125 4.1e-4,3.37e-4 0.155809,0.124705 0.15625,0.125 4.41e-4,2.95e-4 0.155783,0.0935 0.15625,0.09375 4.67e-4,2.51e-4 0.18701,0.09355 0.1875,0.09375 4.9e-4,2.04e-4 0.155743,0.06235 0.15625,0.0625 5.07e-4,1.55e-4 0.18698,0.03115 0.1875,0.03125 5.2e-4,1.05e-4 0.218222,0.0312 0.21875,0.03125 C 12.813028,39.968804 12.99947,40 13,40 l 6,0 0,4.59375 0,11.59375 C 19,68.228894 28.771106,78 40.8125,78 L 55.1875,78 75,78 c 5.3e-4,-2e-6 0.186972,-0.0312 0.1875,-0.03125 5.28e-4,-5.4e-5 0.21823,-0.03114 0.21875,-0.03125 5.2e-4,-1.05e-4 0.186993,-0.03109 0.1875,-0.03125 5.07e-4,-1.55e-4 0.15576,-0.0623 0.15625,-0.0625 4.9e-4,-2.04e-4 0.187033,-0.0935 0.1875,-0.09375 4.67e-4,-2.51e-4 0.155809,-0.09346 0.15625,-0.09375 4.41e-4,-2.95e-4 0.15584,-0.124663 0.15625,-0.125 4.1e-4,-3.37e-4 0.155875,-0.124625 0.15625,-0.125 3.75e-4,-3.75e-4 0.124663,-0.15584 0.125,-0.15625 3.37e-4,-4.1e-4 0.124705,-0.155809 0.125,-0.15625 2.95e-4,-4.41e-4 0.0935,-0.155783 0.09375,-0.15625 2.51e-4,-4.67e-4 0.09355,-0.18701 0.09375,-0.1875 2.04e-4,-4.9e-4 0.06234,-0.155743 0.0625,-0.15625 1.55e-4,-5.07e-4 0.03114,-0.18698 0.03125,-0.1875 1.05e-4,-5.2e-4 0.0312,-0.218222 0.03125,-0.21875 C 76.968804,76.186972 76.999998,76.00053 77,76 l 0,-19.8125 0,-14.375 C 77,29.771106 67.228894,20 55.1875,20 L 49,20 l -8,0 -20,0 -7.96875,0 c -1.01e-4,-5e-6 -0.01934,3e-6 -0.03125,0 -0.02381,-6e-6 -0.02688,-2e-6 -0.0625,0 -2.03e-4,-9e-6 -0.02688,2e-6 -0.0625,0 -0.05343,-3e-6 -0.09345,-1.4e-5 -0.09375,0 z"
+       id="path4255"
+       style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       inkscape:connector-curvature="0"
+       d="M 12.90625,21 A 1.0043202,1.0043202 0 0 0 12,22 l 0,16 a 1.0043202,1.0043202 0 0 0 1,1 l 7,0 0,5.59375 0,11.59375 C 20,67.696431 29.303569,77 40.8125,77 L 55.1875,77 75,77 a 1.0043202,1.0043202 0 0 0 1,-1 l 0,-19.8125 0,-14.375 C 76,30.303569 66.696431,21 55.1875,21 L 49,21 l -8,0 -20,0 -8,0 a 1.0043202,1.0043202 0 0 0 -0.09375,0 z"
+       id="path4251"
+       style="opacity:0.15;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       d="m 13,22 0,16 8,0 0,6.59375 0,11.59375 C 21,67.156701 29.843299,76 40.8125,76 L 55.1875,76 75,76 75,56.1875 75,41.8125 C 75,30.843299 66.156701,22 55.1875,22 L 49,22 l -8,0 -20,0 -8,0 z"
+       inkscape:connector-curvature="0"
+       id="path4247"
+       style="opacity:0.3;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       d="m 13,21 0,16 8,0 0,6.59375 0,11.59375 C 21,66.156701 29.843299,75 40.8125,75 L 55.1875,75 75,75 75,55.1875 75,40.8125 C 75,29.843299 66.156701,21 55.1875,21 L 49,21 l -8,0 -20,0 -8,0 z"
+       inkscape:connector-curvature="0"
+       id="rect3374"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       d="m 17,25 0,8 4,0 c 2.094806,-0.0015 4.001506,1.905194 4,4 l 0,6.59375 0,11.59375 C 25,64.00861 31.99139,71 40.8125,71 L 55.1875,71 71,71 71,55.1875 71,40.8125 C 71,31.99139 64.00861,25 55.1875,25 L 49,25 l -8,0 -20,0 -4,0 z"
+       inkscape:connector-curvature="0"
+       id="path3389"
+       style="color:#000000;fill:url(#linearGradient4201);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       inkscape:connector-curvature="0"
+       d="M 30.84375,29 A 0.50966883,0.50966883 0 0 0 30.5,29.5 l 0,27 0,1 c 0,4.705513 3.794487,8.5 8.5,8.5 l 18,0 c 4.705513,0 8.5,-3.794487 8.5,-8.5 l 0,-1 0,-14 C 65.5,38.358589 62.141411,35 58,35 56.066776,35 54.328069,35.767892 53,36.96875 51.671931,35.767892 49.933224,35 48,35 c -4.141411,0 -7.5,3.358589 -7.5,7.5 l 0,12 A 0.50966883,0.50966883 0 0 0 41,55 l 4,0 a 0.50966883,0.50966883 0 0 0 0.5,-0.5 l 0,-12 c 0,-1.381436 1.118564,-2.5 2.5,-2.5 1.381436,0 2.5,1.118564 2.5,2.5 l 0,12 A 0.50966883,0.50966883 0 0 0 51,55 l 4,0 a 0.50966883,0.50966883 0 0 0 0.5,-0.5 l 0,-12 c 0,-1.381436 1.118564,-2.5 2.5,-2.5 1.381436,0 2.5,1.118564 2.5,2.5 l 0,14 0,1 c 0,1.942487 -1.557513,3.5 -3.5,3.5 l -18,0 c -1.942487,0 -3.5,-1.557513 -3.5,-3.5 l 0,-1 0,-27 A 0.50966883,0.50966883 0 0 0 35,29 l -4,0 a 0.50966883,0.50966883 0 0 0 -0.15625,0 z"
+       id="path4221"
+       style="opacity:0.07999998;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       d="M 17,31.21875 17,33 l 4,0 c 2.094806,-0.0015 4.001506,1.905194 4,4 l 0,6.59375 0,11.59375 C 25,64.00861 31.99139,71 40.8125,71 l 14.375,0 14.4375,0 C 54.866955,63.915298 55.362996,45.784968 41.78125,36.71875 34.131268,31.61216 21.095399,31.209387 17,31.21875 z"
+       inkscape:connector-curvature="0"
+       id="path4203"
+       style="opacity:0.175;fill:url(#linearGradient4215);fill-opacity:1;stroke:none" />
+    <path
+       d="m 31,29.5 0,27 0,1 c 0,4.432 3.568,8 8,8 l 18,0 c 4.432,0 8,-3.568 8,-8 l 0,-1 0,-14 c 0,-3.865993 -3.134007,-7 -7,-7 -1.964141,0 -3.728741,0.822095 -5,2.125 -1.271259,-1.302905 -3.035859,-2.125 -5,-2.125 -3.865993,0 -7,3.134007 -7,7 l 0,12 4,0 0,-12 c 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 l 0,12 4,0 0,-12 c 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 l 0,14 0,1 c 0,2.216 -1.784,4 -4,4 l -18,0 c -2.216,0 -4,-1.784 -4,-4 l 0,-1 0,-27 -4,0 z"
+       inkscape:connector-curvature="0"
+       id="path4217"
+       style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       d="m 31,29 0,27 0,1 c 0,4.432 3.568,8 8,8 l 18,0 c 4.432,0 8,-3.568 8,-8 l 0,-1 0,-14 c 0,-3.865993 -3.134007,-7 -7,-7 -1.964141,0 -3.728741,0.822095 -5,2.125 C 51.728741,35.822095 49.964141,35 48,35 c -3.865993,0 -7,3.134007 -7,7 l 0,12 4,0 0,-12 c 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 l 0,12 4,0 0,-12 c 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 l 0,14 0,1 c 0,2.216 -1.784,4 -4,4 l -18,0 c -2.216,0 -4,-1.784 -4,-4 l 0,-1 0,-27 -4,0 z"
+       inkscape:connector-curvature="0"
+       id="rect3392"
+       style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       d="m 17,25 0,0.5 4,0 20,0 8,0 6.1875,0 C 64.00861,25.5 71,32.49139 71,41.3125 l 0,-0.5 C 71,31.99139 64.00861,25 55.1875,25 L 49,25 l -8,0 -20,0 -4,0 z"
+       inkscape:connector-curvature="0"
+       id="path4227"
+       style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       d="m 17,25 0,8 0.5,0 0,-7 3.5,0 20,0 8,0 6.1875,0 C 63.737725,26 70.5,32.762275 70.5,41.3125 l 0,14.375 0,15.3125 0.5,0 0,-15.8125 0,-14.375 C 71,31.99139 64.00861,25 55.1875,25 L 49,25 l -8,0 -20,0 -4,0 z m 4.78125,8.09375 C 23.54954,33.486338 25.001318,35.167045 25,37 l 0,6.59375 0,11.59375 c 0,7.222498 4.678052,13.188996 11.21875,15.125 C 29.958547,68.394208 25.5,62.634558 25.5,55.6875 l 0,-11.59375 0,-6.59375 c 0.0015,-2.137212 -1.66301,-4.011204 -3.71875,-4.40625 z m 14.4375,37.21875 c 0.477979,0.141479 0.972077,0.277989 1.46875,0.375 -0.501595,-0.100803 -0.987196,-0.227439 -1.46875,-0.375 z"
+       inkscape:connector-curvature="0"
+       id="path4236"
+       style="opacity:0.07999998;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       d="M 61,54.03125 61,56 l 0,1 c 0,2.216 -1.784,4 -4,4 l -11.96875,0 0,4 L 57,65 c 4.432,0 8,-3.568 8,-8 l 0,-1 0,-1.96875 -4,0 z"
+       inkscape:connector-curvature="0"
+       id="rect4261"
+       style="opacity:0.3;color:#000000;fill:#52a800;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+  </g>
+</svg>
-- 
1.9.3


