[gnome-games] gnomine: add icons from Lapo Calamandrei



commit 2ef538d39787b1f4de79a2c708c3b4135bcbce60
Author: Lapo Calamandrei <calamandrei gmail com>
Date:   Thu Mar 17 22:09:46 2011 -0500

    gnomine: add icons from Lapo Calamandrei
    
    Approved by release-team and docs team.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=644820

 gnomine/icons/hicolor/16x16/apps/gnomine.png   |  Bin 0 -> 933 bytes
 gnomine/icons/hicolor/22x22/apps/gnomine.png   |  Bin 0 -> 1264 bytes
 gnomine/icons/hicolor/24x24/apps/gnomine.png   |  Bin 0 -> 1301 bytes
 gnomine/icons/hicolor/256x256/apps/gnomine.png |  Bin 0 -> 37178 bytes
 gnomine/icons/hicolor/32x32/apps/gnomine.png   |  Bin 0 -> 2354 bytes
 gnomine/icons/hicolor/48x48/apps/gnomine.png   |  Bin 0 -> 3939 bytes
 gnomine/icons/render-bitmaps.rb                |   49 +
 gnomine/icons/src/gnomine.svg                  | 8332 ++++++++++++++++++++++++
 8 files changed, 8381 insertions(+), 0 deletions(-)
---
diff --git a/gnomine/icons/hicolor/16x16/apps/gnomine.png b/gnomine/icons/hicolor/16x16/apps/gnomine.png
new file mode 100644
index 0000000..66986ef
Binary files /dev/null and b/gnomine/icons/hicolor/16x16/apps/gnomine.png differ
diff --git a/gnomine/icons/hicolor/22x22/apps/gnomine.png b/gnomine/icons/hicolor/22x22/apps/gnomine.png
new file mode 100644
index 0000000..a211bf9
Binary files /dev/null and b/gnomine/icons/hicolor/22x22/apps/gnomine.png differ
diff --git a/gnomine/icons/hicolor/24x24/apps/gnomine.png b/gnomine/icons/hicolor/24x24/apps/gnomine.png
new file mode 100644
index 0000000..b6b37d0
Binary files /dev/null and b/gnomine/icons/hicolor/24x24/apps/gnomine.png differ
diff --git a/gnomine/icons/hicolor/256x256/apps/gnomine.png b/gnomine/icons/hicolor/256x256/apps/gnomine.png
new file mode 100644
index 0000000..bd8c86d
Binary files /dev/null and b/gnomine/icons/hicolor/256x256/apps/gnomine.png differ
diff --git a/gnomine/icons/hicolor/32x32/apps/gnomine.png b/gnomine/icons/hicolor/32x32/apps/gnomine.png
new file mode 100644
index 0000000..8e8b435
Binary files /dev/null and b/gnomine/icons/hicolor/32x32/apps/gnomine.png differ
diff --git a/gnomine/icons/hicolor/48x48/apps/gnomine.png b/gnomine/icons/hicolor/48x48/apps/gnomine.png
new file mode 100644
index 0000000..36d8d4b
Binary files /dev/null and b/gnomine/icons/hicolor/48x48/apps/gnomine.png differ
diff --git a/gnomine/icons/render-bitmaps.rb b/gnomine/icons/render-bitmaps.rb
new file mode 100755
index 0000000..b083816
--- /dev/null
+++ b/gnomine/icons/render-bitmaps.rb
@@ -0,0 +1,49 @@
+#!/usr/bin/env ruby
+
+require "rexml/document"
+require "ftools"
+include REXML
+INKSCAPE = '/usr/bin/inkscape'
+SRC = "./src"
+
+def renderit(file,explicit)
+  svg = Document.new(File.new("#{SRC}/#{file}", 'r'))
+  #puts "DEBUG: #{file}"
+  svg.root.each_element("//g[contains(@inkscape:label,'baseplate')]") do |icon|
+    if icon.attributes['inkscape:groupmode']=='layer' #only look inside layers, there may be pasted groups
+      context = icon.elements["text[ inkscape:label='context']/tspan"].nil? ? 'blank' : icon.elements["text[ inkscape:label='context']/tspan"].text
+      icon_name = icon.elements["text[ inkscape:label='icon-name']/tspan"].nil? ? 'blank' : icon.elements["text[ inkscape:label='icon-name']/tspan"].text
+      puts "#{file}:#{icon.attributes['inkscape:label']}  #{context}/#{icon_name}"
+      icon.each_element("rect") do |box|
+        dir = "hicolor/#{box.attributes['width']}x#{box.attributes['height']}/#{context}"
+        out = "#{dir}/#{icon_name.gsub(/$/,'.png')}"
+        cmd = "#{INKSCAPE} -i #{box.attributes['id']} -e #{out} #{SRC}/#{file} > /dev/null 2>&1"
+        File.makedirs(dir) unless File.exists?(dir)
+        if (!explicit && File.exists?(out))
+          print "-" #skip if PNG exists
+        else
+          system(cmd)
+          print "."
+        end
+      end
+      puts ''
+    end
+  end
+end
+
+if (ARGV[0].nil?) #render all SVGs
+  system("mkdir hicolor/") unless File.exists?('hicolor')
+  puts "Rendering from SVGs in #{SRC}"
+  Dir.foreach(SRC) do |file|
+    renderit(file, false) if file.match(/svg$/)
+  end
+  puts "\nrendered all SVGs"
+else #only render the SVG passed
+  file = "#{ARGV[0]}.svg"
+  if (File.exists?("#{SRC}/#{file}"))
+    renderit(file, true)
+    puts "\nrendered #{file}"
+  else
+    puts "[E] No such file (#{file})"
+  end
+end
diff --git a/gnomine/icons/src/gnomine.svg b/gnomine/icons/src/gnomine.svg
new file mode 100644
index 0000000..2eaef52
--- /dev/null
+++ b/gnomine/icons/src/gnomine.svg
@@ -0,0 +1,8332 @@
+<?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";
+   inkscape:export-ydpi="90.000000"
+   inkscape:export-xdpi="90.000000"
+   inkscape:export-filename="/home/lapo/firewall.png"
+   width="400"
+   height="300"
+   id="svg11300"
+   sodipodi:version="0.32"
+   inkscape:version="0.48.1 r9760"
+   sodipodi:docname="gnomine.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   version="1.0"
+   style="display:inline;enable-background:new">
+  <title
+     id="title4872">Firewall</title>
+  <sodipodi:namedview
+     stroke="#ef2929"
+     fill="#f57900"
+     id="base"
+     pagecolor="#474747"
+     bordercolor="#666666"
+     borderopacity="0.25490196"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="320.02213"
+     inkscape:cy="179.80921"
+     inkscape:current-layer="layer5"
+     showgrid="false"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:showpageshadow="false"
+     inkscape:window-width="1024"
+     inkscape:window-height="576"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     width="400px"
+     height="300px"
+     inkscape:snap-nodes="false"
+     inkscape:snap-bbox="true"
+     gridtolerance="10000"
+     inkscape:object-nodes="true"
+     inkscape:snap-grids="true"
+     showguides="false"
+     inkscape:guide-bbox="true"
+     inkscape:window-maximized="1">
+    <inkscape:grid
+       spacingy="1px"
+       spacingx="1px"
+       id="grid5883"
+       type="xygrid"
+       enabled="true"
+       visible="true"
+       empspacing="4"
+       snapvisiblegridlinesonly="true" />
+    <inkscape:grid
+       type="xygrid"
+       id="grid11592"
+       empspacing="2"
+       visible="true"
+       enabled="false"
+       spacingx="0.5px"
+       spacingy="0.5px"
+       color="#ff0000"
+       opacity="0.1254902"
+       empcolor="#ff0000"
+       empopacity="0.25098039"
+       snapvisiblegridlinesonly="true" />
+    <sodipodi:guide
+       orientation="-0.70710678,0.70710678"
+       position="309.8125,173.625"
+       id="guide9630" />
+    <sodipodi:guide
+       orientation="0,1"
+       position="142.125,192.875"
+       id="guide3940" />
+    <sodipodi:guide
+       orientation="0,1"
+       position="143.3125,186.75"
+       id="guide3942" />
+    <sodipodi:guide
+       orientation="0,1"
+       position="143.5625,152.5"
+       id="guide4163" />
+    <sodipodi:guide
+       orientation="0,1"
+       position="147,162.4375"
+       id="guide4165" />
+  </sodipodi:namedview>
+  <defs
+     id="defs3">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6900">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0"
+         id="stop6902" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop6904" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient14286">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop14288" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop14290" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient13160">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop13162" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop13164" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11415">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="0"
+         id="stop11417" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop11419" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9797">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9799" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop9801" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9789">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop9791" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop9793" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8089">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8091" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8093" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient7523">
+      <stop
+         style="stop-color:#c17d11;stop-opacity:1;"
+         offset="0"
+         id="stop7525" />
+      <stop
+         style="stop-color:#c17d11;stop-opacity:0;"
+         offset="1"
+         id="stop7527" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient7437">
+      <stop
+         style="stop-color:#c17d11;stop-opacity:1;"
+         offset="0"
+         id="stop7439" />
+      <stop
+         style="stop-color:#c17d11;stop-opacity:0;"
+         offset="1"
+         id="stop7441" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7151"
+       inkscape:collect="always">
+      <stop
+         id="stop7153"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop7155"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7103"
+       inkscape:collect="always">
+      <stop
+         id="stop7105"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7107"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7017"
+       inkscape:collect="always">
+      <stop
+         id="stop7019"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7021"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6891"
+       inkscape:collect="always">
+      <stop
+         id="stop6893"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop6895"
+         offset="1"
+         style="stop-color:#8f5902;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6814">
+      <stop
+         id="stop6816"
+         offset="0"
+         style="stop-color:#202425;stop-opacity:1" />
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0.39636952"
+         id="stop6818" />
+      <stop
+         id="stop6820"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6806">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6808" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6810" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6798">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6800" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6802" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6778">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6780" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6782" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6766">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6768" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6770" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6758">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6760" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6762" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6450">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6452" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6454" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6133"
+       inkscape:collect="always">
+      <stop
+         id="stop6135"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:0" />
+      <stop
+         id="stop6137"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6018">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6020" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6022" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5945">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5947" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5949" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5827">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5829" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5831" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5533">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5535" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5537" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5519"
+       inkscape:collect="always">
+      <stop
+         id="stop5521"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1" />
+      <stop
+         id="stop5523"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5513"
+       inkscape:collect="always">
+      <stop
+         id="stop5515"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1" />
+      <stop
+         id="stop5517"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5507"
+       inkscape:collect="always">
+      <stop
+         id="stop5509"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1" />
+      <stop
+         id="stop5511"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5491">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5493" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5495" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5471">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5473" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5475" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5009">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop5011" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop5013" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-6-9">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-9-9" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-3-4-2" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-8-0-1">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-4-5-6" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-9-7-3" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-5">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-5" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-3-1" />
+    </linearGradient>
+    <radialGradient
+       r="8.125"
+       fy="59.423355"
+       fx="141.58984"
+       cy="59.423355"
+       cx="141.58984"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4395-2"
+       xlink:href="#linearGradient4322-7-8-6"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-8-6">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-4-4" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-9-1" />
+    </linearGradient>
+    <radialGradient
+       r="8.125"
+       fy="59.423355"
+       fx="141.58984"
+       cy="59.423355"
+       cx="141.58984"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4353-5"
+       xlink:href="#linearGradient4322-7-2"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-2">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-6" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0"
+         offset="1"
+         id="stop4326-1-6" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-3">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-4" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="translate(2.165e-6,0)"
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6"
+       id="linearGradient4378-9"
+       x1="162.92871"
+       y1="107.86984"
+       x2="178.99722"
+       y2="123.93835"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient4294-6">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4296-7" />
+      <stop
+         id="stop4302-1"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4298-5" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="translate(2.165e-6,0)"
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6"
+       id="linearGradient4336-5"
+       x1="126.08249"
+       y1="110.68166"
+       x2="105.74149"
+       y2="123.6265"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient4693">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4695" />
+      <stop
+         id="stop4697"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4699" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4702">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4704" />
+      <stop
+         id="stop4706"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4708" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4614-0">
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path4616-8"
+         sodipodi:cx="139.5"
+         sodipodi:cy="153"
+         sodipodi:rx="85.5"
+         sodipodi:ry="85.5"
+         d="m 225,153 a 85.5,85.5 0 1 1 -171,0 85.5,85.5 0 1 1 171,0 z"
+         transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842079)" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4256-5"
+       id="radialGradient4612-3"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.4915336,5.7039143e-8,-5.7039144e-8,1.4915336,-55.961097,-51.564955)"
+       cx="113.85001"
+       cy="104.90626"
+       fx="113.85001"
+       fy="104.90626"
+       r="85.5" />
+    <linearGradient
+       id="linearGradient4256-5">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop4258-5" />
+      <stop
+         id="stop4268-0"
+         offset="0.19701476"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop4266-16"
+         offset="0.38564888"
+         style="stop-color:#2e3436;stop-opacity:1" />
+      <stop
+         id="stop4264-5"
+         offset="0.77129775"
+         style="stop-color:#000000;stop-opacity:1" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop4260-9" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4622-3">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.42"
+         id="feGaussianBlur4624-6" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4693"
+       id="linearGradient4931"
+       x1="88"
+       y1="151.15561"
+       x2="88"
+       y2="173.08171"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-5-9">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-5-0" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.502"
+         offset="1"
+         id="stop4326-1-3-1-1" />
+    </linearGradient>
+    <radialGradient
+       r="8.125"
+       fy="59.423355"
+       fx="141.58984"
+       cy="59.423355"
+       cx="141.58984"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4948"
+       xlink:href="#linearGradient4322-7-87-5-9"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-5-9-2">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-5-0-0" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-3-1-1-9" />
+    </linearGradient>
+    <radialGradient
+       r="8.125"
+       fy="59.423355"
+       fx="141.58984"
+       cy="59.423355"
+       cx="141.58984"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4982"
+       xlink:href="#linearGradient4322-7-87-5-9-2"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5009"
+       id="radialGradient5015"
+       cx="139.6783"
+       cy="58.375961"
+       fx="139.6783"
+       fy="58.375961"
+       r="8.125"
+       gradientTransform="matrix(0.99665873,1.0426584,-1.0406884,1.0887202,62.414599,-149.43271)"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter5029"
+       x="-0.13970178"
+       width="1.2794036"
+       y="-0.13353847"
+       height="1.2670769">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.94589749"
+         id="feGaussianBlur5031" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4702"
+       id="linearGradient5081"
+       x1="199.5"
+       y1="154.85313"
+       x2="199.5"
+       y2="171.88147"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       r="8.125"
+       fy="59.423355"
+       fx="141.58984"
+       cy="59.423355"
+       cx="141.58984"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient5098"
+       xlink:href="#linearGradient5519"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4702"
+       id="linearGradient5123"
+       x1="179.30908"
+       y1="212.71494"
+       x2="166.28676"
+       y2="220.23338"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       r="8.125"
+       fy="59.423355"
+       fx="141.58984"
+       cy="59.423355"
+       cx="141.58984"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient5140"
+       xlink:href="#linearGradient5507"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5513"
+       id="radialGradient5304"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6814"
+       id="linearGradient5308"
+       gradientUnits="userSpaceOnUse"
+       x1="108.9827"
+       y1="206.51538"
+       x2="122"
+       y2="216" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5419">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5421"
+         d="m 110,222.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66025 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66025 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter5447">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35075817"
+         id="feGaussianBlur5449" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5451">
+      <path
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 76.000002,164.00001 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 5.52285,0 9.999998,-5.37258 9.999998,-12 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+         id="path5453"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5455">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5457"
+         d="m 110,105.11028 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60854 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48418 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5459">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5461"
+         d="m 178,105.11029 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60853 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48418 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5463">
+      <path
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 212,164.00001 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 -3.30274,2.16121 -6.98189,5.55083 -10.78825,5.59501 -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 1.87648,1.46058 3.08158,3.73965 3.08158,6.30579 z"
+         id="path5465"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5467">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5469"
+         d="m 178,222.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66024 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66024 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5471"
+       id="linearGradient5477"
+       x1="116.29065"
+       y1="215.73637"
+       x2="119.92724"
+       y2="202.16443"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter5487">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35080906"
+         id="feGaussianBlur5489" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5491"
+       id="linearGradient5497"
+       x1="166"
+       y1="216"
+       x2="161.34698"
+       y2="196.84592"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter5529">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.36"
+         id="feGaussianBlur5531" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5533"
+       id="linearGradient5539"
+       x1="193.07744"
+       y1="168.97069"
+       x2="187.45963"
+       y2="148.00475"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter5730"
+       x="-0.16837669"
+       width="1.3367534"
+       y="-0.16340512"
+       height="1.3268102">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.6159591"
+         id="feGaussianBlur5732" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5779"
+       x="-0.24361463"
+       width="1.4872293"
+       y="-0.23649106"
+       height="1.4729821">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3387275"
+         id="feGaussianBlur5781" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5783">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35999999"
+         id="feGaussianBlur5785" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5799"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5801" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5807"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5809" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5815"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5817" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5823"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5825" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5827"
+       id="linearGradient5833"
+       x1="85.72522"
+       y1="168.19041"
+       x2="97.024734"
+       y2="148.61908"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter5884"
+       x="-0.24000001"
+       width="1.48"
+       y="-0.23999999"
+       height="1.48">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3999999"
+         id="feGaussianBlur5886" />
+    </filter>
+    <linearGradient
+       id="linearGradient4702-7">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4704-4" />
+      <stop
+         id="stop4706-48"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4708-1" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter5929"
+       x="-0.24"
+       width="1.48"
+       y="-0.24"
+       height="1.48">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.4"
+         id="feGaussianBlur5931" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5941"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5943" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5945"
+       id="linearGradient5951"
+       x1="108.10986"
+       y1="108.51185"
+       x2="126.2177"
+       y2="126.61969"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter5953">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35047999"
+         id="feGaussianBlur5955" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter5997"
+       x="-0.24385066"
+       width="1.4877013"
+       y="-0.23626906"
+       height="1.4725381">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3365333"
+         id="feGaussianBlur5999" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6002">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35047998"
+         id="feGaussianBlur6004" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6014"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6016" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6018"
+       id="linearGradient6024"
+       x1="178.93089"
+       y1="107.70029"
+       x2="157.16168"
+       y2="129.4695"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient4294-6-45">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4296-7-3" />
+      <stop
+         id="stop4302-1-1"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4298-5-5" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       id="filter6071"
+       x="-0.24385064"
+       width="1.4877013"
+       y="-0.23626908"
+       height="1.4725382">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3365332"
+         id="feGaussianBlur6073" />
+    </filter>
+    <linearGradient
+       id="linearGradient6133-4"
+       inkscape:collect="always">
+      <stop
+         id="stop6135-2"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:0" />
+      <stop
+         id="stop6137-2"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6422">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+         id="path6424"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6426">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 144,55.95977 c 4.432,0 7.13249,3.653731 8,8 L 156,84 c 0.86751,4.346269 -7.568,8 -12,8 -4.432,0 -12.86751,-3.653731 -12,-8 l 4,-20.04023 c 0.86751,-4.346269 3.568,-8 8,-8 z"
+         id="path6428"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6430">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 237.54816,109.96983 c 2.216,3.83822 0.40202,8.00378 -2.92821,10.9282 l -15.35534,13.48422 c -3.33023,2.92442 -10.71221,-2.55408 -12.92821,-6.39231 -2.216,-3.83822 -3.26953,-12.97045 0.92821,-14.3923 l 19.35534,-6.55602 c 4.19774,-1.42184 8.71221,-0.91002 10.92821,2.92821 z"
+         id="path6432"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6434">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 50.451833,109.96982 c -2.216,3.83822 -0.402022,8.00378 2.928203,10.9282 l 15.355349,13.48422 c 3.330225,2.92442 10.712203,-2.55408 12.928203,-6.39231 2.216,-3.83822 3.269532,-12.97045 -0.928203,-14.3923 l -19.355349,-6.55602 c -4.197735,-1.42184 -8.712203,-0.91002 -10.928203,2.92821 z"
+         id="path6436"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6438">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 50.451833,217.98994 c 2.216,3.83823 6.730468,4.35006 10.928203,2.92821 l 19.355349,-6.55602 c 4.197735,-1.42185 3.144203,-10.55408 0.928203,-14.3923 -2.216,-3.83823 -9.597978,-9.31673 -12.928203,-6.39231 l -15.355349,13.48422 c -3.330225,2.92442 -5.144203,7.08998 -2.928203,10.9282 z"
+         id="path6440"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6442">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 237.54816,217.98993 c -2.216,3.83823 -6.73047,4.35005 -10.92821,2.92821 l -19.35534,-6.55602 c -4.19774,-1.42185 -3.14421,-10.55408 -0.92821,-14.3923 2.216,-3.83823 9.59798,-9.31673 12.92821,-6.39231 l 15.35534,13.48422 c 3.33023,2.92442 5.14421,7.08998 2.92821,10.9282 z"
+         id="path6444"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <filter
+       inkscape:collect="always"
+       id="filter6446">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265467"
+         id="feGaussianBlur6448" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6462"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6464" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6474"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6476" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6478">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265467"
+         id="feGaussianBlur6480" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6482">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.45123312"
+         id="feGaussianBlur6484" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6510"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6512" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6556"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6558" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4702-7"
+       id="linearGradient6584"
+       gradientUnits="userSpaceOnUse"
+       x1="135.47345"
+       y1="253.97987"
+       x2="147.93036"
+       y2="253.97987" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6133"
+       id="radialGradient6586"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6"
+       id="linearGradient6604"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.165e-6,0)"
+       x1="131.93791"
+       y1="73.979881"
+       x2="156.06209"
+       y2="73.979881" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-3"
+       id="radialGradient6606"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6640"
+       id="radialGradient6646"
+       cx="144"
+       cy="268.25"
+       fx="144"
+       fy="268.25"
+       r="18"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640-8">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642-9" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644-8" />
+    </linearGradient>
+    <radialGradient
+       r="18"
+       fy="268.25"
+       fx="144"
+       cy="268.25"
+       cx="144"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient6663"
+       xlink:href="#linearGradient6640-8"
+       inkscape:collect="always" />
+    <filter
+       inkscape:collect="always"
+       id="filter6690"
+       x="-0.023466841"
+       width="1.0469337"
+       y="-0.21120157"
+       height="1.4224031">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35200262"
+         id="feGaussianBlur6692" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6706"
+       x="-0.044326255"
+       width="1.0886525"
+       y="-0.3989363"
+       height="1.7978726">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.66489383"
+         id="feGaussianBlur6708" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640-8-0">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642-9-6" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644-8-7" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6690-9"
+       x="-0.02346684"
+       width="1.0469337"
+       y="-0.21120156"
+       height="1.4224031">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35200262"
+         id="feGaussianBlur6692-4" />
+    </filter>
+    <radialGradient
+       r="18"
+       fy="268.25"
+       fx="144"
+       cy="268.25"
+       cx="144"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient6727"
+       xlink:href="#linearGradient6640-8-0"
+       inkscape:collect="always" />
+    <filter
+       inkscape:collect="always"
+       id="filter6750">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265465"
+         id="feGaussianBlur6752" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6754">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.45123312"
+         id="feGaussianBlur6756" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6758"
+       id="linearGradient6764"
+       x1="146.35495"
+       y1="73.979881"
+       x2="146.35495"
+       y2="104.23821"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter6774">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265469"
+         id="feGaussianBlur6776" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter6794"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6796" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6798"
+       id="linearGradient6804"
+       x1="137.18481"
+       y1="254.23044"
+       x2="137.18481"
+       y2="228.49049"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       y2="100.59099"
+       x2="76.860779"
+       y1="102.08426"
+       x1="58.863068"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6855-2"
+       xlink:href="#linearGradient6891"
+       inkscape:collect="always"
+       gradientTransform="translate(-4.25,12.75)" />
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6973-1"
+       x="-0.22220202"
+       width="1.444404"
+       y="-0.13188948"
+       height="1.263779">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.84802751"
+         id="feGaussianBlur6975-8" />
+    </filter>
+    <linearGradient
+       y2="99"
+       x2="81.280197"
+       y1="99"
+       x1="58"
+       gradientTransform="matrix(0.56810015,0.60654664,-0.7920263,0.219411,149.11001,55.506413)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6994"
+       xlink:href="#linearGradient7017"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="91.604156"
+       x2="62.453705"
+       y1="96.536095"
+       x1="73.46138"
+       gradientTransform="matrix(0.73811824,-0.67467138,0.67467138,0.73811824,-23.900921,130.52102)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient7072"
+       xlink:href="#linearGradient7103"
+       inkscape:collect="always" />
+    <filter
+       inkscape:collect="always"
+       id="filter7099"
+       x="-0.14657515"
+       width="1.2931503"
+       y="-0.35881699"
+       height="1.717634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.96784603"
+         id="feGaussianBlur7101" />
+    </filter>
+    <linearGradient
+       y2="109.09691"
+       x2="80.603035"
+       y1="99"
+       x1="58"
+       gradientTransform="matrix(0.49169968,0.87076485,-0.87076485,0.49169968,189.7035,-33.000027)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient7124"
+       xlink:href="#linearGradient7151"
+       inkscape:collect="always" />
+    <filter
+       inkscape:collect="always"
+       id="filter7147"
+       x="-0.37900959"
+       width="1.7580192"
+       y="-0.13434519"
+       height="1.2686904">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.5937574"
+         id="feGaussianBlur7149" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter7221"
+       x="-0.24715447"
+       width="1.4943089"
+       y="-0.24715447"
+       height="1.4943089">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="17.609756"
+         id="feGaussianBlur7223" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6832-2">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6834-10" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop6836-91" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7233-7"
+       x="-0.097246327"
+       width="1.1944926"
+       y="-0.1372069"
+       height="1.2744138">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.94329741"
+         id="feGaussianBlur7235-8" />
+    </filter>
+    <linearGradient
+       id="linearGradient7017-3-7"
+       inkscape:collect="always">
+      <stop
+         id="stop7019-9-4"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7021-1-9"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       y2="99"
+       x2="81.280197"
+       y1="99"
+       x1="58"
+       gradientTransform="matrix(0.56810015,0.60654664,-0.7920263,0.219411,207.59872,58.505443)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient7332"
+       xlink:href="#linearGradient7017-3-7"
+       inkscape:collect="always" />
+    <filter
+       inkscape:collect="always"
+       id="filter7367"
+       x="-0.23234185"
+       width="1.4646837"
+       y="-0.17307134"
+       height="1.3461427">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.99563613"
+         id="feGaussianBlur7369" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter7433"
+       x="-0.32048486"
+       width="1.6409697"
+       y="-0.29820374"
+       height="1.5964075">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.1730454"
+         id="feGaussianBlur7435" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7437"
+       id="linearGradient7443"
+       x1="145.92213"
+       y1="147.34669"
+       x2="149.33258"
+       y2="153.44215"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,6)" />
+    <filter
+       inkscape:collect="always"
+       id="filter7519"
+       x="-0.19716239"
+       width="1.3943248"
+       y="-0.19960056"
+       height="1.3992011">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.532899"
+         id="feGaussianBlur7521" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7523"
+       id="linearGradient7529"
+       x1="166.67879"
+       y1="220.0625"
+       x2="158.07123"
+       y2="208.5625"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient7017-3-7-6-4"
+       inkscape:collect="always">
+      <stop
+         id="stop7019-9-4-7-4"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7021-1-9-2-8"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       y2="105.26193"
+       x2="85.609734"
+       y1="89.751762"
+       x1="73.710526"
+       gradientTransform="matrix(0.56810015,0.60654664,-0.7920263,0.219411,229.71729,98.295787)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient7586"
+       xlink:href="#linearGradient7017-3-7-6-4"
+       inkscape:collect="always" />
+    <filter
+       inkscape:collect="always"
+       id="filter7609"
+       x="-0.20819252"
+       width="1.416385"
+       y="-0.57494178"
+       height="2.1498836">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.9899214"
+         id="feGaussianBlur7611" />
+    </filter>
+    <linearGradient
+       id="linearGradient7741-7">
+      <stop
+         style="stop-color:#000000;stop-opacity:0"
+         offset="0"
+         id="stop7743-8" />
+      <stop
+         id="stop7749-8"
+         offset="0.49999997"
+         style="stop-color:#000000;stop-opacity:0" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop7745-1" />
+    </linearGradient>
+    <radialGradient
+       r="12.062093"
+       fy="240.18057"
+       fx="144"
+       cy="240.18057"
+       cx="144"
+       gradientTransform="matrix(8.514583,-3.3343897e-7,8.613493e-8,2.199512,-1082.1,-265.03662)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient7767"
+       xlink:href="#linearGradient7741-7"
+       inkscape:collect="always" />
+    <filter
+       inkscape:collect="always"
+       id="filter7850"
+       x="-0.48519575"
+       width="1.9703915"
+       y="-0.1047916"
+       height="1.2095832">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.967264"
+         id="feGaussianBlur7852" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter7901"
+       x="-0.15924067"
+       width="1.3184813"
+       y="-0.36175329"
+       height="1.7235066">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.71125973"
+         id="feGaussianBlur7903" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8021"
+       x="-0.13011438"
+       width="1.2602288"
+       y="-0.25521741"
+       height="1.5104348">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.132019"
+         id="feGaussianBlur8023" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8079"
+       x="-0.17968155"
+       width="1.3593631"
+       y="-0.21346547"
+       height="1.4269309">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.2720159"
+         id="feGaussianBlur8081" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8083"
+       x="-0.15265905"
+       width="1.3053181"
+       y="-0.32692241"
+       height="1.6538448">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.3658069"
+         id="feGaussianBlur8085" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8089"
+       id="linearGradient8095"
+       x1="161.9487"
+       y1="91.185715"
+       x2="161.9487"
+       y2="109.57566"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter8101"
+       x="-0.09587889"
+       width="1.1917578"
+       y="-0.15029664"
+       height="1.3005933">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.4756098"
+         id="feGaussianBlur8103" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient7437-5">
+      <stop
+         style="stop-color:#c17d11;stop-opacity:1;"
+         offset="0"
+         id="stop7439-1" />
+      <stop
+         style="stop-color:#c17d11;stop-opacity:0;"
+         offset="1"
+         id="stop7441-5" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7433-0"
+       x="-0.32048485"
+       width="1.6409698"
+       y="-0.29820374"
+       height="1.5964075">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.1730454"
+         id="feGaussianBlur7435-3" />
+    </filter>
+    <linearGradient
+       id="linearGradient6891-2"
+       inkscape:collect="always">
+      <stop
+         id="stop6893-3"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop6895-9"
+         offset="1"
+         style="stop-color:#8f5902;stop-opacity:0" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6422-6">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+         id="path6424-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient4702-7-3">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4704-4-4" />
+      <stop
+         id="stop4706-48-0"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4708-1-0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7741-7-8">
+      <stop
+         style="stop-color:#000000;stop-opacity:0"
+         offset="0"
+         id="stop7743-8-1" />
+      <stop
+         id="stop7749-8-7"
+         offset="0.49999997"
+         style="stop-color:#000000;stop-opacity:0" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop7745-1-9" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6133-6"
+       inkscape:collect="always">
+      <stop
+         id="stop6135-4"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:0" />
+      <stop
+         id="stop6137-8"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6510-4"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6512-1" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7850-8"
+       x="-0.48519576"
+       width="1.9703915"
+       y="-0.1047916"
+       height="1.2095832">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.967264"
+         id="feGaussianBlur7852-4" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6798-9">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6800-9" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6802-8" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6482-4">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.45123312"
+         id="feGaussianBlur6484-9" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7901-1"
+       x="-0.15924066"
+       width="1.3184813"
+       y="-0.36175328"
+       height="1.7235066">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.71125973"
+         id="feGaussianBlur7903-9" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6434-3">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 50.451833,109.96982 c -2.216,3.83822 -0.402022,8.00378 2.928203,10.9282 l 15.355349,13.48422 c 3.330225,2.92442 10.712203,-2.55408 12.928203,-6.39231 2.216,-3.83822 3.269532,-12.97045 -0.928203,-14.3923 l -19.355349,-6.55602 c -4.197735,-1.42184 -8.712203,-0.91002 -10.928203,2.92821 z"
+         id="path6436-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient4294-6-1">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4296-7-4" />
+      <stop
+         id="stop4302-1-6"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4298-5-6" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6832-2-8">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6834-10-6" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop6836-91-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7233-7-6"
+       x="-0.097246327"
+       width="1.1944926"
+       y="-0.1372069"
+       height="1.2744138">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.94329741"
+         id="feGaussianBlur7235-8-9" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-5-5">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-5-5" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-3-1-7" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6766-4">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6768-4" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6770-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6750-2">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265465"
+         id="feGaussianBlur6752-8" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6438-9">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 50.451833,217.98994 c 2.216,3.83823 6.730468,4.35006 10.928203,2.92821 l 19.355349,-6.55602 c 4.197735,-1.42185 3.144203,-10.55408 0.928203,-14.3923 -2.216,-3.83823 -9.597978,-9.31673 -12.928203,-6.39231 l -15.355349,13.48422 c -3.330225,2.92442 -5.144203,7.08998 -2.928203,10.9282 z"
+         id="path6440-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter8083-9"
+       x="-0.15265904"
+       width="1.3053181"
+       y="-0.32692242"
+       height="1.6538448">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.3658069"
+         id="feGaussianBlur8085-7" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-6-9-1">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-9-9-8" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-3-4-2-3" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6794-0"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6796-9" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6778-6">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6780-5" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6782-0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6774-6">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265469"
+         id="feGaussianBlur6776-3" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6426-8">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 144,55.95977 c 4.432,0 7.13249,3.653731 8,8 L 156,84 c 0.86751,4.346269 -7.568,8 -12,8 -4.432,0 -12.86751,-3.653731 -12,-8 l 4,-20.04023 c 0.86751,-4.346269 3.568,-8 8,-8 z"
+         id="path6428-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient7151-3"
+       inkscape:collect="always">
+      <stop
+         id="stop7153-6"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop7155-2"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7147-0"
+       x="-0.3790096"
+       width="1.7580192"
+       y="-0.13434519"
+       height="1.2686903">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.5937574"
+         id="feGaussianBlur7149-8" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-3-4">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-4-0" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-9-1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6758-2">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6760-4" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6762-3" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6754-1">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.45123312"
+         id="feGaussianBlur6756-4" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5459-3">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5461-4"
+         d="m 178,105.11029 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60853 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48418 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-8-6-4">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-4-4-1" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-9-1-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6014-0"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6016-6" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6018-8">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6020-1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6022-0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6002-8">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35047998"
+         id="feGaussianBlur6004-2" />
+    </filter>
+    <linearGradient
+       id="linearGradient7017-3-7-1"
+       inkscape:collect="always">
+      <stop
+         id="stop7019-9-4-9"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7021-1-9-2"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7367-4"
+       x="-0.23234186"
+       width="1.4646837"
+       y="-0.17307134"
+       height="1.3461426">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.99563613"
+         id="feGaussianBlur7369-7" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6071-0"
+       x="-0.24385063"
+       width="1.4877013"
+       y="-0.23626909"
+       height="1.4725382">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3365332"
+         id="feGaussianBlur6073-0" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5419-9">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5421-1"
+         d="m 110,222.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66025 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66025 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient6814-1">
+      <stop
+         id="stop6816-6"
+         offset="0"
+         style="stop-color:#202425;stop-opacity:1" />
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0.39636952"
+         id="stop6818-0" />
+      <stop
+         id="stop6820-5"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5513-4"
+       inkscape:collect="always">
+      <stop
+         id="stop5515-9"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1" />
+      <stop
+         id="stop5517-2"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5807-0"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5809-4" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5471-3">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5473-6" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5475-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5447-7">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35075817"
+         id="feGaussianBlur5449-5" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5730-4"
+       x="-0.16837668"
+       width="1.3367534"
+       y="-0.16340512"
+       height="1.3268102">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.6159591"
+         id="feGaussianBlur5732-0" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5467-5">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5469-8"
+         d="m 178,222.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66024 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66024 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient4702-9">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4704-7" />
+      <stop
+         id="stop4706-1"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4708-3" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5507-4"
+       inkscape:collect="always">
+      <stop
+         id="stop5509-5"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1" />
+      <stop
+         id="stop5511-8"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5815-5"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5817-0" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5491-3">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5493-1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5495-4" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5487-3">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35080906"
+         id="feGaussianBlur5489-7" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient7523-8">
+      <stop
+         style="stop-color:#c17d11;stop-opacity:1;"
+         offset="0"
+         id="stop7525-9" />
+      <stop
+         style="stop-color:#c17d11;stop-opacity:0;"
+         offset="1"
+         id="stop7527-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7519-4"
+       x="-0.19716239"
+       width="1.3943248"
+       y="-0.19960056"
+       height="1.3992012">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.532899"
+         id="feGaussianBlur7521-4" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5455-8">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5457-8"
+         d="m 110,105.11028 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60854 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48418 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-2-4">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-6-4" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0"
+         offset="1"
+         id="stop4326-1-6-1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5941-3"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5943-3" />
+    </filter>
+    <linearGradient
+       id="linearGradient7017-2"
+       inkscape:collect="always">
+      <stop
+         id="stop7019-7"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7021-5"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6973-1-9"
+       x="-0.22220202"
+       width="1.444404"
+       y="-0.13188948"
+       height="1.263779">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.84802751"
+         id="feGaussianBlur6975-8-1" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5945-7">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5947-6" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5949-3" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5953-8">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35047999"
+         id="feGaussianBlur5955-0" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5463-6">
+      <path
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 212,164.00001 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 -3.30274,2.16121 -6.98189,5.55083 -10.78825,5.59501 -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 1.87648,1.46058 3.08158,3.73965 3.08158,6.30579 z"
+         id="path5465-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient5519-1"
+       inkscape:collect="always">
+      <stop
+         id="stop5521-5"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1" />
+      <stop
+         id="stop5523-4"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5823-5"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5825-1" />
+    </filter>
+    <linearGradient
+       id="linearGradient7017-3-7-6-4-3"
+       inkscape:collect="always">
+      <stop
+         id="stop7019-9-4-7-4-0"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7021-1-9-2-8-3"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7609-9"
+       x="-0.20819253"
+       width="1.4163851"
+       y="-0.57494175"
+       height="2.1498835">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.9899214"
+         id="feGaussianBlur7611-4" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5533-2">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5535-9" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5537-0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5529-4">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.36"
+         id="feGaussianBlur5531-2" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6442-9">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 237.54816,217.98993 c -2.216,3.83823 -6.73047,4.35005 -10.92821,2.92821 l -19.35534,-6.55602 c -4.19774,-1.42185 -3.14421,-10.55408 -0.92821,-14.3923 2.216,-3.83823 9.59798,-9.31673 12.92821,-6.39231 l 15.35534,13.48422 c 3.33023,2.92442 5.14421,7.08998 2.92821,10.9282 z"
+         id="path6444-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient4294-6-45-0">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4296-7-3-3" />
+      <stop
+         id="stop4302-1-1-2"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4298-5-5-9" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6133-4-2"
+       inkscape:collect="always">
+      <stop
+         id="stop6135-2-1"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:0" />
+      <stop
+         id="stop6137-2-6"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6474-7"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6476-8" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter8021-1"
+       x="-0.13011438"
+       width="1.2602288"
+       y="-0.2552174"
+       height="1.5104347">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.132019"
+         id="feGaussianBlur8023-0" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6806-6">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6808-5" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6810-5" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6478-7">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265467"
+         id="feGaussianBlur6480-1" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5929-7"
+       x="-0.23999999"
+       width="1.48"
+       y="-0.23999999"
+       height="1.48">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.4"
+         id="feGaussianBlur5931-0" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8089-2">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8091-9" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8093-4" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter8101-1"
+       x="-0.095878892"
+       width="1.1917578"
+       y="-0.15029664"
+       height="1.3005933">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.4756098"
+         id="feGaussianBlur8103-9" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6430-8">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 237.54816,109.96983 c 2.216,3.83822 0.40202,8.00378 -2.92821,10.9282 l -15.35534,13.48422 c -3.33023,2.92442 -10.71221,-2.55408 -12.92821,-6.39231 -2.216,-3.83822 -3.26953,-12.97045 0.92821,-14.3923 l 19.35534,-6.55602 c 4.19774,-1.42184 8.71221,-0.91002 10.92821,2.92821 z"
+         id="path6432-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter8079-9"
+       x="-0.17968155"
+       width="1.3593631"
+       y="-0.21346547"
+       height="1.4269309">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.2720159"
+         id="feGaussianBlur8081-8" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-8-0-1-4">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-4-5-6-2" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-9-7-3-0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6462-3"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6464-5" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6450-9">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6452-4" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6454-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6446-1">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265467"
+         id="feGaussianBlur6448-5" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5451-6">
+      <path
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 76.000002,164.00001 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 5.52285,0 9.999998,-5.37258 9.999998,-12 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+         id="path5453-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient4693-3">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4695-6" />
+      <stop
+         id="stop4697-3"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4699-1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-5-9-5">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-5-0-5" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.502"
+         offset="1"
+         id="stop4326-1-3-1-1-5" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5799-1"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5801-8" />
+    </filter>
+    <linearGradient
+       id="linearGradient7103-9"
+       inkscape:collect="always">
+      <stop
+         id="stop7105-6"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7107-7"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7099-0"
+       x="-0.14657515"
+       width="1.2931503"
+       y="-0.35881698"
+       height="1.717634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.96784603"
+         id="feGaussianBlur7101-6" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5827-5">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5829-9" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5831-1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5783-8">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35999999"
+         id="feGaussianBlur5785-4" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5884-5"
+       x="-0.24000001"
+       width="1.48"
+       y="-0.23999999"
+       height="1.48">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3999999"
+         id="feGaussianBlur5886-7" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-5-9-2-7">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-5-0-0-0" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-3-1-1-9-5" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5029-5"
+       x="-0.13970178"
+       width="1.2794036"
+       y="-0.13353847"
+       height="1.2670768">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.94589749"
+         id="feGaussianBlur5031-9" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5009-0">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop5011-5" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop5013-5" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6556-3"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6558-3" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5779-1"
+       x="-0.24361463"
+       width="1.4872293"
+       y="-0.23649105"
+       height="1.472982">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3387275"
+         id="feGaussianBlur5781-8" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5997-0"
+       x="-0.24385066"
+       width="1.4877013"
+       y="-0.23626906"
+       height="1.4725381">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3365333"
+         id="feGaussianBlur5999-4" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4614-0-9">
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path4616-8-7"
+         sodipodi:cx="139.5"
+         sodipodi:cy="153"
+         sodipodi:rx="85.5"
+         sodipodi:ry="85.5"
+         d="m 225,153 a 85.5,85.5 0 1 1 -171,0 85.5,85.5 0 1 1 171,0 z"
+         transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842079)" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient4256-5-5">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop4258-5-6" />
+      <stop
+         id="stop4268-0-6"
+         offset="0.19701476"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop4266-16-1"
+         offset="0.38564888"
+         style="stop-color:#2e3436;stop-opacity:1" />
+      <stop
+         id="stop4264-5-7"
+         offset="0.77129775"
+         style="stop-color:#000000;stop-opacity:1" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop4260-9-1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7221-0"
+       x="-0.24715447"
+       width="1.4943089"
+       y="-0.24715447"
+       height="1.4943089">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="17.609756"
+         id="feGaussianBlur7223-1" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4622-3-1">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.42"
+         id="feGaussianBlur4624-6-6" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4256-5-5"
+       id="radialGradient9460"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.4915336,5.7039143e-8,-5.7039144e-8,1.4915336,-55.961097,-51.564955)"
+       cx="113.85001"
+       cy="104.90626"
+       fx="113.85001"
+       fy="104.90626"
+       r="85.5" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5009-0"
+       id="radialGradient9462"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.99665873,1.0426584,-1.0406884,1.0887202,62.414599,-149.43271)"
+       cx="139.6783"
+       cy="58.375961"
+       fx="139.6783"
+       fy="58.375961"
+       r="8.125" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-87-5-9-2-7"
+       id="radialGradient9464"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4693-3"
+       id="linearGradient9466"
+       gradientUnits="userSpaceOnUse"
+       x1="88"
+       y1="151.15561"
+       x2="88"
+       y2="173.08171" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-87-5-9-5"
+       id="radialGradient9468"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7103-9"
+       id="linearGradient9470"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.73811824,-0.67467138,0.67467138,0.73811824,-23.900921,130.52102)"
+       x1="73.46138"
+       y1="96.536095"
+       x2="62.453705"
+       y2="91.604156" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5827-5"
+       id="linearGradient9472"
+       gradientUnits="userSpaceOnUse"
+       x1="85.72522"
+       y1="168.19041"
+       x2="97.024734"
+       y2="148.61908" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1"
+       id="linearGradient9474"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1649998e-6,0)"
+       x1="215.84177"
+       y1="111.03336"
+       x2="223.08989"
+       y2="123.58749" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-8-0-1-4"
+       id="radialGradient9476"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6450-9"
+       id="linearGradient9478"
+       gradientUnits="userSpaceOnUse"
+       x1="229.22987"
+       y1="109.83543"
+       x2="183.72379"
+       y2="122.02875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8089-2"
+       id="linearGradient9480"
+       gradientUnits="userSpaceOnUse"
+       x1="161.9487"
+       y1="91.185715"
+       x2="161.9487"
+       y2="109.57566" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-45-0"
+       id="linearGradient9482"
+       gradientUnits="userSpaceOnUse"
+       x1="218.45596"
+       y1="197.62083"
+       x2="212.26465"
+       y2="208.34451" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6133-4-2"
+       id="radialGradient9484"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6806-6"
+       id="linearGradient9486"
+       gradientUnits="userSpaceOnUse"
+       x1="226.13094"
+       y1="209.16937"
+       x2="199.10883"
+       y2="193.56815" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4702-9"
+       id="linearGradient9488"
+       gradientUnits="userSpaceOnUse"
+       x1="199.5"
+       y1="154.85313"
+       x2="199.5"
+       y2="171.88147" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5519-1"
+       id="radialGradient9490"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7017-3-7-6-4-3"
+       id="linearGradient9492"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.56810015,0.60654664,-0.7920263,0.219411,229.71729,98.295787)"
+       x1="73.710526"
+       y1="89.751762"
+       x2="85.609734"
+       y2="105.26193" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5533-2"
+       id="linearGradient9494"
+       gradientUnits="userSpaceOnUse"
+       x1="193.07744"
+       y1="168.97069"
+       x2="187.45963"
+       y2="148.00475" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1"
+       id="linearGradient9496"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1649998e-6,0)"
+       x1="126.08249"
+       y1="110.68166"
+       x2="105.74149"
+       y2="123.6265" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-2-4"
+       id="radialGradient9498"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7017-2"
+       id="linearGradient9500"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.56810015,0.60654664,-0.7920263,0.219411,149.11001,55.506413)"
+       x1="58"
+       y1="99"
+       x2="81.280197"
+       y2="99" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5945-7"
+       id="linearGradient9502"
+       gradientUnits="userSpaceOnUse"
+       x1="108.10986"
+       y1="108.51185"
+       x2="126.2177"
+       y2="126.61969" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4702-9"
+       id="linearGradient9504"
+       gradientUnits="userSpaceOnUse"
+       x1="179.30908"
+       y1="212.71494"
+       x2="166.28676"
+       y2="220.23338" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5507-4"
+       id="radialGradient9506"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5491-3"
+       id="linearGradient9508"
+       gradientUnits="userSpaceOnUse"
+       x1="166"
+       y1="216"
+       x2="161.34698"
+       y2="196.84592" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7523-8"
+       id="linearGradient9510"
+       gradientUnits="userSpaceOnUse"
+       x1="166.67879"
+       y1="220.0625"
+       x2="158.07123"
+       y2="208.5625" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6814-1"
+       id="linearGradient9512"
+       gradientUnits="userSpaceOnUse"
+       x1="108.9827"
+       y1="206.51538"
+       x2="122"
+       y2="216" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5513-4"
+       id="radialGradient9514"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5471-3"
+       id="linearGradient9516"
+       gradientUnits="userSpaceOnUse"
+       x1="116.29065"
+       y1="215.73637"
+       x2="119.92724"
+       y2="202.16443" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1"
+       id="linearGradient9518"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1649998e-6,0)"
+       x1="162.92871"
+       y1="107.86984"
+       x2="178.99722"
+       y2="123.93835" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-8-6-4"
+       id="radialGradient9520"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6018-8"
+       id="linearGradient9522"
+       gradientUnits="userSpaceOnUse"
+       x1="178.93089"
+       y1="107.70029"
+       x2="157.16168"
+       y2="129.4695" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7017-3-7-1"
+       id="linearGradient9524"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.56810015,0.60654664,-0.7920263,0.219411,207.59872,58.505443)"
+       x1="58"
+       y1="99"
+       x2="81.280197"
+       y2="99" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1"
+       id="linearGradient9526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1649998e-6,0)"
+       x1="131.93791"
+       y1="73.979881"
+       x2="156.06209"
+       y2="73.979881" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7151-3"
+       id="linearGradient9528"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.49169968,0.87076485,-0.87076485,0.49169968,189.7035,-33.000027)"
+       x1="58"
+       y1="99"
+       x2="80.603035"
+       y2="109.09691" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-3-4"
+       id="radialGradient9530"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6758-2"
+       id="linearGradient9532"
+       gradientUnits="userSpaceOnUse"
+       x1="146.35495"
+       y1="73.979881"
+       x2="146.35495"
+       y2="104.23821" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1"
+       id="linearGradient9534"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1649998e-6,0)"
+       x1="62.452747"
+       y1="200.11595"
+       x2="68.579117"
+       y2="210.72713" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-87-6-9-1"
+       id="radialGradient9536"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6778-6"
+       id="linearGradient9538"
+       gradientUnits="userSpaceOnUse"
+       x1="67.711746"
+       y1="211.89384"
+       x2="94.088318"
+       y2="204.82626" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1"
+       id="linearGradient9540"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1649998e-6,0)"
+       x1="72.063026"
+       y1="111.1984"
+       x2="62.755943"
+       y2="127.31874" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6832-2-8"
+       id="linearGradient9542"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.6806412e-8,20.000004)"
+       x1="58"
+       y1="99"
+       x2="81.280197"
+       y2="99" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-87-5-5"
+       id="radialGradient9544"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6766-4"
+       id="linearGradient9546"
+       gradientUnits="userSpaceOnUse"
+       x1="70.019058"
+       y1="120.76239"
+       x2="88.745911"
+       y2="120.76239" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4702-7-3"
+       id="linearGradient9548"
+       gradientUnits="userSpaceOnUse"
+       x1="135.47345"
+       y1="253.97987"
+       x2="147.93036"
+       y2="253.97987" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7741-7-8"
+       id="radialGradient9550"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(8.514583,-3.3343897e-7,8.613493e-8,2.199512,-1082.1,-265.03662)"
+       cx="144"
+       cy="240.18057"
+       fx="144"
+       fy="240.18057"
+       r="12.062093" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6133-6"
+       id="radialGradient9552"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6798-9"
+       id="linearGradient9554"
+       gradientUnits="userSpaceOnUse"
+       x1="137.18481"
+       y1="254.23044"
+       x2="137.18481"
+       y2="228.49049" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6891-2"
+       id="linearGradient9556"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-4.2499996,6.75)"
+       x1="58.863068"
+       y1="102.08426"
+       x2="76.860779"
+       y2="100.59099" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7437-5"
+       id="linearGradient9558"
+       gradientUnits="userSpaceOnUse"
+       x1="145.92213"
+       y1="147.34669"
+       x2="149.33258"
+       y2="153.44215" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9789"
+       id="linearGradient9795"
+       x1="315.16068"
+       y1="61.922142"
+       x2="327.06931"
+       y2="106.36576"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.5,-0.8660254,0.8660254,0.5,93.795944,315.45934)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9797"
+       id="radialGradient9803"
+       cx="312.52502"
+       cy="67.446472"
+       fx="312.52502"
+       fy="67.446472"
+       r="18.841608"
+       gradientTransform="matrix(2.8390026,0,0,2.6372408,-574.73434,-111.71851)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640-0">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642-3" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644-6" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6706-9"
+       x="-0.044326253"
+       width="1.0886525"
+       y="-0.3989363"
+       height="1.7978725">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.66489383"
+         id="feGaussianBlur6708-9" />
+    </filter>
+    <radialGradient
+       r="18"
+       fy="268.25"
+       fx="144"
+       cy="268.25"
+       cx="144"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient9822"
+       xlink:href="#linearGradient6640-0"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640-0-6">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642-3-1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644-6-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6706-9-9"
+       x="-0.044326253"
+       width="1.0886525"
+       y="-0.3989363"
+       height="1.7978725">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.66489383"
+         id="feGaussianBlur6708-9-8" />
+    </filter>
+    <radialGradient
+       r="18"
+       fy="268.25"
+       fx="144"
+       cy="268.25"
+       cx="144"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient9862"
+       xlink:href="#linearGradient6640-0-6"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640-0-6-6">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642-3-1-9" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644-6-2-3" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6706-9-9-6"
+       x="-0.044326253"
+       width="1.0886525"
+       y="-0.3989363"
+       height="1.7978725">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.66489383"
+         id="feGaussianBlur6708-9-8-7" />
+    </filter>
+    <radialGradient
+       r="18"
+       fy="268.25"
+       fx="144"
+       cy="268.25"
+       cx="144"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient9902"
+       xlink:href="#linearGradient6640-0-6-6"
+       inkscape:collect="always" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4614-0-9-3">
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path4616-8-7-8"
+         sodipodi:cx="139.5"
+         sodipodi:cy="153"
+         sodipodi:rx="85.5"
+         sodipodi:ry="85.5"
+         d="m 225,153 a 85.5,85.5 0 1 1 -171,0 85.5,85.5 0 1 1 171,0 z"
+         transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842079)" />
+    </clipPath>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4256-5-5-6"
+       id="radialGradient9460-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.4915336,5.7039143e-8,-5.7039144e-8,1.4915336,-55.961097,-51.564955)"
+       cx="113.85001"
+       cy="104.90626"
+       fx="113.85001"
+       fy="104.90626"
+       r="85.5" />
+    <linearGradient
+       id="linearGradient4256-5-5-6">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop4258-5-6-7" />
+      <stop
+         id="stop4268-0-6-0"
+         offset="0.19701476"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop4266-16-1-7"
+         offset="0.38564888"
+         style="stop-color:#2e3436;stop-opacity:1" />
+      <stop
+         id="stop4264-5-7-7"
+         offset="0.77129775"
+         style="stop-color:#000000;stop-opacity:1" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop4260-9-1-6" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7221-0-5"
+       x="-0.24715447"
+       width="1.4943089"
+       y="-0.24715447"
+       height="1.4943089">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="17.609756"
+         id="feGaussianBlur7223-1-6" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4622-3-1-8">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.42"
+         id="feGaussianBlur4624-6-6-8" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5997-0-3"
+       x="-0.24385066"
+       width="1.4877013"
+       y="-0.23626906"
+       height="1.4725381">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3365333"
+         id="feGaussianBlur5999-4-3" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5779-1-7"
+       x="-0.24361463"
+       width="1.4872293"
+       y="-0.23649105"
+       height="1.472982">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3387275"
+         id="feGaussianBlur5781-8-0" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6556-3-7"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6558-3-7" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5009-0-5"
+       id="radialGradient9462-3"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.99665873,1.0426584,-1.0406884,1.0887202,62.414599,-149.43271)"
+       cx="139.6783"
+       cy="58.375961"
+       fx="139.6783"
+       fy="58.375961"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5009-0-5">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop5011-5-7" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop5013-5-3" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-87-5-9-2-7-1"
+       id="radialGradient9464-9"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-5-9-2-7-1">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-5-0-0-0-2" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-3-1-1-9-5-5" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5029-5-2"
+       x="-0.13970178"
+       width="1.2794036"
+       y="-0.13353847"
+       height="1.2670768">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.94589749"
+         id="feGaussianBlur5031-9-5" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5884-5-2"
+       x="-0.24000001"
+       width="1.48"
+       y="-0.23999999"
+       height="1.48">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3999999"
+         id="feGaussianBlur5886-7-4" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5451-6-0">
+      <path
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 76.000002,164.00001 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 5.52285,0 9.999998,-5.37258 9.999998,-12 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+         id="path5453-7-0"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4693-3-6"
+       id="linearGradient9466-4"
+       gradientUnits="userSpaceOnUse"
+       x1="88"
+       y1="151.15561"
+       x2="88"
+       y2="173.08171" />
+    <linearGradient
+       id="linearGradient4693-3-6">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4695-6-9" />
+      <stop
+         id="stop4697-3-6"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4699-1-5" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-87-5-9-5-2"
+       id="radialGradient9468-6"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-5-9-5-2">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-5-0-5-0" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.502"
+         offset="1"
+         id="stop4326-1-3-1-1-5-4" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5799-1-0"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5801-8-8" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7103-9-5"
+       id="linearGradient9470-8"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.73811824,-0.67467138,0.67467138,0.73811824,-23.900921,130.52102)"
+       x1="73.46138"
+       y1="96.536095"
+       x2="62.453705"
+       y2="91.604156" />
+    <linearGradient
+       id="linearGradient7103-9-5"
+       inkscape:collect="always">
+      <stop
+         id="stop7105-6-8"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7107-7-0"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7099-0-2"
+       x="-0.14657515"
+       width="1.2931503"
+       y="-0.35881698"
+       height="1.717634">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.96784603"
+         id="feGaussianBlur7101-6-7" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5827-5-8"
+       id="linearGradient9472-3"
+       gradientUnits="userSpaceOnUse"
+       x1="85.72522"
+       y1="168.19041"
+       x2="97.024734"
+       y2="148.61908" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5827-5-8">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5829-9-6" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5831-1-7" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5783-8-7">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35999999"
+         id="feGaussianBlur5785-4-8" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6430-8-1">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 237.54816,109.96983 c 2.216,3.83822 0.40202,8.00378 -2.92821,10.9282 l -15.35534,13.48422 c -3.33023,2.92442 -10.71221,-2.55408 -12.92821,-6.39231 -2.216,-3.83822 -3.26953,-12.97045 0.92821,-14.3923 l 19.35534,-6.55602 c 4.19774,-1.42184 8.71221,-0.91002 10.92821,2.92821 z"
+         id="path6432-5-2"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1-6"
+       id="linearGradient9474-2"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1650004e-6,0)"
+       x1="215.84177"
+       y1="111.03336"
+       x2="223.08989"
+       y2="123.58749" />
+    <linearGradient
+       id="linearGradient4294-6-1-6">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4296-7-4-6" />
+      <stop
+         id="stop4302-1-6-6"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4298-5-6-8" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter8079-9-8"
+       x="-0.17968155"
+       width="1.3593631"
+       y="-0.21346547"
+       height="1.4269309">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.2720159"
+         id="feGaussianBlur8081-8-2" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-8-0-1-4-7"
+       id="radialGradient9476-4"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-8-0-1-4-7">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-4-5-6-2-8" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-9-7-3-0-1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6462-3-5"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6464-5-2" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6450-9-0"
+       id="linearGradient9478-2"
+       gradientUnits="userSpaceOnUse"
+       x1="229.22987"
+       y1="109.83543"
+       x2="183.72379"
+       y2="122.02875" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6450-9-0">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6452-4-2" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6454-2-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6446-1-0">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265467"
+         id="feGaussianBlur6448-5-0" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8089-2-0"
+       id="linearGradient9480-2"
+       gradientUnits="userSpaceOnUse"
+       x1="161.9487"
+       y1="91.185715"
+       x2="161.9487"
+       y2="109.57566" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8089-2-0">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8091-9-2" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8093-4-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter8101-1-3"
+       x="-0.095878892"
+       width="1.1917578"
+       y="-0.15029664"
+       height="1.3005933">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.4756098"
+         id="feGaussianBlur8103-9-0" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5929-7-8"
+       x="-0.23999999"
+       width="1.48"
+       y="-0.23999999"
+       height="1.48">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.4"
+         id="feGaussianBlur5931-0-2" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6442-9-8">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 237.54816,217.98993 c -2.216,3.83823 -6.73047,4.35005 -10.92821,2.92821 l -19.35534,-6.55602 c -4.19774,-1.42185 -3.14421,-10.55408 -0.92821,-14.3923 2.216,-3.83823 9.59798,-9.31673 12.92821,-6.39231 l 15.35534,13.48422 c 3.33023,2.92442 5.14421,7.08998 2.92821,10.9282 z"
+         id="path6444-1-8"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-45-0-2"
+       id="linearGradient9482-6"
+       gradientUnits="userSpaceOnUse"
+       x1="218.45596"
+       y1="197.62083"
+       x2="212.26465"
+       y2="208.34451" />
+    <linearGradient
+       id="linearGradient4294-6-45-0-2">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4296-7-3-3-0" />
+      <stop
+         id="stop4302-1-1-2-4"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4298-5-5-9-1" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6133-4-2-3"
+       id="radialGradient9484-8"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       id="linearGradient6133-4-2-3"
+       inkscape:collect="always">
+      <stop
+         id="stop6135-2-1-9"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:0" />
+      <stop
+         id="stop6137-2-6-0"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6474-7-9"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6476-8-9" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter8021-1-8"
+       x="-0.13011438"
+       width="1.2602288"
+       y="-0.2552174"
+       height="1.5104347">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.132019"
+         id="feGaussianBlur8023-0-1" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6806-6-0"
+       id="linearGradient9486-6"
+       gradientUnits="userSpaceOnUse"
+       x1="226.13094"
+       y1="209.16937"
+       x2="199.10883"
+       y2="193.56815" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6806-6-0">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6808-5-5" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6810-5-8" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6478-7-5">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265467"
+         id="feGaussianBlur6480-1-9" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5463-6-8">
+      <path
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 212,164.00001 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 -3.30274,2.16121 -6.98189,5.55083 -10.78825,5.59501 -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 1.87648,1.46058 3.08158,3.73965 3.08158,6.30579 z"
+         id="path5465-5-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4702-9-0"
+       id="linearGradient9488-2"
+       gradientUnits="userSpaceOnUse"
+       x1="199.5"
+       y1="154.85313"
+       x2="199.5"
+       y2="171.88147" />
+    <linearGradient
+       id="linearGradient4702-9-0">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4704-7-7" />
+      <stop
+         id="stop4706-1-4"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4708-3-6" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5519-1-4"
+       id="radialGradient9490-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       id="linearGradient5519-1-4"
+       inkscape:collect="always">
+      <stop
+         id="stop5521-5-8"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1" />
+      <stop
+         id="stop5523-4-8"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5823-5-3"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5825-1-4" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7017-3-7-6-4-3-5"
+       id="linearGradient9492-2"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.56810015,0.60654664,-0.7920263,0.219411,229.71729,98.295787)"
+       x1="73.710526"
+       y1="89.751762"
+       x2="85.609734"
+       y2="105.26193" />
+    <linearGradient
+       id="linearGradient7017-3-7-6-4-3-5"
+       inkscape:collect="always">
+      <stop
+         id="stop7019-9-4-7-4-0-9"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7021-1-9-2-8-3-3"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7609-9-4"
+       x="-0.20819253"
+       width="1.4163851"
+       y="-0.57494175"
+       height="2.1498835">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.9899214"
+         id="feGaussianBlur7611-4-4" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5533-2-4"
+       id="linearGradient9494-5"
+       gradientUnits="userSpaceOnUse"
+       x1="193.07744"
+       y1="168.97069"
+       x2="187.45963"
+       y2="148.00475" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5533-2-4">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5535-9-3" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5537-0-4" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5529-4-5">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.36"
+         id="feGaussianBlur5531-2-6" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5455-8-2">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5457-8-5"
+         d="m 110,105.11028 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60854 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48418 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1-6"
+       id="linearGradient9496-1"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1650004e-6,0)"
+       x1="126.08249"
+       y1="110.68166"
+       x2="105.74149"
+       y2="123.6265" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-2-4-2"
+       id="radialGradient9498-1"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-2-4-2">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-6-4-1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0"
+         offset="1"
+         id="stop4326-1-6-1-9" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5941-3-7"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5943-3-5" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7017-2-7"
+       id="linearGradient9500-2"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.56810015,0.60654664,-0.7920263,0.219411,149.11001,55.506413)"
+       x1="58"
+       y1="99"
+       x2="81.280197"
+       y2="99" />
+    <linearGradient
+       id="linearGradient7017-2-7"
+       inkscape:collect="always">
+      <stop
+         id="stop7019-7-1"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7021-5-8"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6973-1-9-7"
+       x="-0.22220202"
+       width="1.444404"
+       y="-0.13188948"
+       height="1.263779">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.84802751"
+         id="feGaussianBlur6975-8-1-5" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5945-7-7"
+       id="linearGradient9502-8"
+       gradientUnits="userSpaceOnUse"
+       x1="108.10986"
+       y1="108.51185"
+       x2="126.2177"
+       y2="126.61969" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5945-7-7">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5947-6-0" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5949-3-5" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5953-8-9">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35047999"
+         id="feGaussianBlur5955-0-6" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5467-5-6">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5469-8-5"
+         d="m 178,222.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66024 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66024 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4702-9-0"
+       id="linearGradient9504-2"
+       gradientUnits="userSpaceOnUse"
+       x1="179.30908"
+       y1="212.71494"
+       x2="166.28676"
+       y2="220.23338" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5507-4-0"
+       id="radialGradient9506-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       id="linearGradient5507-4-0"
+       inkscape:collect="always">
+      <stop
+         id="stop5509-5-6"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1" />
+      <stop
+         id="stop5511-8-5"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5815-5-6"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5817-0-1" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5491-3-8"
+       id="linearGradient9508-2"
+       gradientUnits="userSpaceOnUse"
+       x1="166"
+       y1="216"
+       x2="161.34698"
+       y2="196.84592" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5491-3-8">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5493-1-9" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5495-4-3" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5487-3-9">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35080906"
+         id="feGaussianBlur5489-7-1" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7523-8-1"
+       id="linearGradient9510-6"
+       gradientUnits="userSpaceOnUse"
+       x1="166.67879"
+       y1="220.0625"
+       x2="158.07123"
+       y2="208.5625" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient7523-8-1">
+      <stop
+         style="stop-color:#c17d11;stop-opacity:1;"
+         offset="0"
+         id="stop7525-9-1" />
+      <stop
+         style="stop-color:#c17d11;stop-opacity:0;"
+         offset="1"
+         id="stop7527-2-1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7519-4-3"
+       x="-0.19716239"
+       width="1.3943248"
+       y="-0.19960056"
+       height="1.3992012">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.532899"
+         id="feGaussianBlur7521-4-0" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5730-4-2"
+       x="-0.16837668"
+       width="1.3367534"
+       y="-0.16340512"
+       height="1.3268102">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.6159591"
+         id="feGaussianBlur5732-0-3" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5419-9-7">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5421-1-0"
+         d="m 110,222.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66025 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66025 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6814-1-6"
+       id="linearGradient9512-1"
+       gradientUnits="userSpaceOnUse"
+       x1="108.9827"
+       y1="206.51538"
+       x2="122"
+       y2="216" />
+    <linearGradient
+       id="linearGradient6814-1-6">
+      <stop
+         id="stop6816-6-2"
+         offset="0"
+         style="stop-color:#202425;stop-opacity:1" />
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0.39636952"
+         id="stop6818-0-6" />
+      <stop
+         id="stop6820-5-5"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5513-4-4"
+       id="radialGradient9514-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       id="linearGradient5513-4-4"
+       inkscape:collect="always">
+      <stop
+         id="stop5515-9-0"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1" />
+      <stop
+         id="stop5517-2-2"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5807-0-4"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur5809-4-2" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5471-3-0"
+       id="linearGradient9516-9"
+       gradientUnits="userSpaceOnUse"
+       x1="116.29065"
+       y1="215.73637"
+       x2="119.92724"
+       y2="202.16443" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5471-3-0">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop5473-6-0" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop5475-2-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter5447-7-2">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35075817"
+         id="feGaussianBlur5449-5-9" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6071-0-3"
+       x="-0.24385063"
+       width="1.4877013"
+       y="-0.23626909"
+       height="1.4725382">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.3365332"
+         id="feGaussianBlur6073-0-7" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5459-3-0">
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path5461-4-5"
+         d="m 178,105.11029 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60853 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48418 z"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1-6"
+       id="linearGradient9518-4"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1650004e-6,0)"
+       x1="162.92871"
+       y1="107.86984"
+       x2="178.99722"
+       y2="123.93835" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-8-6-4-8"
+       id="radialGradient9520-1"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-8-6-4-8">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-4-4-1-5" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-9-1-2-6" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6014-0-8"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6016-6-0" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6018-8-5"
+       id="linearGradient9522-9"
+       gradientUnits="userSpaceOnUse"
+       x1="178.93089"
+       y1="107.70029"
+       x2="157.16168"
+       y2="129.4695" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6018-8-5">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6020-1-2" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6022-0-3" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6002-8-1">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.35047998"
+         id="feGaussianBlur6004-2-4" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7017-3-7-1-8"
+       id="linearGradient9524-1"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.56810015,0.60654664,-0.7920263,0.219411,207.59872,58.505443)"
+       x1="58"
+       y1="99"
+       x2="81.280197"
+       y2="99" />
+    <linearGradient
+       id="linearGradient7017-3-7-1-8"
+       inkscape:collect="always">
+      <stop
+         id="stop7019-9-4-9-7"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop7021-1-9-2-6"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7367-4-1"
+       x="-0.23234186"
+       width="1.4646837"
+       y="-0.17307134"
+       height="1.3461426">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.99563613"
+         id="feGaussianBlur7369-7-9" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6426-8-2">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 144,55.95977 c 4.432,0 7.13249,3.653731 8,8 L 156,84 c 0.86751,4.346269 -7.568,8 -12,8 -4.432,0 -12.86751,-3.653731 -12,-8 l 4,-20.04023 c 0.86751,-4.346269 3.568,-8 8,-8 z"
+         id="path6428-0-5"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1-6"
+       id="linearGradient9526-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1650004e-6,0)"
+       x1="131.93791"
+       y1="73.979881"
+       x2="156.06209"
+       y2="73.979881" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7151-3-6"
+       id="linearGradient9528-4"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.49169968,0.87076485,-0.87076485,0.49169968,189.7035,-33.000027)"
+       x1="58"
+       y1="99"
+       x2="80.603035"
+       y2="109.09691" />
+    <linearGradient
+       id="linearGradient7151-3-6"
+       inkscape:collect="always">
+      <stop
+         id="stop7153-6-5"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop7155-2-6"
+         offset="1"
+         style="stop-color:#c17d11;stop-opacity:0" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7147-0-5"
+       x="-0.3790096"
+       width="1.7580192"
+       y="-0.13434519"
+       height="1.2686903">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.5937574"
+         id="feGaussianBlur7149-8-8" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-3-4-5"
+       id="radialGradient9530-6"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-3-4-5">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-4-0-3" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-9-1-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6758-2-1"
+       id="linearGradient9532-9"
+       gradientUnits="userSpaceOnUse"
+       x1="146.35495"
+       y1="73.979881"
+       x2="146.35495"
+       y2="104.23821" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6758-2-1">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6760-4-5" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6762-3-7" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6754-1-1">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.45123312"
+         id="feGaussianBlur6756-4-7" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6438-9-9">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 50.451833,217.98994 c 2.216,3.83823 6.730468,4.35006 10.928203,2.92821 l 19.355349,-6.55602 c 4.197735,-1.42185 3.144203,-10.55408 0.928203,-14.3923 -2.216,-3.83823 -9.597978,-9.31673 -12.928203,-6.39231 l -15.355349,13.48422 c -3.330225,2.92442 -5.144203,7.08998 -2.928203,10.9282 z"
+         id="path6440-3-6"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1-6"
+       id="linearGradient9534-1"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1650004e-6,0)"
+       x1="62.452747"
+       y1="200.11595"
+       x2="68.579117"
+       y2="210.72713" />
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter8083-9-2"
+       x="-0.15265904"
+       width="1.3053181"
+       y="-0.32692242"
+       height="1.6538448">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.3658069"
+         id="feGaussianBlur8085-7-9" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-87-6-9-1-5"
+       id="radialGradient9536-8"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-6-9-1-5">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-9-9-8-0" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-3-4-2-3-5" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6794-0-3"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6796-9-1" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6778-6-6"
+       id="linearGradient9538-4"
+       gradientUnits="userSpaceOnUse"
+       x1="67.711746"
+       y1="211.89384"
+       x2="94.088318"
+       y2="204.82626" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6778-6-6">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6780-5-8" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6782-0-7" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6774-6-0">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265469"
+         id="feGaussianBlur6776-3-4" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6434-3-2">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 50.451833,109.96982 c -2.216,3.83822 -0.402022,8.00378 2.928203,10.9282 l 15.355349,13.48422 c 3.330225,2.92442 10.712203,-2.55408 12.928203,-6.39231 2.216,-3.83822 3.269532,-12.97045 -0.928203,-14.3923 l -19.355349,-6.55602 c -4.197735,-1.42184 -8.712203,-0.91002 -10.928203,2.92821 z"
+         id="path6436-7-9"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-1-6"
+       id="linearGradient9540-9"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1650004e-6,0)"
+       x1="72.063026"
+       y1="111.1984"
+       x2="62.755943"
+       y2="127.31874" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6832-2-8-5"
+       id="linearGradient9542-0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.6807093e-8,20.000004)"
+       x1="58"
+       y1="99"
+       x2="81.280197"
+       y2="99" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6832-2-8-5">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop6834-10-6-7" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop6836-91-2-6" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7233-7-6-5"
+       x="-0.097246327"
+       width="1.1944926"
+       y="-0.1372069"
+       height="1.2744138">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.94329741"
+         id="feGaussianBlur7235-8-9-8" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-87-5-5-2"
+       id="radialGradient9544-9"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4322-7-87-5-5-2">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4324-7-0-5-5-5" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop4326-1-3-1-7-1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6766-4-6"
+       id="linearGradient9546-2"
+       gradientUnits="userSpaceOnUse"
+       x1="70.019058"
+       y1="120.76239"
+       x2="88.745911"
+       y2="120.76239" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6766-4-6">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6768-4-9" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6770-2-3" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6750-2-8">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.47265465"
+         id="feGaussianBlur6752-8-1" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6422-6-1">
+      <path
+         style="color:#000000;fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+         id="path6424-7-6"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sssssss" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4702-7-3-6"
+       id="linearGradient9548-3"
+       gradientUnits="userSpaceOnUse"
+       x1="135.47345"
+       y1="253.97987"
+       x2="147.93036"
+       y2="253.97987" />
+    <linearGradient
+       id="linearGradient4702-7-3-6">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4704-4-4-9" />
+      <stop
+         id="stop4706-48-0-4"
+         offset="0.39636952"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop4708-1-0-3" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7741-7-8-4"
+       id="radialGradient9550-5"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(8.514583,-3.3343897e-7,8.613493e-8,2.199512,-1082.1,-265.03662)"
+       cx="144"
+       cy="240.18057"
+       fx="144"
+       fy="240.18057"
+       r="12.062093" />
+    <linearGradient
+       id="linearGradient7741-7-8-4">
+      <stop
+         style="stop-color:#000000;stop-opacity:0"
+         offset="0"
+         id="stop7743-8-1-2" />
+      <stop
+         id="stop7749-8-7-8"
+         offset="0.49999997"
+         style="stop-color:#000000;stop-opacity:0" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop7745-1-9-9" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6133-6-9"
+       id="radialGradient9552-4"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       id="linearGradient6133-6-9"
+       inkscape:collect="always">
+      <stop
+         id="stop6135-4-0"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:0" />
+      <stop
+         id="stop6137-8-6"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:1" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6510-4-4"
+       x="-0.24547599"
+       width="1.490952"
+       y="-0.23464617"
+       height="1.4692923">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.662077"
+         id="feGaussianBlur6512-1-9" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7850-8-4"
+       x="-0.48519576"
+       width="1.9703915"
+       y="-0.1047916"
+       height="1.2095832">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.967264"
+         id="feGaussianBlur7852-4-1" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6798-9-6"
+       id="linearGradient9554-7"
+       gradientUnits="userSpaceOnUse"
+       x1="137.18481"
+       y1="254.23044"
+       x2="137.18481"
+       y2="228.49049" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6798-9-6">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6800-9-5" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6802-8-5" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6482-4-7">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.45123312"
+         id="feGaussianBlur6484-9-7" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7901-1-3"
+       x="-0.15924066"
+       width="1.3184813"
+       y="-0.36175328"
+       height="1.7235066">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.71125973"
+         id="feGaussianBlur7903-9-8" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6891-2-4"
+       id="linearGradient9556-1"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-4.2499996,6.75)"
+       x1="58.863068"
+       y1="102.08426"
+       x2="76.860779"
+       y2="100.59099" />
+    <linearGradient
+       id="linearGradient6891-2-4"
+       inkscape:collect="always">
+      <stop
+         id="stop6893-3-1"
+         offset="0"
+         style="stop-color:#c17d11;stop-opacity:1" />
+      <stop
+         id="stop6895-9-4"
+         offset="1"
+         style="stop-color:#8f5902;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient7437-5-4">
+      <stop
+         style="stop-color:#c17d11;stop-opacity:1;"
+         offset="0"
+         id="stop7439-1-3" />
+      <stop
+         style="stop-color:#c17d11;stop-opacity:0;"
+         offset="1"
+         id="stop7441-5-9" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7433-0-0"
+       x="-0.32048485"
+       width="1.6409698"
+       y="-0.29820374"
+       height="1.5964075">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.1730454"
+         id="feGaussianBlur7435-3-6" />
+    </filter>
+    <linearGradient
+       y2="153.44215"
+       x2="149.33258"
+       y1="147.34669"
+       x1="145.92213"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient10372"
+       xlink:href="#linearGradient7437-5-4"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11415"
+       id="linearGradient11421"
+       x1="312.10831"
+       y1="140.55107"
+       x2="320.74637"
+       y2="155.51263"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0676011,0,0,1.0676011,-21.571264,-9.6795149)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640-0-8">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642-3-3" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644-6-7" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6706-9-8"
+       x="-0.044326253"
+       width="1.0886525"
+       y="-0.3989363"
+       height="1.7978725">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.66489383"
+         id="feGaussianBlur6708-9-83" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640-0-6-6-7">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642-3-1-9-3" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644-6-2-3-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6706-9-9-6-4"
+       x="-0.044326253"
+       width="1.0886525"
+       y="-0.3989363"
+       height="1.7978725">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.66489383"
+         id="feGaussianBlur6708-9-8-7-0" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640-0-6-8">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642-3-1-1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644-6-2-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6706-9-9-3"
+       x="-0.044326253"
+       width="1.0886525"
+       y="-0.3989363"
+       height="1.7978725">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.66489383"
+         id="feGaussianBlur6708-9-8-5" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6640-0-6-8"
+       id="radialGradient11562"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       cx="144"
+       cy="268.25"
+       fx="144"
+       fy="268.25"
+       r="18" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6640-0-6-6-7"
+       id="radialGradient11564"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       cx="144"
+       cy="268.25"
+       fx="144"
+       fy="268.25"
+       r="18" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6640-0-8"
+       id="radialGradient11566"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       cx="144"
+       cy="268.25"
+       fx="144"
+       fy="268.25"
+       r="18" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4614-0-9-35">
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path4616-8-7-6"
+         sodipodi:cx="139.5"
+         sodipodi:cy="153"
+         sodipodi:rx="85.5"
+         sodipodi:ry="85.5"
+         d="m 225,153 a 85.5,85.5 0 1 1 -171,0 85.5,85.5 0 1 1 171,0 z"
+         transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842079)" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient4256-5-5-1">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop4258-5-6-0" />
+      <stop
+         id="stop4268-0-6-7"
+         offset="0.19701476"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop4266-16-1-0"
+         offset="0.38564888"
+         style="stop-color:#2e3436;stop-opacity:1" />
+      <stop
+         id="stop4264-5-7-9"
+         offset="0.77129775"
+         style="stop-color:#000000;stop-opacity:1" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop4260-9-1-3" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7221-0-52"
+       x="-0.24715447"
+       width="1.4943089"
+       y="-0.24715447"
+       height="1.4943089">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="17.609756"
+         id="feGaussianBlur7223-1-2" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4622-3-1-9">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.42"
+         id="feGaussianBlur4624-6-6-5" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient13160"
+       id="radialGradient13266"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.2606547,0,0,1.2037624,-81.045515,-36.569085)"
+       cx="312.96875"
+       cy="180.42107"
+       fx="312.96875"
+       fy="180.42107"
+       r="2.03125" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640-0-8-6">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642-3-3-3" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644-6-7-2" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6706-9-8-8"
+       x="-0.044326253"
+       width="1.0886525"
+       y="-0.3989363"
+       height="1.7978725">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.66489383"
+         id="feGaussianBlur6708-9-83-1" />
+    </filter>
+    <radialGradient
+       r="18"
+       fy="268.25"
+       fx="144"
+       cy="268.25"
+       cx="144"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient13306"
+       xlink:href="#linearGradient6640-0-8-6"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6640-0-8-6-9">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6642-3-3-3-5" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop6644-6-7-2-3" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter6706-9-8-8-9"
+       x="-0.044326253"
+       width="1.0886525"
+       y="-0.3989363"
+       height="1.7978725">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.66489383"
+         id="feGaussianBlur6708-9-83-1-9" />
+    </filter>
+    <radialGradient
+       r="18"
+       fy="268.25"
+       fx="144"
+       cy="268.25"
+       cx="144"
+       gradientTransform="matrix(1,0,0,0.11111111,0,238.44444)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient13346"
+       xlink:href="#linearGradient6640-0-8-6-9"
+       inkscape:collect="always" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4614-0-9-35-4">
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path4616-8-7-6-1"
+         sodipodi:cx="139.5"
+         sodipodi:cy="153"
+         sodipodi:rx="85.5"
+         sodipodi:ry="85.5"
+         d="m 225,153 a 85.5,85.5 0 1 1 -171,0 85.5,85.5 0 1 1 171,0 z"
+         transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842079)" />
+    </clipPath>
+    <linearGradient
+       id="linearGradient4256-5-5-1-4">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop4258-5-6-0-7" />
+      <stop
+         id="stop4268-0-6-7-4"
+         offset="0.19701476"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop4266-16-1-0-8"
+         offset="0.38564888"
+         style="stop-color:#2e3436;stop-opacity:1" />
+      <stop
+         id="stop4264-5-7-9-8"
+         offset="0.77129775"
+         style="stop-color:#000000;stop-opacity:1" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop4260-9-1-3-5" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter7221-0-52-3"
+       x="-0.24715447"
+       width="1.4943089"
+       y="-0.24715447"
+       height="1.4943089">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="17.609756"
+         id="feGaussianBlur7223-1-2-3" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4622-3-1-9-7">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.42"
+         id="feGaussianBlur4624-6-6-5-5" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4256-5-5-1-4"
+       id="radialGradient14154"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.4915336,5.7039143e-8,-5.7039144e-8,1.4915336,-55.961097,-51.564955)"
+       cx="113.85001"
+       cy="104.90626"
+       fx="113.85001"
+       fy="104.90626"
+       r="85.5" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14286"
+       id="radialGradient14292"
+       cx="310.36823"
+       cy="221.96283"
+       fx="310.36823"
+       fy="221.96283"
+       r="2.125"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient14286-0">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop14288-3" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop14290-2" />
+    </linearGradient>
+    <radialGradient
+       r="2.125"
+       fy="221.96283"
+       fx="310.36823"
+       cy="221.96283"
+       cx="310.36823"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14309"
+       xlink:href="#linearGradient14286-0"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient14286-0-2">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop14288-3-3" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop14290-2-1" />
+    </linearGradient>
+    <radialGradient
+       r="2.125"
+       fy="221.96283"
+       fx="310.36823"
+       cy="221.96283"
+       cx="310.36823"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14343"
+       xlink:href="#linearGradient14286-0-2"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient14286-0-9">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop14288-3-8" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop14290-2-5" />
+    </linearGradient>
+    <radialGradient
+       r="2.125"
+       fy="221.96283"
+       fx="310.36823"
+       cy="221.96283"
+       cx="310.36823"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14377"
+       xlink:href="#linearGradient14286-0-9"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient14286-0-1">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop14288-3-7" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop14290-2-4" />
+    </linearGradient>
+    <radialGradient
+       r="2.125"
+       fy="221.96283"
+       fx="310.36823"
+       cy="221.96283"
+       cx="310.36823"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14377-0"
+       xlink:href="#linearGradient14286-0-1"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient14286-0-27">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop14288-3-0" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop14290-2-8" />
+    </linearGradient>
+    <radialGradient
+       r="2.125"
+       fy="221.96283"
+       fx="310.36823"
+       cy="221.96283"
+       cx="310.36823"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14377-5"
+       xlink:href="#linearGradient14286-0-27"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient14286-0-27-1">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop14288-3-0-2" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop14290-2-8-6" />
+    </linearGradient>
+    <radialGradient
+       r="2.125"
+       fy="221.96283"
+       fx="310.36823"
+       cy="221.96283"
+       cx="310.36823"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14445"
+       xlink:href="#linearGradient14286-0-27-1"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4256-5-5-1"
+       id="radialGradient14508"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.4915336,5.7039143e-8,-5.7039144e-8,1.4915336,-55.961097,-51.564955)"
+       cx="113.85001"
+       cy="104.90626"
+       fx="113.85001"
+       fy="104.90626"
+       r="85.5" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient13160-8">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop13162-1" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop13164-3" />
+    </linearGradient>
+    <radialGradient
+       r="2.03125"
+       fy="180.42107"
+       fx="312.96875"
+       cy="180.42107"
+       cx="312.96875"
+       gradientTransform="matrix(1.2606547,0,0,1.2037624,-87.973706,-24.56908)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14525"
+       xlink:href="#linearGradient13160-8"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient13160-8-7">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop13162-1-4" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop13164-3-8" />
+    </linearGradient>
+    <radialGradient
+       r="2.03125"
+       fy="180.42107"
+       fx="312.96875"
+       cy="180.42107"
+       cx="312.96875"
+       gradientTransform="matrix(1.2606547,0,0,1.2037624,-74.117294,-24.569085)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14559"
+       xlink:href="#linearGradient13160-8-7"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient13160-8-0">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop13162-1-7" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop13164-3-5" />
+    </linearGradient>
+    <radialGradient
+       r="2.03125"
+       fy="180.42107"
+       fx="312.96875"
+       cy="180.42107"
+       cx="312.96875"
+       gradientTransform="matrix(1.2606547,0,0,1.2037624,-74.117297,-32.569084)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14559-9"
+       xlink:href="#linearGradient13160-8-0"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient13160-8-1">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop13162-1-2" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop13164-3-2" />
+    </linearGradient>
+    <radialGradient
+       r="2.03125"
+       fy="180.42107"
+       fx="312.96875"
+       cy="180.42107"
+       cx="312.96875"
+       gradientTransform="matrix(1.2606547,0,0,1.2037624,-87.973714,-32.569088)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14559-4"
+       xlink:href="#linearGradient13160-8-1"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient13160-8-1-8">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop13162-1-2-0" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop13164-3-2-9" />
+    </linearGradient>
+    <radialGradient
+       r="2.03125"
+       fy="180.42107"
+       fx="312.96875"
+       cy="180.42107"
+       cx="312.96875"
+       gradientTransform="matrix(1.2606547,0,0,1.2037624,-81.045514,-20.569087)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14627"
+       xlink:href="#linearGradient13160-8-1-8"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient13160-8-1-8-9">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop13162-1-2-0-0" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop13164-3-2-9-1" />
+    </linearGradient>
+    <radialGradient
+       r="2.03125"
+       fy="180.42107"
+       fx="312.96875"
+       cy="180.42107"
+       cx="312.96875"
+       gradientTransform="matrix(1.2606547,0,0,1.2037624,-81.04551,-28.56908)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient14661"
+       xlink:href="#linearGradient13160-8-1-8-9"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6"
+       id="linearGradient4720"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.165e-6,0)"
+       x1="215.84177"
+       y1="111.03336"
+       x2="223.08989"
+       y2="123.58749" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-8-0-1"
+       id="radialGradient4722"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6450"
+       id="linearGradient4724"
+       gradientUnits="userSpaceOnUse"
+       x1="229.22987"
+       y1="109.83543"
+       x2="183.72379"
+       y2="122.02875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6"
+       id="linearGradient4726"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1650002e-6,0)"
+       x1="62.452747"
+       y1="200.11595"
+       x2="68.579117"
+       y2="210.72713" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-87-6-9"
+       id="radialGradient4728"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6778"
+       id="linearGradient4730"
+       gradientUnits="userSpaceOnUse"
+       x1="67.711746"
+       y1="211.89384"
+       x2="94.088318"
+       y2="204.82626" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6"
+       id="linearGradient4744"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.1650003e-6,0)"
+       x1="72.063026"
+       y1="111.1984"
+       x2="62.755943"
+       y2="127.31874" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6832-2"
+       id="linearGradient4746"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(2.680681e-8,20.000004)"
+       x1="58"
+       y1="99"
+       x2="81.280197"
+       y2="99" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4322-7-87-5"
+       id="radialGradient4748"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6766"
+       id="linearGradient4750"
+       gradientUnits="userSpaceOnUse"
+       x1="70.019058"
+       y1="120.76239"
+       x2="88.745911"
+       y2="120.76239" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4294-6-45"
+       id="linearGradient4752"
+       gradientUnits="userSpaceOnUse"
+       x1="218.45596"
+       y1="197.62083"
+       x2="212.26465"
+       y2="208.34451" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6133-4"
+       id="radialGradient4754"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,1.0461538,0,-2.9538462)"
+       cx="141.58984"
+       cy="59.423355"
+       fx="141.58984"
+       fy="59.423355"
+       r="8.125" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6806"
+       id="linearGradient4756"
+       gradientUnits="userSpaceOnUse"
+       x1="226.13094"
+       y1="209.16937"
+       x2="199.10883"
+       y2="193.56815" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11415-5"
+       id="linearGradient11421-6"
+       x1="312.10831"
+       y1="140.55107"
+       x2="320.74637"
+       y2="155.51263"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0676011,0,0,1.0676011,-21.571264,-9.6795149)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11415-5">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="0"
+         id="stop11417-9" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop11419-6" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6900"
+       id="linearGradient6906"
+       x1="316.20343"
+       y1="132.4006"
+       x2="321.98407"
+       y2="153.9744"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <metadata
+     id="metadata4">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Lapo Calamandrei</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:source />
+        <cc:license
+           rdf:resource="" />
+        <dc:title>Firewall</dc:title>
+        <dc:subject>
+          <rdf:Bag />
+        </dc:subject>
+        <dc:date />
+        <dc:rights>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:rights>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:publisher>
+        <dc:identifier />
+        <dc:relation />
+        <dc:language />
+        <dc:coverage />
+        <dc:description />
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:contributor>
+      </cc:Work>
+      <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
+     style="display:inline"
+     inkscape:groupmode="layer"
+     inkscape:label="artwork"
+     id="layer1">
+    <g
+       inkscape:groupmode="layer"
+       id="layer2"
+       inkscape:label="baseplate"
+       style="display:none"
+       sodipodi:insensitive="true">
+      <rect
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="rect6284"
+         width="48"
+         height="48"
+         x="296.0625"
+         y="51.99633"
+         inkscape:label="48x48" />
+      <rect
+         inkscape:label="32x32"
+         y="127.99634"
+         x="303"
+         height="32"
+         width="32"
+         id="rect6592"
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         inkscape:label="24x24"
+         y="178"
+         x="302"
+         height="24"
+         width="24"
+         id="rect5028"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         inkscape:label="16x16"
+         y="221"
+         x="303"
+         height="16"
+         width="16"
+         id="rect6833"
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="rect6749"
+         width="22"
+         height="22"
+         x="303"
+         y="179.05884"
+         inkscape:label="22x22" />
+      <text
+         id="context"
+         inkscape:label="context"
+         style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
+         x="31.87059"
+         xml:space="preserve"
+         y="18.860306"><tspan
+           id="tspan2716"
+           sodipodi:role="line"
+           x="31.87059"
+           y="18.860306"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans">apps</tspan></text>
+      <text
+         id="icon-name"
+         inkscape:label="icon-name"
+         sodipodi:linespacing="125%"
+         style="font-size:18px;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:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
+         x="302.87057"
+         xml:space="preserve"
+         y="18.860306"><tspan
+           id="tspan3023"
+           sodipodi:role="line"
+           x="302.87057"
+           y="18.860306"
+           style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold">gnomine</tspan></text>
+      <rect
+         inkscape:label="256x256"
+         y="32"
+         x="20"
+         height="256"
+         width="256"
+         id="rect6282"
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer4"
+       inkscape:label="smallsizes"
+       style="display:inline">
+      <g
+         id="g6154"
+         style="fill:#ffffff"
+         transform="matrix(1.25,0,0,1.25,-78,-47.25)" />
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer5"
+       inkscape:label="hires"
+       style="display:inline">
+      <g
+         id="g8198"
+         transform="matrix(5.0928038,0,0,2.2388776,20.301687,129.4805)"
+         style="opacity:0.4" />
+      <g
+         id="g8230"
+         inkscape:label="base"
+         style="display:inline"
+         transform="matrix(4.8890868,0,0,4.8890868,322.06038,251.81989)" />
+      <path
+         sodipodi:type="arc"
+         style="opacity:0.30958904;color:#000000;fill:url(#radialGradient6663);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6690);enable-background:accumulate"
+         id="path6610-1"
+         sodipodi:cx="144"
+         sodipodi:cy="268.25"
+         sodipodi:rx="18"
+         sodipodi:ry="2"
+         d="m 162,268.25 a 18,2 0 1 1 -36,0 18,2 0 1 1 36,0 z"
+         transform="matrix(5.956255,0,0,13.916721,-713.7007,-3492.4104)" />
+      <path
+         sodipodi:type="arc"
+         style="opacity:0.28958902;color:#000000;fill:url(#radialGradient6727);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6690-9);enable-background:accumulate"
+         id="path6610-1-6"
+         sodipodi:cx="144"
+         sodipodi:cy="268.25"
+         sodipodi:rx="18"
+         sodipodi:ry="2"
+         d="m 162,268.25 a 18,2 0 1 1 -36,0 18,2 0 1 1 36,0 z"
+         transform="matrix(3.4218403,0,0,7.5894005,-348.74499,-1784.1068)" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:url(#radialGradient6646);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6706);enable-background:accumulate"
+         id="path6610"
+         sodipodi:cx="144"
+         sodipodi:cy="268.25"
+         sodipodi:rx="18"
+         sodipodi:ry="2"
+         d="m 162,268.25 a 18,2 0 1 1 -36,0 18,2 0 1 1 36,0 z"
+         transform="matrix(0.51097734,0,0,1.3139417,70.419264,-101.21487)" />
+      <g
+         transform="translate(2.165e-6,-14)"
+         style="display:inline;enable-background:new"
+         id="g4583"
+         clip-path="url(#clipPath4614-0)">
+        <path
+           transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842082)"
+           d="m 225,153 c 0,47.22035 -38.27965,85.5 -85.5,85.5 C 92.279654,238.5 54,200.22035 54,153 c 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+           sodipodi:ry="85.5"
+           sodipodi:rx="85.5"
+           sodipodi:cy="153"
+           sodipodi:cx="139.5"
+           id="path3003"
+           style="color:#000000;fill:url(#radialGradient4612-3);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(0.89417017,0,0,0.89417017,10.674542,18.603242)"
+           style="opacity:0.72328766;color:#000000;fill:none;stroke:#c17d11;stroke-width:5.34374952;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7221);enable-background:accumulate"
+           d="m 222.8625,150.8625 c 0,47.22035 -38.27965,85.5 -85.5,85.5 -47.220346,0 -85.5,-38.27965 -85.5,-85.5 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+           id="path3003-7-4"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sssss" />
+        <path
+           transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842079)"
+           style="color:#000000;fill:none;stroke:#000000;stroke-width:5.34374952;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4622-3);enable-background:accumulate"
+           d="m 222.8625,150.8625 c 0,47.22035 -38.27965,85.5 -85.5,85.5 -47.220346,0 -85.5,-38.27965 -85.5,-85.5 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+           id="path3003-7"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sssss" />
+      </g>
+      <g
+         id="g6312"
+         clip-path="url(#clipPath6422)"
+         transform="matrix(1,0,0,0.80465635,0,33.133472)">
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-7"
+           d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+           style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-7-7"
+           d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+           style="color:#000000;fill:url(#linearGradient6584);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-7-7-3"
+           d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+           style="opacity:0.5972603;color:#000000;fill:url(#radialGradient7767);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,2.3384622,203.7647)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-0"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient6586);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6510);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="opacity:0.19178084;fill:#c17d11;fill-opacity:1;stroke:none;display:inline;filter:url(#filter7850);enable-background:new"
+           d="m 151.42214,242.3467 -1.5644,22.15286 4.78453,-22.09626 z"
+           id="path6822-0-8"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-7-7-2"
+           d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+           style="color:#000000;fill:none;stroke:url(#linearGradient6804);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6482);enable-background:accumulate" />
+        <path
+           style="opacity:0.23835617;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.47024632;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7901);enable-background:accumulate"
+           d="m 149.42589,265.59375 c -0.57484,1.73499 -2.7465,3.02712 -5.33818,3.02712 -2.56054,0 -4.6891,-1.2643 -5.29477,-2.96777 -0.0148,0.12941 -0.0435,0.25334 -0.0435,0.38581 0,2.36294 2.37063,4.27359 5.33818,4.27359 2.96754,0 5.38159,-1.91065 5.38159,-4.27359 0,-0.15274 -0.0238,-0.29654 -0.0435,-0.44516 z"
+           id="path7854"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g6318"
+         clip-path="url(#clipPath6442)"
+         transform="matrix(0.85349222,-0.0845863,-0.0845863,0.95116407,48.02804,13.74912)">
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-8-3"
+           d="m 237.54816,217.98993 c -2.216,3.83823 -6.73047,4.35005 -10.92821,2.92821 l -19.35534,-6.55602 c -4.19774,-1.42185 -3.14421,-10.55408 -0.92821,-14.3923 2.216,-3.83823 9.59798,-9.31673 12.92821,-6.39231 l 15.35534,13.48422 c 3.33023,2.92442 5.14421,7.08998 2.92821,10.9282 z"
+           style="color:#000000;fill:url(#linearGradient4752);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,88.338462,153.7647)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-0-0"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient4754);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6474);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="opacity:0.22465754;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8021);enable-background:new"
+           d="m 206.36945,211.89201 20.88044,7.56334 -19.94532,-10.64522 z"
+           id="path6822-0-8-0"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-8-3-4"
+           d="m 237.54816,217.98993 c -2.216,3.83823 -6.73047,4.35005 -10.92821,2.92821 l -19.35534,-6.55602 c -4.19774,-1.42185 -3.14421,-10.55408 -0.92821,-14.3923 2.216,-3.83823 9.59798,-9.31673 12.92821,-6.39231 l 15.35534,13.48422 c 3.33023,2.92442 5.14421,7.08998 2.92821,10.9282 z"
+           style="color:#000000;fill:none;stroke:url(#linearGradient4756);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6478);enable-background:accumulate" />
+      </g>
+      <g
+         id="g6323"
+         clip-path="url(#clipPath6430)"
+         transform="matrix(0.85349222,0.0845863,0.0845863,0.95116407,20.287133,-25.692664)">
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-8"
+           d="m 237.54816,109.96983 c 2.216,3.83822 0.40202,8.00378 -2.92821,10.9282 l -15.35534,13.48422 c -3.33023,2.92442 -10.71221,-2.55408 -12.92821,-6.39231 -2.216,-3.83822 -3.26953,-12.97045 0.92821,-14.3923 l 19.35534,-6.55602 c 4.19774,-1.42184 8.71221,-0.91002 10.92821,2.92821 z"
+           style="color:#000000;fill:url(#linearGradient4720);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <path
+           style="opacity:0.2821918;fill:#c17d11;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8079);enable-background:new"
+           d="m 217.83936,133.17113 16.99027,-14.30132 -16.0667,9.82554 z"
+           id="path6822-0-8-0-5"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,89.338464,53.764705)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-1-2-3"
+           style="opacity:0.6821918;color:#000000;fill:url(#radialGradient4722);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6462);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-8-1"
+           d="m 237.54816,109.96983 c 2.216,3.83822 0.40202,8.00378 -2.92821,10.9282 l -15.35534,13.48422 c -3.33023,2.92442 -10.71221,-2.55408 -12.92821,-6.39231 -2.216,-3.83822 -3.26953,-12.97045 0.92821,-14.3923 l 19.35534,-6.55602 c 4.19774,-1.42184 8.71221,-0.91002 10.92821,2.92821 z"
+           style="color:#000000;fill:none;stroke:url(#linearGradient4724);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6446);enable-background:accumulate" />
+      </g>
+      <g
+         id="g6328"
+         clip-path="url(#clipPath6426)"
+         transform="matrix(1,0,0,0.80465635,0,2.9716156)">
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799"
+           d="m 144,55.95977 c 4.432,0 7.13249,3.653731 8,8 L 156,84 c 0.86751,4.346269 -7.568,8 -12,8 -4.432,0 -12.86751,-3.653731 -12,-8 l 4,-20.04023 c 0.86751,-4.346269 3.568,-8 8,-8 z"
+           style="color:#000000;fill:url(#linearGradient6604);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <path
+           style="opacity:0.52876713;fill:url(#linearGradient7124);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7147);enable-background:new"
+           d="m 139.95017,61.37608 -6.41071,23.871033 c 1.6833,2.753815 5.21207,3.447909 8.84214,3.600531 z"
+           id="path6822-8"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,2.3384622,3.764705)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient6606);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-70"
+           d="m 144,55.95977 c 4.432,0 7.13249,3.653731 8,8 L 156,84 c 0.86751,4.346269 -7.568,8 -12,8 -4.432,0 -12.86751,-3.653731 -12,-8 l 4,-20.04023 c 0.86751,-4.346269 3.568,-8 8,-8 z"
+           style="color:#000000;fill:none;stroke:url(#linearGradient6764);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6754);enable-background:accumulate" />
+      </g>
+      <g
+         id="g4652"
+         transform="matrix(0.8534923,0.08458625,0.08458626,0.95116409,-4.6495918,2.7045615)">
+        <g
+           transform="translate(0,-14)"
+           clip-path="url(#clipPath6438)"
+           id="g6338">
+          <path
+             style="color:#000000;fill:url(#linearGradient4726);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 50.451833,217.98994 c 2.216,3.83823 6.730468,4.35006 10.928203,2.92821 l 19.355349,-6.55602 c 4.197735,-1.42185 3.144203,-10.55408 0.928203,-14.3923 -2.216,-3.83823 -9.597978,-9.31673 -12.928203,-6.39231 l -15.355349,13.48422 c -3.330225,2.92442 -5.144203,7.08998 -2.928203,10.9282 z"
+             id="rect3799-7-1"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-1-1"
+             d="m 59.5,219.75 21.472272,-7.31066 -5.765165,-2.71599 z"
+             style="opacity:0.14520551;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8083);enable-background:new" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient4728);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6794);enable-background:accumulate"
+             id="path3898-6-2-4-1-9-8"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-84.661538,153.7647)" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient4730);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6774);enable-background:accumulate"
+             d="m 50.451833,217.98994 c 2.216,3.83823 6.730468,4.35006 10.928203,2.92821 l 19.355349,-6.55602 c 4.197735,-1.42185 3.144203,-10.55408 0.928203,-14.3923 -2.216,-3.83823 -9.597978,-9.31673 -12.928203,-6.39231 l -15.355349,13.48422 c -3.330225,2.92442 -5.144203,7.08998 -2.928203,10.9282 z"
+             id="rect3799-7-1-5"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+      </g>
+      <path
+         style="color:#000000;fill:#000000;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5997);enable-background:accumulate"
+         d="m 111,92.11028 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60854 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48418 z"
+         id="path4286-0-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" />
+      <path
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5779);enable-background:accumulate"
+         d="m 178,208.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66025 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66025 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+         id="path4288-6"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6556);enable-background:accumulate"
+         id="path3898-0-0-0-8-8"
+         sodipodi:cx="143.875"
+         sodipodi:cy="64"
+         sodipodi:rx="8.125"
+         sodipodi:ry="8.5"
+         d="M 152,64 A 8.125,8.5 0 1 1 135.75,64 8.125,8.5 0 1 1 152,64 z"
+         transform="matrix(1.4769231,0,0,1.4117647,-68.492311,60.647059)" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:url(#radialGradient5015);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path3898-0-0-0-8"
+         sodipodi:cx="143.875"
+         sodipodi:cy="64"
+         sodipodi:rx="8.125"
+         sodipodi:ry="8.5"
+         d="M 152,64 A 8.125,8.5 0 1 1 135.75,64 8.125,8.5 0 1 1 152,64 z"
+         transform="matrix(1.4769231,0,0,1.4117647,-68.492308,59.64706)" />
+      <path
+         sodipodi:type="arc"
+         style="opacity:0.55890413;color:#000000;fill:url(#radialGradient4982);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5029);enable-background:accumulate"
+         id="path3898-6-2-4-1-9-2-0"
+         sodipodi:cx="143.875"
+         sodipodi:cy="64"
+         sodipodi:rx="8.125"
+         sodipodi:ry="8.5"
+         d="M 152,64 A 8.125,8.5 0 1 1 135.75,64 8.125,8.5 0 1 1 152,64 z"
+         transform="matrix(0.98461538,0,0,0.94117649,2.3384652,89.7647)" />
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path3898-15"
+         d="m 76.000002,150 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 C 95.522852,162 100,156.62742 100,150 c 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5884);enable-background:accumulate" />
+      <g
+         id="g5335"
+         clip-path="url(#clipPath5451)"
+         transform="translate(0,-14)">
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path3898"
+           d="m 76.000002,164 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 C 95.522852,176 100,170.62742 100,164 c 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+           style="color:#000000;fill:url(#linearGradient4931);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,-57.661538,103.7647)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-1-9-2"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient4948);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5799);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="opacity:0.26027395;fill:url(#linearGradient7072);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7099);enable-background:new"
+           d="m 80.886359,158.37431 15.847369,0.81495 c -0.92663,-2.92491 -3.085694,-5.0035 -6.664336,-6.47358 z"
+           id="path6822-2"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path3898-5"
+           d="m 76.000002,164.00001 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 5.52285,0 9.999998,-5.37258 9.999998,-12 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+           style="color:#000000;fill:none;stroke:url(#linearGradient5833);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5783);enable-background:accumulate" />
+      </g>
+      <path
+         sodipodi:type="arc"
+         style="opacity:0.43013701;color:#000000;fill:url(#linearGradient8095);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8101);enable-background:accumulate"
+         id="path8087"
+         sodipodi:cx="143.5"
+         sodipodi:cy="113.25"
+         sodipodi:rx="43.5"
+         sodipodi:ry="27.75"
+         d="m 187,113.25 a 43.5,27.75 0 1 1 -87,0 43.5,27.75 0 1 1 87,0 z"
+         transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,-38.563749,36.585219)" />
+      <path
+         sodipodi:nodetypes="sccsccs"
+         inkscape:connector-curvature="0"
+         id="path3898-1-6"
+         d="m 212,150 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 C 205.48551,158.5662 201.80636,161.95582 198,162 c -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 C 210.7949,145.15479 212,147.43386 212,150 z"
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5929);enable-background:accumulate" />
+      <g
+         id="g5320"
+         clip-path="url(#clipPath5463)"
+         transform="translate(0,-14)">
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path3898-1"
+           d="m 212,164 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 C 205.48551,172.5662 201.80636,175.95582 198,176 c -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 C 210.7949,159.15479 212,161.43386 212,164 z"
+           style="color:#000000;fill:url(#linearGradient5081);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,64.338462,104.7647)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-1-2-3-9"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient5098);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5823);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="fill:url(#linearGradient7586);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7609);enable-background:new"
+           d="m 208.54071,169.13704 -22.9394,2.52786 7.90953,5.77874 z"
+           id="path6822-0-3-7"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path3898-1-4"
+           d="m 212,164.00001 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 -3.30274,2.16121 -6.98189,5.55083 -10.78825,5.59501 -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 1.87648,1.46058 3.08158,3.73965 3.08158,6.30579 z"
+           style="color:#000000;fill:none;stroke:url(#linearGradient5539);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5529);enable-background:accumulate" />
+      </g>
+      <g
+         id="g5330"
+         clip-path="url(#clipPath5455)"
+         transform="translate(0,-14)">
+        <path
+           style="color:#000000;fill:url(#linearGradient4336-5);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 110,105.11027 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60853 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48417 z"
+           id="path4286"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,-27.661536,51.764705)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-1"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient4353-5);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5941);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="opacity:0.19178084;fill:url(#linearGradient6994);fill-opacity:1;stroke:none;display:inline;filter:url(#filter6973-1);enable-background:new"
+           d="m 109.18343,110.47267 -1.5644,12.40286 10.28453,3.15374 z"
+           id="path6822-0"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+        <path
+           style="color:#000000;fill:none;stroke:url(#linearGradient5951);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5953);enable-background:accumulate"
+           d="m 110,105.11028 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60854 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48418 z"
+           id="path4286-0"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+      </g>
+      <g
+         id="g5315"
+         clip-path="url(#clipPath5467)"
+         transform="translate(0,-14)">
+        <path
+           style="color:#000000;fill:url(#linearGradient5123);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 178,222.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66025 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66025 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+           id="path4288"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,32.338462,155.7647)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-1-2-2"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient5140);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5815);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="color:#000000;fill:none;stroke:url(#linearGradient5497);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5487);enable-background:accumulate"
+           d="m 178,222.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66024 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66024 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+           id="path4288-2"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+        <path
+           style="opacity:0.50958904;fill:url(#linearGradient7529);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7519);enable-background:new"
+           d="m 162.92214,209.9717 -1.9394,4.65286 11.90953,7.27874 z"
+           id="path6822-0-1"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+      </g>
+      <path
+         style="color:#000000;fill:#000000;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5730);enable-background:accumulate"
+         d="m 110,208.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66025 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66025 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+         id="path4278-4-2"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" />
+      <g
+         id="g5310"
+         clip-path="url(#clipPath5419)"
+         transform="translate(0,-14)">
+        <path
+           style="color:#000000;fill:url(#linearGradient5308);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 110,222.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66026 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66026 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+           id="path4278"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,-27.661538,155.7647)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-1-0"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient5304);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5807);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="color:#000000;fill:none;stroke:url(#linearGradient5477);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5447);enable-background:accumulate"
+           d="m 110,222.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66025 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66025 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+           id="path4278-4"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+      </g>
+      <path
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6071);enable-background:accumulate"
+         d="m 178,92.11029 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60853 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48418 z"
+         id="path4280-3"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" />
+      <g
+         id="g5325"
+         clip-path="url(#clipPath5459)"
+         transform="translate(0,-14)">
+        <path
+           style="color:#000000;fill:url(#linearGradient4378-9);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 178,105.11028 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60852 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48417 z"
+           id="path4280"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,32.338464,51.764705)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-1-2"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient4395-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6014);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="color:#000000;fill:none;stroke:url(#linearGradient6024);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6002);enable-background:accumulate"
+           d="m 178,105.11029 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60853 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48418 z"
+           id="path4280-4"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+        <path
+           style="opacity:0.19178084;fill:url(#linearGradient7332);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7367);enable-background:new"
+           d="m 178.29714,113.2217 -9.3144,15.77786 9.53453,-0.47126 z"
+           id="path6822-0-3"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+      </g>
+      <g
+         id="g6333"
+         clip-path="url(#clipPath6434)"
+         transform="matrix(0.8534923,-0.08458625,-0.08458626,0.95116409,21.90709,-1.33182)">
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-7-1-7"
+           d="m 50.451833,109.96982 c -2.216,3.83822 -0.402022,8.00378 2.928203,10.9282 l 15.355349,13.48422 c 3.330225,2.92442 10.712203,-2.55408 12.928203,-6.39231 2.216,-3.83822 3.269532,-12.97045 -0.928203,-14.3923 l -19.355349,-6.55602 c -4.197735,-1.42184 -8.712203,-0.91002 -10.928203,2.92821 z"
+           style="color:#000000;fill:url(#linearGradient4744);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <path
+           style="opacity:0.38904108;fill:url(#linearGradient4746);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7233-7);enable-background:new"
+           d="m 58,110.75 20.25,16.5 c 1.28939,-2.7841 3.885024,-3.93539 2.75,-9.75 z"
+           id="path6822"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccc" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,-84.661538,53.764705)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-1-9"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient4748);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:nodetypes="sssssss"
+           inkscape:connector-curvature="0"
+           id="rect3799-7-1-7-7"
+           d="m 50.451833,109.96982 c -2.216,3.83822 -0.402022,8.00378 2.928203,10.9282 l 15.355349,13.48422 c 3.330225,2.92442 10.712203,-2.55408 12.928203,-6.39231 2.216,-3.83822 3.269532,-12.97045 -0.928203,-14.3923 l -19.355349,-6.55602 c -4.197735,-1.42184 -8.712203,-0.91002 -10.928203,2.92821 z"
+           style="color:#000000;fill:none;stroke:url(#linearGradient4750);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6750);enable-background:accumulate" />
+      </g>
+      <path
+         style="opacity:0.19178084;fill:url(#linearGradient6855-2);fill-opacity:1;stroke:none;display:inline;enable-background:new"
+         d="M 58.876524,108.0962 71.5,120 c 2.756922,-1.59171 3.941008,-0.4808 4.75,-3.5 z"
+         id="path6822-1"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc" />
+      <path
+         style="opacity:0.19178084;fill:url(#linearGradient7443);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7433);enable-background:new"
+         d="m 145.67214,153.5967 -4.6894,7.02786 c 4.161,0.73382 11.09672,-2.87029 13.28453,-5.09626 z"
+         id="path6822-0-9"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc" />
+      <path
+         sodipodi:type="arc"
+         style="opacity:0.6;color:#000000;fill:url(#radialGradient9862);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6706-9-9);enable-background:accumulate"
+         id="path6610-6-3"
+         sodipodi:cx="144"
+         sodipodi:cy="268.25"
+         sodipodi:rx="18"
+         sodipodi:ry="2"
+         d="m 162,268.25 a 18,2 0 1 1 -36,0 18,2 0 1 1 36,0 z"
+         transform="matrix(0.54076296,0,0,1.3905333,242.11715,-278.01055)" />
+      <path
+         sodipodi:type="arc"
+         style="opacity:0.5;color:#000000;fill:url(#radialGradient9902);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6706-9-9-6);enable-background:accumulate"
+         id="path6610-6-3-3"
+         sodipodi:cx="144"
+         sodipodi:cy="268.25"
+         sodipodi:rx="18"
+         sodipodi:ry="2"
+         d="m 162,268.25 a 18,2 0 1 1 -36,0 18,2 0 1 1 36,0 z"
+         transform="matrix(1.1482081,0,0,2.5029613,155.15802,-580.41935)" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:url(#radialGradient9822);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6706-9);enable-background:accumulate;opacity:0.67123288"
+         id="path6610-6"
+         sodipodi:cx="144"
+         sodipodi:cy="268.25"
+         sodipodi:rx="18"
+         sodipodi:ry="2"
+         d="m 162,268.25 a 18,2 0 1 1 -36,0 18,2 0 1 1 36,0 z"
+         transform="matrix(0.35655773,0,0,0.91686271,268.6427,-150.24522)" />
+      <g
+         id="g9760"
+         transform="matrix(0.49451824,0.85653072,-0.85653072,0.49451824,227.31822,-237.49827)">
+        <path
+           style="color:#000000;fill:none;stroke:url(#linearGradient9795);stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 302.34984,66.255563 c -0.44106,0.763947 -0.0795,1.595033 0.58335,2.177103 l 2.18223,2.198103 c 0.0501,0.04391 0.11944,0.04113 0.17803,0.06664 -1.5016,3.816308 -1.45092,7.953451 -0.0245,11.605005 -0.0514,0.02458 -0.1147,0.04926 -0.15932,0.08844 l -2.1829,2.166992 c -0.16571,0.14552 -0.31621,0.334314 -0.43638,0.505829 -0.0901,0.128642 -0.1782,0.268581 -0.23437,0.40595 -0.16849,0.412117 -0.1569,0.849805 0.0912,1.279527 0.44107,0.763952 1.3558,0.862558 2.19131,0.579547 l 2.94037,-0.791471 c 0.068,-0.023 0.12001,-0.07347 0.17494,-0.115505 1.20793,1.517289 2.69003,2.852123 4.47128,3.880528 1.78125,1.028406 3.6783,1.644526 5.59627,1.931972 -0.008,0.07231 -0.0255,0.144374 -0.0126,0.209255 l 0.78475,2.942179 c 0.17267,0.86507 0.71543,1.607957 1.59756,1.607953 0.88214,-3e-6 1.43529,-0.732491 1.60795,-1.597556 l 0.78519,-2.973907 c 0.0116,-0.05819 0.001,-0.125328 -0.003,-0.182191 3.87553,-0.590498 7.48374,-2.615177 10.03796,-5.823756 0.0515,0.03781 0.0837,0.09946 0.1467
 3,0.120857 l 2.99472,0.790812 c 0.83554,0.282954 1.73607,0.18055 2.17713,-0.583397 0.44107,-0.763947 0.0795,-1.595032 -0.58335,-2.177103 l -2.19785,-2.17104 c -0.0501,-0.04391 -0.11964,-0.04078 -0.17803,-0.06664 1.51357,-3.825069 1.47109,-7.970797 0.0402,-11.632069 0.0514,-0.02458 0.1147,-0.04926 0.15932,-0.08844 l 2.1829,-2.166992 c 0.66284,-0.582074 1.02062,-1.427353 0.57955,-2.191306 -0.44106,-0.763952 -1.35579,-0.862558 -2.19131,-0.579547 l -2.956,0.818534 c -0.068,0.023 -0.11971,0.07304 -0.17494,0.115505 -1.20789,-1.517332 -2.68999,-2.852166 -4.47124,-3.880572 -1.78125,-1.028405 -3.6783,-1.644525 -5.59628,-1.931971 0.009,-0.06827 0.0266,-0.13887 0.0126,-0.209255 l -0.76913,-2.969243 c -0.17266,-0.86507 -0.71542,-1.607956 -1.59755,-1.607952 -0.6616,0 -1.13834,0.424306 -1.40371,0.993789 -0.0885,0.189826 -0.16107,0.387496 -0.20424,0.603766 l -0.78522,2.97395 c -0.0116,0.0582 -0.001,0.125329 0.003,0.182192 -3.88621,0.591415 -7.49776,2.627497 -10.05358,5.850819 -0.0515,-0.03
 781 -0.0837,-0.09946 -0.14673,-0.120857 l -2.9791,-0.817875 c -0.83553,-0.282954 -1.73606,-0.180551 -2.17713,0.583396 z"
+           id="path3003-7-5-9"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccccccccscccscccsccccccsccccccscccscccssccccccsc" />
+      </g>
+      <g
+         id="g9380"
+         transform="matrix(0.19903701,0,0,0.19903701,291.42711,45.842675)">
+        <g
+           clip-path="url(#clipPath4614-0-9)"
+           id="g4583-6"
+           style="display:inline;enable-background:new"
+           transform="translate(3.4290062e-6,-20)">
+          <path
+             sodipodi:type="arc"
+             style="color:#000000;fill:url(#radialGradient9460);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             id="path3003-1"
+             sodipodi:cx="139.5"
+             sodipodi:cy="153"
+             sodipodi:rx="85.5"
+             sodipodi:ry="85.5"
+             d="m 225,153 c 0,47.22035 -38.27965,85.5 -85.5,85.5 C 92.279654,238.5 54,200.22035 54,153 c 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+             transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842082)" />
+          <path
+             sodipodi:nodetypes="sssss"
+             inkscape:connector-curvature="0"
+             id="path3003-7-4-7"
+             d="m 222.8625,150.8625 c 0,47.22035 -38.27965,85.5 -85.5,85.5 -47.220346,0 -85.5,-38.27965 -85.5,-85.5 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+             style="opacity:0.72328766;color:#000000;fill:none;stroke:#c17d11;stroke-width:5.34374952;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7221-0);enable-background:accumulate"
+             transform="matrix(0.89417017,0,0,0.89417017,10.674542,18.603242)" />
+          <path
+             sodipodi:nodetypes="sssss"
+             inkscape:connector-curvature="0"
+             id="path3003-7-5"
+             d="m 222.8625,150.8625 c 0,47.22035 -38.27965,85.5 -85.5,85.5 -47.220346,0 -85.5,-38.27965 -85.5,-85.5 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+             style="color:#000000;fill:none;stroke:#000000;stroke-width:5.34374952;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4622-3-1);enable-background:accumulate"
+             transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842079)" />
+        </g>
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path4286-0-1-1"
+           d="m 111,86.11028 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60854 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48418 z"
+           style="color:#000000;fill:#000000;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5997-0);enable-background:accumulate" />
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path4288-6-4"
+           d="m 178,202.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66025 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66025 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5779-1);enable-background:accumulate" />
+        <path
+           transform="matrix(1.4769231,0,0,1.4117647,-68.492308,54.647059)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-0-0-0-8-8-2"
+           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6556-3);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(1.4769231,0,0,1.4117647,-68.492308,53.64706)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-0-0-0-8-1"
+           style="color:#000000;fill:url(#radialGradient9462);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,2.3384664,83.7647)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-1-9-2-0-4"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9464);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5029-5);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5884-5);enable-background:accumulate"
+           d="m 76.000002,144 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 C 95.522852,156 100,150.62742 100,144 c 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+           id="path3898-15-2"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5451-6)"
+           id="g5335-6"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9466);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 76.000002,164 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 C 95.522852,176 100,170.62742 100,164 c 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+             id="path3898-0"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sccsccs" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9468);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5799-1);enable-background:accumulate"
+             id="path3898-6-2-4-1-9-2-8"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-57.661538,103.7647)" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-2-2"
+             d="m 80.886359,158.37431 15.847369,0.81495 c -0.92663,-2.92491 -3.085694,-5.0035 -6.664336,-6.47358 z"
+             style="opacity:0.26027395;fill:url(#linearGradient9470);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7099-0);enable-background:new" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9472);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5783-8);enable-background:accumulate"
+             d="m 76.000002,164.00001 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 5.52285,0 9.999998,-5.37258 9.999998,-12 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+             id="path3898-5-3"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sccsccs" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6430-8)"
+           id="g6323-6"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9474);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 237.54816,109.96983 c 2.216,3.83822 0.40202,8.00378 -2.92821,10.9282 l -15.35534,13.48422 c -3.33023,2.92442 -10.71221,-2.55408 -12.92821,-6.39231 -2.216,-3.83822 -3.26953,-12.97045 0.92821,-14.3923 l 19.35534,-6.55602 c 4.19774,-1.42184 8.71221,-0.91002 10.92821,2.92821 z"
+             id="rect3799-8-2"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-8-0-5-7"
+             d="m 217.83936,133.17113 16.99027,-14.30132 -16.0667,9.82554 z"
+             style="opacity:0.2821918;fill:#c17d11;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8079-9);enable-background:new" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.6821918;color:#000000;fill:url(#radialGradient9476);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6462-3);enable-background:accumulate"
+             id="path3898-6-2-4-1-2-3-7"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,89.338464,53.764705)" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9478);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6446-1);enable-background:accumulate"
+             d="m 237.54816,109.96983 c 2.216,3.83822 0.40202,8.00378 -2.92821,10.9282 l -15.35534,13.48422 c -3.33023,2.92442 -10.71221,-2.55408 -12.92821,-6.39231 -2.216,-3.83822 -3.26953,-12.97045 0.92821,-14.3923 l 19.35534,-6.55602 c 4.19774,-1.42184 8.71221,-0.91002 10.92821,2.92821 z"
+             id="rect3799-8-1-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+        <path
+           transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,-38.563749,30.585219)"
+           d="M 187,113.25 C 187,128.5759 167.52439,141 143.5,141 119.47561,141 100,128.5759 100,113.25 100,97.924098 119.47561,85.5 143.5,85.5 c 24.02439,0 43.5,12.424098 43.5,27.75 z"
+           sodipodi:ry="27.75"
+           sodipodi:rx="43.5"
+           sodipodi:cy="113.25"
+           sodipodi:cx="143.5"
+           id="path8087-3"
+           style="opacity:0.43013701;color:#000000;fill:url(#linearGradient9480);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8101-1);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5929-7);enable-background:accumulate"
+           d="m 212,144 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 C 205.48551,152.5662 201.80636,155.95582 198,156 c -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 C 210.7949,139.15479 212,141.43386 212,144 z"
+           id="path3898-1-6-2"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6442-9)"
+           id="g6318-8"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9482);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 237.54816,217.98993 c -2.216,3.83823 -6.73047,4.35005 -10.92821,2.92821 l -19.35534,-6.55602 c -4.19774,-1.42185 -3.14421,-10.55408 -0.92821,-14.3923 2.216,-3.83823 9.59798,-9.31673 12.92821,-6.39231 l 15.35534,13.48422 c 3.33023,2.92442 5.14421,7.08998 2.92821,10.9282 z"
+             id="rect3799-8-3-0"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9484);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6474-7);enable-background:accumulate"
+             id="path3898-6-2-4-0-0-4"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,88.338462,153.7647)" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-8-0-53"
+             d="m 206.36945,211.89201 20.88044,7.56334 -19.94532,-10.64522 z"
+             style="opacity:0.22465754;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8021-1);enable-background:new" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9486);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6478-7);enable-background:accumulate"
+             d="m 237.54816,217.98993 c -2.216,3.83823 -6.73047,4.35005 -10.92821,2.92821 l -19.35534,-6.55602 c -4.19774,-1.42185 -3.14421,-10.55408 -0.92821,-14.3923 2.216,-3.83823 9.59798,-9.31673 12.92821,-6.39231 l 15.35534,13.48422 c 3.33023,2.92442 5.14421,7.08998 2.92821,10.9282 z"
+             id="rect3799-8-3-4-6"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5463-6)"
+           id="g5320-6"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9488);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 212,164 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 C 205.48551,172.5662 201.80636,175.95582 198,176 c -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 C 210.7949,159.15479 212,161.43386 212,164 z"
+             id="path3898-1-5"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sccsccs" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9490);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5823-5);enable-background:accumulate"
+             id="path3898-6-2-4-1-2-3-9-5"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,64.338462,104.7647)" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-3-7-4"
+             d="m 208.54071,169.13704 -22.9394,2.52786 7.90953,5.77874 z"
+             style="fill:url(#linearGradient9492);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7609-9);enable-background:new" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9494);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5529-4);enable-background:accumulate"
+             d="m 212,164.00001 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 -3.30274,2.16121 -6.98189,5.55083 -10.78825,5.59501 -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 1.87648,1.46058 3.08158,3.73965 3.08158,6.30579 z"
+             id="path3898-1-4-8"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sccsccs" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5455-8)"
+           id="g5330-2"
+           style="display:inline;enable-background:new">
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4286-1"
+             d="m 110,105.11027 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60853 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48417 z"
+             style="color:#000000;fill:url(#linearGradient9496);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9498);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5941-3);enable-background:accumulate"
+             id="path3898-6-2-4-1-96"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-27.661536,51.764705)" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-32"
+             d="m 109.18343,110.47267 -1.5644,12.40286 10.28453,3.15374 z"
+             style="opacity:0.19178084;fill:url(#linearGradient9500);fill-opacity:1;stroke:none;display:inline;filter:url(#filter6973-1-9);enable-background:new" />
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4286-0-3"
+             d="m 110,105.11028 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60854 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48418 z"
+             style="color:#000000;fill:none;stroke:url(#linearGradient9502);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5953-8);enable-background:accumulate" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5467-5)"
+           id="g5315-8"
+           style="display:inline;enable-background:new">
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4288-1"
+             d="m 178,222.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66025 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66025 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+             style="color:#000000;fill:url(#linearGradient9504);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9506);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5815-5);enable-background:accumulate"
+             id="path3898-6-2-4-1-2-2-3"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,32.338462,155.7647)" />
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4288-2-6"
+             d="m 178,222.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66024 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66024 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+             style="color:#000000;fill:none;stroke:url(#linearGradient9508);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5487-3);enable-background:accumulate" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-1-3"
+             d="m 162.92214,209.9717 -1.9394,4.65286 11.90953,7.27874 z"
+             style="opacity:0.50958904;fill:url(#linearGradient9510);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7519-4);enable-background:new" />
+        </g>
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path4278-4-2-6"
+           d="m 110,202.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66025 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66025 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+           style="color:#000000;fill:#000000;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5730-4);enable-background:accumulate" />
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5419-9)"
+           id="g5310-4"
+           style="display:inline;enable-background:new">
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4278-5"
+             d="m 110,222.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66026 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66026 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+             style="color:#000000;fill:url(#linearGradient9512);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9514);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5807-0);enable-background:accumulate"
+             id="path3898-6-2-4-1-0-5"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-27.661538,155.7647)" />
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4278-4-27"
+             d="m 110,222.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66025 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66025 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+             style="color:#000000;fill:none;stroke:url(#linearGradient9516);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5447-7);enable-background:accumulate" />
+        </g>
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path4280-3-9"
+           d="m 178,86.11029 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60853 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48418 z"
+           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6071-0);enable-background:accumulate" />
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5459-3)"
+           id="g5325-4"
+           style="display:inline;enable-background:new">
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4280-5"
+             d="m 178,105.11028 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60852 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48417 z"
+             style="color:#000000;fill:url(#linearGradient9518);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9520);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6014-0);enable-background:accumulate"
+             id="path3898-6-2-4-1-2-9"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,32.338464,51.764705)" />
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4280-4-0"
+             d="m 178,105.11029 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60853 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48418 z"
+             style="color:#000000;fill:none;stroke:url(#linearGradient9522);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6002-8);enable-background:accumulate" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-3-2"
+             d="m 178.29714,113.2217 -9.3144,15.77786 9.53453,-0.47126 z"
+             style="opacity:0.19178084;fill:url(#linearGradient9524);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7367-4);enable-background:new" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6426-8)"
+           id="g6328-4"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9526);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 144,55.95977 c 4.432,0 7.13249,3.653731 8,8 L 156,84 c 0.86751,4.346269 -7.568,8 -12,8 -4.432,0 -12.86751,-3.653731 -12,-8 l 4,-20.04023 c 0.86751,-4.346269 3.568,-8 8,-8 z"
+             id="rect3799-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-8-9"
+             d="m 139.95017,61.37608 -6.41071,23.871033 c 1.6833,2.753815 5.21207,3.447909 8.84214,3.600531 z"
+             style="opacity:0.52876713;fill:url(#linearGradient9528);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7147-0);enable-background:new" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9530);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             id="path3898-6-2-4-14"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,2.3384622,3.764705)" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9532);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6754-1);enable-background:accumulate"
+             d="m 144,55.95977 c 4.432,0 7.13249,3.653731 8,8 L 156,84 c 0.86751,4.346269 -7.568,8 -12,8 -4.432,0 -12.86751,-3.653731 -12,-8 l 4,-20.04023 c 0.86751,-4.346269 3.568,-8 8,-8 z"
+             id="rect3799-70-5"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6438-9)"
+           id="g6338-9"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9534);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 50.451833,217.98994 c 2.216,3.83823 6.730468,4.35006 10.928203,2.92821 l 19.355349,-6.55602 c 4.197735,-1.42185 3.144203,-10.55408 0.928203,-14.3923 -2.216,-3.83823 -9.597978,-9.31673 -12.928203,-6.39231 l -15.355349,13.48422 c -3.330225,2.92442 -5.144203,7.08998 -2.928203,10.9282 z"
+             id="rect3799-7-1-6"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-1-1-7"
+             d="m 59.5,219.75 21.472272,-7.31066 -5.765165,-2.71599 z"
+             style="opacity:0.14520551;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8083-9);enable-background:new" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9536);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6794-0);enable-background:accumulate"
+             id="path3898-6-2-4-1-9-8-9"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-84.661538,153.7647)" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9538);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6774-6);enable-background:accumulate"
+             d="m 50.451833,217.98994 c 2.216,3.83823 6.730468,4.35006 10.928203,2.92821 l 19.355349,-6.55602 c 4.197735,-1.42185 3.144203,-10.55408 0.928203,-14.3923 -2.216,-3.83823 -9.597978,-9.31673 -12.928203,-6.39231 l -15.355349,13.48422 c -3.330225,2.92442 -5.144203,7.08998 -2.928203,10.9282 z"
+             id="rect3799-7-1-5-4"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6434-3)"
+           id="g6333-0"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9540);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 50.451833,109.96982 c -2.216,3.83822 -0.402022,8.00378 2.928203,10.9282 l 15.355349,13.48422 c 3.330225,2.92442 10.712203,-2.55408 12.928203,-6.39231 2.216,-3.83822 3.269532,-12.97045 -0.928203,-14.3923 l -19.355349,-6.55602 c -4.197735,-1.42184 -8.712203,-0.91002 -10.928203,2.92821 z"
+             id="rect3799-7-1-7-3"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-7"
+             d="m 58,110.75 20.25,16.5 c 1.28939,-2.7841 3.885024,-3.93539 2.75,-9.75 z"
+             style="opacity:0.38904108;fill:url(#linearGradient9542);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7233-7-6);enable-background:new" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9544);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             id="path3898-6-2-4-1-9-0"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-84.661538,53.764705)" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9546);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6750-2);enable-background:accumulate"
+             d="m 50.451833,109.96982 c -2.216,3.83822 -0.402022,8.00378 2.928203,10.9282 l 15.355349,13.48422 c 3.330225,2.92442 10.712203,-2.55408 12.928203,-6.39231 2.216,-3.83822 3.269532,-12.97045 -0.928203,-14.3923 l -19.355349,-6.55602 c -4.197735,-1.42184 -8.712203,-0.91002 -10.928203,2.92821 z"
+             id="rect3799-7-1-7-7-4"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6422-6)"
+           id="g6312-2"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+             id="rect3799-7-6"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             style="color:#000000;fill:url(#linearGradient9548);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+             id="rect3799-7-7-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             style="opacity:0.5972603;color:#000000;fill:url(#radialGradient9550);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+             id="rect3799-7-7-3-8"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9552);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6510-4);enable-background:accumulate"
+             id="path3898-6-2-4-0-1"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,2.3384622,203.7647)" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-8-5"
+             d="m 151.42214,242.3467 -1.5644,22.15286 4.78453,-22.09626 z"
+             style="opacity:0.19178084;fill:#c17d11;fill-opacity:1;stroke:none;display:inline;filter:url(#filter7850-8);enable-background:new" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9554);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6482-4);enable-background:accumulate"
+             d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+             id="rect3799-7-7-2-6"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path7854-3"
+             d="m 149.42589,265.59375 c -0.57484,1.73499 -2.7465,3.02712 -5.33818,3.02712 -2.56054,0 -4.6891,-1.2643 -5.29477,-2.96777 -0.0148,0.12941 -0.0435,0.25334 -0.0435,0.38581 0,2.36294 2.37063,4.27359 5.33818,4.27359 2.96754,0 5.38159,-1.91065 5.38159,-4.27359 0,-0.15274 -0.0238,-0.29654 -0.0435,-0.44516 z"
+             style="opacity:0.23835617;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.47024632;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7901-1);enable-background:accumulate" />
+        </g>
+        <path
+           sodipodi:nodetypes="cccc"
+           inkscape:connector-curvature="0"
+           id="path6822-1-4"
+           d="M 54.280331,99.267767 71.5,114 c 2.756922,-1.59171 3.941008,-0.4808 4.75,-3.5 z"
+           style="opacity:0.19178084;fill:url(#linearGradient9556);fill-opacity:1;stroke:none;display:inline;enable-background:new" />
+        <path
+           sodipodi:nodetypes="cccc"
+           inkscape:connector-curvature="0"
+           id="path6822-0-9-5"
+           d="m 145.67214,147.5967 -4.6894,7.02786 c 4.161,0.73382 11.09672,-2.87029 13.28453,-5.09626 z"
+           style="opacity:0.19178084;fill:url(#linearGradient9558);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7433-0);enable-background:new" />
+      </g>
+      <path
+         sodipodi:type="inkscape:offset"
+         inkscape:radius="-0.47688377"
+         inkscape:original="M 320.09375 55 C 319.21162 55 318.67267 55.728682 318.5 56.59375 L 317.6875 60.59375 C 317.6745 60.65906 317.71155 60.717751 317.71875 60.78125 C 313.66293 61.388979 310.1054 63.501444 307.65625 66.5625 C 307.60925 66.53025 307.55624 66.4878 307.5 66.46875 L 303.65625 65.15625 C 303.44737 65.0855 303.20862 65.04956 303 65.03125 C 302.84353 65.01752 302.6783 65.01121 302.53125 65.03125 C 302.0901 65.09139 301.71685 65.320279 301.46875 65.75 C 301.02768 66.513948 301.39965 67.355432 302.0625 67.9375 L 305.09375 70.59375 C 305.14765 70.64111 305.21738 70.66094 305.28125 70.6875 C 304.5712 72.492235 304.15625 74.443189 304.15625 76.5 C 304.15625 78.556811 304.5712 80.507765 305.28125 82.3125 C 305.21465 82.34177 305.14346 82.36259 305.09375 82.40625 L 302.0625 85.0625 C 301.39966 85.644568 301.02768 86.486052 301.46875 87.25 C 301.90982 88.01395 302.82075 88.126751 303.65625 87.84375 L 307.5 86.53125 C 307.5562 86.5122 307.60921 86.46975 307.65625 86.
 4375 C 310.1054 89.498557 313.66293 91.611021 317.71875 92.21875 C 317.71175 92.28225 317.6745 92.340942 317.6875 92.40625 L 318.5 96.40625 C 318.67272 97.271319 319.21162 98 320.09375 98 C 320.97588 98 321.51483 97.271319 321.6875 96.40625 L 322.46875 92.40625 C 322.48175 92.34094 322.4443 92.282249 322.4375 92.21875 C 326.50689 91.617003 330.07596 89.507356 332.53125 86.4375 C 332.57825 86.46975 332.63126 86.5122 332.6875 86.53125 L 336.53125 87.84375 C 337.36676 88.126749 338.27768 88.01395 338.71875 87.25 C 339.15982 86.486052 338.78785 85.644568 338.125 85.0625 L 335.0625 82.40625 C 335.0086 82.35889 334.93939 82.33909 334.875 82.3125 C 335.5851 80.507765 336 78.556811 336 76.5 C 336 74.443189 335.58505 72.492235 334.875 70.6875 C 334.9385 70.66094 335.00857 70.64111 335.0625 70.59375 L 338.125 67.9375 C 338.78784 67.355432 339.15982 66.513948 338.71875 65.75 C 338.38795 65.177038 337.78212 64.976321 337.15625 65.03125 C 336.94763 65.04956 336.74013 65.0855 336.53125 65
 .15625 L 332.6875 66.46875 C 332.6313 66.4878 332.57829 66.53025 332.53125 66.5625 C 330.07596 63.492644 326.50689 61.382997 322.4375 60.78125 C 322.4445 60.71775 322.48175 60.659058 322.46875 60.59375 L 321.6875 56.59375 C 321.51478 55.728682 320.97588 55 320.09375 55 z "
+         style="opacity:0.16986299;color:#000000;fill:none;stroke:url(#radialGradient9803);stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path9786"
+         d="m 320.09375,55.46875 c -0.30976,0 -0.5277,0.104457 -0.71875,0.3125 -0.19105,0.208043 -0.33353,0.541909 -0.40625,0.90625 l -0.8125,4 c 0.0315,-0.158484 0.007,-0.181541 0.0313,0.03125 A 0.47693146,0.47693146 0 0 1 317.78125,61.25 c -3.93607,0.589786 -7.37472,2.656275 -9.75,5.625 a 0.47693146,0.47693146 0 0 1 -0.65625,0.09375 c -0.07,-0.04806 -0.0927,-0.0833 -0.0313,-0.0625 L 303.5,65.59375 c -0.15078,-0.05107 -0.34521,-0.07742 -0.53125,-0.09375 -0.14002,-0.01229 -0.28858,-0.01178 -0.375,0 -0.31636,0.04313 -0.53754,0.186137 -0.71875,0.5 -0.1536,0.266042 -0.14959,0.508097 -0.0625,0.78125 0.0871,0.273153 0.28346,0.567464 0.5625,0.8125 l 3.03125,2.65625 c -0.0497,-0.04368 -0.0373,-0.0415 0.0625,0 a 0.47693146,0.47693146 0 0 1 0.25,0.625 c -0.69036,1.754678 -1.09375,3.632328 -1.09375,5.625 0,1.992672 0.40339,3.870322 1.09375,5.625 a 0.47693146,0.47693146 0 0 1 -0.25,0.625 c -0.10494,0.04612 -0.12593,0.05571 -0.0625,0 l -3.03125,2.65625 c -0.27904,0.245036 -0.47541,0.539
 346 -0.5625,0.8125 -0.0871,0.273154 -0.0911,0.51521 0.0625,0.78125 0.15454,0.267665 0.37706,0.405085 0.65625,0.46875 0.27919,0.06367 0.61911,0.05593 0.96875,-0.0625 l 3.84375,-1.3125 c -0.0614,0.02083 -0.0389,-0.01437 0.0313,-0.0625 a 0.47693146,0.47693146 0 0 1 0.65625,0.09375 c 2.37528,2.968726 5.81393,5.035214 9.75,5.625 a 0.47693146,0.47693146 0 0 1 0.40625,0.53125 c -0.0237,0.214838 4.8e-4,0.190663 -0.0313,0.03125 l 0.8125,4 c 0.0727,0.36436 0.21521,0.698207 0.40625,0.90625 0.19104,0.208043 0.40899,0.3125 0.71875,0.3125 0.30976,0 0.5277,-0.104458 0.71875,-0.3125 0.19105,-0.208042 0.33353,-0.541908 0.40625,-0.90625 l 0.78125,-4 c -0.0319,0.16032 -0.008,0.185637 -0.0313,-0.03125 A 0.47693146,0.47693146 0 0 1 322.375,91.75 c 3.94975,-0.584056 7.4002,-2.64796 9.78125,-5.625 a 0.47693146,0.47693146 0 0 1 0.65625,-0.09375 c 0.07,0.04806 0.0927,0.0833 0.0313,0.0625 l 3.84375,1.3125 c 0.34964,0.118429 0.68956,0.126165 0.96875,0.0625 0.27919,-0.06367 0.50171,-0.201084 0.65625,-0
 .46875 0.1536,-0.266042 0.14959,-0.508097 0.0625,-0.78125 -0.0848,-0.266051 -0.29449,-0.540157 -0.5625,-0.78125 L 334.75,82.78125 a 0.47693146,0.47693146 0 0 1 0,-0.03125 c 0.0487,0.04275 0.0361,0.04073 -0.0625,0 a 0.47693146,0.47693146 0 0 1 -0.25,-0.625 c 0.6904,-1.754664 1.09375,-3.63232 1.09375,-5.625 0,-1.992672 -0.40339,-3.870322 -1.09375,-5.625 a 0.47693146,0.47693146 0 0 1 0.25,-0.625 c 0.10076,-0.04214 0.11287,-0.04423 0.0625,0 a 0.47693146,0.47693146 0 0 1 0,-0.03125 l 3.0625,-2.65625 c 0.26801,-0.241093 0.47767,-0.515198 0.5625,-0.78125 0.0871,-0.273154 0.0911,-0.51521 -0.0625,-0.78125 -0.22885,-0.396385 -0.62662,-0.54374 -1.125,-0.5 -0.18191,0.01597 -0.33553,0.03804 -0.5,0.09375 l -3.84375,1.3125 c 0.0614,-0.02083 0.0389,0.01437 -0.0313,0.0625 A 0.47693146,0.47693146 0 0 1 332.15625,66.875 c -2.38105,-2.97704 -5.8315,-5.040944 -9.78125,-5.625 a 0.47693146,0.47693146 0 0 1 -0.40625,-0.53125 c 0.0237,-0.214838 -4.8e-4,-0.190663 0.0313,-0.03125 l -0.78125,-4 c -0.07
 27,-0.364359 -0.21521,-0.698206 -0.40625,-0.90625 -0.19104,-0.208044 -0.40899,-0.3125 -0.71875,-0.3125 z"
+         transform="translate(0,-2)" />
+      <g
+         id="g11557"
+         transform="matrix(0.69444481,0,0,0.57659382,96.930433,102.34063)">
+        <path
+           transform="matrix(0.54076296,0,0,1.3905333,242.11714,-278.01055)"
+           d="m 162,268.25 c 0,1.10457 -8.05887,2 -18,2 -9.94113,0 -18,-0.89543 -18,-2 0,-1.10457 8.05887,-2 18,-2 9.94113,0 18,0.89543 18,2 z"
+           sodipodi:ry="2"
+           sodipodi:rx="18"
+           sodipodi:cy="268.25"
+           sodipodi:cx="144"
+           id="path6610-6-3-0"
+           style="opacity:0.6;color:#000000;fill:url(#radialGradient11562);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6706-9-9-3);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(1.1482081,0,0,2.5029613,155.15802,-580.41935)"
+           d="m 162,268.25 c 0,1.10457 -8.05887,2 -18,2 -9.94113,0 -18,-0.89543 -18,-2 0,-1.10457 8.05887,-2 18,-2 9.94113,0 18,0.89543 18,2 z"
+           sodipodi:ry="2"
+           sodipodi:rx="18"
+           sodipodi:cy="268.25"
+           sodipodi:cx="144"
+           id="path6610-6-3-3-9"
+           style="opacity:0.5;color:#000000;fill:url(#radialGradient11564);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6706-9-9-6-4);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(0.35655773,0,0,0.91686271,268.64269,-149.24522)"
+           d="m 162,268.25 c 0,1.10457 -8.05887,2 -18,2 -9.94113,0 -18,-0.89543 -18,-2 0,-1.10457 8.05887,-2 18,-2 9.94113,0 18,0.89543 18,2 z"
+           sodipodi:ry="2"
+           sodipodi:rx="18"
+           sodipodi:cy="268.25"
+           sodipodi:cx="144"
+           id="path6610-6-0"
+           style="color:#000000;fill:url(#radialGradient11566);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6706-9-8);enable-background:accumulate"
+           sodipodi:type="arc" />
+      </g>
+      <path
+         style="color:#000000;fill:#000000;stroke:url(#linearGradient11421);stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 319.09358,129.44137 c -0.60514,-1e-5 -0.98251,0.50756 -1.10097,1.10097 l -0.5338,1.73572 c -0.007,0.037 -0.002,0.0639 10e-6,0.1 -2.78432,0.41601 -5.22506,1.90228 -6.90606,4.0035 -0.036,-0.0266 -0.0558,-0.0518 -0.0999,-0.0669 l -1.76962,-0.4008 c -0.57314,-0.19411 -1.19876,-0.12371 -1.50133,0.40036 -0.30254,0.52404 -0.0543,1.10203 0.40035,1.50131 l 1.23582,1.33494 c 0.0265,0.0234 0.07,0.0175 0.10002,0.0335 -0.48661,1.23749 -0.76735,2.5933 -0.76735,4.00351 -1e-5,1.40731 0.28264,2.73475 0.76734,3.97014 -0.0349,0.0167 -0.0698,0.0402 -0.0999,0.0669 l -1.23587,1.33494 c -0.45469,0.39929 -0.7029,0.97727 -0.40034,1.50132 0.30256,0.52406 0.9282,0.59444 1.50132,0.40033 l 1.76961,-0.40077 c 0.0441,-0.015 0.064,-0.0404 0.0999,-0.0669 1.681,2.10122 4.12173,3.5875 6.90605,4.00349 -0.002,0.0363 -0.007,0.0631 0,0.1 l 0.53379,1.73573 c 0.11846,0.59342 0.49584,1.10096 1.10097,1.10097 0.60511,-1e-5 0.98251,-0.50756 1.10097,-1.10097 l 0.53379,-1.73573 c 0.007,-0.0371 0.002,-0.0639
  0,-0.1 2.77717,-0.41947 5.19516,-1.9066 6.87268,-4.00351 0.038,0.03 0.0857,0.0505 0.13346,0.0667 l 1.76962,0.40078 c 0.57313,0.19414 1.19877,0.12372 1.50132,-0.40033 0.30256,-0.52405 0.0543,-1.10203 -0.40035,-1.50132 l -1.23582,-1.33494 c -0.0379,-0.0334 -0.0885,-0.0488 -0.13345,-0.0667 0.48544,-1.23621 0.76733,-2.56167 0.76733,-3.97015 0,-1.40064 -0.28701,-2.73955 -0.76734,-3.97013 0.045,-0.0179 0.0956,-0.0334 0.13351,-0.0666 l 1.23581,-1.33493 c 0.45468,-0.39931 0.70292,-0.97729 0.40037,-1.50133 -0.30256,-0.52405 -0.92821,-0.59445 -1.50133,-0.40034 l -1.76956,0.40077 c -0.0478,0.016 -0.0953,0.0369 -0.13351,0.0667 -1.67752,-2.09689 -4.09551,-3.58404 -6.87268,-4.00351 0.002,-0.0363 0.007,-0.0631 0,-0.1 l -0.53379,-1.73573 c -0.11844,-0.59343 -0.49586,-1.10097 -1.10098,-1.10097 z"
+         id="path3003-7-5-4-6"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccscccsccccccsccccccscccscccscccccccc" />
+      <g
+         style="display:inline;enable-background:new"
+         id="g9380-7"
+         transform="matrix(0.14093659,0,0,0.14093659,298.79356,122.89331)">
+        <g
+           clip-path="url(#clipPath4614-0-9-3)"
+           id="g4583-6-5"
+           style="display:inline;enable-background:new"
+           transform="translate(3.4290062e-6,-20)">
+          <path
+             sodipodi:type="arc"
+             style="color:#000000;fill:url(#radialGradient9460-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             id="path3003-1-8"
+             sodipodi:cx="139.5"
+             sodipodi:cy="153"
+             sodipodi:rx="85.5"
+             sodipodi:ry="85.5"
+             d="m 225,153 c 0,47.22035 -38.27965,85.5 -85.5,85.5 C 92.279654,238.5 54,200.22035 54,153 c 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+             transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842082)" />
+          <path
+             sodipodi:nodetypes="sssss"
+             inkscape:connector-curvature="0"
+             id="path3003-7-4-7-7"
+             d="m 222.8625,150.8625 c 0,47.22035 -38.27965,85.5 -85.5,85.5 -47.220346,0 -85.5,-38.27965 -85.5,-85.5 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+             style="opacity:0.72328766;color:#000000;fill:none;stroke:#c17d11;stroke-width:5.34374952;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7221-0-5);enable-background:accumulate"
+             transform="matrix(0.89417017,0,0,0.89417017,10.674542,18.603242)" />
+          <path
+             sodipodi:nodetypes="sssss"
+             inkscape:connector-curvature="0"
+             id="path3003-7-5-4"
+             d="m 222.8625,150.8625 c 0,47.22035 -38.27965,85.5 -85.5,85.5 -47.220346,0 -85.5,-38.27965 -85.5,-85.5 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+             style="color:#000000;fill:none;stroke:#000000;stroke-width:5.34374952;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4622-3-1-8);enable-background:accumulate"
+             transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842079)" />
+        </g>
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path4286-0-1-1-4"
+           d="m 111,86.11028 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60854 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48418 z"
+           style="color:#000000;fill:#000000;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5997-0-3);enable-background:accumulate" />
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path4288-6-4-6"
+           d="m 178,202.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66025 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66025 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5779-1-7);enable-background:accumulate" />
+        <path
+           transform="matrix(1.4769231,0,0,1.4117647,-68.492308,54.647059)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-0-0-0-8-8-2-6"
+           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6556-3-7);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(1.4769231,0,0,1.4117647,-68.492308,53.64706)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-0-0-0-8-1-2"
+           style="color:#000000;fill:url(#radialGradient9462-3);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(0.98461538,0,0,0.94117649,2.3384664,83.7647)"
+           d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+           sodipodi:ry="8.5"
+           sodipodi:rx="8.125"
+           sodipodi:cy="64"
+           sodipodi:cx="143.875"
+           id="path3898-6-2-4-1-9-2-0-4-2"
+           style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9464-9);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5029-5-2);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5884-5-2);enable-background:accumulate"
+           d="m 76.000002,144 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 C 95.522852,156 100,150.62742 100,144 c 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+           id="path3898-15-2-6"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5451-6-0)"
+           id="g5335-6-7"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9466-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 76.000002,164 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 C 95.522852,176 100,170.62742 100,164 c 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+             id="path3898-0-3"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sccsccs" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9468-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5799-1-0);enable-background:accumulate"
+             id="path3898-6-2-4-1-9-2-8-5"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-57.661538,103.7647)" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-2-2-3"
+             d="m 80.886359,158.37431 15.847369,0.81495 c -0.92663,-2.92491 -3.085694,-5.0035 -6.664336,-6.47358 z"
+             style="opacity:0.26027395;fill:url(#linearGradient9470-8);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7099-0-2);enable-background:new" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9472-3);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5783-8-7);enable-background:accumulate"
+             d="m 76.000002,164.00001 c 0,2.625 1.26102,4.94961 3.21175,6.40499 3.30274,2.16121 6.98189,5.55083 10.78825,5.59501 5.52285,0 9.999998,-5.37258 9.999998,-12 0,-6.62742 -4.477148,-12 -9.999998,-12 -4.35563,0.34446 -7.30611,3.2149 -10.91842,5.69421 -1.87648,1.46058 -3.08158,3.73965 -3.08158,6.30579 z"
+             id="path3898-5-3-8"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sccsccs" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6430-8-1)"
+           id="g6323-6-2"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9474-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 237.54816,109.96983 c 2.216,3.83822 0.40202,8.00378 -2.92821,10.9282 l -15.35534,13.48422 c -3.33023,2.92442 -10.71221,-2.55408 -12.92821,-6.39231 -2.216,-3.83822 -3.26953,-12.97045 0.92821,-14.3923 l 19.35534,-6.55602 c 4.19774,-1.42184 8.71221,-0.91002 10.92821,2.92821 z"
+             id="rect3799-8-2-2"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-8-0-5-7-8"
+             d="m 217.83936,133.17113 16.99027,-14.30132 -16.0667,9.82554 z"
+             style="opacity:0.2821918;fill:#c17d11;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8079-9-8);enable-background:new" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.6821918;color:#000000;fill:url(#radialGradient9476-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6462-3-5);enable-background:accumulate"
+             id="path3898-6-2-4-1-2-3-7-6"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,89.338464,53.764705)" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9478-2);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6446-1-0);enable-background:accumulate"
+             d="m 237.54816,109.96983 c 2.216,3.83822 0.40202,8.00378 -2.92821,10.9282 l -15.35534,13.48422 c -3.33023,2.92442 -10.71221,-2.55408 -12.92821,-6.39231 -2.216,-3.83822 -3.26953,-12.97045 0.92821,-14.3923 l 19.35534,-6.55602 c 4.19774,-1.42184 8.71221,-0.91002 10.92821,2.92821 z"
+             id="rect3799-8-1-9-2"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+        <path
+           transform="matrix(0.96592583,-0.25881905,0.25881905,0.96592583,-38.563749,30.585219)"
+           d="M 187,113.25 C 187,128.5759 167.52439,141 143.5,141 119.47561,141 100,128.5759 100,113.25 100,97.924098 119.47561,85.5 143.5,85.5 c 24.02439,0 43.5,12.424098 43.5,27.75 z"
+           sodipodi:ry="27.75"
+           sodipodi:rx="43.5"
+           sodipodi:cy="113.25"
+           sodipodi:cx="143.5"
+           id="path8087-3-1"
+           style="opacity:0.43013701;color:#000000;fill:url(#linearGradient9480-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8101-1-3);enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5929-7-8);enable-background:accumulate"
+           d="m 212,144 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 C 205.48551,152.5662 201.80636,155.95582 198,156 c -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 C 210.7949,139.15479 212,141.43386 212,144 z"
+           id="path3898-1-6-2-0"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sccsccs" />
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6442-9-8)"
+           id="g6318-8-6"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9482-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 237.54816,217.98993 c -2.216,3.83823 -6.73047,4.35005 -10.92821,2.92821 l -19.35534,-6.55602 c -4.19774,-1.42185 -3.14421,-10.55408 -0.92821,-14.3923 2.216,-3.83823 9.59798,-9.31673 12.92821,-6.39231 l 15.35534,13.48422 c 3.33023,2.92442 5.14421,7.08998 2.92821,10.9282 z"
+             id="rect3799-8-3-0-5"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9484-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6474-7-9);enable-background:accumulate"
+             id="path3898-6-2-4-0-0-4-2"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,88.338462,153.7647)" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-8-0-53-0"
+             d="m 206.36945,211.89201 20.88044,7.56334 -19.94532,-10.64522 z"
+             style="opacity:0.22465754;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8021-1-8);enable-background:new" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9486-6);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6478-7-5);enable-background:accumulate"
+             d="m 237.54816,217.98993 c -2.216,3.83823 -6.73047,4.35005 -10.92821,2.92821 l -19.35534,-6.55602 c -4.19774,-1.42185 -3.14421,-10.55408 -0.92821,-14.3923 2.216,-3.83823 9.59798,-9.31673 12.92821,-6.39231 l 15.35534,13.48422 c 3.33023,2.92442 5.14421,7.08998 2.92821,10.9282 z"
+             id="rect3799-8-3-4-6-8"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5463-6-8)"
+           id="g5320-6-1"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9488-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 212,164 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 C 205.48551,172.5662 201.80636,175.95582 198,176 c -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 C 210.7949,159.15479 212,161.43386 212,164 z"
+             id="path3898-1-5-1"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sccsccs" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9490-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5823-5-3);enable-background:accumulate"
+             id="path3898-6-2-4-1-2-3-9-5-6"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,64.338462,104.7647)" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-3-7-4-0"
+             d="m 208.54071,169.13704 -22.9394,2.52786 7.90953,5.77874 z"
+             style="fill:url(#linearGradient9492-2);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7609-9-4);enable-background:new" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9494-5);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5529-4-5);enable-background:accumulate"
+             d="m 212,164.00001 c 0,2.625 -1.26102,4.94961 -3.21175,6.40499 -3.30274,2.16121 -6.98189,5.55083 -10.78825,5.59501 -5.52285,0 -10,-5.37258 -10,-12 0,-6.62742 4.47715,-12 10,-12 4.36576,0.33217 7.29463,3.20702 10.91842,5.69421 1.87648,1.46058 3.08158,3.73965 3.08158,6.30579 z"
+             id="path3898-1-4-8-8"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sccsccs" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5455-8-2)"
+           id="g5330-2-6"
+           style="display:inline;enable-background:new">
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4286-1-7"
+             d="m 110,105.11027 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60853 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48417 z"
+             style="color:#000000;fill:url(#linearGradient9496-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9498-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5941-3-7);enable-background:accumulate"
+             id="path3898-6-2-4-1-96-4"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-27.661536,51.764705)" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-32-0"
+             d="m 109.18343,110.47267 -1.5644,12.40286 10.28453,3.15374 z"
+             style="opacity:0.19178084;fill:url(#linearGradient9500-2);fill-opacity:1;stroke:none;display:inline;filter:url(#filter6973-1-9-7);enable-background:new" />
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4286-0-3-5"
+             d="m 110,105.11028 c -2.27331,1.3125 -3.65597,3.56688 -3.941,5.98395 -0.2203,3.94087 -1.31622,8.82191 0.5487,12.14041 2.76142,4.78293 9.65279,5.97396 15.3923,2.66025 5.73952,-3.31371 8.15373,-9.87732 5.39231,-14.66025 -2.47613,-3.59986 -6.43724,-4.71983 -10.39054,-6.60854 -2.20314,-0.89479 -4.77942,-0.7989 -7.00177,0.48418 z"
+             style="color:#000000;fill:none;stroke:url(#linearGradient9502-8);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5953-8-9);enable-background:accumulate" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5467-5-6)"
+           id="g5315-8-0"
+           style="display:inline;enable-background:new">
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4288-1-5"
+             d="m 178,222.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66025 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66025 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+             style="color:#000000;fill:url(#linearGradient9504-2);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9506-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5815-5-6);enable-background:accumulate"
+             id="path3898-6-2-4-1-2-2-3-7"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,32.338462,155.7647)" />
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4288-2-6-8"
+             d="m 178,222.88973 c -2.27331,1.3125 -4.91699,1.38273 -7.15275,0.42103 -3.52304,-1.77965 -8.29811,-3.27107 -10.23955,-6.54539 -2.76143,-4.78293 -0.34721,-11.34654 5.3923,-14.66024 5.73952,-3.31371 12.63088,-2.12268 15.39231,2.66024 1.89521,3.94695 0.86995,7.92085 0.52788,12.30274 -0.32666,2.35536 -1.69784,4.53855 -3.92019,5.82162 z"
+             style="color:#000000;fill:none;stroke:url(#linearGradient9508-2);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5487-3-9);enable-background:accumulate" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-1-3-2"
+             d="m 162.92214,209.9717 -1.9394,4.65286 11.90953,7.27874 z"
+             style="opacity:0.50958904;fill:url(#linearGradient9510-6);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7519-4-3);enable-background:new" />
+        </g>
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path4278-4-2-6-2"
+           d="m 110,202.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66025 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66025 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+           style="color:#000000;fill:#000000;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5730-4-2);enable-background:accumulate" />
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5419-9-7)"
+           id="g5310-4-4"
+           style="display:inline;enable-background:new">
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4278-5-7"
+             d="m 110,222.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66026 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66026 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+             style="color:#000000;fill:url(#linearGradient9512-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9514-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5807-0-4);enable-background:accumulate"
+             id="path3898-6-2-4-1-0-5-1"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-27.661538,155.7647)" />
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4278-4-27-8"
+             d="m 110,222.88973 c 2.27332,1.3125 4.917,1.38273 7.15276,0.42104 3.52303,-1.77965 8.29811,-3.27108 10.23955,-6.54539 2.76142,-4.78293 0.34721,-11.34655 -5.39231,-14.66025 -5.73951,-3.31371 -12.63088,-2.12267 -15.3923,2.66025 -1.87951,3.94431 -0.86887,7.93472 -0.52788,12.30273 0.32666,2.35537 1.69784,4.53855 3.92018,5.82162 z"
+             style="color:#000000;fill:none;stroke:url(#linearGradient9516-9);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5447-7-2);enable-background:accumulate" />
+        </g>
+        <path
+           sodipodi:nodetypes="sccsccs"
+           inkscape:connector-curvature="0"
+           id="path4280-3-9-1"
+           d="m 178,86.11029 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60853 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48418 z"
+           style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6071-0-3);enable-background:accumulate" />
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath5459-3-0)"
+           id="g5325-4-1"
+           style="display:inline;enable-background:new">
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4280-5-4"
+             d="m 178,105.11028 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60852 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48417 z"
+             style="color:#000000;fill:url(#linearGradient9518-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9520-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6014-0-8);enable-background:accumulate"
+             id="path3898-6-2-4-1-2-9-5"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,32.338464,51.764705)" />
+          <path
+             sodipodi:nodetypes="sccsccs"
+             inkscape:connector-curvature="0"
+             id="path4280-4-0-2"
+             d="m 178,105.11029 c 2.27332,1.3125 3.65598,3.56688 3.94101,5.98395 0.22029,3.94086 1.31622,8.82191 -0.5487,12.1404 -2.76143,4.78293 -9.65279,5.97397 -15.39231,2.66026 -5.73951,-3.31371 -8.15373,-9.87733 -5.3923,-14.66026 2.47055,-3.61477 6.42467,-4.71382 10.39054,-6.60853 2.20314,-0.89479 4.77942,-0.7989 7.00176,0.48418 z"
+             style="color:#000000;fill:none;stroke:url(#linearGradient9522-9);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6002-8-1);enable-background:accumulate" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-3-2-6"
+             d="m 178.29714,113.2217 -9.3144,15.77786 9.53453,-0.47126 z"
+             style="opacity:0.19178084;fill:url(#linearGradient9524-1);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7367-4-1);enable-background:new" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6426-8-2)"
+           id="g6328-4-1"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9526-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 144,55.95977 c 4.432,0 7.13249,3.653731 8,8 L 156,84 c 0.86751,4.346269 -7.568,8 -12,8 -4.432,0 -12.86751,-3.653731 -12,-8 l 4,-20.04023 c 0.86751,-4.346269 3.568,-8 8,-8 z"
+             id="rect3799-9-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-8-9-8"
+             d="m 139.95017,61.37608 -6.41071,23.871033 c 1.6833,2.753815 5.21207,3.447909 8.84214,3.600531 z"
+             style="opacity:0.52876713;fill:url(#linearGradient9528-4);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7147-0-5);enable-background:new" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9530-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             id="path3898-6-2-4-14-2"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,2.3384622,3.764705)" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9532-9);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6754-1-1);enable-background:accumulate"
+             d="m 144,55.95977 c 4.432,0 7.13249,3.653731 8,8 L 156,84 c 0.86751,4.346269 -7.568,8 -12,8 -4.432,0 -12.86751,-3.653731 -12,-8 l 4,-20.04023 c 0.86751,-4.346269 3.568,-8 8,-8 z"
+             id="rect3799-70-5-8"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6438-9-9)"
+           id="g6338-9-2"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9534-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 50.451833,217.98994 c 2.216,3.83823 6.730468,4.35006 10.928203,2.92821 l 19.355349,-6.55602 c 4.197735,-1.42185 3.144203,-10.55408 0.928203,-14.3923 -2.216,-3.83823 -9.597978,-9.31673 -12.928203,-6.39231 l -15.355349,13.48422 c -3.330225,2.92442 -5.144203,7.08998 -2.928203,10.9282 z"
+             id="rect3799-7-1-6-5"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-1-1-7-4"
+             d="m 59.5,219.75 21.472272,-7.31066 -5.765165,-2.71599 z"
+             style="opacity:0.14520551;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8083-9-2);enable-background:new" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9536-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6794-0-3);enable-background:accumulate"
+             id="path3898-6-2-4-1-9-8-9-4"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-84.661538,153.7647)" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9538-4);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6774-6-0);enable-background:accumulate"
+             d="m 50.451833,217.98994 c 2.216,3.83823 6.730468,4.35006 10.928203,2.92821 l 19.355349,-6.55602 c 4.197735,-1.42185 3.144203,-10.55408 0.928203,-14.3923 -2.216,-3.83823 -9.597978,-9.31673 -12.928203,-6.39231 l -15.355349,13.48422 c -3.330225,2.92442 -5.144203,7.08998 -2.928203,10.9282 z"
+             id="rect3799-7-1-5-4-5"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6434-3-2)"
+           id="g6333-0-3"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:url(#linearGradient9540-9);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 50.451833,109.96982 c -2.216,3.83822 -0.402022,8.00378 2.928203,10.9282 l 15.355349,13.48422 c 3.330225,2.92442 10.712203,-2.55408 12.928203,-6.39231 2.216,-3.83822 3.269532,-12.97045 -0.928203,-14.3923 l -19.355349,-6.55602 c -4.197735,-1.42184 -8.712203,-0.91002 -10.928203,2.92821 z"
+             id="rect3799-7-1-7-3-4"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-7-9"
+             d="m 58,110.75 20.25,16.5 c 1.28939,-2.7841 3.885024,-3.93539 2.75,-9.75 z"
+             style="opacity:0.38904108;fill:url(#linearGradient9542-0);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7233-7-6-5);enable-background:new" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9544-9);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             id="path3898-6-2-4-1-9-0-3"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,-84.661538,53.764705)" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9546-2);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6750-2-8);enable-background:accumulate"
+             d="m 50.451833,109.96982 c -2.216,3.83822 -0.402022,8.00378 2.928203,10.9282 l 15.355349,13.48422 c 3.330225,2.92442 10.712203,-2.55408 12.928203,-6.39231 2.216,-3.83822 3.269532,-12.97045 -0.928203,-14.3923 l -19.355349,-6.55602 c -4.197735,-1.42184 -8.712203,-0.91002 -10.928203,2.92821 z"
+             id="rect3799-7-1-7-7-4-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+        </g>
+        <g
+           transform="translate(4.2900616e-7,-20)"
+           clip-path="url(#clipPath6422-6-1)"
+           id="g6312-2-1"
+           style="display:inline;enable-background:new">
+          <path
+             style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+             id="rect3799-7-6-8"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             style="color:#000000;fill:url(#linearGradient9548-3);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+             id="rect3799-7-7-9-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             style="opacity:0.5972603;color:#000000;fill:url(#radialGradient9550-5);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+             d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+             id="rect3799-7-7-3-8-0"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             sodipodi:type="arc"
+             style="opacity:0.55890413;color:#000000;fill:url(#radialGradient9552-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6510-4-4);enable-background:accumulate"
+             id="path3898-6-2-4-0-1-2"
+             sodipodi:cx="143.875"
+             sodipodi:cy="64"
+             sodipodi:rx="8.125"
+             sodipodi:ry="8.5"
+             d="m 152,64 c 0,4.69442 -3.63769,8.5 -8.125,8.5 -4.48731,0 -8.125,-3.80558 -8.125,-8.5 0,-4.69442 3.63769,-8.5 8.125,-8.5 4.48731,0 8.125,3.80558 8.125,8.5 z"
+             transform="matrix(0.98461538,0,0,0.94117649,2.3384622,203.7647)" />
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path6822-0-8-5-1"
+             d="m 151.42214,242.3467 -1.5644,22.15286 4.78453,-22.09626 z"
+             style="opacity:0.19178084;fill:#c17d11;fill-opacity:1;stroke:none;display:inline;filter:url(#filter7850-8-4);enable-background:new" />
+          <path
+             style="color:#000000;fill:none;stroke:url(#linearGradient9554-7);stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6482-4-7);enable-background:accumulate"
+             d="m 144,272 c 4.432,0 7.13249,-3.65373 8,-8 l 4,-20.04023 c 0.86751,-4.34627 -7.568,-8 -12,-8 -4.432,0 -12.86751,3.65373 -12,8 L 136,264 c 0.86751,4.34627 3.568,8 8,8 z"
+             id="rect3799-7-7-2-6-6"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="sssssss" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path7854-3-1"
+             d="m 149.42589,265.59375 c -0.57484,1.73499 -2.7465,3.02712 -5.33818,3.02712 -2.56054,0 -4.6891,-1.2643 -5.29477,-2.96777 -0.0148,0.12941 -0.0435,0.25334 -0.0435,0.38581 0,2.36294 2.37063,4.27359 5.33818,4.27359 2.96754,0 5.38159,-1.91065 5.38159,-4.27359 0,-0.15274 -0.0238,-0.29654 -0.0435,-0.44516 z"
+             style="opacity:0.23835617;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.47024632;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7901-1-3);enable-background:accumulate" />
+        </g>
+        <path
+           sodipodi:nodetypes="cccc"
+           inkscape:connector-curvature="0"
+           id="path6822-1-4-4"
+           d="M 54.280331,99.267767 71.5,114 c 2.756922,-1.59171 3.941008,-0.4808 4.75,-3.5 z"
+           style="opacity:0.19178084;fill:url(#linearGradient9556-1);fill-opacity:1;stroke:none;display:inline;enable-background:new" />
+        <path
+           sodipodi:nodetypes="cccc"
+           inkscape:connector-curvature="0"
+           id="path6822-0-9-5-4"
+           d="m 145.67214,147.5967 -4.6894,7.02786 c 4.161,0.73382 11.09672,-2.87029 13.28453,-5.09626 z"
+           style="opacity:0.19178084;fill:url(#linearGradient10372);fill-opacity:1;stroke:none;display:inline;filter:url(#filter7433-0-0);enable-background:new" />
+      </g>
+      <path
+         transform="matrix(0.52539485,0,0,0.84275663,237.84314,-28.099787)"
+         d="m 162,268.25 a 18,2 0 1 1 -36,0 18,2 0 1 1 36,0 z"
+         sodipodi:ry="2"
+         sodipodi:rx="18"
+         sodipodi:cy="268.25"
+         sodipodi:cx="144"
+         id="path6610-6-0-0-8"
+         style="opacity:0.36164383;color:#000000;fill:url(#radialGradient13346);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6706-9-8-8-9);enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path13066"
+         d="m 320.94983,189.50001 c 0,4.11441 -3.33539,7.4498 -7.44981,7.4498 -4.11441,0 -7.4498,-3.33539 -7.4498,-7.4498 0,-4.11442 3.33539,-7.44981 7.4498,-7.44981 4.11442,0 7.44981,3.33539 7.44981,7.44981 z"
+         style="color:#000000;fill:none;stroke:#000000;stroke-width:2.10038614;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         transform="matrix(0.22485741,0,0,0.41716175,281.12053,87.596368)"
+         d="m 162,268.25 a 18,2 0 1 1 -36,0 18,2 0 1 1 36,0 z"
+         sodipodi:ry="2"
+         sodipodi:rx="18"
+         sodipodi:cy="268.25"
+         sodipodi:cx="144"
+         id="path6610-6-0-0"
+         style="opacity:0.59178084;color:#000000;fill:url(#radialGradient13306);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6706-9-8-8);enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path13068-5-8"
+         d="m 322.35859,185.49999 c 0,1.06611 -0.86426,1.93038 -1.93038,1.93038 -1.06612,0 -1.93038,-0.86427 -1.93038,-1.93038 0,-1.06611 0.86426,-1.93037 1.93038,-1.93037 1.06612,0 1.93038,0.86426 1.93038,1.93037 z"
+         style="color:#000000;fill:url(#radialGradient14559-9);fill-opacity:1;stroke:#000000;stroke-width:1.13924813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path13068-5-2"
+         d="m 308.50219,185.49998 c 0,1.06611 -0.86426,1.93038 -1.93038,1.93038 -1.06612,0 -1.93038,-0.86427 -1.93038,-1.93038 0,-1.06611 0.86426,-1.93037 1.93038,-1.93037 1.06612,0 1.93038,0.86426 1.93038,1.93037 z"
+         style="color:#000000;fill:url(#radialGradient14559-4);fill-opacity:1;stroke:#000000;stroke-width:1.13924813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path13068-5-2-3"
+         d="m 315.43039,197.49998 c 0,1.06611 -0.86426,1.93038 -1.93038,1.93038 -1.06612,0 -1.93038,-0.86427 -1.93038,-1.93038 0,-1.06611 0.86426,-1.93037 1.93038,-1.93037 1.06612,0 1.93038,0.86426 1.93038,1.93037 z"
+         style="color:#000000;fill:url(#radialGradient14627);fill-opacity:1;stroke:#000000;stroke-width:1.13924813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <g
+         transform="matrix(0.09374999,0,0,0.09374999,300,174.125)"
+         style="display:inline;enable-background:new"
+         id="g4583-6-51"
+         clip-path="url(#clipPath4614-0-9-35)">
+        <path
+           transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842082)"
+           d="m 225,153 c 0,47.22035 -38.27965,85.5 -85.5,85.5 C 92.279654,238.5 54,200.22035 54,153 c 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+           sodipodi:ry="85.5"
+           sodipodi:rx="85.5"
+           sodipodi:cy="153"
+           sodipodi:cx="139.5"
+           id="path3003-1-5"
+           style="color:#000000;fill:url(#radialGradient14508);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(0.89417017,0,0,0.89417017,10.674542,18.603242)"
+           style="opacity:0.72328766;color:#000000;fill:none;stroke:#c17d11;stroke-width:5.34374952;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7221-0-52);enable-background:accumulate"
+           d="m 222.8625,150.8625 c 0,47.22035 -38.27965,85.5 -85.5,85.5 -47.220346,0 -85.5,-38.27965 -85.5,-85.5 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+           id="path3003-7-4-7-74"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sssss" />
+        <path
+           transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842079)"
+           style="color:#000000;fill:none;stroke:#000000;stroke-width:5.34374952;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4622-3-1-9);enable-background:accumulate"
+           d="m 222.8625,150.8625 c 0,47.22035 -38.27965,85.5 -85.5,85.5 -47.220346,0 -85.5,-38.27965 -85.5,-85.5 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+           id="path3003-7-5-96"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sssss" />
+      </g>
+      <path
+         inkscape:connector-curvature="0"
+         id="path13068"
+         d="m 315.43039,181.49999 c 0,1.06611 -0.86426,1.93038 -1.93038,1.93038 -1.06612,0 -1.93038,-0.86427 -1.93038,-1.93038 0,-1.06611 0.86426,-1.93037 1.93038,-1.93037 1.06612,0 1.93038,0.86426 1.93038,1.93037 z"
+         style="color:#000000;fill:url(#radialGradient13266);fill-opacity:1;stroke:#000000;stroke-width:1.13924813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path14156"
+         sodipodi:cx="312.125"
+         sodipodi:cy="230"
+         sodipodi:rx="6.625"
+         sodipodi:ry="6.625"
+         d="m 318.75,230 a 6.625,6.625 0 1 1 -13.25,0 6.625,6.625 0 1 1 13.25,0 z"
+         transform="matrix(0.98245614,0,0,0.98245615,4.3508771,3.0350862)" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:url(#radialGradient14309);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path14158-6-7"
+         sodipodi:cx="310.84375"
+         sodipodi:cy="222.90625"
+         sodipodi:rx="1.625"
+         sodipodi:ry="1.625"
+         d="m 312.46875,222.90625 a 1.625,1.625 0 1 1 -3.25,0 1.625,1.625 0 1 1 3.25,0 z"
+         transform="matrix(0.94117688,0,0,0.94117592,18.44105,13.206006)" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:url(#radialGradient14377-5);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path14158-6-7-2"
+         sodipodi:cx="310.84375"
+         sodipodi:cy="222.90625"
+         sodipodi:rx="1.625"
+         sodipodi:ry="1.625"
+         d="m 312.46875,222.90625 a 1.625,1.625 0 1 1 -3.25,0 1.625,1.625 0 1 1 3.25,0 z"
+         transform="matrix(0.94117688,0,0,0.94117592,23.6372,22.206011)" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:url(#radialGradient14445);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path14158-6-7-2-3"
+         sodipodi:cx="310.84375"
+         sodipodi:cy="222.90625"
+         sodipodi:rx="1.625"
+         sodipodi:ry="1.625"
+         d="m 312.46875,222.90625 a 1.625,1.625 0 1 1 -3.25,0 1.625,1.625 0 1 1 3.25,0 z"
+         transform="matrix(0.94117688,0,0,0.94117592,13.244896,22.206011)" />
+      <g
+         transform="matrix(0.07500002,0,0,0.07500002,300.2,216.7)"
+         style="display:inline;enable-background:new"
+         id="g4583-6-51-5"
+         clip-path="url(#clipPath4614-0-9-35-4)">
+        <path
+           transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842082)"
+           d="m 225,153 c 0,47.22035 -38.27965,85.5 -85.5,85.5 C 92.279654,238.5 54,200.22035 54,153 c 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+           sodipodi:ry="85.5"
+           sodipodi:rx="85.5"
+           sodipodi:cy="153"
+           sodipodi:cx="139.5"
+           id="path3003-1-5-2"
+           style="color:#000000;fill:url(#radialGradient14154);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           sodipodi:type="arc" />
+        <path
+           transform="matrix(0.89417017,0,0,0.89417017,10.674542,18.603242)"
+           style="opacity:0.72328766;color:#000000;fill:none;stroke:#c17d11;stroke-width:5.34374952;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7221-0-52-3);enable-background:accumulate"
+           d="m 222.8625,150.8625 c 0,47.22035 -38.27965,85.5 -85.5,85.5 -47.220346,0 -85.5,-38.27965 -85.5,-85.5 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+           id="path3003-7-4-7-74-9"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sssss" />
+        <path
+           transform="matrix(0.93567261,0,0,0.93567261,13.473663,20.842079)"
+           style="color:#000000;fill:none;stroke:#000000;stroke-width:5.34374952;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4622-3-1-9-7);enable-background:accumulate"
+           d="m 222.8625,150.8625 c 0,47.22035 -38.27965,85.5 -85.5,85.5 -47.220346,0 -85.5,-38.27965 -85.5,-85.5 0,-47.22035 38.279654,-85.5 85.5,-85.5 47.22035,0 85.5,38.27965 85.5,85.5 z"
+           id="path3003-7-5-96-5"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="sssss" />
+      </g>
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:url(#radialGradient14292);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path14158-6"
+         sodipodi:cx="310.84375"
+         sodipodi:cy="222.90625"
+         sodipodi:rx="1.625"
+         sodipodi:ry="1.625"
+         d="m 312.46875,222.90625 a 1.625,1.625 0 1 1 -3.25,0 1.625,1.625 0 1 1 3.25,0 z"
+         transform="matrix(0.94117688,0,0,0.94117592,18.44105,19.206006)" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:url(#radialGradient14343);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path14158-6-7-9"
+         sodipodi:cx="310.84375"
+         sodipodi:cy="222.90625"
+         sodipodi:rx="1.625"
+         sodipodi:ry="1.625"
+         d="m 312.46875,222.90625 a 1.625,1.625 0 1 1 -3.25,0 1.625,1.625 0 1 1 3.25,0 z"
+         transform="matrix(0.94117688,0,0,0.94117592,18.44105,25.206006)" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:url(#radialGradient14377);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path14158-6-7-96"
+         sodipodi:cx="310.84375"
+         sodipodi:cy="222.90625"
+         sodipodi:rx="1.625"
+         sodipodi:ry="1.625"
+         d="m 312.46875,222.90625 a 1.625,1.625 0 1 1 -3.25,0 1.625,1.625 0 1 1 3.25,0 z"
+         transform="matrix(0.94117688,0,0,0.94117592,13.244895,16.206011)" />
+      <path
+         sodipodi:type="arc"
+         style="color:#000000;fill:url(#radialGradient14377-0);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path14158-6-7-8"
+         sodipodi:cx="310.84375"
+         sodipodi:cy="222.90625"
+         sodipodi:rx="1.625"
+         sodipodi:ry="1.625"
+         d="m 312.46875,222.90625 a 1.625,1.625 0 1 1 -3.25,0 1.625,1.625 0 1 1 3.25,0 z"
+         transform="matrix(0.94117688,0,0,0.94117592,23.637206,16.206011)" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path13068-5"
+         d="m 308.50219,193.49999 c 0,1.06611 -0.86426,1.93038 -1.93038,1.93038 -1.06612,0 -1.93038,-0.86427 -1.93038,-1.93038 0,-1.06611 0.86426,-1.93037 1.93038,-1.93037 1.06612,0 1.93038,0.86426 1.93038,1.93037 z"
+         style="color:#000000;fill:url(#radialGradient14525);fill-opacity:1;stroke:#000000;stroke-width:1.13924813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path13068-5-7"
+         d="m 322.3586,193.49998 c 0,1.06612 -0.86426,1.93039 -1.93038,1.93039 -1.06612,0 -1.93038,-0.86427 -1.93038,-1.93039 0,-1.06611 0.86426,-1.93037 1.93038,-1.93037 1.06612,0 1.93038,0.86426 1.93038,1.93037 z"
+         style="color:#000000;fill:url(#radialGradient14559);fill-opacity:1;stroke:#000000;stroke-width:1.13924813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path13068-5-2-3-9"
+         d="m 315.43039,189.49998 c 0,1.06611 -0.86426,1.93038 -1.93038,1.93038 -1.06612,0 -1.93038,-0.86427 -1.93038,-1.93038 0,-1.06611 0.86426,-1.93037 1.93038,-1.93037 1.06612,0 1.93038,0.86426 1.93038,1.93037 z"
+         style="color:#000000;fill:url(#radialGradient14661);fill-opacity:1;stroke:#000000;stroke-width:1.13924813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:none;stroke:url(#linearGradient11421-6);stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;fill-opacity:1;fill-rule:nonzero;stroke-linecap:butt;stroke-dasharray:none;stroke-dashoffset:0"
+         d="m 319.09375,128.46875 c -0.57054,-1e-5 -1.10059,0.25813 -1.4375,0.625 -0.31333,0.34119 -0.50069,0.75141 -0.59375,1.15625 l -0.0313,0.0937 -0.40625,1.3125 c -2.47856,0.53507 -4.61171,1.84562 -6.25,3.65625 L 309,135 l -0.0937,-0.0313 0,0.0313 c -0.40131,-0.12312 -0.82811,-0.19668 -1.28125,-0.0937 -0.48613,0.11043 -0.9954,0.41115 -1.28125,0.90625 -0.28742,0.49785 -0.30725,1.11891 -0.15625,1.59375 0.14132,0.4444 0.38073,0.77843 0.6875,1.0625 0.021,0.0195 0.0411,0.0437 0.0625,0.0625 l 0.9375,1.03125 c -0.37504,1.16021 -0.6875,2.3465 -0.6875,3.625 -10e-6,1.28597 0.30894,2.46736 0.6875,3.625 l -0.9375,1.03125 -0.0625,0.0625 c -0.30679,0.28407 -0.54618,0.61808 -0.6875,1.0625 -0.151,0.47486 -0.13118,1.09591 0.15625,1.59375 0.28585,0.49511 0.79512,0.79582 1.28125,0.90625 0.45314,0.10293 0.87993,0.0294 1.28125,-0.0937 l 0,0.0313 0.0937,-0.0313 1.375,-0.3125 c 1.63829,1.81063 3.77143,3.12119 6.25,3.65625 l 0.40625,1.3125 c 0.006,0.0305 0.0242,0.0633 0.0313,0.0937 0.0931,0.40
 485 0.28042,0.81506 0.59375,1.15625 0.33691,0.36687 0.86698,0.62499 1.4375,0.625 0.57052,-10e-6 1.10059,-0.25814 1.4375,-0.625 0.31333,-0.34118 0.50069,-0.7514 0.59375,-1.15625 0.007,-0.0305 0.0252,-0.0632 0.0313,-0.0937 l 0.40625,-1.3125 c 2.47793,-0.53962 4.61687,-1.84266 6.25,-3.65625 l 1.375,0.3125 0.0937,0.0313 0,-0.0313 c 0.40134,0.12315 0.82811,0.19669 1.28125,0.0937 0.48614,-0.11044 0.99541,-0.41114 1.28125,-0.90625 0.28743,-0.49785 0.30726,-1.11891 0.15625,-1.59375 -0.14133,-0.44441 -0.38075,-0.77844 -0.6875,-1.0625 l -0.0625,-0.0625 -0.96875,-1.0625 c 0.37284,-1.14942 0.6875,-2.31789 0.6875,-3.59375 0,-1.27187 -0.31677,-2.4459 -0.6875,-3.59375 l 0.96875,-1.0625 c 0.0214,-0.0188 0.0415,-0.043 0.0625,-0.0625 0.30677,-0.28407 0.54618,-0.61809 0.6875,-1.0625 0.151,-0.47485 0.13117,-1.09592 -0.15625,-1.59375 -0.28585,-0.49511 -0.79512,-0.79582 -1.28125,-0.90625 -0.45314,-0.10293 -0.87993,-0.0294 -1.28125,0.0937 l 0,-0.0313 -0.0937,0.0313 -1.375,0.3125 c -1.63313,-1.8135
 8 -3.77206,-3.11663 -6.25,-3.65625 l -0.40625,-1.3125 c -0.006,-0.0305 -0.0242,-0.0633 -0.0313,-0.0937 -0.0931,-0.40488 -0.28041,-0.81506 -0.59375,-1.15625 -0.33692,-0.36687 -0.86698,-0.625 -1.4375,-0.625 z"
+         id="path5615"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscccccccccscccscccssccccccccscscccccccccscccscccssccccccccscc" />
+      <path
+         sodipodi:type="inkscape:offset"
+         inkscape:radius="-0.99681526"
+         inkscape:original="M 319.09375 128.46875 C 318.52321 128.46874 317.99316 128.72688 317.65625 129.09375 C 317.34292 129.43494 317.15556 129.84516 317.0625 130.25 L 317.03125 130.34375 L 316.625 131.65625 C 314.14644 132.19132 312.01329 133.50187 310.375 135.3125 L 309 135 L 308.90625 134.96875 L 308.90625 135 C 308.50494 134.87688 308.07814 134.80327 307.625 134.90625 C 307.13887 135.01668 306.6296 135.3174 306.34375 135.8125 C 306.05633 136.31035 306.0365 136.93141 306.1875 137.40625 C 306.32882 137.85065 306.56823 138.18468 306.875 138.46875 C 306.896 138.48825 306.9161 138.51245 306.9375 138.53125 L 307.875 139.5625 C 307.49996 140.72271 307.1875 141.909 307.1875 143.1875 C 307.18749 144.47347 307.49644 145.65486 307.875 146.8125 L 306.9375 147.84375 L 306.875 147.90625 C 306.56821 148.19032 306.32882 148.52433 306.1875 148.96875 C 306.0365 149.44361 306.05632 150.06466 306.34375 150.5625 C 306.6296 151.05761 307.13887 151.35832 307.625 151.46875 C 308.07814 151.5
 7168 308.50493 151.4981 308.90625 151.375 L 308.90625 151.40625 L 309 151.375 L 310.375 151.0625 C 312.01329 152.87313 314.14643 154.18369 316.625 154.71875 L 317.03125 156.03125 C 317.03725 156.06175 317.0554 156.0946 317.0625 156.125 C 317.1556 156.52985 317.34292 156.94006 317.65625 157.28125 C 317.99316 157.64812 318.52323 157.90624 319.09375 157.90625 C 319.66427 157.90624 320.19434 157.64811 320.53125 157.28125 C 320.84458 156.94007 321.03194 156.52985 321.125 156.125 C 321.132 156.0945 321.15015 156.06175 321.15625 156.03125 L 321.5625 154.71875 C 324.04043 154.17913 326.17937 152.87609 327.8125 151.0625 L 329.1875 151.375 L 329.28125 151.40625 L 329.28125 151.375 C 329.68259 151.49815 330.10936 151.57174 330.5625 151.46875 C 331.04864 151.35831 331.55791 151.05761 331.84375 150.5625 C 332.13118 150.06465 332.15101 149.44359 332 148.96875 C 331.85867 148.52434 331.61925 148.19031 331.3125 147.90625 L 331.25 147.84375 L 330.28125 146.78125 C 330.65409 145.63183 330.968
 75 144.46336 330.96875 143.1875 C 330.96875 141.91563 330.65198 140.7416 330.28125 139.59375 L 331.25 138.53125 C 331.2714 138.51245 331.2915 138.48825 331.3125 138.46875 C 331.61927 138.18468 331.85868 137.85066 332 137.40625 C 332.151 136.9314 332.13117 136.31033 331.84375 135.8125 C 331.5579 135.31739 331.04863 135.01668 330.5625 134.90625 C 330.10936 134.80332 329.68257 134.8769 329.28125 135 L 329.28125 134.96875 L 329.1875 135 L 327.8125 135.3125 C 326.17937 133.49892 324.04044 132.19587 321.5625 131.65625 L 321.15625 130.34375 C 321.15025 130.31325 321.1321 130.2804 321.125 130.25 C 321.0319 129.84512 320.84459 129.43494 320.53125 129.09375 C 320.19433 128.72688 319.66427 128.46875 319.09375 128.46875 z "
+         style="color:#000000;fill:none;stroke:url(#linearGradient6906);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;opacity:0.18082192"
+         id="path6888"
+         d="m 319.09375,129.46875 c -0.26986,0 -0.57658,0.15769 -0.71875,0.3125 -0.17799,0.19382 -0.2832,0.42407 -0.34375,0.6875 A 0.99691495,0.99691495 0 0 1 318,130.5625 l -0.0313,0.0625 0,0.0313 -0.40625,1.28125 a 0.99691495,0.99691495 0 0 1 -0.71875,0.6875 c -2.2657,0.48912 -4.20873,1.67488 -5.71875,3.34375 a 0.99691495,0.99691495 0 0 1 -0.96875,0.3125 L 308.96875,136 l -0.0937,0 a 0.99691495,0.99691495 0 0 1 -0.25,-0.0625 c -0.31836,-0.0977 -0.5601,-0.11276 -0.78125,-0.0625 -0.25158,0.0572 -0.5081,0.23502 -0.625,0.4375 -0.11787,0.20417 -0.16104,0.56964 -0.0937,0.78125 0.0865,0.27203 0.22686,0.46119 0.4375,0.65625 0.0899,0.0835 0.096,0.0881 0.0313,0.0313 a 0.99691495,0.99691495 0 0 1 0.0937,0.0937 l 0.9375,1.03125 a 0.99691495,0.99691495 0 0 1 0.1875,0.96875 c -0.36371,1.12517 -0.625,2.19641 -0.625,3.3125 -10e-6,1.12631 0.25891,2.193 0.625,3.3125 a 0.99691495,0.99691495 0 0 1 -0.1875,0.96875 L 307.6875,148.5 a 0.99691495,0.99691495 0 0 1 -0.0313,0.0625 l -0.0625,0.0625 a
  0.99691495,0.99691495 0 0 1 -0.0313,0 c -0.21065,0.19505 -0.35099,0.38418 -0.4375,0.65625 -0.0673,0.21166 -0.0241,0.57711 0.0937,0.78125 0.1169,0.20249 0.37341,0.38035 0.625,0.4375 0.22124,0.0503 0.46289,0.0351 0.78125,-0.0625 a 0.99691495,0.99691495 0 0 1 0.15625,-0.0313 0.99691495,0.99691495 0 0 1 0.125,-0.0313 l 0.0937,0 1.15625,-0.28125 a 0.99691495,0.99691495 0 0 1 0.96875,0.3125 c 1.51002,1.66887 3.45305,2.85464 5.71875,3.34375 a 0.99691495,0.99691495 0 0 1 0.71875,0.6875 l 0.40625,1.3125 a 0.99691495,0.99691495 0 0 1 0.0313,0.0937 c -0.0413,-0.21006 -0.0253,-0.17941 0.0313,0.0625 0.0606,0.26357 0.16578,0.4937 0.34375,0.6875 0.14214,0.15478 0.44888,0.3125 0.71875,0.3125 0.26986,0 0.5766,-0.15771 0.71875,-0.3125 0.17798,-0.1938 0.28319,-0.42406 0.34375,-0.6875 0.0562,-0.24502 0.0728,-0.2703 0.0313,-0.0625 a 0.99691495,0.99691495 0 0 1 0.0313,-0.0937 l 0.40625,-1.3125 a 0.99691495,0.99691495 0 0 1 0.71875,-0.6875 c 2.26847,-0.49401 4.21636,-1.67535 5.71875,-3.34375 a 0.
 99691495,0.99691495 0 0 1 0.96875,-0.3125 l 1.1875,0.28125 a 0.99691495,0.99691495 0 0 1 0.0937,0 0.99691495,0.99691495 0 0 1 0.25,0.0625 c 0.31835,0.0977 0.56008,0.11277 0.78125,0.0625 0.25163,-0.0572 0.50811,-0.23503 0.625,-0.4375 0.11787,-0.20417 0.16104,-0.56965 0.0937,-0.78125 -0.0865,-0.27204 -0.22686,-0.4612 -0.4375,-0.65625 a 0.99691495,0.99691495 0 0 1 -0.0313,0 l -0.0625,-0.0625 A 0.99691495,0.99691495 0 0 1 330.5,148.5 l -0.96875,-1.0625 a 0.99691495,0.99691495 0 0 1 -0.1875,-0.96875 c 0.36245,-1.1174 0.625,-2.16928 0.625,-3.28125 0,-1.10636 -0.26433,-2.16454 -0.625,-3.28125 a 0.99691495,0.99691495 0 0 1 0.1875,-0.96875 L 330.5,137.875 a 0.99691495,0.99691495 0 0 1 0.0937,-0.0937 c -0.0647,0.0569 -0.0587,0.0523 0.0313,-0.0313 0.21065,-0.19506 0.35099,-0.38421 0.4375,-0.65625 0.0673,-0.21162 0.0241,-0.57712 -0.0937,-0.78125 -0.1169,-0.20249 -0.37341,-0.38035 -0.625,-0.4375 -0.22124,-0.0503 -0.46289,-0.0351 -0.78125,0.0625 l -0.0625,0 a 0.99691495,0.99691495 0 0 1 -
 0.0313,0.0313 0.99691495,0.99691495 0 0 1 -0.0625,0 0.99691495,0.99691495 0 0 1 -0.125,0.0313 l -0.0937,0 -1.15625,0.28125 a 0.99691495,0.99691495 0 0 1 -0.96875,-0.3125 c -1.50239,-1.6684 -3.45027,-2.84974 -5.71875,-3.34375 a 0.99691495,0.99691495 0 0 1 -0.71875,-0.6875 l -0.40625,-1.3125 a 0.99691495,0.99691495 0 0 1 -0.0313,-0.0937 c 0.0413,0.21006 0.0253,0.17941 -0.0313,-0.0625 -0.0606,-0.2636 -0.16576,-0.49369 -0.34375,-0.6875 -0.14217,-0.15481 -0.4489,-0.3125 -0.71875,-0.3125 z" />
+    </g>
+  </g>
+</svg>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]