Add new version of web pages
authorDavid Woodhouse <David.Woodhouse@intel.com>
Tue, 27 Sep 2011 22:47:17 +0000 (23:47 +0100)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Tue, 27 Sep 2011 23:19:01 +0000 (00:19 +0100)
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
37 files changed:
www/.gitignore [new file with mode: 0644]
www/Makefile [new file with mode: 0644]
www/building.xml [new file with mode: 0644]
www/changelog.xml [new file with mode: 0644]
www/connecting.xml [new file with mode: 0644]
www/contribute.xml [new file with mode: 0644]
www/csd.xml [new file with mode: 0644]
www/download.xml [new file with mode: 0644]
www/features.xml [new file with mode: 0644]
www/gui.xml [new file with mode: 0644]
www/html.py [new file with mode: 0755]
www/images/left.png [new file with mode: 0644]
www/images/left2.png [new file with mode: 0644]
www/images/leftsel.png [new file with mode: 0644]
www/images/leftsel2.png [new file with mode: 0644]
www/images/openconnect.svg [new file with mode: 0644]
www/images/right.png [new file with mode: 0644]
www/images/right2.png [new file with mode: 0644]
www/images/rightsel.png [new file with mode: 0644]
www/images/rightsel2.png [new file with mode: 0644]
www/inc/content.tmpl [new file with mode: 0644]
www/inc/footer.tmpl [new file with mode: 0644]
www/inc/header.tmpl [new file with mode: 0644]
www/index.xml [new file with mode: 0644]
www/mail.xml [new file with mode: 0644]
www/manual.xml [new file with mode: 0644]
www/menu1.xml [new file with mode: 0644]
www/menu2-features.xml [new file with mode: 0644]
www/menu2-started.xml [new file with mode: 0644]
www/menu2.xml [new file with mode: 0644]
www/nonroot.xml [new file with mode: 0644]
www/packages.xml [new file with mode: 0644]
www/platforms.xml [new file with mode: 0644]
www/started.xml [new file with mode: 0644]
www/styles/main.css [new file with mode: 0644]
www/technical.xml [new file with mode: 0644]
www/vpnc-script.xml [new file with mode: 0644]

diff --git a/www/.gitignore b/www/.gitignore
new file mode 100644 (file)
index 0000000..c08a43b
--- /dev/null
@@ -0,0 +1,2 @@
+*.html
+openconnect.8.inc
diff --git a/www/Makefile b/www/Makefile
new file mode 100644 (file)
index 0000000..4a6f907
--- /dev/null
@@ -0,0 +1,23 @@
+#
+CONV   = "./html.py"
+
+FTR_PAGES := csd.html features.html gui.html nonroot.html
+START_PAGES := building.html connecting.html manual.html started.html vpnc-script.html 
+MAIN_PAGES := changelog.html download.html index.html packages.html platforms.html
+TARGETS        = $(FTR_PAGES) $(START_PAGES) $(MAIN_PAGES)
+
+all: $(TARGETS)
+
+$(TARGETS): %.html: %.xml inc/*.tmpl menu1.xml
+       $(CONV) -f $< || (rm $@; exit 1)
+
+clean:
+       rm -f $(TARGETS) openconnect.8.inc
+
+$(FTR_PAGES): menu2-features.xml
+$(START_PAGES): menu2-started.xml
+$(MAIN_PAGES): menu2.xml
+
+manual.html: openconnect.8.inc
+openconnect.8.inc: ../openconnect.8
+       groff -t -K UTF-8 -mandoc -Txhtml $^ | sed -e '1,/<body>/d' -e '/<\/body>/,$$d' > $@
diff --git a/www/building.xml b/www/building.xml
new file mode 100644 (file)
index 0000000..0814f33
--- /dev/null
@@ -0,0 +1,67 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_STARTED" replace="selected" />
+       <VAR match="VAR_SEL_BUILDING" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2-started.xml" />
+       
+       <INCLUDE file="inc/content.tmpl" />
+
+       <h1>Building OpenConnect</h1>
+
+<p>Unless you need to test the very latest version, you should not
+need to build OpenConnect for yourself. Your operating system should
+have a <a href="packages.html">prepackaged</a> version which you can
+install; if it does not then file a bug or enhancement request asking for
+one.</p>
+
+<h2>Requirements</h2>
+<p>To build OpenConnect from its source code, you will need the following
+libraries and tools installed:</p>
+
+<ul>
+  <li><b><tt>libxml2</tt></b></li>
+  <li><b><tt>zlib</tt></b></li>
+  <li><b><tt>OpenSSL</tt></b></li>
+  <li><b><tt>pkg-config</tt></b></li>
+</ul>
+And <em>optionally</em> also:
+<ul>
+  <li><b><a href="http://code.google.com/p/libproxy/">libproxy</a></b></li>
+</ul>
+<p>OpenConnect supports the use of HTTP and SOCKS proxies to connect to the
+AnyConnect service, even without using libproxy. You may wish to use libproxy
+if you want OpenConnect to automatically use the appropriate proxies for your
+environment, without having to manually give it the <tt>--proxy</tt> argument
+on the command line.</p>
+
+<h2>Building OpenConnect</h2>
+
+<p>If you checked the source code out from git rather from a release tarball
+  then run this command first to prepare the build system:</p>
+  <ul>
+    <li><tt>./autogen.sh</tt></li>
+  </ul>
+  <p>Then to build it, run the following commands:</p>
+  <ul>
+    <li><tt>./configure</tt></li>
+    <li><tt>make</tt></li>
+    <li><tt>make install</tt> <i>(If you want to install it)</i></li>
+  </ul>
+
+<p>If compilation fails, please make sure you have a working compiler and the
+<b>development</b> packages for all the required libraries mentioned above. If
+it still doesn't build, please send the full output in a plain-text mail to the
+<a href="mail.html">mailing list</a>.</p>
+
+<h2>TUN/TAP driver</h2>
+
+<p>Mac OS X users will also need to install the
+<a href="http://tuntaposx.sourceforge.net/">Mac OS X tun/tap driver</a>, and Solaris users will need the <a href="http://www.whiteboard.ne.jp/~admin2/tuntap/">Solaris one</a>. Note that for IPv6 support, the Solaris tun/tap driver from 16th Nov 2009 or newer is required.</p>
+
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
+
diff --git a/www/changelog.xml b/www/changelog.xml
new file mode 100644 (file)
index 0000000..de523a9
--- /dev/null
@@ -0,0 +1,232 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_INDEX" replace="selected" />
+       <VAR match="VAR_SEL_CHANGELOG" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2.xml" />
+       
+       <INCLUDE file="inc/content.tmpl" />
+
+       <h1>Changelog</h1>
+
+<p>For full changelog entries including the latest development, see
+<a href="http://git.infradead.org/users/dwmw2/openconnect.git">gitweb</a>.</p>
+<ul>
+   <li><b>OpenConnect HEAD</b>
+     <ul>
+       <li>Add localisation support.</li>
+       <li>Fix build on Debian systems where <tt>dtls1_stop_timer()</tt> is not available.</li>
+       <li>Fix libproxy detection.</li>
+       <li>Enable a useful set of compiler warnings by default.</li>
+       <li>Fix various minor compiler warnings.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-3.12.tar.gz">OpenConnect v3.12</a></b> &#8212; 2011-09-12
+     <ul>
+       <li>Fix DTLS compatibility with ASA firmware 8.4.1(11) and above.</li>
+       <li>Fix build failures on GNU Hurd, on systems with ancient OpenSSL,
+       and on Debian.</li>
+       <li>Add <tt>--pid-file</tt> option.</li>
+       <li>Print SHA1 fingerprint with server certificate details.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-3.11.tar.gz">OpenConnect v3.11</a></b> &#8212; 2011-07-20
+     <ul>
+       <li>Add <tt>Android.mk</tt> file for Android build support</li>
+       <li>Add logging support for Android, in place of standard <tt>syslog()</tt>.</li>
+       <li>Switch back to using TLSv1, but without extensions.</li>
+       <li>Make TPM support optional, dependent on OpenSSL ENGINE support.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-3.10.tar.gz">OpenConnect v3.10</a></b> &#8212; 2011-06-30
+     <ul>
+       <li>Switch to using GNU autoconf/automake/libtool.</li>
+       <li>Produce shared library for authentication.</li>
+       <li>Improve library API to make life easier for C++ users.</li>
+       <li>Be more explicit about requiring <tt>pkg-config</tt>.</li>
+       <li>Invoke script with <tt>reason=reconnect</tt> on CSTP reconnect.</li>
+       <li>Add <tt>--non-inter</tt> option to avoid all user input.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-3.02.tar.gz">OpenConnect v3.02</a></b> &#8212; 2011-04-19
+     <ul>
+       <li>Install man page in <tt>make install</tt> target.</li>
+       <li>Add <tt>openconnect_vpninfo_free()</tt> to libopenconnect.</li>
+       <li>Clear cached <tt>peer_addr</tt> to avoid reconnecting to wrong host.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-3.01.tar.gz">OpenConnect v3.01</a></b> &#8212; 2011-03-09
+     <ul>
+       <li>Add libxml2 to pkg-config requirements.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-3.00.tar.gz">OpenConnect v3.00</a></b> &#8212; 2011-03-09
+     <ul>
+       <li>Create libopenconnect.a for GUI authentication dialog to use.</li>
+       <li>Remove auth-dialog, which now lives in the <a href="http://git.gnome.org/browse/network-manager-openconnect/">network-manager-openconnect</a> package.</li>
+       <li>Cope with more entries in authentication forms.</li>
+       <li>Add <tt>--csd-wrapper</tt> option to wrap CSD trojan.</li>
+       <li>Report error and abort if CA file cannot be opened.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.26.tar.gz">OpenConnect v2.26</a></b> &#8212; 2010-09-22
+     <ul>
+       <li>Fix potential crash on relative HTTP redirect.</li>
+       <li>Use correct TUN/TAP device node on Android.</li>
+       <li>Check client certificate expiry date.</li>
+       <li>Implement CSTP and DTLS rekeying <i>(both by reconnecting CSTP)</i>.</li>
+       <li>Add <tt>--force-dpd</tt> option to set minimum DPD interval.</li>
+       <li>Don't print <tt>webvpn</tt> cookie in debug output.</li>
+       <li>Fix host selection in NetworkManager auth dialog.</li>
+       <li>Use SSLv3 instead of TLSv1; some servers <i>(or their firewalls)</i>
+          don't accept any <tt>ClientHello</tt> options.</li>
+       <li>Never include address family prefix on <tt>script-tun</tt> connections.</li> 
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.25.tar.gz">OpenConnect v2.25</a></b> &#8212; 2010-05-15
+     <ul>
+       <li>Always validate server certificate, even when no extra <tt>--cafile</tt> is provided.</li>
+       <li>Add <tt>--no-cert-check</tt> option to avoid certificate validation.</li>
+       <li>Check server hostname against its certificate.</li>
+       <li>Provide text-mode function for reviewing and accepting "invalid" certificates.</li>
+       <li>Fix libproxy detection on NetBSD.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.24.tar.gz">OpenConnect v2.24</a></b> &#8212; 2010-05-07
+     <ul>
+       <li>Forget preconfigured password after a single attempt; don't retry infinitely if it's failing.</li>
+       <li>Set <tt>$CISCO_BANNER</tt> environment variable when running script.</li>
+       <li>Better handling of passphrase failure on certificate files.</li>
+       <li>Fix NetBSD build (thanks to Pouya D. Tafti).</li>
+       <li>Fix DragonFly BSD build.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.23.tar.gz">OpenConnect v2.23</a></b> &#8212; 2010-04-09
+     <ul>
+       <li>Support "Cisco Secure Desktop" trojan in NetworkManager auth-dialog.</li>
+       <li>Support proxy in NetworkManager auth-dialog.</li>
+       <li>Add <tt>--no-http-keepalive</tt> option to work around Cisco's incompetence.</li>
+       <li>Fix build on Debian/kFreeBSD.</li>
+       <li>Fix crash on receiving HTTP 404 error.</li>
+       <li>Improve workaround for server certificates lacking SSL_SERVER purpose, so that it also works with OpenSSL older than 0.9.8k.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.22.tar.gz">OpenConnect v2.22</a></b> &#8212; 2010-03-07
+     <ul>
+       <li>Fix bug handling port numbers above 9999.</li>
+       <li>Ignore "<tt>Connection: Keep-Alive</tt>" in HTTP/1.0 to work around server bug with certificate authentication.</li>
+       <li>Handle non-standard port (and full URLs) when used with NetworkManager.</li>
+       <li>Cope with relative redirect and form URLs.</li>
+       <li>Allocate HTTP receive buffer dynamically, to cope with arbitrary size of content.</li>
+       <li>Fix server cert SHA1 comparison to be case-insensitive.</li>
+       <li>Fix build on Solaris and OSX <i>(<tt>strndup()</tt>, <tt>AI_NUMERICSERV</tt>).</i></li>
+       <li>Fix exit code with <tt>--background</tt> option.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.21.tar.gz">OpenConnect v2.21</a></b> &#8212; 2010-01-10
+     <ul>
+       <li>Fix handling of HTTP 1.0 responses with keepalive <a href="https://bugzilla.redhat.com/show_bug.cgi?id=553817"><i>(RH#553817)</i></a>.</li>
+       <li>Fix case sensitivity in HTTP headers and hostname comparison on redirect.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.20.tar.gz">OpenConnect v2.20</a></b> &#8212; 2010-01-04
+     <ul>
+       <li>Fix use-after-free bug in NetworkManager authentication dialog <a href="https://bugzilla.redhat.com/show_bug.cgi?id=551665"><i>(RH#551665)</i></a>.</li>
+       <li>Allow server to be specified with <tt>https://</tt> URL, including port and pathname (which Cisco calls 'UserGroup')</li>
+       <li>Support connection through HTTP and SOCKS proxies.</li>
+       <li>Handle HTTP redirection with port numbers.</li>
+       <li>Handle HTTP redirection with IPv6 literal addresses.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.12.tar.gz">OpenConnect v2.12</a></b> &#8212; 2009-12-07
+     <ul>
+       <li>Fix buffer overflow when generating useragent string.</li>
+       <li>Cope with idiotic schizoDNS configurations by not repeating DNS lookup for VPN server on reconnects.</li>
+       <li>Support DragonFlyBSD. Probably.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.11.tar.gz">OpenConnect v2.11</a></b> &#8212; 2009-11-17
+     <ul>
+       <li>Add IPv6 support for FreeBSD.</li>
+       <li>Support "split tunnel" mode for IPv6 routing.</li>
+       <li>Fix bug where client certificate's MD5 was only given to the
+          CSD trojan if a PKCS#12 certificate was used.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.10.tar.gz">OpenConnect v2.10</a></b> &#8212; 2009-11-04
+     <ul>
+       <li>OpenSolaris support.</li>
+       <li>Preliminary support for IPv6 connectivity.</li>
+       <li>Fix session shutdown on exit.</li>
+       <li>Fix reconnection when TCP connection is closed.</li>
+       <li>Support for "Cisco Secure Desktop" idiocy.</li>
+       <li>Allow <tt>User-Agent:</tt> to be specified on command line.</li>
+       <li>Fix session termination on disconnect.</li>
+       <li>Fix recognition of certificates from OpenSSL 1.0.0.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.01.tar.gz">OpenConnect v2.01</a></b> &#8212; 2009-06-24
+     <ul>
+       <li>Fix bug causing loss of DTLS (and lots of syslog spam about it)
+          after a CSTP reconnection.</li>
+       <li>Don't apply OpenSSL certificate chain workaround if we already
+          have "extra" certificates loaded (e.g. from a PKCS#12 file).</li>
+       <li>Load "extra" certificates from <tt>.pem</tt> files too.</li>
+       <li>Fix SEGV caused by freeing certificates after processing cert
+          chain.</li>
+     </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-2.00.tar.gz">OpenConnect v2.00</a></b> &#8212; 2009-06-03
+      <ul>
+       <li>Add OpenBSD and FreeBSD support.</li>
+       <li>Build with OpenSSL-0.9.7 (Mac OS X, OpenBSD, etc.)</li>
+       <li>Support PKCS#12 certificates.</li>
+       <li>Automatic detection of certificate type (PKCS#12, PEM, TPM).</li>
+       <li>Work around OpenSSL trust chain issues (<a href="http://rt.openssl.org/Ticket/Display.html?id=1942&amp;amp;user=guest&amp;amp;pass=guest">RT#1942</a>).</li>
+       <li>Allow PEM passphrase to be specified on command line.</li>
+       <li>Allow PEM passphrase automatically generated from the <tt>fsid</tt> of the file system on which the certificate is stored.</li>
+       <li>Fix certificate comparisons (in NM auth-dialog and <tt>--servercert</tt> option) to use SHA1 fingerprint, not signature.</li>
+       <li>Fix segfault in NM auth-dialog when changing hosts.</li>
+      </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-1.40.tar.gz">OpenConnect v1.40</a></b> &#8212; 2009-05-27
+      <ul>
+       <li>Fix validation of server's SSL certificate when NetworkManager runs openconnect as an unprivileged user (which can't read the real user's trust chain file).</li>
+       <li>Fix double-free of DTLS Cipher option on reconnect.</li>
+       <li>Reconnect on SSL write errors</li>
+       <li>Fix reporting of SSL errors through syslog/UI.</li>
+      </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-1.30.tar.gz">OpenConnect v1.30</a></b> &#8212; 2009-05-13
+      <ul>
+       <li>NetworkManager auth-dialog will now cache authentication form options.</li>
+      </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-1.20.tar.gz">OpenConnect v1.20</a></b> &#8212; 2009-05-08
+      <ul>
+       <li>DTLS cipher choice fixes.</li>
+       <li>Improve handling of authentication group selection.</li>
+       <li>Export more information to connection script.</li>
+       <li>Add <tt>--background</tt> option to dæmonize after connection.</li>
+       <li>Detect TCP connection closure.</li>
+      </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-1.10.tar.gz">OpenConnect v1.10</a></b> &#8212; 2009-04-01
+      <ul>
+       <li>NetworkManager UI rewrite with many improvements.</li>
+       <li>Support for "UserGroups" where a single server offers multiple
+       configurations according to the URL used to connect.</li>
+      </ul><br/>
+  </li>
+  <li><b><a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-1.00.tar.gz">OpenConnect v1.00</a></b> &#8212; 2009-03-18
+      <ul>
+       <li>First non-beta release.</li>
+      </ul>
+  </li>
+</ul>
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
+
diff --git a/www/connecting.xml b/www/connecting.xml
new file mode 100644 (file)
index 0000000..43b2f59
--- /dev/null
@@ -0,0 +1,38 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_STARTED" replace="selected" />
+       <VAR match="VAR_SEL_CONNECTING" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2-started.xml" />
+       
+       <INCLUDE file="inc/content.tmpl" />
+
+       <h1>Getting Started</h1>
+
+<p>Once you have <a href="building.html">installed</a> OpenConnect and checked that you have a
+<a href="vpnc-script.html">vpnc-script</a> which will set up the routing and DNS for it, using OpenConnect
+ is very simple. As root, run the following command:<br/>
+      <tt>openconnect --script /etc/vpnc/vpnc-script https://vpn.mycompany.com/</tt>
+    </p>
+
+That should be it, if you have a password-based login. If you use
+certificates, you'll need to tell OpenConnect where to find the
+certificate with the <tt>-c</tt> option. You might need to steal the
+certificate from your Windows certificate store using a tool like <a
+href="http://www.isecpartners.com/application-security-tools/jailbreak.html">Jailbreak</a>.
+<p>
+To start with, you can ignore anything you see in the <a href="compatibility.html">compatibility</a>
+page about needing to patch OpenSSL so that DTLS works &#8212; you
+don't really need it, although it will make your connections much
+faster if you're experiencing packet loss between you and the VPN
+server. But you can worry about that later.
+</p>
+
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
+
+
+
diff --git a/www/contribute.xml b/www/contribute.xml
new file mode 100644 (file)
index 0000000..360485e
--- /dev/null
@@ -0,0 +1,46 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_CONTRIBUTE" replace="selected" />
+       <PARSE file="menu1.xml" />
+       
+       <INCLUDE file="inc/content.tmpl" />
+
+<h1>Contributing to OpenConnect</h1>
+
+<a name="translation"/>
+<h2>Translations</h2>
+
+<p>The main thing needed at the present time is translations into
+languages other than English. All contributions will be gratefully
+received.</p>
+
+<p>Translations for OpenConnect can be entered through <a
+href="https://www.transifex.net/projects/p/openconnect/">Transifex</a>
+or by editing one of the language files in the <tt><a
+href="http://git.infradead.org/users/dwmw2/openconnect.git/tree/HEAD:/po">po/</a></tt>
+directory and sending the resulting patch (or file) to the <a
+href="mail.html">mailing list</a>.</p>
+
+<p>If there are questions about the messages because the intent is not clear, or if the
+messages could be improved to make translation easier or better, please also feel free to
+ask or make suggestions on the mailing list.</p>
+
+
+
+<h2>TODO</h2>
+
+Other items on the TODO list include:
+
+<ul>
+  <li>Testing IPv6 on more platforms (only Linux, FreeBSD, Solaris are tested so far).</li>
+  <li>Better support for running or emulating the '<a href="csd.html">Cisco Secure Desktop</a>' trojan.</li>
+  <li>More platform support: Windows, Symbian, etc.</li>
+  <li>GUI for OS X, perhaps based on <a href="http://code.google.com/p/tunnelblick/">Tunnelblick</a>.</li>
+</ul>
+
+
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/csd.xml b/www/csd.xml
new file mode 100644 (file)
index 0000000..f41faf9
--- /dev/null
@@ -0,0 +1,33 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_FEATURES" replace="selected" />
+       <VAR match="VAR_SEL_FEATURE_CSD" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2-features.xml" />
+
+       <INCLUDE file="inc/content.tmpl" />
+
+<h1>Cisco Secure Desktop</h1>
+
+<p>The 'Cisco Secure Desktop' is a bit of a misnomer &#8212; it works by
+downloading a trojan binary from the server and running it on your
+client machine to perform some kind of 'verification' and post its
+approval back to the server. This seems anything <em>but</em> secure
+to me, especially given their history of trivially-exploitable
+bugs.</p>
+<p>It's also fairly easy to subvert, by running your own modified binary
+instead of the one you download from the server. Or by running their
+binary but poking at it with gdb.</p>
+<p>We support this idiocy, but because of the security concerns the
+trojan will be executed only if a userid is specified on the command
+line using the <tt>--csd-user=</tt> option, or the <tt>--csd-wrapper=</tt>
+option is used to handle the script in a 'safe' manner.</p>
+<p>
+This support currently only works when the server has a Linux binary
+installed, and only when that Linux binary runs on the client machine.</p>
+
+<INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/download.xml b/www/download.xml
new file mode 100644 (file)
index 0000000..1135024
--- /dev/null
@@ -0,0 +1,43 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace="" />
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_INDEX" replace="selected" />
+       <VAR match="VAR_SEL_DOWNLOAD" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2.xml" />
+       
+       <INCLUDE file="inc/content.tmpl" />
+
+       <h1>Download</h1>
+
+<p>Released versions of OpenConnect are available from the FTP site:</p>
+<ul><li><a href="ftp://ftp.infradead.org/pub/openconnect/"><tt>ftp://ftp.infradead.org/pub/openconnect/</tt></a></li></ul>
+
+<p><i>(Note: Due to a longstanding <a href="https://bugzilla.redhat.com/show_bug.cgi?id=450853">Fedora bug</a>
+you may occasionally find that the FTP server is accessible only by IPv6 and not Legacy IP. If this happens,
+please let me know by sending me an email. Or just join us in the 21st century and <a href="http://en.wikipedia.org/wiki/List_of_IPv6_tunnel_brokers">get IPv6</a>.)</i></p>
+<p>
+<!-- latest-release-start -->
+The latest release is <a href="ftp://ftp.infradead.org/pub/openconnect/openconnect-3.12.tar.gz">OpenConnect v3.12</a>, released on 2011-09-12 with the following changelog:</p>
+     <ul>
+       <li>Fix DTLS compatibility with ASA firmware 8.4.1(11) and above.</li>
+       <li>Fix build failures on GNU Hurd, on systems with ancient OpenSSL,
+       and on Debian.</li>
+       <li>Add <tt>--pid-file</tt> option.</li>
+       <li>Print SHA1 fingerprint with server certificate details.</li>
+     </ul>
+<!-- latest-release-end -->
+
+For older releases and change logs, see the <a href="changelog.html">changelog page</a>.
+
+<h2>Latest sources</h2>
+
+<p>The latest source code is available from the git repository at:</p>
+<ul><li><tt>git://git.infradead.org/users/dwmw2/openconnect.git</tt><br/>or browseable in gitweb at:</li>
+<li><a href="http://git.infradead.org/users/dwmw2/openconnect.git">
+http://git.infradead.org/users/dwmw2/openconnect.git</a></li></ul>
+
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/features.xml b/www/features.xml
new file mode 100644 (file)
index 0000000..a10e0f3
--- /dev/null
@@ -0,0 +1,31 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_FEATURES" replace="selected" />
+       <VAR match="VAR_SEL_FEATURE_MAIN" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2-features.xml" />
+
+       <INCLUDE file="inc/content.tmpl" />
+       <h1>Features</h1>
+
+<ul>
+  <li>Connection through HTTP proxy, including <a href="http://code.google.com/p/libproxy/">libproxy</a> support for automatic proxy configuration.</li>
+  <li>Connection through SOCKS5 proxy.</li>
+  <li>Automatic detection of IPv4 and IPv6 address, routes.</li>
+  <li>Authentication via HTTP forms.</li>
+      <li>Authentication using SSL certificates, from local file or <a href="http://en.wikipedia.org/wiki/Trusted_Platform_Module">Trusted Platform Module</a>.</li>
+  <li><i>UserGroup</i> support for selecting between multiple configurations on a single VPN server.</li>
+  <li>Data transport over TCP <i>(HTTPS)</i> or UDP <i>(DTLS)</i>.</li>
+  <li>Keepalive and Dead Peer Detection on both HTTPS and DTLS.</li>
+  <li>Automatic update of VPN server list / configuration.</li>
+  <li>Roaming support, allowing reconnection when the local IP address changes.</li>
+  <li>Run without root privileges <i>(see <a href="nonroot.html">here</a>)</i>.</li>
+  <li>"Cisco Secure Desktop" support <i>(see <a href="csd.html">here</a>)</i>.</li>
+  <li>Graphical connection tools for various environments <i>(see <a href="gui.html">here</a>)</i>.</li>
+</ul>
+
+<INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/gui.xml b/www/gui.xml
new file mode 100644 (file)
index 0000000..a206e09
--- /dev/null
@@ -0,0 +1,43 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_FEATURES" replace="selected" />
+       <VAR match="VAR_SEL_FEATURE_GUI" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2-features.xml" />
+
+       <INCLUDE file="inc/content.tmpl" />
+
+       <h1>GUI Tools for OpenConnect</h1>
+
+<h2>NetworkManager</h2>
+
+<p>Support for OpenConnect in NetworkManager has been integrated into
+GNOME git and is released alongside NetworkManager's other VPN modules:
+<a href="http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openconnect/">
+http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openconnect/</a>.</p>
+
+<p>Prior to OpenConnect v3.00, the <tt>auth-dialog</tt>
+tool which handles GUI authentication was part of OpenConnect itself,
+rather than included in the <tt>network-manager-openconnect</tt>
+package. Versions of <tt>network-manager-openconnect</tt> earlier than 0.8.4
+will expect the <tt>auth-dialog</tt> to be provided for them, and thus will
+not work with a version of OpenConnect any newer then v2.26.</p>
+
+<p>To use OpenConnect v3.00 or newer with NetworkManager, you will need to be
+using NetworkManager-openconnect v0.8.4 or newer.</p>
+
+<p><b>Note for KDE users:</b> KDE does not support using OpenConnect with version 0.8 of NetworkManager <i>(unless of course you run OpenConnect manually from the command line and don't use NetworkManager for the VPN at all)</i>. It is only supported since 2011-06-22 with the NetworkManager 0.9, and with the corresponding <a href="https://projects.kde.org/projects/extragear/base/networkmanagement/repository/show?rev=nm09"><tt>nm09</tt></a> branch of the <a href="http://userbase.kde.org/NetworkManagement">kde-plasma-networkmanagement</a> widget.</p>
+<p>This support was added by Ilia Kats, as <a href="https://bugs.kde.org/show_bug.cgi?id=226028">KDE bug #226028</a>.</p>
+
+<h2>ConnMan</h2>
+
+<p><a href="http://connman.net/">ConnMan</a> has core OpenConnect functionality
+as from version 0.48, and the corresponding support is also in the
+<a href="http://meego.gitorious.org/meego-netbook-ux/meego-panel-networks">meego-panel-networks</a>
+user interface. Other ConnMan UI front ends may lack VPN support.</p>
+
+<INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/html.py b/www/html.py
new file mode 100755 (executable)
index 0000000..3ff2d76
--- /dev/null
@@ -0,0 +1,237 @@
+#!/usr/bin/env python
+#
+# Simple XML to HTML converter.
+# 
+# (C) 2005 Thomas Gleixner <tglx@linutronix.de>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+
+import os
+import sys
+import getopt
+import pprint
+import shutil
+import string
+import smtplib
+import socket
+import time
+import xml.sax
+import commands
+import codecs
+
+# Print the usage information
+def usage():
+       print "USAGE:"
+       print "html.py <-f -h file.xml>"
+       print "  -f        write output to file.html (default is stdout)"
+       print "  -h        help"
+       return
+
+
+# Headerfields
+header = [
+"Mime-Version: 1.0\r\n",
+"Content-Type: text/plain; charset=utf-8\r\n",
+"Content-Transfer-Encoding: 8bit\r\n",
+"Content-Disposition: inline\r\n",
+]
+
+html = []
+replace = []
+fdout = sys.stdout
+
+def replaceVars(line):
+       cnt = 0
+       while cnt < len(replace):
+               if line.find(replace[cnt]) >= 0:
+                       line = line.replace(replace[cnt], replace[cnt+1])
+               cnt = cnt + 2
+       return line
+
+def writeHtml(line):
+       fdout.write(replaceVars(line))
+
+def startMenu(level):
+       writeHtml("<div id=\"menu%s\">\n" %(level))
+
+def placeMenu(topic, link, mode):
+
+       topic = replaceVars(topic)
+       mode = replaceVars(mode)
+       
+       if mode == 'text':
+               writeHtml("<p>%s</p>\n" %(topic))
+               return
+       if mode == 'selected':
+               writeHtml("<span class=\"sel\">\n")
+       else:
+               writeHtml("<span class=\"nonsel\">\n")
+               
+       writeHtml("<a href=\"%s\"><span>%s</span></a>\n" %(link, topic))
+       writeHtml("</span>\n")
+       
+
+# configuration parser
+class docHandler(xml.sax.ContentHandler):
+
+       def __init__(self):
+               self.content = ""
+               return
+    
+       def startElement(self, name, attrs):
+               self.element = name
+                               
+               if len(self.content) > 0:
+                       writeHtml(self.content)
+               self.content = ""
+               
+               if name == "PAGE":
+                       return
+               elif name == "INCLUDE":
+                       fd = open(attrs.get('file'), 'r')
+                       lines = fd.readlines()
+                       fd.close()
+                       for line in lines:
+                               writeHtml(line)
+               elif name == "PARSE":
+                       parseConfig(attrs.get('file'))
+                       
+               elif name == 'STARTMENU':
+                       startMenu(attrs.get('level'))
+                       
+               elif name == 'MENU':
+                       placeMenu(attrs.get('topic'), attrs.get('link'), attrs.get('mode'))
+                       
+               elif name == 'ENDMENU':
+                       writeHtml("</div>\n")
+                       
+               elif name == 'VAR':
+                       match = attrs.get('match')
+                       repl = attrs.get('replace')
+                       idx = len(replace)
+                       replace[idx:] = [match]
+                       idx = len(replace)
+                       replace[idx:] = [repl]
+               
+               elif name == "br":
+                       writeHtml("<br")
+                       if attrs.getLength > 0:
+                               names = attrs.getNames()
+                               for name in names:
+                                       writeHtml(" " + name + "=\"" + attrs.get(name) + "\"")
+                       writeHtml(" />")
+                       
+               else:
+                       writeHtml("<" + name)
+                       if attrs.getLength > 0:
+                               names = attrs.getNames()
+                               for name in names:
+                                       writeHtml(" " + name + "=\"" + attrs.get(name) + "\"")
+                       writeHtml(">")
+
+       def characters(self, ch):
+               self.content = self.content + ch
+
+       def endElement(self, name):
+
+               if name == "PAGE":
+                       return
+               elif name == 'INCLUDE':
+                       return
+               elif name == 'PARSE':
+                       return
+               elif name == 'PAGE':
+                       return
+               elif name == 'STARTMENU':
+                       return
+               elif name == 'ENDMENU':
+                       return
+               elif name == 'MENU':
+                       return
+               elif name == 'VAR':
+                       return
+               elif name == 'br':
+                       return
+
+               if len(self.content) > 0:
+                       writeHtml(self.content)
+               self.content = ""
+               writeHtml("</" + name + ">")
+       
+
+# error handler
+class errHandler(xml.sax.ErrorHandler):
+       def __init__(self):
+               return
+
+       def error(self, exception):
+               sys.stderr.write("%s\n" % exception)
+
+       def fatalError(self, exception):
+               sys.stderr.write("Fatal error while parsing configuration\n")
+               sys.stderr.write("%s\n" % exception)
+               sys.exit(1)
+
+# parse the configuration file
+def parseConfig(file):
+       # handlers
+       dh = docHandler()
+       eh = errHandler()
+
+       # Create an XML parser
+       parser = xml.sax.make_parser()
+
+       # Set the handlers
+       parser.setContentHandler(dh)
+       parser.setErrorHandler(eh)
+
+       fd = open(file, 'r')
+
+       # Parse the file
+       parser.parse(fd)
+       fd.close()
+
+
+# Here we go
+# Parse the commandline
+
+writefile = 0
+
+try:
+       (options, arguments) = getopt.getopt(sys.argv[1:],'fh')
+except getopt.GetoptError, ex:
+       print
+       print "ERROR:"
+       print ex.msg
+       usage()
+       sys.exit(1)
+       pass
+
+for option, value in options:
+       if option == '-f':
+               writefile = 1
+       elif option == '-h':
+               usage()
+               sys.exit(0)
+               pass
+       pass
+
+if not arguments:
+       print "No source file specified"
+       usage()
+       sys.exit(1)
+       pass
+
+if writefile > 0:
+       fname = arguments[0].split('.')[0]
+       fname = fname + ".html"
+       fdout = codecs.open(fname, 'w', 'utf-8')        
+
+parseConfig(arguments[0])
+
+if writefile > 0:
+       fdout.close()
+
diff --git a/www/images/left.png b/www/images/left.png
new file mode 100644 (file)
index 0000000..2081f8a
Binary files /dev/null and b/www/images/left.png differ
diff --git a/www/images/left2.png b/www/images/left2.png
new file mode 100644 (file)
index 0000000..64609b0
Binary files /dev/null and b/www/images/left2.png differ
diff --git a/www/images/leftsel.png b/www/images/leftsel.png
new file mode 100644 (file)
index 0000000..9735722
Binary files /dev/null and b/www/images/leftsel.png differ
diff --git a/www/images/leftsel2.png b/www/images/leftsel2.png
new file mode 100644 (file)
index 0000000..05fad45
Binary files /dev/null and b/www/images/leftsel2.png differ
diff --git a/www/images/openconnect.svg b/www/images/openconnect.svg
new file mode 100644 (file)
index 0000000..655a17d
--- /dev/null
@@ -0,0 +1,1766 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="854.99634"
+   height="653.37921"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.1 r9760"
+   sodipodi:docname="openconnect.svg">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient4813">
+      <stop
+         id="stop4815"
+         offset="0"
+         style="stop-color:#cccccc;stop-opacity:1" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0.39632267"
+         id="stop4817" />
+      <stop
+         id="stop4819"
+         offset="1"
+         style="stop-color:#cccccc;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4762">
+      <stop
+         style="stop-color:#808080;stop-opacity:1;"
+         offset="0"
+         id="stop4764" />
+      <stop
+         style="stop-color:#808080;stop-opacity:0;"
+         offset="1"
+         id="stop4766" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4615">
+      <stop
+         style="stop-color:#1a1a1a;stop-opacity:1;"
+         offset="0"
+         id="stop4617" />
+      <stop
+         style="stop-color:#1a1a1a;stop-opacity:0;"
+         offset="1"
+         id="stop4619" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4600">
+      <stop
+         style="stop-color:#1a1a1a;stop-opacity:1;"
+         offset="0"
+         id="stop4602" />
+      <stop
+         id="stop4608"
+         offset="0.39632267"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         style="stop-color:#808080;stop-opacity:1"
+         offset="1"
+         id="stop4604" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4590">
+      <stop
+         id="stop4594"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         id="stop4592"
+         offset="1"
+         style="stop-color:#e6e6e6;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4053">
+      <stop
+         style="stop-color:#cccccc;stop-opacity:1;"
+         offset="0"
+         id="stop4055" />
+      <stop
+         id="stop4061"
+         offset="0.68990797"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         style="stop-color:#e6e6e6;stop-opacity:1"
+         offset="1"
+         id="stop4057" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4027">
+      <stop
+         style="stop-color:#d4aa00;stop-opacity:1"
+         offset="0"
+         id="stop4029" />
+      <stop
+         id="stop4035"
+         offset="0.57632518"
+         style="stop-color:#ffeeaa;stop-opacity:1" />
+      <stop
+         style="stop-color:#d4aa00;stop-opacity:1"
+         offset="1"
+         id="stop4031" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3881">
+      <stop
+         style="stop-color:#806600;stop-opacity:1;"
+         offset="0"
+         id="stop3883" />
+      <stop
+         style="stop-color:#806600;stop-opacity:0;"
+         offset="1"
+         id="stop3885" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3863">
+      <stop
+         style="stop-color:#d3bc5f;stop-opacity:1"
+         offset="0"
+         id="stop3865" />
+      <stop
+         style="stop-color:#c8ab37;stop-opacity:1"
+         offset="1"
+         id="stop3867" />
+    </linearGradient>
+    <filter
+       id="filter3791"
+       x="-0.25"
+       width="1.5"
+       y="-0.25"
+       height="1.5"
+       inkscape:menu="Non realistic 3D shaders"
+       inkscape:menu-tooltip="Non realistic chrome shader with strong speculars"
+       inkscape:label="Chrome"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         id="feGaussianBlur3793"
+         result="result8"
+         stdDeviation="4" />
+      <feComposite
+         id="feComposite3795"
+         in2="result8"
+         in="result8"
+         operator="xor"
+         result="result6" />
+      <feDisplacementMap
+         id="feDisplacementMap3797"
+         in2="result6"
+         result="result4"
+         scale="80"
+         yChannelSelector="A"
+         xChannelSelector="A"
+         in="result6" />
+      <feComposite
+         id="feComposite3799"
+         in2="result4"
+         k1="3"
+         in="result8"
+         operator="arithmetic"
+         result="result2"
+         k2="0"
+         k3="0"
+         k4="0" />
+      <feComposite
+         id="feComposite3801"
+         in2="result2"
+         operator="in"
+         in="result2"
+         result="fbSourceGraphic" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter3837"
+       x="-0.1414528"
+       width="1.2829056"
+       y="-0.072654158"
+       height="1.1453083"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="13.812338"
+         id="feGaussianBlur3839" />
+    </filter>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask3843">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3845"
+         d="m 1242.0952,323.24652 c -46.2095,0.1434 -97.4083,19.0818 -119.0625,62.6875 -13.8012,27.8561 -8.4155,59.9855 -10.5938,89.9375 -0.3932,36.847 -0.6396,73.7151 -0.031,110.5625 l 21.7813,-1.5 -21.2188,26.8125 c 0.041,1.428 0.081,2.8534 0.125,4.2812 0.1398,29.9443 38.7585,3.7481 39.4375,-16.3125 -0.522,-60.445 -1.3603,-120.9989 1.9063,-181.375 6.1489,-28.8905 33.6891,-48.0008 61.8125,-51.9062 31.3178,-5.1896 67.7582,-3.053 92.7812,18.5625 17.8314,14.2674 21.5911,37.1149 19.0313,58.4687 -0.9481,114.2391 -1.5396,228.5336 -0.6875,342.75 7.8425,31.3505 50.5516,10.6392 39.6562,-16.625 -0.048,-118.2276 -0.024,-236.4776 1.2188,-354.6875 -4.9781,-40.1229 -37.9454,-73.1499 -76.125,-84 -16.1334,-5.1758 -33.097,-7.6894 -50.0313,-7.6562 z"
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:40;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
+    </mask>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient3869"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 1.42804, 126.145)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient3887"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(1.42804, -0.394406)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient3895"
+       gradientUnits="userSpaceOnUse"
+       x1="200.01021"
+       y1="1000.8444"
+       x2="206.07111"
+       y2="621.02704" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient3936"
+       gradientUnits="userSpaceOnUse"
+       x1="200.01021"
+       y1="1000.8444"
+       x2="206.07111"
+       y2="621.02704" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient3955"
+       gradientUnits="userSpaceOnUse"
+       x1="208.09143"
+       y1="1233.1796"
+       x2="206.07111"
+       y2="621.02704" />
+    <filter
+       inkscape:collect="always"
+       id="filter3995"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.8688332"
+         id="feGaussianBlur3997" />
+    </filter>
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4005">
+      <rect
+         style="fill:#ffffff;stroke:none"
+         id="rect4007"
+         width="313.14728"
+         height="260.61935"
+         x="-18.795315"
+         y="665.07935"
+         ry="12.497526" />
+    </mask>
+    <filter
+       inkscape:collect="always"
+       id="filter4013"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.26557833"
+         id="feGaussianBlur4015" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4019"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-0.000528429, 309.606)"
+       x1="200.01021"
+       y1="1000.8444"
+       x2="206.07111"
+       y2="621.02704" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4033"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4059"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4073"
+       gradientUnits="userSpaceOnUse"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4079"
+       gradientUnits="userSpaceOnUse"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4083"
+       gradientUnits="userSpaceOnUse"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611"
+       gradientTransform="translate(-316.588, -28.3644)" />
+    <filter
+       inkscape:collect="always"
+       id="filter4095"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.3490521"
+         id="feGaussianBlur4097" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4103"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-682.863, -32.3249)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4109"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-682.863, -32.3249)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4105">
+      <path
+         inkscape:connector-curvature="0"
+         id="path4107"
+         d="m -125.63755,141.2656 c -46.2095,0.12373 -97.4083,16.46453 -119.0625,54.08927 -13.80115,24.03536 -8.4155,51.75789 -10.59375,77.60167 -0.3932,31.79306 -0.6396,63.60433 -0.031,95.39773 l 21.78125,-1.29426 -21.21875,23.1349 c 0.041,1.23213 0.081,2.46202 0.125,3.69399 0.1398,25.83713 38.75845,3.23401 39.43745,-14.07508 -0.522,-52.15436 -1.3603,-104.40268 1.9063,-156.49759 6.1489,-24.92787 33.6891,-41.417 61.8125,-44.78674 31.3178,-4.47779 67.758201,-2.63425 92.781201,16.01647 17.8314,12.31048 21.5911,32.02422 19.0313,50.44913 -0.9481,98.57005 -1.5396,197.18791 -0.6875,295.73837 7.8425,27.05047 50.5516,9.17993 39.65620036,-14.34471 -0.048,-102.01149 -0.024,-204.04231 1.2188,-306.03853 C -4.4591486,185.73058 -37.426449,157.23357 -75.606049,147.87167 c -16.1334,-4.46589 -33.097001,-6.63472 -50.031301,-6.60607 z"
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4109);fill-opacity:1;stroke:none;stroke-width:40;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
+    </mask>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4116"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-316.588, -28.3644)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4125"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-316.588, -28.3644)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4134"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 1.42804, 126.145)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4136"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(1.42804, -0.394406)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4138"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4164"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-316.588, -28.3644)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4171"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 1.42804, 126.145)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4173"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(1.42804, -0.394406)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4175"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4181"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(1.19662, -0.394406)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4184"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 1.19662, 126.145)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4186"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-316.588, -28.3644)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4191"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-347.273, 244.623)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4194"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4196"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(445.664, -8.47563)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4198"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 445.664, 118.063)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4200"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(97.1939, 236.542)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4282"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-316.588, -28.3644)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4284"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 1.42804, 126.145)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4286"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(1.42804, -0.394406)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4288"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4290"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(97.1939, 236.542)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4292"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 445.664, 118.063)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4294"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(445.664, -8.47563)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4296"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4302"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-451.352, -16.5568)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4305"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, -451.352, 109.982)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4310"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-799.822, 228.461)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4324"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 1.42804, 126.145)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4326"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(1.42804, -0.394406)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4328"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4334"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-451.352, -16.5568)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4337"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, -451.352, 109.982)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4339"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-316.588, -28.3644)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4346"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-316.588, -28.3644)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4351"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-799.822, 228.461)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <filter
+       inkscape:collect="always"
+       id="filter4390"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="9.8527379"
+         id="feGaussianBlur4392" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4118"
+       x="-0.063578159"
+       width="1.1271563"
+       y="-0.35844263"
+       height="1.7168852"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.4307588"
+         id="feGaussianBlur4120" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter4383"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.4959403"
+         id="feGaussianBlur4385" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4504"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 1.42804, 126.145)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4506"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(1.42804, -0.394406)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4508"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4510"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 316.122, 130.185)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4512"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(316.122, 3.6462)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4514"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-1275.66, 1109.42)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4516"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4518"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, 1.42804, 126.145)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4520"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(1.42804, -0.394406)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4522"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4524"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-1275.66, 1109.42)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.832258, -786.719, 225.903)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4528"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-786.719, 99.3645)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4530"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4532"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask4586">
+      <path
+         sodipodi:type="arc"
+         style="opacity:0.3;fill:#ffffff;stroke:none"
+         id="path4588"
+         sodipodi:cx="64.020683"
+         sodipodi:cy="940.617"
+         sodipodi:rx="164.12575"
+         sodipodi:ry="155.97766"
+         d="m 228.14643,940.617 a 164.12575,155.97766 0 1 1 -328.25149,0 164.12575,155.97766 0 1 1 328.25149,0 z"
+         transform="translate(-157.125, 294.72)" />
+    </mask>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4590"
+       id="radialGradient4596"
+       cx="118.12125"
+       cy="885.52661"
+       fx="118.12125"
+       fy="885.52661"
+       r="164.12575"
+       gradientTransform="matrix(0.943262, 0, 0, 0.896434, -482.597, 510.789)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4600"
+       id="linearGradient4606"
+       x1="-510.55344"
+       y1="1312.4917"
+       x2="-509.60272"
+       y2="1356.6768"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4615"
+       id="linearGradient4621"
+       x1="-783.69495"
+       y1="1325.1565"
+       x2="-784.01508"
+       y2="1344.9447"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4590"
+       id="radialGradient4625"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.943262, 0, 0, 0.896434, 169.283, 589.804)"
+       cx="118.12125"
+       cy="885.52661"
+       fx="118.12125"
+       fy="885.52661"
+       r="164.12575" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4762"
+       id="radialGradient4768"
+       cx="-422.32864"
+       cy="1353.261"
+       fx="-422.32864"
+       fy="1353.261"
+       r="154.60934"
+       gradientTransform="matrix(1, 0, 0, 0.951289, 0, 65.9189)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4600"
+       id="linearGradient4793"
+       gradientUnits="userSpaceOnUse"
+       x1="-510.55344"
+       y1="1312.4917"
+       x2="-509.60272"
+       y2="1356.6768" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4590"
+       id="radialGradient4795"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.943262, 0, 0, 0.896434, -482.597, 510.789)"
+       cx="118.12125"
+       cy="885.52661"
+       fx="118.12125"
+       fy="885.52661"
+       r="164.12575" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4762"
+       id="radialGradient4797"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.951289, 0, 65.9189)"
+       cx="-422.32864"
+       cy="1353.261"
+       fx="-422.32864"
+       fy="1353.261"
+       r="154.60934" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4615"
+       id="linearGradient4799"
+       gradientUnits="userSpaceOnUse"
+       x1="-783.69495"
+       y1="1325.1565"
+       x2="-784.01508"
+       y2="1344.9447" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4615"
+       id="linearGradient4802"
+       gradientUnits="userSpaceOnUse"
+       x1="-783.69495"
+       y1="1325.1565"
+       x2="-784.01508"
+       y2="1344.9447" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4762"
+       id="radialGradient4805"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.951289, 0, 65.9189)"
+       cx="-422.32864"
+       cy="1353.261"
+       fx="-422.32864"
+       fy="1353.261"
+       r="154.60934" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4590"
+       id="radialGradient4808"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.943262, 0, 0, 0.896434, -482.597, 510.789)"
+       cx="118.12125"
+       cy="885.52661"
+       fx="118.12125"
+       fy="885.52661"
+       r="164.12575" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4813"
+       id="linearGradient4811"
+       gradientUnits="userSpaceOnUse"
+       x1="-510.55344"
+       y1="1312.4917"
+       x2="-509.60272"
+       y2="1356.6768" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4813"
+       id="linearGradient4827"
+       gradientUnits="userSpaceOnUse"
+       x1="-510.55344"
+       y1="1312.4917"
+       x2="-509.60272"
+       y2="1356.6768" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4590"
+       id="radialGradient4829"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.943262, 0, 0, 0.896434, -482.597, 510.789)"
+       cx="118.12125"
+       cy="885.52661"
+       fx="118.12125"
+       fy="885.52661"
+       r="164.12575" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4762"
+       id="radialGradient4831"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.951289, 0, 65.9189)"
+       cx="-422.32864"
+       cy="1353.261"
+       fx="-422.32864"
+       fy="1353.261"
+       r="154.60934" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4615"
+       id="linearGradient4833"
+       gradientUnits="userSpaceOnUse"
+       x1="-783.69495"
+       y1="1325.1565"
+       x2="-784.01508"
+       y2="1344.9447" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4813"
+       id="linearGradient4845"
+       gradientUnits="userSpaceOnUse"
+       x1="-510.55344"
+       y1="1312.4917"
+       x2="-509.60272"
+       y2="1356.6768" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4590"
+       id="radialGradient4847"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.943262, 0, 0, 0.896434, -482.597, 510.789)"
+       cx="118.12125"
+       cy="885.52661"
+       fx="118.12125"
+       fy="885.52661"
+       r="164.12575" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4762"
+       id="radialGradient4849"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1, 0, 0, 0.951289, 0, 65.9189)"
+       cx="-422.32864"
+       cy="1353.261"
+       fx="-422.32864"
+       fy="1353.261"
+       r="154.60934" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4615"
+       id="linearGradient4851"
+       gradientUnits="userSpaceOnUse"
+       x1="-783.69495"
+       y1="1325.1565"
+       x2="-784.01508"
+       y2="1344.9447" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4615"
+       id="linearGradient4854"
+       gradientUnits="userSpaceOnUse"
+       x1="-783.69495"
+       y1="1325.1565"
+       x2="-784.01508"
+       y2="1344.9447"
+       gradientTransform="matrix(-0.00217331, -0.305993, 0.305993, -0.00217331, -760.573, 689.869)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4762"
+       id="radialGradient4857"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.00217331, -0.305993, 0.291087, -0.00206745, -740.402, 689.726)"
+       cx="-422.32864"
+       cy="1353.261"
+       fx="-422.32864"
+       fy="1353.261"
+       r="154.60934" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4590"
+       id="radialGradient4860"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.00205, -0.288631, 0.274302, -0.00194823, -603.227, 836.43)"
+       cx="118.12125"
+       cy="885.52661"
+       fx="118.12125"
+       fy="885.52661"
+       r="164.12575" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4813"
+       id="linearGradient4863"
+       gradientUnits="userSpaceOnUse"
+       x1="-510.55344"
+       y1="1312.4917"
+       x2="-509.60272"
+       y2="1356.6768"
+       gradientTransform="matrix(-0.00217331, -0.305993, 0.305993, -0.00217331, -760.573, 689.869)" />
+    <filter
+       inkscape:collect="always"
+       id="filter4882"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.1431639"
+         id="feGaussianBlur4884" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4936"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.832258,1.42804,126.145)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4938"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(1.42804,-0.394406)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4940"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4942"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.832258,316.122,130.185)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4944"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(316.122,3.6462)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4946"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-1275.66,1109.42)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4948"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4950"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.832258,1.42804,126.145)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4952"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(1.42804,-0.394406)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4954"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4053"
+       id="linearGradient4956"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-1275.66,1109.42)"
+       x1="582.73468"
+       y1="412.44028"
+       x2="564.73315"
+       y2="186.16611" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3863"
+       id="radialGradient4958"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.832258,-786.719,225.903)"
+       cx="207.08125"
+       cy="608.71729"
+       fx="207.08125"
+       fy="608.71729"
+       r="156.57364" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3881"
+       id="linearGradient4960"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-786.719,99.3645)"
+       x1="200.01021"
+       y1="1022.273"
+       x2="200.35683"
+       y2="728.16992" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4962"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4027"
+       id="linearGradient4964"
+       gradientUnits="userSpaceOnUse"
+       x1="59.09375"
+       y1="753.96875"
+       x2="357.9375"
+       y2="753.96875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4813"
+       id="linearGradient4966"
+       gradientUnits="userSpaceOnUse"
+       x1="-510.55344"
+       y1="1312.4917"
+       x2="-509.60272"
+       y2="1356.6768" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4590"
+       id="radialGradient4968"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.943262,0,0,0.896434,-482.597,510.789)"
+       cx="118.12125"
+       cy="885.52661"
+       fx="118.12125"
+       fy="885.52661"
+       r="164.12575" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4762"
+       id="radialGradient4970"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.951289,0,65.9189)"
+       cx="-422.32864"
+       cy="1353.261"
+       fx="-422.32864"
+       fy="1353.261"
+       r="154.60934" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4615"
+       id="linearGradient4972"
+       gradientUnits="userSpaceOnUse"
+       x1="-783.69495"
+       y1="1325.1565"
+       x2="-784.01508"
+       y2="1344.9447" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.5"
+     inkscape:cx="632.41985"
+     inkscape:cy="249.91977"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1866"
+     inkscape:window-height="1117"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0">
+    <sodipodi:guide
+       position="182.74994,-169.94581"
+       orientation="0,854.99634"
+       id="guide3233" />
+    <sodipodi:guide
+       position="884.6494,-363.17186"
+       orientation="-653.37921,0"
+       id="guide3235" />
+    <sodipodi:guide
+       position="854.99634,653.37921"
+       orientation="0,-854.99634"
+       id="guide3237" />
+    <sodipodi:guide
+       position="-23.280247,-219.99834"
+       orientation="653.37921,0"
+       id="guide3239" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Ebene 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(1145.08, -378.311)">
+    <g
+       id="g4886"
+       transform="matrix(0.86295272,0,0,0.86295272,-100.21235,-3.0790965)">
+      <g
+         transform="translate(-1471.31,104.662)"
+         id="g4483">
+        <path
+           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.4;color:#000000;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:40;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4390);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+           d="m 518.35059,422.18433 c -46.2095,0.12373 -97.4083,16.43776 -119.0625,54.0625 -13.8012,24.03535 -8.41545,51.78122 -10.59375,77.625 -0.24575,19.87066 -0.44809,39.74892 -0.40625,59.625 0.008,3.71438 0.0375,7.41079 0.0625,11.125 l -15.75,0 c -8.53374,0 -15.5,6.96626 -15.5,15.5 l 0,235.625 c 0,8.53374 6.96626,15.5 15.5,15.5 l 288.15625,0 c 5.33359,0 10.05282,-2.71942 12.84375,-6.84375 1.67456,-2.4746 2.65625,-5.4561 2.65625,-8.65625 l 0,-235.625 c 0,-0.53336 -0.0406,-1.07396 -0.0937,-1.59375 -0.31863,-3.11877 -1.57046,-5.95169 -3.46875,-8.25 -2.84744,-3.44747 -7.13727,-5.65625 -11.9375,-5.65625 l -17.21875,0 c 0.0125,-2.86501 0.0175,-5.72876 0.0312,-8.59375 0.18374,-38.25547 0.47145,-76.53267 0.9375,-114.78125 -4.9781,-34.61964 -37.9454,-63.10685 -76.125,-72.46875 -16.1335,-4.46589 -33.09695,-6.6224 -50.03125,-6.59375 z m 1.4375,35.21875 c 23.64034,-0.0666 47.51472,4.6573 65.5,18.0625 17.8314,12.31048 21.59105,32.01259 19.03125,50.4375 -0.11851,12.32126 -0.2385,24.64622 -0.34375,36.96875 -0.10525,12.32253 -0.19352,24.64541 -0.28125,36.96875 -0.0588,8.26068 -0.1069,16.52037 -0.15625,24.78125 l -175.09375,0 c -0.008,-1.01077 -0.0234,-2.02045 -0.0312,-3.03125 -0.30287,-39.13941 -0.1687,-78.30382 2.28125,-117.375 6.1489,-24.92788 33.689,-41.41152 61.8125,-44.78125 8.8081,-1.25938 18.03068,-2.00521 27.28125,-2.03125 z"
+           id="path4246"
+           inkscape:connector-curvature="0" />
+        <g
+           id="g4127"
+           transform="translate(314.694,4.04061)">
+          <rect
+             ry="12.497526"
+             y="623.66309"
+             x="51.935669"
+             height="260.61935"
+             width="313.14728"
+             id="rect3783"
+             style="fill:url(#radialGradient4936);stroke:none" />
+          <rect
+             style="fill:url(#linearGradient4938);stroke:none"
+             id="rect3879"
+             width="313.14728"
+             height="260.61935"
+             x="51.935669"
+             y="623.66309"
+             ry="12.497526" />
+          <path
+             transform="translate(70.731,-41.4163)"
+             mask="url(#mask4005)"
+             inkscape:connector-curvature="0"
+             id="rect3989"
+             d="m -6.2998012,662.07652 c -8.5337378,0 -15.4999998,6.96626 -15.4999998,15.5 l 0,235.625 c 0,8.53374 6.966262,15.5 15.4999998,15.5 l 288.1562512,0 c 8.53374,0 15.5,-6.96626 15.5,-15.5 l 0,-235.625 c 0,-8.53374 -6.96626,-15.5 -15.5,-15.5 l -288.1562512,0 z m 0,6 288.1562512,0 c 5.31352,0 9.5,4.18648 9.5,9.5 l 0,235.625 c 0,5.31352 -4.18648,9.5 -9.5,9.5 l -288.1562512,0 c -5.3135208,0 -9.4999998,-4.18648 -9.4999998,-9.5 l 0,-235.625 c 0,-5.31352 4.186479,-9.5 9.4999998,-9.5 z"
+             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3995);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
+          <path
+             d="m 64.4375,630.8125 c -3.088336,0 -5.34375,2.25541 -5.34375,5.34375 l 0,235.625 c 0,3.08834 2.255414,5.34375 5.34375,5.34375 l 288.15625,0 c 3.08834,0 5.34375,-2.25541 5.34375,-5.34375 l 0,-235.625 c 0,-3.08834 -2.25541,-5.34375 -5.34375,-5.34375 l -288.15625,0 z"
+             id="path4025"
+             style="fill:url(#linearGradient4940);stroke:none"
+             inkscape:original="M 64.4375 623.65625 C 57.513871 623.65625 51.9375 629.23262 51.9375 636.15625 L 51.9375 871.78125 C 51.9375 878.70488 57.513871 884.28125 64.4375 884.28125 L 352.59375 884.28125 C 359.51738 884.28125 365.09375 878.70488 365.09375 871.78125 L 365.09375 636.15625 C 365.09375 629.23262 359.51738 623.65625 352.59375 623.65625 L 64.4375 623.65625 z "
+             inkscape:radius="-7.1428571"
+             sodipodi:type="inkscape:offset" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path3901"
+             d="m 65.691485,637.36938 c -0.0543,0.2253 -0.0937,0.4551 -0.0937,0.7188 l 0,1.3124 c 97.653995,-0.4644 195.313785,-0.674 292.968765,-0.6562 l 0,-0.6562 c 0,-0.033 8.7e-4,-0.0614 0,-0.0938 -97.62407,0.0192 -195.25193,-0.1507 -292.875015,-0.625 z m -0.0937,9.5 0,1.9375 c 34.05366,-0.1333 68.102435,-0.2451 102.156265,-0.3437 63.60326,-0.1703 127.20814,-0.2222 190.8125,-0.1876 l 0,-0.8437 c -63.05403,0.0306 -126.10284,-0.0178 -189.15625,-0.1875 -34.60052,-0.1011 -69.21324,-0.237 -103.812515,-0.375 z m 0,8.0938 0,2.0312 c 97.653995,-0.4634 195.313785,-0.6454 292.968765,-0.625 l 0,-0.75 c -97.65533,0.0166 -195.31442,-0.1808 -292.968765,-0.6562 z m 0,9.5312 0,1.9062 c 34.05363,-0.1319 68.102475,-0.245 102.156265,-0.3437 63.60326,-0.1703 127.20814,-0.2196 190.8125,-0.1875 l 0,-0.8438 c -63.05403,0.0332 -126.10284,-0.0178 -189.15625,-0.1874 -34.60051,-0.1011 -69.21325,-0.2058 -103.812515,-0.3438 z m 0,8.2188 0,1.75 c 97.654015,-0.4031 195.314005,-0.5301 292.968765,-0.4688 l 0,-0.8125 c -97.65332,0.0582 -195.31621,-0.0547 -292.968765,-0.4687 z m 0,9.5 0,1.6874 c 23.6174,-0.0835 47.257545,-0.1815 70.875015,-0.25 74.04061,-0.1982 148.0548,-0.2323 222.09375,-0.1562 l 0,-0.875 c -73.47863,0.074 -146.95668,0.0415 -220.4375,-0.1562 -24.17274,-0.0707 -48.358405,-0.1632 -72.531265,-0.25 z m 0,6.125 0,1.8124 c 97.654595,-0.4141 195.313365,-0.5537 292.968765,-0.5 l 0,-0.8124 c -97.65913,0.0505 -195.31044,-0.0746 -292.968765,-0.5 z m 0,9.5312 0,1.6875 c 25.57411,-0.0921 51.144565,-0.1759 76.718765,-0.25 72.08231,-0.1929 144.16931,-0.2239 216.25,-0.1563 l 0,-0.875 c -71.53205,0.0657 -143.0624,0.0363 -214.59375,-0.1562 -26.13009,-0.0763 -52.244795,-0.1543 -78.375015,-0.25 z m 0,8.125 0,1.7188 c 97.656045,-0.4013 195.311975,-0.5308 292.968765,-0.4688 l 0,-0.8125 c -97.66232,0.0626 -195.30719,-0.029 -292.968765,-0.4375 z m 0,9.4688 0,1.6562 c 22.96133,-0.0807 45.944865,-0.1522 68.906265,-0.2188 74.68645,-0.1999 149.37482,-0.2352 224.0625,-0.1562 l 0,-0.875 c -74.13788,0.0739 -148.26907,0.0433 -222.40625,-0.1562 -23.51662,-0.0687 -47.046545,-0.1668 -70.562515,-0.25 z m 0,8 0,1.9687 c 97.656635,-0.4569 195.311185,-0.6169 292.968765,-0.5937 l 0,-0.7813 c -97.65051,0.0245 -195.31921,-0.127 -292.968765,-0.5937 z m 0,9.5 0,1.9062 c 32.7411,-0.1265 65.508765,-0.2489 98.250015,-0.3438 64.91575,-0.1738 129.80189,-0.2268 194.71875,-0.1874 l 0,-0.8438 c -64.35593,0.0352 -128.70719,-0.0143 -193.0625,-0.1875 -33.29816,-0.0973 -66.609265,-0.2127 -99.906265,-0.3437 z m 0,8.0937 0,2 c 97.656645,-0.4557 195.311175,-0.6507 292.968765,-0.625 l 0,-0.75 c -97.65051,0.0219 -195.31921,-0.1574 -292.968765,-0.625 z m 0,9.5313 0,1.875 c 32.7411,-0.1253 65.508765,-0.2489 98.250015,-0.3438 64.91575,-0.1738 129.80189,-0.2243 194.71875,-0.1875 l 0,-0.8125 c -64.35593,0.0377 -128.70719,-0.0143 -193.0625,-0.1875 -33.29815,-0.0973 -66.609275,-0.2127 -99.906265,-0.3437 z m 0,8.1874 0,1.75 c 97.658815,-0.3956 195.309245,-0.5349 292.968765,-0.4687 l 0,-0.8125 c -97.65918,0.0632 -195.31036,-0.0622 -292.968765,-0.4688 z m 0,9.5313 0,1.625 c 22.31356,-0.078 44.623895,-0.1541 66.937515,-0.2187 75.34267,-0.2018 150.69026,-0.2383 226.03125,-0.1563 l 0,-0.875 c -74.78907,0.0797 -149.58371,0.045 -224.375,-0.1563 -22.86903,-0.0668 -45.724615,-0.1375 -68.593765,-0.2187 z m 0,10.125 0,1.5313 c 97.658985,-0.3484 195.309225,-0.4415 292.968765,-0.3438 l 0,-0.8125 c -97.65631,0.0952 -195.31303,-0.0166 -292.968765,-0.375 z m 0,9.5 0,1.4687 c 13.83929,-0.0447 27.69193,-0.0848 41.531255,-0.125 83.82173,-0.2244 167.61762,-0.2482 251.43751,-0.125 l 0,-0.9374 c -83.26439,0.1203 -166.51757,0.099 -249.78125,-0.125 -14.393275,-0.0421 -28.794205,-0.1091 -43.187515,-0.1563 z m 0,8.1563 0,1.4687 c 97.650455,-0.3367 195.317825,-0.4189 292.968765,-0.3125 l 0,-0.875 c -97.65712,0.1055 -195.31218,0.0599 -292.968765,-0.2812 z m 0,9.4687 0,1.4375 c 11.22973,-0.0355 22.45775,-0.0925 33.68751,-0.125 86.425875,-0.2314 172.854095,-0.2308 259.281255,-0.0938 l 0,-1 c -85.87375,0.1309 -171.75197,0.1374 -257.62501,-0.0937 -11.783565,-0.0344 -23.560375,-0.0874 -35.343755,-0.125 z m 0,8.0313 0,1.6874 c 97.653285,-0.3903 195.314795,-0.507 292.968765,-0.4374 l 0,-0.8438 c -97.65631,0.0699 -195.31317,-0.009 -292.968765,-0.4062 z m 0,9.4687 0,1.6563 c 21.01143,-0.0726 42.019775,-0.1579 63.031265,-0.2188 76.64475,-0.2052 153.2915,-0.2442 229.9375,-0.1562 l 0,-0.9063 c -76.09389,0.0826 -152.18804,0.0485 -228.28125,-0.1563 -21.56671,-0.0629 -43.121345,-0.1431 -64.687515,-0.2187 z m 0,8.125 0,1.6875 c 97.653285,-0.3882 195.314795,-0.5087 292.968765,-0.4375 l 0,-0.8125 c -97.6563,0.0682 -195.31318,-0.0385 -292.968765,-0.4375 z m 0,9.5 0,1.625 c 21.01143,-0.0719 42.019775,-0.1579 63.031265,-0.2187 76.64475,-0.2053 153.2915,-0.2412 229.9375,-0.1563 l 0,-0.875 c -76.09389,0.0856 -152.18805,0.0485 -228.28125,-0.1563 -21.56671,-0.0629 -43.121345,-0.1431 -64.687515,-0.2187 z m 0,8.2187 0,1.4376 c 97.660025,-0.3305 195.308285,-0.3594 292.968765,-0.25 l 0,-0.9063 c -97.65732,0.1072 -195.31196,0.059 -292.968765,-0.2813 z m 0,9.4688 0,1.4062 c 10.58384,-0.0333 21.16615,-0.063 31.75001,-0.0937 87.077755,-0.2331 174.142845,-0.2344 261.218755,-0.0937 l 0,-1 c -86.5222,0.1374 -173.03787,0.1391 -259.562505,-0.0938 -11.13344,-0.0325 -22.2728,-0.0895 -33.40626,-0.125 z m 0,6.0312 0,1.75 c 97.653655,-0.3955 195.314385,-0.5349 292.968765,-0.4687 l 0,-0.8125 c -97.65917,0.0632 -195.31036,-0.0622 -292.968765,-0.4688 z m 0,9.5313 c 0.0444,0.6929 0.3272,1.2501 0.75,1.625 22.06355,-0.0769 44.123905,-0.1548 66.187515,-0.2187 75.20725,-0.2014 150.41942,-0.2376 225.625,-0.1563 0.16038,-0.2431 0.28202,-0.5509 0.34375,-0.875 -74.77117,0.0796 -149.54204,0.045 -224.3125,-0.1563 -22.86903,-0.0668 -45.724615,-0.1375 -68.593765,-0.2187 z"
+             style="opacity:0.22018349;fill:#000000;stroke:none;filter:url(#filter4013)" />
+        </g>
+        <rect
+           ry="12.497526"
+           y="627.70367"
+           x="366.62985"
+           height="260.61935"
+           width="313.14728"
+           id="rect4154"
+           style="fill:url(#radialGradient4942);stroke:none" />
+        <rect
+           style="fill:url(#linearGradient4944);stroke:none"
+           id="rect4156"
+           width="313.14728"
+           height="260.61935"
+           x="366.62985"
+           y="627.70367"
+           ry="12.497526" />
+        <path
+           transform="translate(385.425,-37.3756)"
+           mask="url(#mask4005)"
+           inkscape:connector-curvature="0"
+           id="path4158"
+           d="m -6.2998012,662.07652 c -8.5337378,0 -15.4999998,6.96626 -15.4999998,15.5 l 0,235.625 c 0,8.53374 6.966262,15.5 15.4999998,15.5 l 288.1562512,0 c 8.53374,0 15.5,-6.96626 15.5,-15.5 l 0,-235.625 c 0,-8.53374 -6.96626,-15.5 -15.5,-15.5 l -288.1562512,0 z m 0,6 288.1562512,0 c 5.31352,0 9.5,4.18648 9.5,9.5 l 0,235.625 c 0,5.31352 -4.18648,9.5 -9.5,9.5 l -288.1562512,0 c -5.3135208,0 -9.4999998,-4.18648 -9.4999998,-9.5 l 0,-235.625 c 0,-5.31352 4.186479,-9.5 9.4999998,-9.5 z"
+           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3995);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
+        <g
+           id="g4126"
+           transform="translate(1235.85,-856.656)">
+          <g
+             transform="translate(3.05725,-0.966151)"
+             id="g4122">
+            <path
+               style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4946);fill-opacity:1;stroke:none;stroke-width:40;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+               d="m -718.43029,1283.0061 c -46.2095,0.1238 -97.4083,16.4646 -119.0625,54.0893 -13.80115,24.0354 -8.4155,51.7579 -10.59375,77.6017 -0.3932,31.793 -0.6396,63.6043 -0.031,95.3977 l 21.78125,-1.2943 -21.21875,23.1349 c 0.041,1.2322 0.081,2.4621 0.125,3.694 0.1398,25.8372 38.75845,3.234 39.43745,-14.075 -0.522,-52.1544 -1.3603,-104.4027 1.9063,-156.4976 6.1489,-24.9279 33.6891,-41.417 61.8125,-44.7868 31.3178,-4.4778 67.7582,-2.6342 92.7812,16.0165 17.8314,12.3105 21.5911,32.0242 19.0313,50.4491 -0.9481,98.5701 -1.5396,197.1879 -0.6875,295.7384 7.8425,27.0505 50.5516,9.1799 39.6562,-14.3447 -0.048,-102.0115 -0.024,-204.0423 1.2188,-306.0385 -4.9781,-34.6197 -37.9454,-63.1167 -76.125,-72.4786 -16.1334,-4.4659 -33.097,-6.6347 -50.0313,-6.6061 z"
+               id="path3787"
+               inkscape:connector-curvature="0" />
+            <path
+               style="opacity:0.72782874;fill:#ffffff;stroke:none;filter:url(#filter4118)"
+               d="m -719.39451,1290.2293 c -35.75756,0 -64.7432,5.9938 -64.7432,13.383 0,3.7664 7.5446,7.1567 19.66489,9.5881 11.73891,-2.4569 28.04254,-3.9782 46.07085,-3.9782 17.53127,0 33.42019,1.4562 45.0783,3.7949 11.54418,-2.4162 18.69303,-5.7411 18.69303,-9.4048 0,-7.3892 -29.00631,-13.383 -64.76387,-13.383 z"
+               id="path3295"
+               inkscape:connector-curvature="0" />
+          </g>
+          <path
+             inkscape:connector-curvature="0"
+             id="path4150"
+             d="m 1734.4484,339.23376 c -46.2095,0.1434 -97.4083,19.0818 -119.0625,62.6875 -13.8012,27.8561 -8.4155,59.9855 -10.5938,89.9375 -0.3932,36.847 -0.6396,73.7151 -0.031,110.5625 l 21.7813,-1.5 -21.2188,26.8125 c 0.041,1.428 0.081,2.8534 0.125,4.2812 0.1398,29.9443 38.7585,3.7481 39.4375,-16.3125 -0.522,-60.445 -1.3603,-120.9989 1.9063,-181.375 6.1489,-28.8905 33.689,-48.0008 61.8125,-51.9062 31.3177,-5.1896 67.7582,-3.053 92.7812,18.5625 17.8314,14.2674 21.5911,37.1149 19.0313,58.4687 -0.9481,114.2391 -1.5396,228.5336 -0.6875,342.74997 7.8425,31.3505 50.5515,10.6392 39.6562,-16.625 -0.048,-118.22757 -0.024,-236.47757 1.2188,-354.68747 -4.9781,-40.1229 -37.9454,-73.1499 -76.125,-84 -16.1335,-5.1758 -33.097,-7.6894 -50.0313,-7.6562 z"
+             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:40;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3791);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+             transform="matrix(1,0,0,0.86284,-2449.82,988.83)" />
+          <path
+             mask="url(#mask3843)"
+             transform="matrix(1,0,0,0.862386,-1957.47,1002.88)"
+             d="m 1242.0625,334.46875 c -43.1631,0.13395 -89.9562,17.99498 -109.0625,56.4375 -0,0.009 0,0.0226 0,0.0312 -11.6618,23.56635 -7.2063,53.46856 -9.4062,85.0625 -0.3508,32.86803 -0.5102,65.68011 -0.125,98.4375 l 9.875,-0.6875 a 11.210927,11.210927 0 0 1 7.7812,2.4375 c -0.4624,-52.6336 -0.8032,-105.47103 2.0625,-158.4375 a 11.210927,11.210927 0 0 1 0.2187,-1.75 c 7.3342,-34.45921 38.9734,-56.04303 70.9376,-60.59375 l 0,-0.0312 c 0.1012,-0.0168 0.2111,-0.0146 0.3124,-0.0312 33.0125,-5.41964 72.6039,-3.63109 101.3126,20.9375 l 0,-0.0312 c 0.077,0.0618 0.1419,0.12544 0.2187,0.1875 0.034,0.029 0.06,0.0646 0.094,0.0937 21.1209,17.1436 25.4592,43.85238 22.9376,67.03125 -3e-4,0.0312 2e-4,0.0625 0,0.0937 -0.9432,113.66345 -1.5218,227.33516 -0.6876,340.90625 1.2462,4.16968 2.7143,5.17964 4.0938,5.75 1.505,0.62221 4.0586,0.66583 6.9062,-0.625 2.8477,-1.29083 5.5447,-3.82071 6.875,-6.53125 1.3304,-2.71054 1.7621,-5.38781 0.1563,-9.40625 a 11.210927,11.210927 0 0 1 -0.8125,-4.15625 c -0.048,-117.93024 -0.015,-235.92132 1.2188,-353.90625 -4.5894,-34.61252 -34.1058,-64.37661 -67.9688,-74 a 11.210927,11.210927 0 0 1 -0.375,-0.0937 c -14.9624,-4.8001 -30.7522,-7.156 -46.5625,-7.125 z M 1141.2188,594.03125 1124.25,615.5 c 0,0.0621 -0,0.12542 0,0.1875 a 11.210927,11.210927 0 0 1 0,0.28125 c 0.01,1.21495 0.1339,1.17476 0.25,1.78125 0.7478,-0.19089 1.4986,-0.32129 2.6875,-0.96875 3.2667,-1.779 7.2221,-5.13498 9.9687,-8.6875 2.7467,-3.55252 4.0428,-7.2429 4.0938,-8.75 -0.015,-1.76632 -0.015,-3.54553 -0.031,-5.3125 z"
+             id="path3803"
+             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.7;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:40;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3837);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+             inkscape:original="M 1242.0312 323.25 C 1195.8218 323.3934 1144.6229 342.3318 1122.9688 385.9375 C 1109.1675 413.7936 1114.5533 445.923 1112.375 475.875 C 1111.9818 512.722 1111.7351 549.5901 1112.3438 586.4375 L 1134.125 584.9375 L 1112.9062 611.75 C 1112.9472 613.178 1112.9873 614.60345 1113.0312 616.03125 C 1113.171 645.97555 1151.7897 619.77935 1152.4688 599.71875 C 1151.9468 539.27375 1151.1084 478.71985 1154.375 418.34375 C 1160.5239 389.45325 1188.064 370.3429 1216.1875 366.4375 C 1247.5052 361.2479 1283.9457 363.3845 1308.9688 385 C 1326.8002 399.2674 1330.5598 422.11495 1328 443.46875 C 1327.0519 557.70785 1326.4604 672.00235 1327.3125 786.21875 C 1335.155 817.56925 1377.864 796.85795 1366.9688 769.59375 C 1366.9207 651.36615 1366.9447 533.11615 1368.1875 414.90625 C 1363.2094 374.78335 1330.2421 341.75635 1292.0625 330.90625 C 1275.929 325.73045 1258.9655 323.2168 1242.0312 323.25 z "
+             inkscape:radius="-11.209806"
+             sodipodi:type="inkscape:offset" />
+          <path
+             transform="translate(-589.735,1140.27)"
+             mask="url(#mask4105)"
+             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:none;stroke:#000000;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4095);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+             d="m -125.63755,141.2656 c -46.2095,0.12373 -97.4083,16.46453 -119.0625,54.08927 -13.80115,24.03536 -8.4155,51.75789 -10.59375,77.60167 -0.3932,31.79306 -0.6396,63.60433 -0.031,95.39773 l 21.78125,-1.29426 -21.21875,23.1349 c 0.041,1.23213 0.081,2.46202 0.125,3.69399 0.1398,25.83713 38.75845,3.23401 39.43745,-14.07508 -0.522,-52.15436 -1.3603,-104.40268 1.9063,-156.49759 6.1489,-24.92787 33.6891,-41.417 61.8125,-44.78674 31.3178,-4.47779 67.758199,-2.63425 92.781199,16.01647 17.8314,12.31048 21.5911,32.02422 19.0313,50.44913 -0.9481,98.57005 -1.5396,197.18791 -0.6875,295.73837 7.8425,27.05047 50.5516,9.17993 39.65619978,-14.34471 -0.048,-102.01149 -0.024,-204.04231 1.2188,-306.03853 C -4.4591512,185.73058 -37.426451,157.23357 -75.606051,147.87167 c -16.1334,-4.46589 -33.096999,-6.63472 -50.031299,-6.60607 z"
+             id="path4085"
+             inkscape:connector-curvature="0" />
+        </g>
+        <path
+           d="m 64.4375,630.8125 c -3.088336,0 -5.34375,2.25541 -5.34375,5.34375 l 0,235.625 c 0,3.08834 2.255414,5.34375 5.34375,5.34375 l 288.15625,0 c 3.08834,0 5.34375,-2.25541 5.34375,-5.34375 l 0,-235.625 c 0,-3.08834 -2.25541,-5.34375 -5.34375,-5.34375 l -288.15625,0 z"
+           id="path4160"
+           style="fill:url(#linearGradient4948);stroke:none"
+           inkscape:original="M 64.4375 623.65625 C 57.513871 623.65625 51.9375 629.23262 51.9375 636.15625 L 51.9375 871.78125 C 51.9375 878.70488 57.513871 884.28125 64.4375 884.28125 L 352.59375 884.28125 C 359.51738 884.28125 365.09375 878.70488 365.09375 871.78125 L 365.09375 636.15625 C 365.09375 629.23262 359.51738 623.65625 352.59375 623.65625 L 64.4375 623.65625 z "
+           inkscape:radius="-7.1428571"
+           sodipodi:type="inkscape:offset"
+           transform="translate(314.688,3.91878)" />
+        <path
+           style="opacity:0.2;fill:#1a1a1a;stroke:#000000;stroke-width:0.54947251;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+           d="m 654.20019,632.88005 c 4.01012,0.0352 8.02112,0.06 12.03125,0.0938 -0.30841,-0.0495 -0.60846,-0.0938 -0.9375,-0.0938 l -11.09375,0 z m -280.96875,1.5938 c -0.0964,0.0998 -0.19338,0.2047 -0.28125,0.3125 28.2779,0.6821 56.56397,1.4026 84.84375,2 53.8976,1.1386 65.596,1.2369 119.71875,2.0937 67.16927,0.8049 53.82528,0.7211 93.125,0.875 l 0,-0.0312 c -39.20949,-0.1535 -25.93371,-0.1018 -93.0625,-0.9062 -55.45417,-0.878 -64.44396,-0.9003 -119.625,-2.1563 -28.24207,-0.6429 -56.48008,-1.4262 -84.71875,-2.1875 z m 263.53125,8.5625 c -88.32284,0.0482 -176.65176,0.776 -264.96875,1.7813 l 0,0.2812 c 99.60896,-1.3878 199.22664,-2.0137 298.84375,-1.5 l 0,-0.5312 c -11.29433,-0.016 -22.58068,-0.0375 -33.875,-0.0313 z m 33.875,6.125 c -44.15299,0.1277 -88.31713,0.3336 -132.46875,0.75 -83.76713,0.9858 -57.67711,0.5241 -141.28125,2.125 -8.36264,0.1601 -16.73094,0.3306 -25.09375,0.5 l 0,0.0625 c 31.83388,-0.661 63.66518,-1.3024 95.5,-1.7812 23.5958,-0.3551 47.21566,-0.566 70.8125,-0.8438 44.17458,-0.3547 88.35555,-0.6221 132.53125,-0.7812 l 0,-0.0313 z m -298.84375,12.2187 0,0.125 c 62.71854,0.3194 125.4391,0.5629 188.15625,1.0938 17.10137,0.1191 34.17969,0.254 51.28125,0.3438 15.98319,0.0838 38.41986,0.1487 59.40625,0.1562 l 0,-0.5312 c -36.77863,0.1401 -73.56655,-0.0318 -110.34375,-0.25 -62.83338,-0.4373 -125.6659,-0.6351 -188.5,-0.9376 z m 0,1.6563 0,0.0625 c 99.58501,3.1409 199.21612,4.2531 298.84375,5.0625 l 0,-0.25 c -99.63494,-0.5074 -199.2528,-1.7394 -298.84375,-4.875 z m 0,6.7187 0,0.2813 c 25.61057,0.6204 51.23144,1.2714 76.84375,1.8125 53.89761,1.1385 65.596,1.2369 119.71875,2.0938 71.63255,0.8581 51.72841,0.7013 102.28125,0.9062 l 0,-0.0312 c -50.46877,-0.2044 -30.61672,-0.0787 -102.21875,-0.9376 -55.45418,-0.8779 -64.44401,-0.9 -119.625,-2.1562 -25.66884,-0.5843 -51.33423,-1.2775 -77,-1.9688 z m 255.8125,8.3438 c -85.27321,0.0465 -170.54459,0.7376 -255.8125,1.6875 l 0,0.25 c 71.69672,-0.9646 143.42202,-1.5435 215.125,-1.5625 26.64693,-0.01 53.29108,0.0699 79.9375,0.2188 1.26127,0.0129 2.51999,0.048 3.78125,0.0624 l 0,-0.5937 c -1.01028,-0.009 -2.02097,-0.0233 -3.03125,-0.0313 -13.33648,-0.0237 -26.66353,-0.0385 -40,-0.0312 z m 43.03125,1.5625 c -36.53254,0.1352 -73.06264,0.3433 -109.59375,0.6875 -83.76712,0.9859 -57.67711,0.5241 -141.28125,2.125 -15.98783,0.3062 -31.98027,0.6088 -47.96875,0.9375 l 0,0.0937 c 39.45928,-0.8153 78.91478,-1.6876 118.375,-2.2812 23.5958,-0.3549 47.18441,-0.5347 70.78125,-0.8125 36.55426,-0.2935 73.13254,-0.5279 109.6875,-0.6875 l 0,-0.0625 z m -298.84375,12.9687 0,0.125 c 6.44727,0.2298 12.89669,0.4623 19.34375,0.6876 60.45139,1.936 120.93229,3.067 181.40625,3.875 -60.45095,-0.7776 -120.91609,-2.0083 -181.34375,-3.9376 -6.47217,-0.244 -12.93386,-0.5 -19.40625,-0.75 z m 200.75,4.6876 c 5.97866,0.0798 11.95867,0.1769 17.9375,0.25 -13.10717,-0.0541 -26.23693,-0.1098 -39.34375,-0.1876 -59.78328,-0.416 -119.56009,-0.5977 -179.34375,-0.875 l 0,0.0938 c 59.66966,0.297 119.33175,0.5575 179,1.0625 17.10138,0.1192 34.21095,0.254 51.3125,0.3437 11.59226,0.061 26.67809,0.1249 42.09375,0.1563 8.81209,0.0843 17.62521,0.1425 26.4375,0.2187 l 0,-0.1562 c -2.29247,-0.0143 -4.58253,-0.016 -6.875,-0.0312 2.37248,0 4.56094,0.002 6.875,0 l 0,-0.5938 c -24.0639,0.1269 -48.12317,0.0846 -72.1875,0 -8.63607,-0.094 -17.2704,-0.1702 -25.90625,-0.2812 z m -200.75,2.25 0,0.3437 c 33.23769,0.7872 66.47914,1.6416 99.71875,2.3437 53.89762,1.1386 65.59599,1.2681 119.71875,2.125 60.4571,0.7244 52.8986,0.7102 79.40625,0.8126 l 0,-0.0626 c -26.45974,-0.1022 -18.91718,-0.0889 -79.34375,-0.8124 -55.45423,-0.8781 -64.44402,-0.9314 -119.625,-2.1876 -33.29461,-0.7578 -66.58432,-1.6687 -99.875,-2.5624 z m 278.6875,8.9687 c -92.89797,0.0519 -185.7973,0.8482 -278.6875,1.9375 l 0,0.2812 c 99.60727,-1.4584 199.22576,-2.1296 298.84375,-1.7187 l 0,-0.4687 c -6.72038,-0.004 -13.43584,-0.0351 -20.15625,-0.0313 z m 20.15625,6.1563 c -39.58142,0.1325 -79.1697,0.3454 -118.75,0.7187 -83.76713,0.986 -57.6771,0.524 -141.28125,2.125 -12.93623,0.2477 -25.87585,0.5156 -38.8125,0.7813 l 0,0.0312 c 36.41154,-0.7568 72.80623,-1.5148 109.21875,-2.0625 23.59586,-0.3549 47.21567,-0.5347 70.8125,-0.8125 39.60193,-0.318 79.20964,-0.558 118.8125,-0.7188 l 0,-0.0624 z m -298.84375,12.125 0,0.125 c 67.29084,0.3576 134.58538,0.5554 201.875,1.125 17.10143,0.119 34.21088,0.2852 51.3125,0.375 12.46789,0.0653 29.04073,0.1279 45.65625,0.1562 l 0,-0.5 c -32.20772,0.0586 -64.41889,-0.09 -96.625,-0.2812 -67.40568,-0.4691 -134.81336,-0.6541 -202.21875,-1 z m 0,1.2187 0,0.0937 c 3.40518,0.1203 6.81364,0.2561 10.21875,0.375 44.19621,1.4155 88.38368,2.4007 132.59375,3.1563 -44.19137,-0.757 -88.3532,-1.8083 -132.53125,-3.2187 -3.42719,-0.1293 -6.85387,-0.2753 -10.28125,-0.4063 z m 143.0625,3.625 c 51.91968,0.8862 103.85502,1.438 155.78125,1.875 l 0,-0.2187 c -51.92707,-0.2996 -103.86182,-0.7682 -155.78125,-1.6563 z m -143.0625,3.2187 0,0.3438 c 30.18462,0.7233 60.37596,1.4561 90.5625,2.0938 53.89761,1.1385 65.59606,1.2679 119.71875,2.125 64.93036,0.7778 54.05062,0.7112 88.5625,0.8437 l 0,-0.0625 c -34.45169,-0.1323 -23.60024,-0.0666 -88.5,-0.8438 -55.45418,-0.8778 -64.44401,-0.9314 -119.625,-2.1874 -30.24221,-0.6885 -60.48018,-1.4969 -90.71875,-2.3126 z m 269.53125,8.7188 c -89.84536,0.0501 -179.69202,0.7791 -269.53125,1.8125 l 0,0.2813 c 99.59803,-1.4118 199.23676,-2.0103 298.84375,-1.5313 l 0,-0.5313 c -9.77314,-0.0111 -19.53937,-0.0367 -29.3125,-0.0312 z m 29.3125,4.6875 c -40.60194,0.1317 -81.21173,0.3359 -121.8125,0.7187 -83.76713,0.9859 -57.67711,0.5242 -141.28125,2.125 -11.92122,0.2283 -23.82843,0.4744 -35.75,0.7188 l 0,0.0625 c 35.3965,-0.7364 70.79003,-1.4989 106.1875,-2.0313 23.59585,-0.355 47.18442,-0.5349 70.78125,-0.8124 40.6227,-0.3263 81.25135,-0.5572 121.875,-0.7188 l 0,-0.0625 z m -298.84375,13.4687 0,0.0938 c 0.96868,0.0341 1.93758,0.0598 2.90625,0.0938 -0.96806,-0.005 -1.93818,0.005 -2.90625,0 l 0,0.0937 c 2.16643,0.0112 4.33357,0.0203 6.5,0.0313 0.21753,0.01 0.43878,0.0232 0.65625,0.0312 97.20049,3.113 194.44429,4.2513 291.6875,5.0625 l 0,-0.2187 c -96.79942,-0.5432 -193.61875,-1.7703 -290.375,-4.8438 61.41259,0.3089 122.83849,0.5114 184.25,1.0312 17.10143,0.1191 34.21095,0.2853 51.3125,0.375 14.81933,0.0778 35.17704,0.1408 54.8125,0.1563 l 0,-0.5313 c -35.2585,0.1102 -70.52424,-0.0406 -105.78125,-0.25 -62.72984,-0.4365 -125.45691,-0.6361 -188.1875,-0.9374 -1.62503,-0.0615 -3.24995,-0.1258 -4.875,-0.1876 z m 0,6.8126 0,0.3124 c 29.16705,0.701 58.33105,1.4151 87.5,2.0313 53.89762,1.1385 65.62725,1.268 119.75,2.125 66.42179,0.7957 53.95215,0.7295 91.59375,0.875 l 0,-0.0313 c -37.57521,-0.1453 -25.13996,-0.1114 -91.53125,-0.9062 -55.45418,-0.878 -64.44401,-0.9002 -119.625,-2.1562 -29.23161,-0.6654 -58.45824,-1.4611 -87.6875,-2.25 z m 266.5,8.625 c -88.82572,0.0495 -177.68091,0.7663 -266.5,1.7812 l 0,0.3125 c 99.60838,-1.3961 199.22671,-2.0333 298.84375,-1.5313 l 0,-0.5312 c -10.78382,-0.0142 -21.55984,-0.0373 -32.34375,-0.0312 z m 32.34375,6.125 c -43.6514,0.1283 -87.28742,0.3383 -130.9375,0.75 -83.76712,0.9858 -57.67709,0.524 -141.28125,2.125 -8.8727,0.1699 -17.75212,0.3509 -26.625,0.5312 l 0,0.0625 c 32.3443,-0.6729 64.68601,-1.3572 97.03125,-1.8437 23.59585,-0.355 47.18436,-0.5348 70.78125,-0.8126 43.67462,-0.3507 87.35553,-0.6208 131.03125,-0.7812 l 0,-0.0312 z m -298.84375,12.2187 0,0.125 c 63.22574,0.3222 126.43052,0.5273 189.65625,1.0625 17.10138,0.1191 34.21094,0.2851 51.3125,0.375 15.59692,0.0819 37.32551,0.147 57.875,0.1562 l 0,-0.5312 c -36.26684,0.1297 -72.54552,-0.0347 -108.8125,-0.25 -63.34365,-0.4408 -126.68688,-0.6304 -190.03125,-0.9375 z m 0,1.625 0,0.0625 c 99.58472,3.1617 199.21593,4.2513 298.84375,5.0625 l 0,-0.2187 c -99.62559,-0.5137 -199.2625,-1.7518 -298.84375,-4.9063 z m 0,6.6875 0,0.3125 c 26.12108,0.6314 52.25216,1.2607 78.375,1.8125 53.89762,1.1386 65.596,1.2681 119.71875,2.125 70.88447,0.8492 52.24867,0.7121 100.75,0.9062 l 0,-0.0312 c -48.41909,-0.1939 -29.83358,-0.0893 -100.6875,-0.9375 -55.45418,-0.8781 -64.44395,-0.9002 -119.625,-2.1563 -26.17948,-0.5959 -52.3549,-1.3248 -78.53125,-2.0312 z m 257.34375,8.4062 c -85.78154,0.0479 -171.56803,0.7279 -257.34375,1.6876 l 0,0.2812 c 72.20603,-0.9773 144.41167,-1.5746 216.625,-1.5938 26.64693,-0.01 53.29109,0.0717 79.9375,0.2188 0.75985,0.008 1.52142,0.0229 2.28125,0.0312 l 0,-0.5937 c -0.49967,-0.004 -1.00033,0.004 -1.5,0 -13.33648,-0.0237 -26.66338,-0.0387 -40,-0.0313 z m 41.5,1.5626 c -36.02523,0.1337 -72.07041,0.3481 -108.09375,0.6874 -81.90002,0.964 -60.12132,0.5854 -137.1875,2.0626 22.10882,-0.4447 44.23409,-0.855 66.34375,-1.1876 23.59579,-0.355 47.18442,-0.5661 70.78125,-0.8437 36.04839,-0.2896 72.10719,-0.4973 108.15625,-0.6563 l 0,-0.0624 z m -245.28125,2.75 c -1.7569,0.0336 -2.19903,0.0268 -4.0625,0.0624 -16.49117,0.3158 -33.00815,0.6304 -49.5,0.9688 l 0,0.0938 c 17.85805,-0.3685 35.70447,-0.7659 53.5625,-1.125 z m -53.5625,10.1562 0,0.0938 c 6.95925,0.2483 13.91599,0.5068 20.875,0.75 51.69493,1.6555 103.41146,2.7419 155.125,3.5312 -51.69031,-0.7799 -103.39036,-1.9127 -155.0625,-3.5625 -6.97981,-0.2632 -13.95743,-0.5425 -20.9375,-0.8125 z m 176,4.375 c 14.73819,0.2249 29.47995,0.4449 44.21875,0.625 -13.10788,-0.053 -26.23624,-0.1097 -39.34375,-0.1875 -60.29367,-0.4196 -120.57943,-0.625 -180.875,-0.9063 l 0,0.125 c 60.16966,0.2991 120.363,0.522 180.53125,1.0313 17.10138,0.1191 34.21094,0.2853 51.3125,0.375 11.61006,0.061 26.71594,0.1248 42.15625,0.1563 8.27993,0.0791 16.56364,0.1461 24.84375,0.2187 l 0,-0.1563 c -1.78201,-0.0113 -3.56174,-0.0194 -5.34375,-0.0312 1.84405,0 3.53325,10e-4 5.34375,0 l 0,-0.5938 c -23.71967,0.1182 -47.43619,0.0845 -71.15625,0 -17.2311,-0.1881 -34.4574,-0.3962 -51.6875,-0.6562 z m -176,2.5938 0,0.3437 c 33.73855,0.7986 67.47827,1.6622 101.21875,2.375 53.89761,1.1385 65.62729,1.2682 119.75,2.125 59.12029,0.7084 53.38538,0.7152 77.875,0.8125 l 0,-0.0625 c -24.34709,-0.0968 -18.79094,-0.1053 -77.8125,-0.8125 -55.45417,-0.878 -64.44402,-0.9314 -119.625,-2.1875 -33.80498,-0.7695 -67.60384,-1.6873 -101.40625,-2.5937 z m 280.21875,9 c -93.35527,0.0509 -186.71406,0.8396 -280.0625,1.9374 -0.0705,10e-4 -0.0859,-10e-4 -0.15625,0 l 0,0.3126 c 99.60712,-1.4663 199.22631,-2.1501 298.84375,-1.75 l 0,-0.5 c -6.20979,-0.003 -12.41521,-0.003 -18.625,0 z m 18.625,6.1562 c -39.07675,0.133 -78.1431,0.3502 -117.21875,0.7188 -83.76712,0.9858 -57.67711,0.524 -141.28125,2.125 -13.44936,0.2574 -26.89394,0.5365 -40.34375,0.8124 l 0,0.0313 c 36.91731,-0.7668 73.83124,-1.5384 110.75,-2.0937 23.5958,-0.355 47.21567,-0.5663 70.8125,-0.8438 39.10195,-0.314 78.17839,-0.5268 117.28125,-0.6875 l 0,-0.0625 z m -298.84375,12.0938 0,0.125 c 67.79388,0.3634 135.58122,0.5823 203.375,1.1562 17.10137,0.1192 34.2109,0.2852 51.3125,0.375 12.05016,0.0633 28.10913,0.1252 44.15625,0.1562 l 0,-0.5 c -31.69605,0.0511 -63.39785,-0.0931 -95.09375,-0.2812 -67.91583,-0.4727 -135.8335,-0.6801 -203.75,-1.0312 z m 0,1.1874 0,0.0938 c 3.90769,0.1376 7.81114,0.301 11.71875,0.4375 95.6804,3.0642 191.40249,4.2206 287.125,5.0313 l 0,-0.2188 c -95.69932,-0.561 -191.40755,-1.8211 -287.0625,-4.875 -3.92775,-0.1481 -7.8536,-0.3187 -11.78125,-0.4688 z m 0,6.875 0,0.3126 c 30.6952,0.7355 61.39661,1.5078 92.09375,2.1562 53.89762,1.1385 65.59606,1.268 119.71875,2.125 64.16697,0.7687 53.99601,0.7159 87,0.8438 0.002,-0.0196 -0.002,-0.0429 0,-0.0626 -32.94487,-0.1276 -22.80111,-0.0752 -86.9375,-0.8437 -55.45422,-0.878 -64.444,-0.9315 -119.625,-2.1875 -30.75259,-0.7001 -61.49987,-1.516 -92.25,-2.3438 z m 271.0625,8.75 c -78.41459,0.0429 -156.83979,0.6097 -235.25,1.4376 l 18.65625,0 c 80.7066,-0.9128 161.41454,-1.272 242.125,-0.9063 0.22391,-0.1521 0.43008,-0.3151 0.625,-0.5 -8.72051,-0.008 -17.43542,-0.0358 -26.15625,-0.0313 z"
+           id="path3276"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         transform="translate(0,10.8134)"
+         id="g4460">
+        <path
+           style="opacity:0.3;fill:#1a1a1a;stroke:none;filter:url(#filter4383)"
+           d="m -582.66421,456.17964 c -46.2095,0.12373 -97.4083,16.46901 -119.0625,54.09375 -7.7631,13.51989 -9.43,28.19994 -9.8125,43.0625 -0.005,0.16702 0.004,0.33294 0,0.5 -0.0354,1.48566 -0.0787,2.98079 -0.0938,4.46875 -0.002,0.1664 0.002,0.33358 0,0.5 -0.0281,3.14205 -0.0231,6.26862 -0.0312,9.40625 -4e-4,0.17669 5e-4,0.3546 0,0.53125 -0.005,1.47518 -0.0155,2.96655 -0.0312,4.4375 -0.002,0.16685 0.002,0.33322 0,0.5 -0.0572,4.77244 -0.2304,9.5053 -0.625,14.1875 -0.0984,7.94826 -0.1812,15.89377 -0.25,23.84375 -10e-4,0.16669 0.001,0.33331 0,0.5 -0.0667,7.78351 -0.1081,15.59094 -0.125,23.375 -4e-4,0.1665 3e-4,0.3335 0,0.5 -0.008,3.80834 -0.008,7.59797 0,11.40625 3e-4,0.16694 -4e-4,0.33306 0,0.5 0.009,3.80871 0.0355,7.62898 0.0624,11.4375 10e-4,0.16649 -10e-4,0.33351 0,0.5 0.0279,3.80808 0.0452,7.59849 0.0938,11.40625 0.002,0.17687 -0.002,0.35438 0,0.53125 0.0495,3.79781 0.1148,7.60889 0.1875,11.40625 0.003,0.16685 -0.003,0.33315 0,0.5 l 21.2813,-1.25 -20.7188,22.59375 c 0.005,0.1568 0.0261,0.31201 0.0312,0.46875 l -0.0312,0.0312 c 0.041,1.2322 0.081,2.4556 0.125,3.6875 0.0315,5.81337 2.0368,9.16665 5.0938,10.6875 l -17.4376,0 c -8.5337,0 -15.5,6.96626 -15.5,15.5 l 0,235.625 c 0,8.53374 6.9663,15.5 15.5,15.5 l 288.1563,0 c 5.33359,0 10.05282,-2.71942 12.84375,-6.84375 0.27909,-0.41243 0.54208,-0.84207 0.78125,-1.28125 0.23917,-0.43918 0.45964,-0.88046 0.65625,-1.34375 0.78643,-1.85314 1.21875,-3.89782 1.21875,-6.03125 l 0,-235.625 c 0,-0.53336 -0.009,-1.04271 -0.0625,-1.5625 -0.31864,-3.11877 -1.57046,-5.98294 -3.46875,-8.28125 -2.84744,-3.44747 -7.16852,-5.65625 -11.96875,-5.65625 l -21.8125,0 c 0.0193,-10.40813 0.031,-20.81072 0.0625,-31.21875 5.1e-4,-0.16669 -5.1e-4,-0.33331 0,-0.5 0.0383,-12.58547 0.0961,-25.16486 0.15625,-37.75 8e-4,-0.16669 -8e-4,-0.33332 0,-0.5 0.0605,-12.58514 0.13214,-25.1654 0.21875,-37.75 0.001,-0.16667 -10e-4,-0.33333 0,-0.5 0.087,-12.5846 0.19499,-25.16615 0.3125,-37.75 0.002,-0.16665 -0.002,-0.33335 0,-0.5 0.11794,-12.58385 0.25342,-25.1671 0.40625,-37.75 -10e-4,-0.0102 0.001,-0.021 0,-0.0312 0.002,-0.15623 -0.002,-0.31252 0,-0.46875 -4.9781,-34.61964 -37.9454,-63.1381 -76.125,-72.5 -16.1334,-4.46589 -33.09695,-6.6224 -50.03125,-6.59375 z m 1.4375,35.71875 c 23.6404,-0.0665 47.51472,4.65731 65.5,18.0625 14.48801,10.00228 19.71418,24.88537 19.78125,40 -0.01,3.32298 -0.29288,6.64722 -0.75,9.9375 -0.23703,24.64251 -0.44953,49.29081 -0.625,73.9375 -10e-4,0.17708 0.001,0.35417 0,0.53125 -0.0862,12.14627 -0.15372,24.29088 -0.21875,36.4375 -9.5e-4,0.17709 9.5e-4,0.35416 0,0.53125 -0.0647,12.14662 -0.11686,24.29096 -0.15625,36.4375 -5.8e-4,0.17709 5.7e-4,0.35416 0,0.53125 -0.007,2.13375 -0.0253,4.27251 -0.0312,6.40625 -0.005,1.7605 0.004,3.52076 0,5.28125 l -198.3437,0 c 10.8622,-3.40103 23.458,-14.91875 23.8437,-24.75 -0.002,-0.16661 0.002,-0.33339 0,-0.5 -0.1287,-12.86171 -0.2741,-25.75558 -0.375,-38.625 -10e-4,-0.17686 0.001,-0.35439 0,-0.53125 -0.0492,-6.35651 -0.076,-12.70548 -0.0937,-19.0625 -5e-4,-0.16674 4e-4,-0.33326 0,-0.5 -0.0168,-6.35701 -0.0311,-12.7059 0,-19.0625 8e-4,-0.16671 -9e-4,-0.33329 0,-0.5 0.0158,-3.09494 0.0636,-6.18657 0.0937,-9.28125 0.002,-0.16669 -0.002,-0.33331 0,-0.5 0.0309,-3.09467 0.0779,-6.18695 0.125,-9.28125 0.003,-0.16663 -0.003,-0.33337 0,-0.5 0.048,-3.09432 0.1213,-6.18741 0.1875,-9.28125 0.004,-0.16658 -0.004,-0.33342 0,-0.5 0.0672,-3.09383 0.1315,-6.18801 0.2188,-9.28125 0.3726,-13.03904 0.9333,-26.07002 1.75,-39.09375 6.1488,-24.9279 33.6891,-41.41145 61.8124,-44.78125 8.8082,-1.25938 18.0307,-2.03646 27.2813,-2.0625 z"
+           id="rect4213"
+           inkscape:connector-curvature="0" />
+        <g
+           transform="translate(-788.147,99.7589)"
+           id="g4138">
+          <rect
+             style="fill:url(#radialGradient4950);stroke:none"
+             id="rect4140"
+             width="313.14728"
+             height="260.61935"
+             x="51.935669"
+             y="623.66309"
+             ry="12.497526" />
+          <rect
+             ry="12.497526"
+             y="623.66309"
+             x="51.935669"
+             height="260.61935"
+             width="313.14728"
+             id="rect4142"
+             style="fill:url(#linearGradient4952);stroke:none" />
+          <path
+             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3995);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+             d="m -6.2998012,662.07652 c -8.5337378,0 -15.4999998,6.96626 -15.4999998,15.5 l 0,235.625 c 0,8.53374 6.966262,15.5 15.4999998,15.5 l 288.1562512,0 c 8.53374,0 15.5,-6.96626 15.5,-15.5 l 0,-235.625 c 0,-8.53374 -6.96626,-15.5 -15.5,-15.5 l -288.1562512,0 z m 0,6 288.1562512,0 c 5.31352,0 9.5,4.18648 9.5,9.5 l 0,235.625 c 0,5.31352 -4.18648,9.5 -9.5,9.5 l -288.1562512,0 c -5.3135208,0 -9.4999998,-4.18648 -9.4999998,-9.5 l 0,-235.625 c 0,-5.31352 4.186479,-9.5 9.4999998,-9.5 z"
+             id="path4144"
+             inkscape:connector-curvature="0"
+             mask="url(#mask4005)"
+             transform="translate(70.731,-41.4163)" />
+          <path
+             sodipodi:type="inkscape:offset"
+             inkscape:radius="-7.1428571"
+             inkscape:original="M 64.4375 623.65625 C 57.513871 623.65625 51.9375 629.23262 51.9375 636.15625 L 51.9375 871.78125 C 51.9375 878.70488 57.513871 884.28125 64.4375 884.28125 L 352.59375 884.28125 C 359.51738 884.28125 365.09375 878.70488 365.09375 871.78125 L 365.09375 636.15625 C 365.09375 629.23262 359.51738 623.65625 352.59375 623.65625 L 64.4375 623.65625 z "
+             style="fill:url(#linearGradient4954);stroke:none"
+             id="path4146"
+             d="m 64.4375,630.8125 c -3.088336,0 -5.34375,2.25541 -5.34375,5.34375 l 0,235.625 c 0,3.08834 2.255414,5.34375 5.34375,5.34375 l 288.15625,0 c 3.08834,0 5.34375,-2.25541 5.34375,-5.34375 l 0,-235.625 c 0,-3.08834 -2.25541,-5.34375 -5.34375,-5.34375 l -288.15625,0 z" />
+          <path
+             style="opacity:0.22018349;fill:#000000;stroke:none;filter:url(#filter4013)"
+             d="m 65.691485,637.36938 c -0.0543,0.2253 -0.0937,0.4551 -0.0937,0.7188 l 0,1.3124 c 97.653995,-0.4644 195.313785,-0.674 292.968765,-0.6562 l 0,-0.6562 c 0,-0.033 8.7e-4,-0.0614 0,-0.0938 -97.62407,0.0192 -195.25193,-0.1507 -292.875015,-0.625 z m -0.0937,9.5 0,1.9375 c 34.05366,-0.1333 68.102435,-0.2451 102.156265,-0.3437 63.60326,-0.1703 127.20814,-0.2222 190.8125,-0.1876 l 0,-0.8437 c -63.05403,0.0306 -126.10284,-0.0178 -189.15625,-0.1875 -34.60052,-0.1011 -69.21324,-0.237 -103.812515,-0.375 z m 0,8.0938 0,2.0312 c 97.653995,-0.4634 195.313785,-0.6454 292.968765,-0.625 l 0,-0.75 c -97.65533,0.0166 -195.31442,-0.1808 -292.968765,-0.6562 z m 0,9.5312 0,1.9062 c 34.05363,-0.1319 68.102475,-0.245 102.156265,-0.3437 63.60326,-0.1703 127.20814,-0.2196 190.8125,-0.1875 l 0,-0.8438 c -63.05403,0.0332 -126.10284,-0.0178 -189.15625,-0.1874 -34.60051,-0.1011 -69.21325,-0.2058 -103.812515,-0.3438 z m 0,8.2188 0,1.75 c 97.654015,-0.4031 195.314005,-0.5301 292.968765,-0.4688 l 0,-0.8125 c -97.65332,0.0582 -195.31621,-0.0547 -292.968765,-0.4687 z m 0,9.5 0,1.6874 c 23.6174,-0.0835 47.257545,-0.1815 70.875015,-0.25 74.04061,-0.1982 148.0548,-0.2323 222.09375,-0.1562 l 0,-0.875 c -73.47863,0.074 -146.95668,0.0415 -220.4375,-0.1562 -24.17274,-0.0707 -48.358405,-0.1632 -72.531265,-0.25 z m 0,6.125 0,1.8124 c 97.654595,-0.4141 195.313365,-0.5537 292.968765,-0.5 l 0,-0.8124 c -97.65913,0.0505 -195.31044,-0.0746 -292.968765,-0.5 z m 0,9.5312 0,1.6875 c 25.57411,-0.0921 51.144565,-0.1759 76.718765,-0.25 72.08231,-0.1929 144.16931,-0.2239 216.25,-0.1563 l 0,-0.875 c -71.53205,0.0657 -143.0624,0.0363 -214.59375,-0.1562 -26.13009,-0.0763 -52.244795,-0.1543 -78.375015,-0.25 z m 0,8.125 0,1.7188 c 97.656045,-0.4013 195.311975,-0.5308 292.968765,-0.4688 l 0,-0.8125 c -97.66232,0.0626 -195.30719,-0.029 -292.968765,-0.4375 z m 0,9.4688 0,1.6562 c 22.96133,-0.0807 45.944865,-0.1522 68.906265,-0.2188 74.68645,-0.1999 149.37482,-0.2352 224.0625,-0.1562 l 0,-0.875 c -74.13788,0.0739 -148.26907,0.0433 -222.40625,-0.1562 -23.51662,-0.0687 -47.046545,-0.1668 -70.562515,-0.25 z m 0,8 0,1.9687 c 97.656635,-0.4569 195.311185,-0.6169 292.968765,-0.5937 l 0,-0.7813 c -97.65051,0.0245 -195.31921,-0.127 -292.968765,-0.5937 z m 0,9.5 0,1.9062 c 32.7411,-0.1265 65.508765,-0.2489 98.250015,-0.3438 64.91575,-0.1738 129.80189,-0.2268 194.71875,-0.1874 l 0,-0.8438 c -64.35593,0.0352 -128.70719,-0.0143 -193.0625,-0.1875 -33.29816,-0.0973 -66.609265,-0.2127 -99.906265,-0.3437 z m 0,8.0937 0,2 c 97.656645,-0.4557 195.311175,-0.6507 292.968765,-0.625 l 0,-0.75 c -97.65051,0.0219 -195.31921,-0.1574 -292.968765,-0.625 z m 0,9.5313 0,1.875 c 32.7411,-0.1253 65.508765,-0.2489 98.250015,-0.3438 64.91575,-0.1738 129.80189,-0.2243 194.71875,-0.1875 l 0,-0.8125 c -64.35593,0.0377 -128.70719,-0.0143 -193.0625,-0.1875 -33.29815,-0.0973 -66.609275,-0.2127 -99.906265,-0.3437 z m 0,8.1874 0,1.75 c 97.658815,-0.3956 195.309245,-0.5349 292.968765,-0.4687 l 0,-0.8125 c -97.65918,0.0632 -195.31036,-0.0622 -292.968765,-0.4688 z m 0,9.5313 0,1.625 c 22.31356,-0.078 44.623895,-0.1541 66.937515,-0.2187 75.34267,-0.2018 150.69026,-0.2383 226.03125,-0.1563 l 0,-0.875 c -74.78907,0.0797 -149.58371,0.045 -224.375,-0.1563 -22.86903,-0.0668 -45.724615,-0.1375 -68.593765,-0.2187 z m 0,10.125 0,1.5313 c 97.658985,-0.3484 195.309225,-0.4415 292.968765,-0.3438 l 0,-0.8125 c -97.65631,0.0952 -195.31303,-0.0166 -292.968765,-0.375 z m 0,9.5 0,1.4687 c 13.83929,-0.0447 27.69193,-0.0848 41.531255,-0.125 83.82173,-0.2244 167.61762,-0.2482 251.43751,-0.125 l 0,-0.9374 c -83.26439,0.1203 -166.51757,0.099 -249.78125,-0.125 -14.393275,-0.0421 -28.794205,-0.1091 -43.187515,-0.1563 z m 0,8.1563 0,1.4687 c 97.650455,-0.3367 195.317825,-0.4189 292.968765,-0.3125 l 0,-0.875 c -97.65712,0.1055 -195.31218,0.0599 -292.968765,-0.2812 z m 0,9.4687 0,1.4375 c 11.22973,-0.0355 22.45775,-0.0925 33.68751,-0.125 86.425875,-0.2314 172.854095,-0.2308 259.281255,-0.0938 l 0,-1 c -85.87375,0.1309 -171.75197,0.1374 -257.62501,-0.0937 -11.783565,-0.0344 -23.560375,-0.0874 -35.343755,-0.125 z m 0,8.0313 0,1.6874 c 97.653285,-0.3903 195.314795,-0.507 292.968765,-0.4374 l 0,-0.8438 c -97.65631,0.0699 -195.31317,-0.009 -292.968765,-0.4062 z m 0,9.4687 0,1.6563 c 21.01143,-0.0726 42.019775,-0.1579 63.031265,-0.2188 76.64475,-0.2052 153.2915,-0.2442 229.9375,-0.1562 l 0,-0.9063 c -76.09389,0.0826 -152.18804,0.0485 -228.28125,-0.1563 -21.56671,-0.0629 -43.121345,-0.1431 -64.687515,-0.2187 z m 0,8.125 0,1.6875 c 97.653285,-0.3882 195.314795,-0.5087 292.968765,-0.4375 l 0,-0.8125 c -97.6563,0.0682 -195.31318,-0.0385 -292.968765,-0.4375 z m 0,9.5 0,1.625 c 21.01143,-0.0719 42.019775,-0.1579 63.031265,-0.2187 76.64475,-0.2053 153.2915,-0.2412 229.9375,-0.1563 l 0,-0.875 c -76.09389,0.0856 -152.18805,0.0485 -228.28125,-0.1563 -21.56671,-0.0629 -43.121345,-0.1431 -64.687515,-0.2187 z m 0,8.2187 0,1.4376 c 97.660025,-0.3305 195.308285,-0.3594 292.968765,-0.25 l 0,-0.9063 c -97.65732,0.1072 -195.31196,0.059 -292.968765,-0.2813 z m 0,9.4688 0,1.4062 c 10.58384,-0.0333 21.16615,-0.063 31.75001,-0.0937 87.077755,-0.2331 174.142845,-0.2344 261.218755,-0.0937 l 0,-1 c -86.5222,0.1374 -173.03787,0.1391 -259.562505,-0.0938 -11.13344,-0.0325 -22.2728,-0.0895 -33.40626,-0.125 z m 0,6.0312 0,1.75 c 97.653655,-0.3955 195.314385,-0.5349 292.968765,-0.4687 l 0,-0.8125 c -97.65917,0.0632 -195.31036,-0.0622 -292.968765,-0.4688 z m 0,9.5313 c 0.0444,0.6929 0.3272,1.2501 0.75,1.625 22.06355,-0.0769 44.123905,-0.1548 66.187515,-0.2187 75.20725,-0.2014 150.41942,-0.2376 225.625,-0.1563 0.16038,-0.2431 0.28202,-0.5509 0.34375,-0.875 -74.77117,0.0796 -149.54204,0.045 -224.3125,-0.1563 -22.86903,-0.0668 -45.724615,-0.1375 -68.593765,-0.2187 z"
+             id="path4148"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           transform="translate(133.012,-824.938)"
+           id="g4156">
+          <g
+             id="g4158"
+             transform="translate(3.05725,-0.966151)">
+            <path
+               inkscape:connector-curvature="0"
+               id="path4161"
+               d="m -718.43029,1283.0061 c -46.2095,0.1238 -97.4083,16.4646 -119.0625,54.0893 -13.80115,24.0354 -8.4155,51.7579 -10.59375,77.6017 -0.3932,31.793 -0.6396,63.6043 -0.031,95.3977 l 21.78125,-1.2943 -21.21875,23.1349 c 0.041,1.2322 0.081,2.4621 0.125,3.694 0.1398,25.8372 38.75845,3.234 39.43745,-14.075 -0.522,-52.1544 -1.3603,-104.4027 1.9063,-156.4976 6.1489,-24.9279 33.6891,-41.417 61.8125,-44.7868 31.3178,-4.4778 67.7582,-2.6342 92.7812,16.0165 17.8314,12.3105 21.5911,32.0242 19.0313,50.4491 -0.9481,98.5701 -1.5396,197.1879 -0.6875,295.7384 7.8425,27.0505 50.5516,9.1799 39.6562,-14.3447 -0.048,-102.0115 -0.024,-204.0423 1.2188,-306.0385 -4.9781,-34.6197 -37.9454,-63.1167 -76.125,-72.4786 -16.1334,-4.4659 -33.097,-6.6347 -50.0313,-6.6061 z"
+               style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4956);fill-opacity:1;stroke:none;stroke-width:40;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
+            <path
+               inkscape:connector-curvature="0"
+               id="path4163"
+               d="m -719.39451,1290.2293 c -35.75756,0 -64.7432,5.9938 -64.7432,13.383 0,3.7664 7.5446,7.1567 19.66489,9.5881 11.73891,-2.4569 28.04254,-3.9782 46.07085,-3.9782 17.53127,0 33.42019,1.4562 45.0783,3.7949 11.54418,-2.4162 18.69303,-5.7411 18.69303,-9.4048 0,-7.3892 -29.00631,-13.383 -64.76387,-13.383 z"
+               style="opacity:0.72782874;fill:#ffffff;stroke:none;filter:url(#filter4118)" />
+          </g>
+          <path
+             transform="matrix(1,0,0,0.86284,-2449.82,988.83)"
+             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:40;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3791);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+             d="m 1734.4484,339.23376 c -46.2095,0.1434 -97.4083,19.0818 -119.0625,62.6875 -13.8012,27.8561 -8.4155,59.9855 -10.5938,89.9375 -0.3932,36.847 -0.6396,73.7151 -0.031,110.5625 l 21.7813,-1.5 -21.2188,26.8125 c 0.041,1.428 0.081,2.8534 0.125,4.2812 0.1398,29.9443 38.7585,3.7481 39.4375,-16.3125 -0.522,-60.445 -1.3603,-120.9989 1.9063,-181.375 6.1489,-28.8905 33.689,-48.0008 61.8125,-51.9062 31.3177,-5.1896 67.7582,-3.053 92.7812,18.5625 17.8314,14.2674 21.5911,37.1149 19.0313,58.4687 -0.9481,114.2391 -1.5396,228.5336 -0.6875,342.74997 7.8425,31.3505 50.5515,10.6392 39.6562,-16.625 -0.048,-118.22757 -0.024,-236.47757 1.2188,-354.68747 -4.9781,-40.1229 -37.9454,-73.1499 -76.125,-84 -16.1335,-5.1758 -33.097,-7.6894 -50.0313,-7.6562 z"
+             id="path4165"
+             inkscape:connector-curvature="0" />
+          <path
+             sodipodi:type="inkscape:offset"
+             inkscape:radius="-11.209806"
+             inkscape:original="M 1242.0312 323.25 C 1195.8218 323.3934 1144.6229 342.3318 1122.9688 385.9375 C 1109.1675 413.7936 1114.5533 445.923 1112.375 475.875 C 1111.9818 512.722 1111.7351 549.5901 1112.3438 586.4375 L 1134.125 584.9375 L 1112.9062 611.75 C 1112.9472 613.178 1112.9873 614.60345 1113.0312 616.03125 C 1113.171 645.97555 1151.7897 619.77935 1152.4688 599.71875 C 1151.9468 539.27375 1151.1084 478.71985 1154.375 418.34375 C 1160.5239 389.45325 1188.064 370.3429 1216.1875 366.4375 C 1247.5052 361.2479 1283.9457 363.3845 1308.9688 385 C 1326.8002 399.2674 1330.5598 422.11495 1328 443.46875 C 1327.0519 557.70785 1326.4604 672.00235 1327.3125 786.21875 C 1335.155 817.56925 1377.864 796.85795 1366.9688 769.59375 C 1366.9207 651.36615 1366.9447 533.11615 1368.1875 414.90625 C 1363.2094 374.78335 1330.2421 341.75635 1292.0625 330.90625 C 1275.929 325.73045 1258.9655 323.2168 1242.0312 323.25 z "
+             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.7;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:40;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3837);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+             id="path4167"
+             d="m 1242.0625,334.46875 c -43.1631,0.13395 -89.9562,17.99498 -109.0625,56.4375 -0,0.009 0,0.0226 0,0.0312 -11.6618,23.56635 -7.2063,53.46856 -9.4062,85.0625 -0.3508,32.86803 -0.5102,65.68011 -0.125,98.4375 l 9.875,-0.6875 a 11.210927,11.210927 0 0 1 7.7812,2.4375 c -0.4624,-52.6336 -0.8032,-105.47103 2.0625,-158.4375 a 11.210927,11.210927 0 0 1 0.2187,-1.75 c 7.3342,-34.45921 38.9734,-56.04303 70.9376,-60.59375 l 0,-0.0312 c 0.1012,-0.0168 0.2111,-0.0146 0.3124,-0.0312 33.0125,-5.41964 72.6039,-3.63109 101.3126,20.9375 l 0,-0.0312 c 0.077,0.0618 0.1419,0.12544 0.2187,0.1875 0.034,0.029 0.06,0.0646 0.094,0.0937 21.1209,17.1436 25.4592,43.85238 22.9376,67.03125 -3e-4,0.0312 2e-4,0.0625 0,0.0937 -0.9432,113.66345 -1.5218,227.33516 -0.6876,340.90625 1.2462,4.16968 2.7143,5.17964 4.0938,5.75 1.505,0.62221 4.0586,0.66583 6.9062,-0.625 2.8477,-1.29083 5.5447,-3.82071 6.875,-6.53125 1.3304,-2.71054 1.7621,-5.38781 0.1563,-9.40625 a 11.210927,11.210927 0 0 1 -0.8125,-4.15625 c -0.048,-117.93024 -0.015,-235.92132 1.2188,-353.90625 -4.5894,-34.61252 -34.1058,-64.37661 -67.9688,-74 a 11.210927,11.210927 0 0 1 -0.375,-0.0937 c -14.9624,-4.8001 -30.7522,-7.156 -46.5625,-7.125 z M 1141.2188,594.03125 1124.25,615.5 c 0,0.0621 -0,0.12542 0,0.1875 a 11.210927,11.210927 0 0 1 0,0.28125 c 0.01,1.21495 0.1339,1.17476 0.25,1.78125 0.7478,-0.19089 1.4986,-0.32129 2.6875,-0.96875 3.2667,-1.779 7.2221,-5.13498 9.9687,-8.6875 2.7467,-3.55252 4.0428,-7.2429 4.0938,-8.75 -0.015,-1.76632 -0.015,-3.54553 -0.031,-5.3125 z"
+             transform="matrix(1,0,0,0.862386,-1957.47,1002.88)"
+             mask="url(#mask3843)" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path4169"
+             d="m -125.63755,141.2656 c -46.2095,0.12373 -97.4083,16.46453 -119.0625,54.08927 -13.80115,24.03536 -8.4155,51.75789 -10.59375,77.60167 -0.3932,31.79306 -0.6396,63.60433 -0.031,95.39773 l 21.78125,-1.29426 -21.21875,23.1349 c 0.041,1.23213 0.081,2.46202 0.125,3.69399 0.1398,25.83713 38.75845,3.23401 39.43745,-14.07508 -0.522,-52.15436 -1.3603,-104.40268 1.9063,-156.49759 6.1489,-24.92787 33.6891,-41.417 61.8125,-44.78674 31.3178,-4.47779 67.758199,-2.63425 92.781199,16.01647 17.8314,12.31048 21.5911,32.02422 19.0313,50.44913 -0.9481,98.57005 -1.5396,197.18791 -0.6875,295.73837 7.8425,27.05047 50.5516,9.17993 39.65619978,-14.34471 -0.048,-102.01149 -0.024,-204.04231 1.2188,-306.03853 C -4.4591512,185.73058 -37.426451,157.23357 -75.606051,147.87167 c -16.1334,-4.46589 -33.096999,-6.63472 -50.031299,-6.60607 z"
+             style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:none;stroke:#000000;stroke-width:3;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4095);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+             mask="url(#mask4105)"
+             transform="translate(-589.735,1140.27)" />
+        </g>
+        <rect
+           style="fill:url(#radialGradient4958);stroke:none"
+           id="rect4150"
+           width="313.14728"
+           height="260.61935"
+           x="-736.2113"
+           y="723.42194"
+           ry="12.497526" />
+        <rect
+           ry="12.497526"
+           y="723.42194"
+           x="-736.2113"
+           height="260.61935"
+           width="313.14728"
+           id="rect4152"
+           style="fill:url(#linearGradient4960);stroke:none" />
+        <path
+           style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3995);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+           d="m -6.2998012,662.07652 c -8.5337378,0 -15.4999998,6.96626 -15.4999998,15.5 l 0,235.625 c 0,8.53374 6.966262,15.5 15.4999998,15.5 l 288.1562512,0 c 8.53374,0 15.5,-6.96626 15.5,-15.5 l 0,-235.625 c 0,-8.53374 -6.96626,-15.5 -15.5,-15.5 l -288.1562512,0 z m 0,6 288.1562512,0 c 5.31352,0 9.5,4.18648 9.5,9.5 l 0,235.625 c 0,5.31352 -4.18648,9.5 -9.5,9.5 l -288.1562512,0 c -5.3135208,0 -9.4999998,-4.18648 -9.4999998,-9.5 l 0,-235.625 c 0,-5.31352 4.186479,-9.5 9.4999998,-9.5 z"
+           id="path4154"
+           inkscape:connector-curvature="0"
+           mask="url(#mask4005)"
+           transform="translate(-717.416,58.3426)" />
+        <path
+           transform="translate(-788.153,99.6371)"
+           sodipodi:type="inkscape:offset"
+           inkscape:radius="-7.1428571"
+           inkscape:original="M 64.4375 623.65625 C 57.513871 623.65625 51.9375 629.23262 51.9375 636.15625 L 51.9375 871.78125 C 51.9375 878.70488 57.513871 884.28125 64.4375 884.28125 L 352.59375 884.28125 C 359.51738 884.28125 365.09375 878.70488 365.09375 871.78125 L 365.09375 636.15625 C 365.09375 629.23262 359.51738 623.65625 352.59375 623.65625 L 64.4375 623.65625 z "
+           style="fill:url(#linearGradient4962);stroke:none"
+           id="path4171"
+           d="m 64.4375,630.8125 c -3.088336,0 -5.34375,2.25541 -5.34375,5.34375 l 0,235.625 c 0,3.08834 2.255414,5.34375 5.34375,5.34375 l 288.15625,0 c 3.08834,0 5.34375,-2.25541 5.34375,-5.34375 l 0,-235.625 c 0,-3.08834 -2.25541,-5.34375 -5.34375,-5.34375 l -288.15625,0 z" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path4173"
+           d="m -448.64094,728.59834 c 4.01012,0.0352 8.02112,0.06 12.03125,0.0938 -0.30841,-0.0495 -0.60846,-0.0938 -0.9375,-0.0938 l -11.09375,0 z m -280.96875,1.5938 c -0.0964,0.0998 -0.19338,0.2047 -0.28125,0.3125 28.2779,0.6821 56.56397,1.4026 84.84375,2 53.8976,1.1386 65.596,1.2369 119.71875,2.0937 67.16927,0.8049 53.82528,0.7211 93.125,0.875 l 0,-0.0312 c -39.20949,-0.1535 -25.93371,-0.1018 -93.0625,-0.9062 -55.45417,-0.878 -64.44396,-0.9003 -119.625,-2.1563 -28.24207,-0.6429 -56.48008,-1.4262 -84.71875,-2.1875 z m 263.53125,8.5625 c -88.32284,0.0482 -176.65176,0.776 -264.96875,1.7813 l 0,0.2812 c 99.60896,-1.3878 199.22664,-2.0137 298.84375,-1.5 l 0,-0.5312 c -11.29433,-0.016 -22.58068,-0.0375 -33.875,-0.0313 z m 33.875,6.125 c -44.15299,0.1277 -88.31713,0.3336 -132.46875,0.75 -83.76713,0.9858 -57.67711,0.5241 -141.28125,2.125 -8.36264,0.1601 -16.73094,0.3306 -25.09375,0.5 l 0,0.0625 c 31.83388,-0.661 63.66518,-1.3024 95.5,-1.7812 23.5958,-0.3551 47.21566,-0.566 70.8125,-0.8438 44.17458,-0.3547 88.35555,-0.6221 132.53125,-0.7812 l 0,-0.0313 z m -298.84375,12.2187 0,0.125 c 62.71854,0.3194 125.4391,0.5629 188.15625,1.0938 17.10137,0.1191 34.17969,0.254 51.28125,0.3438 15.98319,0.0838 38.41986,0.1487 59.40625,0.1562 l 0,-0.5312 c -36.77863,0.1401 -73.56655,-0.0318 -110.34375,-0.25 -62.83338,-0.4373 -125.6659,-0.6351 -188.5,-0.9376 z m 0,1.6563 0,0.0625 c 99.58501,3.1409 199.21612,4.2531 298.84375,5.0625 l 0,-0.25 c -99.63494,-0.5074 -199.2528,-1.7394 -298.84375,-4.875 z m 0,6.7187 0,0.2813 c 25.61057,0.6204 51.23144,1.2714 76.84375,1.8125 53.89761,1.1385 65.596,1.2369 119.71875,2.0938 71.63255,0.8581 51.72841,0.7013 102.28125,0.9062 l 0,-0.0312 c -50.46877,-0.2044 -30.61672,-0.0787 -102.21875,-0.9376 -55.45418,-0.8779 -64.44401,-0.9 -119.625,-2.1562 -25.66884,-0.5843 -51.33423,-1.2775 -77,-1.9688 z m 255.8125,8.3438 c -85.27321,0.0465 -170.54459,0.7376 -255.8125,1.6875 l 0,0.25 c 71.69672,-0.9646 143.42202,-1.5435 215.125,-1.5625 26.64693,-0.01 53.29108,0.0699 79.9375,0.2188 1.26127,0.0129 2.51999,0.048 3.78125,0.0624 l 0,-0.5937 c -1.01028,-0.009 -2.02097,-0.0233 -3.03125,-0.0313 -13.33648,-0.0237 -26.66353,-0.0385 -40,-0.0312 z m 43.03125,1.5625 c -36.53254,0.1352 -73.06264,0.3433 -109.59375,0.6875 -83.76712,0.9859 -57.67711,0.5241 -141.28125,2.125 -15.98783,0.3062 -31.98027,0.6088 -47.96875,0.9375 l 0,0.0937 c 39.45928,-0.8153 78.91478,-1.6876 118.375,-2.2812 23.5958,-0.3549 47.18441,-0.5347 70.78125,-0.8125 36.55426,-0.2935 73.13254,-0.5279 109.6875,-0.6875 l 0,-0.0625 z m -298.84375,12.9687 0,0.125 c 6.44727,0.2298 12.89669,0.4623 19.34375,0.6876 60.45139,1.936 120.93229,3.067 181.40625,3.875 -60.45095,-0.7776 -120.91609,-2.0083 -181.34375,-3.9376 -6.47217,-0.244 -12.93386,-0.5 -19.40625,-0.75 z m 200.75,4.6876 c 5.97866,0.0798 11.95867,0.1769 17.9375,0.25 -13.10717,-0.0541 -26.23693,-0.1098 -39.34375,-0.1876 -59.78328,-0.416 -119.56009,-0.5977 -179.34375,-0.875 l 0,0.0938 c 59.66966,0.297 119.33175,0.5575 179,1.0625 17.10138,0.1192 34.21095,0.254 51.3125,0.3437 11.59226,0.061 26.67809,0.1249 42.09375,0.1563 8.81209,0.0843 17.62521,0.1425 26.4375,0.2187 l 0,-0.1562 c -2.29247,-0.0143 -4.58253,-0.016 -6.875,-0.0312 2.37248,0 4.56094,0.002 6.875,0 l 0,-0.5938 c -24.0639,0.1269 -48.12317,0.0846 -72.1875,0 -8.63607,-0.094 -17.2704,-0.1702 -25.90625,-0.2812 z m -200.75,2.25 0,0.3437 c 33.23769,0.7872 66.47914,1.6416 99.71875,2.3437 53.89762,1.1386 65.59599,1.2681 119.71875,2.125 60.4571,0.7244 52.8986,0.7102 79.40625,0.8126 l 0,-0.0626 c -26.45974,-0.1022 -18.91718,-0.0889 -79.34375,-0.8124 -55.45423,-0.8781 -64.44402,-0.9314 -119.625,-2.1876 -33.29461,-0.7578 -66.58432,-1.6687 -99.875,-2.5624 z m 278.6875,8.9687 c -92.89797,0.0519 -185.7973,0.8482 -278.6875,1.9375 l 0,0.2812 c 99.60727,-1.4584 199.22576,-2.1296 298.84375,-1.7187 l 0,-0.4687 c -6.72038,-0.004 -13.43584,-0.0351 -20.15625,-0.0313 z m 20.15625,6.1563 c -39.58142,0.1325 -79.1697,0.3454 -118.75,0.7187 -83.76713,0.986 -57.6771,0.524 -141.28125,2.125 -12.93623,0.2477 -25.87585,0.5156 -38.8125,0.7813 l 0,0.0312 c 36.41154,-0.7568 72.80623,-1.5148 109.21875,-2.0625 23.59586,-0.3549 47.21567,-0.5347 70.8125,-0.8125 39.60193,-0.318 79.20964,-0.558 118.8125,-0.7188 l 0,-0.0624 z m -298.84375,12.125 0,0.125 c 67.29084,0.3576 134.58538,0.5554 201.875,1.125 17.10143,0.119 34.21088,0.2852 51.3125,0.375 12.46789,0.0653 29.04073,0.1279 45.65625,0.1562 l 0,-0.5 c -32.20772,0.0586 -64.41889,-0.09 -96.625,-0.2812 -67.40568,-0.4691 -134.81336,-0.6541 -202.21875,-1 z m 0,1.2187 0,0.0937 c 3.40518,0.1203 6.81364,0.2561 10.21875,0.375 44.19621,1.4155 88.38368,2.4007 132.59375,3.1563 -44.19137,-0.757 -88.3532,-1.8083 -132.53125,-3.2187 -3.42719,-0.1293 -6.85387,-0.2753 -10.28125,-0.4063 z m 143.0625,3.625 c 51.91968,0.8862 103.85502,1.438 155.78125,1.875 l 0,-0.2187 c -51.92707,-0.2996 -103.86182,-0.7682 -155.78125,-1.6563 z m -143.0625,3.2187 0,0.3438 c 30.18462,0.7233 60.37596,1.4561 90.5625,2.0938 53.89761,1.1385 65.59606,1.2679 119.71875,2.125 64.93036,0.7778 54.05062,0.7112 88.5625,0.8437 l 0,-0.0625 c -34.45169,-0.1323 -23.60024,-0.0666 -88.5,-0.8438 -55.45418,-0.8778 -64.44401,-0.9314 -119.625,-2.1874 -30.24221,-0.6885 -60.48018,-1.4969 -90.71875,-2.3126 z m 269.53125,8.7188 c -89.84536,0.0501 -179.69202,0.7791 -269.53125,1.8125 l 0,0.2813 c 99.59803,-1.4118 199.23676,-2.0103 298.84375,-1.5313 l 0,-0.5313 c -9.77314,-0.0111 -19.53937,-0.0367 -29.3125,-0.0312 z m 29.3125,4.6875 c -40.60194,0.1317 -81.21173,0.3359 -121.8125,0.7187 -83.76713,0.9859 -57.67711,0.5242 -141.28125,2.125 -11.92122,0.2283 -23.82843,0.4744 -35.75,0.7188 l 0,0.0625 c 35.3965,-0.7364 70.79003,-1.4989 106.1875,-2.0313 23.59585,-0.355 47.18442,-0.5349 70.78125,-0.8124 40.6227,-0.3263 81.25135,-0.5572 121.875,-0.7188 l 0,-0.0625 z m -298.84375,13.4687 0,0.0938 c 0.96868,0.0341 1.93758,0.0598 2.90625,0.0938 -0.96806,-0.005 -1.93818,0.005 -2.90625,0 l 0,0.0937 c 2.16643,0.0112 4.33357,0.0203 6.5,0.0313 0.21753,0.01 0.43878,0.0232 0.65625,0.0312 97.20049,3.113 194.44429,4.2513 291.6875,5.0625 l 0,-0.2187 c -96.79942,-0.5432 -193.61875,-1.7703 -290.375,-4.8438 61.41259,0.3089 122.83849,0.5114 184.25,1.0312 17.10143,0.1191 34.21095,0.2853 51.3125,0.375 14.81933,0.0778 35.17704,0.1408 54.8125,0.1563 l 0,-0.5313 c -35.2585,0.1102 -70.52424,-0.0406 -105.78125,-0.25 -62.72984,-0.4365 -125.45691,-0.6361 -188.1875,-0.9374 -1.62503,-0.0615 -3.24995,-0.1258 -4.875,-0.1876 z m 0,6.8126 0,0.3124 c 29.16705,0.701 58.33105,1.4151 87.5,2.0313 53.89762,1.1385 65.62725,1.268 119.75,2.125 66.42179,0.7957 53.95215,0.7295 91.59375,0.875 l 0,-0.0313 c -37.57521,-0.1453 -25.13996,-0.1114 -91.53125,-0.9062 -55.45418,-0.878 -64.44401,-0.9002 -119.625,-2.1562 -29.23161,-0.6654 -58.45824,-1.4611 -87.6875,-2.25 z m 266.5,8.625 c -88.82572,0.0495 -177.68091,0.7663 -266.5,1.7812 l 0,0.3125 c 99.60838,-1.3961 199.22671,-2.0333 298.84375,-1.5313 l 0,-0.5312 c -10.78382,-0.0142 -21.55984,-0.0373 -32.34375,-0.0312 z m 32.34375,6.125 c -43.6514,0.1283 -87.28742,0.3383 -130.9375,0.75 -83.76712,0.9858 -57.67709,0.524 -141.28125,2.125 -8.8727,0.1699 -17.75212,0.3509 -26.625,0.5312 l 0,0.0625 c 32.3443,-0.6729 64.68601,-1.3572 97.03125,-1.8437 23.59585,-0.355 47.18436,-0.5348 70.78125,-0.8126 43.67462,-0.3507 87.35553,-0.6208 131.03125,-0.7812 l 0,-0.0312 z m -298.84375,12.2187 0,0.125 c 63.22574,0.3222 126.43052,0.5273 189.65625,1.0625 17.10138,0.1191 34.21094,0.2851 51.3125,0.375 15.59692,0.0819 37.32551,0.147 57.875,0.1562 l 0,-0.5312 c -36.26684,0.1297 -72.54552,-0.0347 -108.8125,-0.25 -63.34365,-0.4408 -126.68688,-0.6304 -190.03125,-0.9375 z m 0,1.625 0,0.0625 c 99.58472,3.1617 199.21593,4.2513 298.84375,5.0625 l 0,-0.2187 c -99.62559,-0.5137 -199.2625,-1.7518 -298.84375,-4.9063 z m 0,6.6875 0,0.3125 c 26.12108,0.6314 52.25216,1.2607 78.375,1.8125 53.89762,1.1386 65.596,1.2681 119.71875,2.125 70.88447,0.8492 52.24867,0.7121 100.75,0.9062 l 0,-0.0312 c -48.41909,-0.1939 -29.83358,-0.0893 -100.6875,-0.9375 -55.45418,-0.8781 -64.44395,-0.9002 -119.625,-2.1563 -26.17948,-0.5959 -52.3549,-1.3248 -78.53125,-2.0312 z m 257.34375,8.4062 c -85.78154,0.0479 -171.56803,0.7279 -257.34375,1.6876 l 0,0.2812 c 72.20603,-0.9773 144.41167,-1.5746 216.625,-1.5938 26.64693,-0.01 53.29109,0.0717 79.9375,0.2188 0.75985,0.008 1.52142,0.0229 2.28125,0.0312 l 0,-0.5937 c -0.49967,-0.004 -1.00033,0.004 -1.5,0 -13.33648,-0.0237 -26.66338,-0.0387 -40,-0.0313 z m 41.5,1.5626 c -36.02523,0.1337 -72.07041,0.3481 -108.09375,0.6874 -81.90002,0.964 -60.12132,0.5854 -137.1875,2.0626 22.10882,-0.4447 44.23409,-0.855 66.34375,-1.1876 23.59579,-0.355 47.18442,-0.5661 70.78125,-0.8437 36.04839,-0.2896 72.10719,-0.4973 108.15625,-0.6563 l 0,-0.0624 z m -245.28125,2.75 c -1.7569,0.0336 -2.19903,0.0268 -4.0625,0.0624 -16.49117,0.3158 -33.00815,0.6304 -49.5,0.9688 l 0,0.0938 c 17.85805,-0.3685 35.70447,-0.7659 53.5625,-1.125 z m -53.5625,10.1562 0,0.0938 c 6.95925,0.2483 13.91599,0.5068 20.875,0.75 51.69493,1.6555 103.41146,2.7419 155.125,3.5312 -51.69031,-0.7799 -103.39036,-1.9127 -155.0625,-3.5625 -6.97981,-0.2632 -13.95743,-0.5425 -20.9375,-0.8125 z m 176,4.375 c 14.73819,0.2249 29.47995,0.4449 44.21875,0.625 -13.10788,-0.053 -26.23624,-0.1097 -39.34375,-0.1875 -60.29367,-0.4196 -120.57943,-0.625 -180.875,-0.9063 l 0,0.125 c 60.16966,0.2991 120.363,0.522 180.53125,1.0313 17.10138,0.1191 34.21094,0.2853 51.3125,0.375 11.61006,0.061 26.71594,0.1248 42.15625,0.1563 8.27993,0.0791 16.56364,0.1461 24.84375,0.2187 l 0,-0.1563 c -1.78201,-0.0113 -3.56174,-0.0194 -5.34375,-0.0312 1.84405,0 3.53325,10e-4 5.34375,0 l 0,-0.5938 c -23.71967,0.1182 -47.43619,0.0845 -71.15625,0 -17.2311,-0.1881 -34.4574,-0.3962 -51.6875,-0.6562 z m -176,2.5938 0,0.3437 c 33.73855,0.7986 67.47827,1.6622 101.21875,2.375 53.89761,1.1385 65.62729,1.2682 119.75,2.125 59.12029,0.7084 53.38538,0.7152 77.875,0.8125 l 0,-0.0625 c -24.34709,-0.0968 -18.79094,-0.1053 -77.8125,-0.8125 -55.45417,-0.878 -64.44402,-0.9314 -119.625,-2.1875 -33.80498,-0.7695 -67.60384,-1.6873 -101.40625,-2.5937 z m 280.21875,9 c -93.35527,0.0509 -186.71406,0.8396 -280.0625,1.9374 -0.0705,10e-4 -0.0859,-10e-4 -0.15625,0 l 0,0.3126 c 99.60712,-1.4663 199.22631,-2.1501 298.84375,-1.75 l 0,-0.5 c -6.20979,-0.003 -12.41521,-0.003 -18.625,0 z m 18.625,6.1562 c -39.07675,0.133 -78.1431,0.3502 -117.21875,0.7188 -83.76712,0.9858 -57.67711,0.524 -141.28125,2.125 -13.44936,0.2574 -26.89394,0.5365 -40.34375,0.8124 l 0,0.0313 c 36.91731,-0.7668 73.83124,-1.5384 110.75,-2.0937 23.5958,-0.355 47.21567,-0.5663 70.8125,-0.8438 39.10195,-0.314 78.17839,-0.5268 117.28125,-0.6875 l 0,-0.0625 z m -298.84375,12.0938 0,0.125 c 67.79388,0.3634 135.58122,0.5823 203.375,1.1562 17.10137,0.1192 34.2109,0.2852 51.3125,0.375 12.05016,0.0633 28.10913,0.1252 44.15625,0.1562 l 0,-0.5 c -31.69605,0.0511 -63.39785,-0.0931 -95.09375,-0.2812 -67.91583,-0.4727 -135.8335,-0.6801 -203.75,-1.0312 z m 0,1.1874 0,0.0938 c 3.90769,0.1376 7.81114,0.301 11.71875,0.4375 95.6804,3.0642 191.40249,4.2206 287.125,5.0313 l 0,-0.2188 c -95.69932,-0.561 -191.40755,-1.8211 -287.0625,-4.875 -3.92775,-0.1481 -7.8536,-0.3187 -11.78125,-0.4688 z m 0,6.875 0,0.3126 c 30.6952,0.7355 61.39661,1.5078 92.09375,2.1562 53.89762,1.1385 65.59606,1.268 119.71875,2.125 64.16697,0.7687 53.99601,0.7159 87,0.8438 0.002,-0.0196 -0.002,-0.0429 0,-0.0626 -32.94487,-0.1276 -22.80111,-0.0752 -86.9375,-0.8437 -55.45422,-0.878 -64.444,-0.9315 -119.625,-2.1875 -30.75259,-0.7001 -61.49987,-1.516 -92.25,-2.3438 z m 271.0625,8.75 c -78.41459,0.0429 -156.83979,0.6097 -235.25,1.4376 l 18.65625,0 c 80.7066,-0.9128 161.41454,-1.272 242.125,-0.9063 0.22391,-0.1521 0.43008,-0.3151 0.625,-0.5 -8.72051,-0.008 -17.43542,-0.0358 -26.15625,-0.0313 z"
+           style="opacity:0.2;fill:#1a1a1a;stroke:#000000;stroke-width:0.54947251;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+        <path
+           d="m 64.4375,630.8125 c -3.088336,0 -5.34375,2.25541 -5.34375,5.34375 l 0,235.625 c 0,3.08834 2.255414,5.34375 5.34375,5.34375 l 288.15625,0 c 3.08834,0 5.34375,-2.25541 5.34375,-5.34375 l 0,-235.625 c 0,-3.08834 -2.25541,-5.34375 -5.34375,-5.34375 l -288.15625,0 z"
+           id="path4243"
+           style="fill:url(#linearGradient4964);stroke:none"
+           inkscape:original="M 64.4375 623.65625 C 57.513871 623.65625 51.9375 629.23262 51.9375 636.15625 L 51.9375 871.78125 C 51.9375 878.70488 57.513871 884.28125 64.4375 884.28125 L 352.59375 884.28125 C 359.51738 884.28125 365.09375 878.70488 365.09375 871.78125 L 365.09375 636.15625 C 365.09375 629.23262 359.51738 623.65625 352.59375 623.65625 L 64.4375 623.65625 z "
+           inkscape:radius="-7.1428571"
+           sodipodi:type="inkscape:offset"
+           transform="translate(-788.153,99.6371)" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path4330"
+           d="m -448.47927,730.59834 c 4.01012,0.0352 8.02112,0.06 12.03125,0.0938 -0.30841,-0.0495 -0.60846,-0.0938 -0.9375,-0.0938 l -11.09375,0 z m -280.96875,1.5938 c -0.0964,0.0998 -0.19338,0.2047 -0.28125,0.3125 28.2779,0.6821 56.56397,1.4026 84.84375,2 53.8976,1.1386 65.596,1.2369 119.71875,2.0937 67.16927,0.8049 53.82528,0.7211 93.125,0.875 l 0,-0.0312 c -39.20949,-0.1535 -25.93371,-0.1018 -93.0625,-0.9062 -55.45417,-0.878 -64.44396,-0.9003 -119.625,-2.1563 -28.24207,-0.6429 -56.48008,-1.4262 -84.71875,-2.1875 z m 263.53125,8.5625 c -88.32284,0.0482 -176.65176,0.776 -264.96875,1.7813 l 0,0.2812 c 99.60896,-1.3878 199.22664,-2.0137 298.84375,-1.5 l 0,-0.5312 c -11.29433,-0.016 -22.58068,-0.0375 -33.875,-0.0313 z m 33.875,6.125 c -44.15299,0.1277 -88.31713,0.3336 -132.46875,0.75 -83.76713,0.9858 -57.67711,0.5241 -141.28125,2.125 -8.36264,0.1601 -16.73094,0.3306 -25.09375,0.5 l 0,0.0625 c 31.83388,-0.661 63.66518,-1.3024 95.5,-1.7812 23.5958,-0.3551 47.21566,-0.566 70.8125,-0.8438 44.17458,-0.3547 88.35555,-0.6221 132.53125,-0.7812 l 0,-0.0313 z m -298.84375,12.2187 0,0.125 c 62.71854,0.3194 125.4391,0.5629 188.15625,1.0938 17.10137,0.1191 34.17969,0.254 51.28125,0.3438 15.98319,0.0838 38.41986,0.1487 59.40625,0.1562 l 0,-0.5312 c -36.77863,0.1401 -73.56655,-0.0318 -110.34375,-0.25 -62.83338,-0.4373 -125.6659,-0.6351 -188.5,-0.9376 z m 0,1.6563 0,0.0625 c 99.58501,3.1409 199.21612,4.2531 298.84375,5.0625 l 0,-0.25 c -99.63494,-0.5074 -199.2528,-1.7394 -298.84375,-4.875 z m 0,6.7187 0,0.2813 c 25.61057,0.6204 51.23144,1.2714 76.84375,1.8125 53.89761,1.1385 65.596,1.2369 119.71875,2.0938 71.63255,0.8581 51.72841,0.7013 102.28125,0.9062 l 0,-0.0312 c -50.46877,-0.2044 -30.61672,-0.0787 -102.21875,-0.9376 -55.45418,-0.8779 -64.44401,-0.9 -119.625,-2.1562 -25.66884,-0.5843 -51.33423,-1.2775 -77,-1.9688 z m 255.8125,8.3438 c -85.27321,0.0465 -170.54459,0.7376 -255.8125,1.6875 l 0,0.25 c 71.69672,-0.9646 143.42202,-1.5435 215.125,-1.5625 26.64693,-0.01 53.29108,0.0699 79.9375,0.2188 1.26127,0.0129 2.51999,0.048 3.78125,0.0624 l 0,-0.5937 c -1.01028,-0.009 -2.02097,-0.0233 -3.03125,-0.0313 -13.33648,-0.0237 -26.66353,-0.0385 -40,-0.0312 z m 43.03125,1.5625 c -36.53254,0.1352 -73.06264,0.3433 -109.59375,0.6875 -83.76712,0.9859 -57.67711,0.5241 -141.28125,2.125 -15.98783,0.3062 -31.98027,0.6088 -47.96875,0.9375 l 0,0.0937 c 39.45928,-0.8153 78.91478,-1.6876 118.375,-2.2812 23.5958,-0.3549 47.18441,-0.5347 70.78125,-0.8125 36.55426,-0.2935 73.13254,-0.5279 109.6875,-0.6875 l 0,-0.0625 z m -298.84375,12.9687 0,0.125 c 6.44727,0.2298 12.89669,0.4623 19.34375,0.6876 60.45139,1.936 120.93229,3.067 181.40625,3.875 -60.45095,-0.7776 -120.91609,-2.0083 -181.34375,-3.9376 -6.47217,-0.244 -12.93386,-0.5 -19.40625,-0.75 z m 200.75,4.6876 c 5.97866,0.0798 11.95867,0.1769 17.9375,0.25 -13.10717,-0.0541 -26.23693,-0.1098 -39.34375,-0.1876 -59.78328,-0.416 -119.56009,-0.5977 -179.34375,-0.875 l 0,0.0938 c 59.66966,0.297 119.33175,0.5575 179,1.0625 17.10138,0.1192 34.21095,0.254 51.3125,0.3437 11.59226,0.061 26.67809,0.1249 42.09375,0.1563 8.81209,0.0843 17.62521,0.1425 26.4375,0.2187 l 0,-0.1562 c -2.29247,-0.0143 -4.58253,-0.016 -6.875,-0.0312 2.37248,0 4.56094,0.002 6.875,0 l 0,-0.5938 c -24.0639,0.1269 -48.12317,0.0846 -72.1875,0 -8.63607,-0.094 -17.2704,-0.1702 -25.90625,-0.2812 z m -200.75,2.25 0,0.3437 c 33.23769,0.7872 66.47914,1.6416 99.71875,2.3437 53.89762,1.1386 65.59599,1.2681 119.71875,2.125 60.4571,0.7244 52.8986,0.7102 79.40625,0.8126 l 0,-0.0626 c -26.45974,-0.1022 -18.91718,-0.0889 -79.34375,-0.8124 -55.45423,-0.8781 -64.44402,-0.9314 -119.625,-2.1876 -33.29461,-0.7578 -66.58432,-1.6687 -99.875,-2.5624 z m 278.6875,8.9687 c -92.89797,0.0519 -185.7973,0.8482 -278.6875,1.9375 l 0,0.2812 c 99.60727,-1.4584 199.22576,-2.1296 298.84375,-1.7187 l 0,-0.4687 c -6.72038,-0.004 -13.43584,-0.0351 -20.15625,-0.0313 z m 20.15625,6.1563 c -39.58142,0.1325 -79.1697,0.3454 -118.75,0.7187 -83.76713,0.986 -57.6771,0.524 -141.28125,2.125 -12.93623,0.2477 -25.87585,0.5156 -38.8125,0.7813 l 0,0.0312 c 36.41154,-0.7568 72.80623,-1.5148 109.21875,-2.0625 23.59586,-0.3549 47.21567,-0.5347 70.8125,-0.8125 39.60193,-0.318 79.20964,-0.558 118.8125,-0.7188 l 0,-0.0624 z m -298.84375,12.125 0,0.125 c 67.29084,0.3576 134.58538,0.5554 201.875,1.125 17.10143,0.119 34.21088,0.2852 51.3125,0.375 12.46789,0.0653 29.04073,0.1279 45.65625,0.1562 l 0,-0.5 c -32.20772,0.0586 -64.41889,-0.09 -96.625,-0.2812 -67.40568,-0.4691 -134.81336,-0.6541 -202.21875,-1 z m 0,1.2187 0,0.0937 c 3.40518,0.1203 6.81364,0.2561 10.21875,0.375 44.19621,1.4155 88.38368,2.4007 132.59375,3.1563 -44.19137,-0.757 -88.3532,-1.8083 -132.53125,-3.2187 -3.42719,-0.1293 -6.85387,-0.2753 -10.28125,-0.4063 z m 143.0625,3.625 c 51.91968,0.8862 103.85502,1.438 155.78125,1.875 l 0,-0.2187 c -51.92707,-0.2996 -103.86182,-0.7682 -155.78125,-1.6563 z m -143.0625,3.2187 0,0.3438 c 30.18462,0.7233 60.37596,1.4561 90.5625,2.0938 53.89761,1.1385 65.59606,1.2679 119.71875,2.125 64.93036,0.7778 54.05062,0.7112 88.5625,0.8437 l 0,-0.0625 c -34.45169,-0.1323 -23.60024,-0.0666 -88.5,-0.8438 -55.45418,-0.8778 -64.44401,-0.9314 -119.625,-2.1874 -30.24221,-0.6885 -60.48018,-1.4969 -90.71875,-2.3126 z m 269.53125,8.7188 c -89.84536,0.0501 -179.69202,0.7791 -269.53125,1.8125 l 0,0.2813 c 99.59803,-1.4118 199.23676,-2.0103 298.84375,-1.5313 l 0,-0.5313 c -9.77314,-0.0111 -19.53937,-0.0367 -29.3125,-0.0312 z m 29.3125,4.6875 c -40.60194,0.1317 -81.21173,0.3359 -121.8125,0.7187 -83.76713,0.9859 -57.67711,0.5242 -141.28125,2.125 -11.92122,0.2283 -23.82843,0.4744 -35.75,0.7188 l 0,0.0625 c 35.3965,-0.7364 70.79003,-1.4989 106.1875,-2.0313 23.59585,-0.355 47.18442,-0.5349 70.78125,-0.8124 40.6227,-0.3263 81.25135,-0.5572 121.875,-0.7188 l 0,-0.0625 z m -298.84375,13.4687 0,0.0938 c 0.96868,0.0341 1.93758,0.0598 2.90625,0.0938 -0.96806,-0.005 -1.93818,0.005 -2.90625,0 l 0,0.0937 c 2.16643,0.0112 4.33357,0.0203 6.5,0.0313 0.21753,0.01 0.43878,0.0232 0.65625,0.0312 97.20049,3.113 194.44429,4.2513 291.6875,5.0625 l 0,-0.2187 c -96.79942,-0.5432 -193.61875,-1.7703 -290.375,-4.8438 61.41259,0.3089 122.83849,0.5114 184.25,1.0312 17.10143,0.1191 34.21095,0.2853 51.3125,0.375 14.81933,0.0778 35.17704,0.1408 54.8125,0.1563 l 0,-0.5313 c -35.2585,0.1102 -70.52424,-0.0406 -105.78125,-0.25 -62.72984,-0.4365 -125.45691,-0.6361 -188.1875,-0.9374 -1.62503,-0.0615 -3.24995,-0.1258 -4.875,-0.1876 z m 0,6.8126 0,0.3124 c 29.16705,0.701 58.33105,1.4151 87.5,2.0313 53.89762,1.1385 65.62725,1.268 119.75,2.125 66.42179,0.7957 53.95215,0.7295 91.59375,0.875 l 0,-0.0313 c -37.57521,-0.1453 -25.13996,-0.1114 -91.53125,-0.9062 -55.45418,-0.878 -64.44401,-0.9002 -119.625,-2.1562 -29.23161,-0.6654 -58.45824,-1.4611 -87.6875,-2.25 z m 266.5,8.625 c -88.82572,0.0495 -177.68091,0.7663 -266.5,1.7812 l 0,0.3125 c 99.60838,-1.3961 199.22671,-2.0333 298.84375,-1.5313 l 0,-0.5312 c -10.78382,-0.0142 -21.55984,-0.0373 -32.34375,-0.0312 z m 32.34375,6.125 c -43.6514,0.1283 -87.28742,0.3383 -130.9375,0.75 -83.76712,0.9858 -57.67709,0.524 -141.28125,2.125 -8.8727,0.1699 -17.75212,0.3509 -26.625,0.5312 l 0,0.0625 c 32.3443,-0.6729 64.68601,-1.3572 97.03125,-1.8437 23.59585,-0.355 47.18436,-0.5348 70.78125,-0.8126 43.67462,-0.3507 87.35553,-0.6208 131.03125,-0.7812 l 0,-0.0312 z m -298.84375,12.2187 0,0.125 c 63.22574,0.3222 126.43052,0.5273 189.65625,1.0625 17.10138,0.1191 34.21094,0.2851 51.3125,0.375 15.59692,0.0819 37.32551,0.147 57.875,0.1562 l 0,-0.5312 c -36.26684,0.1297 -72.54552,-0.0347 -108.8125,-0.25 -63.34365,-0.4408 -126.68688,-0.6304 -190.03125,-0.9375 z m 0,1.625 0,0.0625 c 99.58472,3.1617 199.21593,4.2513 298.84375,5.0625 l 0,-0.2187 c -99.62559,-0.5137 -199.2625,-1.7518 -298.84375,-4.9063 z m 0,6.6875 0,0.3125 c 26.12108,0.6314 52.25216,1.2607 78.375,1.8125 53.89762,1.1386 65.596,1.2681 119.71875,2.125 70.88447,0.8492 52.24867,0.7121 100.75,0.9062 l 0,-0.0312 c -48.41909,-0.1939 -29.83358,-0.0893 -100.6875,-0.9375 -55.45418,-0.8781 -64.44395,-0.9002 -119.625,-2.1563 -26.17948,-0.5959 -52.3549,-1.3248 -78.53125,-2.0312 z m 257.34375,8.4062 c -85.78154,0.0479 -171.56803,0.7279 -257.34375,1.6876 l 0,0.2812 c 72.20603,-0.9773 144.41167,-1.5746 216.625,-1.5938 26.64693,-0.01 53.29109,0.0717 79.9375,0.2188 0.75985,0.008 1.52142,0.0229 2.28125,0.0312 l 0,-0.5937 c -0.49967,-0.004 -1.00033,0.004 -1.5,0 -13.33648,-0.0237 -26.66338,-0.0387 -40,-0.0313 z m 41.5,1.5626 c -36.02523,0.1337 -72.07041,0.3481 -108.09375,0.6874 -81.90002,0.964 -60.12132,0.5854 -137.1875,2.0626 22.10882,-0.4447 44.23409,-0.855 66.34375,-1.1876 23.59579,-0.355 47.18442,-0.5661 70.78125,-0.8437 36.04839,-0.2896 72.10719,-0.4973 108.15625,-0.6563 l 0,-0.0624 z m -245.28125,2.75 c -1.7569,0.0336 -2.19903,0.0268 -4.0625,0.0624 -16.49117,0.3158 -33.00815,0.6304 -49.5,0.9688 l 0,0.0938 c 17.85805,-0.3685 35.70447,-0.7659 53.5625,-1.125 z m -53.5625,10.1562 0,0.0938 c 6.95925,0.2483 13.91599,0.5068 20.875,0.75 51.69493,1.6555 103.41146,2.7419 155.125,3.5312 -51.69031,-0.7799 -103.39036,-1.9127 -155.0625,-3.5625 -6.97981,-0.2632 -13.95743,-0.5425 -20.9375,-0.8125 z m 176,4.375 c 14.73819,0.2249 29.47995,0.4449 44.21875,0.625 -13.10788,-0.053 -26.23624,-0.1097 -39.34375,-0.1875 -60.29367,-0.4196 -120.57943,-0.625 -180.875,-0.9063 l 0,0.125 c 60.16966,0.2991 120.363,0.522 180.53125,1.0313 17.10138,0.1191 34.21094,0.2853 51.3125,0.375 11.61006,0.061 26.71594,0.1248 42.15625,0.1563 8.27993,0.0791 16.56364,0.1461 24.84375,0.2187 l 0,-0.1563 c -1.78201,-0.0113 -3.56174,-0.0194 -5.34375,-0.0312 1.84405,0 3.53325,10e-4 5.34375,0 l 0,-0.5938 c -23.71967,0.1182 -47.43619,0.0845 -71.15625,0 -17.2311,-0.1881 -34.4574,-0.3962 -51.6875,-0.6562 z m -176,2.5938 0,0.3437 c 33.73855,0.7986 67.47827,1.6622 101.21875,2.375 53.89761,1.1385 65.62729,1.2682 119.75,2.125 59.12029,0.7084 53.38538,0.7152 77.875,0.8125 l 0,-0.0625 c -24.34709,-0.0968 -18.79094,-0.1053 -77.8125,-0.8125 -55.45417,-0.878 -64.44402,-0.9314 -119.625,-2.1875 -33.80498,-0.7695 -67.60384,-1.6873 -101.40625,-2.5937 z m 280.21875,9 c -93.35527,0.0509 -186.71406,0.8396 -280.0625,1.9374 -0.0705,10e-4 -0.0859,-10e-4 -0.15625,0 l 0,0.3126 c 99.60712,-1.4663 199.22631,-2.1501 298.84375,-1.75 l 0,-0.5 c -6.20979,-0.003 -12.41521,-0.003 -18.625,0 z m 18.625,6.1562 c -39.07675,0.133 -78.1431,0.3502 -117.21875,0.7188 -83.76712,0.9858 -57.67711,0.524 -141.28125,2.125 -13.44936,0.2574 -26.89394,0.5365 -40.34375,0.8124 l 0,0.0313 c 36.91731,-0.7668 73.83124,-1.5384 110.75,-2.0937 23.5958,-0.355 47.21567,-0.5663 70.8125,-0.8438 39.10195,-0.314 78.17839,-0.5268 117.28125,-0.6875 l 0,-0.0625 z m -298.84375,12.0938 0,0.125 c 67.79388,0.3634 135.58122,0.5823 203.375,1.1562 17.10137,0.1192 34.2109,0.2852 51.3125,0.375 12.05016,0.0633 28.10913,0.1252 44.15625,0.1562 l 0,-0.5 c -31.69605,0.0511 -63.39785,-0.0931 -95.09375,-0.2812 -67.91583,-0.4727 -135.8335,-0.6801 -203.75,-1.0312 z m 0,1.1874 0,0.0938 c 3.90769,0.1376 7.81114,0.301 11.71875,0.4375 95.6804,3.0642 191.40249,4.2206 287.125,5.0313 l 0,-0.2188 c -95.69932,-0.561 -191.40755,-1.8211 -287.0625,-4.875 -3.92775,-0.1481 -7.8536,-0.3187 -11.78125,-0.4688 z m 0,6.875 0,0.3126 c 30.6952,0.7355 61.39661,1.5078 92.09375,2.1562 53.89762,1.1385 65.59606,1.268 119.71875,2.125 64.16697,0.7687 53.99601,0.7159 87,0.8438 0.002,-0.0196 -0.002,-0.0429 0,-0.0626 -32.94487,-0.1276 -22.80111,-0.0752 -86.9375,-0.8437 -55.45422,-0.878 -64.444,-0.9315 -119.625,-2.1875 -30.75259,-0.7001 -61.49987,-1.516 -92.25,-2.3438 z m 271.0625,8.75 c -78.41459,0.0429 -156.83979,0.6097 -235.25,1.4376 l 18.65625,0 c 80.7066,-0.9128 161.41454,-1.272 242.125,-0.9063 0.22391,-0.1521 0.43008,-0.3151 0.625,-0.5 -8.72051,-0.008 -17.43542,-0.0358 -26.15625,-0.0313 z"
+           style="opacity:0.2;fill:#1a1a1a;stroke:#000000;stroke-width:0.54947251;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+      </g>
+      <path
+         id="path4837"
+         d="m -345.6875,765.90625 c -26.35946,0.18722 -47.572,22.82606 -47.375,50.5625 0.16464,23.18087 15.23078,42.57849 35.5625,48.21875 l 1.5625,120.09375 4.53125,-5.28125 0.0625,-0.0625 3.4375,-4.03125 11.03125,-12.84375 -0.8125,-13.53125 9.9375,-8.625 -10.75,-7.03125 9.84375,-17.1875 -12.125,-4.90625 10.5625,-16.34375 -8.15625,-13.59375 8.9375,-17.84375 c 18.66319,-6.92718 31.96873,-25.72122 31.8125,-47.71875 -0.197,-27.73644 -21.70305,-50.06222 -48.0625,-49.875 z m -13.09375,18 c 6.13537,-0.0436 11.11125,5.03958 11.15625,11.375 0.045,6.33542 -4.86463,11.51893 -11,11.5625 -6.13533,0.0436 -11.1425,-5.07083 -11.1875,-11.40625 -0.045,-6.33542 4.89592,-11.48767 11.03125,-11.53125 z"
+         style="opacity:0.5;fill:#1a1a1a;stroke:none;filter:url(#filter4882)"
+         inkscape:connector-curvature="0" />
+      <g
+         transform="matrix(-0.00217331,-0.305993,0.305993,-0.00217331,-760.573,689.869)"
+         id="g4821">
+        <path
+           inkscape:connector-curvature="0"
+           style="fill:url(#linearGradient4966);stroke:none"
+           d="m -422.21875,1198 c -75.75634,0 -139.50261,48.7829 -158.40625,115.0938 l -392.5,2.3437 72.1875,62.8437 44.21875,-2.3124 27.9375,32.5937 23.28125,-34.9375 55.875,32.5938 16.3125,-39.5626 53.21875,34.9063 44.53125,-26.2813 58.15625,29.625 c 22.20406,61.15 83.29839,105.0626 155.1875,105.0626 90.64415,0 164.125,-69.8247 164.125,-155.9688 0,-86.1441 -73.48085,-156 -164.125,-156 z m 68.125,76.4688 c 20.70449,0 37.46875,16.2618 37.46875,36.3124 0,20.0507 -16.76426,36.2813 -37.46875,36.2813 -20.70449,0 -37.5,-16.2306 -37.5,-36.2813 0,-20.0506 16.79551,-36.3124 37.5,-36.3124 z"
+           id="path4534" />
+        <path
+           inkscape:connector-curvature="0"
+           style="fill:url(#radialGradient4968);stroke:none"
+           d="m -422.21875,1206.875 c -85.50122,0 -154.8125,65.8685 -154.8125,147.125 0,81.2565 69.31128,147.125 154.8125,147.125 85.50122,0 154.8125,-65.8685 154.8125,-147.125 0,-81.2565 -69.31128,-147.125 -154.8125,-147.125 z m 68.125,67.5938 c 20.70449,0 37.46875,16.2618 37.46875,36.3124 0,20.0507 -16.76426,36.2813 -37.46875,36.2813 -20.70449,0 -37.5,-16.2306 -37.5,-36.2813 0,-20.0506 16.79551,-36.3124 37.5,-36.3124 z"
+           id="path4539" />
+        <path
+           inkscape:connector-curvature="0"
+           style="opacity:0.26000001;fill:url(#radialGradient4970);fill-opacity:1;stroke:none"
+           d="m -421.1875,1206.1875 -4.625,4.7813 -4.78125,-4.625 c -1.7739,0.087 -3.55489,0.2316 -5.3125,0.375 l 7.34375,7.0937 -10.25,10.5937 -12.78125,-12.375 3.75,-3.9062 c -3.80736,0.5964 -7.57293,1.3322 -11.28125,2.1875 l 1.875,1.8125 -10.21875,10.5625 -7.96875,-7.6875 c -1.39509,0.4825 -2.78022,0.9807 -4.15625,1.5 l 9.34375,9.0312 -10.21875,10.5938 -10.5625,-10.1875 7.6875,-7.9687 c -3.30919,1.3459 -6.56425,2.7895 -9.75,4.3437 l -0.8125,0.8437 -0.3125,-0.2812 c -1.24242,0.6185 -2.46523,1.2568 -3.6875,1.9062 l 1.25,1.2188 -12.40625,12.8438 -4.625,-4.4688 c -1.10612,0.7675 -2.19764,1.5492 -3.28125,2.3438 l 5.15625,4.9687 -10.25,10.5937 -6.4375,-6.2187 c -0.98553,0.8806 -1.97653,1.7828 -2.9375,2.6875 l 6.625,6.4062 -12.125,12.5313 -6.46875,-6.25 c -0.85879,1.02 -1.70071,2.0518 -2.53125,3.0937 l 6.25,6.0313 -10.25,10.5937 -4.6875,-4.5312 c -0.7312,1.1358 -1.45685,2.2816 -2.15625,3.4375 l 4.09375,3.9375 -12.40625,12.8438 -0.28125,-0.25 c -1.53561,3.4909 -2.93333,7.0349 -4.1875,10.6562 l 4.59375,-4.75 10.5625,10.1875 -10.21875,10.5937 -7.625,-7.375 c -0.40647,1.4744 -0.79711,2.9455 -1.15625,4.4376 l 6,5.7812 -8.71875,9.0625 c -0.33037,2.5571 -0.59077,5.1229 -0.78125,7.7187 l 12.21875,11.8126 -10.21875,10.5937 -2.03125,-1.9375 c 0.21244,2.9768 0.51022,5.9493 0.90625,8.875 l 1.25,-1.2812 10.5625,10.2187 -8.28125,8.5937 c 0.40065,1.4919 0.83303,2.9643 1.28125,4.4376 l 9.875,-10.25 10.5625,10.1874 -12.40625,12.8126 -5.5625,-5.375 c 1.46889,4.0171 3.12149,7.9621 4.9375,11.8124 l 0.75,-0.7812 10.5625,10.1875 -4,4.1563 c 0.71413,1.1706 1.44069,2.3187 2.1875,3.4687 l 4.6875,-4.8437 12.8125,12.4062 -6.75,6.9688 c 0.85849,1.0226 1.7387,2.031 2.625,3.0312 l 7,-7.25 10.59375,10.2188 -7.28125,7.5624 c 0.97481,0.9048 1.96917,1.8074 2.96875,2.6876 l 7.1875,-7.4688 12.53125,12.0938 -5.96875,6.1874 c 1.11039,0.7735 2.24239,1.5356 3.375,2.2813 l 5.46875,-5.6875 10.5625,10.2188 -3.03125,3.125 c 1.24456,0.6568 2.48469,1.3124 3.75,1.9374 l 2.1875,-2.2812 6.40625,6.1875 c 4.29597,1.8112 8.69638,3.466 13.1875,4.9063 l 11.21875,-11.625 10.59375,10.2187 -5.53125,5.7187 c 1.5508,0.3225 3.11969,0.5971 4.6875,0.875 l 3.71875,-3.8124 5.34375,5.1562 c 2.11825,0.2529 4.23101,0.4855 6.375,0.6562 l -8.96875,-8.6874 10.25,-10.5938 10.5625,10.2188 -8.9375,9.25 c 1.74908,0.1081 3.5168,0.1974 5.28125,0.25 l 6.53125,-6.75 6.8125,6.5937 c 1.78456,-0.091 3.57575,-0.1957 5.34375,-0.3437 l -9.40625,-9.0938 10.21875,-10.5625 10.5625,10.1875 -8.9375,9.25 c 2.12927,-0.2105 4.24102,-0.4896 6.34375,-0.7812 l 5.46875,-5.6876 4.21875,4.0626 c 1.56134,-0.3144 3.11268,-0.6726 4.65625,-1.0313 l -6.09375,-5.875 10.21875,-10.5937 12.1875,11.7812 0.0312,0 c 3.67698,-1.2795 7.27218,-2.7188 10.8125,-4.25 l 7.8125,-8.0625 3,2.9063 c 1.23411,-0.6493 2.44307,-1.32 3.65625,-2 l -3.90625,-3.7813 10.25,-10.5937 6.53125,6.3124 c 1.10334,-0.7682 2.20039,-1.5485 3.28125,-2.3437 l -7.0625,-6.8125 12.125,-12.5625 8.46875,8.1875 c 0.96914,-0.9003 1.9309,-1.8261 2.875,-2.75 l -8.59375,-8.2812 10.25,-10.5938 8.34375,8.0938 c 0.85726,-1.0212 1.70227,-2.0507 2.53125,-3.0938 L -307,1434 l 12.375,-12.8125 6.09375,5.875 c 0.70498,-1.1537 1.42112,-2.3266 2.09375,-3.5 l -5.40625,-5.25 10.21875,-10.5937 2.125,2.0624 c 0.57038,-1.3025 1.12446,-2.6162 1.65625,-3.9374 l -1,-0.9688 2.28125,-2.375 c 1.08618,-2.9085 2.10434,-5.8543 3,-8.8438 l -8.15625,8.4376 -12.8125,-12.375 10.21875,-10.5626 11.6875,11.2813 c 0.40075,-1.4642 0.77091,-2.956 1.125,-4.4375 l -10.0625,-9.7188 10.21875,-10.5937 2.875,2.75 c 0.18061,-1.6795 0.31685,-3.3979 0.4375,-5.0937 l -0.53125,-0.5 0.59375,-0.625 c 0.12668,-2.0067 0.20879,-4.0037 0.25,-6.0313 l -3.71875,3.875 -10.59375,-10.2187 12.40625,-12.8126 1.15625,1.0938 c -0.25518,-2.3681 -0.5968,-4.729 -0.96875,-7.0625 l -0.3125,0.3125 -10.5625,-10.1875 7.03125,-7.2813 c -0.42737,-1.4655 -0.87025,-2.9282 -1.34375,-4.375 l -8.5625,8.875 -10.5625,-10.2187 10.21875,-10.5937 7.125,6.9062 c -1.15332,-3.1196 -2.41717,-6.1681 -3.78125,-9.1875 l -0.59375,-0.5937 0.21875,-0.25 c -0.5871,-1.2774 -1.18866,-2.5544 -1.8125,-3.8126 l -1.25,1.3126 -12.8125,-12.375 4.78125,-4.9688 c -0.75022,-1.1245 -1.53136,-2.2402 -2.3125,-3.3438 l -5.34375,5.5313 -10.59375,-10.2187 6.78125,-7.0313 c -0.87753,-1.0084 -1.78249,-1.9832 -2.6875,-2.9687 l -6.96875,7.2187 -12.53125,-12.0937 7,-7.25 c -1.01649,-0.8796 -2.02154,-1.7399 -3.0625,-2.5938 l -6.8125,7.0625 -10.59375,-10.25 5.46875,-5.6563 c -1.11644,-0.749 -2.23705,-1.4972 -3.375,-2.2187 l -4.9375,5.125 -12.8125,-12.375 1.625,-1.6875 c -1.2684,-0.6086 -2.55563,-1.2052 -3.84375,-1.7812 l -0.6875,0.6874 -1.875,-1.8124 c -3.1257,-1.3319 -6.29979,-2.5508 -9.53125,-3.6876 l 8.65625,8.3438 -10.21875,10.5938 -10.5625,-10.1876 9.375,-9.7187 c -1.42173,-0.4711 -2.84097,-0.9113 -4.28125,-1.3437 l -7.96875,8.2812 -10.5625,-10.2188 2,-2.0624 c -1.58271,-0.2972 -3.1816,-0.5616 -4.78125,-0.8126 l -0.0937,0.094 -0.15625,-0.1562 c -2.21131,-0.3433 -4.44574,-0.6218 -6.6875,-0.875 l 4.0625,3.9062 -12.375,12.8125 -10.59375,-10.2187 7.1875,-7.4063 c -1.80426,-0.074 -3.61775,-0.1106 -5.4375,-0.125 z m 24.09375,7.7187 10.5625,10.1876 -12.375,12.8437 -10.5625,-10.2187 12.375,-12.8126 z m -57.28125,1 12.8125,12.375 -10.21875,10.5626 -12.8125,-12.375 10.21875,-10.5626 z m 28.65625,1.6876 10.59375,10.2187 -10.21875,10.5937 -10.59375,-10.2187 10.21875,-10.5937 z m 68.5,9.8437 12.8125,12.375 -10.21875,10.5625 -12.8125,-12.375 10.21875,-10.5625 z m -26.4375,0.4375 10.5625,10.2188 -12.375,12.8124 -10.5625,-10.1874 12.375,-12.8438 z m -83.6875,1.4688 12.8125,12.375 -10.21875,10.5624 -12.8125,-12.375 10.21875,-10.5624 z m -26.4375,0.4374 10.5625,10.2188 -12.40625,12.8125 -10.5625,-10.1875 12.40625,-12.8438 z m 81.53125,0.8126 10.5625,10.1874 -10.21875,10.5938 -10.5625,-10.1875 10.21875,-10.5937 z m -26.4375,0.4374 10.5625,10.25 -10.1875,10.5626 -10.59375,-10.2188 10.21875,-10.5938 z m 68.5,9.8438 12.8125,12.375 -12.40625,12.8125 -12.8125,-12.375 12.40625,-12.8125 z m 28.65625,1.6875 10.59375,10.2187 -10.21875,10.5938 -10.59375,-10.2188 10.21875,-10.5937 z m -138.8125,0.2187 12.8125,12.375 -12.375,12.8126 -12.8125,-12.375 12.375,-12.8126 z m 81.53125,0.7813 10.5625,10.2187 -10.21875,10.5938 -10.5625,-10.2188 10.21875,-10.5937 z m -26.40625,0.4687 10.53125,10.2188 -10.1875,10.5625 -10.5625,-10.1875 10.21875,-10.5938 z m -26.46875,0.4376 10.59375,10.2187 -10.21875,10.5937 -10.59375,-10.2187 10.21875,-10.5937 z m -57.25,1 10.5625,10.2187 -10.25,10.5937 -10.5625,-10.2187 10.25,-10.5937 z m 180.875,10.0937 12.53125,12.0937 -10.25,10.5938 -12.5,-12.0938 10.21875,-10.5937 z m -26.46875,0.4375 10.59375,10.25 -2.90625,3.0312 c 1.56921,0.2491 3.08437,0.5964 4.59375,1 l 1.1875,-1.25 2.4375,2.3438 c 12.19577,4.3844 21.88798,13.8121 26.34375,25.6562 l 0.0937,-0.125 12.8125,12.375 -11.28125,11.6563 c -0.69388,3.0945 -1.72232,6.068 -3.0625,8.875 l 2.03125,-2.0937 10.59375,10.2187 -10.21875,10.5937 -9.0625,-8.7187 c -0.87425,0.9849 -1.78848,1.9393 -2.75,2.8437 l 9.03125,8.75 -10.21875,10.5626 -10.5625,-10.2188 2.09375,-2.1562 c -2.82455,1.497 -5.84539,2.6827 -9,3.5624 l -8.96875,9.2813 -8.125,-7.8437 c -2.40997,-0.2488 -4.75201,-0.6748 -7.03125,-1.2813 l 12.40625,11.9687 -12.40625,12.8438 -12.8125,-12.375 12.1875,-12.625 c -1.42466,-0.4013 -2.82579,-0.8744 -4.1875,-1.4062 l -10.875,11.25 -10.5625,-10.2188 8.5,-8.8125 c -1.00685,-0.8685 -1.98464,-1.7973 -2.90625,-2.75 l -8.46875,8.7813 -12.53125,-12.0938 11.46875,-11.9062 c -1.08668,-3.0178 -1.84967,-6.1874 -2.21875,-9.4688 l -7.5625,-7.3125 9.0625,-9.375 c 1.18036,-3.9604 2.92559,-7.6916 5.15625,-11.0937 l -4.09375,4.25 -12.8125,-12.375 10.21875,-10.5938 12.25,11.8438 c 0.92867,-0.9306 1.92609,-1.8095 2.9375,-2.6563 l -12.4375,-12.0313 10.25,-10.5937 12.8125,12.375 -7.78125,8.0313 c 4.38475,-3.1021 9.38555,-5.4264 14.78125,-6.8126 l -1.375,-1.3124 12.375,-12.8438 z m -57.28125,1.0312 10.5625,10.1876 -10.1875,10.5937 -10.5625,-10.2187 10.1875,-10.5626 z m -26.40625,0.4376 10.5625,10.2187 -10.21875,10.5625 -10.5625,-10.1875 10.21875,-10.5937 z m -26.4375,0.4374 10.59375,10.25 -12.40625,12.8126 -10.59375,-10.2188 12.40625,-12.8438 z m -30.84375,0.5626 12.8125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.21875,-10.5937 z m -26.4375,0.4687 10.5625,10.1875 -12.125,12.5625 -10.5625,-10.2187 12.125,-12.5313 z m 209.28125,11.5 10.5625,10.2187 -10.21875,10.5938 -10.59375,-10.2188 10.25,-10.5937 z m -112.125,0.031 10.5625,10.1874 -10.21875,10.5938 -10.5625,-10.2188 10.21875,-10.5624 z m -26.40625,0.4687 10.5625,10.1875 -12.40625,12.8438 -10.5625,-10.2188 12.40625,-12.8125 z m -57.3125,1 12.8125,12.3437 -12.09375,12.5626 -12.8125,-12.375 12.09375,-12.5313 z m 28.6875,1.6875 10.59375,10.2188 -10.25,10.5937 -10.59375,-10.2187 10.25,-10.5938 z m -57,0.7188 10.5625,10.1874 -10.25,10.5938 -10.5625,-10.1875 10.25,-10.5937 z m 125.5,9.0937 12.78125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.25,-10.5937 z m 112.09375,0 12.8125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.21875,-10.5937 z m -138.53125,0.4687 10.5625,10.1876 -12.40625,12.8437 -10.5625,-10.2187 12.40625,-12.8126 z m -28.59375,2.7188 10.5625,10.1875 -10.25,10.5937 -10.5625,-10.1874 10.25,-10.5938 z m -26.46875,0.4375 10.59375,10.2187 -12.125,12.5626 -10.59375,-10.2188 12.125,-12.5625 z m -30.5625,0.25 12.8125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.21875,-10.5937 z m -26.4375,0.4687 10.5625,10.2188 -12.40625,12.8125 -10.5625,-10.1875 12.40625,-12.8438 z m 125.5,9.125 12.8125,12.375 -12.40625,12.8126 -12.8125,-12.375 12.40625,-12.8126 z m -28.59375,2.6876 10.5625,10.1874 -10.25,10.5938 -10.5625,-10.1875 10.25,-10.5937 z m -26.4375,0.4687 10.5625,10.2187 -12.125,12.5313 -10.5625,-10.1875 12.125,-12.5625 z m -57.03125,0.7187 12.8125,12.375 -12.375,12.8438 -12.8125,-12.375 12.375,-12.8438 z m 28.6875,1.6876 10.59375,10.2187 -10.25,10.5937 -10.5625,-10.2187 10.21875,-10.5937 z m 99.0625,9.5624 10.5625,10.2188 -12.375,12.8438 -10.59375,-10.2188 12.40625,-12.8438 z m 112.09375,0 10.59375,10.2188 -12.40625,12.8438 -10.5625,-10.2188 12.375,-12.8438 z m -142.9375,0.5626 12.8125,12.375 -10.25,10.5937 -12.78125,-12.375 10.21875,-10.5937 z m -26.4375,0.4687 10.5625,10.1875 -12.125,12.5312 -10.5625,-10.1874 12.125,-12.5313 z m -28.3125,2.4063 10.5625,10.2187 -10.25,10.5937 -10.5625,-10.2187 10.25,-10.5937 z m -26.46875,0.4687 10.59375,10.2187 -12.40625,12.8126 -10.5625,-10.2188 12.375,-12.8125 z m -30.84375,0.5313 12.8125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.21875,-10.5937 z m 268.46875,8.5624 10.5625,10.2188 -12.40625,12.8125 -10.5625,-10.1875 12.40625,-12.8438 z m -169.40625,1 12.8125,12.375 -12.125,12.5626 -12.8125,-12.375 12.125,-12.5626 z m 28.6875,1.6876 10.5625,10.25 -10.21875,10.5624 -10.59375,-10.2187 10.25,-10.5937 z m -57,0.7187 10.5625,10.2187 -10.25,10.5938 -10.5625,-10.2188 10.25,-10.5937 z m -26.4375,0.5 10.5625,10.1875 -12.40625,12.8438 -10.5625,-10.2188 12.40625,-12.8125 z m -57.28125,0.9687 12.8125,12.375 -10.21875,10.5938 -12.8125,-12.375 10.21875,-10.5938 z m 28.65625,1.7188 10.59375,10.2188 -10.21875,10.5937 -10.59375,-10.25 10.21875,-10.5625 z m 125.53125,9.0938 12.5,12.125 -10.21875,10.5937 -12.53125,-12.125 10.25,-10.5937 z m 112.09375,0 10.5625,10.2187 -10.25,10.5625 -10.53125,-10.1875 10.21875,-10.5937 z m -138.5625,0.4687 10.59375,10.2187 -12.125,12.5313 -10.59375,-10.2187 12.125,-12.5313 z m -30.5625,0.25 12.8125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.21875,-10.5937 z m -26.4375,0.4687 10.5625,10.1876 -12.40625,12.8437 -10.5625,-10.1875 12.40625,-12.8438 z m -28.59375,2.7188 10.5625,10.1875 -10.21875,10.5937 -10.5625,-10.2187 10.21875,-10.5625 z m -26.4375,0.4375 10.5625,10.2187 -10.21875,10.5938 -10.5625,-10.25 10.21875,-10.5625 z m 264.03125,8.625 10.5625,10.2187 -10.21875,10.5938 -10.5625,-10.2188 10.21875,-10.5937 z m -138.53125,0.5 12.53125,12.0937 -12.125,12.5626 -12.53125,-12.125 12.125,-12.5313 z m 112.09375,0 10.5625,10.1875 -10.21875,10.5625 -10.5625,-10.1875 10.21875,-10.5625 z m -26.4375,0.4375 10.59375,10.2188 -10.21875,10.5937 -10.59375,-10.2187 10.21875,-10.5938 z m -142.6875,0.2812 12.8125,12.375 -12.375,12.8126 -12.84375,-12.375 12.40625,-12.8126 z m 85.40625,0.7188 10.59375,10.1875 -10.25,10.5937 -10.5625,-10.1874 10.21875,-10.5938 z m -56.71875,0.9688 10.5625,10.2187 -10.21875,10.5937 -10.59375,-10.2187 10.25,-10.5937 z m -57.28125,1 10.5625,10.2187 -10.21875,10.5625 -10.5625,-10.1875 10.21875,-10.5937 z m -26.4375,0.4687 10.5625,10.1875 -10.21875,10.5938 -10.5625,-10.2188 10.21875,-10.5625 z m -26.4375,0.4375 10.59375,10.2188 -10.21875,10.5937 -10.59375,-10.2187 10.21875,-10.5938 z m 264.03125,8.6562 10.5625,10.2188 -10.1875,10.5625 -10.59375,-10.2187 10.21875,-10.5626 z m -26.40625,0.4688 10.5625,10.1875 -10.25,10.5937 -10.53125,-10.2187 10.21875,-10.5625 z m -26.4375,0.4375 10.5625,10.2187 -12.375,12.8126 -10.59375,-10.1876 12.40625,-12.8437 z m -30.84375,0.5313 12.8125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.21875,-10.5937 z m -26.4375,0.4687 10.5625,10.2187 -12.125,12.5313 -10.5625,-10.2187 12.125,-12.5313 z m -30.28125,0.5313 12.5,12.0937 -10.21875,10.5937 -12.53125,-12.0937 10.25,-10.5937 z m -26.46875,0.4374 10.59375,10.25 -12.40625,12.8126 -10.59375,-10.2188 12.40625,-12.8438 z m -30.84375,0.5626 12.8125,12.375 -10.21875,10.5624 -12.8125,-12.375 10.21875,-10.5624 z m -26.4375,0.4374 10.5625,10.2188 -10.21875,10.5625 -10.5625,-10.1875 10.21875,-10.5938 z m -26.40625,0.4688 10.5625,10.1875 -10.21875,10.5937 -10.5625,-10.1874 10.21875,-10.5938 z m 237.59375,9.0938 10.5625,10.2187 -10.21875,10.5937 -10.5625,-10.2187 10.21875,-10.5937 z m -26.4375,0.4687 10.5625,10.1875 -12.375,12.8438 -10.5625,-10.2188 12.375,-12.8125 z m -57.28125,1 12.8125,12.375 -12.125,12.5313 -12.8125,-12.375 12.125,-12.5313 z m -56.71875,0.9687 12.53125,12.125 -12.40625,12.8126 -12.53125,-12.0938 12.40625,-12.8438 z m 85.40625,0.7188 10.5625,10.2188 -10.21875,10.5937 -10.59375,-10.2187 10.25,-10.5938 z m -142.71875,0.2812 12.84375,12.375 -10.21875,10.5626 -12.8125,-12.375 10.1875,-10.5626 z m -26.40625,0.4376 10.5625,10.2187 -10.21875,10.5937 -10.5625,-10.2187 10.21875,-10.5937 z m 112.09375,0 10.59375,10.2187 -10.25,10.5937 -10.5625,-10.2187 10.21875,-10.5937 z m -57,1.25 10.59375,10.25 -10.21875,10.5624 -10.59375,-10.2187 10.21875,-10.5937 z m 182.5,7.875 12.8125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.21875,-10.5937 z m -26.4375,0.4374 10.5625,10.2188 -12.375,12.8125 -10.5625,-10.1875 12.375,-12.8438 z m -28.59375,2.7188 10.5625,10.1875 -10.21875,10.5937 -10.5625,-10.1874 10.21875,-10.5938 z m -26.4375,0.4688 10.5625,10.2187 -12.09375,12.5313 -10.59375,-10.2188 12.125,-12.5312 z m -142.6875,0.25 12.8125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.21875,-10.5937 z m 112.125,0 12.8125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.21875,-10.5937 z m -138.5625,0.4687 10.5625,10.1875 -12.375,12.8438 -10.5625,-10.2188 12.375,-12.8125 z m 112.125,0 10.5625,10.1875 -12.40625,12.8438 -10.5625,-10.2188 12.40625,-12.8125 z m -30.5625,0.7813 12.53125,12.125 -10.25,10.5624 -12.5,-12.0937 10.21875,-10.5937 z m -26.46875,0.4687 10.59375,10.2187 -10.21875,10.5626 L -503,1408.75 l 10.1875,-10.5625 z m 182.53125,7.8437 12.8125,12.375 -12.40625,12.8438 -12.8125,-12.375 12.40625,-12.8438 z m -28.625,2.6876 10.5625,10.2187 -10.21875,10.5937 -10.5625,-10.2187 10.21875,-10.5937 z m -26.4375,0.5 10.5625,10.1874 -12.09375,12.5313 -10.5625,-10.1875 12.09375,-12.5312 z m -169.125,0.6874 12.8125,12.375 -12.375,12.8438 -12.8125,-12.375 12.375,-12.8438 z m 112.125,0 12.8125,12.375 -12.375,12.8438 -12.8125,-12.375 12.375,-12.8438 z m -57,1.2813 12.53125,12.0937 -10.21875,10.5626 -12.53125,-12.0938 10.21875,-10.5625 z m -26.4375,0.4375 10.59375,10.2188 -10.25,10.5937 -10.5625,-10.2187 10.21875,-10.5938 z m 112.125,0 10.5625,10.1875 -10.21875,10.5937 -10.59375,-10.1874 10.25,-10.5938 z m -57.28125,1 10.5625,10.1875 -10.21875,10.5937 -10.59375,-10.2187 10.25,-10.5625 z m 125.5,9.0938 12.8125,12.375 -10.25,10.5937 -12.8125,-12.375 10.25,-10.5937 z m -26.46875,0.4687 10.59375,10.1875 -12.125,12.5625 -10.5625,-10.2187 12.09375,-12.5313 z m -28.3125,2.4063 10.5625,10.2187 -10.21875,10.5937 -10.5625,-10.2187 10.21875,-10.5937 z m -112.09375,0.031 12.53125,12.0938 -10.25,10.5937 -12.53125,-12.0937 10.25,-10.5938 z m -26.46875,0.4375 10.59375,10.2187 -12.40625,12.8438 -10.5625,-10.2188 12.375,-12.8437 z m 112.125,0 10.5625,10.2187 -12.375,12.8126 -10.59375,-10.1876 12.40625,-12.8437 z m -30.84375,0.5313 12.8125,12.375 -10.21875,10.5937 -12.8125,-12.375 10.21875,-10.5937 z m -26.4375,0.4687 10.5625,10.1875 -10.21875,10.5938 -10.5625,-10.2188 10.21875,-10.5625 z m 125.5,9.125 12.8125,12.375 -12.125,12.5313 -12.8125,-12.375 12.125,-12.5313 z m -28.34375,2.4063 10.5625,10.1874 -10.21875,10.5938 -10.5625,-10.1875 10.21875,-10.5937 z m -138.53125,0.4687 12.53125,12.0937 -12.40625,12.8438 -12.53125,-12.0938 12.40625,-12.8437 z m 112.09375,0 10.5625,10.1875 -12.375,12.8438 -10.5625,-10.2188 12.375,-12.8125 z m -57.25,1 12.78125,12.375 -10.1875,10.5625 -12.8125,-12.375 10.21875,-10.5625 z m -26.4375,0.4375 10.5625,10.1875 -10.25,10.5937 -10.5625,-10.1874 10.25,-10.5938 z m 55.09375,1.25 10.59375,10.2188 -10.25,10.5937 -10.5625,-10.2187 10.21875,-10.5938 z m 68.5,9.8438 12.8125,12.375 -10.25,10.5624 -12.8125,-12.3437 10.25,-10.5937 z m -26.46875,0.4374 10.59375,10.2188 -12.40625,12.8125 -10.5625,-10.1875 12.375,-12.8438 z m -83.6875,1.4688 12.8125,12.375 -10.21875,10.5938 -12.8125,-12.375 10.21875,-10.5938 z m -26.4375,0.4375 10.5625,10.2187 -12.40625,12.8126 -10.5625,-10.1876 12.40625,-12.8437 z m 81.5625,0.8125 10.53125,10.1875 -10.21875,10.5937 -10.5625,-10.1874 10.25,-10.5938 z m -26.46875,0.4375 10.59375,10.2187 L -434.4375,1475 -445,1464.7812 l 10.1875,-10.5937 z m 68.5,9.8437 12.8125,12.375 -12.40625,12.8126 -12.78125,-12.375 12.375,-12.8126 z m -110.15625,1.9063 12.8125,12.375 -12.375,12.8125 -12.8125,-12.3438 12.375,-12.8437 z m 81.5625,0.7813 10.5625,10.2187 -10.25,10.5937 -10.5625,-10.2187 10.25,-10.5937 z m -26.4375,0.4687 10.5625,10.2187 -10.21875,10.5626 -10.5625,-10.1876 10.21875,-10.5937 z m -26.4375,0.4375 10.59375,10.2188 -10.25,10.5937 -10.5625,-10.2187 10.21875,-10.5938 z"
+           id="path4623" />
+        <path
+           inkscape:connector-curvature="0"
+           style="fill:url(#linearGradient4972);stroke:none"
+           d="m -955.96875,1330.375 13.25,11.5312 357.09375,0 0,-11.5312 -370.34375,0 z"
+           id="rect4610" />
+      </g>
+    </g>
+    <flowRoot
+       xml:space="preserve"
+       id="flowRoot3206"
+       style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
+       transform="matrix(0.86295272,0,0,0.86295272,-100.21235,-3.0790965)"><flowRegion
+         id="flowRegion3208"><rect
+           id="rect3210"
+           width="869.17358"
+           height="408.2482"
+           x="-52.677185"
+           y="436.08582" /></flowRegion><flowPara
+         id="flowPara3212"></flowPara></flowRoot>    <text
+       xml:space="preserve"
+       style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
+       x="-1125.3477"
+       y="951.70135"
+       id="text3260"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan3262"
+         x="-1125.3477"
+         y="951.70135"
+         style="font-size:108px;font-style:italic;font-weight:bold;-inkscape-font-specification:Sans Bold Italic">OpenConnect</tspan></text>
+  </g>
+</svg>
diff --git a/www/images/right.png b/www/images/right.png
new file mode 100644 (file)
index 0000000..113a6c2
Binary files /dev/null and b/www/images/right.png differ
diff --git a/www/images/right2.png b/www/images/right2.png
new file mode 100644 (file)
index 0000000..374309e
Binary files /dev/null and b/www/images/right2.png differ
diff --git a/www/images/rightsel.png b/www/images/rightsel.png
new file mode 100644 (file)
index 0000000..f947f85
Binary files /dev/null and b/www/images/rightsel.png differ
diff --git a/www/images/rightsel2.png b/www/images/rightsel2.png
new file mode 100644 (file)
index 0000000..50b595e
Binary files /dev/null and b/www/images/rightsel2.png differ
diff --git a/www/inc/content.tmpl b/www/inc/content.tmpl
new file mode 100644 (file)
index 0000000..6c4fcac
--- /dev/null
@@ -0,0 +1,3 @@
+     <div id="textbox">
+       <div id="text">
+       </div>
diff --git a/www/inc/footer.tmpl b/www/inc/footer.tmpl
new file mode 100644 (file)
index 0000000..9ba350f
--- /dev/null
@@ -0,0 +1,18 @@
+      </div>
+   </div>
+   <div align="right">
+       <p>
+       VAR_CVSID
+       <a href="http://validator.w3.org/check?uri=referer">
+               <img src="http://www.w3.org/Icons/valid-xhtml10"
+                alt="Valid XHTML 1.0!" height="31" width="88" />
+       </a>
+       <a href="http://jigsaw.w3.org/css-validator/">
+               <img style="border:0;width:88px;height:31px"
+                src="http://jigsaw.w3.org/css-validator/images/vcss" 
+                alt="Valid CSS!" />
+       </a>
+       </p>
+    </div>
+  </body>
+</html>
diff --git a/www/inc/header.tmpl b/www/inc/header.tmpl
new file mode 100644 (file)
index 0000000..c7d58cb
--- /dev/null
@@ -0,0 +1,18 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <title>OpenConnect VPN client.</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <meta name="description" content="VPN client compatible with Cisco AnyConnect SSL VPN" />
+    <meta name="keywords" content="OpenConnect, AnyConnect, Cisco, VPN, SSLVPN, SSL VPN" />
+    <link href="VAR_ORIGINstyles/main.css" rel="styleSheet" type="text/css" />
+    <link href='http://fonts.googleapis.com/css?family=Delius' rel='stylesheet' type='text/css' />
+ </head>
+<body>
+   <div id="logo" align="right">       
+     <img src="VAR_ORIGINimages/openconnect.svg" height="96px" alt="OpenConnect" />
+   </div>
+   <div id="main">
+
diff --git a/www/index.xml b/www/index.xml
new file mode 100644 (file)
index 0000000..3dd485d
--- /dev/null
@@ -0,0 +1,43 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_INDEX" replace="selected" />
+       <VAR match="VAR_SEL_ABOUT" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2.xml" />
+
+       <INCLUDE file="inc/content.tmpl" />
+
+<h1>OpenConnect</h1>
+<p>OpenConnect is a client for Cisco's <a href="http://www.cisco.com/en/US/netsol/ns1049/index.html">AnyConnect SSL VPN</a>, which is supported by the ASA5500 Series, by IOS 12.4(9)T or later on Cisco SR500, 870, 880, 1800, 2800, 3800, 7200 Series and Cisco 7301 Routers, and probably others.</p>
+
+<p>OpenConnect is released under the GNU Lesser Public License, version 2.1.</p>
+
+<p>Like <a href="http://www.unix-ag.uni-kl.de/~massar/vpnc/">vpnc</a>,
+OpenConnect is not officially supported by, or associated in any way
+with, Cisco Systems. It just happens to interoperate with their
+equipment.
+</p>
+<p>Development of OpenConnect was started after a trial of their "official"
+client under Linux found it to have many deficiencies:</p>
+<ul>
+  <li>Inability to use SSL certificates from a <a href="http://en.wikipedia.org/wiki/Trusted_Platform_Module">TPM</a>, or even use a passphrase.</li>
+  <li>Lack of support for Linux platforms other than i386.</li>
+  <li>Lack of integration with NetworkManager on the Linux desktop.</li>
+  <li>Lack of proper (RPM/DEB) packaging for Linux distributions.</li>
+  <li>"Stealth" use of libraries with <tt>dlopen()</tt>, even using
+      the development-only symlinks such as <tt>libz.so</tt> &#8212;
+      making it hard to properly discover the dependencies which
+      proper packaging would have expressed</li>
+  <li>Tempfile races allowing unprivileged users to trick it into overwriting arbitrary files, as root.</li>
+  <li>Unable to run as an unprivileged user, which would have reduced the severity of the above bug.</li>
+  <li>Inability to audit the source code for further such "Security 101" bugs.</li>
+</ul>
+
+<p>Naturally, OpenConnect addresses all of the above issues, and more.
+</p>
+
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/mail.xml b/www/mail.xml
new file mode 100644 (file)
index 0000000..24e8260
--- /dev/null
@@ -0,0 +1,43 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_MAIL" replace="selected" />
+       <PARSE file="menu1.xml" />
+       
+       <INCLUDE file="inc/content.tmpl" />
+
+       <h1>Mailing lists</h1>
+
+       <p>There is a mailing list at <tt><a href="mailto:openconnect-devel@lists.infradead.org">
+       openconnect-devel@lists.infradead.org</a></tt>.</p>
+
+       <p>Please read the recent messages in the <a
+       href="http://lists.infradead.org/pipermail/openconnect-devel/">archive</a> before
+       posting a question that is likely to have been asked before.</p>
+
+       <p>You do <em>not</em> have to be subscribed to the list in order to post a question. If you have
+       questions or problems, <em>PLEASE</em> post them to the mailing list rather than putting
+       them on some random web forum where they are unlikely to get a quick or knowledgeable response.</p>
+
+       <p>If you do want to subscribe to the mailing list, you can do so from the <a
+       href="http://lists.infradead.org/mailman/listinfo/openconnect-devel">Mailman admin page</a>.</p>
+
+       <p>Please note that the mailing list, like many technical mailing lists, does not accept
+       HTML messages. You should post as plain text only. Other tips on 'netiquette' can be found
+       on <a href="http://david.woodhou.se/email.html">this page</a>.</p>
+
+
+
+       Before posting to the list, read this:
+       <p>
+         <b>SECURITY WARNING:</b><br/>
+         If you are posting debugging output from openconnect to the mailing list, do <em>not</em> include a line which looks like this:
+         <br/><tt>Set-Cookie: webvpn=835278264@921600@1221512527@6B9EC24DEB2F59E242F75B424D42F223D0912984;PATH=/</tt><br/>
+         That HTTP cookie is all that's needed to grant access to the VPN session you just logged in to &#8212;
+         it's almost as bad as giving your password away. Version 2.26 or later of OpenConnect will 
+         automatically filter this out of the debugging output for you.
+       </p>
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/manual.xml b/www/manual.xml
new file mode 100644 (file)
index 0000000..bbfee24
--- /dev/null
@@ -0,0 +1,19 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_STARTED" replace="selected" />
+       <VAR match="VAR_SEL_CONNECTING" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2-started.xml" />
+       
+       <INCLUDE file="inc/content.tmpl" />
+
+       <INCLUDE file="openconnect.8.inc" />
+
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
+
+
+
diff --git a/www/menu1.xml b/www/menu1.xml
new file mode 100644 (file)
index 0000000..189a9ef
--- /dev/null
@@ -0,0 +1,11 @@
+<PAGE>
+       <STARTMENU level="1"/>
+       <MENU topic="Home" link="VAR_ORIGINindex.html" mode="VAR_SEL_INDEX" />
+       <MENU topic="Features" link="VAR_ORIGINfeatures.html" mode="VAR_SEL_FEATURES" />
+       <MENU topic="Getting Started" link="VAR_ORIGINbuilding.html" mode="VAR_SEL_STARTED" />
+       <MENU topic="Mailing List / Help" link="VAR_ORIGINmail.html" mode="VAR_SEL_MAIL" />
+       <MENU topic="Contribute" link="VAR_ORIGINcontribute.html" mode="VAR_SEL_CONTRIBUTE" />
+       <MENU topic="Technical stuff" link="VAR_ORIGINtechnical.html" mode="VAR_SEL_TECHNICAL" />
+       <MENU topic="OpenConnect VPN client" link="" mode="text" />
+       <ENDMENU />
+</PAGE>
diff --git a/www/menu2-features.xml b/www/menu2-features.xml
new file mode 100644 (file)
index 0000000..2043af6
--- /dev/null
@@ -0,0 +1,8 @@
+<PAGE>
+       <STARTMENU level="2"/>
+        <MENU topic="Feature list" link="features.html" mode="VAR_SEL_FEATURE_MAIN" />
+       <MENU topic="Running as non-root user" link="VAR_ORIGINnonroot.html" mode="VAR_SEL_FEATURE_NONROOT" />
+       <MENU topic="Cisco Secure Desktop" link="VAR_ORIGINcsd.html" mode="VAR_SEL_FEATURE_CSD" />
+       <MENU topic="GUI" link="VAR_ORIGINgui.html" mode="VAR_SEL_FEATURE_GUI" />
+       <ENDMENU />
+</PAGE>
diff --git a/www/menu2-started.xml b/www/menu2-started.xml
new file mode 100644 (file)
index 0000000..ced9842
--- /dev/null
@@ -0,0 +1,7 @@
+<PAGE>
+       <STARTMENU level="2"/>
+        <MENU topic="1. Building" link="VAR_ORIGINbuilding.html" mode="VAR_SEL_BUILDING" />
+        <MENU topic="2. vpnc-script" link="VAR_ORIGINvpnc-script.html" mode="VAR_SEL_VPNCSCRIPT" />
+       <MENU topic="3. Connecting" link="VAR_ORIGINconnecting.html" mode="VAR_SEL_CONNECTING" />
+       <ENDMENU />
+</PAGE>
diff --git a/www/menu2.xml b/www/menu2.xml
new file mode 100644 (file)
index 0000000..31eaa1c
--- /dev/null
@@ -0,0 +1,9 @@
+<PAGE>
+       <STARTMENU level="2"/>
+        <MENU topic="About" link="index.html" mode="VAR_SEL_ABOUT" />
+        <MENU topic="Supported Platforms" link="platforms.html" mode="VAR_SEL_PLATFORMS" />
+        <MENU topic="Download" link="download.html" mode="VAR_SEL_DOWNLOAD" />
+        <MENU topic="Packages" link="packages.html" mode="VAR_SEL_PACKAGES" />
+       <MENU topic="Changelog" link="changelog.html" mode="VAR_SEL_CHANGELOG" />
+       <ENDMENU />
+</PAGE>
diff --git a/www/nonroot.xml b/www/nonroot.xml
new file mode 100644 (file)
index 0000000..d26ac98
--- /dev/null
@@ -0,0 +1,30 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_FEATURES" replace="selected" />
+       <VAR match="VAR_SEL_FEATURE_NONROOT" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2-features.xml" />
+
+       <INCLUDE file="inc/content.tmpl" />
+
+<h1>Running as non-root user</h1>
+
+<p>There are two ways that OpenConnect can run without root
+privileges. The first is that it can use a tun device which is created
+and configured in advance by the root user, and set to be owned by the
+user who runs OpenConnect. NetworkManager uses OpenConnect in this mode.</p>
+
+<p>The second is that it can avoid using the tun device altogether and
+instead spawn a user-supplied program, passing all data traffic
+through a UNIX socket to that program.  This latter option can be used
+in conjunction with a userspace TCP stack such as <a
+href="http://savannah.nongnu.org/projects/lwip/">lwip</a> to provide
+SOCKS access to the VPN without giving full access to all untrusted
+users and processes on the computer, and without requiring root
+privileges at all.</p>
+
+<INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/packages.xml b/www/packages.xml
new file mode 100644 (file)
index 0000000..eab1f0c
--- /dev/null
@@ -0,0 +1,39 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_INDEX" replace="selected" />
+       <VAR match="VAR_SEL_PACKAGES" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2.xml" />
+
+       <INCLUDE file="inc/content.tmpl" />
+
+       <h1>Distribution Status</h1>
+
+<p>
+  <i>Updates to the information below are welcomed, especially for distributions (including *BSD etc.) which aren't yet mentioned.</i>
+
+<ul><li><h2>Fedora</h2>
+  Both <tt>openconnect</tt> and <tt>NetworkManager-openconnect</tt> packages are included in Fedora.
+  Fedora's OpenSSL packages include all required patches for DTLS compatibility.
+</li>
+<li><h2>Debian</h2>
+  The <tt>openconnect</tt> and <tt>network-manager-openconnect</tt> packages are available in unstable and testing.<br/>
+  Debian's OpenSSL packages include all required patches for DTLS compatibility in unstable and testing.
+</li>
+</ul>
+
+  <h3>Ubuntu</h3>
+  Reasonably current versions of the required packages are finally included in Ubuntu 10.04 "Lucid". Older releases still have <a href="https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/516318">out of date OpenSSL</a> and <a href="https://bugs.launchpad.net/ubuntu/+source/openconnect/+bug/516324">out of date OpenConnect which doesn't work around the latest Cisco bugs</a>.
+  <h3>Gentoo</h3>
+  <a href="http://bugs.gentoo.org/show_bug.cgi?id=263097">Gentoo bug #263097</a> has been filed, asking for <tt>openconnect</tt> to be packaged.
+  <h3>NetBSD, DragonFly BSD, etc. <i>(pkgsrc)</i></h3>
+  There are packages for <a href="http://pkgsrc-wip.cvs.sourceforge.net/viewvc/pkgsrc-wip/wip/vpnc-script/">vpnc-script</a> and <a href="http://pkgsrc-wip.cvs.sourceforge.net/viewvc/pkgsrc-wip/wip/openconnect/">openconnect</a> in the pkgsrc-wip repository <i>(<a href="http://pkgsrc-wip.sourceforge.net/">pkgsrc-wip.sf.net</a>)</i>.
+  <h3>FreeBSD</h3>
+  An <tt>openconnect</tt> <a href="http://www.freebsd.org/cgi/cvsweb.cgi/ports/security/openconnect/">port</a> is available for FreeBSD. FreeBSD does not yet ship a version of OpenSSL which supports Cisco's "speshul" version of DTLS.
+</p>
+
+<INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/platforms.xml b/www/platforms.xml
new file mode 100644 (file)
index 0000000..b4ff2c2
--- /dev/null
@@ -0,0 +1,48 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_INDEX" replace="selected" />
+       <VAR match="VAR_SEL_PLATFORMS" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2.xml" />
+
+       <INCLUDE file="inc/content.tmpl" />
+
+       <h1>Supported Platforms</h1>
+
+<p>OpenConnect is known to work on Linux (including Android), OpenBSD,
+FreeBSD, NetBSD, DragonFly BSD, OpenSolaris
+and Mac OS X platforms, and should be trivially portable to any other platform
+supporting <a href="http://en.wikipedia.org/wiki/TUN/TAP">TUN/TAP</a>
+devices and on which <a href="http://www.openssl.org/">OpenSSL</a> runs.
+IPv6 support is tested on Linux, FreeBSD and OpenSolaris.</p>
+
+<p>For Solaris support, and for IPv6 on any platform, the
+<tt>vpnc-script</tt> shipped with vpnc itself (as of v0.5.3)
+is not sufficient. It is necessary to use the script from my <a
+href="http://git.infradead.org/users/dwmw2/vpnc-scripts.git">vpnc-scripts</a>
+repository instead.</p>
+
+<p>
+It is known to work on at least i386, x86_64, PowerPC and MIPS
+processors, and should not have issues with portability to other CPUs.</p>
+<p>Note that 'Cisco Secure Desktop' support may require the ability to run Linux/i386 binaries; see the <a href="csd.html">CSD page</a>.</p>
+
+<h2>New Ports</h2>
+<p>
+Platform support for new UNIX systems is relatively simple to add
+&#8212; most of the difference is in the TUN/TAP device handling, and
+the major variants of that are already supported.</p>
+<p>
+A port to Windows should be fairly simple, since a TUN/TAP driver
+exists for Windows and Cygwin should make the basic port work OK.</p>
+<p>
+A port to Symbian, to provide VPN connectivity on phone handsets,
+would be very useful. Any volunteers?</p>
+
+
+<INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/started.xml b/www/started.xml
new file mode 100644 (file)
index 0000000..e239877
--- /dev/null
@@ -0,0 +1,35 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_STARTED" replace="selected" />
+       <VAR match="VAR_SEL_STARTED_CONNECTING" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2-started.xml" />
+       
+       <INCLUDE file="inc/content.tmpl" />
+
+       <h1>Getting Started</h1>
+
+       <p>As root, run the following command:<br/>
+      <tt>openconnect --script /etc/vpnc/vpnc-script https://vpn.mycompany.com/</tt>
+    </p>
+
+That should be it, if you have a password-based login. If you use
+certificates, you'll need to tell OpenConnect where to find the
+certificate with the <tt>-c</tt> option. You might need to steal the
+certificate from your Windows certificate store using a tool like <a
+href="https://www.isecpartners.com/jailbreak.html">Jailbreak</a>.
+<p>
+You can ignore anything you see in the compatibility page about needing to patch OpenSSL
+so that DTLS works &#8212; you don't really need it, although it will
+make your connections much faster if you're experiencing packet loss
+between you and the VPN server. But you can worry about that later.
+</p>
+
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
+
+
+
diff --git a/www/styles/main.css b/www/styles/main.css
new file mode 100644 (file)
index 0000000..61c2459
--- /dev/null
@@ -0,0 +1,150 @@
+body {
+    background: white;
+    font-family: 'Delius', Sans, Arial, Helvetica, Geneva, Swiss, SunSans-Regular;
+    font-size: 12px; 
+}
+
+#logo {
+       text-align: right;
+       margin: 0;
+}
+
+#main {
+       margin: 0;
+       border-left-style: double;
+       border-bottom-style: double;
+       border-color: #1414a6;
+       border-left-width: 5px; 
+       border-bottom-width: 5px;
+       min-width: 70em;
+}
+
+#menu1 {
+       margin: 0;
+       padding-left: 20px;
+       background: #1414a6;
+       height: 2.2em;
+}
+
+#menu1 p {
+       color: white;
+       font-size: 14px;
+       text-align: right;
+       vertical-align: middle;
+       padding-right: 10px;
+       padding-top: 0.2em;
+}
+
+#menu1 .nonsel a {
+    color: black;
+    float: left;
+    background: url(../images/left.png) top left no-repeat #b3b3b3;
+    margin-top: 0.2em;
+    margin-left: 5px;
+    padding-top: 0.2em;
+    height: 1.8em;
+    text-decoration: none;
+}
+
+#menu1 .nonsel a span {
+    background: url(../images/right.png) top right no-repeat transparent;
+    padding: 0.2em 1em 0 1em;
+}
+
+#menu1 .nonsel a:hover {
+    background: url(../images/leftsel.png) top left no-repeat #e6e6e6;
+}
+
+#menu1 .nonsel a:hover span {
+    color: Black;    
+    text-decoration: underline; 
+    background: url(../images/rightsel.png) top right no-repeat transparent;    
+}
+
+#menu1 .sel a {
+    color: black;
+    float: left;
+    padding-top: 0.2em;
+    background: url(../images/leftsel.png) top left no-repeat #e6e6e6;
+    margin-top: 0.2em;
+    margin-left: 5px;    
+    height: 2em;
+    text-decoration: none;
+}
+
+#menu1 .sel a span {
+    background: url(../images/rightsel.png) top right no-repeat transparent;
+    padding: 0.2em 1em 0 1em;
+}
+
+#menu2 {
+    background: #e6e6e6;
+    height: 2.3em;
+    border-bottom-style: solid;
+    border-color: #1414a6;
+    border-bottom-width: 1px;  
+}
+
+#menu2 .nonsel a {
+    color: black;
+    float: left;
+    background: url(../images/left2.png) top left no-repeat #b3b3b3;
+    margin-top: 0.2em;
+    margin-left: 5px;
+    padding-top: 0.2em;
+    height: 1.8em;
+    text-decoration: none;
+}
+
+#menu2 .nonsel a span {
+    background: url(../images/right2.png) top right no-repeat transparent;
+    padding: 0.2em 1em 0 1em;
+}
+
+#menu2 .nonsel a:hover {
+    background: url(../images/leftsel2.png) top left no-repeat #e6e6e6;
+}
+
+#menu2 .nonsel a:hover span {
+    color: Black;    
+    text-decoration: underline; 
+    background: url(../images/rightsel2.png) top right no-repeat transparent;    
+}
+
+#menu2 .sel a {
+    color: black;
+    float: left;
+    padding: 0.2em 1em 0 1em;
+    margin-top: 0.2em;
+    margin-left: 0px;    
+    height: 2em;
+    text-decoration: none;
+}
+
+#textbox {
+    margin-left: 20px;
+    margin-bottom: 20px;
+    margin-right: 20px;
+    margin-top: 20px;
+    padding-top: 20px; 
+    padding-left: 20px;
+    padding-right: 120px;      
+    padding-bottom: 20px;      
+    font-size: 14px; 
+}
+
+#text {
+    margin: 0;
+    border-color: #e6e6e6;
+    font-size: 14px; 
+    background: #ffffff;
+}
+
+#text a {
+       color: blue;
+       text-decoration: none;
+}
+
+#text a:hover {
+       text-decoration: underline;
+}
diff --git a/www/technical.xml b/www/technical.xml
new file mode 100644 (file)
index 0000000..be9b894
--- /dev/null
@@ -0,0 +1,56 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_TECHNICAL" replace="selected" />
+       <PARSE file="menu1.xml" />
+       
+       <INCLUDE file="inc/content.tmpl" />
+
+<h2>How the VPN works</h2>
+
+<p>The VPN is extremely simple, based almost entirely on the standard
+HTTPS and <a href="http://www.rfc-editor.org/rfc/rfc4347.txt">DTLS</a>
+protocols. You connect to the secure web server, authenticate using
+certificates and/or arbitrary web forms, and you are rewarded with a
+standard HTTP cookie.</p>
+
+<p>You then use this cookie in an HTTP <tt>CONNECT</tt> request, and can
+then pass traffic over that connection. IP addresses and routing
+information are passed back and forth in the headers of that
+<tt>CONNECT</tt> request.</p>
+
+<p>Since <a href="http://sites.inka.de/~W1011/devel/tcp-tcp.html">TCP
+over TCP is very suboptimal</a>, the VPN also attempts to use UDP
+datagrams, and will only <em>actually</em> pass traffic over the HTTPS
+connection if that fails. The UDP connectivity is done using Datagram
+TLS, which is supported by OpenSSL.</p>
+
+<h2>OpenSSL/DTLS compatibility</h2>
+
+<p><i><b>Note: DTLS is optional and not required for basic connectivity, as explained above.</b></i></p>
+
+<p>Unfortunately, Cisco used an old version of OpenSSL for their server,
+which predates the official RFC and has a few differences in the
+implementation of DTLS.
+</p>
+<p>Compatibility support for their "speshul" version of the protocol is
+in the 0.9.8m and later releases of OpenSSL (and 1.0.0-beta2 and later).
+</p>
+
+<p>If you are using an older version of OpenSSL, DTLS will
+only work if you apply this patch from OpenSSL CVS:</p>
+<ul>
+  <li><a href="http://cvs.openssl.org/chngview?cn=18037">http://cvs.openssl.org/chngview?cn=18037</a> (OpenSSL <a href="http://rt.openssl.org/Ticket/Display.html?id=1751&amp;amp;user=guest&amp;amp;pass=guest">RT#1751</a>)</li>
+</ul>
+
+For versions older than 0.9.8j, some generic DTLS bug fixes are also required:
+<ul>
+  <li><a href="http://cvs.openssl.org/chngview?cn=17500">http://cvs.openssl.org/chngview?cn=17500</a>  (OpenSSL <a href="http://rt.openssl.org/Ticket/Display.html?id=1703&amp;amp;user=guest&amp;amp;pass=guest">RT#1703</a>)</li>
+  <li><a href="http://cvs.openssl.org/chngview?cn=17505">http://cvs.openssl.org/chngview?cn=17505</a> (OpenSSL <a href="http://rt.openssl.org/Ticket/Display.html?id=1752&amp;amp;user=guest&amp;amp;pass=guest">RT#1752</a>) </li>
+</ul>
+The username/password for OpenSSL RT is 'guest/guest'
+
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
diff --git a/www/vpnc-script.xml b/www/vpnc-script.xml
new file mode 100644 (file)
index 0000000..972f9fd
--- /dev/null
@@ -0,0 +1,32 @@
+<PAGE>
+       <VAR match="VAR_ORIGIN" replace="" />
+       <VAR match="VAR_CVSID" replace=""/>
+       <INCLUDE file="inc/header.tmpl" />
+
+       <VAR match="VAR_SEL_STARTED" replace="selected" />
+       <VAR match="VAR_SEL_VPNCSCRIPT" replace="selected" />
+       <PARSE file="menu1.xml" />
+       <PARSE file="menu2-started.xml" />
+       
+       <INCLUDE file="inc/content.tmpl" />
+
+<h1>Install a <tt>vpnc-script</tt>.</h1>
+
+<p>This script is what sets up all the addresses and routes for you; it's the
+same as <tt>vpnc</tt>'s, and if you have the <tt>vpnc</tt> package installed
+then you may already have a <tt>vpnc-script</tt> installed with it, perhaps in
+a directory like <tt>/etc/vpnc/vpnc-script</tt>.</p>
+
+<p>If you don't already have it, you can get a current version from <a
+href="http://git.infradead.org/users/dwmw2/vpnc-scripts.git/blob_plain/HEAD:/vpnc-script">here</a>.
+Even if you already have a copy from vpnc, you may wish to install this updated
+version which has support for IPv6, and for running on Solaris and on newer Linux
+kernels amongst other bug fixes.</p>
+
+<p>Note that the script needs to be executable, and stored somewhere
+where SELinux or similar security systems won't prevent the root user
+from accessing it.</p>
+
+       <INCLUDE file="inc/footer.tmpl" />
+</PAGE>
+