Clean out files
diff --git a/IMPROVEMENT_PLAN.md b/IMPROVEMENT_PLAN.md
deleted file mode 100644
index 0bf0f39..0000000
--- a/IMPROVEMENT_PLAN.md
+++ /dev/null
@@ -1,444 +0,0 @@
-
-# TL/DR
-
-1. More Whimsy UX to manage the Podling Lifecycle
-2. Consolidate podling status data
-3. [`podlings.xml`][0] is still master
-4. Add status checklists and Incubation watchlist to the new Cookbook
-5. Whimsy podling status page will include clutch analysis
-6. We need to decide how to do reporting since MOIN wikis are going away.
-   No recommendation is provided.
-
-# Podling Status Process
-
-Here is an analysis of the many ways podling status is tracked by the Incubator.
-Currently there are five components to podling status.
-
-1. Podlings XML is directory listing ever podling and its status: current, graduated or retired.
-2. Podling Status Page is an XML/HTML file that has information about the podling's resource
-   requirements and various checklists for the incubation process.
-3. Podling YML file which was started a few years ago as a data based approach to key resource
-   and incubation process completions.
-4. The monthly / reporting process. This process a manual process involving the
-   MOIN Wiki and a python program for creating the report template. This will need to be changed soon
-   because the MOIN Wiki is being retired.
-5. Clutch analysis. This process takes the information from the Podlings XML and Status Pages and
-   then looks for and confirms the Website, Issue Tracker, Wiki, Code Repositories, and Release
-   Distributions. 
-   
-What follows is a description of each of these processes. This will be followed by some
-ideas about how we should proceed.
-
-## Podlings xml
-
-The podling catalog is in this file: [`podling.xml`][0]
-
-Values are stored for all Incubator podlings in a single xml file each in a `podling` node.
-Not all of the data pertain to current podlings.
-- Podling name. This is set when the podling is created. It can be changed later but that
-  can be expensive if the resources also need to be renamed.
-- Status - This is one of these three values: "current", "graduated" or "retired". Podlings
-  in the Incubator are current. When the podling exits it either "graduates" or "retires"
-- Resource - This is the name used for resources. It is initialized to lower case of Podling name w/o spaces.
-  Once the podling's resources are created it is very expensive to change these.
-- ResourceAliases - If the podling's resource and name is changed the older resource names are stored in 
-  this field. Some older podlings had multiple names or short names for resources.
-- Sponsor - Most often this is the "incubator", but it may also be any Apache PMC if there are directly
-  sponsoring a project in the incubator.
-- Start date - This is the date that the podling starts incubation. It can be the date the podling entry is created
-  or the date that the incubation vote passed.
-- End date - This is the date the podling leaves the incubator. It is either the date that 
-  the Board votes to accept the graduation proposal, the date another PMC chooses to accept the podling
-  as part of their PMC, or the date the podling retires.
-- Description - a short description of the podling.
-- Champion - the champion for the project.
-- Mentors - a list of the podling's mentors with their Apache IDs. This is now maintained from
-  Whimsy. [Whimsy roster page][1]
-- Reporting group - which months is a current podling reporting to the IPMC. A new podling will be monthly.
-- Resolution - when the podlings leaves the Incubator it either graduates or retires. These fields
-  describe what happened, 
-  - tlp attribute - If "true" the podling became a TLP 
-  - link attribute - If a name change was involved to the new TLP, the podling graduates into an existing PMC,
-    or retires with a new location then this is the text on a link.
-  - url attribute - If there is a link then this is the url.
-  - description - an optional description about retirement or graduation
-
-A current podling:
-```
-    <podling name="Crail" status="current" resource="crail" sponsor="Incubator" startdate="2017-11-01">
-        <description>Crail is a storage platform for sharing performance critical data in distributed data processing jobs at very high speed.</description>
-        <reporting group="3"/>
-        <champion availid="lresende">Luciano Resende</champion>
-        <mentors>
-            <mentor username="jhyde">Julian Hyde</mentor>
-            <mentor username="lresende">Luciano Resende</mentor>
-        </mentors>
-    </podling>
-```
-
-A brand new podling:
-```
-    <podling name="DataSketches" status="current" resource="datasketches" sponsor="Incubator" startdate="2019-03-30">
-        <description>DataSketches is an open source, high-performance library of stochastic streaming algorithms commonly called "sketches" in the data sciences. Sketches are small, stateful programs that process massive data as a stream and can provide approximate answers, with mathematical guarantees, to computationally difficult queries orders-of-magnitude faster than traditional, exact methods.</description>
-        <reporting group="2" monthly="true">May, June, July</reporting>
-        <champion availid="jbonofre">Jean-Baptiste Onofré</champion>
-        <mentors>
-            <mentor username="chenliang613">Liang Chen</mentor>
-            <mentor username="kenn">Kenneth Knowles</mentor>
-            <mentor username="kamaci">Furkan Kamaci</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling graduated to a TLP:
-```
-    <podling name="CXF" status="graduated" resource="cxf" sponsor="Incubator" startdate="2006-08-15" enddate="2008-04-16">
-        <description>The CXF project will create a SOA services framework by merges the ObjectWeb Celtix project and the Codehaus XFire project.</description>
-        <resolution tlp="true"/>
-        <mentors>
-            <mentor username="jim">Jim Jagielski</mentor>
-            <mentor username="jstrachan">James Strachan</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling sponsored by a PMC that graduated into the PMC:
-```
-    <podling name="Derby" status="graduated" resource="derby" sponsor="DB" startdate="2004-08-15" enddate="2005-07-18">
-        <description>Java relational database</description>
-        <resolution link="DB Derby" url="http://db.apache.org/derby/"/>
-        <mentors>
-            <mentor username="coar">Ken Coar</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling that graduated with a name change:
-```
-    <podling name="OpenOffice.org" status="graduated" resource="openofficeorg" resourceAliases="ooo" sponsor="Incubator" startdate="2011-06-13" enddate="2012-10-17">
-        <description>OpenOffice.org is comprised of six personal productivity applications: a word processor (and its web-authoring component), spreadsheet, presentation graphics, drawing, equation editor, and database.</description>
-        <resolution link="OpenOffice" url="https://openoffice.apache.org/"/>
-        <mentors>
-            <mentor username="jim">Jim Jagielski</mentor>
-            <mentor username="rubys">Sam Ruby</mentor>
-            <mentor username="danese">Danese Cooper</mentor>
-            <mentor username="curcuru">Shane Curcuru</mentor>
-            <mentor username="noirin">Noirin Plunkett</mentor>
-            <mentor username="joes">Joe Schaefer</mentor>
-            <mentor username="grobmeier">Christian Grobmeier</mentor>
-            <mentor username="rgardler">Ross Gardler</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling that retired:
-```
-    <podling name="Provisionr" status="retired" resource="provisionr" sponsor="Incubator" startdate="2013-03-07" enddate="2013-11-22">
-        <description>Provisionr provides a service to manage pools of virtual machines on multiple clouds.</description>
-        <resolution>Failed to grow a community. Retired at request of PPMC.</resolution>
-        <champion availid="tomwhite">Tom White</champion>
-        <mentors>
-            <mentor username="rvs">Roman Shaposhnik</mentor>
-            <mentor username="tomwhite">Tom White</mentor>
-            <mentor username="mnour">Mohammad Nour El-Din</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling that retired and moved development elsewhere:
-```
-    <podling name="Heraldry" status="retired" resource="heraldry" sponsor="Incubator" startdate="2005-07-14" enddate="2007-06-09">
-        <description>Identity for the rest of us.</description>
-        <resolution link="OpenID.net" url="http://openid.net/">Project retired. Some activity moved to OpenID.net</resolution>
-        <mentors>
-            <mentor username="ben">Ben Laurie</mentor>
-            <mentor username="pquerna">Paul Querna</mentor>
-            <mentor username="twl">Ted Leung</mentor>
-            <mentor username="farra">J. Aaron Farr</mentor>
-            <mentor username="wrowe">William Rowe</mentor>
-        </mentors>
-    </podling>
-```
-
-### Current format for Podling Status Files
-
-More information is found on the project status page in xml wrapped html.
-For the most part this is descriptive text which has data embedded tagged with id attributes.
-There are also very descriptive check lists.
-
-Here is [the template for new podling status pages][2]. You can see that it is a tedious
-process to copy this to add a new file for each podling.
-
-This data is available and in some cases is extracted from these files by processes
-including the Clutch Analysis.
-- Description - an HTML div which minimally repeats the podling description, but may include
-  additional information about the podling's original location and resources.
-- News - an HTML div with a list of dated events in the history of the podling.
-- Project Info - an HTML table with a description and links to podling resources requested
-  from infrastructure.
-  - www - Website url of the podling. It should be the website within Apache, but sometimes
-    is the legacy.
-  - wiki - A url to the wiki. Sometimes this is blank if a Github wiki is being used.
-    Not all podlings use wikis.
-  - mail-dev - The mailing list in various forms.
-  - mail-commits - The commits mailing list in various forms.
-  - mail-private - The private mailing list in various forms.
-  - tracker - a url to the issue tracker. Sometimes this is blank if Github issues are used.
-  - mentors - a set of rows which duplicate podlings.xml and are only hand maintained.
-    Lately this is often shortened to point to the [Whimsy roster page][1]
-  - committers - a set of rows which are hand maintained.
-    Lately this is often shortened to point to the [Whimsy roster page][1]
-- Status reports. A list of board reports often pointing to the while incubator report.
-  This is also now easily available from the [Whimsy roster page][1]
-- Work Items
-  - Project setup. (very outdated instructions)
-  - Infrastructure. (outdated instructions)
-  - Mentor setup. (outdated instructions)
-  - Copyright.
-  - Distribution Rights.
-  - Initial Committers. (outdated instructions)
-- Incubation Items - what to watch for during incubation.
-  - Collaborative Development
-  - Licensing Awareness
-  - Project Specific
-- Exit
-  - Graduating into a TLP?
-  - Graduating into an existing PMC?
-
-The status pages are sporadically maintained by a majority of podlings after bootstrap.
-
-### The Podling YML file
-
-In the [`podling yml file`][9] the following parameters have values:
-
-- asfCopyright - the date that the ASF copyright has been added to the donated code.
-- distributionRights - the date that the code has been properly reviewed for appropriate 
-  licensing.
-- graduationDate - the date of graduation.
-- ipClearance - the date that the code has been properly reviewed for appropriate 
-  licensing.
-- issueTracker - is github or jira used for issue tracking?
-- jira - if jira is used provide the URL. The url can be assumed if the jira project key
-  is the `podling.resource` upper cased.
-- news - a new place to put podling news records.
-  - date
-  - note
-- proposal - the url to the podling proposal.
-- sga - the date the software grant was received by the Secretary.
-- sourceControl - only used once for 'github'. Every project is using github.
-- website - the project website url. This is always the preferred pattern.
-- wiki - the Space key for a Confluence wiki.
-
-You can see that there is quite a bit of overlap with information from the podling status page.
-This is intentional since the yml files are a replacement data store.
-
-The key values are `asfCopyright` and `distributionRights`
-
-### Podling Report Template
-
-The initial report template is created by [`clutch2report.py`][10].
-Look for the `perproject` variable. The values `$name` and `$description` are taken indirectly from `podlings.xml`
-via the `clutch2.pkl` created by `clutch2.py`. There is much more information available that can be injected into
-the template.
-
-The podling maturity section has checkboxes which parallel some of the work items and checklists on the podling status page.
-
-```
-  [ ] Initial setup
-  [ ] Working towards first release
-  [ ] Community building
-  [ ] Nearing graduation
-  [ ] Other:
-```
-
-### Clutch Analysis
-
-Clutch analysis is performed using the [`clutch2.sh`][11] shell script. The key programs in the process
-are the [`clutch2.py`][12] python script which performs analysis pulling information from the following
-resources:
-
-1. [`podlings.xml`][0]
-2. [Podling status pages][18]
-2. [Apache mailbox archive][14]
-3. [Gitbox Catalog][15]
-4. [Whimsy Project LDAP][16]
-5. [Whimsy Podling Website Scan][17]
-
-The results of the clutch analysis are published daily and appear on the [Clutch Report][19].
-The shell script also runs [`clutch2status.py`][13] which produces [clutch analysis pages][20].
-The data is also written as a [`clutch2.json` file][21].
-
-This program was recently modernized and returned to relevancy.
-
-## An Improvement Plan
-
-We have robust status information available for all the podlings, but have various gaps and incomplete
-transformations.
-
-1. The monthly report process must be adjusted. Two possibilities are available.
-   - Switch to use a process similar to what the Board uses for TLPs.
-   - Switch to Confluence process that looks like what we are doing now.
-2. The Podling YML file does a good job of handling the data that is on the Podling Status page.
-   What is lacking is a clean UX to edit the data at the appropriate time.
-3. Editing the Podling.xml file by hand can become an issue when the DTD is not properly followed.
-   Whimsy's podling roster page solves this for Mentors by handling that on its own.
-4. The Podling Status page mixes data with valuable recipes that lead to success.
-   They are in an svn repository in a combination of xml and html. 
-5. Many of the resource choices that podlings have made are now narrowed and normalized.
-   Naming patterns are used. Mailing lists, SVN, Git, Jira, Confluence, and
-   Releases can all be found by inspection once they are created.
-6. Many of the less usual processes like podling name changes are not well documented.
-   Support for these can be improved.
-   
-### Podling data not in `podlings.xml`
-
-We have to decide how best to handle the data that is in the Podlings Status page and the
-Podlings YML file. We should narrow this down to what is critical to keep and then decide
-where it should go.
-
-These items seem to be the most critical:
-
-1. SGA - the date that the SGA is received.
-2. ASF Copyright - the data that the donated code has had the copyright updated to Apache
-   along with the License headers updated as appropriate.
-3. Distribution Rights - the date that the code and its dependencies have been confirmed
-   to follow the [Legal Policy][23] on allowed 3rd party licenses.    
-4. Issue Tracker - are issues tacked in JIRA or Github?
-5. Wiki - does the project have a wiki, and is it a Confluence Space or a Github wiki?
-6. News - while it should be able to track new committers and PPMC members automatically 
-   from the Roster page it makes sense to allow the podling to track other events.
-   Releases can be detected as well and automatically added.
-7. Proposal - this url is not always the same as the podling name.
-8. Name change information - there is [INCUBATOR-199][24] which requests adding more explicit
-   information about name changes to podlings along with improvements to resolutions.
-
-There are design choice here. Do we fold all of these additional pieces of information into
-`podlings.xml`, or do we normalize the Podling YML file to only include these fields.
-A third option is to replace the Podling YML with a data file in another format.
-
-### Podling UX
-
-Eliminating the need to hand edit files without removing the ability is a goal. Let's discuss
-the actions that need to be recorded. Work was started in this direction in Whimsy and
-this can be continued.
-
-1. New Podling - begins incubation. This adds the `podling` record to `podlings.xml`
-2. Podling Roster / Status - this page exists and currently handles roster changes. It could be
-   expanded to cover updates:
-   - News
-   - IP related events
-   - Reporting information
-   
-   Also, the page can show the clutch analysis for the podling.
-3. Rename Podling - this expensive operation needs to be discouraged, but when it is needed
-   appropriate guidance should be provided.
-4. Exit Incubation - a page that covers the several transitions a podling may make as it
-   exits the Incubator by graduating or retiring.
-
-### Incubator Site
-
-The Incubator site can be simplified as follows:
-
-1. Remove the podling status pages under `/projects/`
-2. Improve the [`/projects/`][6] page to be the place to find deeper status with links to
-   Whimsy pages for the podling. Each podling has an anchor in the tables.
-3. Change the site's `.htaccess` file to redirect project links to the anchor.
-4. Remove the clutch analysis pages since the information will be on the Whimsy page.
-
-### Incubator SVN
-
-The Podling Status pages in [xml][3] will no longer be updated nor will they be shown.
-They can remain in svn for archival purposes.
-
-## Cookbook Checklists
-
-The checklists should be moved into the [Cookbook][22]
-   
-### Bootstrap 
-
-These tasks are done to setup infrastructure for the podling and prepare the team to develop
-in The Apache Way.
-
-- LDAP
-- DNS
-- Mailing lists created
-- Mailing list signups
-- Roster complete
-  - ICLA for initial committers w/o apache accounts
-  - Accounts requested for new apache committers
-  - All initial committers added to the PPMC
-- Code repository ready
-- Website
-- Wiki
-- Issue Tracker
-
-### IP / Copyright / Distribution Rights Checklist 
-
-- SGA / Code transfer documents. 
-- Apache copyright added to donated code.
-- Apache license added to code as appropriate.
-- Licenses of dependencies are reviewed.
-- Podling Suitable Name Search
-  - PodlingNameSearch created 
-  - Research Completed by podling
-  - Brand Approval
-
-### Incubation Watch List
-
-- Collaborative Development
-  - Are long term volunteers including non-coders being identified and
-	elected to be committers?
-  - Are the committers independent and from at least three entities?
-  - Are decisions being made in public on the dev@ mailing list?
-- Licensing Awareness
-  - As code is developed are new dependency's licenses properly handled?
-  - Are all licensing issues being acknowledged?
-  - Are any trademark issues being acknowledged?
-  - Are credit issues being acknowledged?
-- Releases
-  - Are mentors providing enough Guidance and Votes on dev@?
-  - Are source releases fully license and notice compliant?
-  - Are any binary convenience releases fully license and notice compliant?
-  - Are all releases distributed through required channels?
-	
-### Graduation Checklist
-
-- Has the podling discussed graduation on dev@?
-- Do the Mentors agree that the podling is ready?
-- If graduating into an existing TLP that PMC.
-  - Has Graduation been discussed and the VOTE passed dev@podling?
-  - Has Graduation been discussed and the VOTE passed dev@pmc?
-- If graduating to a new TLP the IPMC on general@
-  - Has the PMC been properly identified?
-  - Has a PMC Chair been selected?
-  - Has the Graduation Resolution passed the podling on dev@?
-  - Has Graduation been discussed and the VOTE passed general@incubator?
-  - If to a new TLP is the resolution on the Board's agenda?
-  - Did the resolution pass? (exit)
-
-[0]: https://incubator.apache.org/podling.xml "All podlings"
-[1]: https://whimsy.apache.org/roster/ppmc "All current podling roster pages"
-[2]: http://svn.apache.org/repos/asf/incubator/public/trunk/content/projects/incubation-status-template.xml "Podling status page template"
-[3]: https://whimsy.apache.org/roster/ppmc/rya "Rya roster pages"
-[4]: https://incubator.apache.org/projects/rya.html "Rya podling status page"
-[5]: http://svn.apache.org/repos/asf/incubator/public/trunk/content/podlings/rya.yml "Rya yml file used on roster page"
-[6]: https://incubator.apache.org/projects/#current "Current podlings table link to podling status"
-[7]: https://incubator.apache.org/projects/#graduated "Graduated podlings table link to podling status and post graduate location"
-[8]: https://incubator.apache.org/projects/#retired "Retired podlings table link to podling status and post retirement location, if any"
-[9]: http://svn.apache.org/repos/asf/incubator/public/trunk/content/podlings/openwhisk.yml "Podling status YML file example"
-[10]: http://svn.apache.org/repos/asf/incubator/public/trunk/content/clutch2report.py "clutch2report.py creates the monthly report"
-[11]: http://svn.apache.org/repos/asf/incubator/public/trunk/content/clutch2.sh "clutch2.sh creates the clutch report, json and pages"
-[12]: http://svn.apache.org/repos/asf/incubator/public/trunk/content/clutch2.py "clutch2.py performs clutch analysis"
-[13]: http://svn.apache.org/repos/asf/incubator/public/trunk/content/clutch2status.py "clutch2status.py creates the podling clutch analysis page"
-[14]: http://mail-archives.apache.org/mod_mbox/ "Apache mailbox archives"
-[15]: https://gitbox.apache.org/repositories.json "Catalog of all Apache Git repositories on GitBox"
-[16]: https://whimsy.apache.org/public/public_ldap_projects.json "Project LDAP included PMC Members and Committers"
-[17]: https://whimsy.apache.org/public/pods-scan.json "Results of a scan of podling websites for Apache Branding requirements"
-[18]: http://svn.apache.org/repos/asf/incubator/public/trunk/content/projects/openwhisk.xml "Podling status page example"
-[19]: https://incubator.apache.org/clutch/ "Clutch Analysis"
-[20]: https://incubator.apache.org/clutch/gobblin.html "Example podling clutch analysis"
-[21]: https://incubator.apache.org/clutch.json "Clutch Analysis - JSON data"
-[22]: https://incubator.apache.org/cookbook/ "Incubator Cookbook"
-[23]: http://www.apache.org/legal/resolved.html "What can be included in an Apache project?"
-[24]: https://issues.apache.org/jira/projects/INCUBATOR/issues/INCUBATOR-199 "Request to extend podlings.xml"
-
diff --git a/README.md b/README.md
index 74b6ef6..763d9c6 100644
--- a/README.md
+++ b/README.md
@@ -1,82 +1 @@
-# Apache Incubator Website
-
-This is the content and build scripts for http://incubator.apache.org/
-
-## Contributing to the website content
-
-You can fork from https://github.com/apache/incubator, test your changes as described below
-and raise a pull request.
-
-Use the [general@incubator.a.o](https://lists.apache.org/list.html?general@incubator.apache.org) mailing list to contact
-the Incubator PMC which manages this website.
-
-## Automated publishing - Website and Clutch data
-
-Commits to the `master` branch are automatically checked out and built using `build_site.sh` by the 
-[Incubator GIT Site - part 2](https://ci-builds.apache.org/job/Incubator/job/Incubator-GIT-Site-part-2/)
-Jenkins job. The results are pushed to the [`content` folder of the `asf-site` branch](https://github.com/apache/incubator/tree/asf-site/content)
-which is in turn published automatically to http://incubator.apache.org/ by the ASF's `gitwcsub` mechanism.
-
-The data for http://incubator.apache.org/clutch/ takes longer to build so it is handled by a separate
-[SVN Clutch Analysis - part 1](https://ci-builds.apache.org/job/Incubator/job/Incubator-SVN-Clutch-Analysis-part-1/)
-Jenkins job that runs the `build_clutch.sh` script that's scheduled to run daily and is also triggered by svn changes using
-the [Trigger-Clutch-Analysis-on-SVN-Change](https://ci-builds.apache.org/job/Incubator/job/Trigger-Clutch-Analysis-on-SVN-Change/)
-Jenkins job. The results are stored in the [`reserve` folder of the `asf-site` branch](https://github.com/apache/incubator/tree/asf-site/reserve)
-
-For now that Clutch data is still managed in svn, at http://svn.apache.org/repos/asf/incubator/public/trunk/ , see
-the build scripts for more info. The projects folder (podling status pages) and the ip-clearance folders are also still in svn
-and the html is built using `ant docs` in the `build_clutch.sh` script.
-
-Any build failures are reported to *[cvs@incubator.a.o](https://lists.apache.org/list.html?cvs@incubator.apache.org)*
-mailing list.
-
-## Prerequisites for building the website locally
-
-The website is built using [JBake](https://jbake.org/) and Groovy templates.
-The builds for the website do require internet access.
-
-- Install JBake from http://jbake.org/download.html
-  - Currently it looks like version 2.6.0 or greater is required.
-- Create an environment variable `JBAKE_HOME` pointing to your JBake installation, e.g.
-  - `export JBAKE_HOME=/usr/local/Cellar/jbake/2.6.4`
-- Ensure that you have a JVM locally, e.g. [OpenJDK](http://openjdk.java.net/install/)
-
-## Building & testing the site locally
-
-To test the site locally, use 
-
-    ./build_local.sh -b -s
-    
-This builds the site, serves it locally at  http://localhost:8820/ and rebuilds the content fairly
-quickly if any changes are made.
-
-That script can be called with any of the [arguments you would pass to jbake](https://jbake.org/docs/2.6.4/#bake_command).
-
-### Building the Clutch and Legacy SVN Content (if you know what you're doing)
-
-**Warning** do not run the clutch build scripts unless you are sure you understand them, and please be careful not to commit any of the resulting assets and pages to the git master branch. That content and data is only committed to the `asf-site` 
-branch's `reserve`folder as mentioned below.
-
-The `build_local_clutch.sh` script can be used to build the Clutch data, but that's updated automatically by the Jenkins 
-builds as `build_clutch.sh` mentioned below so it's not required unless you want to test that.
-
-## Asciidoctor
-
-Most of the pages in the site are written using Asciidoctor.
-While it is a form of asciidoc it does have some [syntax differences that are worth reviewing](http://asciidoctor.org/docs/asciidoc-syntax-quick-reference/)
-
-## Groovy Templates
-
-The site templates are written in groovy scripts.
-Even though the files end with `.gsp` they are not GSP files and do not have access to tag libraries.
-You can run custom code in them, similar to what is done in [homepage.gsp](templates/homepage.gsp) and [projectspage.gsp](templates/projectspage.gsp).
-
-## Clutch data files
-
-In addition to the [clutch pages](https://incubator.apache.org/clutch/) several data files are provided:
-
-* [clutch.json](https://incubator.apache.org/clutch.json) contains the latest clutch analysis for all current podlings.
-* [clutch.txt](https://incubator.apache.org/clutch.txt) contains a list of current podlings,
-* [report_due_1.txt](https://incubator.apache.org/report_due_1.txt) dev mailing lists for podlings reporting in group 1.
-* [report_due_2.txt](https://incubator.apache.org/report_due_2.txt) dev mailing lists for podlings reporting in group 2.
-* [report_due_3.txt](https://incubator.apache.org/report_due_3.txt) dev mailing lists for podlings reporting in group 3.
+# fix me
diff --git a/WHIMSY_PLAN.md b/WHIMSY_PLAN.md
deleted file mode 100644
index b788a30..0000000
--- a/WHIMSY_PLAN.md
+++ /dev/null
@@ -1,260 +0,0 @@
-# Incubator Podling Lifecycle from Whimsy
-
-We would like to finish the data migration and UX work to manage the podling lifecycle and
-related data from Whimsy. What follows is a description of the data currently in `podlings.xml`,
-the data needed that is not in the `podlings.xml`, an initial plan for the Podling Lifecycle UX
-to be discussed, and then examples of podlings in various states from `podlings.xml`
-
-## Podlings xml
-
-The podling catalog is in this file: [`podling.xml`][0]
-
-Values are stored for all Incubator podlings in a single xml file each in a `podling` node.
-Not all of the data pertain to current podlings.
-- Podling name. This is set when the podling is created. It can be changed later but that
-  can be expensive if the resources also need to be renamed.
-- Status - This is one of these three values: "current", "graduated" or "retired". Podlings
-  in the Incubator are current. When the podling exits it either "graduates" or "retires"
-- Resource - This is the name used for resources. It is initialized to lower case of Podling name w/o spaces.
-  Once the podling's resources are created it is very expensive to change these.
-- ResourceAliases - If the podling's resource and name is changed the older resource names are stored in 
-  this field. Some older podlings had multiple names or short names for resources.
-- Sponsor - Most often this is the "incubator", but it may also be any Apache PMC if there are directly
-  sponsoring a project in the incubator.
-- Start date - This is the date that the podling starts incubation. It can be the date the podling entry is created
-  or the date that the incubation vote passed.
-- End date - This is the date the podling leaves the incubator. It is either the date that 
-  the Board votes to accept the graduation proposal, the date another PMC chooses to accept the podling
-  as part of their PMC, or the date the podling retires.
-- Description - a short description of the podling.
-- Champion - the champion for the project.
-- Mentors - a list of the podling's mentors with their Apache IDs. This is now maintained from
-  Whimsy. [Whimsy roster page][1]
-- Reporting group - which months is a current podling reporting to the IPMC. A new podling will be monthly.
-- Resolution - when the podlings leaves the Incubator it either graduates or retires. These fields
-  describe what happened, 
-  - tlp attribute - If "true" the podling became a TLP 
-  - link attribute - If a name change was involved to the new TLP, the podling graduates into an existing PMC,
-    or retires with a new location then this is the text on a link.
-  - url attribute - If there is a link then this is the url.
-  - description - an optional description about retirement or graduation
-
-
-## Podling data currently not in `podlings.xml`
-
-We have to decide how best to handle the data that is in the Podlings Status page and the
-Podlings YML file. We should narrow this down to what is critical to keep and then decide
-where it should go.
-
-These items seem to be the most critical:
-
-1. SGA - the date that the SGA is received.
-2. ASF Copyright - the data that the donated code has had the copyright updated to Apache
-   along with the License headers updated as appropriate.
-3. Distribution Rights - the date that the code and its dependencies have been confirmed
-   to follow the [Legal Policy][23] on allowed 3rd party licenses.    
-4. Issue Tracker - are issues tacked in JIRA or Github?
-5. Wiki - does the project have a wiki, and is it a Confluence Space or a Github wiki?
-6. News - while it should be able to track new committers and PPMC members automatically 
-   from the Roster page it makes sense to allow the podling to track other events.
-   Releases can be detected as well and automatically added.
-7. Proposal - this url is not always the same as the podling name. For example the Tuweni
-   is proposed as Cava.
-8. Podling Name Search issue.
-9. Name change information - there is [INCUBATOR-199][24] which requests adding more explicit
-   information about name changes to podlings along with improvements to resolutions.
-
-There are design choice here. Do we fold all of these additional pieces of information into
-`podlings.xml`, or do we normalize the Podling YML file to only include these fields.
-A third option is to replace the Podling YML with a data file in another format.
-
-## Podling UX for Whimsy
-
-Eliminating the need to hand edit files without removing the ability is a goal. Let's discuss
-the actions that need to be recorded. Work was started in this direction in Whimsy and
-this can be continued.
-
-1. New Podling - begins incubation. This adds the `podling` record to `podlings.xml`.
-   We should discuss if this a first time only page or can be combined with Rename and Exit.
-   If so then this could be termed the Podling Lifecycle Page.
-   - Podling name.
-   - Resource.
-   - Sponsor.
-   - Start date.
-   - Description.
-   - Champion.
-   - Reporting group. This can be computed from the Start date.
-   - Proposal.
-   - News. The start of the podling.
-   - Issue Tracker. (is this choice best deferred to later?)
-   - Wiki. (is this choice best deferred to later?)
-   
-2. Podling Roster / Status - this page exists and currently handles roster changes. It could be
-   expanded to cover updates:
-   - Roster (as now)
-     - Mentors
-     - PPMC Members
-     - Committers
-   - News
-     - News about adding Committers, PPMC members, and Mentors can be automatic.
-     - Manual news should addable.
-     - PPMC members should be able to remove news.
-   - IP related events
-     - SGA
-     - ASF Copyright
-     - Distribution Rights
-     - Podling Name Search (does the current automated procedure work in all cases?)
-   - Reporting group.
-     - IPMC Chair removes the monthly checkbox or removes it depending on reporting.
-   
-   Also, the page can show the [clutch analysis][20] for the podling.
-   The [current generated JSON file][21] which can be abbreviated to remove redundant information like "LDAP".
-   
-3. Rename Podling - this expensive operation needs to be discouraged, but when it is needed
-   appropriate guidance should be provided.
-   - Podling name
-   - Description
-   - Podling Name Search (does the current automated procedure work in all cases?)
-   - Resource (expensive) - leads to explanation / checklist.
-   - News entry about renaming.
-   
-4. Exit Incubation - a page that covers the several transitions a podling may make as it
-   exits the Incubator by graduating or retiring.
-   - End Date
-   - Graduation?
-     - New TLP?
-     - To an existing PMC?
-       - Which PMC?
-       - Subproject link?
-   - Retirement?
-     - Development going to be elsewhere?
-       - 3rd Party link?
-   - Description of the change 
-   - Resolution (automatically filled in with the answers)
-     - tlp attribute
-     - link attribute
-     - url attribute
-     - description
-
-
-#### Example Podlings from `podlings.xml`
-
-A current podling:
-```
-    <podling name="Crail" status="current" resource="crail" sponsor="Incubator" startdate="2017-11-01">
-        <description>Crail is a storage platform for sharing performance critical data in distributed data processing jobs at very high speed.</description>
-        <reporting group="3"/>
-        <champion availid="lresende">Luciano Resende</champion>
-        <mentors>
-            <mentor username="jhyde">Julian Hyde</mentor>
-            <mentor username="lresende">Luciano Resende</mentor>
-        </mentors>
-    </podling>
-```
-
-A brand new podling:
-```
-    <podling name="DataSketches" status="current" resource="datasketches" sponsor="Incubator" startdate="2019-03-30">
-        <description>DataSketches is an open source, high-performance library of stochastic streaming algorithms commonly called "sketches" in the data sciences. Sketches are small, stateful programs that process massive data as a stream and can provide approximate answers, with mathematical guarantees, to computationally difficult queries orders-of-magnitude faster than traditional, exact methods.</description>
-        <reporting group="2" monthly="true">May, June, July</reporting>
-        <champion availid="jbonofre">Jean-Baptiste Onofré</champion>
-        <mentors>
-            <mentor username="chenliang613">Liang Chen</mentor>
-            <mentor username="kenn">Kenneth Knowles</mentor>
-            <mentor username="kamaci">Furkan Kamaci</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling that changed its name (highlights the [INCUBATOR-199 issue][24]):
-```
-    <podling name="Flagon" status="current" resource="flagon" resourceAliases="senssoft" sponsor="Incubator" startdate="2016-07-13">
-        <description>Flagon is a software tool usability testing platform</description>
-        <reporting group="1"/>
-	<champion availid="lewismc">Lewis John McGibbney</champion>
-        <mentors>
-            <mentor username="lewismc">Lewis John McGibbney</mentor>
-            <mentor username="dmeikle">David Meikle</mentor>
-            <mentor username="atri">Atri Sharma</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling graduated to a TLP:
-```
-    <podling name="CXF" status="graduated" resource="cxf" sponsor="Incubator" startdate="2006-08-15" enddate="2008-04-16">
-        <description>The CXF project will create a SOA services framework by merges the ObjectWeb Celtix project and the Codehaus XFire project.</description>
-        <resolution tlp="true"/>
-        <mentors>
-            <mentor username="jim">Jim Jagielski</mentor>
-            <mentor username="jstrachan">James Strachan</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling sponsored by a PMC that graduated into the PMC:
-```
-    <podling name="Derby" status="graduated" resource="derby" sponsor="DB" startdate="2004-08-15" enddate="2005-07-18">
-        <description>Java relational database</description>
-        <resolution link="DB Derby" url="http://db.apache.org/derby/"/>
-        <mentors>
-            <mentor username="coar">Ken Coar</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling that graduated with a name change:
-```
-    <podling name="OpenOffice.org" status="graduated" resource="openofficeorg" resourceAliases="ooo" sponsor="Incubator" startdate="2011-06-13" enddate="2012-10-17">
-        <description>OpenOffice.org is comprised of six personal productivity applications: a word processor (and its web-authoring component), spreadsheet, presentation graphics, drawing, equation editor, and database.</description>
-        <resolution link="OpenOffice" url="https://openoffice.apache.org/"/>
-        <mentors>
-            <mentor username="jim">Jim Jagielski</mentor>
-            <mentor username="rubys">Sam Ruby</mentor>
-            <mentor username="danese">Danese Cooper</mentor>
-            <mentor username="curcuru">Shane Curcuru</mentor>
-            <mentor username="noirin">Noirin Plunkett</mentor>
-            <mentor username="joes">Joe Schaefer</mentor>
-            <mentor username="grobmeier">Christian Grobmeier</mentor>
-            <mentor username="rgardler">Ross Gardler</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling that retired:
-```
-    <podling name="Provisionr" status="retired" resource="provisionr" sponsor="Incubator" startdate="2013-03-07" enddate="2013-11-22">
-        <description>Provisionr provides a service to manage pools of virtual machines on multiple clouds.</description>
-        <resolution>Failed to grow a community. Retired at request of PPMC.</resolution>
-        <champion availid="tomwhite">Tom White</champion>
-        <mentors>
-            <mentor username="rvs">Roman Shaposhnik</mentor>
-            <mentor username="tomwhite">Tom White</mentor>
-            <mentor username="mnour">Mohammad Nour El-Din</mentor>
-        </mentors>
-    </podling>
-```
-
-A podling that retired and moved development elsewhere:
-```
-    <podling name="Heraldry" status="retired" resource="heraldry" sponsor="Incubator" startdate="2005-07-14" enddate="2007-06-09">
-        <description>Identity for the rest of us.</description>
-        <resolution link="OpenID.net" url="http://openid.net/">Project retired. Some activity moved to OpenID.net</resolution>
-        <mentors>
-            <mentor username="ben">Ben Laurie</mentor>
-            <mentor username="pquerna">Paul Querna</mentor>
-            <mentor username="twl">Ted Leung</mentor>
-            <mentor username="farra">J. Aaron Farr</mentor>
-            <mentor username="wrowe">William Rowe</mentor>
-        </mentors>
-    </podling>
-```
-
-
-[0]: https://incubator.apache.org/podling.xml "All podlings"
-[1]: https://whimsy.apache.org/roster/ppmc "All current podling roster pages"
-[20]: https://incubator.apache.org/clutch/gobblin.html "Example podling clutch analysis"
-[21]: https://incubator.apache.org/clutch.json "Clutch Analysis - JSON data"
-[23]: http://www.apache.org/legal/resolved.html "What can be included in an Apache project?"
-[24]: https://issues.apache.org/jira/projects/INCUBATOR/issues/INCUBATOR-199 "Request to extend podlings.xml"
-
diff --git a/assets/.htaccess b/assets/.htaccess
deleted file mode 100644
index e78c7a8..0000000
--- a/assets/.htaccess
+++ /dev/null
@@ -1,245 +0,0 @@
-# please keep sections in alpha order
-
-# Graduated podlings
-# N.B. Redirect  /abc baseUrl also redirects /abc/def to baseUrl/def
-
-Redirect Permanent /abdera http://abdera.apache.org
-Redirect Permanent /accumulo http://accumulo.apache.org
-Redirect Permanent /ace http://ace.apache.org
-Redirect Permanent /activemq http://activemq.apache.org
-Redirect Permanent /airavata http://airavata.apache.org
-Redirect Permanent /allura http://allura.apache.org
-Redirect Permanent /ambari http://ambari.apache.org
-Redirect Permanent /amber http://oltu.apache.org
-Redirect Permanent /any23 http://any23.apache.org
-Redirect Permanent /apollo http://ws.apache.org/wsrf
-Redirect Permanent /aries http://aries.apache.org
-Redirect Permanent /batchee http://geronimo.apache.org/batchee
-Redirect Permanent /beam https://beam.apache.org
-Redirect Permanent /beehive http://beehive.apache.org
-Redirect Permanent /bigtop http://bigtop.apache.org
-Redirect Permanent /bloodhound http://bloodhound.apache.org
-Redirect Permanent /brooklyn http://brooklyn.apache.org
-Redirect Permanent /buildr http://buildr.apache.org
-Redirect Permanent /bval http://bval.apache.org
-Redirect Permanent /calcite http://calcite.apache.org
-Redirect Permanent /callback http://cordova.apache.org
-Redirect Permanent /cassandra http://cassandra.apache.org
-Redirect Permanent /cayenne http://cayenne.apache.org
-Redirect Permanent /celix http://celix.apache.org
-Redirect Permanent /chemistry http://chemistry.apache.org
-Redirect Permanent /chukwa http://chukwa.apache.org
-Redirect Permanent /clerezza http://clerezza.apache.org
-Redirect Permanent /click http://click.apache.org
-Redirect Permanent /climate http://climate.apache.org
-Redirect Permanent /cloudstack http://cloudstack.apache.org
-Redirect Permanent /cordova http://cordova.apache.org
-Redirect Permanent /couchdb http://couchdb.apache.org
-Redirect Permanent /crunch http://crunch.apache.org
-Redirect Permanent /ctakes http://ctakes.apache.org
-Redirect Permanent /curator http://curator.apache.org
-Redirect Permanent /cxf http://cxf.apache.org
-Redirect Permanent /deltacloud http://deltacloud.apache.org
-Redirect Permanent /deltaspike http://deltaspike.apache.org
-Redirect Permanent /derby http://db.apache.org/derby
-Redirect Permanent /devicemap http://devicemap.apache.org
-Redirect Permanent /directmemory http://directmemory.apache.org
-Redirect Permanent /directory http://directory.apache.org
-Redirect Permanent /drill http://drill.apache.org
-Redirect Permanent /eagle http://eagle.apache.org
-Redirect Permanent /easyant http://ant.apache.org/easyant
-Redirect Permanent /empire-db http://empire-db.apache.org
-Redirect Permanent /esme http://esme.apache.org
-Redirect Permanent /etch http://etch.apache.org
-Redirect Permanent /falcon http://falcon.apache.org
-Redirect Permanent /felix http://felix.apache.org
-Redirect Permanent /flex http://flex.apache.org
-Redirect Permanent /flink http://flink.apache.org
-Redirect Permanent /flume http://flume.apache.org
-Redirect Permanent /ftpserver http://mina.apache.org/ftpserver
-Redirect Permanent /geode http://geode.apache.org
-Redirect Permanent /geronimo http://geronimo.apache.org
-Redirect Permanent /giraph http://giraph.apache.org
-Redirect Permanent /gora http://gora.apache.org
-Redirect Permanent /hama http://hama.apache.org
-Redirect Permanent /harmony http://harmony.apache.org
-Redirect Permanent /hcatalog http://hive.apache.org
-Redirect Permanent /helix http://helix.apache.org/
-Redirect Permanent /hermes http://ws.apache.org/pubscribe
-##httpd-cli - where did that go?
-Redirect Permanent /ibatis http://ibatis.apache.org
-Redirect Permanent /ignite http://ignite.apache.org
-Redirect Permanent /ivy http://ant.apache.org/ivy
-Redirect Permanent /jackrabbit http://jackrabbit.apache.org
-Redirect Permanent /jaxme http://ws.apache.org/jaxme
-Redirect Permanent /jclouds http://jclouds.apache.org
-Redirect Permanent /jdo http://db.apache.org/jdo
-Redirect Permanent /jena http://jena.apache.org
-Redirect Permanent /jspwiki http://jspwiki.apache.org
-Redirect Permanent /juddi http://juddi.apache.org
-Redirect Permanent /knox http://knox.apache.org
-Redirect Permanent /kylin http://kylin.apache.org
-Redirect Permanent /lens http://lens.apache.org
-Redirect Permanent /lenya http://lenya.apache.org
-Redirect Permanent /libcloud http://libcloud.apache.org
-Redirect Permanent /log4cxx http://logging.apache.org/log4cxx
-Redirect Permanent /log4net http://logging.apache.org/log4net
-Redirect Permanent /log4php http://logging.apache.org/log4php
-Redirect Permanent /lucene.net http://lucenenet.apache.org
-Redirect Permanent /lucy http://lucy.apache.org
-Redirect Permanent /marmotta http://marmotta.apache.org
-##merlin-developer - where did that go?
-Redirect Permanent /mesos http://mesos.apache.org
-Redirect Permanent /metamodel http://metamodel.apache.org
-Redirect Permanent /mod_ftp http://httpd.apache.org/mod_ftp
-Redirect Permanent /mrunit http://mrunit.apache.org
-Redirect Permanent /muse http://ws.apache.org/muse
-Redirect Permanent /myfaces http://myfaces.apache.org
-Redirect Permanent /nutch http://lucene.apache.org/nutch
-Redirect Permanent /ode http://ode.apache.org
-Redirect Permanent /ofbiz http://ofbiz.apache.org
-Redirect Permanent /ognl http://commons.apache.org/ognl
-Redirect Permanent /olingo http://olingo.apache.org
-Redirect Permanent /onami http://onami.apache.org
-Redirect Permanent /oodt http://oodt.apache.org
-Redirect Permanent /oozie http://oozie.apache.org
-Redirect Permanent /openejb http://openejb.apache.org
-Redirect Permanent /openjpa http://openjpa.apache.org
-Redirect Permanent /openmeetings http://openmeetings.apache.org
-Redirect Permanent /opennlp http://opennlp.apache.org
-Redirect Permanent /openofficeorg http://openoffice.apache.org
-Redirect Permanent /openwebbeans http://openwebbeans.apache.org
-Redirect Permanent /parquet http://parquet.apache.org
-Redirect Permanent /pdfbox http://pdfbox.apache.org
-Redirect Permanent /phoenix http://phoenix.apache.org
-Redirect Permanent /pig http://hadoop.apache.org/pig
-Redirect Permanent /pivot http://pivot.apache.org
-Redirect Permanent /pluto http://portals.apache.org/pluto
-Redirect Permanent /qpid http://qpid.apache.org
-Redirect Permanent /rat http://creadur.apache.org
-Redirect Permanent /rave http://rave.apache.org
-Redirect Permanent /reef http://reef.apache.org
-Redirect Permanent /river http://river.apache.org
-Redirect Permanent /roller http://roller.apache.org
-Redirect Permanent /samza http://samza.apache.org
-Redirect Permanent /sanselan http://commons.apache.org/sanselan
-Redirect Permanent /sentry http://sentry.apache.org
-Redirect Permanent /servicemix http://servicemix.apache.org
-Redirect Permanent /shindig http://shindig.apache.org
-Redirect Permanent /shiro http://shiro.apache.org
-Redirect Permanent /sis http://sis.apache.org
-Redirect Permanent /sling http://sling.apache.org
-Redirect Permanent /solr http://lucene.apache.org/solr
-Redirect Permanent /spamassasin http://spamassasin.apache.org
-Redirect Permanent /spark http://spark.apache.org
-Redirect Permanent /sqoop http://sqoop.apache.org
-Redirect Permanent /stanbol http://stanbol.apache.org
-Redirect Permanent /stdcxx http://stdcxx.apache.org
-Redirect Permanent /storm http://storm.apache.org
-Redirect Permanent /subversion http://subversion.apache.org
-Redirect Permanent /synapse http://ws.apache.org/synapse
-Redirect Permanent /tajo http://tajo.apache.org
-Redirect Permanent /tapestry http://tapestry.apache.org
-Redirect Permanent /tez http://tez.apache.org
-Redirect Permanent /thrift http://thrift.apache.org
-Redirect Permanent /tika http://lucene.apache.org/tika
-Redirect Permanent /tobago http://myfaces.apache.org/tobago
-Redirect Permanent /trafficserver http://trafficserver.apache.org
-Redirect Permanent /trinidad http://myfaces.apache.org/trinidad
-Redirect Permanent /tuscany http://tuscany.apache.org
-Redirect Permanent /vxquery http://vxquery.apache.org
-Redirect Permanent /uima http://uima.apache.org
-Redirect Permanent /usergrid http://usergrid.apache.org
-Redirect Permanent /webwork2 http://struts.apache.org
-Redirect Permanent /whirr http://whirr.apache.org
-Redirect Permanent /wicket http://wicket.apache.org
-Redirect Permanent /wink http://wink.apache.org
-Redirect Permanent /woden http://ws.apache.org/woden
-Redirect Permanent /wookie http://wookie.apache.org
-Redirect Permanent /xmlbeans http://xmlbeans.apache.org
-
-# retired podlings
-# All URLs must be redirected to the status page as the original site as been dropped
-# N.B. This can only be done here for old-style URLs under i.a.o, e.g.
-# http://incubator.apache.org/agila/...
-#
-# For podling website URLs of the form
-# http://<podling>.apache.org/ or http://<podling>.incubator.apache.org/
-# the simplest solution is to create a directory under retired/, see for example:
-# https://github.com/apache/incubator/tree/master/assets/retired/amaterasu
-#
-# Prior to the introduction of the retired/ directory, it was necessary to set up the
-# appropriate .htaccess file, as follows
-#
-# For svnpubsub sites, set up the .htaccess file under:
-# https://svn.apache.org/repos/asf/incubator/<podling>/site/[publish|etc]
-#
-# For podling.incubator.apache.org URLs using gitpubsub:
-# Something like the following:
-# https://gitbox.apache.org/repos/asf/incubator-retired-<podling>-site.git
-#
-# adffaces was renamed
-RedirectMatch Permanent ^/adffaces(/.*)?$ http://incubator.apache.org/projects/trinidad.html
-RedirectMatch Permanent ^/agila(/.*)?$ http://incubator.apache.org/projects/agila.html
-RedirectMatch Permanent ^/alois(/.*)?$ http://incubator.apache.org/projects/alois.html
-RedirectMatch Permanent ^/altrmi(/.*)?$ http://incubator.apache.org/projects/altrmi.html
-RedirectMatch Permanent ^/awf(/.*)?$ http://incubator.apache.org/projects/awf.html
-RedirectMatch Permanent ^/axion(/.*)?$ http://incubator.apache.org/projects/axion.html
-RedirectMatch Permanent ^/bluesky(/.*)?$ http://incubator.apache.org/projects/bluesky.html
-RedirectMatch Permanent ^/blur(/.*)?$ http://incubator.apache.org/projects/blur.html
-RedirectMatch Permanent ^/composer(/.*)?$ http://incubator.apache.org/projects/composer.html
-# https://svn.apache.org/repos/asf/incubator/concerted/site/.htaccess
-RedirectMatch Permanent ^/corinthia(/.*)?$ http://incubator.apache.org/projects/corinthia.html
-# https://svn.apache.org/repos/asf/incubator/cotton/site/publish/.htaccess
-RedirectMatch Permanent ^/depot(/.*)?$ http://incubator.apache.org/projects/depot.html
-RedirectMatch Permanent ^/droids(/.*)?$ http://incubator.apache.org/projects/droids.html
-RedirectMatch Permanent ^/graffito(/.*)?$ http://incubator.apache.org/projects/graffito.html
-# TODO http://hdt.incubator.apache.org/
-RedirectMatch Permanent ^/heraldry(/.*)?$ http://incubator.apache.org/projects/heraldry.html
-RedirectMatch Permanent ^/hise(/.*)?$ http://incubator.apache.org/projects/hise.html
-RedirectMatch Permanent ^/imperius(/.*)?$ http://incubator.apache.org/projects/imperius.html
-RedirectMatch Permanent ^/juice(/.*)?$ http://incubator.apache.org/projects/juice.html
-RedirectMatch Permanent ^/kabuki(/.*)?$ http://incubator.apache.org/projects/kabuki.html
-RedirectMatch Permanent ^/kalumet(/.*)?$ http://incubator.apache.org/projects/kalumet.html
-RedirectMatch Permanent ^/kato(/.*)?$ http://incubator.apache.org/projects/kato.html
-RedirectMatch Permanent ^/kitty(/.*)?$ http://incubator.apache.org/projects/kitty.html
-RedirectMatch Permanent ^/lokahi(/.*)?$ http://incubator.apache.org/projects/lokahi.html
-RedirectMatch Permanent ^/lucene4c(/.*)?$ http://incubator.apache.org/projects/lucene4c.html
-RedirectMatch Permanent ^/nmaven(/.*)?$ http://incubator.apache.org/projects/nmaven.html
-RedirectMatch Permanent ^/npanday(/.*)?$ http://incubator.apache.org/projects/npanday.html
-RedirectMatch Permanent ^/olio(/.*)?$ http://incubator.apache.org/projects/olio.html
-# https://gitbox.apache.org/repos/asf?p=incubator-retired-openaz-site.git;a=blob_plain;f=.htaccess;hb=refs/heads/asf-site
-RedirectMatch Permanent ^/photark(/.*)?$ http://incubator.apache.org/projects/photark.html
-# https://gitbox.apache.org/repos/asf?p=incubator-retired-pirk.git;a=blob;f=.htaccess;hb=refs/heads/asf-site
-RedirectMatch Permanent ^/provisionr(/.*)?$ http://incubator.apache.org/projects/provisionr.html
-# quarks was renamed edgent and then edgent retired
-RedirectMatch Permanent ^/projects/quarks.html$ http://incubator.apache.org/projects/edgent.html
-RedirectMatch Permanent ^/rcf(/.*)?$ http://incubator.apache.org/projects/rcf.html
-RedirectMatch Permanent ^/ripple(/.*)?$ http://incubator.apache.org/projects/ripple.html
-RedirectMatch Permanent ^/s4(/.*)?$ http://incubator.apache.org/projects/s4.html
-# https://svn.apache.org/repos/asf/incubator/sirona/site/.htaccess
-RedirectMatch Permanent ^/socialsite(/.*)?$ http://incubator.apache.org/projects/socialsite.html
-RedirectMatch Permanent ^/stonehenge(/.*)?$ http://incubator.apache.org/projects/stonehenge.html
-RedirectMatch Permanent ^/tashi(/.*)?$ http://incubator.apache.org/projects/tashi.html
-RedirectMatch Permanent ^/triplesoup(/.*)?$ http://incubator.apache.org/projects/triplesoup.html
-RedirectMatch Permanent ^/tsik(/.*)?$ http://incubator.apache.org/projects/tsik.html
-RedirectMatch Permanent ^/wadi(/.*)?$ http://incubator.apache.org/projects/wadi.html
-RedirectMatch Permanent ^/wave(/.*)?$ http://incubator.apache.org/projects/wave.html
-RedirectMatch Permanent ^/wsrp4j(/.*)?$ http://incubator.apache.org/projects/wsrp4j.html
-RedirectMatch Permanent ^/xap(/.*)?$ http://incubator.apache.org/projects/xap.html
-RedirectMatch Permanent ^/xmlbeanscxx(/.*)?$ http://incubator.apache.org/projects/xmlbeanscxx.html
-RedirectMatch Permanent ^/yoko(/.*)?$ http://incubator.apache.org/projects/yoko.html
-RedirectMatch Permanent ^/zetacomponents(/.*)?$ http://incubator.apache.org/projects/zetacomponents.html
-
-# from the old webiste
-Redirect Permanent /incubation/Incubation_Policy.html /policy/incubation.html
-Redirect Permanent /incubation/Process_Description.html /policy/process.html
-Redirect Permanent /incubation/Roles_and_Responsibilities.html /guides/roles_and_responsibilities.html
-Redirect Permanent /policy/Roles_and_Responsibilities.html /guides/roles_and_responsibilities.html
-
-# other URLs - NOT graduated podlings, which belong in a previous section
-RedirectMatch Permanent howtoparticipate.html /guides/participation.html
-RedirectMatch Permanent clutch.html /clutch/index.html
-
-# Restore access to podlings.*
-RedirectMatch ^/(podlings\..*)$ "https://svn.apache.org/repos/asf/incubator/public/trunk/content/$1"
diff --git a/assets/css/asciidoctor.css b/assets/css/asciidoctor.css
deleted file mode 100644
index 2accfaf..0000000
--- a/assets/css/asciidoctor.css
+++ /dev/null
@@ -1,512 +0,0 @@
-@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.2.0/css/font-awesome.css);
-/* ========================================================================== Embedded content ========================================================================== */
-/** Remove border when inside `a` element in IE 8/9. */
-img { border: 0; }
-
-/** Correct overflow displayed oddly in IE 9. */
-svg:not(:root) { overflow: hidden; }
-
-/* ========================================================================== Figures ========================================================================== */
-/** Address margin not present in IE 8/9 and Safari 5. */
-figure { margin: 0; }
-
-/* ========================================================================== Forms ========================================================================== */
-/** Define consistent border, margin, and padding. */
-fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
-
-/** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */
-legend { border: 0; /* 1 */ padding: 0; /* 2 */ }
-
-/** 1. Correct font family not being inherited in all browsers. 2. Correct font size not being inherited in all browsers. 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. */
-button, input, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 2 */ margin: 0; /* 3 */ }
-
-/** Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */
-button, input { line-height: normal; }
-
-/** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
-button, select { text-transform: none; }
-
-/** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */
-button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ }
-
-/** Re-set default cursor for disabled elements. */
-button[disabled], html input[disabled] { cursor: default; }
-
-/** 1. Address box sizing set to `content-box` in IE 8/9. 2. Remove excess padding in IE 8/9. */
-input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
-
-/** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */
-input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; }
-
-/** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */
-input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
-
-/** Remove inner padding and border in Firefox 4+. */
-button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
-
-/** 1. Remove default vertical scrollbar in IE 8/9. 2. Improve readability and alignment in all browsers. */
-textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ }
-
-/* ========================================================================== Tables ========================================================================== */
-/** Remove most spacing between table cells. */
-table { border-collapse: collapse; border-spacing: 0; }
-
-*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
-
-img, object, embed { max-width: 100%; height: auto; }
-
-object, embed { height: 100%; }
-
-img { -ms-interpolation-mode: bicubic; }
-
-#map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; }
-
-.left { float: left !important; }
-
-.right { float: right !important; }
-
-.text-left { text-align: left !important; }
-
-.text-right { text-align: right !important; }
-
-.text-center { text-align: center !important; }
-
-.text-justify { text-align: justify !important; }
-
-.hide { display: none; }
-
-.antialiased, body { -webkit-font-smoothing: antialiased; }
-
-img { display: inline-block; vertical-align: middle; }
-
-textarea { height: auto; min-height: 50px; }
-
-select { width: 100%; }
-
-p.lead, .paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { font-size: 1.21875em; line-height: 1.6; }
-
-.subheader, #content #toctitle, .admonitionblock td.content > .title, .exampleblock > .title, .imageblock > .title, .videoblock > .title, .listingblock > .title, .literalblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, .sidebarblock > .title, .tableblock > .title, .verseblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title, .tableblock > caption { line-height: 1.4; color: #7a2518; font-weight: 300; margin-top: 0.2em; margin-bottom: 0.5em; }
-
-/* Lists */
-ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; list-style-position: outside; font-family: inherit; }
-
-ul, ol { margin-left: 1.5em; }
-
-/* Unordered Lists */
-ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font-size change */ }
-ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; }
-ul.square { list-style-type: square; }
-ul.circle { list-style-type: circle; }
-ul.disc { list-style-type: disc; }
-ul.no-bullet { list-style: none; }
-
-/* Ordered Lists */
-ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; }
-
-/* Definition Lists */
-dl dt { margin-bottom: 0.3125em; font-weight: bold; }
-dl dd { margin-bottom: 1.25em; }
-
-/* Abbreviations */
-abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px dotted #dddddd; cursor: help; }
-
-abbr { text-transform: none; }
-
-/* Blockquotes */
-blockquote { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
-blockquote cite { display: block; font-size: inherit; color: #555555; }
-blockquote cite:before { content: "\2014 \0020"; }
-blockquote cite a, blockquote cite a:visited { color: #555555; }
-
-blockquote, blockquote p { line-height: 1.6; color: #6f6f6f; }
-
-/* Microformats */
-.vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; }
-.vcard li { margin: 0; display: block; }
-.vcard .fn { font-weight: bold; font-size: 0.9375em; }
-
-.vevent .summary { font-weight: bold; }
-.vevent abbr { cursor: auto; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; }
-
-@media only screen and (min-width: 768px) { h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
-  h1 { font-size: 2.75em; }
-  h2 { font-size: 2.3125em; }
-  h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.6875em; }
-  h4 { font-size: 1.4375em; } }
-/* Print styles.  Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
-*/
-.print-only { display: none !important; }
-
-@media print { * { background: transparent !important; color: #000 !important; /* Black prints faster: h5bp.com/s */ box-shadow: none !important; text-shadow: none !important; }
-  a, a:visited { text-decoration: underline; }
-  a[href]:after { content: " (" attr(href) ")"; }
-  abbr[title]:after { content: " (" attr(title) ")"; }
-  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
-  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
-  thead { display: table-header-group; /* h5bp.com/t */ }
-  tr, img { page-break-inside: avoid; }
-  img { max-width: 100% !important; }
-  @page { margin: 0.5cm; }
-  p, h2, h3, #toctitle, .sidebarblock > .content > .title { orphans: 3; widows: 3; }
-  h2, h3, #toctitle, .sidebarblock > .content > .title { page-break-after: avoid; }
-  .hide-on-print { display: none !important; }
-  .print-only { display: block !important; }
-  .hide-for-print { display: none !important; }
-  .show-for-print { display: inherit !important; } }
-/* Tables */
-table { background: white; margin-bottom: 1.25em; border: solid 1px #dddddd; }
-table thead, table tfoot { background: whitesmoke; font-weight: bold; }
-table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: inherit; color: #222222; text-align: left; }
-table tr th, table tr td { padding: 0.5625em 0.625em; font-size: inherit; color: #222222; }
-table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9; }
-table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.6; }
-
-.clearfix:before, .clearfix:after, .float-group:before, .float-group:after { content: " "; display: table; }
-.clearfix:after, .float-group:after { clear: both; }
-
-*:not(pre) > code { font-size: 0.9375em; padding: 1px 3px 0; white-space: nowrap; background-color: #f2f2f2; border: 1px solid #cccccc; -webkit-border-radius: 4px; border-radius: 4px; text-shadow: none; }
-
-/*pre, pre > code { line-height: 1.4; color: inherit; font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: normal; }*/
-
-kbd.keyseq { color: #555555; }
-
-kbd:not(.keyseq) { display: inline-block; color: #222222; font-size: 0.75em; line-height: 1.4; background-color: #F7F7F7; border: 1px solid #ccc; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px white inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px white inset; margin: -0.15em 0.15em 0 0.15em; padding: 0.2em 0.6em 0.2em 0.5em; vertical-align: middle; white-space: nowrap; }
-
-kbd kbd:first-child { margin-left: 0; }
-
-kbd kbd:last-child { margin-right: 0; }
-
-.menuseq, .menu { color: #090909; }
-
-p a > code:hover { color: #561309; }
-
-#header, #content, #footnotes, #footer { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5em; *zoom: 1; position: relative; padding-left: 0.9375em; padding-right: 0.9375em; }
-#header:before, #header:after, #content:before, #content:after, #footnotes:before, #footnotes:after, #footer:before, #footer:after { content: " "; display: table; }
-#header:after, #content:after, #footnotes:after, #footer:after { clear: both; }
-
-#header { margin-bottom: 2.5em; }
-#header > h1 { color: black; font-weight: normal; border-bottom: 1px solid #dddddd; margin-bottom: -28px; padding-bottom: 32px; }
-#header span { color: #6f6f6f; }
-#header #revnumber { text-transform: capitalize; }
-#header br { display: none; }
-#header br + span { padding-left: 3px; }
-#header br + span:before { content: "\2013 \0020"; }
-#header br + span.author { padding-left: 0; }
-#header br + span.author:before { content: ", "; }
-
-#toc { border-bottom: 3px double #ebebeb; padding-bottom: 1.25em; }
-#toc > ul { margin-left: 0.25em; }
-#toc ul.sectlevel0 > li > a { font-style: italic; }
-#toc ul.sectlevel0 ul.sectlevel1 { margin-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; }
-#toc ul { list-style-type: none; }
-
-#toctitle { color: #7a2518; }
-
-@media only screen and (min-width: 1280px) { body.toc2 { padding-left: 20em; }
-  #toc.toc2 { position: fixed; width: 20em; left: 0; top: 0; border-right: 1px solid #ebebeb; border-bottom: 0; z-index: 1000; padding: 1em; height: 100%; overflow: auto; }
-  #toc.toc2 #toctitle { margin-top: 0; }
-  #toc.toc2 > ul { font-size: .95em; }
-  #toc.toc2 ul ul { margin-left: 0; padding-left: 1.25em; }
-  #toc.toc2 ul.sectlevel0 ul.sectlevel1 { padding-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; }
-  body.toc2.toc-right { padding-left: 0; padding-right: 20em; }
-  body.toc2.toc-right #toc.toc2 { border-right: 0; border-left: 1px solid #ebebeb; left: auto; right: 0; } }
-#content #toc { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; border-width: 0; -webkit-border-radius: 4px; border-radius: 4px; }
-#content #toc > :first-child { margin-top: 0; }
-#content #toc > :last-child { margin-bottom: 0; }
-#content #toc a { text-decoration: none; }
-
-#content #toctitle { font-weight: bold; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size: 1em; padding-left: 0.125em; }
-
-#footer { max-width: 100%; background-color: #222222; padding: 1.25em; }
-
-#footer-text { color: #dddddd; line-height: 1.44; }
-
-.sect1 { padding-bottom: 1.25em; }
-
-.sect1 + .sect1 { border-top: 3px double #ebebeb; }
-
-#content h1 > a.anchor, h2 > a.anchor, h3 > a.anchor, #toctitle > a.anchor, .sidebarblock > .content > .title > a.anchor, h4 > a.anchor, h5 > a.anchor, h6 > a.anchor { position: absolute; width: 1em; margin-left: -1em; display: block; text-decoration: none; visibility: hidden; text-align: center; font-weight: normal; }
-#content h1 > a.anchor:before, h2 > a.anchor:before, h3 > a.anchor:before, #toctitle > a.anchor:before, .sidebarblock > .content > .title > a.anchor:before, h4 > a.anchor:before, h5 > a.anchor:before, h6 > a.anchor:before { content: '\00A7'; font-size: .85em; vertical-align: text-top; display: block; margin-top: 0.05em; }
-#content h1:hover > a.anchor, #content h1 > a.anchor:hover, h2:hover > a.anchor, h2 > a.anchor:hover, h3:hover > a.anchor, #toctitle:hover > a.anchor, .sidebarblock > .content > .title:hover > a.anchor, h3 > a.anchor:hover, #toctitle > a.anchor:hover, .sidebarblock > .content > .title > a.anchor:hover, h4:hover > a.anchor, h4 > a.anchor:hover, h5:hover > a.anchor, h5 > a.anchor:hover, h6:hover > a.anchor, h6 > a.anchor:hover { visibility: visible; }
-#content h1 > a.link, h2 > a.link, h3 > a.link, #toctitle > a.link, .sidebarblock > .content > .title > a.link, h4 > a.link, h5 > a.link, h6 > a.link { color: #ba3925; text-decoration: none; }
-#content h1 > a.link:hover, h2 > a.link:hover, h3 > a.link:hover, #toctitle > a.link:hover, .sidebarblock > .content > .title > a.link:hover, h4 > a.link:hover, h5 > a.link:hover, h6 > a.link:hover { color: #a53221; }
-
-.imageblock, .literalblock, .listingblock, .verseblock, .videoblock { margin-bottom: 1.25em; }
-
-.admonitionblock td.content > .title, .exampleblock > .title, .imageblock > .title, .videoblock > .title, .listingblock > .title, .literalblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, .sidebarblock > .title, .tableblock > .title, .verseblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { text-align: left; font-weight: bold; }
-
-.tableblock > caption { text-align: left; font-weight: bold; white-space: nowrap; overflow: visible; max-width: 0; }
-
-table.tableblock #preamble > .sectionbody > .paragraph:first-of-type p { font-size: inherit; }
-
-.admonitionblock > table { border: 0; background: none; width: 100%; }
-.admonitionblock > table td.icon { text-align: center; width: 80px; }
-.admonitionblock > table td.icon img { max-width: none; }
-.admonitionblock > table td.icon .title { font-weight: bold; text-transform: uppercase; }
-.admonitionblock > table td.content { padding-left: 1.125em; padding-right: 1.25em; border-left: 1px solid #dddddd; color: #6f6f6f; }
-.admonitionblock > table td.content > :last-child > :last-child { margin-bottom: 0; }
-
-.exampleblock > .content { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; -webkit-border-radius: 4px; border-radius: 4px; }
-.exampleblock > .content > :first-child { margin-top: 0; }
-.exampleblock > .content > :last-child { margin-bottom: 0; }
-.exampleblock > .content h1, .exampleblock > .content h2, .exampleblock > .content h3, .exampleblock > .content #toctitle, .sidebarblock.exampleblock > .content > .title, .exampleblock > .content h4, .exampleblock > .content h5, .exampleblock > .content h6, .exampleblock > .content p { color: #333333; }
-.exampleblock > .content h1, .exampleblock > .content h2, .exampleblock > .content h3, .exampleblock > .content #toctitle, .sidebarblock.exampleblock > .content > .title, .exampleblock > .content h4, .exampleblock > .content h5, .exampleblock > .content h6 { line-height: 1; margin-bottom: 0.625em; }
-.exampleblock > .content h1.subheader, .exampleblock > .content h2.subheader, .exampleblock > .content h3.subheader, .exampleblock > .content .subheader#toctitle, .sidebarblock.exampleblock > .content > .subheader.title, .exampleblock > .content h4.subheader, .exampleblock > .content h5.subheader, .exampleblock > .content h6.subheader { line-height: 1.4; }
-
-.exampleblock.result > .content { -webkit-box-shadow: 0 1px 8px #d9d9d9; box-shadow: 0 1px 8px #d9d9d9; }
-
-.sidebarblock { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 4px; border-radius: 4px; }
-.sidebarblock > :first-child { margin-top: 0; }
-.sidebarblock > :last-child { margin-bottom: 0; }
-.sidebarblock h1, .sidebarblock h2, .sidebarblock h3, .sidebarblock #toctitle, .sidebarblock > .content > .title, .sidebarblock h4, .sidebarblock h5, .sidebarblock h6, .sidebarblock p { color: #333333; }
-.sidebarblock h1, .sidebarblock h2, .sidebarblock h3, .sidebarblock #toctitle, .sidebarblock > .content > .title, .sidebarblock h4, .sidebarblock h5, .sidebarblock h6 { line-height: 1; margin-bottom: 0.625em; }
-.sidebarblock h1.subheader, .sidebarblock h2.subheader, .sidebarblock h3.subheader, .sidebarblock .subheader#toctitle, .sidebarblock > .content > .subheader.title, .sidebarblock h4.subheader, .sidebarblock h5.subheader, .sidebarblock h6.subheader { line-height: 1.4; }
-.sidebarblock > .content > .title { color: #7a2518; margin-top: 0; line-height: 1.6; }
-
-.exampleblock > .content > :last-child > :last-child, .exampleblock > .content .olist > ol > li:last-child > :last-child, .exampleblock > .content .ulist > ul > li:last-child > :last-child, .exampleblock > .content .qlist > ol > li:last-child > :last-child, .sidebarblock > .content > :last-child > :last-child, .sidebarblock > .content .olist > ol > li:last-child > :last-child, .sidebarblock > .content .ulist > ul > li:last-child > :last-child, .sidebarblock > .content .qlist > ol > li:last-child > :last-child { margin-bottom: 0; }
-
-/*.literalblock > .content pre, .listingblock > .content pre { background: none; border-width: 1px 0; border-style: dotted; border-color: #bfbfbf; -webkit-border-radius: 4px; border-radius: 4px; padding: 0.75em 0.75em 0.5em 0.75em; word-wrap: break-word; }*/
-.literalblock > .content pre.nowrap, .listingblock > .content pre.nowrap { overflow-x: auto; white-space: pre; word-wrap: normal; }
-.literalblock > .content pre > code, .listingblock > .content pre > code { display: block; }
-@media only screen { .literalblock > .content pre, .listingblock > .content pre { font-size: 0.8em; } }
-@media only screen and (min-width: 768px) { .literalblock > .content pre, .listingblock > .content pre { font-size: 0.9em; } }
-@media only screen and (min-width: 1280px) { .literalblock > .content pre, .listingblock > .content pre { font-size: 1em; } }
-
-.listingblock > .content { position: relative; }
-
-.listingblock:hover code[class*=" language-"]:before { text-transform: uppercase; font-size: 0.9em; color: #999; position: absolute; top: 0.375em; right: 0.375em; }
-
-.listingblock:hover code.asciidoc:before { content: "asciidoc"; }
-.listingblock:hover code.clojure:before { content: "clojure"; }
-.listingblock:hover code.css:before { content: "css"; }
-.listingblock:hover code.groovy:before { content: "groovy"; }
-.listingblock:hover code.html:before { content: "html"; }
-.listingblock:hover code.java:before { content: "java"; }
-.listingblock:hover code.javascript:before { content: "javascript"; }
-.listingblock:hover code.python:before { content: "python"; }
-.listingblock:hover code.ruby:before { content: "ruby"; }
-.listingblock:hover code.scss:before { content: "scss"; }
-.listingblock:hover code.xml:before { content: "xml"; }
-.listingblock:hover code.yaml:before { content: "yaml"; }
-
-.listingblock.terminal pre .command:before { content: attr(data-prompt); padding-right: 0.5em; color: #999; }
-
-.listingblock.terminal pre .command:not([data-prompt]):before { content: '$'; }
-
-table.pyhltable { border: 0; margin-bottom: 0; }
-
-table.pyhltable td { vertical-align: top; padding-top: 0; padding-bottom: 0; }
-
-table.pyhltable td.code { padding-left: .75em; padding-right: 0; }
-
-.highlight.pygments .lineno, table.pyhltable td:not(.code) { color: #999; padding-left: 0; padding-right: .5em; border-right: 1px solid #dddddd; }
-
-.highlight.pygments .lineno { display: inline-block; margin-right: .25em; }
-
-table.pyhltable .linenodiv { background-color: transparent !important; padding-right: 0 !important; }
-
-.quoteblock { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
-.quoteblock blockquote { margin: 0 0 1.25em 0; padding: 0 0 0.5625em 0; border: 0; }
-.quoteblock blockquote > .paragraph:last-child p { margin-bottom: 0; }
-.quoteblock .attribution { margin-top: -.25em; padding-bottom: 0.5625em; font-size: inherit; color: #555555; }
-.quoteblock .attribution br { display: none; }
-.quoteblock .attribution cite { display: block; margin-bottom: 0.625em; }
-
-table thead th, table tfoot th { font-weight: bold; }
-
-table.tableblock.grid-all { border-collapse: separate; border-spacing: 1px; -webkit-border-radius: 4px; border-radius: 4px; border-top: 1px solid #dddddd; border-bottom: 1px solid #dddddd; }
-
-table.tableblock.frame-topbot, table.tableblock.frame-none { border-left: 0; border-right: 0; }
-
-table.tableblock.frame-sides, table.tableblock.frame-none { border-top: 0; border-bottom: 0; }
-
-table.tableblock td .paragraph:last-child p, table.tableblock td > p:last-child { margin-bottom: 0; }
-
-th.tableblock.halign-left, td.tableblock.halign-left { text-align: left; }
-
-th.tableblock.halign-right, td.tableblock.halign-right { text-align: right; }
-
-th.tableblock.halign-center, td.tableblock.halign-center { text-align: center; }
-
-th.tableblock.valign-top, td.tableblock.valign-top { vertical-align: top; }
-
-th.tableblock.valign-bottom, td.tableblock.valign-bottom { vertical-align: bottom; }
-
-th.tableblock.valign-middle, td.tableblock.valign-middle { vertical-align: middle; }
-
-p.tableblock.header { color: #222222; font-weight: bold; }
-
-td > div.verse { white-space: pre; }
-
-ol { margin-left: 1.75em; }
-
-ul li ol { margin-left: 1.5em; }
-
-dl dd { margin-left: 1.125em; }
-
-dl dd:last-child, dl dd:last-child > :last-child { margin-bottom: 0; }
-
-ol > li p, ul > li p, ul dd, ol dd, .olist .olist, .ulist .ulist, .ulist .olist, .olist .ulist { margin-bottom: 0.625em; }
-
-ul.unstyled, ol.unnumbered, ul.checklist, ul.none { list-style-type: none; }
-
-ul.unstyled, ol.unnumbered, ul.checklist { margin-left: 0.625em; }
-
-ul.checklist li > p:first-child > i[class^="icon-check"]:first-child, ul.checklist li > p:first-child > input[type="checkbox"]:first-child { margin-right: 0.25em; }
-
-ul.checklist li > p:first-child > input[type="checkbox"]:first-child { position: relative; top: 1px; }
-
-ul.inline { margin: 0 auto 0.625em auto; margin-left: -1.375em; margin-right: 0; padding: 0; list-style: none; overflow: hidden; }
-ul.inline > li { list-style: none; float: left; margin-left: 1.375em; display: block; }
-ul.inline > li > * { display: block; }
-
-.unstyled dl dt { font-weight: normal; font-style: normal; }
-
-ol.arabic { list-style-type: decimal; }
-
-ol.decimal { list-style-type: decimal-leading-zero; }
-
-ol.loweralpha { list-style-type: lower-alpha; }
-
-ol.upperalpha { list-style-type: upper-alpha; }
-
-ol.lowerroman { list-style-type: lower-roman; }
-
-ol.upperroman { list-style-type: upper-roman; }
-
-ol.lowergreek { list-style-type: lower-greek; }
-
-.hdlist > table, .colist > table { border: 0; background: none; }
-.hdlist > table > tbody > tr, .colist > table > tbody > tr { background: none; }
-
-td.hdlist1 { padding-right: .8em; font-weight: bold; }
-
-td.hdlist1, td.hdlist2 { vertical-align: top; }
-
-.literalblock + .colist, .listingblock + .colist { margin-top: -0.5em; }
-
-.colist > table tr > td:first-of-type { padding: 0 .8em; line-height: 1; }
-.colist > table tr > td:last-of-type { padding: 0.25em 0; }
-
-.qanda > ol > li > p > em:only-child { color: #00467f; }
-
-.thumb, .th { line-height: 0; display: inline-block; border: solid 4px white; -webkit-box-shadow: 0 0 0 1px #dddddd; box-shadow: 0 0 0 1px #dddddd; }
-
-.imageblock.left, .imageblock[style*="float: left"] { margin: 0.25em 0.625em 1.25em 0; }
-.imageblock.right, .imageblock[style*="float: right"] { margin: 0.25em 0 1.25em 0.625em; }
-.imageblock > .title { margin-bottom: 0; }
-.imageblock.thumb, .imageblock.th { border-width: 6px; }
-.imageblock.thumb > .title, .imageblock.th > .title { padding: 0 0.125em; }
-
-.image.left, .image.right { margin-top: 0.25em; margin-bottom: 0.25em; display: inline-block; line-height: 0; }
-.image.left { margin-right: 0.625em; }
-.image.right { margin-left: 0.625em; }
-
-a.image { text-decoration: none; }
-
-span.footnote, span.footnoteref { vertical-align: super; font-size: 0.875em; }
-span.footnote a, span.footnoteref a { text-decoration: none; }
-
-#footnotes { padding-top: 0.75em; padding-bottom: 0.75em; margin-bottom: 0.625em; }
-#footnotes hr { width: 20%; min-width: 6.25em; margin: -.25em 0 .75em 0; border-width: 1px 0 0 0; }
-#footnotes .footnote { padding: 0 0.375em; line-height: 1.3; font-size: 0.875em; margin-left: 1.2em; text-indent: -1.2em; margin-bottom: .2em; }
-#footnotes .footnote a:first-of-type { font-weight: bold; text-decoration: none; }
-#footnotes .footnote:last-of-type { margin-bottom: 0; }
-
-#content #footnotes { margin-top: -0.625em; margin-bottom: 0; padding: 0.75em 0; }
-
-.gist .file-data > table { border: none; background: #fff; width: 100%; margin-bottom: 0; }
-.gist .file-data > table td.line-data { width: 99%; }
-
-div.unbreakable { page-break-inside: avoid; }
-
-.big { font-size: larger; }
-
-.small { font-size: smaller; }
-
-.underline { text-decoration: underline; }
-
-.overline { text-decoration: overline; }
-
-.line-through { text-decoration: line-through; }
-
-.aqua { color: #00bfbf; }
-
-.aqua-background { background-color: #00fafa; }
-
-.black { color: black; }
-
-.black-background { background-color: black; }
-
-.blue { color: #0000bf; }
-
-.blue-background { background-color: #0000fa; }
-
-.fuchsia { color: #bf00bf; }
-
-.fuchsia-background { background-color: #fa00fa; }
-
-.gray { color: #606060; }
-
-.gray-background { background-color: #7d7d7d; }
-
-.green { color: #006000; }
-
-.green-background { background-color: #007d00; }
-
-.lime { color: #00bf00; }
-
-.lime-background { background-color: #00fa00; }
-
-.maroon { color: #600000; }
-
-.maroon-background { background-color: #7d0000; }
-
-.navy { color: #000060; }
-
-.navy-background { background-color: #00007d; }
-
-.olive { color: #606000; }
-
-.olive-background { background-color: #7d7d00; }
-
-.purple { color: #600060; }
-
-.purple-background { background-color: #7d007d; }
-
-.red { color: #bf0000; }
-
-.red-background { background-color: #fa0000; }
-
-.silver { color: #909090; }
-
-.silver-background { background-color: #bcbcbc; }
-
-.teal { color: #006060; }
-
-.teal-background { background-color: #007d7d; }
-
-.white { color: #bfbfbf; }
-
-.white-background { background-color: #fafafa; }
-
-.yellow { color: #bfbf00; }
-
-.yellow-background { background-color: #fafa00; }
-
-span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
-
-.admonitionblock td.icon [class^="icon-"]:before { font-size: 2.5em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); cursor: default; }
-.admonitionblock td.icon .icon-note:before { content: "\f05a"; color: #005498; color: #003f72; }
-.admonitionblock td.icon .icon-tip:before { content: "\f0eb"; text-shadow: 1px 1px 2px rgba(155, 155, 0, 0.8); color: #111; }
-.admonitionblock td.icon .icon-warning:before { content: "\f071"; color: #bf6900; }
-.admonitionblock td.icon .icon-caution:before { content: "\f06d"; color: #bf3400; }
-.admonitionblock td.icon .icon-important:before { content: "\f06a"; color: #bf0000; }
-
-.conum { display: inline-block; color: white !important; background-color: #222222; -webkit-border-radius: 100px; border-radius: 100px; text-align: center; width: 20px; height: 20px; font-size: 12px; font-weight: bold; line-height: 20px; font-family: Arial, sans-serif; font-style: normal; position: relative; top: -2px; letter-spacing: -1px; }
-.conum * { color: white !important; }
-.conum + b { display: none; }
-.conum:after { content: attr(data-value); }
-.conum:not([data-value]):empty { display: none; }
-
-.literalblock > .content > pre, .listingblock > .content > pre { -webkit-border-radius: 0; border-radius: 0; }
diff --git a/assets/css/base.css b/assets/css/base.css
deleted file mode 100644
index a8a7fe2..0000000
--- a/assets/css/base.css
+++ /dev/null
@@ -1,54 +0,0 @@
-/* Sticky footer styles
--------------------------------------------------- */
-
-html,
-body {
-  height: 100%;
-  /* The html and body elements cannot have any padding or margin. */
-  font-size: 14pt;
-}
-
-/* Wrapper for page content to push down footer */
-#wrap {
-  min-height: 100%;
-  height: auto !important;
-  height: 100%;
-  /* Negative indent footer by it's height */
-  margin: 0 auto -60px;
-}
-
-/* Set the fixed height of the footer here */
-#push,
-#footer {
-  height: 100px;
-}
-#footer {
-  background-color: #f5f5f5;
-  padding: 0;
-  margin: 0;
-}
-
-/* Lastly, apply responsive CSS fixes as necessary */
-@media (max-width: 767px) {
-  #footer {
-    margin-left: -20px;
-    margin-right: -20px;
-    padding-left: 20px;
-    padding-right: 20px;
-  }
-}
-
-/* Custom page CSS
--------------------------------------------------- */
-/* Not required for template or sticky footer method. */
-
-#wrap > .container {
-  padding-top: 60px;
-}
-.container .credit {
-  margin: 20px 0;
-}
-
-/*code {
-  font-size: 80%;
-}*/
diff --git a/assets/css/bootstrap.css b/assets/css/bootstrap.css
deleted file mode 100644
index 9c5849d..0000000
--- a/assets/css/bootstrap.css
+++ /dev/null
@@ -1,4793 +0,0 @@
-/*! Generated by Live LESS Theme Customizer */
-
-/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
-html {
-    font-family: sans-serif;
-    -ms-text-size-adjust: 100%;
-    -webkit-text-size-adjust: 100%;
-}
-body {
-    margin: 0;
-}
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-menu,
-nav,
-section,
-summary {
-    display: block;
-}
-audio,
-canvas,
-progress,
-video {
-    display: inline-block;
-    vertical-align: baseline;
-}
-audio:not([controls]) {
-    display: none;
-    height: 0;
-}
-[hidden],
-template {
-    display: none;
-}
-a {
-    background-color: transparent;
-}
-a:active,
-a:hover {
-    outline: 0;
-}
-abbr[title] {
-    border-bottom: 1px dotted;
-}
-b,
-strong {
-    font-weight: bold;
-}
-dfn {
-    font-style: italic;
-}
-h1 {
-    font-size: 2em;
-    margin: 0.67em 0;
-}
-mark {
-    background: #ff0;
-    color: #000;
-}
-small {
-    font-size: 80%;
-}
-sub,
-sup {
-    font-size: 75%;
-    line-height: 0;
-    position: relative;
-    vertical-align: baseline;
-}
-sup {
-    top: -0.5em;
-}
-sub {
-    bottom: -0.25em;
-}
-img {
-    border: 0;
-}
-svg:not(:root) {
-    overflow: hidden;
-}
-figure {
-    margin: 1em 40px;
-}
-hr {
-    -moz-box-sizing: content-box;
-    box-sizing: content-box;
-    height: 0;
-}
-pre {
-    overflow: auto;
-}
-code,
-kbd,
-pre,
-samp {
-    font-family: monospace, monospace;
-    font-size: 1em;
-}
-button,
-input,
-optgroup,
-select,
-textarea {
-    color: inherit;
-    font: inherit;
-    margin: 0;
-}
-button {
-    overflow: visible;
-}
-button,
-select {
-    text-transform: none;
-}
-button,
-html input[type="button"],
-input[type="reset"],
-input[type="submit"] {
-    -webkit-appearance: button;
-    cursor: pointer;
-}
-button[disabled],
-html input[disabled] {
-    cursor: default;
-}
-button::-moz-focus-inner,
-input::-moz-focus-inner {
-    border: 0;
-    padding: 0;
-}
-input {
-    line-height: normal;
-}
-input[type="checkbox"],
-input[type="radio"] {
-    box-sizing: border-box;
-    padding: 0;
-}
-input[type="number"]::-webkit-inner-spin-button,
-input[type="number"]::-webkit-outer-spin-button {
-    height: auto;
-}
-input[type="search"] {
-    -webkit-appearance: textfield;
-    -moz-box-sizing: content-box;
-    -webkit-box-sizing: content-box;
-    box-sizing: content-box;
-}
-input[type="search"]::-webkit-search-cancel-button,
-input[type="search"]::-webkit-search-decoration {
-    -webkit-appearance: none;
-}
-fieldset {
-    border: 1px solid #c0c0c0;
-    margin: 0 2px;
-    padding: 0.35em 0.625em 0.75em;
-}
-legend {
-    border: 0;
-    padding: 0;
-}
-textarea {
-    overflow: auto;
-}
-optgroup {
-    font-weight: bold;
-}
-table {
-    width:100%;
-    margin-bottom:18px;
-    padding:0;
-    border-collapse:separate;
-    *border-collapse:collapse;
-    font-size:13px;
-    border:1px solid #ddd;
-    -webkit-border-radius:4px;
-    -moz-border-radius:4px;
-    border-radius:4px;
-}
-table th,table td{
-      padding:10px 10px 9px;
-      line-height:18px;
-      text-align:left;
-}
-table th{
-      padding-top:9px;
-      font-weight:bold;
-      vertical-align:middle;
-      border-bottom:1px solid #ddd;
-}
-table td{
-      vertical-align:top;
-}
-table th+th,table td+td{
-      border-left:1px solid #ddd;
-}
-table tr+tr td{
-      border-top:1px solid #ddd;
-}
-td,
-th {
-    padding: 0;
-}
-/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
-@media print {
-    *,
-    *:before,
-    *:after {
-        background: transparent !important;
-        color: #000 !important;
-        box-shadow: none !important;
-        text-shadow: none !important;
-    }
-    a,
-    a:visited {
-        text-decoration: underline;
-    }
-    a[href]:after {
-        content: " (" attr(href) ")";
-    }
-    abbr[title]:after {
-        content: " (" attr(title) ")";
-    }
-    a[href^="#"]:after,
-    a[href^="javascript:"]:after {
-        content: "";
-    }
-    pre,
-    blockquote {
-        border: 1px solid #999;
-        page-break-inside: avoid;
-    }
-    thead {
-        display: table-header-group;
-    }
-    tr,
-    img {
-        page-break-inside: avoid;
-    }
-    img {
-        max-width: 100% !important;
-    }
-    p,
-    h2,
-    h3 {
-        orphans: 3;
-        widows: 3;
-    }
-    h2,
-    h3 {
-        page-break-after: avoid;
-    }
-    select {
-        background: #fff !important;
-    }
-    .navbar {
-        display: none;
-    }
-    .btn > .caret,
-    .dropup > .btn > .caret {
-        border-top-color: #000 !important;
-    }
-    .label {
-        border: 1px solid #000;
-    }
-    .table {
-        border-collapse: collapse !important;
-    }
-    .table td,
-    .table th {
-        background-color: #fff !important;
-    }
-    .table-bordered th,
-    .table-bordered td {
-        border: 1px solid #ddd !important;
-    }
-}
-
-* {
--webkit-box-sizing: border-box;
--moz-box-sizing: border-box;
-box-sizing: border-box;
-}
-*:before,
-*:after {
--webkit-box-sizing: border-box;
--moz-box-sizing: border-box;
-box-sizing: border-box;
-}
-html {
-font-size: 10px;
--webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-body {
-    font-family: "Droid Serif", Georgia, "Times New Roman", Times, serif;
-    font-size: 14px;
-    line-height: 1.42857143;
-    color: #333333;
-    background-color: #ffffff;
-}
-input,
-button,
-select,
-textarea {
-    font-family: inherit;
-    font-size: inherit;
-    line-height: inherit;
-}
-a {
-    color: #585ac2;
-    text-decoration: none;
-}
-a:hover,
-a:focus {
-    color: #373997;
-    text-decoration: underline;
-}
-a:focus {
-    outline: thin dotted;
-    outline: 5px auto -webkit-focus-ring-color;
-    outline-offset: -2px;
-}
-figure {
-    margin: 0;
-}
-img {
-    vertical-align: middle;
-}
-.img-responsive,
-.thumbnail > img,
-.thumbnail a > img,
-.carousel-inner > .item > img,
-.carousel-inner > .item > a > img {
-    display: block;
-    max-width: 100%;
-    height: auto;
-}
-/*
-.img-rounded {
-  border-radius: 0px;
-}
-.img-thumbnail {
-  padding: 4px;
-  line-height: 1.42857143;
-  background-color: #ffffff;
-  border: 1px solid #dddddd;
-  border-radius: 0px;
-  -webkit-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-  display: inline-block;
-  max-width: 100%;
-  height: auto;
-}
-.img-circle {
-  border-radius: 50%;
-}
-*/
-hr {
-    margin-top: 20px;
-    margin-bottom: 20px;
-    border: 0;
-    border-top: 1px solid #eeeeee;
-}
-.sr-only {
-    position: absolute;
-    width: 1px;
-    height: 1px;
-    margin: -1px;
-    padding: 0;
-    overflow: hidden;
-    clip: rect(0, 0, 0, 0);
-    border: 0;
-}
-.sr-only-focusable:active,
-.sr-only-focusable:focus {
-    position: static;
-    width: auto;
-    height: auto;
-    margin: 0;
-    overflow: visible;
-    clip: auto;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6,
-.h1,
-.h2,
-.h3,
-.h4,
-.h5,
-.h6 {
-    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
-    font-weight: 700;
-    line-height: 1.1;
-    color: #303284;
-}
-h1 small,
-h2 small,
-h3 small,
-h4 small,
-h5 small,
-h6 small,
-.h1 small,
-.h2 small,
-.h3 small,
-.h4 small,
-.h5 small,
-.h6 small,
-h1 .small,
-h2 .small,
-h3 .small,
-h4 .small,
-h5 .small,
-h6 .small,
-.h1 .small,
-.h2 .small,
-.h3 .small,
-.h4 .small,
-.h5 .small,
-.h6 .small {
-    font-weight: normal;
-    line-height: 1;
-    color: #777777;
-}
-h1,
-.h1,
-h2,
-.h2,
-h3,
-.h3 {
-    margin-top: 20px;
-    margin-bottom: 10px;
-}
-h1 small,
-.h1 small,
-h2 small,
-.h2 small,
-h3 small,
-.h3 small,
-h1 .small,
-.h1 .small,
-h2 .small,
-.h2 .small,
-h3 .small,
-.h3 .small {
-    font-size: 65%;
-}
-h4,
-.h4,
-h5,
-.h5,
-h6,
-.h6 {
-    margin-top: 10px;
-    margin-bottom: 10px;
-}
-h4 small,
-.h4 small,
-h5 small,
-.h5 small,
-h6 small,
-.h6 small,
-h4 .small,
-.h4 .small,
-h5 .small,
-.h5 .small,
-h6 .small,
-.h6 .small {
-    font-size: 75%;
-}
-h1,
-.h1 {
-    font-size: 42px;
-}
-h2,
-.h2 {
-    font-size: 35px;
-}
-h3,
-.h3 {
-    font-size: 28px;
-}
-h4,
-.h4 {
-    font-size: 21px;
-}
-h5,
-.h5 {
-    font-size: 14px;
-}
-h6,
-.h6 {
-    font-size: 12px;
-}
-p {
-    margin: 0 0 10px;
-}
-/*
-.lead {
-  margin-bottom: 20px;
-  font-size: 16px;
-  font-weight: 300;
-  line-height: 1.4;
-}
-@media (min-width: 768px) {
-  .lead {
-    font-size: 21px;
-  }
-}
-*/
-small,
-.small {
-    font-size: 85%;
-}
-/*
-mark,
-.mark {
-  background-color: #ffdcab;
-  padding: .2em;
-}
-*/
-.text-left {
-    text-align: left;
-}
-.text-right {
-    text-align: right;
-}
-.text-center {
-    text-align: center;
-}
-.text-justify {
-    text-align: justify;
-}
-.text-nowrap {
-    white-space: nowrap;
-}
-.text-lowercase {
-    text-transform: lowercase;
-}
-.text-uppercase {
-    text-transform: uppercase;
-}
-.text-capitalize {
-    text-transform: capitalize;
-}
-.text-muted {
-    color: #777777;
-}
-.text-primary {
-    color: #303284;
-}
-a.text-primary:hover {
-    color: #22245f;
-}
-.text-success {
-    color: #4e844f;
-}
-a.text-success:hover {
-    color: #3b643c;
-}
-.text-info {
-    color: #5d61ea;
-}
-a.text-info:hover {
-    color: #3035e4;
-}
-.text-warning {
-    color: #ab6400;
-}
-a.text-warning:hover {
-    color: #784600;
-}
-.text-danger {
-    color: #842b31;
-}
-a.text-danger:hover {
-    color: #5e1e23;
-}
-.bg-primary {
-    color: #fff;
-    background-color: #303284;
-}
-a.bg-primary:hover {
-    background-color: #22245f;
-}
-.bg-success {
-    background-color: #e3eee3;
-}
-a.bg-success:hover {
-    background-color: #c3dbc3;
-}
-.bg-info {
-    background-color: #e4e5fc;
-}
-a.bg-info:hover {
-    background-color: #b7b9f6;
-}
-.bg-warning {
-    background-color: #ffdcab;
-}
-a.bg-warning:hover {
-    background-color: #ffc778;
-}
-.bg-danger {
-    background-color: #ebc3c5;
-}
-a.bg-danger:hover {
-    background-color: #df9ca1;
-}
-.page-header {
-    padding-bottom: 9px;
-    margin: 40px 0 20px;
-    border-bottom: 1px solid #eeeeee;
-}
-ul,
-ol {
-    margin-top: 0;
-    margin-bottom: 10px;
-}
-ul ul,
-ol ul,
-ul ol,
-ol ol {
-    margin-bottom: 0;
-}
-.list-unstyled {
-    padding-left: 0;
-    list-style: none;
-}
-.list-inline {
-    padding-left: 0;
-    list-style: none;
-    margin-left: -5px;
-}
-.list-inline > li {
-    display: inline-block;
-    padding-left: 5px;
-    padding-right: 5px;
-}
-dl {
-    margin-top: 0;
-    margin-bottom: 20px;
-}
-dt,
-dd {
-    line-height: 1.42857143;
-}
-dt {
-    font-weight: bold;
-}
-dd {
-    margin-left: 0;
-}
-@media (min-width: 768px) {
-    .dl-horizontal dt {
-        float: left;
-        width: 160px;
-        clear: left;
-        text-align: right;
-        overflow: hidden;
-        text-overflow: ellipsis;
-        white-space: nowrap;
-    }
-    .dl-horizontal dd {
-        margin-left: 180px;
-    }
-}
-abbr[title],
-abbr[data-original-title] {
-    cursor: help;
-    border-bottom: 1px dotted #777777;
-}
-.initialism {
-    font-size: 90%;
-    text-transform: uppercase;
-}
-/*
-blockquote {
-  padding: 10px 20px;
-  margin: 0 0 20px;
-  font-size: 17.5px;
-  border-left: 5px solid #5d61ea;
-}
-blockquote p:last-child,
-blockquote ul:last-child,
-blockquote ol:last-child {
-  margin-bottom: 0;
-}
-blockquote footer,
-blockquote small,
-blockquote .small {
-  display: block;
-  font-size: 80%;
-  line-height: 1.42857143;
-  color: #777777;
-}
-blockquote footer:before,
-blockquote small:before,
-blockquote .small:before {
-  content: '\2014 \00A0';
-}
-.blockquote-reverse,
-blockquote.pull-right {
-  padding-right: 15px;
-  padding-left: 0;
-  border-right: 5px solid #5d61ea;
-  border-left: 0;
-  text-align: right;
-}
-.blockquote-reverse footer:before,
-blockquote.pull-right footer:before,
-.blockquote-reverse small:before,
-blockquote.pull-right small:before,
-.blockquote-reverse .small:before,
-blockquote.pull-right .small:before {
-  content: '';
-}
-.blockquote-reverse footer:after,
-blockquote.pull-right footer:after,
-.blockquote-reverse small:after,
-blockquote.pull-right small:after,
-.blockquote-reverse .small:after,
-blockquote.pull-right .small:after {
-  content: '\00A0 \2014';
-}
-*/
-address {
-    margin-bottom: 20px;
-    font-style: normal;
-    line-height: 1.42857143;
-}
-code,
-kbd,
-pre,
-samp {
-    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
-}
-code {
-    padding: 2px 4px;
-    font-size: 90%;
-    color: #303284;
-    background-color: #ffffff;
-    border-radius: 0px;
-}
-kbd {
-    padding: 2px 4px;
-    font-size: 90%;
-    color: #ffffff;
-    background-color: #333333;
-    border-radius: 0px;
-    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-kbd kbd {
-    padding: 0;
-    font-size: 100%;
-    font-weight: bold;
-    box-shadow: none;
-}
-pre {
-    display: block;
-    padding: 9.5px;
-    margin: 0 0 10px;
-    font-size: 13px;
-    line-height: 1.42857143;
-    word-break: break-all;
-    word-wrap: break-word;
-    color: #333333;
-    background-color: #f5f5f5;
-    border: 1px solid #cccccc;
-    border-radius: 0px;
-}
-pre code {
-    padding: 0;
-    font-size: inherit;
-    color: inherit;
-    white-space: pre-wrap;
-    background-color: transparent;
-    border-radius: 0;
-}
-.pre-scrollable {
-    max-height: 340px;
-    overflow-y: scroll;
-}
-.container {
-    margin-right: auto;
-    margin-left: auto;
-    padding-left: 15px;
-    padding-right: 15px;
-}
-@media (min-width: 768px) {
-    .container {
-        width: 750px;
-    }
-}
-@media (min-width: 992px) {
-    .container {
-        width: 970px;
-    }
-}
-@media (min-width: 1200px) {
-    .container {
-        width: 1170px;
-    }
-}
-.container-fluid {
-    margin-right: auto;
-    margin-left: auto;
-    padding-left: 15px;
-    padding-right: 15px;
-}
-.row {
-    margin-left: -15px;
-    margin-right: -15px;
-}
-.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
-    position: relative;
-    min-height: 1px;
-    padding-left: 15px;
-    padding-right: 15px;
-}
-.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
-    float: left;
-}
-.col-xs-12 {
-    width: 100%;
-}
-.col-xs-11 {
-    width: 91.66666667%;
-}
-.col-xs-10 {
-    width: 83.33333333%;
-}
-.col-xs-9 {
-    width: 75%;
-}
-.col-xs-8 {
-    width: 66.66666667%;
-}
-.col-xs-7 {
-    width: 58.33333333%;
-}
-.col-xs-6 {
-    width: 50%;
-}
-.col-xs-5 {
-    width: 41.66666667%;
-}
-.col-xs-4 {
-    width: 33.33333333%;
-}
-.col-xs-3 {
-    width: 25%;
-}
-.col-xs-2 {
-    width: 16.66666667%;
-}
-.col-xs-1 {
-    width: 8.33333333%;
-}
-.col-xs-pull-12 {
-    right: 100%;
-}
-.col-xs-pull-11 {
-    right: 91.66666667%;
-}
-.col-xs-pull-10 {
-    right: 83.33333333%;
-}
-.col-xs-pull-9 {
-    right: 75%;
-}
-.col-xs-pull-8 {
-    right: 66.66666667%;
-}
-.col-xs-pull-7 {
-    right: 58.33333333%;
-}
-.col-xs-pull-6 {
-    right: 50%;
-}
-.col-xs-pull-5 {
-    right: 41.66666667%;
-}
-.col-xs-pull-4 {
-    right: 33.33333333%;
-}
-.col-xs-pull-3 {
-    right: 25%;
-}
-.col-xs-pull-2 {
-    right: 16.66666667%;
-}
-.col-xs-pull-1 {
-    right: 8.33333333%;
-}
-.col-xs-pull-0 {
-    right: auto;
-}
-.col-xs-push-12 {
-    left: 100%;
-}
-.col-xs-push-11 {
-    left: 91.66666667%;
-}
-.col-xs-push-10 {
-    left: 83.33333333%;
-}
-.col-xs-push-9 {
-    left: 75%;
-}
-.col-xs-push-8 {
-    left: 66.66666667%;
-}
-.col-xs-push-7 {
-    left: 58.33333333%;
-}
-.col-xs-push-6 {
-    left: 50%;
-}
-.col-xs-push-5 {
-    left: 41.66666667%;
-}
-.col-xs-push-4 {
-    left: 33.33333333%;
-}
-.col-xs-push-3 {
-    left: 25%;
-}
-.col-xs-push-2 {
-    left: 16.66666667%;
-}
-.col-xs-push-1 {
-    left: 8.33333333%;
-}
-.col-xs-push-0 {
-    left: auto;
-}
-.col-xs-offset-12 {
-    margin-left: 100%;
-}
-.col-xs-offset-11 {
-    margin-left: 91.66666667%;
-}
-.col-xs-offset-10 {
-    margin-left: 83.33333333%;
-}
-.col-xs-offset-9 {
-    margin-left: 75%;
-}
-.col-xs-offset-8 {
-    margin-left: 66.66666667%;
-}
-.col-xs-offset-7 {
-    margin-left: 58.33333333%;
-}
-.col-xs-offset-6 {
-    margin-left: 50%;
-}
-.col-xs-offset-5 {
-    margin-left: 41.66666667%;
-}
-.col-xs-offset-4 {
-    margin-left: 33.33333333%;
-}
-.col-xs-offset-3 {
-    margin-left: 25%;
-}
-.col-xs-offset-2 {
-    margin-left: 16.66666667%;
-}
-.col-xs-offset-1 {
-    margin-left: 8.33333333%;
-}
-.col-xs-offset-0 {
-    margin-left: 0%;
-}
-@media (min-width: 768px) {
-    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
-        float: left;
-    }
-    .col-sm-12 {
-        width: 100%;
-    }
-    .col-sm-11 {
-        width: 91.66666667%;
-    }
-    .col-sm-10 {
-        width: 83.33333333%;
-    }
-    .col-sm-9 {
-        width: 75%;
-    }
-    .col-sm-8 {
-        width: 66.66666667%;
-    }
-    .col-sm-7 {
-        width: 58.33333333%;
-    }
-    .col-sm-6 {
-        width: 50%;
-    }
-    .col-sm-5 {
-        width: 41.66666667%;
-    }
-    .col-sm-4 {
-        width: 33.33333333%;
-    }
-    .col-sm-3 {
-        width: 25%;
-    }
-    .col-sm-2 {
-        width: 16.66666667%;
-    }
-    .col-sm-1 {
-        width: 8.33333333%;
-    }
-    .col-sm-pull-12 {
-        right: 100%;
-    }
-    .col-sm-pull-11 {
-        right: 91.66666667%;
-    }
-    .col-sm-pull-10 {
-        right: 83.33333333%;
-    }
-    .col-sm-pull-9 {
-        right: 75%;
-    }
-    .col-sm-pull-8 {
-        right: 66.66666667%;
-    }
-    .col-sm-pull-7 {
-        right: 58.33333333%;
-    }
-    .col-sm-pull-6 {
-        right: 50%;
-    }
-    .col-sm-pull-5 {
-        right: 41.66666667%;
-    }
-    .col-sm-pull-4 {
-        right: 33.33333333%;
-    }
-    .col-sm-pull-3 {
-        right: 25%;
-    }
-    .col-sm-pull-2 {
-        right: 16.66666667%;
-    }
-    .col-sm-pull-1 {
-        right: 8.33333333%;
-    }
-    .col-sm-pull-0 {
-        right: auto;
-    }
-    .col-sm-push-12 {
-        left: 100%;
-    }
-    .col-sm-push-11 {
-        left: 91.66666667%;
-    }
-    .col-sm-push-10 {
-        left: 83.33333333%;
-    }
-    .col-sm-push-9 {
-        left: 75%;
-    }
-    .col-sm-push-8 {
-        left: 66.66666667%;
-    }
-    .col-sm-push-7 {
-        left: 58.33333333%;
-    }
-    .col-sm-push-6 {
-        left: 50%;
-    }
-    .col-sm-push-5 {
-        left: 41.66666667%;
-    }
-    .col-sm-push-4 {
-        left: 33.33333333%;
-    }
-    .col-sm-push-3 {
-        left: 25%;
-    }
-    .col-sm-push-2 {
-        left: 16.66666667%;
-    }
-    .col-sm-push-1 {
-        left: 8.33333333%;
-    }
-    .col-sm-push-0 {
-        left: auto;
-    }
-    .col-sm-offset-12 {
-        margin-left: 100%;
-    }
-    .col-sm-offset-11 {
-        margin-left: 91.66666667%;
-    }
-    .col-sm-offset-10 {
-        margin-left: 83.33333333%;
-    }
-    .col-sm-offset-9 {
-        margin-left: 75%;
-    }
-    .col-sm-offset-8 {
-        margin-left: 66.66666667%;
-    }
-    .col-sm-offset-7 {
-        margin-left: 58.33333333%;
-    }
-    .col-sm-offset-6 {
-        margin-left: 50%;
-    }
-    .col-sm-offset-5 {
-        margin-left: 41.66666667%;
-    }
-    .col-sm-offset-4 {
-        margin-left: 33.33333333%;
-    }
-    .col-sm-offset-3 {
-        margin-left: 25%;
-    }
-    .col-sm-offset-2 {
-        margin-left: 16.66666667%;
-    }
-    .col-sm-offset-1 {
-        margin-left: 8.33333333%;
-    }
-    .col-sm-offset-0 {
-        margin-left: 0%;
-    }
-}
-@media (min-width: 992px) {
-    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
-        float: left;
-    }
-    .col-md-12 {
-        width: 100%;
-    }
-    .col-md-11 {
-        width: 91.66666667%;
-    }
-    .col-md-10 {
-        width: 83.33333333%;
-    }
-    .col-md-9 {
-        width: 75%;
-    }
-    .col-md-8 {
-        width: 66.66666667%;
-    }
-    .col-md-7 {
-        width: 58.33333333%;
-    }
-    .col-md-6 {
-        width: 50%;
-    }
-    .col-md-5 {
-        width: 41.66666667%;
-    }
-    .col-md-4 {
-        width: 33.33333333%;
-    }
-    .col-md-3 {
-        width: 25%;
-    }
-    .col-md-2 {
-        width: 16.66666667%;
-    }
-    .col-md-1 {
-        width: 8.33333333%;
-    }
-    .col-md-pull-12 {
-        right: 100%;
-    }
-    .col-md-pull-11 {
-        right: 91.66666667%;
-    }
-    .col-md-pull-10 {
-        right: 83.33333333%;
-    }
-    .col-md-pull-9 {
-        right: 75%;
-    }
-    .col-md-pull-8 {
-        right: 66.66666667%;
-    }
-    .col-md-pull-7 {
-        right: 58.33333333%;
-    }
-    .col-md-pull-6 {
-        right: 50%;
-    }
-    .col-md-pull-5 {
-        right: 41.66666667%;
-    }
-    .col-md-pull-4 {
-        right: 33.33333333%;
-    }
-    .col-md-pull-3 {
-        right: 25%;
-    }
-    .col-md-pull-2 {
-        right: 16.66666667%;
-    }
-    .col-md-pull-1 {
-        right: 8.33333333%;
-    }
-    .col-md-pull-0 {
-        right: auto;
-    }
-    .col-md-push-12 {
-        left: 100%;
-    }
-    .col-md-push-11 {
-        left: 91.66666667%;
-    }
-    .col-md-push-10 {
-        left: 83.33333333%;
-    }
-    .col-md-push-9 {
-        left: 75%;
-    }
-    .col-md-push-8 {
-        left: 66.66666667%;
-    }
-    .col-md-push-7 {
-        left: 58.33333333%;
-    }
-    .col-md-push-6 {
-        left: 50%;
-    }
-    .col-md-push-5 {
-        left: 41.66666667%;
-    }
-    .col-md-push-4 {
-        left: 33.33333333%;
-    }
-    .col-md-push-3 {
-        left: 25%;
-    }
-    .col-md-push-2 {
-        left: 16.66666667%;
-    }
-    .col-md-push-1 {
-        left: 8.33333333%;
-    }
-    .col-md-push-0 {
-        left: auto;
-    }
-    .col-md-offset-12 {
-        margin-left: 100%;
-    }
-    .col-md-offset-11 {
-        margin-left: 91.66666667%;
-    }
-    .col-md-offset-10 {
-        margin-left: 83.33333333%;
-    }
-    .col-md-offset-9 {
-        margin-left: 75%;
-    }
-    .col-md-offset-8 {
-        margin-left: 66.66666667%;
-    }
-    .col-md-offset-7 {
-        margin-left: 58.33333333%;
-    }
-    .col-md-offset-6 {
-        margin-left: 50%;
-    }
-    .col-md-offset-5 {
-        margin-left: 41.66666667%;
-    }
-    .col-md-offset-4 {
-        margin-left: 33.33333333%;
-    }
-    .col-md-offset-3 {
-        margin-left: 25%;
-    }
-    .col-md-offset-2 {
-        margin-left: 16.66666667%;
-    }
-    .col-md-offset-1 {
-        margin-left: 8.33333333%;
-    }
-    .col-md-offset-0 {
-        margin-left: 0%;
-    }
-}
-@media (min-width: 1200px) {
-    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
-        float: left;
-    }
-    .col-lg-12 {
-        width: 100%;
-    }
-    .col-lg-11 {
-        width: 91.66666667%;
-    }
-    .col-lg-10 {
-        width: 83.33333333%;
-    }
-    .col-lg-9 {
-        width: 75%;
-    }
-    .col-lg-8 {
-        width: 66.66666667%;
-    }
-    .col-lg-7 {
-        width: 58.33333333%;
-    }
-    .col-lg-6 {
-        width: 50%;
-    }
-    .col-lg-5 {
-        width: 41.66666667%;
-    }
-    .col-lg-4 {
-        width: 33.33333333%;
-    }
-    .col-lg-3 {
-        width: 25%;
-    }
-    .col-lg-2 {
-        width: 16.66666667%;
-    }
-    .col-lg-1 {
-        width: 8.33333333%;
-    }
-    .col-lg-pull-12 {
-        right: 100%;
-    }
-    .col-lg-pull-11 {
-        right: 91.66666667%;
-    }
-    .col-lg-pull-10 {
-        right: 83.33333333%;
-    }
-    .col-lg-pull-9 {
-        right: 75%;
-    }
-    .col-lg-pull-8 {
-        right: 66.66666667%;
-    }
-    .col-lg-pull-7 {
-        right: 58.33333333%;
-    }
-    .col-lg-pull-6 {
-        right: 50%;
-    }
-    .col-lg-pull-5 {
-        right: 41.66666667%;
-    }
-    .col-lg-pull-4 {
-        right: 33.33333333%;
-    }
-    .col-lg-pull-3 {
-        right: 25%;
-    }
-    .col-lg-pull-2 {
-        right: 16.66666667%;
-    }
-    .col-lg-pull-1 {
-        right: 8.33333333%;
-    }
-    .col-lg-pull-0 {
-        right: auto;
-    }
-    .col-lg-push-12 {
-        left: 100%;
-    }
-    .col-lg-push-11 {
-        left: 91.66666667%;
-    }
-    .col-lg-push-10 {
-        left: 83.33333333%;
-    }
-    .col-lg-push-9 {
-        left: 75%;
-    }
-    .col-lg-push-8 {
-        left: 66.66666667%;
-    }
-    .col-lg-push-7 {
-        left: 58.33333333%;
-    }
-    .col-lg-push-6 {
-        left: 50%;
-    }
-    .col-lg-push-5 {
-        left: 41.66666667%;
-    }
-    .col-lg-push-4 {
-        left: 33.33333333%;
-    }
-    .col-lg-push-3 {
-        left: 25%;
-    }
-    .col-lg-push-2 {
-        left: 16.66666667%;
-    }
-    .col-lg-push-1 {
-        left: 8.33333333%;
-    }
-    .col-lg-push-0 {
-        left: auto;
-    }
-    .col-lg-offset-12 {
-        margin-left: 100%;
-    }
-    .col-lg-offset-11 {
-        margin-left: 91.66666667%;
-    }
-    .col-lg-offset-10 {
-        margin-left: 83.33333333%;
-    }
-    .col-lg-offset-9 {
-        margin-left: 75%;
-    }
-    .col-lg-offset-8 {
-        margin-left: 66.66666667%;
-    }
-    .col-lg-offset-7 {
-        margin-left: 58.33333333%;
-    }
-    .col-lg-offset-6 {
-        margin-left: 50%;
-    }
-    .col-lg-offset-5 {
-        margin-left: 41.66666667%;
-    }
-    .col-lg-offset-4 {
-        margin-left: 33.33333333%;
-    }
-    .col-lg-offset-3 {
-        margin-left: 25%;
-    }
-    .col-lg-offset-2 {
-        margin-left: 16.66666667%;
-    }
-    .col-lg-offset-1 {
-        margin-left: 8.33333333%;
-    }
-    .col-lg-offset-0 {
-        margin-left: 0%;
-    }
-}
-/*
-table {
-  background-color: rgba(0, 0, 0, 0);
-}
-caption {
-  padding-top: 8px;
-  padding-bottom: 8px;
-  color: #777777;
-  text-align: left;
-}
-th {
-  text-align: left;
-}
-.table {
-  width: 100%;
-  max-width: 100%;
-  margin-bottom: 20px;
-}
-.table > thead > tr > th,
-.table > tbody > tr > th,
-.table > tfoot > tr > th,
-.table > thead > tr > td,
-.table > tbody > tr > td,
-.table > tfoot > tr > td {
-  padding: 8px;
-  line-height: 1.42857143;
-  vertical-align: top;
-  border-top: 1px solid #dddddd;
-}
-.table > thead > tr > th {
-  vertical-align: bottom;
-  border-bottom: 2px solid #dddddd;
-}
-.table > caption + thead > tr:first-child > th,
-.table > colgroup + thead > tr:first-child > th,
-.table > thead:first-child > tr:first-child > th,
-.table > caption + thead > tr:first-child > td,
-.table > colgroup + thead > tr:first-child > td,
-.table > thead:first-child > tr:first-child > td {
-  border-top: 0;
-}
-.table > tbody + tbody {
-  border-top: 2px solid #dddddd;
-}
-.table .table {
-  background-color: #ffffff;
-}
-.table-condensed > thead > tr > th,
-.table-condensed > tbody > tr > th,
-.table-condensed > tfoot > tr > th,
-.table-condensed > thead > tr > td,
-.table-condensed > tbody > tr > td,
-.table-condensed > tfoot > tr > td {
-  padding: 5px;
-}
-.table-bordered {
-  border: 1px solid #dddddd;
-}
-.table-bordered > thead > tr > th,
-.table-bordered > tbody > tr > th,
-.table-bordered > tfoot > tr > th,
-.table-bordered > thead > tr > td,
-.table-bordered > tbody > tr > td,
-.table-bordered > tfoot > tr > td {
-  border: 1px solid #dddddd;
-}
-.table-bordered > thead > tr > th,
-.table-bordered > thead > tr > td {
-  border-bottom-width: 2px;
-}
-.table-striped > tbody > tr:nth-of-type(odd) {
-  background-color: #f9f9f9;
-}
-.table-hover > tbody > tr:hover {
-  background-color: #f5f5f5;
-}
-table col[class*="col-"] {
-  position: static;
-  float: none;
-  display: table-column;
-}
-table td[class*="col-"],
-table th[class*="col-"] {
-  position: static;
-  float: none;
-  display: table-cell;
-}
-.table > thead > tr > td.active,
-.table > tbody > tr > td.active,
-.table > tfoot > tr > td.active,
-.table > thead > tr > th.active,
-.table > tbody > tr > th.active,
-.table > tfoot > tr > th.active,
-.table > thead > tr.active > td,
-.table > tbody > tr.active > td,
-.table > tfoot > tr.active > td,
-.table > thead > tr.active > th,
-.table > tbody > tr.active > th,
-.table > tfoot > tr.active > th {
-  background-color: #f5f5f5;
-}
-.table-hover > tbody > tr > td.active:hover,
-.table-hover > tbody > tr > th.active:hover,
-.table-hover > tbody > tr.active:hover > td,
-.table-hover > tbody > tr:hover > .active,
-.table-hover > tbody > tr.active:hover > th {
-  background-color: #e8e8e8;
-}
-.table > thead > tr > td.success,
-.table > tbody > tr > td.success,
-.table > tfoot > tr > td.success,
-.table > thead > tr > th.success,
-.table > tbody > tr > th.success,
-.table > tfoot > tr > th.success,
-.table > thead > tr.success > td,
-.table > tbody > tr.success > td,
-.table > tfoot > tr.success > td,
-.table > thead > tr.success > th,
-.table > tbody > tr.success > th,
-.table > tfoot > tr.success > th {
-  background-color: #e3eee3;
-}
-.table-hover > tbody > tr > td.success:hover,
-.table-hover > tbody > tr > th.success:hover,
-.table-hover > tbody > tr.success:hover > td,
-.table-hover > tbody > tr:hover > .success,
-.table-hover > tbody > tr.success:hover > th {
-  background-color: #d3e5d3;
-}
-.table > thead > tr > td.info,
-.table > tbody > tr > td.info,
-.table > tfoot > tr > td.info,
-.table > thead > tr > th.info,
-.table > tbody > tr > th.info,
-.table > tfoot > tr > th.info,
-.table > thead > tr.info > td,
-.table > tbody > tr.info > td,
-.table > tfoot > tr.info > td,
-.table > thead > tr.info > th,
-.table > tbody > tr.info > th,
-.table > tfoot > tr.info > th {
-  background-color: #e4e5fc;
-}
-.table-hover > tbody > tr > td.info:hover,
-.table-hover > tbody > tr > th.info:hover,
-.table-hover > tbody > tr.info:hover > td,
-.table-hover > tbody > tr:hover > .info,
-.table-hover > tbody > tr.info:hover > th {
-  background-color: #cecff9;
-}
-.table > thead > tr > td.warning,
-.table > tbody > tr > td.warning,
-.table > tfoot > tr > td.warning,
-.table > thead > tr > th.warning,
-.table > tbody > tr > th.warning,
-.table > tfoot > tr > th.warning,
-.table > thead > tr.warning > td,
-.table > tbody > tr.warning > td,
-.table > tfoot > tr.warning > td,
-.table > thead > tr.warning > th,
-.table > tbody > tr.warning > th,
-.table > tfoot > tr.warning > th {
-  background-color: #ffdcab;
-}
-.table-hover > tbody > tr > td.warning:hover,
-.table-hover > tbody > tr > th.warning:hover,
-.table-hover > tbody > tr.warning:hover > td,
-.table-hover > tbody > tr:hover > .warning,
-.table-hover > tbody > tr.warning:hover > th {
-  background-color: #ffd291;
-}
-.table > thead > tr > td.danger,
-.table > tbody > tr > td.danger,
-.table > tfoot > tr > td.danger,
-.table > thead > tr > th.danger,
-.table > tbody > tr > th.danger,
-.table > tfoot > tr > th.danger,
-.table > thead > tr.danger > td,
-.table > tbody > tr.danger > td,
-.table > tfoot > tr.danger > td,
-.table > thead > tr.danger > th,
-.table > tbody > tr.danger > th,
-.table > tfoot > tr.danger > th {
-  background-color: #ebc3c5;
-}
-.table-hover > tbody > tr > td.danger:hover,
-.table-hover > tbody > tr > th.danger:hover,
-.table-hover > tbody > tr.danger:hover > td,
-.table-hover > tbody > tr:hover > .danger,
-.table-hover > tbody > tr.danger:hover > th {
-  background-color: #e5afb3;
-}
-.table-responsive {
-  overflow-x: auto;
-  min-height: 0.01%;
-}
-@media screen and (max-width: 767px) {
-  .table-responsive {
-    width: 100%;
-    margin-bottom: 15px;
-    overflow-y: hidden;
-    -ms-overflow-style: -ms-autohiding-scrollbar;
-    border: 1px solid #dddddd;
-  }
-  .table-responsive > .table {
-    margin-bottom: 0;
-  }
-  .table-responsive > .table > thead > tr > th,
-  .table-responsive > .table > tbody > tr > th,
-  .table-responsive > .table > tfoot > tr > th,
-  .table-responsive > .table > thead > tr > td,
-  .table-responsive > .table > tbody > tr > td,
-  .table-responsive > .table > tfoot > tr > td {
-    white-space: nowrap;
-  }
-  .table-responsive > .table-bordered {
-    border: 0;
-  }
-  .table-responsive > .table-bordered > thead > tr > th:first-child,
-  .table-responsive > .table-bordered > tbody > tr > th:first-child,
-  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
-  .table-responsive > .table-bordered > thead > tr > td:first-child,
-  .table-responsive > .table-bordered > tbody > tr > td:first-child,
-  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
-    border-left: 0;
-  }
-  .table-responsive > .table-bordered > thead > tr > th:last-child,
-  .table-responsive > .table-bordered > tbody > tr > th:last-child,
-  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
-  .table-responsive > .table-bordered > thead > tr > td:last-child,
-  .table-responsive > .table-bordered > tbody > tr > td:last-child,
-  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
-    border-right: 0;
-  }
-  .table-responsive > .table-bordered > tbody > tr:last-child > th,
-  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
-  .table-responsive > .table-bordered > tbody > tr:last-child > td,
-  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
-    border-bottom: 0;
-  }
-}
-fieldset {
-  padding: 0;
-  margin: 0;
-  border: 0;
-  min-width: 0;
-}
-legend {
-  display: block;
-  width: 100%;
-  padding: 0;
-  margin-bottom: 20px;
-  font-size: 21px;
-  line-height: inherit;
-  color: #333333;
-  border: 0;
-  border-bottom: 1px solid #e5e5e5;
-}
-label {
-  display: inline-block;
-  max-width: 100%;
-  margin-bottom: 5px;
-  font-weight: bold;
-}
-*/
-input[type="search"] {
-    -webkit-box-sizing: border-box;
-    -moz-box-sizing: border-box;
-    box-sizing: border-box;
-}
-input[type="radio"],
-input[type="checkbox"] {
-    margin: 4px 0 0;
-    margin-top: 1px \9;
-    line-height: normal;
-}
-input[type="file"] {
-    display: block;
-}
-input[type="range"] {
-    display: block;
-    width: 100%;
-}
-select[multiple],
-select[size] {
-    height: auto;
-}
-input[type="file"]:focus,
-input[type="radio"]:focus,
-input[type="checkbox"]:focus {
-    outline: thin dotted;
-    outline: 5px auto -webkit-focus-ring-color;
-    outline-offset: -2px;
-}
-output {
-    display: block;
-    padding-top: 6px;
-    font-size: 14px;
-    line-height: 1.42857143;
-    color: #555555;
-}
-.form-control {
-    display: block;
-    width: 100%;
-    height: 32px;
-    padding: 5px 10px;
-    font-size: 14px;
-    line-height: 1.42857143;
-    color: #555555;
-    background-color: #ffffff;
-    background-image: none;
-    border: 1px solid #cccccc;
-    border-radius: 0px;
-    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-}
-.form-control:focus {
-    border-color: #303284;
-    outline: 0;
-    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(48, 50, 132, 0.6);
-    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(48, 50, 132, 0.6);
-}
-.form-control::-moz-placeholder {
-    color: #999999;
-    opacity: 1;
-}
-.form-control:-ms-input-placeholder {
-    color: #999999;
-}
-.form-control::-webkit-input-placeholder {
-    color: #999999;
-}
-.form-control[disabled],
-.form-control[readonly],
-fieldset[disabled] .form-control {
-    cursor: not-allowed;
-    background-color: #eeeeee;
-    opacity: 1;
-}
-textarea.form-control {
-    height: auto;
-}
-input[type="search"] {
-    -webkit-appearance: none;
-}
-@media screen and (-webkit-min-device-pixel-ratio: 0) {
-    input[type="date"],
-    input[type="time"],
-    input[type="datetime-local"],
-    input[type="month"] {
-        line-height: 32px;
-    }
-    input[type="date"].input-sm,
-    input[type="time"].input-sm,
-    input[type="datetime-local"].input-sm,
-    input[type="month"].input-sm,
-    .input-group-sm input[type="date"],
-    .input-group-sm input[type="time"],
-    .input-group-sm input[type="datetime-local"],
-    .input-group-sm input[type="month"] {
-        line-height: 26px;
-    }
-    input[type="date"].input-lg,
-    input[type="time"].input-lg,
-    input[type="datetime-local"].input-lg,
-    input[type="month"].input-lg,
-    .input-group-lg input[type="date"],
-    .input-group-lg input[type="time"],
-    .input-group-lg input[type="datetime-local"],
-    .input-group-lg input[type="month"] {
-        line-height: 46px;
-    }
-}
-.form-group {
-    margin-bottom: 15px;
-}
-.radio,
-.checkbox {
-    position: relative;
-    display: block;
-    margin-top: 10px;
-    margin-bottom: 10px;
-}
-.radio label,
-.checkbox label {
-    min-height: 20px;
-    padding-left: 20px;
-    margin-bottom: 0;
-    font-weight: normal;
-    cursor: pointer;
-}
-.radio input[type="radio"],
-.radio-inline input[type="radio"],
-.checkbox input[type="checkbox"],
-.checkbox-inline input[type="checkbox"] {
-    position: absolute;
-    margin-left: -20px;
-    margin-top: 4px \9;
-}
-.radio + .radio,
-.checkbox + .checkbox {
-    margin-top: -5px;
-}
-.radio-inline,
-.checkbox-inline {
-    display: inline-block;
-    padding-left: 20px;
-    margin-bottom: 0;
-    vertical-align: middle;
-    font-weight: normal;
-    cursor: pointer;
-}
-.radio-inline + .radio-inline,
-.checkbox-inline + .checkbox-inline {
-    margin-top: 0;
-    margin-left: 10px;
-}
-input[type="radio"][disabled],
-input[type="checkbox"][disabled],
-input[type="radio"].disabled,
-input[type="checkbox"].disabled,
-fieldset[disabled] input[type="radio"],
-fieldset[disabled] input[type="checkbox"] {
-    cursor: not-allowed;
-}
-.radio-inline.disabled,
-.checkbox-inline.disabled,
-fieldset[disabled] .radio-inline,
-fieldset[disabled] .checkbox-inline {
-    cursor: not-allowed;
-}
-.radio.disabled label,
-.checkbox.disabled label,
-fieldset[disabled] .radio label,
-fieldset[disabled] .checkbox label {
-    cursor: not-allowed;
-}
-.form-control-static {
-    padding-top: 6px;
-    padding-bottom: 6px;
-    margin-bottom: 0;
-}
-.form-control-static.input-lg,
-.form-control-static.input-sm {
-    padding-left: 0;
-    padding-right: 0;
-}
-.input-sm {
-    height: 26px;
-    padding: 3px 12px;
-    font-size: 12px;
-    line-height: 1.5;
-    border-radius: 0px;
-}
-select.input-sm {
-    height: 26px;
-    line-height: 26px;
-}
-textarea.input-sm,
-select[multiple].input-sm {
-    height: auto;
-}
-.form-group-sm .form-control {
-    height: 26px;
-    padding: 3px 12px;
-    font-size: 12px;
-    line-height: 1.5;
-    border-radius: 0px;
-}
-select.form-group-sm .form-control {
-    height: 26px;
-    line-height: 26px;
-}
-textarea.form-group-sm .form-control,
-select[multiple].form-group-sm .form-control {
-    height: auto;
-}
-.form-group-sm .form-control-static {
-    height: 26px;
-    padding: 3px 12px;
-    font-size: 12px;
-    line-height: 1.5;
-}
-.input-lg {
-    height: 46px;
-    padding: 10px 20px;
-    font-size: 18px;
-    line-height: 1.33;
-    border-radius: 0px;
-}
-select.input-lg {
-    height: 46px;
-    line-height: 46px;
-}
-textarea.input-lg,
-select[multiple].input-lg {
-    height: auto;
-}
-.form-group-lg .form-control {
-    height: 46px;
-    padding: 10px 20px;
-    font-size: 18px;
-    line-height: 1.33;
-    border-radius: 0px;
-}
-select.form-group-lg .form-control {
-    height: 46px;
-    line-height: 46px;
-}
-textarea.form-group-lg .form-control,
-select[multiple].form-group-lg .form-control {
-    height: auto;
-}
-.form-group-lg .form-control-static {
-    height: 46px;
-    padding: 10px 20px;
-    font-size: 18px;
-    line-height: 1.33;
-}
-.has-feedback {
-    position: relative;
-}
-.has-feedback .form-control {
-    padding-right: 40px;
-}
-.form-control-feedback {
-    position: absolute;
-    top: 0;
-    right: 0;
-    z-index: 2;
-    display: block;
-    width: 32px;
-    height: 32px;
-    line-height: 32px;
-    text-align: center;
-    pointer-events: none;
-}
-.input-lg + .form-control-feedback {
-    width: 46px;
-    height: 46px;
-    line-height: 46px;
-}
-.input-sm + .form-control-feedback {
-    width: 26px;
-    height: 26px;
-    line-height: 26px;
-}
-.has-success .help-block,
-.has-success .control-label,
-.has-success .radio,
-.has-success .checkbox,
-.has-success .radio-inline,
-.has-success .checkbox-inline,
-.has-success.radio label,
-.has-success.checkbox label,
-.has-success.radio-inline label,
-.has-success.checkbox-inline label {
-    color: #4e844f;
-}
-.has-success .form-control {
-    border-color: #4e844f;
-    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-.has-success .form-control:focus {
-    border-color: #3b643c;
-    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #83b583;
-    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #83b583;
-}
-.has-success .input-group-addon {
-    color: #4e844f;
-    border-color: #4e844f;
-    background-color: #e3eee3;
-}
-.has-success .form-control-feedback {
-    color: #4e844f;
-}
-.has-warning .help-block,
-.has-warning .control-label,
-.has-warning .radio,
-.has-warning .checkbox,
-.has-warning .radio-inline,
-.has-warning .checkbox-inline,
-.has-warning.radio label,
-.has-warning.checkbox label,
-.has-warning.radio-inline label,
-.has-warning.checkbox-inline label {
-    color: #ab6400;
-}
-.has-warning .form-control {
-    border-color: #ab6400;
-    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-.has-warning .form-control:focus {
-    border-color: #784600;
-    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff9d12;
-    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff9d12;
-}
-.has-warning .input-group-addon {
-    color: #ab6400;
-    border-color: #ab6400;
-    background-color: #ffdcab;
-}
-.has-warning .form-control-feedback {
-    color: #ab6400;
-}
-.has-error .help-block,
-.has-error .control-label,
-.has-error .radio,
-.has-error .checkbox,
-.has-error .radio-inline,
-.has-error .checkbox-inline,
-.has-error.radio label,
-.has-error.checkbox label,
-.has-error.radio-inline label,
-.has-error.checkbox-inline label {
-    color: #842b31;
-}
-.has-error .form-control {
-    border-color: #842b31;
-    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-.has-error .form-control:focus {
-    border-color: #5e1e23;
-    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c64f57;
-    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c64f57;
-}
-.has-error .input-group-addon {
-    color: #842b31;
-    border-color: #842b31;
-    background-color: #ebc3c5;
-}
-.has-error .form-control-feedback {
-    color: #842b31;
-}
-.has-feedback label ~ .form-control-feedback {
-    top: 25px;
-}
-.has-feedback label.sr-only ~ .form-control-feedback {
-    top: 0;
-}
-.help-block {
-    display: block;
-    margin-top: 5px;
-    margin-bottom: 10px;
-    color: #737373;
-}
-@media (min-width: 768px) {
-    .form-inline .form-group {
-        display: inline-block;
-        margin-bottom: 0;
-        vertical-align: middle;
-    }
-    .form-inline .form-control {
-        display: inline-block;
-        width: auto;
-        vertical-align: middle;
-    }
-    .form-inline .form-control-static {
-        display: inline-block;
-    }
-    .form-inline .input-group {
-        display: inline-table;
-        vertical-align: middle;
-    }
-    .form-inline .input-group .input-group-addon,
-    .form-inline .input-group .input-group-btn,
-    .form-inline .input-group .form-control {
-        width: auto;
-    }
-    .form-inline .input-group > .form-control {
-        width: 100%;
-    }
-    .form-inline .control-label {
-        margin-bottom: 0;
-        vertical-align: middle;
-    }
-    .form-inline .radio,
-    .form-inline .checkbox {
-        display: inline-block;
-        margin-top: 0;
-        margin-bottom: 0;
-        vertical-align: middle;
-    }
-    .form-inline .radio label,
-    .form-inline .checkbox label {
-        padding-left: 0;
-    }
-    .form-inline .radio input[type="radio"],
-    .form-inline .checkbox input[type="checkbox"] {
-        position: relative;
-        margin-left: 0;
-    }
-    .form-inline .has-feedback .form-control-feedback {
-        top: 0;
-    }
-}
-.form-horizontal .radio,
-.form-horizontal .checkbox,
-.form-horizontal .radio-inline,
-.form-horizontal .checkbox-inline {
-    margin-top: 0;
-    margin-bottom: 0;
-    padding-top: 6px;
-}
-.form-horizontal .radio,
-.form-horizontal .checkbox {
-    min-height: 26px;
-}
-.form-horizontal .form-group {
-    margin-left: -15px;
-    margin-right: -15px;
-}
-@media (min-width: 768px) {
-    .form-horizontal .control-label {
-        text-align: right;
-        margin-bottom: 0;
-        padding-top: 6px;
-    }
-}
-.form-horizontal .has-feedback .form-control-feedback {
-    right: 15px;
-}
-@media (min-width: 768px) {
-    .form-horizontal .form-group-lg .control-label {
-        padding-top: 14.3px;
-    }
-}
-@media (min-width: 768px) {
-    .form-horizontal .form-group-sm .control-label {
-        padding-top: 4px;
-    }
-}
-.btn {
-    display: inline-block;
-    margin-bottom: 0;
-    font-weight: normal;
-    text-align: center;
-    vertical-align: middle;
-    touch-action: manipulation;
-    cursor: pointer;
-    background-image: none;
-    border: 1px solid transparent;
-    white-space: nowrap;
-    padding: 5px 10px;
-    font-size: 14px;
-    line-height: 1.42857143;
-    border-radius: 0px;
-    -webkit-user-select: none;
-    -moz-user-select: none;
-    -ms-user-select: none;
-    user-select: none;
-}
-.btn:focus,
-.btn:active:focus,
-.btn.active:focus,
-.btn.focus,
-.btn:active.focus,
-.btn.active.focus {
-    outline: thin dotted;
-    outline: 5px auto -webkit-focus-ring-color;
-    outline-offset: -2px;
-}
-.btn:hover,
-.btn:focus,
-.btn.focus {
-    color: #303284;
-    text-decoration: none;
-}
-.btn:active,
-.btn.active {
-    outline: 0;
-    background-image: none;
-    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
-    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
-}
-.btn.disabled,
-.btn[disabled],
-fieldset[disabled] .btn {
-    cursor: not-allowed;
-    pointer-events: none;
-    opacity: 0.65;
-    filter: alpha(opacity=65);
-    -webkit-box-shadow: none;
-    box-shadow: none;
-}
-.btn-default {
-    color: #303284;
-    background-color: #ffffff;
-    border-color: #303284;
-}
-.btn-default:hover,
-.btn-default:focus,
-.btn-default.focus,
-.btn-default:active,
-.btn-default.active,
-.open > .dropdown-toggle.btn-default {
-    color: #303284;
-    background-color: #e6e6e6;
-    border-color: #202157;
-}
-.btn-default:active,
-.btn-default.active,
-.open > .dropdown-toggle.btn-default {
-    background-image: none;
-}
-.btn-default.disabled,
-.btn-default[disabled],
-fieldset[disabled] .btn-default,
-.btn-default.disabled:hover,
-.btn-default[disabled]:hover,
-fieldset[disabled] .btn-default:hover,
-.btn-default.disabled:focus,
-.btn-default[disabled]:focus,
-fieldset[disabled] .btn-default:focus,
-.btn-default.disabled.focus,
-.btn-default[disabled].focus,
-fieldset[disabled] .btn-default.focus,
-.btn-default.disabled:active,
-.btn-default[disabled]:active,
-fieldset[disabled] .btn-default:active,
-.btn-default.disabled.active,
-.btn-default[disabled].active,
-fieldset[disabled] .btn-default.active {
-    background-color: #ffffff;
-    border-color: #303284;
-}
-.btn-default .badge {
-    color: #ffffff;
-    background-color: #303284;
-}
-.btn-primary {
-    color: #ffffff;
-    background-color: #303284;
-    border-color: #292b71;
-}
-.btn-primary:hover,
-.btn-primary:focus,
-.btn-primary.focus,
-.btn-primary:active,
-.btn-primary.active,
-.open > .dropdown-toggle.btn-primary {
-    color: #ffffff;
-    background-color: #22245f;
-    border-color: #191a44;
-}
-.btn-primary:active,
-.btn-primary.active,
-.open > .dropdown-toggle.btn-primary {
-    background-image: none;
-}
-.btn-primary.disabled,
-.btn-primary[disabled],
-fieldset[disabled] .btn-primary,
-.btn-primary.disabled:hover,
-.btn-primary[disabled]:hover,
-fieldset[disabled] .btn-primary:hover,
-.btn-primary.disabled:focus,
-.btn-primary[disabled]:focus,
-fieldset[disabled] .btn-primary:focus,
-.btn-primary.disabled.focus,
-.btn-primary[disabled].focus,
-fieldset[disabled] .btn-primary.focus,
-.btn-primary.disabled:active,
-.btn-primary[disabled]:active,
-fieldset[disabled] .btn-primary:active,
-.btn-primary.disabled.active,
-.btn-primary[disabled].active,
-fieldset[disabled] .btn-primary.active {
-    background-color: #303284;
-    border-color: #292b71;
-}
-.btn-primary .badge {
-    color: #303284;
-    background-color: #ffffff;
-}
-.btn-success {
-    color: #ffffff;
-    background-color: #4e844f;
-    border-color: #457445;
-}
-.btn-success:hover,
-.btn-success:focus,
-.btn-success.focus,
-.btn-success:active,
-.btn-success.active,
-.open > .dropdown-toggle.btn-success {
-    color: #ffffff;
-    background-color: #3b643c;
-    border-color: #2e4e2e;
-}
-.btn-success:active,
-.btn-success.active,
-.open > .dropdown-toggle.btn-success {
-    background-image: none;
-}
-.btn-success.disabled,
-.btn-success[disabled],
-fieldset[disabled] .btn-success,
-.btn-success.disabled:hover,
-.btn-success[disabled]:hover,
-fieldset[disabled] .btn-success:hover,
-.btn-success.disabled:focus,
-.btn-success[disabled]:focus,
-fieldset[disabled] .btn-success:focus,
-.btn-success.disabled.focus,
-.btn-success[disabled].focus,
-fieldset[disabled] .btn-success.focus,
-.btn-success.disabled:active,
-.btn-success[disabled]:active,
-fieldset[disabled] .btn-success:active,
-.btn-success.disabled.active,
-.btn-success[disabled].active,
-fieldset[disabled] .btn-success.active {
-    background-color: #4e844f;
-    border-color: #457445;
-}
-.btn-success .badge {
-    color: #4e844f;
-    background-color: #ffffff;
-}
-.btn-info {
-    color: #ffffff;
-    background-color: #5d61ea;
-    border-color: #464be7;
-}
-.btn-info:hover,
-.btn-info:focus,
-.btn-info.focus,
-.btn-info:active,
-.btn-info.active,
-.open > .dropdown-toggle.btn-info {
-    color: #ffffff;
-    background-color: #3035e4;
-    border-color: #1c21d5;
-}
-.btn-info:active,
-.btn-info.active,
-.open > .dropdown-toggle.btn-info {
-    background-image: none;
-}
-.btn-info.disabled,
-.btn-info[disabled],
-fieldset[disabled] .btn-info,
-.btn-info.disabled:hover,
-.btn-info[disabled]:hover,
-fieldset[disabled] .btn-info:hover,
-.btn-info.disabled:focus,
-.btn-info[disabled]:focus,
-fieldset[disabled] .btn-info:focus,
-.btn-info.disabled.focus,
-.btn-info[disabled].focus,
-fieldset[disabled] .btn-info.focus,
-.btn-info.disabled:active,
-.btn-info[disabled]:active,
-fieldset[disabled] .btn-info:active,
-.btn-info.disabled.active,
-.btn-info[disabled].active,
-fieldset[disabled] .btn-info.active {
-    background-color: #5d61ea;
-    border-color: #464be7;
-}
-.btn-info .badge {
-    color: #5d61ea;
-    background-color: #ffffff;
-}
-.btn-warning {
-    color: #ffffff;
-    background-color: #ffb245;
-    border-color: #ffa72b;
-}
-.btn-warning:hover,
-.btn-warning:focus,
-.btn-warning.focus,
-.btn-warning:active,
-.btn-warning.active,
-.open > .dropdown-toggle.btn-warning {
-    color: #ffffff;
-    background-color: #ff9d12;
-    border-color: #ed8b00;
-}
-.btn-warning:active,
-.btn-warning.active,
-.open > .dropdown-toggle.btn-warning {
-    background-image: none;
-}
-.btn-warning.disabled,
-.btn-warning[disabled],
-fieldset[disabled] .btn-warning,
-.btn-warning.disabled:hover,
-.btn-warning[disabled]:hover,
-fieldset[disabled] .btn-warning:hover,
-.btn-warning.disabled:focus,
-.btn-warning[disabled]:focus,
-fieldset[disabled] .btn-warning:focus,
-.btn-warning.disabled.focus,
-.btn-warning[disabled].focus,
-fieldset[disabled] .btn-warning.focus,
-.btn-warning.disabled:active,
-.btn-warning[disabled]:active,
-fieldset[disabled] .btn-warning:active,
-.btn-warning.disabled.active,
-.btn-warning[disabled].active,
-fieldset[disabled] .btn-warning.active {
-    background-color: #ffb245;
-    border-color: #ffa72b;
-}
-.btn-warning .badge {
-    color: #ffb245;
-    background-color: #ffffff;
-}
-.btn-danger {
-    color: #ffffff;
-    background-color: #842b31;
-    border-color: #71252a;
-}
-.btn-danger:hover,
-.btn-danger:focus,
-.btn-danger.focus,
-.btn-danger:active,
-.btn-danger.active,
-.open > .dropdown-toggle.btn-danger {
-    color: #ffffff;
-    background-color: #5e1e23;
-    border-color: #431619;
-}
-.btn-danger:active,
-.btn-danger.active,
-.open > .dropdown-toggle.btn-danger {
-    background-image: none;
-}
-.btn-danger.disabled,
-.btn-danger[disabled],
-fieldset[disabled] .btn-danger,
-.btn-danger.disabled:hover,
-.btn-danger[disabled]:hover,
-fieldset[disabled] .btn-danger:hover,
-.btn-danger.disabled:focus,
-.btn-danger[disabled]:focus,
-fieldset[disabled] .btn-danger:focus,
-.btn-danger.disabled.focus,
-.btn-danger[disabled].focus,
-fieldset[disabled] .btn-danger.focus,
-.btn-danger.disabled:active,
-.btn-danger[disabled]:active,
-fieldset[disabled] .btn-danger:active,
-.btn-danger.disabled.active,
-.btn-danger[disabled].active,
-fieldset[disabled] .btn-danger.active {
-    background-color: #842b31;
-    border-color: #71252a;
-}
-.btn-danger .badge {
-    color: #842b31;
-    background-color: #ffffff;
-}
-.btn-link {
-    color: #585ac2;
-    font-weight: normal;
-    border-radius: 0;
-}
-.btn-link,
-.btn-link:active,
-.btn-link.active,
-.btn-link[disabled],
-fieldset[disabled] .btn-link {
-    background-color: transparent;
-    -webkit-box-shadow: none;
-    box-shadow: none;
-}
-.btn-link,
-.btn-link:hover,
-.btn-link:focus,
-.btn-link:active {
-    border-color: transparent;
-}
-.btn-link:hover,
-.btn-link:focus {
-    color: #373997;
-    text-decoration: underline;
-    background-color: transparent;
-}
-.btn-link[disabled]:hover,
-fieldset[disabled] .btn-link:hover,
-.btn-link[disabled]:focus,
-fieldset[disabled] .btn-link:focus {
-    color: #777777;
-    text-decoration: none;
-}
-.btn-lg,
-.btn-group-lg > .btn {
-    padding: 10px 20px;
-    font-size: 18px;
-    line-height: 1.33;
-    border-radius: 0px;
-}
-.btn-sm,
-.btn-group-sm > .btn {
-    padding: 3px 12px;
-    font-size: 12px;
-    line-height: 1.5;
-    border-radius: 0px;
-}
-.btn-xs,
-.btn-group-xs > .btn {
-    padding: 1px 5px;
-    font-size: 12px;
-    line-height: 1.5;
-    border-radius: 0px;
-}
-.btn-block {
-    display: block;
-    width: 100%;
-}
-.btn-block + .btn-block {
-    margin-top: 5px;
-}
-input[type="submit"].btn-block,
-input[type="reset"].btn-block,
-input[type="button"].btn-block {
-    width: 100%;
-}
-.fade {
-    opacity: 0;
-    -webkit-transition: opacity 0.15s linear;
-    -o-transition: opacity 0.15s linear;
-    transition: opacity 0.15s linear;
-}
-.fade.in {
-    opacity: 1;
-}
-.collapse {
-    display: none;
-    visibility: hidden;
-}
-.collapse.in {
-    display: block;
-    visibility: visible;
-}
-tr.collapse.in {
-    display: table-row;
-}
-tbody.collapse.in {
-    display: table-row-group;
-}
-.collapsing {
-    position: relative;
-    height: 0;
-    overflow: hidden;
-    -webkit-transition-property: height, visibility;
-    transition-property: height, visibility;
-    -webkit-transition-duration: 0.35s;
-    transition-duration: 0.35s;
-    -webkit-transition-timing-function: ease;
-    transition-timing-function: ease;
-}
-.caret {
-    display: inline-block;
-    width: 0;
-    height: 0;
-    margin-left: 2px;
-    vertical-align: middle;
-    border-top: 4px solid;
-    border-right: 4px solid transparent;
-    border-left: 4px solid transparent;
-}
-.dropup,
-.dropdown {
-    position: relative;
-}
-.dropdown-toggle:focus {
-    outline: 0;
-}
-.dropdown-menu {
-    position: absolute;
-    top: 100%;
-    left: 0;
-    z-index: 1000;
-    display: none;
-    float: left;
-    min-width: 160px;
-    padding: 5px 0;
-    margin: 2px 0 0;
-    list-style: none;
-    font-size: 14px;
-    text-align: left;
-    background-color: #ffffff;
-    border: 1px solid #cccccc;
-    border: 1px solid #303284;
-    border-radius: 0px;
-    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
-    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
-    background-clip: padding-box;
-}
-.dropdown-menu.pull-right {
-    right: 0;
-    left: auto;
-}
-.dropdown-menu .divider {
-    height: 1px;
-    margin: 9px 0;
-    overflow: hidden;
-    background-color: #e5e5e5;
-}
-.dropdown-menu > li > a {
-    display: block;
-    padding: 3px 20px;
-    clear: both;
-    font-weight: normal;
-    line-height: 1.42857143;
-    color: #555555;
-    white-space: nowrap;
-}
-.dropdown-menu > li > a:hover,
-.dropdown-menu > li > a:focus {
-    text-decoration: none;
-    color: #262626;
-    background-color: #edeef9;
-}
-.dropdown-menu > .active > a,
-.dropdown-menu > .active > a:hover,
-.dropdown-menu > .active > a:focus {
-    color: #ffffff;
-    text-decoration: none;
-    outline: 0;
-    background-color: #303284;
-}
-.dropdown-menu > .disabled > a,
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
-    color: #777777;
-}
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
-    text-decoration: none;
-    background-color: transparent;
-    background-image: none;
-    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-    cursor: not-allowed;
-}
-.open > .dropdown-menu {
-    display: block;
-}
-.open > a {
-    outline: 0;
-}
-.dropdown-menu-right {
-    left: auto;
-    right: 0;
-}
-.dropdown-menu-left {
-    left: 0;
-    right: auto;
-}
-.dropdown-header {
-    display: block;
-    padding: 3px 20px;
-    font-size: 12px;
-    line-height: 1.42857143;
-    color: #777777;
-    white-space: nowrap;
-}
-.dropdown-backdrop {
-    position: fixed;
-    left: 0;
-    right: 0;
-    bottom: 0;
-    top: 0;
-    z-index: 990;
-}
-.pull-right > .dropdown-menu {
-    right: 0;
-    left: auto;
-}
-.dropup .caret,
-.navbar-fixed-bottom .dropdown .caret {
-    border-top: 0;
-    border-bottom: 4px solid;
-    content: "";
-}
-.dropup .dropdown-menu,
-.navbar-fixed-bottom .dropdown .dropdown-menu {
-    top: auto;
-    bottom: 100%;
-    margin-bottom: 2px;
-}
-@media (min-width: 768px) {
-    .navbar-right .dropdown-menu {
-        left: auto;
-        right: 0;
-    }
-    .navbar-right .dropdown-menu-left {
-        left: 0;
-        right: auto;
-    }
-}
-.btn-group,
-.btn-group-vertical {
-    position: relative;
-    display: inline-block;
-    vertical-align: middle;
-}
-.btn-group > .btn,
-.btn-group-vertical > .btn {
-    position: relative;
-    float: left;
-}
-.btn-group > .btn:hover,
-.btn-group-vertical > .btn:hover,
-.btn-group > .btn:focus,
-.btn-group-vertical > .btn:focus,
-.btn-group > .btn:active,
-.btn-group-vertical > .btn:active,
-.btn-group > .btn.active,
-.btn-group-vertical > .btn.active {
-    z-index: 2;
-}
-.btn-group .btn + .btn,
-.btn-group .btn + .btn-group,
-.btn-group .btn-group + .btn,
-.btn-group .btn-group + .btn-group {
-    margin-left: -1px;
-}
-.btn-toolbar {
-    margin-left: -5px;
-}
-.btn-toolbar .btn-group,
-.btn-toolbar .input-group {
-    float: left;
-}
-.btn-toolbar > .btn,
-.btn-toolbar > .btn-group,
-.btn-toolbar > .input-group {
-    margin-left: 5px;
-}
-.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
-    border-radius: 0;
-}
-.btn-group > .btn:first-child {
-    margin-left: 0;
-}
-.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
-    border-bottom-right-radius: 0;
-    border-top-right-radius: 0;
-}
-.btn-group > .btn:last-child:not(:first-child),
-.btn-group > .dropdown-toggle:not(:first-child) {
-    border-bottom-left-radius: 0;
-    border-top-left-radius: 0;
-}
-.btn-group > .btn-group {
-    float: left;
-}
-.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
-    border-radius: 0;
-}
-.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
-.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
-    border-bottom-right-radius: 0;
-    border-top-right-radius: 0;
-}
-.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
-    border-bottom-left-radius: 0;
-    border-top-left-radius: 0;
-}
-.btn-group .dropdown-toggle:active,
-.btn-group.open .dropdown-toggle {
-    outline: 0;
-}
-.btn-group > .btn + .dropdown-toggle {
-    padding-left: 8px;
-    padding-right: 8px;
-}
-.btn-group > .btn-lg + .dropdown-toggle {
-    padding-left: 12px;
-    padding-right: 12px;
-}
-.btn-group.open .dropdown-toggle {
-    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
-    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
-}
-.btn-group.open .dropdown-toggle.btn-link {
-    -webkit-box-shadow: none;
-    box-shadow: none;
-}
-.btn .caret {
-    margin-left: 0;
-}
-.btn-lg .caret {
-    border-width: 5px 5px 0;
-    border-bottom-width: 0;
-}
-.dropup .btn-lg .caret {
-    border-width: 0 5px 5px;
-}
-.btn-group-vertical > .btn,
-.btn-group-vertical > .btn-group,
-.btn-group-vertical > .btn-group > .btn {
-    display: block;
-    float: none;
-    width: 100%;
-    max-width: 100%;
-}
-.btn-group-vertical > .btn-group > .btn {
-    float: none;
-}
-.btn-group-vertical > .btn + .btn,
-.btn-group-vertical > .btn + .btn-group,
-.btn-group-vertical > .btn-group + .btn,
-.btn-group-vertical > .btn-group + .btn-group {
-    margin-top: -1px;
-    margin-left: 0;
-}
-.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
-    border-radius: 0;
-}
-.btn-group-vertical > .btn:first-child:not(:last-child) {
-    border-top-right-radius: 0px;
-    border-bottom-right-radius: 0;
-    border-bottom-left-radius: 0;
-}
-.btn-group-vertical > .btn:last-child:not(:first-child) {
-    border-bottom-left-radius: 0px;
-    border-top-right-radius: 0;
-    border-top-left-radius: 0;
-}
-.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
-    border-radius: 0;
-}
-.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
-.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
-    border-bottom-right-radius: 0;
-    border-bottom-left-radius: 0;
-}
-.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
-    border-top-right-radius: 0;
-    border-top-left-radius: 0;
-}
-.btn-group-justified {
-    display: table;
-    width: 100%;
-    table-layout: fixed;
-    border-collapse: separate;
-}
-.btn-group-justified > .btn,
-.btn-group-justified > .btn-group {
-    float: none;
-    display: table-cell;
-    width: 1%;
-}
-.btn-group-justified > .btn-group .btn {
-    width: 100%;
-}
-.btn-group-justified > .btn-group .dropdown-menu {
-    left: auto;
-}
-[data-toggle="buttons"] > .btn input[type="radio"],
-[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
-[data-toggle="buttons"] > .btn input[type="checkbox"],
-[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
-    position: absolute;
-    clip: rect(0, 0, 0, 0);
-    pointer-events: none;
-}
-.input-group {
-    position: relative;
-    display: table;
-    border-collapse: separate;
-}
-.input-group[class*="col-"] {
-    float: none;
-    padding-left: 0;
-    padding-right: 0;
-}
-.input-group .form-control {
-    position: relative;
-    z-index: 2;
-    float: left;
-    width: 100%;
-    margin-bottom: 0;
-}
-.input-group-lg > .form-control,
-.input-group-lg > .input-group-addon,
-.input-group-lg > .input-group-btn > .btn {
-    height: 46px;
-    padding: 10px 20px;
-    font-size: 18px;
-    line-height: 1.33;
-    border-radius: 0px;
-}
-select.input-group-lg > .form-control,
-select.input-group-lg > .input-group-addon,
-select.input-group-lg > .input-group-btn > .btn {
-    height: 46px;
-    line-height: 46px;
-}
-textarea.input-group-lg > .form-control,
-textarea.input-group-lg > .input-group-addon,
-textarea.input-group-lg > .input-group-btn > .btn,
-select[multiple].input-group-lg > .form-control,
-select[multiple].input-group-lg > .input-group-addon,
-select[multiple].input-group-lg > .input-group-btn > .btn {
-    height: auto;
-}
-.input-group-sm > .form-control,
-.input-group-sm > .input-group-addon,
-.input-group-sm > .input-group-btn > .btn {
-    height: 26px;
-    padding: 3px 12px;
-    font-size: 12px;
-    line-height: 1.5;
-    border-radius: 0px;
-}
-select.input-group-sm > .form-control,
-select.input-group-sm > .input-group-addon,
-select.input-group-sm > .input-group-btn > .btn {
-    height: 26px;
-    line-height: 26px;
-}
-textarea.input-group-sm > .form-control,
-textarea.input-group-sm > .input-group-addon,
-textarea.input-group-sm > .input-group-btn > .btn,
-select[multiple].input-group-sm > .form-control,
-select[multiple].input-group-sm > .input-group-addon,
-select[multiple].input-group-sm > .input-group-btn > .btn {
-    height: auto;
-}
-.input-group-addon,
-.input-group-btn,
-.input-group .form-control {
-    display: table-cell;
-}
-.input-group-addon:not(:first-child):not(:last-child),
-.input-group-btn:not(:first-child):not(:last-child),
-.input-group .form-control:not(:first-child):not(:last-child) {
-    border-radius: 0;
-}
-.input-group-addon,
-.input-group-btn {
-    width: 1%;
-    white-space: nowrap;
-    vertical-align: middle;
-}
-.input-group-addon {
-    padding: 5px 10px;
-    font-size: 14px;
-    font-weight: normal;
-    line-height: 1;
-    color: #555555;
-    text-align: center;
-    background-color: #eeeeee;
-    border: 1px solid #cccccc;
-    border-radius: 0px;
-}
-.input-group-addon.input-sm {
-    padding: 3px 12px;
-    font-size: 12px;
-    border-radius: 0px;
-}
-.input-group-addon.input-lg {
-    padding: 10px 20px;
-    font-size: 18px;
-    border-radius: 0px;
-}
-.input-group-addon input[type="radio"],
-.input-group-addon input[type="checkbox"] {
-    margin-top: 0;
-}
-.input-group .form-control:first-child,
-.input-group-addon:first-child,
-.input-group-btn:first-child > .btn,
-.input-group-btn:first-child > .btn-group > .btn,
-.input-group-btn:first-child > .dropdown-toggle,
-.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
-.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
-    border-bottom-right-radius: 0;
-    border-top-right-radius: 0;
-}
-.input-group-addon:first-child {
-    border-right: 0;
-}
-.input-group .form-control:last-child,
-.input-group-addon:last-child,
-.input-group-btn:last-child > .btn,
-.input-group-btn:last-child > .btn-group > .btn,
-.input-group-btn:last-child > .dropdown-toggle,
-.input-group-btn:first-child > .btn:not(:first-child),
-.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
-    border-bottom-left-radius: 0;
-    border-top-left-radius: 0;
-}
-.input-group-addon:last-child {
-    border-left: 0;
-}
-.input-group-btn {
-    position: relative;
-    font-size: 0;
-    white-space: nowrap;
-}
-.input-group-btn > .btn {
-    position: relative;
-}
-.input-group-btn > .btn + .btn {
-    margin-left: -1px;
-}
-.input-group-btn > .btn:hover,
-.input-group-btn > .btn:focus,
-.input-group-btn > .btn:active {
-    z-index: 2;
-}
-.input-group-btn:first-child > .btn,
-.input-group-btn:first-child > .btn-group {
-    margin-right: -1px;
-}
-.input-group-btn:last-child > .btn,
-.input-group-btn:last-child > .btn-group {
-    margin-left: -1px;
-}
-.nav {
-    margin-bottom: 0;
-    padding-left: 0;
-    list-style: none;
-}
-.nav > li {
-    position: relative;
-    display: block;
-}
-.nav > li > a {
-    position: relative;
-    display: block;
-    padding: 15px 22px;
-}
-.nav > li > a:hover,
-.nav > li > a:focus {
-    text-decoration: none;
-    background-color: #eeeeee;
-}
-.nav > li.disabled > a {
-    color: #777777;
-}
-.nav > li.disabled > a:hover,
-.nav > li.disabled > a:focus {
-    color: #777777;
-    text-decoration: none;
-    background-color: transparent;
-    cursor: not-allowed;
-}
-.nav .open > a,
-.nav .open > a:hover,
-.nav .open > a:focus {
-    background-color: #eeeeee;
-    border-color: #585ac2;
-}
-.nav .nav-divider {
-    height: 1px;
-    margin: 9px 0;
-    overflow: hidden;
-    background-color: #e5e5e5;
-}
-.nav > li > a > img {
-    max-width: none;
-}
-.nav-tabs {
-    border-bottom: 1px solid #303284;
-}
-.nav-tabs > li {
-    float: left;
-    margin-bottom: -1px;
-}
-.nav-tabs > li > a {
-    margin-right: 2px;
-    line-height: 1.42857143;
-    border: 1px solid transparent;
-    border-radius: 0px 0px 0 0;
-}
-.nav-tabs > li > a:hover {
-    border-color: #eeeeee #eeeeee #303284;
-}
-.nav-tabs > li.active > a,
-.nav-tabs > li.active > a:hover,
-.nav-tabs > li.active > a:focus {
-    color: #ffffff;
-    background-color: #303284;
-    border: 1px solid #dddddd;
-    border-bottom-color: transparent;
-    cursor: default;
-}
-.nav-tabs.nav-justified {
-    width: 100%;
-    border-bottom: 0;
-}
-.nav-tabs.nav-justified > li {
-    float: none;
-}
-.nav-tabs.nav-justified > li > a {
-    text-align: center;
-    margin-bottom: 5px;
-}
-.nav-tabs.nav-justified > .dropdown .dropdown-menu {
-    top: auto;
-    left: auto;
-}
-@media (min-width: 768px) {
-    .nav-tabs.nav-justified > li {
-        display: table-cell;
-        width: 1%;
-    }
-    .nav-tabs.nav-justified > li > a {
-        margin-bottom: 0;
-    }
-}
-.nav-tabs.nav-justified > li > a {
-    margin-right: 0;
-    border-radius: 0px;
-}
-.nav-tabs.nav-justified > .active > a,
-.nav-tabs.nav-justified > .active > a:hover,
-.nav-tabs.nav-justified > .active > a:focus {
-    border: 1px solid #dddddd;
-}
-@media (min-width: 768px) {
-    .nav-tabs.nav-justified > li > a {
-        border-bottom: 1px solid #dddddd;
-        border-radius: 0px 0px 0 0;
-    }
-    .nav-tabs.nav-justified > .active > a,
-    .nav-tabs.nav-justified > .active > a:hover,
-    .nav-tabs.nav-justified > .active > a:focus {
-        border-bottom-color: #ffffff;
-    }
-}
-.nav-pills > li {
-    float: left;
-}
-.nav-pills > li > a {
-    border-radius: 22px;
-}
-.nav-pills > li + li {
-    margin-left: 2px;
-}
-.nav-pills > li.active > a,
-.nav-pills > li.active > a:hover,
-.nav-pills > li.active > a:focus {
-    color: #ffffff;
-    background-color: #303284;
-}
-.nav-stacked > li {
-    float: none;
-}
-.nav-stacked > li + li {
-    margin-top: 2px;
-    margin-left: 0;
-}
-.nav-justified {
-    width: 100%;
-}
-.nav-justified > li {
-    float: none;
-}
-.nav-justified > li > a {
-    text-align: center;
-    margin-bottom: 5px;
-}
-.nav-justified > .dropdown .dropdown-menu {
-    top: auto;
-    left: auto;
-}
-@media (min-width: 768px) {
-    .nav-justified > li {
-        display: table-cell;
-        width: 1%;
-    }
-    .nav-justified > li > a {
-        margin-bottom: 0;
-    }
-}
-.nav-tabs-justified {
-    border-bottom: 0;
-}
-.nav-tabs-justified > li > a {
-    margin-right: 0;
-    border-radius: 0px;
-}
-.nav-tabs-justified > .active > a,
-.nav-tabs-justified > .active > a:hover,
-.nav-tabs-justified > .active > a:focus {
-    border: 1px solid #dddddd;
-}
-@media (min-width: 768px) {
-    .nav-tabs-justified > li > a {
-        border-bottom: 1px solid #dddddd;
-        border-radius: 0px 0px 0 0;
-    }
-    .nav-tabs-justified > .active > a,
-    .nav-tabs-justified > .active > a:hover,
-    .nav-tabs-justified > .active > a:focus {
-        border-bottom-color: #ffffff;
-    }
-}
-.tab-content > .tab-pane {
-    display: none;
-    visibility: hidden;
-}
-.tab-content > .active {
-    display: block;
-    visibility: visible;
-}
-.nav-tabs .dropdown-menu {
-    margin-top: -1px;
-    border-top-right-radius: 0;
-    border-top-left-radius: 0;
-}
-.navbar {
-    position: relative;
-    min-height: 30px;
-    margin-bottom: 20px;
-    border: 1px solid transparent;
-}
-@media (min-width: 768px) {
-    .navbar {
-        border-radius: 0px;
-    }
-}
-@media (min-width: 768px) {
-    .navbar-header {
-        float: left;
-    }
-}
-.navbar-collapse {
-    overflow-x: visible;
-    padding-right: 15px;
-    padding-left: 15px;
-    border-top: 1px solid transparent;
-    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-    -webkit-overflow-scrolling: touch;
-}
-.navbar-collapse.in {
-    overflow-y: auto;
-}
-@media (min-width: 768px) {
-    .navbar-collapse {
-        width: auto;
-        border-top: 0;
-        box-shadow: none;
-    }
-    .navbar-collapse.collapse {
-        display: block !important;
-        visibility: visible !important;
-        height: auto !important;
-        padding-bottom: 0;
-        overflow: visible !important;
-    }
-    .navbar-collapse.in {
-        overflow-y: visible;
-    }
-    .navbar-fixed-top .navbar-collapse,
-    .navbar-static-top .navbar-collapse,
-    .navbar-fixed-bottom .navbar-collapse {
-        padding-left: 0;
-        padding-right: 0;
-    }
-}
-.navbar-fixed-top .navbar-collapse,
-.navbar-fixed-bottom .navbar-collapse {
-    max-height: 340px;
-}
-@media (max-device-width: 480px) and (orientation: landscape) {
-    .navbar-fixed-top .navbar-collapse,
-    .navbar-fixed-bottom .navbar-collapse {
-        max-height: 200px;
-    }
-}
-.container > .navbar-header,
-.container-fluid > .navbar-header,
-.container > .navbar-collapse,
-.container-fluid > .navbar-collapse {
-    margin-right: -15px;
-    margin-left: -15px;
-}
-@media (min-width: 768px) {
-    .container > .navbar-header,
-    .container-fluid > .navbar-header,
-    .container > .navbar-collapse,
-    .container-fluid > .navbar-collapse {
-        margin-right: 0;
-        margin-left: 0;
-    }
-}
-.navbar-static-top {
-    z-index: 1000;
-    border-width: 0 0 1px;
-}
-@media (min-width: 768px) {
-    .navbar-static-top {
-        border-radius: 0;
-    }
-}
-.navbar-fixed-top,
-.navbar-fixed-bottom {
-    position: fixed;
-    right: 0;
-    left: 0;
-    z-index: 1030;
-}
-@media (min-width: 768px) {
-    .navbar-fixed-top,
-    .navbar-fixed-bottom {
-        border-radius: 0;
-    }
-}
-.navbar-fixed-top {
-    top: 0;
-    border-width: 0 0 1px;
-}
-.navbar-fixed-bottom {
-    bottom: 0;
-    margin-bottom: 0;
-    border-width: 1px 0 0;
-}
-.navbar-brand {
-    float: left;
-    padding: 5px 15px;
-    font-size: 18px;
-    line-height: 20px;
-    height: 30px;
-}
-.navbar-brand:hover,
-.navbar-brand:focus {
-    text-decoration: none;
-}
-.navbar-brand > img {
-    display: block;
-}
-@media (min-width: 768px) {
-    .navbar > .container .navbar-brand,
-    .navbar > .container-fluid .navbar-brand {
-        margin-left: -15px;
-    }
-}
-.navbar-toggle {
-    position: relative;
-    float: right;
-    margin-right: 15px;
-    padding: 9px 10px;
-    margin-top: -2px;
-    margin-bottom: -2px;
-    background-color: transparent;
-    background-image: none;
-    border: 1px solid transparent;
-    border-radius: 0px;
-}
-.navbar-toggle:focus {
-    outline: 0;
-}
-.navbar-toggle .icon-bar {
-    display: block;
-    width: 22px;
-    height: 2px;
-    border-radius: 1px;
-}
-.navbar-toggle .icon-bar + .icon-bar {
-    margin-top: 4px;
-}
-@media (min-width: 768px) {
-    .navbar-toggle {
-        display: none;
-    }
-}
-.navbar-nav {
-    margin: 2.5px -15px;
-}
-.navbar-nav > li > a {
-    padding-top: 10px;
-    padding-bottom: 10px;
-    line-height: 20px;
-}
-@media (max-width: 767px) {
-    .navbar-nav .open .dropdown-menu {
-        position: static;
-        float: none;
-        width: auto;
-        margin-top: 0;
-        background-color: transparent;
-        border: 0;
-        box-shadow: none;
-    }
-    .navbar-nav .open .dropdown-menu > li > a,
-    .navbar-nav .open .dropdown-menu .dropdown-header {
-        padding: 5px 15px 5px 25px;
-    }
-    .navbar-nav .open .dropdown-menu > li > a {
-        line-height: 20px;
-    }
-    .navbar-nav .open .dropdown-menu > li > a:hover,
-    .navbar-nav .open .dropdown-menu > li > a:focus {
-        background-image: none;
-    }
-}
-@media (min-width: 768px) {
-    .navbar-nav {
-        float: left;
-        margin: 0;
-    }
-    .navbar-nav > li {
-        float: left;
-    }
-    .navbar-nav > li > a {
-        padding-top: 5px;
-        padding-bottom: 5px;
-    }
-}
-/*
-.navbar-form {
-  margin-left: -15px;
-  margin-right: -15px;
-  padding: 10px 15px;
-  border-top: 1px solid transparent;
-  border-bottom: 1px solid transparent;
-  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
-  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
-  margin-top: -1px;
-  margin-bottom: -1px;
-}
-@media (min-width: 768px) {
-  .navbar-form .form-group {
-    display: inline-block;
-    margin-bottom: 0;
-    vertical-align: middle;
-  }
-  .navbar-form .form-control {
-    display: inline-block;
-    width: auto;
-    vertical-align: middle;
-  }
-  .navbar-form .form-control-static {
-    display: inline-block;
-  }
-  .navbar-form .input-group {
-    display: inline-table;
-    vertical-align: middle;
-  }
-  .navbar-form .input-group .input-group-addon,
-  .navbar-form .input-group .input-group-btn,
-  .navbar-form .input-group .form-control {
-    width: auto;
-  }
-  .navbar-form .input-group > .form-control {
-    width: 100%;
-  }
-  .navbar-form .control-label {
-    margin-bottom: 0;
-    vertical-align: middle;
-  }
-  .navbar-form .radio,
-  .navbar-form .checkbox {
-    display: inline-block;
-    margin-top: 0;
-    margin-bottom: 0;
-    vertical-align: middle;
-  }
-  .navbar-form .radio label,
-  .navbar-form .checkbox label {
-    padding-left: 0;
-  }
-  .navbar-form .radio input[type="radio"],
-  .navbar-form .checkbox input[type="checkbox"] {
-    position: relative;
-    margin-left: 0;
-  }
-  .navbar-form .has-feedback .form-control-feedback {
-    top: 0;
-  }
-}
-@media (max-width: 767px) {
-  .navbar-form .form-group {
-    margin-bottom: 5px;
-  }
-  .navbar-form .form-group:last-child {
-    margin-bottom: 0;
-  }
-}
-*/
-@media (min-width: 768px) {
-    .navbar-form {
-        width: auto;
-        border: 0;
-        margin-left: 0;
-        margin-right: 0;
-        padding-top: 0;
-        padding-bottom: 0;
-        -webkit-box-shadow: none;
-        box-shadow: none;
-    }
-}
-.navbar-nav > li > .dropdown-menu {
-    margin-top: 0;
-    border-top-right-radius: 0;
-    border-top-left-radius: 0;
-}
-.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
-    margin-bottom: 0;
-    border-top-right-radius: 0px;
-    border-top-left-radius: 0px;
-    border-bottom-right-radius: 0;
-    border-bottom-left-radius: 0;
-}
-.navbar-btn {
-    margin-top: -1px;
-    margin-bottom: -1px;
-}
-.navbar-btn.btn-sm {
-    margin-top: 2px;
-    margin-bottom: 2px;
-}
-.navbar-btn.btn-xs {
-    margin-top: 4px;
-    margin-bottom: 4px;
-}
-.navbar-text {
-    margin-top: 5px;
-    margin-bottom: 5px;
-}
-@media (min-width: 768px) {
-    .navbar-text {
-        float: left;
-        margin-left: 15px;
-        margin-right: 15px;
-    }
-}
-@media (min-width: 768px) {
-    .navbar-left {
-        float: left !important;
-    }
-    .navbar-right {
-        float: right !important;
-        margin-right: -15px;
-    }
-    .navbar-right ~ .navbar-right {
-        margin-right: 0;
-    }
-}
-.navbar-default {
-    background-color: #f8f8f8;
-    border-color: #e7e7e7;
-}
-.navbar-default .navbar-brand {
-    color: #303284;
-}
-.navbar-default .navbar-brand:hover,
-.navbar-default .navbar-brand:focus {
-    color: #22245f;
-    background-color: rgba(0, 0, 0, 0);
-}
-.navbar-default .navbar-text {
-    color: #303284;
-}
-.navbar-default .navbar-nav > li > a {
-    color: #303284;
-}
-.navbar-default .navbar-nav > li > a:hover,
-.navbar-default .navbar-nav > li > a:focus {
-    color: #ffffff;
-    background-color: #a3a4dd;
-}
-.navbar-default .navbar-nav > .active > a,
-.navbar-default .navbar-nav > .active > a:hover,
-.navbar-default .navbar-nav > .active > a:focus {
-    color: #303284;
-    background-color: #e7e7e7;
-}
-.navbar-default .navbar-nav > .disabled > a,
-.navbar-default .navbar-nav > .disabled > a:hover,
-.navbar-default .navbar-nav > .disabled > a:focus {
-    color: #cccccc;
-    background-color: rgba(0, 0, 0, 0);
-}
-.navbar-default .navbar-toggle {
-    border-color: #dddddd;
-}
-.navbar-default .navbar-toggle:hover,
-.navbar-default .navbar-toggle:focus {
-    background-color: #dddddd;
-}
-.navbar-default .navbar-toggle .icon-bar {
-    background-color: #888888;
-}
-.navbar-default .navbar-collapse,
-.navbar-default .navbar-form {
-    border-color: #e7e7e7;
-}
-.navbar-default .navbar-nav > .open > a,
-.navbar-default .navbar-nav > .open > a:hover,
-.navbar-default .navbar-nav > .open > a:focus {
-    background-color: #e7e7e7;
-    color: #303284;
-}
-@media (max-width: 767px) {
-    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
-        color: #303284;
-    }
-    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
-    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
-        color: #ffffff;
-        background-color: #a3a4dd;
-    }
-    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
-    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
-    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
-        color: #303284;
-        background-color: #e7e7e7;
-    }
-    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
-    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
-    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
-        color: #cccccc;
-        background-color: rgba(0, 0, 0, 0);
-    }
-}
-.navbar-default .navbar-link {
-    color: #303284;
-}
-.navbar-default .navbar-link:hover {
-    color: #ffffff;
-}
-.navbar-default .btn-link {
-    color: #303284;
-}
-.navbar-default .btn-link:hover,
-.navbar-default .btn-link:focus {
-    color: #ffffff;
-}
-.navbar-default .btn-link[disabled]:hover,
-fieldset[disabled] .navbar-default .btn-link:hover,
-.navbar-default .btn-link[disabled]:focus,
-fieldset[disabled] .navbar-default .btn-link:focus {
-    color: #cccccc;
-}
-.navbar-inverse {
-    background-color: #303284;
-    border-color: #22245f;
-}
-.navbar-inverse .navbar-brand {
-    color: #ffffff;
-}
-.navbar-inverse .navbar-brand:hover,
-.navbar-inverse .navbar-brand:focus {
-    color: #ffffff;
-    background-color: rgba(0, 0, 0, 0);
-}
-.navbar-inverse .navbar-text {
-    color: #ffffff;
-}
-.navbar-inverse .navbar-nav > li > a {
-    color: #ffffff;
-}
-.navbar-inverse .navbar-nav > li > a:hover,
-.navbar-inverse .navbar-nav > li > a:focus {
-    color: #ffffff;
-    background-color: #3e40a9;
-}
-.navbar-inverse .navbar-nav > .active > a,
-.navbar-inverse .navbar-nav > .active > a:hover,
-.navbar-inverse .navbar-nav > .active > a:focus {
-    color: #ffffff;
-    background-color: #22245f;
-}
-.navbar-inverse .navbar-nav > .disabled > a,
-.navbar-inverse .navbar-nav > .disabled > a:hover,
-.navbar-inverse .navbar-nav > .disabled > a:focus {
-    color: #444444;
-    background-color: rgba(0, 0, 0, 0);
-}
-.navbar-inverse .navbar-toggle {
-    border-color: #333333;
-}
-.navbar-inverse .navbar-toggle:hover,
-.navbar-inverse .navbar-toggle:focus {
-    background-color: #333333;
-}
-.navbar-inverse .navbar-toggle .icon-bar {
-    background-color: #ffffff;
-}
-.navbar-inverse .navbar-collapse,
-.navbar-inverse .navbar-form {
-    border-color: #26286a;
-}
-.navbar-inverse .navbar-nav > .open > a,
-.navbar-inverse .navbar-nav > .open > a:hover,
-.navbar-inverse .navbar-nav > .open > a:focus {
-    background-color: #22245f;
-    color: #ffffff;
-}
-@media (max-width: 767px) {
-    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
-        border-color: #22245f;
-    }
-    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
-        background-color: #22245f;
-    }
-    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
-        color: #ffffff;
-    }
-    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
-    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
-        color: #ffffff;
-        background-color: #3e40a9;
-    }
-    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
-    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
-    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
-        color: #ffffff;
-        background-color: #22245f;
-    }
-    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
-    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
-    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
-        color: #444444;
-        background-color: rgba(0, 0, 0, 0);
-    }
-}
-.navbar-inverse .navbar-link {
-    color: #ffffff;
-}
-.navbar-inverse .navbar-link:hover {
-    color: #ffffff;
-}
-.navbar-inverse .btn-link {
-    color: #ffffff;
-}
-.navbar-inverse .btn-link:hover,
-.navbar-inverse .btn-link:focus {
-    color: #ffffff;
-}
-.navbar-inverse .btn-link[disabled]:hover,
-fieldset[disabled] .navbar-inverse .btn-link:hover,
-.navbar-inverse .btn-link[disabled]:focus,
-fieldset[disabled] .navbar-inverse .btn-link:focus {
-    color: #444444;
-}
-/*
-.breadcrumb {
-  padding: 8px 15px;
-  margin-bottom: 20px;
-  list-style: none;
-  background-color: #f5f5f5;
-  border-radius: 0px;
-}
-.breadcrumb > li {
-  display: inline-block;
-}
-.breadcrumb > li + li:before {
-  content: "/\00a0";
-  padding: 0 5px;
-  color: #cccccc;
-}
-.breadcrumb > .active {
-  color: #777777;
-}
-.pagination {
-  display: inline-block;
-  padding-left: 0;
-  margin: 20px 0;
-  border-radius: 0px;
-}
-.pagination > li {
-  display: inline;
-}
-.pagination > li > a,
-.pagination > li > span {
-  position: relative;
-  float: left;
-  padding: 5px 10px;
-  line-height: 1.42857143;
-  text-decoration: none;
-  color: #585ac2;
-  background-color: #ffffff;
-  border: 1px solid #dddddd;
-  margin-left: -1px;
-}
-.pagination > li:first-child > a,
-.pagination > li:first-child > span {
-  margin-left: 0;
-  border-bottom-left-radius: 0px;
-  border-top-left-radius: 0px;
-}
-.pagination > li:last-child > a,
-.pagination > li:last-child > span {
-  border-bottom-right-radius: 0px;
-  border-top-right-radius: 0px;
-}
-.pagination > li > a:hover,
-.pagination > li > span:hover,
-.pagination > li > a:focus,
-.pagination > li > span:focus {
-  color: #373997;
-  background-color: #eeeeee;
-  border-color: #dddddd;
-}
-.pagination > .active > a,
-.pagination > .active > span,
-.pagination > .active > a:hover,
-.pagination > .active > span:hover,
-.pagination > .active > a:focus,
-.pagination > .active > span:focus {
-  z-index: 2;
-  color: #ffffff;
-  background-color: #303284;
-  border-color: #303284;
-  cursor: default;
-}
-.pagination > .disabled > span,
-.pagination > .disabled > span:hover,
-.pagination > .disabled > span:focus,
-.pagination > .disabled > a,
-.pagination > .disabled > a:hover,
-.pagination > .disabled > a:focus {
-  color: #777777;
-  background-color: #ffffff;
-  border-color: #dddddd;
-  cursor: not-allowed;
-}
-.pagination-lg > li > a,
-.pagination-lg > li > span {
-  padding: 10px 20px;
-  font-size: 18px;
-}
-.pagination-lg > li:first-child > a,
-.pagination-lg > li:first-child > span {
-  border-bottom-left-radius: 0px;
-  border-top-left-radius: 0px;
-}
-.pagination-lg > li:last-child > a,
-.pagination-lg > li:last-child > span {
-  border-bottom-right-radius: 0px;
-  border-top-right-radius: 0px;
-}
-.pagination-sm > li > a,
-.pagination-sm > li > span {
-  padding: 3px 12px;
-  font-size: 12px;
-}
-.pagination-sm > li:first-child > a,
-.pagination-sm > li:first-child > span {
-  border-bottom-left-radius: 0px;
-  border-top-left-radius: 0px;
-}
-.pagination-sm > li:last-child > a,
-.pagination-sm > li:last-child > span {
-  border-bottom-right-radius: 0px;
-  border-top-right-radius: 0px;
-}
-.pager {
-  padding-left: 0;
-  margin: 20px 0;
-  list-style: none;
-  text-align: center;
-}
-.pager li {
-  display: inline;
-}
-.pager li > a,
-.pager li > span {
-  display: inline-block;
-  padding: 5px 14px;
-  background-color: #ffffff;
-  border: 1px solid #dddddd;
-  border-radius: 0px;
-}
-.pager li > a:hover,
-.pager li > a:focus {
-  text-decoration: none;
-  background-color: #eeeeee;
-}
-.pager .next > a,
-.pager .next > span {
-  float: right;
-}
-.pager .previous > a,
-.pager .previous > span {
-  float: left;
-}
-.pager .disabled > a,
-.pager .disabled > a:hover,
-.pager .disabled > a:focus,
-.pager .disabled > span {
-  color: #777777;
-  background-color: #ffffff;
-  cursor: not-allowed;
-}
-.label {
-  display: inline;
-  padding: .2em .6em .3em;
-  font-size: 75%;
-  font-weight: bold;
-  line-height: 1;
-  color: #ffffff;
-  text-align: center;
-  white-space: nowrap;
-  vertical-align: baseline;
-  border-radius: .25em;
-}
-a.label:hover,
-a.label:focus {
-  color: #ffffff;
-  text-decoration: none;
-  cursor: pointer;
-}
-.label:empty {
-  display: none;
-}
-.btn .label {
-  position: relative;
-  top: -1px;
-}
-.label-default {
-  background-color: #777777;
-}
-.label-default[href]:hover,
-.label-default[href]:focus {
-  background-color: #5e5e5e;
-}
-.label-primary {
-  background-color: #303284;
-}
-.label-primary[href]:hover,
-.label-primary[href]:focus {
-  background-color: #22245f;
-}
-.label-success {
-  background-color: #4e844f;
-}
-.label-success[href]:hover,
-.label-success[href]:focus {
-  background-color: #3b643c;
-}
-.label-info {
-  background-color: #5d61ea;
-}
-.label-info[href]:hover,
-.label-info[href]:focus {
-  background-color: #3035e4;
-}
-.label-warning {
-  background-color: #ffb245;
-}
-.label-warning[href]:hover,
-.label-warning[href]:focus {
-  background-color: #ff9d12;
-}
-.label-danger {
-  background-color: #842b31;
-}
-.label-danger[href]:hover,
-.label-danger[href]:focus {
-  background-color: #5e1e23;
-}
-.badge {
-  display: inline-block;
-  min-width: 10px;
-  padding: 3px 7px;
-  font-size: 12px;
-  font-weight: bold;
-  color: #ffffff;
-  line-height: 1;
-  vertical-align: baseline;
-  white-space: nowrap;
-  text-align: center;
-  background-color: #777777;
-  border-radius: 20px;
-}
-.badge:empty {
-  display: none;
-}
-.btn .badge {
-  position: relative;
-  top: -1px;
-}
-.btn-xs .badge {
-  top: 0;
-  padding: 1px 5px;
-}
-a.badge:hover,
-a.badge:focus {
-  color: #ffffff;
-  text-decoration: none;
-  cursor: pointer;
-}
-.list-group-item.active > .badge,
-.nav-pills > .active > a > .badge {
-  color: #585ac2;
-  background-color: #ffffff;
-}
-.list-group-item > .badge {
-  float: right;
-}
-.list-group-item > .badge + .badge {
-  margin-right: 5px;
-}
-.nav-pills > li > a > .badge {
-  margin-left: 3px;
-}
-.jumbotron {
-  padding: 30px 15px;
-  margin-bottom: 30px;
-  color: inherit;
-  background-color: #e4e5fc;
-}
-.jumbotron h1,
-.jumbotron .h1 {
-  color: inherit;
-}
-.jumbotron p {
-  margin-bottom: 15px;
-  font-size: 21px;
-  font-weight: 200;
-}
-.jumbotron > hr {
-  border-top-color: #b7b9f6;
-}
-.container .jumbotron,
-.container-fluid .jumbotron {
-  border-radius: 0px;
-}
-.jumbotron .container {
-  max-width: 100%;
-}
-@media screen and (min-width: 768px) {
-  .jumbotron {
-    padding: 48px 0;
-  }
-  .container .jumbotron,
-  .container-fluid .jumbotron {
-    padding-left: 60px;
-    padding-right: 60px;
-  }
-  .jumbotron h1,
-  .jumbotron .h1 {
-    font-size: 63px;
-  }
-}
-*/
-.thumbnail {
-    display: block;
-    padding: 4px;
-    margin-bottom: 20px;
-    line-height: 1.42857143;
-    background-color: #ffffff;
-    border: 1px solid #dddddd;
-    border-radius: 0px;
-    -webkit-transition: border 0.2s ease-in-out;
-    -o-transition: border 0.2s ease-in-out;
-    transition: border 0.2s ease-in-out;
-}
-.thumbnail > img,
-.thumbnail a > img {
-    margin-left: auto;
-    margin-right: auto;
-}
-a.thumbnail:hover,
-a.thumbnail:focus,
-a.thumbnail.active {
-    border-color: #585ac2;
-}
-.thumbnail .caption {
-    padding: 9px;
-    color: #333333;
-}
-.panel {
-    margin-bottom: 20px;
-    background-color: #ffffff;
-    border: 1px solid transparent;
-    border-radius: 0px;
-    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
-    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
-}
-.panel-body {
-    padding: 15px;
-}
-.panel-heading {
-    padding: 10px 15px;
-    border-bottom: 1px solid transparent;
-    border-top-right-radius: -1px;
-    border-top-left-radius: -1px;
-}
-.panel-heading > .dropdown .dropdown-toggle {
-    color: inherit;
-}
-.panel-title {
-    margin-top: 0;
-    margin-bottom: 0;
-    font-size: 16px;
-    color: inherit;
-}
-.panel-title > a,
-.panel-title > small,
-.panel-title > .small,
-.panel-title > small > a,
-.panel-title > .small > a {
-    color: inherit;
-}
-.panel-footer {
-    padding: 10px 15px;
-    background-color: #f5f5f5;
-    border-top: 1px solid #dddddd;
-    border-bottom-right-radius: -1px;
-    border-bottom-left-radius: -1px;
-}
-.panel > .list-group,
-.panel > .panel-collapse > .list-group {
-    margin-bottom: 0;
-}
-.panel > .list-group .list-group-item,
-.panel > .panel-collapse > .list-group .list-group-item {
-    border-width: 1px 0;
-    border-radius: 0;
-}
-.panel > .list-group:first-child .list-group-item:first-child,
-.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
-    border-top: 0;
-    border-top-right-radius: -1px;
-    border-top-left-radius: -1px;
-}
-.panel > .list-group:last-child .list-group-item:last-child,
-.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
-    border-bottom: 0;
-    border-bottom-right-radius: -1px;
-    border-bottom-left-radius: -1px;
-}
-.panel-heading + .list-group .list-group-item:first-child {
-    border-top-width: 0;
-}
-.list-group + .panel-footer {
-    border-top-width: 0;
-}
-.panel > .table,
-.panel > .table-responsive > .table,
-.panel > .panel-collapse > .table {
-    margin-bottom: 0;
-}
-.panel > .table caption,
-.panel > .table-responsive > .table caption,
-.panel > .panel-collapse > .table caption {
-    padding-left: 15px;
-    padding-right: 15px;
-}
-.panel > .table:first-child,
-.panel > .table-responsive:first-child > .table:first-child {
-    border-top-right-radius: -1px;
-    border-top-left-radius: -1px;
-}
-.panel > .table:first-child > thead:first-child > tr:first-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
-    border-top-left-radius: -1px;
-    border-top-right-radius: -1px;
-}
-.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
-.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
-    border-top-left-radius: -1px;
-}
-.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
-.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
-    border-top-right-radius: -1px;
-}
-.panel > .table:last-child,
-.panel > .table-responsive:last-child > .table:last-child {
-    border-bottom-right-radius: -1px;
-    border-bottom-left-radius: -1px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
-    border-bottom-left-radius: -1px;
-    border-bottom-right-radius: -1px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
-.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
-    border-bottom-left-radius: -1px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
-.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
-    border-bottom-right-radius: -1px;
-}
-.panel > .panel-body + .table,
-.panel > .panel-body + .table-responsive,
-.panel > .table + .panel-body,
-.panel > .table-responsive + .panel-body {
-    border-top: 1px solid #dddddd;
-}
-.panel > .table > tbody:first-child > tr:first-child th,
-.panel > .table > tbody:first-child > tr:first-child td {
-    border-top: 0;
-}
-.panel > .table-bordered,
-.panel > .table-responsive > .table-bordered {
-    border: 0;
-}
-.panel > .table-bordered > thead > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
-.panel > .table-bordered > tbody > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
-.panel > .table-bordered > tfoot > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
-.panel > .table-bordered > thead > tr > td:first-child,
-.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
-.panel > .table-bordered > tbody > tr > td:first-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
-.panel > .table-bordered > tfoot > tr > td:first-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
-    border-left: 0;
-}
-.panel > .table-bordered > thead > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
-.panel > .table-bordered > tbody > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
-.panel > .table-bordered > tfoot > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
-.panel > .table-bordered > thead > tr > td:last-child,
-.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
-.panel > .table-bordered > tbody > tr > td:last-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
-.panel > .table-bordered > tfoot > tr > td:last-child,
-.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
-    border-right: 0;
-}
-.panel > .table-bordered > thead > tr:first-child > td,
-.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
-.panel > .table-bordered > tbody > tr:first-child > td,
-.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
-.panel > .table-bordered > thead > tr:first-child > th,
-.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
-.panel > .table-bordered > tbody > tr:first-child > th,
-.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
-    border-bottom: 0;
-}
-.panel > .table-bordered > tbody > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
-.panel > .table-bordered > tfoot > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
-.panel > .table-bordered > tbody > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
-.panel > .table-bordered > tfoot > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
-    border-bottom: 0;
-}
-.panel > .table-responsive {
-    border: 0;
-    margin-bottom: 0;
-}
-.panel-group {
-    margin-bottom: 20px;
-}
-.panel-group .panel {
-    margin-bottom: 0;
-    border-radius: 0px;
-}
-.panel-group .panel + .panel {
-    margin-top: 5px;
-}
-.panel-group .panel-heading {
-    border-bottom: 0;
-}
-.panel-group .panel-heading + .panel-collapse > .panel-body,
-.panel-group .panel-heading + .panel-collapse > .list-group {
-    border-top: 1px solid #dddddd;
-}
-.panel-group .panel-footer {
-    border-top: 0;
-}
-.panel-group .panel-footer + .panel-collapse .panel-body {
-    border-bottom: 1px solid #dddddd;
-}
-.panel-default {
-    border-color: #dddddd;
-}
-.panel-default > .panel-heading {
-    color: #333333;
-    background-color: #f5f5f5;
-    border-color: #dddddd;
-}
-.panel-default > .panel-heading + .panel-collapse > .panel-body {
-    border-top-color: #dddddd;
-}
-.panel-default > .panel-heading .badge {
-    color: #f5f5f5;
-    background-color: #333333;
-}
-.panel-default > .panel-footer + .panel-collapse > .panel-body {
-    border-bottom-color: #dddddd;
-}
-.panel-primary {
-    border-color: #303284;
-}
-.panel-primary > .panel-heading {
-    color: #ffffff;
-    background-color: #303284;
-    border-color: #303284;
-}
-.panel-primary > .panel-heading + .panel-collapse > .panel-body {
-    border-top-color: #303284;
-}
-.panel-primary > .panel-heading .badge {
-    color: #303284;
-    background-color: #ffffff;
-}
-.panel-primary > .panel-footer + .panel-collapse > .panel-body {
-    border-bottom-color: #303284;
-}
-.panel-success {
-    border-color: #d5e5d3;
-}
-.panel-success > .panel-heading {
-    color: #4e844f;
-    background-color: #e3eee3;
-    border-color: #d5e5d3;
-}
-.panel-success > .panel-heading + .panel-collapse > .panel-body {
-    border-top-color: #d5e5d3;
-}
-.panel-success > .panel-heading .badge {
-    color: #e3eee3;
-    background-color: #4e844f;
-}
-.panel-success > .panel-footer + .panel-collapse > .panel-body {
-    border-bottom-color: #d5e5d3;
-}
-.panel-info {
-    border-color: #c5cff7;
-}
-.panel-info > .panel-heading {
-    color: #5d61ea;
-    background-color: #e4e5fc;
-    border-color: #c5cff7;
-}
-.panel-info > .panel-heading + .panel-collapse > .panel-body {
-    border-top-color: #c5cff7;
-}
-.panel-info > .panel-heading .badge {
-    color: #e4e5fc;
-    background-color: #5d61ea;
-}
-.panel-info > .panel-footer + .panel-collapse > .panel-body {
-    border-bottom-color: #c5cff7;
-}
-.panel-warning {
-    border-color: #ffbf91;
-}
-.panel-warning > .panel-heading {
-    color: #ab6400;
-    background-color: #ffdcab;
-    border-color: #ffbf91;
-}
-.panel-warning > .panel-heading + .panel-collapse > .panel-body {
-    border-top-color: #ffbf91;
-}
-.panel-warning > .panel-heading .badge {
-    color: #ffdcab;
-    background-color: #ab6400;
-}
-.panel-warning > .panel-footer + .panel-collapse > .panel-body {
-    border-bottom-color: #ffbf91;
-}
-.panel-danger {
-    border-color: #e5afbc;
-}
-.panel-danger > .panel-heading {
-    color: #842b31;
-    background-color: #ebc3c5;
-    border-color: #e5afbc;
-}
-.panel-danger > .panel-heading + .panel-collapse > .panel-body {
-    border-top-color: #e5afbc;
-}
-.panel-danger > .panel-heading .badge {
-    color: #ebc3c5;
-    background-color: #842b31;
-}
-.panel-danger > .panel-footer + .panel-collapse > .panel-body {
-    border-bottom-color: #e5afbc;
-}
-.embed-responsive {
-    position: relative;
-    display: block;
-    height: 0;
-    padding: 0;
-    overflow: hidden;
-}
-.embed-responsive .embed-responsive-item,
-.embed-responsive iframe,
-.embed-responsive embed,
-.embed-responsive object,
-.embed-responsive video {
-    position: absolute;
-    top: 0;
-    left: 0;
-    bottom: 0;
-    height: 100%;
-    width: 100%;
-    border: 0;
-}
-.embed-responsive.embed-responsive-16by9 {
-    padding-bottom: 56.25%;
-}
-.embed-responsive.embed-responsive-4by3 {
-    padding-bottom: 75%;
-}
-.clearfix:before,
-.clearfix:after,
-.dl-horizontal dd:before,
-.dl-horizontal dd:after,
-.container:before,
-.container:after,
-.container-fluid:before,
-.container-fluid:after,
-.row:before,
-.row:after,
-.form-horizontal .form-group:before,
-.form-horizontal .form-group:after,
-.btn-toolbar:before,
-.btn-toolbar:after,
-.btn-group-vertical > .btn-group:before,
-.btn-group-vertical > .btn-group:after,
-.nav:before,
-.nav:after,
-.navbar:before,
-.navbar:after,
-.navbar-header:before,
-.navbar-header:after,
-.navbar-collapse:before,
-.navbar-collapse:after,
-.pager:before,
-.pager:after,
-.panel-body:before,
-.panel-body:after,
-.modal-footer:before,
-.modal-footer:after {
-    content: " ";
-    display: table;
-}
-.clearfix:after,
-.dl-horizontal dd:after,
-.container:after,
-.container-fluid:after,
-.row:after,
-.form-horizontal .form-group:after,
-.btn-toolbar:after,
-.btn-group-vertical > .btn-group:after,
-.nav:after,
-.navbar:after,
-.navbar-header:after,
-.navbar-collapse:after,
-.pager:after,
-.panel-body:after,
-.modal-footer:after {
-    clear: both;
-}
-.center-block {
-    display: block;
-    margin-left: auto;
-    margin-right: auto;
-}
-.pull-right {
-    float: right !important;
-}
-.pull-left {
-    float: left !important;
-}
-.hide {
-    display: none !important;
-}
-.show {
-    display: block !important;
-}
-.invisible {
-    visibility: hidden;
-}
-.text-hide {
-    font: 0/0 a;
-    color: transparent;
-    text-shadow: none;
-    background-color: transparent;
-    border: 0;
-}
-.hidden {
-    display: none !important;
-    visibility: hidden !important;
-}
-.affix {
-    position: fixed;
-}
-@-ms-viewport {
-    width: device-width;
-}
-.visible-xs,
-.visible-sm,
-.visible-md,
-.visible-lg {
-    display: none !important;
-}
-.visible-xs-block,
-.visible-xs-inline,
-.visible-xs-inline-block,
-.visible-sm-block,
-.visible-sm-inline,
-.visible-sm-inline-block,
-.visible-md-block,
-.visible-md-inline,
-.visible-md-inline-block,
-.visible-lg-block,
-.visible-lg-inline,
-.visible-lg-inline-block {
-    display: none !important;
-}
-@media (max-width: 767px) {
-    .visible-xs {
-        display: block !important;
-    }
-    table.visible-xs {
-        display: table;
-    }
-    tr.visible-xs {
-        display: table-row !important;
-    }
-    th.visible-xs,
-    td.visible-xs {
-        display: table-cell !important;
-    }
-}
-@media (max-width: 767px) {
-    .visible-xs-block {
-        display: block !important;
-    }
-}
-@media (max-width: 767px) {
-    .visible-xs-inline {
-        display: inline !important;
-    }
-}
-@media (max-width: 767px) {
-    .visible-xs-inline-block {
-        display: inline-block !important;
-    }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-    .visible-sm {
-        display: block !important;
-    }
-    table.visible-sm {
-        display: table;
-    }
-    tr.visible-sm {
-        display: table-row !important;
-    }
-    th.visible-sm,
-    td.visible-sm {
-        display: table-cell !important;
-    }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-    .visible-sm-block {
-        display: block !important;
-    }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-    .visible-sm-inline {
-        display: inline !important;
-    }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-    .visible-sm-inline-block {
-        display: inline-block !important;
-    }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-    .visible-md {
-        display: block !important;
-    }
-    table.visible-md {
-        display: table;
-    }
-    tr.visible-md {
-        display: table-row !important;
-    }
-    th.visible-md,
-    td.visible-md {
-        display: table-cell !important;
-    }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-    .visible-md-block {
-        display: block !important;
-    }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-    .visible-md-inline {
-        display: inline !important;
-    }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-    .visible-md-inline-block {
-        display: inline-block !important;
-    }
-}
-@media (min-width: 1200px) {
-    .visible-lg {
-        display: block !important;
-    }
-    table.visible-lg {
-        display: table;
-    }
-    tr.visible-lg {
-        display: table-row !important;
-    }
-    th.visible-lg,
-    td.visible-lg {
-        display: table-cell !important;
-    }
-}
-@media (min-width: 1200px) {
-    .visible-lg-block {
-        display: block !important;
-    }
-}
-@media (min-width: 1200px) {
-    .visible-lg-inline {
-        display: inline !important;
-    }
-}
-@media (min-width: 1200px) {
-    .visible-lg-inline-block {
-        display: inline-block !important;
-    }
-}
-@media (max-width: 767px) {
-    .hidden-xs {
-        display: none !important;
-    }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-    .hidden-sm {
-        display: none !important;
-    }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-    .hidden-md {
-        display: none !important;
-    }
-}
-@media (min-width: 1200px) {
-    .hidden-lg {
-        display: none !important;
-    }
-}
-.visible-print {
-    display: none !important;
-}
-@media print {
-    .visible-print {
-        display: block !important;
-    }
-    table.visible-print {
-        display: table;
-    }
-    tr.visible-print {
-        display: table-row !important;
-    }
-    th.visible-print,
-    td.visible-print {
-        display: table-cell !important;
-    }
-}
-.visible-print-block {
-    display: none !important;
-}
-@media print {
-    .visible-print-block {
-        display: block !important;
-    }
-}
-.visible-print-inline {
-    display: none !important;
-}
-@media print {
-    .visible-print-inline {
-        display: inline !important;
-    }
-}
-.visible-print-inline-block {
-    display: none !important;
-}
-@media print {
-    .visible-print-inline-block {
-        display: inline-block !important;
-    }
-}
-@media print {
-    .hidden-print {
-        display: none !important;
-    }
-}
\ No newline at end of file
diff --git a/assets/css/bootstrap.min.css b/assets/css/bootstrap.min.css
deleted file mode 100644
index 679272d..0000000
--- a/assets/css/bootstrap.min.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*!
- * Bootstrap v3.1.1 (http://getbootstrap.com)
- * Copyright 2011-2014 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-
-/*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none!important;color:#000!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}input[type=date]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=checkbox][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-control-static{padding-top:7px}@media (min-width:768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:400;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle=buttons]>.btn>input[type=radio],[data-toggle=buttons]>.btn>input[type=checkbox]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:gray}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:20px}.modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}@media print{.hidden-print{display:none!important}}
\ No newline at end of file
diff --git a/assets/css/incubator.css b/assets/css/incubator.css
deleted file mode 100644
index 7e7788a..0000000
--- a/assets/css/incubator.css
+++ /dev/null
@@ -1,144 +0,0 @@
-/*
- *  Licensed to the Apache Software Foundation (ASF) under one
- *  or more contributor license agreements.  See the NOTICE file
- *  distributed with this work for additional information
- *  regarding copyright ownership.  The ASF licenses this file
- *  to you under the Apache License, Version 2.0 (the
- *  "License"); you may not use this file except in compliance
- *  with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- *  Unless required by applicable law or agreed to in writing,
- *  software distributed under the License is distributed on an
- *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- *  KIND, either express or implied.  See the License for the
- *  specific language governing permissions and limitations
- *  under the License.
- */
-.top-container {
-    padding-top:35px!important;
-}
-.vcenter {
-    display: inline-block;
-    vertical-align: middle;
-    float: none;
-}
-.incubator-page-header {
-    padding-bottom: 9px;
-    margin: 5px 0 20px;
-    border-bottom: 1px solid #eeeeee;
-}
-td {
-  padding: 0.05em;
-}
-span.issue {
-  background-color: #d55e00;
-  font-size: 0.9375em;
-  padding: 1px 3px 0;
-  white-space: nowrap;
-  -webkit-border-radius: 4px;
-  border-radius: 4px;
-  text-shadow: none;
-  color: white;
-  padding: 0.2em;
-}
-span.grad {
-  border: 2px solid #d55e00;
-  color: white;
-  font-size: 0.9375em;
-  padding: 1px 3px 0;
-  white-space: nowrap;
-  -webkit-border-radius: 4px;
-  border-radius: 4px;
-  text-shadow: none;
-  padding: 0.2em;
-}
-span.care {
-  background-color: #e69f00;
-  color: black;
-  font-size: 0.9375em;
-  padding: 1px 3px 0;
-  white-space: nowrap;
-  -webkit-border-radius: 4px;
-  border-radius: 4px;
-  text-shadow: none;
-  padding: 0.2em;
-}
-span.cool1 {
-  background-color: #009e73;
-  color: white;
-  font-size: 0.9375em;
-  padding: 1px 3px 0;
-  white-space: nowrap;
-  -webkit-border-radius: 4px;
-  border-radius: 4px;
-  text-shadow: none;
-  padding: 0.2em;
-}
-span.cool2 {
-  background-color: #f0e442;
-  color: black;
-  font-size: 0.9375em;
-  padding: 1px 3px 0;
-  white-space: nowrap;
-  -webkit-border-radius: 4px;
-  border-radius: 4px;
-  text-shadow: none;
-  padding: 0.2em;
-}
-span.cool3 {
-  background-color: #e69f00;
-  color: black;
-  font-size: 0.9375em;
-  padding: 1px 3px 0;
-  white-space: nowrap;
-  -webkit-border-radius: 4px;
-  border-radius: 4px;
-  text-shadow: none;
-  padding: 0.2em;
-}
-span.cool4 {
-  background-color: #d55e00;
-  color: white;
-  font-size: 0.9375em;
-  padding: 1px 3px 0;
-  white-space: nowrap;
-  -webkit-border-radius: 4px;
-  border-radius: 4px;
-  text-shadow: none;
-  padding: 0.2em;
-}
-span.graduated {
-  background-color: lawngreen;
-  color: white;
-  font-size: 0.9375em;
-  padding: 1px 3px 0;
-  white-space: nowrap;
-  -webkit-border-radius: 4px;
-  border-radius: 4px;
-  text-shadow: none;
-  padding: 0.2em;
-}
-span.retired {
-  background-color: orange;
-  color: white;
-  font-size: 0.9375em;
-  padding: 1px 3px 0;
-  white-space: nowrap;
-  -webkit-border-radius: 4px;
-  border-radius: 4px;
-  text-shadow: none;
-  padding: 0.2em;
-}
-span.code {
-  font-family: Consolas, "Liberation Mono", Courier, monospace;
-  font-weight: normal;
-  font-size: 0.9375em;
-  padding: 1px 3px 0;
-  white-space: nowrap;
-  background-color: #f2f2f2;
-  -webkit-border-radius: 4px;
-  border-radius: 4px;
-  text-shadow: none;
-}
\ No newline at end of file
diff --git a/assets/css/prettify.css b/assets/css/prettify.css
deleted file mode 100644
index 805d39b..0000000
--- a/assets/css/prettify.css
+++ /dev/null
@@ -1 +0,0 @@
-.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}
diff --git a/assets/favicon.ico b/assets/favicon.ico
deleted file mode 100644
index b6b6c2c..0000000
--- a/assets/favicon.ico
+++ /dev/null
Binary files differ
diff --git a/assets/fonts/glyphicons-halflings-regular.eot b/assets/fonts/glyphicons-halflings-regular.eot
deleted file mode 100644
index 4a4ca86..0000000
--- a/assets/fonts/glyphicons-halflings-regular.eot
+++ /dev/null
Binary files differ
diff --git a/assets/fonts/glyphicons-halflings-regular.svg b/assets/fonts/glyphicons-halflings-regular.svg
deleted file mode 100644
index e3e2dc7..0000000
--- a/assets/fonts/glyphicons-halflings-regular.svg
+++ /dev/null
@@ -1,229 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata></metadata>
-<defs>
-<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
-<font-face units-per-em="1200" ascent="960" descent="-240" />
-<missing-glyph horiz-adv-x="500" />
-<glyph />
-<glyph />
-<glyph unicode="&#xd;" />
-<glyph unicode=" " />
-<glyph unicode="*" d="M100 500v200h259l-183 183l141 141l183 -183v259h200v-259l183 183l141 -141l-183 -183h259v-200h-259l183 -183l-141 -141l-183 183v-259h-200v259l-183 -183l-141 141l183 183h-259z" />
-<glyph unicode="+" d="M0 400v300h400v400h300v-400h400v-300h-400v-400h-300v400h-400z" />
-<glyph unicode="&#xa0;" />
-<glyph unicode="&#x2000;" horiz-adv-x="652" />
-<glyph unicode="&#x2001;" horiz-adv-x="1304" />
-<glyph unicode="&#x2002;" horiz-adv-x="652" />
-<glyph unicode="&#x2003;" horiz-adv-x="1304" />
-<glyph unicode="&#x2004;" horiz-adv-x="434" />
-<glyph unicode="&#x2005;" horiz-adv-x="326" />
-<glyph unicode="&#x2006;" horiz-adv-x="217" />
-<glyph unicode="&#x2007;" horiz-adv-x="217" />
-<glyph unicode="&#x2008;" horiz-adv-x="163" />
-<glyph unicode="&#x2009;" horiz-adv-x="260" />
-<glyph unicode="&#x200a;" horiz-adv-x="72" />
-<glyph unicode="&#x202f;" horiz-adv-x="260" />
-<glyph unicode="&#x205f;" horiz-adv-x="326" />
-<glyph unicode="&#x20ac;" d="M100 500l100 100h113q0 47 5 100h-218l100 100h135q37 167 112 257q117 141 297 141q242 0 354 -189q60 -103 66 -209h-181q0 55 -25.5 99t-63.5 68t-75 36.5t-67 12.5q-24 0 -52.5 -10t-62.5 -32t-65.5 -67t-50.5 -107h379l-100 -100h-300q-6 -46 -6 -100h406l-100 -100 h-300q9 -74 33 -132t52.5 -91t62 -54.5t59 -29t46.5 -7.5q29 0 66 13t75 37t63.5 67.5t25.5 96.5h174q-31 -172 -128 -278q-107 -117 -274 -117q-205 0 -324 158q-36 46 -69 131.5t-45 205.5h-217z" />
-<glyph unicode="&#x2212;" d="M200 400h900v300h-900v-300z" />
-<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
-<glyph unicode="&#x2601;" d="M-14 494q0 -80 56.5 -137t135.5 -57h750q120 0 205 86.5t85 207.5t-85 207t-205 86q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5z" />
-<glyph unicode="&#x2709;" d="M0 100l400 400l200 -200l200 200l400 -400h-1200zM0 300v600l300 -300zM0 1100l600 -603l600 603h-1200zM900 600l300 300v-600z" />
-<glyph unicode="&#x270f;" d="M-13 -13l333 112l-223 223zM187 403l214 -214l614 614l-214 214zM887 1103l214 -214l99 92q13 13 13 32.5t-13 33.5l-153 153q-15 13 -33 13t-33 -13z" />
-<glyph unicode="&#xe001;" d="M0 1200h1200l-500 -550v-550h300v-100h-800v100h300v550z" />
-<glyph unicode="&#xe002;" d="M14 84q18 -55 86 -75.5t147 5.5q65 21 109 69t44 90v606l600 155v-521q-64 16 -138 -7q-79 -26 -122.5 -83t-25.5 -111q18 -55 86 -75.5t147 4.5q70 23 111.5 63.5t41.5 95.5v881q0 10 -7 15.5t-17 2.5l-752 -193q-10 -3 -17 -12.5t-7 -19.5v-689q-64 17 -138 -7 q-79 -25 -122.5 -82t-25.5 -112z" />
-<glyph unicode="&#xe003;" d="M23 693q0 200 142 342t342 142t342 -142t142 -342q0 -142 -78 -261l300 -300q7 -8 7 -18t-7 -18l-109 -109q-8 -7 -18 -7t-18 7l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 693q0 -136 97 -233t234 -97t233.5 96.5t96.5 233.5t-96.5 233.5t-233.5 96.5 t-234 -97t-97 -233z" />
-<glyph unicode="&#xe005;" d="M100 784q0 64 28 123t73 100.5t104.5 64t119 20.5t120 -38.5t104.5 -104.5q48 69 109.5 105t121.5 38t118.5 -20.5t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-149.5 152.5t-126.5 127.5 t-94 124.5t-33.5 117.5z" />
-<glyph unicode="&#xe006;" d="M-72 800h479l146 400h2l146 -400h472l-382 -278l145 -449l-384 275l-382 -275l146 447zM168 71l2 1z" />
-<glyph unicode="&#xe007;" d="M-72 800h479l146 400h2l146 -400h472l-382 -278l145 -449l-384 275l-382 -275l146 447zM168 71l2 1zM237 700l196 -142l-73 -226l192 140l195 -141l-74 229l193 140h-235l-77 211l-78 -211h-239z" />
-<glyph unicode="&#xe008;" d="M0 0v143l400 257v100q-37 0 -68.5 74.5t-31.5 125.5v200q0 124 88 212t212 88t212 -88t88 -212v-200q0 -51 -31.5 -125.5t-68.5 -74.5v-100l400 -257v-143h-1200z" />
-<glyph unicode="&#xe009;" d="M0 0v1100h1200v-1100h-1200zM100 100h100v100h-100v-100zM100 300h100v100h-100v-100zM100 500h100v100h-100v-100zM100 700h100v100h-100v-100zM100 900h100v100h-100v-100zM300 100h600v400h-600v-400zM300 600h600v400h-600v-400zM1000 100h100v100h-100v-100z M1000 300h100v100h-100v-100zM1000 500h100v100h-100v-100zM1000 700h100v100h-100v-100zM1000 900h100v100h-100v-100z" />
-<glyph unicode="&#xe010;" d="M0 50v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5zM0 650v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5zM600 50v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5zM600 650v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5z" />
-<glyph unicode="&#xe011;" d="M0 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM0 450v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5zM0 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5 t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 450v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5 v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 450v200q0 21 14.5 35.5t35.5 14.5h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5z" />
-<glyph unicode="&#xe012;" d="M0 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM0 450q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v200q0 21 -14.5 35.5t-35.5 14.5h-200q-21 0 -35.5 -14.5 t-14.5 -35.5v-200zM0 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 50v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5 t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5zM400 450v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5zM400 850v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5 v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5z" />
-<glyph unicode="&#xe013;" d="M29 454l419 -420l818 820l-212 212l-607 -607l-206 207z" />
-<glyph unicode="&#xe014;" d="M106 318l282 282l-282 282l212 212l282 -282l282 282l212 -212l-282 -282l282 -282l-212 -212l-282 282l-282 -282z" />
-<glyph unicode="&#xe015;" d="M23 693q0 200 142 342t342 142t342 -142t142 -342q0 -142 -78 -261l300 -300q7 -8 7 -18t-7 -18l-109 -109q-8 -7 -18 -7t-18 7l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 693q0 -136 97 -233t234 -97t233.5 96.5t96.5 233.5t-96.5 233.5t-233.5 96.5 t-234 -97t-97 -233zM300 600v200h100v100h200v-100h100v-200h-100v-100h-200v100h-100z" />
-<glyph unicode="&#xe016;" d="M23 694q0 200 142 342t342 142t342 -142t142 -342q0 -141 -78 -262l300 -299q7 -7 7 -18t-7 -18l-109 -109q-8 -8 -18 -8t-18 8l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 694q0 -136 97 -233t234 -97t233.5 97t96.5 233t-96.5 233t-233.5 97t-234 -97 t-97 -233zM300 601h400v200h-400v-200z" />
-<glyph unicode="&#xe017;" d="M23 600q0 183 105 331t272 210v-166q-103 -55 -165 -155t-62 -220q0 -177 125 -302t302 -125t302 125t125 302q0 120 -62 220t-165 155v166q167 -62 272 -210t105 -331q0 -118 -45.5 -224.5t-123 -184t-184 -123t-224.5 -45.5t-224.5 45.5t-184 123t-123 184t-45.5 224.5 zM500 750q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v400q0 21 -14.5 35.5t-35.5 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-400z" />
-<glyph unicode="&#xe018;" d="M100 1h200v300h-200v-300zM400 1v500h200v-500h-200zM700 1v800h200v-800h-200zM1000 1v1200h200v-1200h-200z" />
-<glyph unicode="&#xe019;" d="M26 601q0 -33 6 -74l151 -38l2 -6q14 -49 38 -93l3 -5l-80 -134q45 -59 105 -105l133 81l5 -3q45 -26 94 -39l5 -2l38 -151q40 -5 74 -5q27 0 74 5l38 151l6 2q46 13 93 39l5 3l134 -81q56 44 104 105l-80 134l3 5q24 44 39 93l1 6l152 38q5 40 5 74q0 28 -5 73l-152 38 l-1 6q-16 51 -39 93l-3 5l80 134q-44 58 -104 105l-134 -81l-5 3q-45 25 -93 39l-6 1l-38 152q-40 5 -74 5q-27 0 -74 -5l-38 -152l-5 -1q-50 -14 -94 -39l-5 -3l-133 81q-59 -47 -105 -105l80 -134l-3 -5q-25 -47 -38 -93l-2 -6l-151 -38q-6 -48 -6 -73zM385 601 q0 88 63 151t152 63t152 -63t63 -151q0 -89 -63 -152t-152 -63t-152 63t-63 152z" />
-<glyph unicode="&#xe020;" d="M100 1025v50q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-50q0 -11 -7 -18t-18 -7h-1050q-11 0 -18 7t-7 18zM200 100v800h900v-800q0 -41 -29.5 -71t-70.5 -30h-700q-41 0 -70.5 30 t-29.5 71zM300 100h100v700h-100v-700zM500 100h100v700h-100v-700zM500 1100h300v100h-300v-100zM700 100h100v700h-100v-700zM900 100h100v700h-100v-700z" />
-<glyph unicode="&#xe021;" d="M1 601l656 644l644 -644h-200v-600h-300v400h-300v-400h-300v600h-200z" />
-<glyph unicode="&#xe022;" d="M100 25v1150q0 11 7 18t18 7h475v-500h400v-675q0 -11 -7 -18t-18 -7h-850q-11 0 -18 7t-7 18zM700 800v300l300 -300h-300z" />
-<glyph unicode="&#xe023;" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM500 500v400h100 v-300h200v-100h-300z" />
-<glyph unicode="&#xe024;" d="M-100 0l431 1200h209l-21 -300h162l-20 300h208l431 -1200h-538l-41 400h-242l-40 -400h-539zM488 500h224l-27 300h-170z" />
-<glyph unicode="&#xe025;" d="M0 0v400h490l-290 300h200v500h300v-500h200l-290 -300h490v-400h-1100zM813 200h175v100h-175v-100z" />
-<glyph unicode="&#xe026;" d="M1 600q0 122 47.5 233t127.5 191t191 127.5t233 47.5t233 -47.5t191 -127.5t127.5 -191t47.5 -233t-47.5 -233t-127.5 -191t-191 -127.5t-233 -47.5t-233 47.5t-191 127.5t-127.5 191t-47.5 233zM188 600q0 -170 121 -291t291 -121t291 121t121 291t-121 291t-291 121 t-291 -121t-121 -291zM350 600h150v300h200v-300h150l-250 -300z" />
-<glyph unicode="&#xe027;" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM350 600l250 300 l250 -300h-150v-300h-200v300h-150z" />
-<glyph unicode="&#xe028;" d="M0 25v475l200 700h800l199 -700l1 -475q0 -11 -7 -18t-18 -7h-1150q-11 0 -18 7t-7 18zM200 500h200l50 -200h300l50 200h200l-97 500h-606z" />
-<glyph unicode="&#xe029;" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -172 121.5 -293t292.5 -121t292.5 121t121.5 293q0 171 -121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM500 397v401 l297 -200z" />
-<glyph unicode="&#xe030;" d="M23 600q0 -118 45.5 -224.5t123 -184t184 -123t224.5 -45.5t224.5 45.5t184 123t123 184t45.5 224.5h-150q0 -177 -125 -302t-302 -125t-302 125t-125 302t125 302t302 125q136 0 246 -81l-146 -146h400v400l-145 -145q-157 122 -355 122q-118 0 -224.5 -45.5t-184 -123 t-123 -184t-45.5 -224.5z" />
-<glyph unicode="&#xe031;" d="M23 600q0 118 45.5 224.5t123 184t184 123t224.5 45.5q198 0 355 -122l145 145v-400h-400l147 147q-112 80 -247 80q-177 0 -302 -125t-125 -302h-150zM100 0v400h400l-147 -147q112 -80 247 -80q177 0 302 125t125 302h150q0 -118 -45.5 -224.5t-123 -184t-184 -123 t-224.5 -45.5q-198 0 -355 122z" />
-<glyph unicode="&#xe032;" d="M100 0h1100v1200h-1100v-1200zM200 100v900h900v-900h-900zM300 200v100h100v-100h-100zM300 400v100h100v-100h-100zM300 600v100h100v-100h-100zM300 800v100h100v-100h-100zM500 200h500v100h-500v-100zM500 400v100h500v-100h-500zM500 600v100h500v-100h-500z M500 800v100h500v-100h-500z" />
-<glyph unicode="&#xe033;" d="M0 100v600q0 41 29.5 70.5t70.5 29.5h100v200q0 82 59 141t141 59h300q82 0 141 -59t59 -141v-200h100q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-900q-41 0 -70.5 29.5t-29.5 70.5zM400 800h300v150q0 21 -14.5 35.5t-35.5 14.5h-200 q-21 0 -35.5 -14.5t-14.5 -35.5v-150z" />
-<glyph unicode="&#xe034;" d="M100 0v1100h100v-1100h-100zM300 400q60 60 127.5 84t127.5 17.5t122 -23t119 -30t110 -11t103 42t91 120.5v500q-40 -81 -101.5 -115.5t-127.5 -29.5t-138 25t-139.5 40t-125.5 25t-103 -29.5t-65 -115.5v-500z" />
-<glyph unicode="&#xe035;" d="M0 275q0 -11 7 -18t18 -7h50q11 0 18 7t7 18v300q0 127 70.5 231.5t184.5 161.5t245 57t245 -57t184.5 -161.5t70.5 -231.5v-300q0 -11 7 -18t18 -7h50q11 0 18 7t7 18v300q0 116 -49.5 227t-131 192.5t-192.5 131t-227 49.5t-227 -49.5t-192.5 -131t-131 -192.5 t-49.5 -227v-300zM200 20v460q0 8 6 14t14 6h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14zM800 20v460q0 8 6 14t14 6h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14z" />
-<glyph unicode="&#xe036;" d="M0 400h300l300 -200v800l-300 -200h-300v-400zM688 459l141 141l-141 141l71 71l141 -141l141 141l71 -71l-141 -141l141 -141l-71 -71l-141 141l-141 -141z" />
-<glyph unicode="&#xe037;" d="M0 400h300l300 -200v800l-300 -200h-300v-400zM700 857l69 53q111 -135 111 -310q0 -169 -106 -302l-67 54q86 110 86 248q0 146 -93 257z" />
-<glyph unicode="&#xe038;" d="M0 401v400h300l300 200v-800l-300 200h-300zM702 858l69 53q111 -135 111 -310q0 -170 -106 -303l-67 55q86 110 86 248q0 145 -93 257zM889 951l7 -8q123 -151 123 -344q0 -189 -119 -339l-7 -8l81 -66l6 8q142 178 142 405q0 230 -144 408l-6 8z" />
-<glyph unicode="&#xe039;" d="M0 0h500v500h-200v100h-100v-100h-200v-500zM0 600h100v100h400v100h100v100h-100v300h-500v-600zM100 100v300h300v-300h-300zM100 800v300h300v-300h-300zM200 200v100h100v-100h-100zM200 900h100v100h-100v-100zM500 500v100h300v-300h200v-100h-100v-100h-200v100 h-100v100h100v200h-200zM600 0v100h100v-100h-100zM600 1000h100v-300h200v-300h300v200h-200v100h200v500h-600v-200zM800 800v300h300v-300h-300zM900 0v100h300v-100h-300zM900 900v100h100v-100h-100zM1100 200v100h100v-100h-100z" />
-<glyph unicode="&#xe040;" d="M0 200h100v1000h-100v-1000zM100 0v100h300v-100h-300zM200 200v1000h100v-1000h-100zM500 0v91h100v-91h-100zM500 200v1000h200v-1000h-200zM700 0v91h100v-91h-100zM800 200v1000h100v-1000h-100zM900 0v91h200v-91h-200zM1000 200v1000h200v-1000h-200z" />
-<glyph unicode="&#xe041;" d="M0 700l1 475q0 10 7.5 17.5t17.5 7.5h474l700 -700l-500 -500zM148 953q0 -42 29 -71q30 -30 71.5 -30t71.5 30q29 29 29 71t-29 71q-30 30 -71.5 30t-71.5 -30q-29 -29 -29 -71z" />
-<glyph unicode="&#xe042;" d="M1 700l1 475q0 11 7 18t18 7h474l700 -700l-500 -500zM148 953q0 -42 30 -71q29 -30 71 -30t71 30q30 29 30 71t-30 71q-29 30 -71 30t-71 -30q-30 -29 -30 -71zM701 1200h100l700 -700l-500 -500l-50 50l450 450z" />
-<glyph unicode="&#xe043;" d="M100 0v1025l175 175h925v-1000l-100 -100v1000h-750l-100 -100h750v-1000h-900z" />
-<glyph unicode="&#xe044;" d="M200 0l450 444l450 -443v1150q0 20 -14.5 35t-35.5 15h-800q-21 0 -35.5 -15t-14.5 -35v-1151z" />
-<glyph unicode="&#xe045;" d="M0 100v700h200l100 -200h600l100 200h200v-700h-200v200h-800v-200h-200zM253 829l40 -124h592l62 124l-94 346q-2 11 -10 18t-18 7h-450q-10 0 -18 -7t-10 -18zM281 24l38 152q2 10 11.5 17t19.5 7h500q10 0 19.5 -7t11.5 -17l38 -152q2 -10 -3.5 -17t-15.5 -7h-600 q-10 0 -15.5 7t-3.5 17z" />
-<glyph unicode="&#xe046;" d="M0 200q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-150q-4 8 -11.5 21.5t-33 48t-53 61t-69 48t-83.5 21.5h-200q-41 0 -82 -20.5t-70 -50t-52 -59t-34 -50.5l-12 -20h-150q-41 0 -70.5 -29.5t-29.5 -70.5v-600z M356 500q0 100 72 172t172 72t172 -72t72 -172t-72 -172t-172 -72t-172 72t-72 172zM494 500q0 -44 31 -75t75 -31t75 31t31 75t-31 75t-75 31t-75 -31t-31 -75zM900 700v100h100v-100h-100z" />
-<glyph unicode="&#xe047;" d="M53 0h365v66q-41 0 -72 11t-49 38t1 71l92 234h391l82 -222q16 -45 -5.5 -88.5t-74.5 -43.5v-66h417v66q-34 1 -74 43q-18 19 -33 42t-21 37l-6 13l-385 998h-93l-399 -1006q-24 -48 -52 -75q-12 -12 -33 -25t-36 -20l-15 -7v-66zM416 521l178 457l46 -140l116 -317h-340 z" />
-<glyph unicode="&#xe048;" d="M100 0v89q41 7 70.5 32.5t29.5 65.5v827q0 28 -1 39.5t-5.5 26t-15.5 21t-29 14t-49 14.5v71l471 -1q120 0 213 -88t93 -228q0 -55 -11.5 -101.5t-28 -74t-33.5 -47.5t-28 -28l-12 -7q8 -3 21.5 -9t48 -31.5t60.5 -58t47.5 -91.5t21.5 -129q0 -84 -59 -156.5t-142 -111 t-162 -38.5h-500zM400 200h161q89 0 153 48.5t64 132.5q0 90 -62.5 154.5t-156.5 64.5h-159v-400zM400 700h139q76 0 130 61.5t54 138.5q0 82 -84 130.5t-239 48.5v-379z" />
-<glyph unicode="&#xe049;" d="M200 0v57q77 7 134.5 40.5t65.5 80.5l173 849q10 56 -10 74t-91 37q-6 1 -10.5 2.5t-9.5 2.5v57h425l2 -57q-33 -8 -62 -25.5t-46 -37t-29.5 -38t-17.5 -30.5l-5 -12l-128 -825q-10 -52 14 -82t95 -36v-57h-500z" />
-<glyph unicode="&#xe050;" d="M-75 200h75v800h-75l125 167l125 -167h-75v-800h75l-125 -167zM300 900v300h150h700h150v-300h-50q0 29 -8 48.5t-18.5 30t-33.5 15t-39.5 5.5t-50.5 1h-200v-850l100 -50v-100h-400v100l100 50v850h-200q-34 0 -50.5 -1t-40 -5.5t-33.5 -15t-18.5 -30t-8.5 -48.5h-49z " />
-<glyph unicode="&#xe051;" d="M33 51l167 125v-75h800v75l167 -125l-167 -125v75h-800v-75zM100 901v300h150h700h150v-300h-50q0 29 -8 48.5t-18 30t-33.5 15t-40 5.5t-50.5 1h-200v-650l100 -50v-100h-400v100l100 50v650h-200q-34 0 -50.5 -1t-39.5 -5.5t-33.5 -15t-18.5 -30t-8 -48.5h-50z" />
-<glyph unicode="&#xe052;" d="M0 50q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 350q0 -20 14.5 -35t35.5 -15h800q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-800q-21 0 -35.5 -14.5t-14.5 -35.5 v-100zM0 650q0 -20 14.5 -35t35.5 -15h1000q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1000q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 950q0 -20 14.5 -35t35.5 -15h600q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-600q-21 0 -35.5 -14.5 t-14.5 -35.5v-100z" />
-<glyph unicode="&#xe053;" d="M0 50q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 650q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5 v-100zM200 350q0 -20 14.5 -35t35.5 -15h700q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-700q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM200 950q0 -20 14.5 -35t35.5 -15h700q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-700q-21 0 -35.5 -14.5 t-14.5 -35.5v-100z" />
-<glyph unicode="&#xe054;" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1000q-21 0 -35.5 15 t-14.5 35zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-600 q-21 0 -35.5 15t-14.5 35z" />
-<glyph unicode="&#xe055;" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM0 350v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15 t-14.5 35zM0 650v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM0 950v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100 q-21 0 -35.5 15t-14.5 35z" />
-<glyph unicode="&#xe056;" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35zM0 350v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15 t-14.5 35zM0 650v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35zM0 950v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15 t-14.5 35zM300 50v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800 q-21 0 -35.5 15t-14.5 35zM300 650v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM300 950v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15 h-800q-21 0 -35.5 15t-14.5 35z" />
-<glyph unicode="&#xe057;" d="M-101 500v100h201v75l166 -125l-166 -125v75h-201zM300 0h100v1100h-100v-1100zM500 50q0 -20 14.5 -35t35.5 -15h600q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-600q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 350q0 -20 14.5 -35t35.5 -15h300q20 0 35 15t15 35 v100q0 21 -15 35.5t-35 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 650q0 -20 14.5 -35t35.5 -15h500q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 950q0 -20 14.5 -35t35.5 -15h100q20 0 35 15t15 35v100 q0 21 -15 35.5t-35 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-100z" />
-<glyph unicode="&#xe058;" d="M1 50q0 -20 14.5 -35t35.5 -15h600q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-600q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 350q0 -20 14.5 -35t35.5 -15h300q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 650 q0 -20 14.5 -35t35.5 -15h500q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 950q0 -20 14.5 -35t35.5 -15h100q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM801 0v1100h100v-1100 h-100zM934 550l167 -125v75h200v100h-200v75z" />
-<glyph unicode="&#xe059;" d="M0 275v650q0 31 22 53t53 22h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53zM900 600l300 300v-600z" />
-<glyph unicode="&#xe060;" d="M0 44v1012q0 18 13 31t31 13h1112q19 0 31.5 -13t12.5 -31v-1012q0 -18 -12.5 -31t-31.5 -13h-1112q-18 0 -31 13t-13 31zM100 263l247 182l298 -131l-74 156l293 318l236 -288v500h-1000v-737zM208 750q0 56 39 95t95 39t95 -39t39 -95t-39 -95t-95 -39t-95 39t-39 95z " />
-<glyph unicode="&#xe062;" d="M148 745q0 124 60.5 231.5t165 172t226.5 64.5q123 0 227 -63t164.5 -169.5t60.5 -229.5t-73 -272q-73 -114 -166.5 -237t-150.5 -189l-57 -66q-10 9 -27 26t-66.5 70.5t-96 109t-104 135.5t-100.5 155q-63 139 -63 262zM342 772q0 -107 75.5 -182.5t181.5 -75.5 q107 0 182.5 75.5t75.5 182.5t-75.5 182t-182.5 75t-182 -75.5t-75 -181.5z" />
-<glyph unicode="&#xe063;" d="M1 600q0 122 47.5 233t127.5 191t191 127.5t233 47.5t233 -47.5t191 -127.5t127.5 -191t47.5 -233t-47.5 -233t-127.5 -191t-191 -127.5t-233 -47.5t-233 47.5t-191 127.5t-127.5 191t-47.5 233zM173 600q0 -177 125.5 -302t301.5 -125v854q-176 0 -301.5 -125 t-125.5 -302z" />
-<glyph unicode="&#xe064;" d="M117 406q0 94 34 186t88.5 172.5t112 159t115 177t87.5 194.5q21 -71 57.5 -142.5t76 -130.5t83 -118.5t82 -117t70 -116t50 -125.5t18.5 -136q0 -89 -39 -165.5t-102 -126.5t-140 -79.5t-156 -33.5q-114 6 -211.5 53t-161.5 139t-64 210zM243 414q14 -82 59.5 -136 t136.5 -80l16 98q-7 6 -18 17t-34 48t-33 77q-15 73 -14 143.5t10 122.5l9 51q-92 -110 -119.5 -185t-12.5 -156z" />
-<glyph unicode="&#xe065;" d="M0 400v300q0 165 117.5 282.5t282.5 117.5q366 -6 397 -14l-186 -186h-311q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v125l200 200v-225q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5 t-117.5 282.5zM436 341l161 50l412 412l-114 113l-405 -405zM995 1015l113 -113l113 113l-21 85l-92 28z" />
-<glyph unicode="&#xe066;" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h261l2 -80q-133 -32 -218 -120h-145q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-53q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5 zM423 524q30 38 81.5 64t103 35.5t99 14t77.5 3.5l29 -1v-209l360 324l-359 318v-216q-7 0 -19 -1t-48 -8t-69.5 -18.5t-76.5 -37t-76.5 -59t-62 -88t-39.5 -121.5z" />
-<glyph unicode="&#xe067;" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q61 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-169q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5 t-117.5 282.5zM342 632l283 -284l567 567l-137 137l-430 -431l-146 147z" />
-<glyph unicode="&#xe068;" d="M0 603l300 296v-198h200v200h-200l300 300l295 -300h-195v-200h200v198l300 -296l-300 -300v198h-200v-200h195l-295 -300l-300 300h200v200h-200v-198z" />
-<glyph unicode="&#xe069;" d="M200 50v1000q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-437l500 487v-1100l-500 488v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5z" />
-<glyph unicode="&#xe070;" d="M0 50v1000q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-437l500 487v-487l500 487v-1100l-500 488v-488l-500 488v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5z" />
-<glyph unicode="&#xe071;" d="M136 550l564 550v-487l500 487v-1100l-500 488v-488z" />
-<glyph unicode="&#xe072;" d="M200 0l900 550l-900 550v-1100z" />
-<glyph unicode="&#xe073;" d="M200 150q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v800q0 21 -14.5 35.5t-35.5 14.5h-200q-21 0 -35.5 -14.5t-14.5 -35.5v-800zM600 150q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v800q0 21 -14.5 35.5t-35.5 14.5h-200 q-21 0 -35.5 -14.5t-14.5 -35.5v-800z" />
-<glyph unicode="&#xe074;" d="M200 150q0 -20 14.5 -35t35.5 -15h800q21 0 35.5 15t14.5 35v800q0 21 -14.5 35.5t-35.5 14.5h-800q-21 0 -35.5 -14.5t-14.5 -35.5v-800z" />
-<glyph unicode="&#xe075;" d="M0 0v1100l500 -487v487l564 -550l-564 -550v488z" />
-<glyph unicode="&#xe076;" d="M0 0v1100l500 -487v487l500 -487v437q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-500 -488v488z" />
-<glyph unicode="&#xe077;" d="M300 0v1100l500 -487v437q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438z" />
-<glyph unicode="&#xe078;" d="M100 250v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5zM100 500h1100l-550 564z" />
-<glyph unicode="&#xe079;" d="M185 599l592 -592l240 240l-353 353l353 353l-240 240z" />
-<glyph unicode="&#xe080;" d="M272 194l353 353l-353 353l241 240l572 -571l21 -22l-1 -1v-1l-592 -591z" />
-<glyph unicode="&#xe081;" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM300 500h200v-200h200v200h200v200h-200v200h-200v-200h-200v-200z" />
-<glyph unicode="&#xe082;" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM300 500h600v200h-600v-200z" />
-<glyph unicode="&#xe083;" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM246 459l213 -213l141 142l141 -142l213 213l-142 141l142 141l-213 212l-141 -141l-141 142l-212 -213l141 -141 z" />
-<glyph unicode="&#xe084;" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM270 551l276 -277l411 411l-175 174l-236 -236l-102 102z" />
-<glyph unicode="&#xe085;" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM364 700h143q4 0 11.5 -1t11 -1t6.5 3t3 9t1 11t3.5 8.5t3.5 6t5.5 4t6.5 2.5t9 1.5t9 0.5h11.5h12.5 q19 0 30 -10t11 -26q0 -22 -4 -28t-27 -22q-5 -1 -12.5 -3t-27 -13.5t-34 -27t-26.5 -46t-11 -68.5h200q5 3 14 8t31.5 25.5t39.5 45.5t31 69t14 94q0 51 -17.5 89t-42 58t-58.5 32t-58.5 15t-51.5 3q-50 0 -90.5 -12t-75 -38.5t-53.5 -74.5t-19 -114zM500 300h200v100h-200 v-100z" />
-<glyph unicode="&#xe086;" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM400 300h400v100h-100v300h-300v-100h100v-200h-100v-100zM500 800h200v100h-200v-100z" />
-<glyph unicode="&#xe087;" d="M0 500v200h195q31 125 98.5 199.5t206.5 100.5v200h200v-200q54 -20 113 -60t112.5 -105.5t71.5 -134.5h203v-200h-203q-25 -102 -116.5 -186t-180.5 -117v-197h-200v197q-140 27 -208 102.5t-98 200.5h-194zM290 500q24 -73 79.5 -127.5t130.5 -78.5v206h200v-206 q149 48 201 206h-201v200h200q-25 74 -75.5 127t-124.5 77v-204h-200v203q-75 -23 -130 -77t-79 -126h209v-200h-210z" />
-<glyph unicode="&#xe088;" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM356 465l135 135 l-135 135l109 109l135 -135l135 135l109 -109l-135 -135l135 -135l-109 -109l-135 135l-135 -135z" />
-<glyph unicode="&#xe089;" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM322 537l141 141 l87 -87l204 205l142 -142l-346 -345z" />
-<glyph unicode="&#xe090;" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -115 62 -215l568 567q-100 62 -216 62q-171 0 -292.5 -121.5t-121.5 -292.5zM391 245q97 -59 209 -59q171 0 292.5 121.5t121.5 292.5 q0 112 -59 209z" />
-<glyph unicode="&#xe091;" d="M0 547l600 453v-300h600v-300h-600v-301z" />
-<glyph unicode="&#xe092;" d="M0 400v300h600v300l600 -453l-600 -448v301h-600z" />
-<glyph unicode="&#xe093;" d="M204 600l450 600l444 -600h-298v-600h-300v600h-296z" />
-<glyph unicode="&#xe094;" d="M104 600h296v600h300v-600h298l-449 -600z" />
-<glyph unicode="&#xe095;" d="M0 200q6 132 41 238.5t103.5 193t184 138t271.5 59.5v271l600 -453l-600 -448v301q-95 -2 -183 -20t-170 -52t-147 -92.5t-100 -135.5z" />
-<glyph unicode="&#xe096;" d="M0 0v400l129 -129l294 294l142 -142l-294 -294l129 -129h-400zM635 777l142 -142l294 294l129 -129v400h-400l129 -129z" />
-<glyph unicode="&#xe097;" d="M34 176l295 295l-129 129h400v-400l-129 130l-295 -295zM600 600v400l129 -129l295 295l142 -141l-295 -295l129 -130h-400z" />
-<glyph unicode="&#xe101;" d="M23 600q0 118 45.5 224.5t123 184t184 123t224.5 45.5t224.5 -45.5t184 -123t123 -184t45.5 -224.5t-45.5 -224.5t-123 -184t-184 -123t-224.5 -45.5t-224.5 45.5t-184 123t-123 184t-45.5 224.5zM456 851l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5 t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5h-207q-21 0 -33 -14.5t-8 -34.5zM500 300h200v100h-200v-100z" />
-<glyph unicode="&#xe102;" d="M0 800h100v-200h400v300h200v-300h400v200h100v100h-111q1 1 1 6.5t-1.5 15t-3.5 17.5l-34 172q-11 39 -41.5 63t-69.5 24q-32 0 -61 -17l-239 -144q-22 -13 -40 -35q-19 24 -40 36l-238 144q-33 18 -62 18q-39 0 -69.5 -23t-40.5 -61l-35 -177q-2 -8 -3 -18t-1 -15v-6 h-111v-100zM100 0h400v400h-400v-400zM200 900q-3 0 14 48t36 96l18 47l213 -191h-281zM700 0v400h400v-400h-400zM731 900l202 197q5 -12 12 -32.5t23 -64t25 -72t7 -28.5h-269z" />
-<glyph unicode="&#xe103;" d="M0 -22v143l216 193q-9 53 -13 83t-5.5 94t9 113t38.5 114t74 124q47 60 99.5 102.5t103 68t127.5 48t145.5 37.5t184.5 43.5t220 58.5q0 -189 -22 -343t-59 -258t-89 -181.5t-108.5 -120t-122 -68t-125.5 -30t-121.5 -1.5t-107.5 12.5t-87.5 17t-56.5 7.5l-99 -55z M238.5 300.5q19.5 -6.5 86.5 76.5q55 66 367 234q70 38 118.5 69.5t102 79t99 111.5t86.5 148q22 50 24 60t-6 19q-7 5 -17 5t-26.5 -14.5t-33.5 -39.5q-35 -51 -113.5 -108.5t-139.5 -89.5l-61 -32q-369 -197 -458 -401q-48 -111 -28.5 -117.5z" />
-<glyph unicode="&#xe104;" d="M111 408q0 -33 5 -63q9 -56 44 -119.5t105 -108.5q31 -21 64 -16t62 23.5t57 49.5t48 61.5t35 60.5q32 66 39 184.5t-13 157.5q79 -80 122 -164t26 -184q-5 -33 -20.5 -69.5t-37.5 -80.5q-10 -19 -14.5 -29t-12 -26t-9 -23.5t-3 -19t2.5 -15.5t11 -9.5t19.5 -5t30.5 2.5 t42 8q57 20 91 34t87.5 44.5t87 64t65.5 88.5t47 122q38 172 -44.5 341.5t-246.5 278.5q22 -44 43 -129q39 -159 -32 -154q-15 2 -33 9q-79 33 -120.5 100t-44 175.5t48.5 257.5q-13 -8 -34 -23.5t-72.5 -66.5t-88.5 -105.5t-60 -138t-8 -166.5q2 -12 8 -41.5t8 -43t6 -39.5 t3.5 -39.5t-1 -33.5t-6 -31.5t-13.5 -24t-21 -20.5t-31 -12q-38 -10 -67 13t-40.5 61.5t-15 81.5t10.5 75q-52 -46 -83.5 -101t-39 -107t-7.5 -85z" />
-<glyph unicode="&#xe105;" d="M-61 600l26 40q6 10 20 30t49 63.5t74.5 85.5t97 90t116.5 83.5t132.5 59t145.5 23.5t145.5 -23.5t132.5 -59t116.5 -83.5t97 -90t74.5 -85.5t49 -63.5t20 -30l26 -40l-26 -40q-6 -10 -20 -30t-49 -63.5t-74.5 -85.5t-97 -90t-116.5 -83.5t-132.5 -59t-145.5 -23.5 t-145.5 23.5t-132.5 59t-116.5 83.5t-97 90t-74.5 85.5t-49 63.5t-20 30zM120 600q7 -10 40.5 -58t56 -78.5t68 -77.5t87.5 -75t103 -49.5t125 -21.5t123.5 20t100.5 45.5t85.5 71.5t66.5 75.5t58 81.5t47 66q-1 1 -28.5 37.5t-42 55t-43.5 53t-57.5 63.5t-58.5 54 q49 -74 49 -163q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 85 46 158q-102 -87 -226 -258zM377 656q49 -124 154 -191l105 105q-37 24 -75 72t-57 84l-20 36z" />
-<glyph unicode="&#xe106;" d="M-61 600l26 40q6 10 20 30t49 63.5t74.5 85.5t97 90t116.5 83.5t132.5 59t145.5 23.5q61 0 121 -17l37 142h148l-314 -1200h-148l37 143q-82 21 -165 71.5t-140 102t-109.5 112t-72 88.5t-29.5 43zM120 600q210 -282 393 -336l37 141q-107 18 -178.5 101.5t-71.5 193.5 q0 85 46 158q-102 -87 -226 -258zM377 656q49 -124 154 -191l47 47l23 87q-30 28 -59 69t-44 68l-14 26zM780 161l38 145q22 15 44.5 34t46 44t40.5 44t41 50.5t33.5 43.5t33 44t24.5 34q-97 127 -140 175l39 146q67 -54 131.5 -125.5t87.5 -103.5t36 -52l26 -40l-26 -40 q-7 -12 -25.5 -38t-63.5 -79.5t-95.5 -102.5t-124 -100t-146.5 -79z" />
-<glyph unicode="&#xe107;" d="M-97.5 34q13.5 -34 50.5 -34h1294q37 0 50.5 35.5t-7.5 67.5l-642 1056q-20 34 -48 36.5t-48 -29.5l-642 -1066q-21 -32 -7.5 -66zM155 200l445 723l445 -723h-345v100h-200v-100h-345zM500 600l100 -300l100 300v100h-200v-100z" />
-<glyph unicode="&#xe108;" d="M100 262v41q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44t106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -91 100 -113v-64q0 -20 -13 -28.5t-32 0.5l-94 78h-222l-94 -78q-19 -9 -32 -0.5t-13 28.5 v64q0 22 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5z" />
-<glyph unicode="&#xe109;" d="M0 50q0 -20 14.5 -35t35.5 -15h1000q21 0 35.5 15t14.5 35v750h-1100v-750zM0 900h1100v150q0 21 -14.5 35.5t-35.5 14.5h-150v100h-100v-100h-500v100h-100v-100h-150q-21 0 -35.5 -14.5t-14.5 -35.5v-150zM100 100v100h100v-100h-100zM100 300v100h100v-100h-100z M100 500v100h100v-100h-100zM300 100v100h100v-100h-100zM300 300v100h100v-100h-100zM300 500v100h100v-100h-100zM500 100v100h100v-100h-100zM500 300v100h100v-100h-100zM500 500v100h100v-100h-100zM700 100v100h100v-100h-100zM700 300v100h100v-100h-100zM700 500 v100h100v-100h-100zM900 100v100h100v-100h-100zM900 300v100h100v-100h-100zM900 500v100h100v-100h-100z" />
-<glyph unicode="&#xe110;" d="M0 200v200h259l600 600h241v198l300 -295l-300 -300v197h-159l-600 -600h-341zM0 800h259l122 -122l141 142l-181 180h-341v-200zM678 381l141 142l122 -123h159v198l300 -295l-300 -300v197h-241z" />
-<glyph unicode="&#xe111;" d="M0 400v600q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5z" />
-<glyph unicode="&#xe112;" d="M100 600v200h300v-250q0 -113 6 -145q17 -92 102 -117q39 -11 92 -11q37 0 66.5 5.5t50 15.5t36 24t24 31.5t14 37.5t7 42t2.5 45t0 47v25v250h300v-200q0 -42 -3 -83t-15 -104t-31.5 -116t-58 -109.5t-89 -96.5t-129 -65.5t-174.5 -25.5t-174.5 25.5t-129 65.5t-89 96.5 t-58 109.5t-31.5 116t-15 104t-3 83zM100 900v300h300v-300h-300zM800 900v300h300v-300h-300z" />
-<glyph unicode="&#xe113;" d="M-30 411l227 -227l352 353l353 -353l226 227l-578 579z" />
-<glyph unicode="&#xe114;" d="M70 797l580 -579l578 579l-226 227l-353 -353l-352 353z" />
-<glyph unicode="&#xe115;" d="M-198 700l299 283l300 -283h-203v-400h385l215 -200h-800v600h-196zM402 1000l215 -200h381v-400h-198l299 -283l299 283h-200v600h-796z" />
-<glyph unicode="&#xe116;" d="M18 939q-5 24 10 42q14 19 39 19h896l38 162q5 17 18.5 27.5t30.5 10.5h94q20 0 35 -14.5t15 -35.5t-15 -35.5t-35 -14.5h-54l-201 -961q-2 -4 -6 -10.5t-19 -17.5t-33 -11h-31v-50q0 -20 -14.5 -35t-35.5 -15t-35.5 15t-14.5 35v50h-300v-50q0 -20 -14.5 -35t-35.5 -15 t-35.5 15t-14.5 35v50h-50q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5h535l48 200h-633q-32 0 -54.5 21t-27.5 43z" />
-<glyph unicode="&#xe117;" d="M0 0v800h1200v-800h-1200zM0 900v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500v-100h-1200z" />
-<glyph unicode="&#xe118;" d="M1 0l300 700h1200l-300 -700h-1200zM1 400v600h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500v-200h-1000z" />
-<glyph unicode="&#xe119;" d="M302 300h198v600h-198l298 300l298 -300h-198v-600h198l-298 -300z" />
-<glyph unicode="&#xe120;" d="M0 600l300 298v-198h600v198l300 -298l-300 -297v197h-600v-197z" />
-<glyph unicode="&#xe121;" d="M0 100v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM31 400l172 739q5 22 23 41.5t38 19.5h672q19 0 37.5 -22.5t23.5 -45.5l172 -732h-1138zM800 100h100v100h-100v-100z M1000 100h100v100h-100v-100z" />
-<glyph unicode="&#xe122;" d="M-101 600v50q0 24 25 49t50 38l25 13v-250l-11 5.5t-24 14t-30 21.5t-24 27.5t-11 31.5zM100 500v250v8v8v7t0.5 7t1.5 5.5t2 5t3 4t4.5 3.5t6 1.5t7.5 0.5h200l675 250v-850l-675 200h-38l47 -276q2 -12 -3 -17.5t-11 -6t-21 -0.5h-8h-83q-20 0 -34.5 14t-18.5 35 q-55 337 -55 351zM1100 200v850q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5v-850q0 -20 -15 -35t-35 -15q-21 0 -35.5 15t-14.5 35z" />
-<glyph unicode="&#xe123;" d="M74 350q0 21 13.5 35.5t33.5 14.5h18l117 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3 32t29 13h94q20 0 29 -10.5t3 -29.5q-18 -36 -18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q20 0 33.5 -14.5t13.5 -35.5q0 -20 -13 -40t-31 -27q-8 -3 -23 -8.5 t-65 -20t-103 -25t-132.5 -19.5t-158.5 -9q-125 0 -245.5 20.5t-178.5 40.5l-58 20q-18 7 -31 27.5t-13 40.5zM497 110q12 -49 40 -79.5t63 -30.5t63 30.5t39 79.5q-48 -6 -102 -6t-103 6z" />
-<glyph unicode="&#xe124;" d="M21 445l233 -45l-78 -224l224 78l45 -233l155 179l155 -179l45 233l224 -78l-78 224l234 45l-180 155l180 156l-234 44l78 225l-224 -78l-45 233l-155 -180l-155 180l-45 -233l-224 78l78 -225l-233 -44l179 -156z" />
-<glyph unicode="&#xe125;" d="M0 200h200v600h-200v-600zM300 275q0 -75 100 -75h61q124 -100 139 -100h250q46 0 83 57l238 344q29 31 29 74v100q0 44 -30.5 84.5t-69.5 40.5h-328q28 118 28 125v150q0 44 -30.5 84.5t-69.5 40.5h-50q-27 0 -51 -20t-38 -48l-96 -198l-145 -196q-20 -26 -20 -63v-400z M400 300v375l150 213l100 212h50v-175l-50 -225h450v-125l-250 -375h-214l-136 100h-100z" />
-<glyph unicode="&#xe126;" d="M0 400v600h200v-600h-200zM300 525v400q0 75 100 75h61q124 100 139 100h250q46 0 83 -57l238 -344q29 -31 29 -74v-100q0 -44 -30.5 -84.5t-69.5 -40.5h-328q28 -118 28 -125v-150q0 -44 -30.5 -84.5t-69.5 -40.5h-50q-27 0 -51 20t-38 48l-96 198l-145 196 q-20 26 -20 63zM400 525l150 -212l100 -213h50v175l-50 225h450v125l-250 375h-214l-136 -100h-100v-375z" />
-<glyph unicode="&#xe127;" d="M8 200v600h200v-600h-200zM308 275v525q0 17 14 35.5t28 28.5l14 9l362 230q14 6 25 6q17 0 29 -12l109 -112q14 -14 14 -34q0 -18 -11 -32l-85 -121h302q85 0 138.5 -38t53.5 -110t-54.5 -111t-138.5 -39h-107l-130 -339q-7 -22 -20.5 -41.5t-28.5 -19.5h-341 q-7 0 -90 81t-83 94zM408 289l100 -89h293l131 339q6 21 19.5 41t28.5 20h203q16 0 25 15t9 36q0 20 -9 34.5t-25 14.5h-457h-6.5h-7.5t-6.5 0.5t-6 1t-5 1.5t-5.5 2.5t-4 4t-4 5.5q-5 12 -5 20q0 14 10 27l147 183l-86 83l-339 -236v-503z" />
-<glyph unicode="&#xe128;" d="M-101 651q0 72 54 110t139 38l302 -1l-85 121q-11 16 -11 32q0 21 14 34l109 113q13 12 29 12q11 0 25 -6l365 -230q7 -4 17 -10.5t26.5 -26t16.5 -36.5v-526q0 -13 -86 -93.5t-94 -80.5h-341q-16 0 -29.5 20t-19.5 41l-130 339h-107q-84 0 -139 39t-55 111zM-1 601h222 q15 0 28.5 -20.5t19.5 -40.5l131 -339h293l107 89v502l-343 237l-87 -83l145 -184q10 -11 10 -26q0 -11 -5 -20q-1 -3 -3.5 -5.5l-4 -4t-5 -2.5t-5.5 -1.5t-6.5 -1t-6.5 -0.5h-7.5h-6.5h-476v-100zM1000 201v600h200v-600h-200z" />
-<glyph unicode="&#xe129;" d="M97 719l230 -363q4 -6 10.5 -15.5t26 -25t36.5 -15.5h525q13 0 94 83t81 90v342q0 15 -20 28.5t-41 19.5l-339 131v106q0 84 -39 139t-111 55t-110 -53.5t-38 -138.5v-302l-121 84q-15 12 -33.5 11.5t-32.5 -13.5l-112 -110q-22 -22 -6 -53zM172 739l83 86l183 -146 q22 -18 47 -5q3 1 5.5 3.5l4 4t2.5 5t1.5 5.5t1 6.5t0.5 6.5v7.5v6.5v456q0 22 25 31t50 -0.5t25 -30.5v-202q0 -16 20 -29.5t41 -19.5l339 -130v-294l-89 -100h-503zM400 0v200h600v-200h-600z" />
-<glyph unicode="&#xe130;" d="M2 585q-16 -31 6 -53l112 -110q13 -13 32 -13.5t34 10.5l121 85q0 -51 -0.5 -153.5t-0.5 -148.5q0 -84 38.5 -138t110.5 -54t111 55t39 139v106l339 131q20 6 40.5 19.5t20.5 28.5v342q0 7 -81 90t-94 83h-525q-17 0 -35.5 -14t-28.5 -28l-10 -15zM77 565l236 339h503 l89 -100v-294l-340 -130q-20 -6 -40 -20t-20 -29v-202q0 -22 -25 -31t-50 0t-25 31v456v14.5t-1.5 11.5t-5 12t-9.5 7q-24 13 -46 -5l-184 -146zM305 1104v200h600v-200h-600z" />
-<glyph unicode="&#xe131;" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM298 701l2 -201h300l-2 -194l402 294l-402 298v-197h-300z" />
-<glyph unicode="&#xe132;" d="M0 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t231.5 47.5q122 0 232.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-218 -217.5t-300 -80t-299.5 80t-217.5 217.5t-80 299.5zM200 600l402 -294l-2 194h300l2 201h-300v197z" />
-<glyph unicode="&#xe133;" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 600h200v-300h200v300h200l-300 400z" />
-<glyph unicode="&#xe134;" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 600l300 -400l300 400h-200v300h-200v-300h-200z" />
-<glyph unicode="&#xe135;" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q121 0 231.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM254 780q-8 -33 5.5 -92.5t7.5 -87.5q0 -9 17 -44t16 -60 q12 0 23 -5.5t23 -15t20 -13.5q24 -12 108 -42q22 -8 53 -31.5t59.5 -38.5t57.5 -11q8 -18 -15 -55t-20 -57q42 -71 87 -80q0 -6 -3 -15.5t-3.5 -14.5t4.5 -17q104 -3 221 112q30 29 47 47t34.5 49t20.5 62q-14 9 -37 9.5t-36 7.5q-14 7 -49 15t-52 19q-9 0 -39.5 -0.5 t-46.5 -1.5t-39 -6.5t-39 -16.5q-50 -35 -66 -12q-4 2 -3.5 25.5t0.5 25.5q-6 13 -26.5 17t-24.5 7q2 22 -2 41t-16.5 28t-38.5 -20q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q12 -19 32 -37.5t34 -27.5l14 -8q0 3 9.5 39.5t5.5 57.5 q-4 23 14.5 44.5t22.5 31.5q5 14 10 35t8.5 31t15.5 22.5t34 21.5q-6 18 10 37q8 0 23.5 -1.5t24.5 -1.5t20.5 4.5t20.5 15.5q-10 23 -30.5 42.5t-38 30t-49 26.5t-43.5 23q11 39 2 44q31 -13 58 -14.5t39 3.5l11 4q7 36 -16.5 53.5t-64.5 28.5t-56 23q-19 -3 -37 0 q-15 -12 -36.5 -21t-34.5 -12t-44 -8t-39 -6q-15 -3 -45.5 0.5t-45.5 -2.5q-21 -7 -52 -26.5t-34 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -90.5t-29.5 -79.5zM518 916q3 12 16 30t16 25q10 -10 18.5 -10t14 6t14.5 14.5t16 12.5q0 -24 17 -66.5t17 -43.5 q-9 2 -31 5t-36 5t-32 8t-30 14zM692 1003h1h-1z" />
-<glyph unicode="&#xe136;" d="M0 164.5q0 21.5 15 37.5l600 599q-33 101 6 201.5t135 154.5q164 92 306 -9l-259 -138l145 -232l251 126q13 -175 -151 -267q-123 -70 -253 -23l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5z" />
-<glyph unicode="&#xe137;" horiz-adv-x="1220" d="M0 196v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM0 596v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5zM0 996v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM600 596h500v100h-500v-100zM800 196h300v100h-300v-100zM900 996h200v100h-200v-100z" />
-<glyph unicode="&#xe138;" d="M100 1100v100h1000v-100h-1000zM150 1000h900l-350 -500v-300l-200 -200v500z" />
-<glyph unicode="&#xe139;" d="M0 200v200h1200v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM0 500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500z M500 1000h200v100h-200v-100z" />
-<glyph unicode="&#xe140;" d="M0 0v400l129 -129l200 200l142 -142l-200 -200l129 -129h-400zM0 800l129 129l200 -200l142 142l-200 200l129 129h-400v-400zM729 329l142 142l200 -200l129 129v-400h-400l129 129zM729 871l200 200l-129 129h400v-400l-129 129l-200 -200z" />
-<glyph unicode="&#xe141;" d="M0 596q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM182 596q0 -172 121.5 -293t292.5 -121t292.5 121t121.5 293q0 171 -121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM291 655 q0 23 15.5 38.5t38.5 15.5t39 -16t16 -38q0 -23 -16 -39t-39 -16q-22 0 -38 16t-16 39zM400 850q0 22 16 38.5t39 16.5q22 0 38 -16t16 -39t-16 -39t-38 -16q-23 0 -39 16.5t-16 38.5zM514 609q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 22 16 38.5t39 16.5 q22 0 38 -16t16 -39t-16 -39t-38 -16q-14 0 -29 10l-55 -145q17 -22 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5zM800 655q0 22 16 38t39 16t38.5 -15.5t15.5 -38.5t-16 -39t-38 -16q-23 0 -39 16t-16 39z" />
-<glyph unicode="&#xe142;" d="M-40 375q-13 -95 35 -173q35 -57 94 -89t129 -32q63 0 119 28q33 16 65 40.5t52.5 45.5t59.5 64q40 44 57 61l394 394q35 35 47 84t-3 96q-27 87 -117 104q-20 2 -29 2q-46 0 -78.5 -16.5t-67.5 -51.5l-389 -396l-7 -7l69 -67l377 373q20 22 39 38q23 23 50 23 q38 0 53 -36q16 -39 -20 -75l-547 -547q-52 -52 -125 -52q-55 0 -100 33t-54 96q-5 35 2.5 66t31.5 63t42 50t56 54q24 21 44 41l348 348q52 52 82.5 79.5t84 54t107.5 26.5q25 0 48 -4q95 -17 154 -94.5t51 -175.5q-7 -101 -98 -192l-252 -249l-253 -256l7 -7l69 -60 l517 511q67 67 95 157t11 183q-16 87 -67 154t-130 103q-69 33 -152 33q-107 0 -197 -55q-40 -24 -111 -95l-512 -512q-68 -68 -81 -163z" />
-<glyph unicode="&#xe143;" d="M80 784q0 131 98.5 229.5t230.5 98.5q143 0 241 -129q103 129 246 129q129 0 226 -98.5t97 -229.5q0 -46 -17.5 -91t-61 -99t-77 -89.5t-104.5 -105.5q-197 -191 -293 -322l-17 -23l-16 23q-43 58 -100 122.5t-92 99.5t-101 100q-71 70 -104.5 105.5t-77 89.5t-61 99 t-17.5 91zM250 784q0 -27 30.5 -70t61.5 -75.5t95 -94.5l22 -22q93 -90 190 -201q82 92 195 203l12 12q64 62 97.5 97t64.5 79t31 72q0 71 -48 119.5t-105 48.5q-74 0 -132 -83l-118 -171l-114 174q-51 80 -123 80q-60 0 -109.5 -49.5t-49.5 -118.5z" />
-<glyph unicode="&#xe144;" d="M57 353q0 -95 66 -159l141 -142q68 -66 159 -66q93 0 159 66l283 283q66 66 66 159t-66 159l-141 141q-8 9 -19 17l-105 -105l212 -212l-389 -389l-247 248l95 95l-18 18q-46 45 -75 101l-55 -55q-66 -66 -66 -159zM269 706q0 -93 66 -159l141 -141q7 -7 19 -17l105 105 l-212 212l389 389l247 -247l-95 -96l18 -17q47 -49 77 -100l29 29q35 35 62.5 88t27.5 96q0 93 -66 159l-141 141q-66 66 -159 66q-95 0 -159 -66l-283 -283q-66 -64 -66 -159z" />
-<glyph unicode="&#xe145;" d="M200 100v953q0 21 30 46t81 48t129 38t163 15t162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5zM300 300h600v700h-600v-700zM496 150q0 -43 30.5 -73.5t73.5 -30.5t73.5 30.5t30.5 73.5t-30.5 73.5t-73.5 30.5 t-73.5 -30.5t-30.5 -73.5z" />
-<glyph unicode="&#xe146;" d="M0 0l303 380l207 208l-210 212h300l267 279l-35 36q-15 14 -15 35t15 35q14 15 35 15t35 -15l283 -282q15 -15 15 -36t-15 -35q-14 -15 -35 -15t-35 15l-36 35l-279 -267v-300l-212 210l-208 -207z" />
-<glyph unicode="&#xe148;" d="M295 433h139q5 -77 48.5 -126.5t117.5 -64.5v335q-6 1 -15.5 4t-11.5 3q-46 14 -79 26.5t-72 36t-62.5 52t-40 72.5t-16.5 99q0 92 44 159.5t109 101t144 40.5v78h100v-79q38 -4 72.5 -13.5t75.5 -31.5t71 -53.5t51.5 -84t24.5 -118.5h-159q-8 72 -35 109.5t-101 50.5 v-307l64 -14q34 -7 64 -16.5t70 -31.5t67.5 -52t47.5 -80.5t20 -112.5q0 -139 -89 -224t-244 -96v-77h-100v78q-152 17 -237 104q-40 40 -52.5 93.5t-15.5 139.5zM466 889q0 -29 8 -51t16.5 -34t29.5 -22.5t31 -13.5t38 -10q7 -2 11 -3v274q-61 -8 -97.5 -37.5t-36.5 -102.5 zM700 237q170 18 170 151q0 64 -44 99.5t-126 60.5v-311z" />
-<glyph unicode="&#xe149;" d="M100 600v100h166q-24 49 -44 104q-10 26 -14.5 55.5t-3 72.5t25 90t68.5 87q97 88 263 88q129 0 230 -89t101 -208h-153q0 52 -34 89.5t-74 51.5t-76 14q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -28 16.5 -69.5t28 -62.5t41.5 -72h241v-100h-197q8 -50 -2.5 -115 t-31.5 -94q-41 -59 -99 -113q35 11 84 18t70 7q33 1 103 -16t103 -17q76 0 136 30l50 -147q-41 -25 -80.5 -36.5t-59 -13t-61.5 -1.5q-23 0 -128 33t-155 29q-39 -4 -82 -17t-66 -25l-24 -11l-55 145l16.5 11t15.5 10t13.5 9.5t14.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221z" />
-<glyph unicode="&#xe150;" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM602 900l298 300l298 -300h-198v-900h-200v900h-198z" />
-<glyph unicode="&#xe151;" d="M2 300h198v900h200v-900h198l-298 -300zM700 0v200h100v-100h200v-100h-300zM700 400v100h300v-200h-99v-100h-100v100h99v100h-200zM700 700v500h300v-500h-100v100h-100v-100h-100zM801 900h100v200h-100v-200z" />
-<glyph unicode="&#xe152;" d="M2 300h198v900h200v-900h198l-298 -300zM700 0v500h300v-500h-100v100h-100v-100h-100zM700 700v200h100v-100h200v-100h-300zM700 1100v100h300v-200h-99v-100h-100v100h99v100h-200zM801 200h100v200h-100v-200z" />
-<glyph unicode="&#xe153;" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM800 100v400h300v-500h-100v100h-200zM800 1100v100h200v-500h-100v400h-100zM901 200h100v200h-100v-200z" />
-<glyph unicode="&#xe154;" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM800 400v100h200v-500h-100v400h-100zM800 800v400h300v-500h-100v100h-200zM901 900h100v200h-100v-200z" />
-<glyph unicode="&#xe155;" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM700 100v200h500v-200h-500zM700 400v200h400v-200h-400zM700 700v200h300v-200h-300zM700 1000v200h200v-200h-200z" />
-<glyph unicode="&#xe156;" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM700 100v200h200v-200h-200zM700 400v200h300v-200h-300zM700 700v200h400v-200h-400zM700 1000v200h500v-200h-500z" />
-<glyph unicode="&#xe157;" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q162 0 281 -118.5t119 -281.5v-300q0 -165 -118.5 -282.5t-281.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500z" />
-<glyph unicode="&#xe158;" d="M0 400v300q0 163 119 281.5t281 118.5h300q165 0 282.5 -117.5t117.5 -282.5v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-163 0 -281.5 117.5t-118.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM400 300l333 250l-333 250v-500z" />
-<glyph unicode="&#xe159;" d="M0 400v300q0 163 117.5 281.5t282.5 118.5h300q163 0 281.5 -119t118.5 -281v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM300 700l250 -333l250 333h-500z" />
-<glyph unicode="&#xe160;" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q165 0 282.5 -117.5t117.5 -282.5v-300q0 -162 -118.5 -281t-281.5 -119h-300q-165 0 -282.5 118.5t-117.5 281.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM300 400h500l-250 333z" />
-<glyph unicode="&#xe161;" d="M0 400v300h300v200l400 -350l-400 -350v200h-300zM500 0v200h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-500v200h400q165 0 282.5 -117.5t117.5 -282.5v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-400z" />
-<glyph unicode="&#xe162;" d="M217 519q8 -19 31 -19h302q-155 -438 -160 -458q-5 -21 4 -32l9 -8h9q14 0 26 15q11 13 274.5 321.5t264.5 308.5q14 19 5 36q-8 17 -31 17l-301 -1q1 4 78 219.5t79 227.5q2 15 -5 27l-9 9h-9q-15 0 -25 -16q-4 -6 -98 -111.5t-228.5 -257t-209.5 -237.5q-16 -19 -6 -41 z" />
-<glyph unicode="&#xe163;" d="M0 400q0 -165 117.5 -282.5t282.5 -117.5h300q47 0 100 15v185h-500q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5h500v185q-14 4 -114 7.5t-193 5.5l-93 2q-165 0 -282.5 -117.5t-117.5 -282.5v-300zM600 400v300h300v200l400 -350l-400 -350v200h-300z " />
-<glyph unicode="&#xe164;" d="M0 400q0 -165 117.5 -282.5t282.5 -117.5h300q163 0 281.5 117.5t118.5 282.5v98l-78 73l-122 -123v-148q0 -41 -29.5 -70.5t-70.5 -29.5h-500q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5h156l118 122l-74 78h-100q-165 0 -282.5 -117.5t-117.5 -282.5 v-300zM496 709l353 342l-149 149h500v-500l-149 149l-342 -353z" />
-<glyph unicode="&#xe165;" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM406 600 q0 80 57 137t137 57t137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137z" />
-<glyph unicode="&#xe166;" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 800l445 -500l450 500h-295v400h-300v-400h-300zM900 150h100v50h-100v-50z" />
-<glyph unicode="&#xe167;" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 700h300v-300h300v300h295l-445 500zM900 150h100v50h-100v-50z" />
-<glyph unicode="&#xe168;" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 705l305 -305l596 596l-154 155l-442 -442l-150 151zM900 150h100v50h-100v-50z" />
-<glyph unicode="&#xe169;" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 988l97 -98l212 213l-97 97zM200 400l697 1l3 699l-250 -239l-149 149l-212 -212l149 -149zM900 150h100v50h-100v-50z" />
-<glyph unicode="&#xe170;" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM200 612l212 -212l98 97l-213 212zM300 1200l239 -250l-149 -149l212 -212l149 148l249 -237l-1 697zM900 150h100v50h-100v-50z" />
-<glyph unicode="&#xe171;" d="M23 415l1177 784v-1079l-475 272l-310 -393v416h-392zM494 210l672 938l-672 -712v-226z" />
-<glyph unicode="&#xe172;" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-850q0 -21 -15 -35.5t-35 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 1000h100v200h-100v-200z" />
-<glyph unicode="&#xe173;" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-218l-276 -275l-120 120l-126 -127h-378v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM581 306l123 123l120 -120l353 352l123 -123l-475 -476zM600 1000h100v200h-100v-200z" />
-<glyph unicode="&#xe174;" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-269l-103 -103l-170 170l-298 -298h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 1000h100v200h-100v-200zM700 133l170 170l-170 170l127 127l170 -170l170 170l127 -128l-170 -169l170 -170 l-127 -127l-170 170l-170 -170z" />
-<glyph unicode="&#xe175;" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-300h-400v-200h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 300l300 -300l300 300h-200v300h-200v-300h-200zM600 1000v200h100v-200h-100z" />
-<glyph unicode="&#xe176;" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-402l-200 200l-298 -298h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 300h200v-300h200v300h200l-300 300zM600 1000v200h100v-200h-100z" />
-<glyph unicode="&#xe177;" d="M0 250q0 -21 14.5 -35.5t35.5 -14.5h1100q21 0 35.5 14.5t14.5 35.5v550h-1200v-550zM0 900h1200v150q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-150zM100 300v200h400v-200h-400z" />
-<glyph unicode="&#xe178;" d="M0 400l300 298v-198h400v-200h-400v-198zM100 800v200h100v-200h-100zM300 800v200h100v-200h-100zM500 800v200h400v198l300 -298l-300 -298v198h-400zM800 300v200h100v-200h-100zM1000 300h100v200h-100v-200z" />
-<glyph unicode="&#xe179;" d="M100 700v400l50 100l50 -100v-300h100v300l50 100l50 -100v-300h100v300l50 100l50 -100v-400l-100 -203v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447zM800 597q0 -29 10.5 -55.5t25 -43t29 -28.5t25.5 -18l10 -5v-397q0 -21 14.5 -35.5 t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v1106q0 31 -18 40.5t-44 -7.5l-276 -116q-25 -17 -43.5 -51.5t-18.5 -65.5v-359z" />
-<glyph unicode="&#xe180;" d="M100 0h400v56q-75 0 -87.5 6t-12.5 44v394h500v-394q0 -38 -12.5 -44t-87.5 -6v-56h400v56q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v888q0 22 25 34.5t50 13.5l25 2v56h-400v-56q75 0 87.5 -6t12.5 -44v-394h-500v394q0 38 12.5 44t87.5 6v56h-400v-56q4 0 11 -0.5 t24 -3t30 -7t24 -15t11 -24.5v-888q0 -22 -25 -34.5t-50 -13.5l-25 -2v-56z" />
-<glyph unicode="&#xe181;" d="M0 300q0 -41 29.5 -70.5t70.5 -29.5h300q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-300q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM100 100h400l200 200h105l295 98v-298h-425l-100 -100h-375zM100 300v200h300v-200h-300zM100 600v200h300v-200h-300z M100 1000h400l200 -200v-98l295 98h105v200h-425l-100 100h-375zM700 402v163l400 133v-163z" />
-<glyph unicode="&#xe182;" d="M16.5 974.5q0.5 -21.5 16 -90t46.5 -140t104 -177.5t175 -208q103 -103 207.5 -176t180 -103.5t137 -47t92.5 -16.5l31 1l163 162q17 18 13.5 41t-22.5 37l-192 136q-19 14 -45 12t-42 -19l-118 -118q-142 101 -268 227t-227 268l118 118q17 17 20 41.5t-11 44.5 l-139 194q-14 19 -36.5 22t-40.5 -14l-162 -162q-1 -11 -0.5 -32.5z" />
-<glyph unicode="&#xe183;" d="M0 50v212q0 20 10.5 45.5t24.5 39.5l365 303v50q0 4 1 10.5t12 22.5t30 28.5t60 23t97 10.5t97 -10t60 -23.5t30 -27.5t12 -24l1 -10v-50l365 -303q14 -14 24.5 -39.5t10.5 -45.5v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-20 0 -35 14.5t-15 35.5zM0 712 q0 -21 14.5 -33.5t34.5 -8.5l202 33q20 4 34.5 21t14.5 38v146q141 24 300 24t300 -24v-146q0 -21 14.5 -38t34.5 -21l202 -33q20 -4 34.5 8.5t14.5 33.5v200q-6 8 -19 20.5t-63 45t-112 57t-171 45t-235 20.5q-92 0 -175 -10.5t-141.5 -27t-108.5 -36.5t-81.5 -40 t-53.5 -36.5t-31 -27.5l-9 -10v-200z" />
-<glyph unicode="&#xe184;" d="M100 0v100h1100v-100h-1100zM175 200h950l-125 150v250l100 100v400h-100v-200h-100v200h-200v-200h-100v200h-200v-200h-100v200h-100v-400l100 -100v-250z" />
-<glyph unicode="&#xe185;" d="M100 0h300v400q0 41 -29.5 70.5t-70.5 29.5h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-400zM500 0v1000q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-1000h-300zM900 0v700q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-700h-300z" />
-<glyph unicode="&#xe186;" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v300h-200v100h200v100h-300v-300h200v-100h-200v-100zM600 300h200v100h100v300h-100v100h-200v-500 zM700 400v300h100v-300h-100z" />
-<glyph unicode="&#xe187;" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h100v200h100v-200h100v500h-100v-200h-100v200h-100v-500zM600 300h200v100h100v300h-100v100h-200v-500 zM700 400v300h100v-300h-100z" />
-<glyph unicode="&#xe188;" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v100h-200v300h200v100h-300v-500zM600 300h300v100h-200v300h200v100h-300v-500z" />
-<glyph unicode="&#xe189;" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 550l300 -150v300zM600 400l300 150l-300 150v-300z" />
-<glyph unicode="&#xe190;" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300v500h700v-500h-700zM300 400h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130v-300zM575 549 q0 -65 27 -107t68 -42h130v300h-130q-38 0 -66.5 -43t-28.5 -108z" />
-<glyph unicode="&#xe191;" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v300h-200v100h200v100h-300v-300h200v-100h-200v-100zM601 300h100v100h-100v-100zM700 700h100 v-400h100v500h-200v-100z" />
-<glyph unicode="&#xe192;" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v400h-200v100h-100v-500zM301 400v200h100v-200h-100zM601 300h100v100h-100v-100zM700 700h100 v-400h100v500h-200v-100z" />
-<glyph unicode="&#xe193;" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 700v100h300v-300h-99v-100h-100v100h99v200h-200zM201 300v100h100v-100h-100zM601 300v100h100v-100h-100z M700 700v100h200v-500h-100v400h-100z" />
-<glyph unicode="&#xe194;" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM400 500v200 l100 100h300v-100h-300v-200h300v-100h-300z" />
-<glyph unicode="&#xe195;" d="M0 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM182 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM400 400v400h300 l100 -100v-100h-100v100h-200v-100h200v-100h-200v-100h-100zM700 400v100h100v-100h-100z" />
-<glyph unicode="&#xe197;" d="M-14 494q0 -80 56.5 -137t135.5 -57h222v300h400v-300h128q120 0 205 86.5t85 207.5t-85 207t-205 86q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5zM300 200h200v300h200v-300h200 l-300 -300z" />
-<glyph unicode="&#xe198;" d="M-14 494q0 -80 56.5 -137t135.5 -57h8l414 414l403 -403q94 26 154.5 104.5t60.5 178.5q0 120 -85 206.5t-205 86.5q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5zM300 200l300 300 l300 -300h-200v-300h-200v300h-200z" />
-<glyph unicode="&#xe199;" d="M100 200h400v-155l-75 -45h350l-75 45v155h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170z" />
-<glyph unicode="&#xe200;" d="M121 700q0 -53 28.5 -97t75.5 -65q-4 -16 -4 -38q0 -74 52.5 -126.5t126.5 -52.5q56 0 100 30v-306l-75 -45h350l-75 45v306q46 -30 100 -30q74 0 126.5 52.5t52.5 126.5q0 24 -9 55q50 32 79.5 83t29.5 112q0 90 -61.5 155.5t-150.5 71.5q-26 89 -99.5 145.5 t-167.5 56.5q-116 0 -197.5 -81.5t-81.5 -197.5q0 -4 1 -11.5t1 -11.5q-14 2 -23 2q-74 0 -126.5 -52.5t-52.5 -126.5z" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/assets/fonts/glyphicons-halflings-regular.ttf b/assets/fonts/glyphicons-halflings-regular.ttf
deleted file mode 100644
index 67fa00b..0000000
--- a/assets/fonts/glyphicons-halflings-regular.ttf
+++ /dev/null
Binary files differ
diff --git a/assets/fonts/glyphicons-halflings-regular.woff b/assets/fonts/glyphicons-halflings-regular.woff
deleted file mode 100644
index 8c54182..0000000
--- a/assets/fonts/glyphicons-halflings-regular.woff
+++ /dev/null
Binary files differ
diff --git a/assets/guides/ppmc-offer.txt b/assets/guides/ppmc-offer.txt
deleted file mode 100644
index 27b8978..0000000
--- a/assets/guides/ppmc-offer.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-Dear Joe Bob
-
-In recognition of your demonstrated commitment to, and alignment with, the
-goals of the Apache Frizzle project, the Frizzle PPMC has voted to offer you
-membership in the Frizzle PPMC ("Podling Project Management Committee").
-
-Please let us know if you accept by subscribing to the private alias [by
-sending mail to private-subscribe@frizzle.incubator.apache.org], and posting 
-a message to private@frizzle.incubator.apache.org.
-
-The PPMC is the Incubator podling version of a project PMC ("Project
-Management Committee") that for every top-level project is tasked by the
-Apache Board of Directors with official oversight and binding votes in
-that project.  When Frizzle graduates from the Incubator to a top-level
-project, the project PMC is usually formed from the membership of the PPMC.
-Note that while participation in the PMC after graduation is not
-guaranteed, simply continuing your constructive and active participation
-is usually sufficient.
-
-As a PPMC member, and later as a PMC member, you are responsible for
-continuing the general project, code, and community oversight that you
-have exhibited so far.  The votes of the PPMC are not legally binding;
-votes of the Incubator PMC are.  However, many of the PPMC members
-are also Incubator PMC members, so they implicitly cast binding votes
-when we vote on PPMC issues.  While this is an important legal
-distinction, it shouldn't enter your thinking when working on the PPMC -
-members should treat every decision as if it were legally binding for the ASF.  
-Also, in day-to-day activities, the Incubator PMC member vs PPMC member
-distinction should be invisible -- we are peers.
-
-All PPMC members are subscribed to the project's private mail list, which 
-is used to discuss issues unsuitable for an open, public forum, such as
-people issues (e.g. new committers, problematic community members, etc.),
-security issues, and the like.  It can't be emphasized enough that
-care should be taken to minimize the use of the private list, discussing
-everything possible on the appropriate public list.
-
-The private PPMC list is *private* - it is strictly for the use of the
-PPMC. Messages are not to be forwarded to anyone else without the express
-permission of the PPMC. Also note that any Member of the Foundation has
-the right to review and participate in any PPMC or PMC list, as a PMC 
-and PPMC are acting on behalf of the Membership.
-
-Finally, the PPMC (and assuming graduation, the PMC) is not meant to create 
-a hierarchy within the committership or the community.  In fact, a goal is to
-add all committers over time to the PPMC/PMC, as our belief is that those who
-do the work should get a binding vote.  Therefore, in our day-to-day
-interactions with the rest of the community, we continue to interact as
-peers, where every reasonable opinion is considered, and all community
-members are invited to participate in our public voting.  If there ever
-is a situation where the PMC/PPMC's view differs significantly from that 
-of the rest of the community, this is a symptom of a problem that needs to
-be addressed.
-
-With the expectation of your acceptance, welcome!
-
-The Apache Frizzle PPMC
-
diff --git a/assets/images/EPS/apache_incubator_CMYK.eps b/assets/images/EPS/apache_incubator_CMYK.eps
deleted file mode 100644
index c228028..0000000
--- a/assets/images/EPS/apache_incubator_CMYK.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_CYMK.eps b/assets/images/EPS/apache_incubator_CYMK.eps
deleted file mode 100644
index c228028..0000000
--- a/assets/images/EPS/apache_incubator_CYMK.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_RGB.eps b/assets/images/EPS/apache_incubator_RGB.eps
deleted file mode 100644
index 27351d4..0000000
--- a/assets/images/EPS/apache_incubator_RGB.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_black_CMYK.eps b/assets/images/EPS/apache_incubator_black_CMYK.eps
deleted file mode 100644
index a00a0c0..0000000
--- a/assets/images/EPS/apache_incubator_black_CMYK.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_black_CYMK.eps b/assets/images/EPS/apache_incubator_black_CYMK.eps
deleted file mode 100644
index a00a0c0..0000000
--- a/assets/images/EPS/apache_incubator_black_CYMK.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_black_RGB.eps b/assets/images/EPS/apache_incubator_black_RGB.eps
deleted file mode 100644
index ce591d2..0000000
--- a/assets/images/EPS/apache_incubator_black_RGB.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_red_CMYK.eps b/assets/images/EPS/apache_incubator_red_CMYK.eps
deleted file mode 100644
index 7dfedd6..0000000
--- a/assets/images/EPS/apache_incubator_red_CMYK.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_red_CYMK.eps b/assets/images/EPS/apache_incubator_red_CYMK.eps
deleted file mode 100644
index 7dfedd6..0000000
--- a/assets/images/EPS/apache_incubator_red_CYMK.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_red_RGB.eps b/assets/images/EPS/apache_incubator_red_RGB.eps
deleted file mode 100644
index 56ae0df..0000000
--- a/assets/images/EPS/apache_incubator_red_RGB.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_white_CMYK.eps b/assets/images/EPS/apache_incubator_white_CMYK.eps
deleted file mode 100644
index 7e4b1c8..0000000
--- a/assets/images/EPS/apache_incubator_white_CMYK.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_white_CYMK.eps b/assets/images/EPS/apache_incubator_white_CYMK.eps
deleted file mode 100644
index 7e4b1c8..0000000
--- a/assets/images/EPS/apache_incubator_white_CYMK.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/EPS/apache_incubator_white_RGB.eps b/assets/images/EPS/apache_incubator_white_RGB.eps
deleted file mode 100644
index 00510e2..0000000
--- a/assets/images/EPS/apache_incubator_white_RGB.eps
+++ /dev/null
Binary files differ
diff --git a/assets/images/PDF/apache_incubator.pdf b/assets/images/PDF/apache_incubator.pdf
deleted file mode 100644
index 81703f9..0000000
--- a/assets/images/PDF/apache_incubator.pdf
+++ /dev/null
Binary files differ
diff --git a/assets/images/PDF/apache_incubator_black.pdf b/assets/images/PDF/apache_incubator_black.pdf
deleted file mode 100644
index 2e95c1c..0000000
--- a/assets/images/PDF/apache_incubator_black.pdf
+++ /dev/null
Binary files differ
diff --git a/assets/images/PDF/apache_incubator_red.pdf b/assets/images/PDF/apache_incubator_red.pdf
deleted file mode 100644
index 3dce10e..0000000
--- a/assets/images/PDF/apache_incubator_red.pdf
+++ /dev/null
Binary files differ
diff --git a/assets/images/PDF/apache_incubator_white.pdf b/assets/images/PDF/apache_incubator_white.pdf
deleted file mode 100644
index e75e3c8..0000000
--- a/assets/images/PDF/apache_incubator_white.pdf
+++ /dev/null
Binary files differ
diff --git a/assets/images/SVG/apache_incubator.svg b/assets/images/SVG/apache_incubator.svg
deleted file mode 100644
index c0a601e..0000000
--- a/assets/images/SVG/apache_incubator.svg
+++ /dev/null
@@ -1,91 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363)  -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
-	 width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
-<rect x="0.04" y="-0.04" fill-rule="evenodd" clip-rule="evenodd" fill="#E4E2E1" width="1000" height="1000"/>
-<rect x="200.04" y="199.96" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" width="600" height="600"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="709.219,458.14 730.434,458.14 730.434,460.142 711.434,460.142 
-	711.434,471.942 728.517,471.942 728.517,473.944 711.434,473.944 711.434,485.958 730.646,485.958 730.646,487.96 709.219,487.96 
-	"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="641.057,458.14 643.272,458.14 643.272,471.985 662.357,471.985 
-	662.357,458.14 664.572,458.14 664.572,487.96 662.357,487.96 662.357,473.987 643.272,473.987 643.272,487.96 641.057,487.96 "/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M587.338,488.472c-2.131,0-4.104-0.398-5.922-1.193
-	c-1.817-0.795-3.387-1.882-4.707-3.259c-1.321-1.377-2.351-3.003-3.089-4.878c-0.738-1.874-1.107-3.876-1.107-6.006v-0.085
-	c0-2.102,0.376-4.089,1.129-5.964c0.752-1.875,1.788-3.515,3.109-4.92c1.32-1.406,2.89-2.513,4.707-3.323
-	c1.818-0.81,3.806-1.214,5.965-1.214c1.335,0,2.542,0.114,3.62,0.341c1.08,0.228,2.081,0.554,3.004,0.98
-	c0.923,0.426,1.789,0.93,2.599,1.512c0.81,0.583,1.598,1.229,2.364,1.938l-1.576,1.619c-0.653-0.625-1.335-1.207-2.045-1.747
-	s-1.47-1.001-2.279-1.384c-0.809-0.384-1.689-0.688-2.641-0.916c-0.952-0.228-1.981-0.341-3.089-0.341
-	c-1.789,0-3.451,0.341-4.984,1.022s-2.861,1.626-3.983,2.833c-1.121,1.207-2.002,2.621-2.641,4.239
-	c-0.64,1.619-0.959,3.365-0.959,5.24v0.085c0,1.875,0.327,3.628,0.98,5.261s1.54,3.053,2.662,4.26s2.449,2.158,3.982,2.854
-	c1.534,0.696,3.196,1.044,4.985,1.044c2.158,0,4.032-0.397,5.623-1.193c1.59-0.795,3.138-1.945,4.644-3.45l1.491,1.448
-	c-0.796,0.767-1.612,1.47-2.45,2.109s-1.732,1.186-2.684,1.64s-1.98,0.81-3.089,1.065
-	C589.851,488.344,588.644,488.472,587.338,488.472z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M515.726,457.927h2.13l13.888,30.033h-2.428l-3.792-8.35H507.93l-3.792,8.35h-2.3
-	L515.726,457.927L515.726,457.927z M524.586,477.608l-7.838-17.253l-7.881,17.253H524.586z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M440.151,458.14h10.821c1.647,0,3.145,0.206,4.494,0.618
-	c1.349,0.412,2.514,1.008,3.493,1.789c0.98,0.781,1.74,1.732,2.279,2.854c0.54,1.122,0.81,2.407,0.81,3.855v0.085
-	c0,1.562-0.313,2.939-0.937,4.132c-0.625,1.193-1.47,2.187-2.535,2.982c-1.065,0.795-2.3,1.392-3.706,1.789
-	c-1.406,0.398-2.889,0.597-4.452,0.597h-8.051v11.119h-2.215V458.14L440.151,458.14z M450.546,474.839
-	c1.392,0,2.655-0.17,3.792-0.511c1.136-0.348,2.108-0.838,2.918-1.484c0.81-0.639,1.441-1.42,1.896-2.336
-	c0.454-0.909,0.682-1.924,0.682-3.039v-0.085c0-1.2-0.22-2.251-0.661-3.153c-0.44-0.895-1.058-1.647-1.853-2.25
-	c-0.795-0.597-1.747-1.051-2.854-1.371c-1.107-0.312-2.329-0.468-3.663-0.468h-8.435v14.697H450.546z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M382.044,457.927h2.13l13.888,30.033h-2.428l-3.792-8.35h-17.594l-3.792,8.35
-	h-2.301L382.044,457.927L382.044,457.927z M390.905,477.608l-7.839-17.253l-7.881,17.253H390.905z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M734.67,515.706c0,7.213-3.147,11.758-9.443,13.634l11.445,15.886h-9.382
-	l-10.444-14.697h-9.693v14.697h-7.38V501.51h16.261c6.671,0,11.444,1.126,14.322,3.377
-	C733.231,507.139,734.67,510.745,734.67,515.706L734.67,515.706z M716.346,523.837c4.169,0,7.005-0.646,8.506-1.939
-	c1.501-1.292,2.251-3.366,2.251-6.223c0-2.855-0.771-4.815-2.313-5.878c-1.543-1.064-4.295-1.596-8.256-1.596h-9.381v15.636H716.346
-	z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M685.538,539.19c-4.419,4.315-9.881,6.473-16.386,6.473
-	c-6.504,0-11.966-2.157-16.385-6.473c-4.42-4.315-6.63-9.694-6.63-16.136s2.21-11.82,6.63-16.136
-	c4.419-4.314,9.881-6.473,16.385-6.473c6.505,0,11.967,2.158,16.386,6.473c4.42,4.315,6.63,9.694,6.63,16.136
-	S689.958,534.875,685.538,539.19L685.538,539.19z M680.129,511.829c-2.981-3.086-6.64-4.628-10.977-4.628
-	c-4.336,0-7.994,1.542-10.976,4.628c-2.98,3.085-4.472,6.827-4.472,11.226s1.491,8.141,4.472,11.227
-	c2.981,3.085,6.64,4.628,10.976,4.628c4.337,0,7.995-1.543,10.977-4.628c2.98-3.086,4.471-6.828,4.471-11.227
-	S683.109,514.914,680.129,511.829z"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="630.591,508.264 630.591,545.226 623.211,545.226 623.211,508.264 
-	609.952,508.264 609.952,501.51 643.849,501.51 643.849,508.264 "/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M579.02,535.281l-4.378,9.944h-7.88l19.263-43.716h7.88l19.263,43.716h-7.88
-	l-4.379-9.944H579.02L579.02,535.281z M597.906,528.464l-7.942-18.011l-7.942,18.011H597.906z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M550.026,545.226h-19.138V501.51H547.9c2.96,0,5.514,0.354,7.661,1.063
-	c2.146,0.709,3.741,1.668,4.784,2.878c2.001,2.251,3.002,4.795,3.002,7.63c0,3.418-1.084,5.962-3.253,7.63
-	c-0.792,0.584-1.334,0.948-1.626,1.094c-0.292,0.146-0.813,0.386-1.563,0.72c2.71,0.584,4.868,1.803,6.474,3.658
-	c1.604,1.855,2.407,4.159,2.407,6.911c0,3.043-1.042,5.732-3.127,8.067C560.199,543.87,555.988,545.226,550.026,545.226
-	L550.026,545.226z M538.269,538.408h11.57c2.71,0,4.784-0.427,6.223-1.281c1.438-0.855,2.157-2.471,2.157-4.848
-	c0-3.877-3.105-5.815-9.318-5.815h-10.632V538.408L538.269,538.408z M538.269,519.646h9.381c5.337,0,8.005-1.813,8.005-5.441
-	c0-2.084-0.646-3.585-1.938-4.503c-1.292-0.917-3.294-1.376-6.004-1.376h-9.443V519.646z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M494.39,535.219c2.001,2.335,4.711,3.502,8.13,3.502s6.129-1.167,8.13-3.502
-	c2.002-2.335,3.002-5.504,3.002-9.506V501.51h7.38v24.516c0,6.296-1.729,11.143-5.19,14.541c-3.461,3.397-7.901,5.097-13.321,5.097
-	s-9.861-1.699-13.321-5.097c-3.461-3.398-5.191-8.245-5.191-14.541V501.51h7.38v24.203
-	C491.388,529.715,492.389,532.884,494.39,535.219z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M460.206,538.533c2.543,0,4.732-0.427,6.567-1.281
-	c1.834-0.855,3.752-2.221,5.753-4.097l4.753,4.878c-4.628,5.128-10.247,7.692-16.854,7.692c-6.609,0-12.091-2.126-16.448-6.379
-	s-6.536-9.632-6.536-16.136s2.22-11.924,6.661-16.26c4.44-4.337,10.048-6.505,16.823-6.505c6.775,0,12.435,2.502,16.979,7.505
-	l-4.69,5.129c-2.084-2.002-4.055-3.398-5.91-4.19c-1.855-0.792-4.034-1.188-6.536-1.188c-4.419,0-8.13,1.428-11.132,4.284
-	c-3.002,2.855-4.503,6.504-4.503,10.944s1.491,8.151,4.472,11.132C452.586,537.043,456.12,538.533,460.206,538.533z"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="422.456,501.51 429.836,501.51 429.836,545.226 421.831,545.226 
-	397.065,513.33 397.065,545.226 389.686,545.226 389.686,501.51 397.065,501.51 422.456,534.155 "/>
-<rect x="371.887" y="501.51" fill-rule="evenodd" clip-rule="evenodd" width="7.379" height="43.716"/>
-<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="298.3716" y1="547.5273" x2="313.0645" y2="470.1827">
-	<stop  offset="0" style="stop-color:#1A1853"/>
-	<stop  offset="0.5" style="stop-color:#CA2026"/>
-	<stop  offset="1" style="stop-color:#F8991D"/>
-</linearGradient>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="url(#SVGID_1_)" d="M308.331,459.957c-0.003-0.324-0.008-0.649-0.016-0.978
-	c0.067,0.107,0.256,0.435,0.569,0.978H308.331L308.331,459.957z M296.568,494.187c-3.432,6.382-5.389,13.041-5.889,19.971
-	c-0.445,6.171,0.222,11.492,2.021,15.953c0.246,0.607,0.484,1.168,0.722,1.688c-1.422-1.006-2.779-2.055-4.073-3.149
-	c-0.109-0.086-0.188-0.122-0.238-0.109c1.699,2.717,3.816,5.179,6.354,7.387c0.392,0.342,1.046,0.504,1.207,1.007
-	c0.459,1.443-0.789,14.4,3.219,17.419c2.549,1.918,13.815-0.494,17.293-1.617c18.147-5.861,32.222-22.622,30.128-46.777
-	c-2.296-26.491-19.748-53.431-37.154-59.906c-4.705-1.751-5.749-1.591-10.635,0.499c-16.984,7.263-33.667,33.549-35.908,59.407
-	c-2.153,24.846,12.797,41.868,31.693,47.252c0.511,0.146,1.005,0.28,1.485,0.407c-0.487-1.007-0.885-2.148-1.208-3.356
-	c-19.792-5.886-30.863-23.434-29.076-44.051c1.708-19.71,14.918-48.76,34.154-56.987c4.021-1.718,4.402-1.963,8.479-0.446
-	c19.745,7.344,33.537,37.397,35.273,57.434c1.857,21.422-10.222,39.447-31.112,44.609c-2.101,0.519-3.923,0.862-5.629,1.033
-	c-5.413,0.543-7.295,1.501-8.288-4.136c-2.187-12.433-0.534-34.932,4.876-43.565c0.043-0.627,0.007,0.521-0.4,1.501
-	c-0.188,0.44-0.309,0.709-0.362,0.847c-3.24,7.422-5.048,28.953-3.506,33.042c-0.446-1.465,0.353-4.55,1.51-5.183l0.663-0.464
-	c3.628-2.613,5.973-6.718,8.595-11.917c-0.045-0.072-0.13-0.063-0.252,0.025c-1.224,1.023-2.486,1.942-3.783,2.755
-	c2.953-3.102,5.531-7.062,7.741-11.886c-0.06-0.088-0.162-0.072-0.308,0.042c-0.872,0.787-1.76,1.528-2.667,2.224
-	c3.708-6.714,6.974-14.491,7.316-23.379c0.169-5.753-0.883-11.296-3.159-16.59c-0.785-1.81-1.88-3.973-3.292-6.525
-	c-2.087-3.763-3.215-5.801-3.395-6.097c0.093,8.157-1.346,14.788-4.315,19.84c-0.766,1.341-2.125,3.296-4.089,5.859
-	C298.735,490.638,297.397,492.617,296.568,494.187z"/>
-</svg>
diff --git a/assets/images/SVG/apache_incubator_black.svg b/assets/images/SVG/apache_incubator_black.svg
deleted file mode 100644
index e386386..0000000
--- a/assets/images/SVG/apache_incubator_black.svg
+++ /dev/null
@@ -1,86 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363)  -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
-	 width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
-<rect x="0.04" y="-0.04" fill-rule="evenodd" clip-rule="evenodd" fill="#E5E3E2" width="1000" height="1000"/>
-<rect x="200.04" y="199.96" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" width="600" height="600"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="709.219,458.14 730.434,458.14 730.434,460.142 711.434,460.142 
-	711.434,471.942 728.517,471.942 728.517,473.944 711.434,473.944 711.434,485.958 730.646,485.958 730.646,487.96 709.219,487.96 
-	"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="641.057,458.14 643.272,458.14 643.272,471.985 662.357,471.985 
-	662.357,458.14 664.572,458.14 664.572,487.96 662.357,487.96 662.357,473.987 643.272,473.987 643.272,487.96 641.057,487.96 "/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M587.338,488.472c-2.131,0-4.104-0.398-5.922-1.193
-	c-1.817-0.795-3.387-1.882-4.707-3.259c-1.321-1.377-2.351-3.003-3.089-4.878c-0.738-1.874-1.107-3.876-1.107-6.006v-0.085
-	c0-2.102,0.376-4.089,1.129-5.964c0.752-1.875,1.788-3.515,3.109-4.92c1.32-1.406,2.89-2.513,4.707-3.323
-	c1.818-0.81,3.806-1.214,5.965-1.214c1.335,0,2.542,0.114,3.62,0.341c1.08,0.228,2.081,0.554,3.004,0.98
-	c0.923,0.426,1.789,0.93,2.599,1.512c0.81,0.583,1.598,1.229,2.364,1.938l-1.576,1.619c-0.653-0.625-1.335-1.207-2.045-1.747
-	s-1.47-1.001-2.279-1.384c-0.809-0.384-1.689-0.688-2.641-0.916c-0.952-0.228-1.981-0.341-3.089-0.341
-	c-1.789,0-3.451,0.341-4.984,1.022s-2.861,1.626-3.983,2.833c-1.121,1.207-2.002,2.621-2.641,4.239
-	c-0.64,1.619-0.959,3.365-0.959,5.24v0.085c0,1.875,0.327,3.628,0.98,5.261s1.54,3.053,2.662,4.26s2.449,2.158,3.982,2.854
-	c1.534,0.696,3.196,1.044,4.985,1.044c2.158,0,4.032-0.397,5.623-1.193c1.59-0.795,3.138-1.945,4.644-3.45l1.491,1.448
-	c-0.796,0.767-1.612,1.47-2.45,2.109s-1.732,1.186-2.684,1.64s-1.98,0.81-3.089,1.065
-	C589.851,488.344,588.644,488.472,587.338,488.472z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M515.726,457.927h2.13l13.888,30.033h-2.428l-3.792-8.35H507.93l-3.792,8.35h-2.3
-	L515.726,457.927L515.726,457.927z M524.586,477.608l-7.838-17.253l-7.881,17.253H524.586z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M440.151,458.14h10.821c1.647,0,3.145,0.206,4.494,0.618
-	c1.349,0.412,2.514,1.008,3.493,1.789c0.98,0.781,1.74,1.732,2.279,2.854c0.54,1.122,0.81,2.407,0.81,3.855v0.085
-	c0,1.562-0.313,2.939-0.937,4.132c-0.625,1.193-1.47,2.187-2.535,2.982c-1.065,0.795-2.3,1.392-3.706,1.789
-	c-1.406,0.398-2.889,0.597-4.452,0.597h-8.051v11.119h-2.215V458.14L440.151,458.14z M450.546,474.839
-	c1.392,0,2.655-0.17,3.792-0.511c1.136-0.348,2.108-0.838,2.918-1.484c0.81-0.639,1.441-1.42,1.896-2.336
-	c0.454-0.909,0.682-1.924,0.682-3.039v-0.085c0-1.2-0.22-2.251-0.661-3.153c-0.44-0.895-1.058-1.647-1.853-2.25
-	c-0.795-0.597-1.747-1.051-2.854-1.371c-1.107-0.312-2.329-0.468-3.663-0.468h-8.435v14.697H450.546z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M382.044,457.927h2.13l13.888,30.033h-2.428l-3.792-8.35h-17.594l-3.792,8.35
-	h-2.301L382.044,457.927L382.044,457.927z M390.905,477.608l-7.839-17.253l-7.881,17.253H390.905z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M734.67,515.706c0,7.213-3.147,11.758-9.443,13.634l11.445,15.886h-9.382
-	l-10.444-14.697h-9.693v14.697h-7.38V501.51h16.261c6.671,0,11.444,1.126,14.322,3.377
-	C733.231,507.139,734.67,510.745,734.67,515.706L734.67,515.706z M716.346,523.837c4.169,0,7.005-0.646,8.506-1.939
-	c1.501-1.292,2.251-3.366,2.251-6.223c0-2.855-0.771-4.815-2.313-5.878c-1.543-1.064-4.295-1.596-8.256-1.596h-9.381v15.636H716.346
-	z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M685.538,539.19c-4.419,4.315-9.881,6.473-16.386,6.473
-	c-6.504,0-11.966-2.157-16.385-6.473c-4.42-4.315-6.63-9.694-6.63-16.136s2.21-11.82,6.63-16.136
-	c4.419-4.314,9.881-6.473,16.385-6.473c6.505,0,11.967,2.158,16.386,6.473c4.42,4.315,6.63,9.694,6.63,16.136
-	S689.958,534.875,685.538,539.19L685.538,539.19z M680.129,511.829c-2.981-3.086-6.64-4.628-10.977-4.628
-	c-4.336,0-7.994,1.542-10.976,4.628c-2.98,3.085-4.472,6.827-4.472,11.226s1.491,8.141,4.472,11.227
-	c2.981,3.085,6.64,4.628,10.976,4.628c4.337,0,7.995-1.543,10.977-4.628c2.98-3.086,4.471-6.828,4.471-11.227
-	S683.109,514.914,680.129,511.829z"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="630.591,508.264 630.591,545.226 623.211,545.226 623.211,508.264 
-	609.952,508.264 609.952,501.51 643.849,501.51 643.849,508.264 "/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M579.02,535.281l-4.378,9.944h-7.88l19.263-43.716h7.88l19.263,43.716h-7.88
-	l-4.379-9.944H579.02L579.02,535.281z M597.906,528.464l-7.942-18.011l-7.942,18.011H597.906z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M550.026,545.226h-19.138V501.51H547.9c2.96,0,5.514,0.354,7.661,1.063
-	c2.146,0.709,3.741,1.668,4.784,2.878c2.001,2.251,3.002,4.795,3.002,7.63c0,3.418-1.084,5.962-3.253,7.63
-	c-0.792,0.584-1.334,0.948-1.626,1.094c-0.292,0.146-0.813,0.386-1.563,0.72c2.71,0.584,4.868,1.803,6.474,3.658
-	c1.604,1.855,2.407,4.159,2.407,6.911c0,3.043-1.042,5.732-3.127,8.067C560.199,543.87,555.988,545.226,550.026,545.226
-	L550.026,545.226z M538.269,538.408h11.57c2.71,0,4.784-0.427,6.223-1.281c1.438-0.855,2.157-2.471,2.157-4.848
-	c0-3.877-3.105-5.815-9.318-5.815h-10.632V538.408L538.269,538.408z M538.269,519.646h9.381c5.337,0,8.005-1.813,8.005-5.441
-	c0-2.084-0.646-3.585-1.938-4.503c-1.292-0.917-3.294-1.376-6.004-1.376h-9.443V519.646z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M494.39,535.219c2.001,2.335,4.711,3.502,8.13,3.502s6.129-1.167,8.13-3.502
-	c2.002-2.335,3.002-5.504,3.002-9.506V501.51h7.38v24.516c0,6.296-1.729,11.143-5.19,14.541c-3.461,3.397-7.901,5.097-13.321,5.097
-	s-9.861-1.699-13.321-5.097c-3.461-3.398-5.191-8.245-5.191-14.541V501.51h7.38v24.203
-	C491.388,529.715,492.389,532.884,494.39,535.219z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M460.206,538.533c2.543,0,4.732-0.427,6.567-1.281
-	c1.834-0.855,3.752-2.221,5.753-4.097l4.753,4.878c-4.628,5.128-10.247,7.692-16.854,7.692c-6.609,0-12.091-2.126-16.448-6.379
-	s-6.536-9.632-6.536-16.136s2.22-11.924,6.661-16.26c4.44-4.337,10.048-6.505,16.823-6.505c6.775,0,12.435,2.502,16.979,7.505
-	l-4.69,5.129c-2.084-2.002-4.055-3.398-5.91-4.19c-1.855-0.792-4.034-1.188-6.536-1.188c-4.419,0-8.13,1.428-11.132,4.284
-	c-3.002,2.855-4.503,6.504-4.503,10.944s1.491,8.151,4.472,11.132C452.586,537.043,456.12,538.533,460.206,538.533z"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="422.456,501.51 429.836,501.51 429.836,545.226 421.831,545.226 
-	397.065,513.33 397.065,545.226 389.686,545.226 389.686,501.51 397.065,501.51 422.456,534.155 "/>
-<rect x="371.887" y="501.51" fill-rule="evenodd" clip-rule="evenodd" width="7.379" height="43.716"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M308.331,459.957c-0.003-0.324-0.008-0.649-0.016-0.978
-	c0.067,0.107,0.256,0.435,0.569,0.978H308.331L308.331,459.957z M296.568,494.187c-3.432,6.382-5.389,13.041-5.889,19.971
-	c-0.445,6.171,0.222,11.492,2.021,15.953c0.246,0.607,0.484,1.168,0.722,1.688c-1.422-1.006-2.779-2.055-4.073-3.149
-	c-0.109-0.086-0.188-0.122-0.238-0.109c1.699,2.717,3.816,5.179,6.354,7.387c0.392,0.342,1.046,0.504,1.207,1.007
-	c0.459,1.443-0.789,14.4,3.219,17.419c2.549,1.918,13.815-0.494,17.293-1.617c18.147-5.861,32.222-22.622,30.128-46.777
-	c-2.296-26.491-19.748-53.431-37.154-59.906c-4.705-1.751-5.749-1.591-10.635,0.499c-16.984,7.263-33.667,33.549-35.908,59.407
-	c-2.153,24.846,12.797,41.868,31.693,47.252c0.511,0.146,1.005,0.28,1.485,0.407c-0.487-1.007-0.885-2.148-1.208-3.356
-	c-19.792-5.886-30.863-23.434-29.076-44.051c1.708-19.71,14.918-48.76,34.154-56.987c4.021-1.718,4.402-1.963,8.479-0.446
-	c19.745,7.344,33.537,37.397,35.273,57.434c1.857,21.422-10.222,39.447-31.112,44.609c-2.101,0.519-3.923,0.862-5.629,1.033
-	c-5.413,0.543-7.295,1.501-8.288-4.136c-2.187-12.433-0.534-34.932,4.876-43.565c0.043-0.627,0.007,0.521-0.4,1.501
-	c-0.188,0.44-0.309,0.709-0.362,0.847c-3.24,7.422-5.048,28.953-3.506,33.042c-0.446-1.465,0.353-4.55,1.51-5.183l0.663-0.464
-	c3.628-2.613,5.973-6.718,8.595-11.917c-0.045-0.072-0.13-0.063-0.252,0.025c-1.224,1.023-2.486,1.942-3.783,2.755
-	c2.953-3.102,5.531-7.062,7.741-11.886c-0.06-0.088-0.162-0.072-0.308,0.042c-0.872,0.787-1.76,1.528-2.667,2.224
-	c3.708-6.714,6.974-14.491,7.316-23.379c0.169-5.753-0.883-11.296-3.159-16.59c-0.785-1.81-1.88-3.973-3.292-6.525
-	c-2.087-3.763-3.215-5.801-3.395-6.097c0.093,8.157-1.346,14.788-4.315,19.84c-0.766,1.341-2.125,3.296-4.089,5.859
-	C298.735,490.638,297.397,492.617,296.568,494.187z"/>
-</svg>
diff --git a/assets/images/SVG/apache_incubator_red.svg b/assets/images/SVG/apache_incubator_red.svg
deleted file mode 100644
index 99d1053..0000000
--- a/assets/images/SVG/apache_incubator_red.svg
+++ /dev/null
@@ -1,86 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363)  -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
-	 width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
-<rect x="0.04" y="-0.04" fill-rule="evenodd" clip-rule="evenodd" fill="#E5E3E2" width="1000" height="1000"/>
-<rect x="200.04" y="199.96" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" width="600" height="600"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="709.219,458.14 730.434,458.14 730.434,460.142 711.434,460.142 
-	711.434,471.942 728.517,471.942 728.517,473.944 711.434,473.944 711.434,485.958 730.646,485.958 730.646,487.96 709.219,487.96 
-	"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="641.057,458.14 643.272,458.14 643.272,471.985 662.357,471.985 
-	662.357,458.14 664.572,458.14 664.572,487.96 662.357,487.96 662.357,473.987 643.272,473.987 643.272,487.96 641.057,487.96 "/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M587.338,488.472c-2.131,0-4.104-0.398-5.922-1.193
-	c-1.817-0.795-3.387-1.882-4.707-3.259c-1.321-1.377-2.351-3.003-3.089-4.878c-0.738-1.874-1.107-3.876-1.107-6.006v-0.085
-	c0-2.102,0.376-4.089,1.129-5.964c0.752-1.875,1.788-3.515,3.109-4.92c1.32-1.406,2.89-2.513,4.707-3.323
-	c1.818-0.81,3.806-1.214,5.965-1.214c1.335,0,2.542,0.114,3.62,0.341c1.08,0.228,2.081,0.554,3.004,0.98
-	c0.923,0.426,1.789,0.93,2.599,1.512c0.81,0.583,1.598,1.229,2.364,1.938l-1.576,1.619c-0.653-0.625-1.335-1.207-2.045-1.747
-	s-1.47-1.001-2.279-1.384c-0.809-0.384-1.689-0.688-2.641-0.916c-0.952-0.228-1.981-0.341-3.089-0.341
-	c-1.789,0-3.451,0.341-4.984,1.022s-2.861,1.626-3.983,2.833c-1.121,1.207-2.002,2.621-2.641,4.239
-	c-0.64,1.619-0.959,3.365-0.959,5.24v0.085c0,1.875,0.327,3.628,0.98,5.261s1.54,3.053,2.662,4.26s2.449,2.158,3.982,2.854
-	c1.534,0.696,3.196,1.044,4.985,1.044c2.158,0,4.032-0.397,5.623-1.193c1.59-0.795,3.138-1.945,4.644-3.45l1.491,1.448
-	c-0.796,0.767-1.612,1.47-2.45,2.109s-1.732,1.186-2.684,1.64s-1.98,0.81-3.089,1.065
-	C589.851,488.344,588.644,488.472,587.338,488.472z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M515.726,457.927h2.13l13.888,30.033h-2.428l-3.792-8.35H507.93l-3.792,8.35h-2.3
-	L515.726,457.927L515.726,457.927z M524.586,477.608l-7.838-17.253l-7.881,17.253H524.586z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M440.151,458.14h10.821c1.647,0,3.145,0.206,4.494,0.618
-	c1.349,0.412,2.514,1.008,3.493,1.789c0.98,0.781,1.74,1.732,2.279,2.854c0.54,1.122,0.81,2.407,0.81,3.855v0.085
-	c0,1.562-0.313,2.939-0.937,4.132c-0.625,1.193-1.47,2.187-2.535,2.982c-1.065,0.795-2.3,1.392-3.706,1.789
-	c-1.406,0.398-2.889,0.597-4.452,0.597h-8.051v11.119h-2.215V458.14L440.151,458.14z M450.546,474.839
-	c1.392,0,2.655-0.17,3.792-0.511c1.136-0.348,2.108-0.838,2.918-1.484c0.81-0.639,1.441-1.42,1.896-2.336
-	c0.454-0.909,0.682-1.924,0.682-3.039v-0.085c0-1.2-0.22-2.251-0.661-3.153c-0.44-0.895-1.058-1.647-1.853-2.25
-	c-0.795-0.597-1.747-1.051-2.854-1.371c-1.107-0.312-2.329-0.468-3.663-0.468h-8.435v14.697H450.546z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M382.044,457.927h2.13l13.888,30.033h-2.428l-3.792-8.35h-17.594l-3.792,8.35
-	h-2.301L382.044,457.927L382.044,457.927z M390.905,477.608l-7.839-17.253l-7.881,17.253H390.905z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M734.67,515.706c0,7.213-3.147,11.758-9.443,13.634l11.445,15.886h-9.382
-	l-10.444-14.697h-9.693v14.697h-7.38V501.51h16.261c6.671,0,11.444,1.126,14.322,3.377
-	C733.231,507.139,734.67,510.745,734.67,515.706L734.67,515.706z M716.346,523.837c4.169,0,7.005-0.646,8.506-1.939
-	c1.501-1.292,2.251-3.366,2.251-6.223c0-2.855-0.771-4.815-2.313-5.878c-1.543-1.064-4.295-1.596-8.256-1.596h-9.381v15.636H716.346
-	z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M685.538,539.19c-4.419,4.315-9.881,6.473-16.386,6.473
-	c-6.504,0-11.966-2.157-16.385-6.473c-4.42-4.315-6.63-9.694-6.63-16.136s2.21-11.82,6.63-16.136
-	c4.419-4.314,9.881-6.473,16.385-6.473c6.505,0,11.967,2.158,16.386,6.473c4.42,4.315,6.63,9.694,6.63,16.136
-	S689.958,534.875,685.538,539.19L685.538,539.19z M680.129,511.829c-2.981-3.086-6.64-4.628-10.977-4.628
-	c-4.336,0-7.994,1.542-10.976,4.628c-2.98,3.085-4.472,6.827-4.472,11.226s1.491,8.141,4.472,11.227
-	c2.981,3.085,6.64,4.628,10.976,4.628c4.337,0,7.995-1.543,10.977-4.628c2.98-3.086,4.471-6.828,4.471-11.227
-	S683.109,514.914,680.129,511.829z"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="630.591,508.264 630.591,545.226 623.211,545.226 623.211,508.264 
-	609.952,508.264 609.952,501.51 643.849,501.51 643.849,508.264 "/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M579.02,535.281l-4.378,9.944h-7.88l19.263-43.716h7.88l19.263,43.716h-7.88
-	l-4.379-9.944H579.02L579.02,535.281z M597.906,528.464l-7.942-18.011l-7.942,18.011H597.906z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M550.026,545.226h-19.138V501.51H547.9c2.96,0,5.514,0.354,7.661,1.063
-	c2.146,0.709,3.741,1.668,4.784,2.878c2.001,2.251,3.002,4.795,3.002,7.63c0,3.418-1.084,5.962-3.253,7.63
-	c-0.792,0.584-1.334,0.948-1.626,1.094c-0.292,0.146-0.813,0.386-1.563,0.72c2.71,0.584,4.868,1.803,6.474,3.658
-	c1.604,1.855,2.407,4.159,2.407,6.911c0,3.043-1.042,5.732-3.127,8.067C560.199,543.87,555.988,545.226,550.026,545.226
-	L550.026,545.226z M538.269,538.408h11.57c2.71,0,4.784-0.427,6.223-1.281c1.438-0.855,2.157-2.471,2.157-4.848
-	c0-3.877-3.105-5.815-9.318-5.815h-10.632V538.408L538.269,538.408z M538.269,519.646h9.381c5.337,0,8.005-1.813,8.005-5.441
-	c0-2.084-0.646-3.585-1.938-4.503c-1.292-0.917-3.294-1.376-6.004-1.376h-9.443V519.646z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M494.39,535.219c2.001,2.335,4.711,3.502,8.13,3.502s6.129-1.167,8.13-3.502
-	c2.002-2.335,3.002-5.504,3.002-9.506V501.51h7.38v24.516c0,6.296-1.729,11.143-5.19,14.541c-3.461,3.397-7.901,5.097-13.321,5.097
-	s-9.861-1.699-13.321-5.097c-3.461-3.398-5.191-8.245-5.191-14.541V501.51h7.38v24.203
-	C491.388,529.715,492.389,532.884,494.39,535.219z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M460.206,538.533c2.543,0,4.732-0.427,6.567-1.281
-	c1.834-0.855,3.752-2.221,5.753-4.097l4.753,4.878c-4.628,5.128-10.247,7.692-16.854,7.692c-6.609,0-12.091-2.126-16.448-6.379
-	s-6.536-9.632-6.536-16.136s2.22-11.924,6.661-16.26c4.44-4.337,10.048-6.505,16.823-6.505c6.775,0,12.435,2.502,16.979,7.505
-	l-4.69,5.129c-2.084-2.002-4.055-3.398-5.91-4.19c-1.855-0.792-4.034-1.188-6.536-1.188c-4.419,0-8.13,1.428-11.132,4.284
-	c-3.002,2.855-4.503,6.504-4.503,10.944s1.491,8.151,4.472,11.132C452.586,537.043,456.12,538.533,460.206,538.533z"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" points="422.456,501.51 429.836,501.51 429.836,545.226 421.831,545.226 
-	397.065,513.33 397.065,545.226 389.686,545.226 389.686,501.51 397.065,501.51 422.456,534.155 "/>
-<rect x="371.887" y="501.51" fill-rule="evenodd" clip-rule="evenodd" width="7.379" height="43.716"/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#D22128" d="M308.331,459.957c-0.003-0.324-0.008-0.649-0.016-0.978
-	c0.067,0.107,0.256,0.435,0.569,0.978H308.331L308.331,459.957z M296.568,494.187c-3.432,6.382-5.389,13.041-5.889,19.971
-	c-0.445,6.171,0.222,11.492,2.021,15.953c0.246,0.607,0.484,1.168,0.722,1.688c-1.422-1.006-2.779-2.055-4.073-3.149
-	c-0.109-0.086-0.188-0.122-0.238-0.109c1.699,2.717,3.816,5.179,6.354,7.387c0.392,0.342,1.046,0.504,1.207,1.007
-	c0.459,1.443-0.789,14.4,3.219,17.419c2.549,1.918,13.815-0.494,17.293-1.617c18.147-5.861,32.222-22.622,30.128-46.777
-	c-2.296-26.491-19.748-53.431-37.154-59.906c-4.705-1.751-5.749-1.591-10.635,0.499c-16.984,7.263-33.667,33.549-35.908,59.407
-	c-2.153,24.846,12.797,41.868,31.693,47.252c0.511,0.146,1.005,0.28,1.485,0.407c-0.487-1.007-0.885-2.148-1.208-3.356
-	c-19.792-5.886-30.863-23.434-29.076-44.051c1.708-19.71,14.918-48.76,34.154-56.987c4.021-1.718,4.402-1.963,8.479-0.446
-	c19.745,7.344,33.537,37.397,35.273,57.434c1.857,21.422-10.222,39.447-31.112,44.609c-2.101,0.519-3.923,0.862-5.629,1.033
-	c-5.413,0.543-7.295,1.501-8.288-4.136c-2.187-12.433-0.534-34.932,4.876-43.565c0.043-0.627,0.007,0.521-0.4,1.501
-	c-0.188,0.44-0.309,0.709-0.362,0.847c-3.24,7.422-5.048,28.953-3.506,33.042c-0.446-1.465,0.353-4.55,1.51-5.183l0.663-0.464
-	c3.628-2.613,5.973-6.718,8.595-11.917c-0.045-0.072-0.13-0.063-0.252,0.025c-1.224,1.023-2.486,1.942-3.783,2.755
-	c2.953-3.102,5.531-7.062,7.741-11.886c-0.06-0.088-0.162-0.072-0.308,0.042c-0.872,0.787-1.76,1.528-2.667,2.224
-	c3.708-6.714,6.974-14.491,7.316-23.379c0.169-5.753-0.883-11.296-3.159-16.59c-0.785-1.81-1.88-3.973-3.292-6.525
-	c-2.087-3.763-3.215-5.801-3.395-6.097c0.093,8.157-1.346,14.788-4.315,19.84c-0.766,1.341-2.125,3.296-4.089,5.859
-	C298.735,490.638,297.397,492.617,296.568,494.187z"/>
-</svg>
diff --git a/assets/images/SVG/apache_incubator_white.svg b/assets/images/SVG/apache_incubator_white.svg
deleted file mode 100644
index 2f9411a..0000000
--- a/assets/images/SVG/apache_incubator_white.svg
+++ /dev/null
@@ -1,87 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363)  -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
-	 width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
-<rect x="0.04" y="-0.04" fill-rule="evenodd" clip-rule="evenodd" fill="#E5E3E2" width="1000" height="1000"/>
-<rect x="200.04" y="199.96" fill-rule="evenodd" clip-rule="evenodd" width="600" height="600"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="709.219,458.14 730.434,458.14 730.434,460.142 
-	711.434,460.142 711.434,471.942 728.517,471.942 728.517,473.944 711.434,473.944 711.434,485.958 730.646,485.958 730.646,487.96 
-	709.219,487.96 "/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="641.057,458.14 643.272,458.14 643.272,471.985 
-	662.357,471.985 662.357,458.14 664.572,458.14 664.572,487.96 662.357,487.96 662.357,473.987 643.272,473.987 643.272,487.96 
-	641.057,487.96 "/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M587.338,488.472c-2.131,0-4.104-0.398-5.922-1.193
-	c-1.817-0.795-3.387-1.882-4.707-3.259c-1.321-1.377-2.351-3.003-3.089-4.878c-0.738-1.874-1.107-3.876-1.107-6.006v-0.085
-	c0-2.102,0.376-4.089,1.129-5.964c0.752-1.875,1.788-3.515,3.109-4.92c1.32-1.406,2.89-2.513,4.707-3.323
-	c1.818-0.81,3.806-1.214,5.965-1.214c1.335,0,2.542,0.114,3.62,0.341c1.08,0.228,2.081,0.554,3.004,0.98
-	c0.923,0.426,1.789,0.93,2.599,1.512c0.81,0.583,1.598,1.229,2.364,1.938l-1.576,1.619c-0.653-0.625-1.335-1.207-2.045-1.747
-	s-1.47-1.001-2.279-1.384c-0.809-0.384-1.689-0.688-2.641-0.916c-0.952-0.228-1.981-0.341-3.089-0.341
-	c-1.789,0-3.451,0.341-4.984,1.022s-2.861,1.626-3.983,2.833c-1.121,1.207-2.002,2.621-2.641,4.239
-	c-0.64,1.619-0.959,3.365-0.959,5.24v0.085c0,1.875,0.327,3.628,0.98,5.261s1.54,3.053,2.662,4.26s2.449,2.158,3.982,2.854
-	c1.534,0.696,3.196,1.044,4.985,1.044c2.158,0,4.032-0.397,5.623-1.193c1.59-0.795,3.138-1.945,4.644-3.45l1.491,1.448
-	c-0.796,0.767-1.612,1.47-2.45,2.109s-1.732,1.186-2.684,1.64s-1.98,0.81-3.089,1.065
-	C589.851,488.344,588.644,488.472,587.338,488.472z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M515.726,457.927h2.13l13.888,30.033h-2.428l-3.792-8.35H507.93
-	l-3.792,8.35h-2.3L515.726,457.927L515.726,457.927z M524.586,477.608l-7.838-17.253l-7.881,17.253H524.586z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M440.151,458.14h10.821c1.647,0,3.145,0.206,4.494,0.618
-	c1.349,0.412,2.514,1.008,3.493,1.789c0.98,0.781,1.74,1.732,2.279,2.854c0.54,1.122,0.81,2.407,0.81,3.855v0.085
-	c0,1.562-0.313,2.939-0.937,4.132c-0.625,1.193-1.47,2.187-2.535,2.982c-1.065,0.795-2.3,1.392-3.706,1.789
-	c-1.406,0.398-2.889,0.597-4.452,0.597h-8.051v11.119h-2.215V458.14L440.151,458.14z M450.546,474.839
-	c1.392,0,2.655-0.17,3.792-0.511c1.136-0.348,2.108-0.838,2.918-1.484c0.81-0.639,1.441-1.42,1.896-2.336
-	c0.454-0.909,0.682-1.924,0.682-3.039v-0.085c0-1.2-0.22-2.251-0.661-3.153c-0.44-0.895-1.058-1.647-1.853-2.25
-	c-0.795-0.597-1.747-1.051-2.854-1.371c-1.107-0.312-2.329-0.468-3.663-0.468h-8.435v14.697H450.546z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M382.044,457.927h2.13l13.888,30.033h-2.428l-3.792-8.35h-17.594
-	l-3.792,8.35h-2.301L382.044,457.927L382.044,457.927z M390.905,477.608l-7.839-17.253l-7.881,17.253H390.905z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M734.67,515.706c0,7.213-3.147,11.758-9.443,13.634l11.445,15.886
-	h-9.382l-10.444-14.697h-9.693v14.697h-7.38V501.51h16.261c6.671,0,11.444,1.126,14.322,3.377
-	C733.231,507.139,734.67,510.745,734.67,515.706L734.67,515.706z M716.346,523.837c4.169,0,7.005-0.646,8.506-1.939
-	c1.501-1.292,2.251-3.366,2.251-6.223c0-2.855-0.771-4.815-2.313-5.878c-1.543-1.064-4.295-1.596-8.256-1.596h-9.381v15.636H716.346
-	z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M685.538,539.19c-4.419,4.315-9.881,6.473-16.386,6.473
-	c-6.504,0-11.966-2.157-16.385-6.473c-4.42-4.315-6.63-9.694-6.63-16.136s2.21-11.82,6.63-16.136
-	c4.419-4.314,9.881-6.473,16.385-6.473c6.505,0,11.967,2.158,16.386,6.473c4.42,4.315,6.63,9.694,6.63,16.136
-	S689.958,534.875,685.538,539.19L685.538,539.19z M680.129,511.829c-2.981-3.086-6.64-4.628-10.977-4.628
-	c-4.336,0-7.994,1.542-10.976,4.628c-2.98,3.085-4.472,6.827-4.472,11.226s1.491,8.141,4.472,11.227
-	c2.981,3.085,6.64,4.628,10.976,4.628c4.337,0,7.995-1.543,10.977-4.628c2.98-3.086,4.471-6.828,4.471-11.227
-	S683.109,514.914,680.129,511.829z"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="630.591,508.264 630.591,545.226 623.211,545.226 
-	623.211,508.264 609.952,508.264 609.952,501.51 643.849,501.51 643.849,508.264 "/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M579.02,535.281l-4.378,9.944h-7.88l19.263-43.716h7.88
-	l19.263,43.716h-7.88l-4.379-9.944H579.02L579.02,535.281z M597.906,528.464l-7.942-18.011l-7.942,18.011H597.906z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M550.026,545.226h-19.138V501.51H547.9
-	c2.96,0,5.514,0.354,7.661,1.063c2.146,0.709,3.741,1.668,4.784,2.878c2.001,2.251,3.002,4.795,3.002,7.63
-	c0,3.418-1.084,5.962-3.253,7.63c-0.792,0.584-1.334,0.948-1.626,1.094c-0.292,0.146-0.813,0.386-1.563,0.72
-	c2.71,0.584,4.868,1.803,6.474,3.658c1.604,1.855,2.407,4.159,2.407,6.911c0,3.043-1.042,5.732-3.127,8.067
-	C560.199,543.87,555.988,545.226,550.026,545.226L550.026,545.226z M538.269,538.408h11.57c2.71,0,4.784-0.427,6.223-1.281
-	c1.438-0.855,2.157-2.471,2.157-4.848c0-3.877-3.105-5.815-9.318-5.815h-10.632V538.408L538.269,538.408z M538.269,519.646h9.381
-	c5.337,0,8.005-1.813,8.005-5.441c0-2.084-0.646-3.585-1.938-4.503c-1.292-0.917-3.294-1.376-6.004-1.376h-9.443V519.646z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M494.39,535.219c2.001,2.335,4.711,3.502,8.13,3.502
-	s6.129-1.167,8.13-3.502c2.002-2.335,3.002-5.504,3.002-9.506V501.51h7.38v24.516c0,6.296-1.729,11.143-5.19,14.541
-	c-3.461,3.397-7.901,5.097-13.321,5.097s-9.861-1.699-13.321-5.097c-3.461-3.398-5.191-8.245-5.191-14.541V501.51h7.38v24.203
-	C491.388,529.715,492.389,532.884,494.39,535.219z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M460.206,538.533c2.543,0,4.732-0.427,6.567-1.281
-	c1.834-0.855,3.752-2.221,5.753-4.097l4.753,4.878c-4.628,5.128-10.247,7.692-16.854,7.692c-6.609,0-12.091-2.126-16.448-6.379
-	s-6.536-9.632-6.536-16.136s2.22-11.924,6.661-16.26c4.44-4.337,10.048-6.505,16.823-6.505c6.775,0,12.435,2.502,16.979,7.505
-	l-4.69,5.129c-2.084-2.002-4.055-3.398-5.91-4.19c-1.855-0.792-4.034-1.188-6.536-1.188c-4.419,0-8.13,1.428-11.132,4.284
-	c-3.002,2.855-4.503,6.504-4.503,10.944s1.491,8.151,4.472,11.132C452.586,537.043,456.12,538.533,460.206,538.533z"/>
-<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="422.456,501.51 429.836,501.51 429.836,545.226 
-	421.831,545.226 397.065,513.33 397.065,545.226 389.686,545.226 389.686,501.51 397.065,501.51 422.456,534.155 "/>
-<rect x="371.887" y="501.51" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" width="7.379" height="43.716"/>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M308.331,459.957c-0.003-0.324-0.008-0.649-0.016-0.978
-	c0.067,0.107,0.256,0.435,0.569,0.978H308.331L308.331,459.957z M296.568,494.187c-3.432,6.382-5.389,13.041-5.889,19.971
-	c-0.445,6.171,0.222,11.492,2.021,15.953c0.246,0.607,0.484,1.168,0.722,1.688c-1.422-1.006-2.779-2.055-4.073-3.149
-	c-0.109-0.086-0.188-0.122-0.238-0.109c1.699,2.717,3.816,5.179,6.354,7.387c0.392,0.342,1.046,0.504,1.207,1.007
-	c0.459,1.443-0.789,14.4,3.219,17.419c2.549,1.918,13.815-0.494,17.293-1.617c18.147-5.861,32.222-22.622,30.128-46.777
-	c-2.296-26.491-19.748-53.431-37.154-59.906c-4.705-1.751-5.749-1.591-10.635,0.499c-16.984,7.263-33.667,33.549-35.908,59.407
-	c-2.153,24.846,12.797,41.868,31.693,47.252c0.511,0.146,1.005,0.28,1.485,0.407c-0.487-1.007-0.885-2.148-1.208-3.356
-	c-19.792-5.886-30.863-23.434-29.076-44.051c1.708-19.71,14.918-48.76,34.154-56.987c4.021-1.718,4.402-1.963,8.479-0.446
-	c19.745,7.344,33.537,37.397,35.273,57.434c1.857,21.422-10.222,39.447-31.112,44.609c-2.101,0.519-3.923,0.862-5.629,1.033
-	c-5.413,0.543-7.295,1.501-8.288-4.136c-2.187-12.433-0.534-34.932,4.876-43.565c0.043-0.627,0.007,0.521-0.4,1.501
-	c-0.188,0.44-0.309,0.709-0.362,0.847c-3.24,7.422-5.048,28.953-3.506,33.042c-0.446-1.465,0.353-4.55,1.51-5.183l0.663-0.464
-	c3.628-2.613,5.973-6.718,8.595-11.917c-0.045-0.072-0.13-0.063-0.252,0.025c-1.224,1.023-2.486,1.942-3.783,2.755
-	c2.953-3.102,5.531-7.062,7.741-11.886c-0.06-0.088-0.162-0.072-0.308,0.042c-0.872,0.787-1.76,1.528-2.667,2.224
-	c3.708-6.714,6.974-14.491,7.316-23.379c0.169-5.753-0.883-11.296-3.159-16.59c-0.785-1.81-1.88-3.973-3.292-6.525
-	c-2.087-3.763-3.215-5.801-3.395-6.097c0.093,8.157-1.346,14.788-4.315,19.84c-0.766,1.341-2.125,3.296-4.089,5.859
-	C298.735,490.638,297.397,492.617,296.568,494.187z"/>
-</svg>
diff --git a/assets/images/apache-asf-compressed-source.svg b/assets/images/apache-asf-compressed-source.svg
deleted file mode 100644
index ed8ff80..0000000
--- a/assets/images/apache-asf-compressed-source.svg
+++ /dev/null
@@ -1,784 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
-"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
-	<!ENTITY st0 "fill-rule:nonzero;fill:#D9D9D9;stroke:#D9D9D9;stroke-width:0.5956;stroke-miterlimit:4;">
-	<!ENTITY st1 "fill:url(#AIgd2);">
-	<!ENTITY st2 "fill:url(#AIgd3);">
-	<!ENTITY st3 "fill:url(#AIgd4);">
-	<!ENTITY st4 "fill:url(#AIgd6);">
-	<!ENTITY st5 "fill:url(#AIgd8);">
-	<!ENTITY st6 "fill-rule:nonzero;fill:#D9D9D9;stroke:#D9D9D9;stroke-width:0.254;stroke-miterlimit:4;">
-	<!ENTITY st7 "fill:url(#AIgd1);stroke:#000000;">
-	<!ENTITY st8 "fill:url(#AIgd10);">
-	<!ENTITY st9 "fill:url(#AIgd11);">
-	<!ENTITY st10 "fill:url(#AIgd16);">
-	<!ENTITY st11 "fill:url(#AIgd18);">
-	<!ENTITY st12 "fill:url(#AIgd19);">
-	<!ENTITY st13 "fill:url(#AIgd31);">
-	<!ENTITY st14 "fill:url(#AIgd35);">
-	<!ENTITY st15 "fill:url(#AIgd36);">
-	<!ENTITY st16 "fill:url(#AIgd38);">
-	<!ENTITY st17 "fill:url(#AIgd41);">
-	<!ENTITY st18 "fill:url(#AIgd42);">
-	<!ENTITY st19 "fill:url(#AIgd52);">
-	<!ENTITY st20 "fill:url(#AIgd69);">
-	<!ENTITY st21 "fill:url(#AIgd71);">
-	<!ENTITY st22 "fill:url(#AIgd72);">
-	<!ENTITY st23 "fill:#000000;stroke-width:0.5956;">
-]>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="body" xml:space="preserve" 
-      width="300" height="55">
-<defs>
-     <filter id="medGlow" x="-5%" y="-5%" width="110%" height="110%">
-       <feGaussianBlur in="SourceGraphic" stdDeviation="2.0" result="glowSrc"/>
-       <feComponentTransfer in="glowSrc"  result="glowingGraphic">
-         <feFuncA type="linear" slope="3"/>
-       </feComponentTransfer>
-     </filter>
-</defs>
-<rect id="background" x="0" y="0" width="100%" height="100%" style="fill:#294563"/>
-<g transform="translate(0,0) scale(0.8, 0.8)">
-<g transform="translate(168,0) scale(-1, 1)">
-<g id="Feather_x0020_shadow" style="filter:url(#medGlow)" transform="translate(-0.5,-3.5)">
-	<path style="&st0;" d="M0.281,44.304c13.561-1.867,63.613-4.392,85.943-8.05c17.961-2.937,35.502-8.285,52.242-13.9c4.328-1.453,11.991-4.434,16.896-7.07c3.104-2.373,10.571-5.889,12.606-9.222c-32.45,15.407-45.513,19.649-83.582,27.354
-		c-15.436,3.169-71.617,7.72-84.105,10.888z"/>
-	<path style="&st6;" d="M48.301,50.277l1.454,0.498l1.418,0.119l1.417-0.23l1.417-0.574l1.379-0.766l1.38-0.994l1.305-1.145l1.301-1.227l1.228-1.26l1.149-1.266l1.111-1.225l1.035-1.148l0.958-0.957l0.881-0.763L66.5,38.84l0.689-0.228l-0.576,0.036l-0.611,0.038
-		l-0.689,0.077l-0.688,0.074l-0.69,0.078l-0.689,0.076l-0.689,0.038l-0.612,0.076l-0.957,0.88l-0.921,0.841l-0.805,0.842l-0.729,0.844l-0.727,0.801l-0.688,0.805l-0.652,0.764l-0.691,0.729l-0.688,0.727l-0.729,0.65l-0.767,0.65l-0.882,0.611l-0.919,0.576
-		l-1.034,0.535l-1.149,0.496l-1.302,0.42z"/>
-	<path style="&st6;" d="M43.551,50.082l1.688,0.271l1.569,0.037l1.455-0.15l1.377-0.344l1.265-0.535l1.151-0.652l1.148-0.766l1.034-0.879l1.035-0.918l0.957-0.994l0.959-1.072l0.921-1.033l0.956-1.033l0.96-1.033l0.958-0.955l0.995-0.881l-0.381,0.037h-0.423
-		l-0.384,0.039l-0.419,0.037l-0.424,0.037l-0.421,0.078l-0.42,0.035l-0.42,0.041l-0.421,0.037l-0.461,0.037l-0.422,0.078l-0.459,0.037l-0.459,0.037l-0.46,0.037h-0.46l-0.459,0.039l-0.347,0.535l-0.42,0.652l-0.537,0.764l-0.575,0.805l-0.69,0.881l-0.729,0.879
-		l-0.766,0.918l-0.805,0.879l-0.844,0.844l-0.84,0.805l-0.885,0.727l-0.842,0.611l-0.844,0.496l-0.843,0.346l-0.804,0.189h-0.768z"/>
-	<path style="&st6;" d="M40.411,50.119l0.958,0.115l0.919,0.076l0.881-0.037l0.881-0.152l0.882-0.189l0.843-0.344l0.841-0.422l0.883-0.574l0.882-0.65l0.882-0.764l0.882-0.92l0.919-0.994l0.958-1.188l0.997-1.301l1.034-1.416l1.074-1.607l-0.651-0.002l-0.613,0.039
-		l-0.614,0.076l-0.612,0.076l-0.611,0.078l-0.613,0.072h-0.688h-0.727l-0.616,0.613l-0.573,0.65l-0.576,0.613l-0.574,0.688l-0.575,0.65l-0.535,0.689l-0.576,0.648l-0.539,0.691l-0.572,0.65l-0.574,0.65l-0.612,0.65L43.094,47.9l-0.65,0.572l-0.652,0.574l-0.65,0.574
-		l-0.729,0.498z"/>
-	<path style="&st6;" d="M37.081,49.96l0.728,0.387l0.802,0.154l0.807-0.117l0.842-0.342l0.844-0.5l0.881-0.689l0.88-0.764l0.884-0.916l0.841-0.959l0.884-0.992l0.804-0.998l0.805-0.957l0.768-0.957l0.729-0.84l0.689-0.729l0.614-0.613l-4.099,0.382l-0.462,0.611
-		l-0.498,0.611l-0.458,0.615l-0.459,0.609l-0.46,0.613l-0.5,0.613l-0.461,0.611l-0.497,0.613l-0.537,0.572l-0.537,0.611l-0.536,0.578l-0.613,0.57l-0.612,0.574l-0.653,0.576l-0.688,0.537l-0.728,0.531z"/>
-	<path style="&st6;" d="M30.302,49.076l1.188,0.768l1.109,0.5l1.11,0.23h1.074l1.033-0.191l0.995-0.342l0.955-0.539l0.96-0.686l0.919-0.842l0.923-0.881l0.84-1.037l0.884-1.031l0.843-1.109l0.844-1.146l0.805-1.148l0.805-1.111L44.9,40.625l-0.536,0.037
-		l-0.384,0.037l-0.345,0.039l-0.343,0.039h-0.346l-0.499,0.037l-0.651,0.037l-0.729,1.033l-0.727,0.955l-0.729,0.922l-0.805,0.803l-0.767,0.727l-0.767,0.689l-0.804,0.611l-0.768,0.537l-0.766,0.457l-0.768,0.422l-0.727,0.305l-0.689,0.27l-0.689,0.229l-0.614,0.152
-		l-0.612,0.076l-0.537,0.037z"/>
-	<path style="&st6;" d="M26.74,48.843l1.228,0.152l1.186,0.08l1.149-0.078l1.109-0.15l1.036-0.227l1.033-0.346l0.958-0.422l0.92-0.535l0.92-0.572l0.844-0.65l0.843-0.727l0.803-0.805l0.766-0.842l0.73-0.918l0.729-0.959l0.689-0.994l-0.767,0.039l-0.844,0.074
-		l-0.802,0.076l-0.806,0.039l-0.69,0.076l-0.574,0.035L36.78,41.23l-0.191,0.037l-0.076,0.078l-0.191,0.191l-0.308,0.305l-0.382,0.385l-0.422,0.459l-0.536,0.537l-0.577,0.572l-0.648,0.615l-0.731,0.607l-0.764,0.65l-0.768,0.615l-0.843,0.611l-0.88,0.572
-		l-0.881,0.535l-0.921,0.461l-0.921,0.381z"/>
-	<path style="&st6;" d="M22.031,49.109l1.033,0.191l0.998,0.076l1.033-0.113l1.034-0.191l1.034-0.342l0.994-0.422l0.996-0.498l0.998-0.611l0.919-0.648l0.918-0.689l0.881-0.727l0.845-0.766l0.806-0.803l0.766-0.766l0.69-0.768l0.651-0.766h-0.461l-0.574,0.041
-		l-0.611,0.035H34.33l-0.613,0.074l-0.613,0.041l-0.496,0.039l-0.423,0.074v0.078l-0.154,0.189l-0.381,0.346l-0.537,0.42L30.46,43.14l-0.764,0.613l-0.845,0.652l-0.882,0.648l-0.92,0.686l-0.918,0.691l-0.881,0.65l-0.846,0.574l-0.766,0.535l-0.689,0.422
-		l-0.537,0.305l-0.382,0.191z"/>
-	<path style="&st6;" d="M16.822,49.066l0.612,0.613l0.806,0.266l0.996,0.002l1.11-0.266l1.227-0.461l1.262-0.646l1.341-0.768l1.305-0.84l1.302-0.92l1.227-0.916l1.147-0.879l0.999-0.844l0.881-0.688l0.65-0.574l0.423-0.381l0.192-0.154l-0.498,0.039l-0.538,0.035
-		l-0.574,0.037l-0.572,0.041l-0.614,0.072l-0.614,0.039l-0.611,0.041l-0.652,0.037l-0.688,0.42l-0.688,0.422l-0.693,0.455l-0.649,0.426l-0.689,0.455l-0.653,0.498l-0.688,0.459l-0.653,0.459l-0.69,0.496l-0.65,0.461l-0.688,0.459l-0.651,0.459l-0.688,0.42
-		l-0.691,0.422l-0.651,0.42l-0.69,0.383z"/>
-	<path style="&st6;" d="M12.993,49.14l0.652,0.229l0.649,0.115l0.65,0.037l0.653-0.109l0.65-0.195l0.689-0.264l0.727-0.383l0.768-0.461l0.843-0.535l0.881-0.611l0.959-0.688l1.072-0.729l1.187-0.803l1.265-0.881l1.379-0.918l1.534-0.957l-0.653,0.039l-0.727,0.039
-		h-0.65l-0.65,0.037l-0.574,0.037l-0.459,0.039l-0.307,0.039l-0.116,0.035l-0.077,0.115l-0.229,0.23l-0.346,0.307l-0.458,0.42l-0.574,0.496L21.077,44.4l-0.689,0.57l-0.805,0.613l-0.805,0.611l-0.843,0.613l-0.843,0.533l-0.882,0.537l-0.842,0.457l-0.842,0.383
-		l-0.805,0.268l-0.729,0.154z"/>
-	<path style="&st6;" d="M10.198,48.716l0.879,0.344l0.958,0.152l0.998-0.072l1.033-0.268l1.072-0.383l1.033-0.498l1.074-0.607l0.996-0.691l0.958-0.688l0.92-0.729l0.843-0.688l0.728-0.691l0.653-0.572l0.495-0.498l0.383-0.342l0.232-0.232l-0.613,0.039l-0.577,0.039
-		l-0.571,0.037l-0.575,0.074l-0.535,0.041l-0.577,0.037l-0.61,0.074l-0.613,0.039l-0.459,0.42l-0.501,0.42l-0.458,0.422l-0.499,0.459l-0.498,0.498l-0.497,0.459l-0.536,0.459l-0.538,0.459l-0.536,0.422l-0.534,0.422l-0.577,0.381l-0.534,0.342l-0.614,0.309
-		l-0.574,0.266l-0.613,0.193l-0.613,0.152z"/>
-	<path style="&st6;" d="M6.831,47.642l0.765,0.535l0.763,0.346l0.767,0.154l0.767,0.039l0.768-0.152l0.766-0.232l0.766-0.342l0.765-0.459l0.729-0.498l0.766-0.611l0.729-0.613l0.729-0.65l0.727-0.648l0.69-0.689l0.689-0.65l0.69-0.615l-0.422,0.041l-0.46,0.076
-		l-0.497,0.037l-0.535,0.039l-0.575,0.074l-0.612,0.039l-0.652,0.074l-0.612,0.037l-0.192,0.461l-0.267,0.459l-0.271,0.422l-0.346,0.422l-0.381,0.383l-0.424,0.383l-0.42,0.381l-0.496,0.307l-0.5,0.307l-0.537,0.268l-0.573,0.268l-0.576,0.191l-0.612,0.154
-		l-0.61,0.15L7.48,47.603l-0.649,0.039z"/>
-	<path style="&st6;" d="M3.803,47.066l0.652,0.266l0.69,0.193l0.726,0.115l0.806,0.002l0.767-0.039l0.842-0.115l0.805-0.229l0.803-0.229l0.768-0.344l0.729-0.383l0.65-0.422l0.614-0.494l0.536-0.539l0.46-0.572l0.345-0.65l0.23-0.652l-0.46,0.039l-0.46,0.037
-		l-0.497,0.076l-0.5,0.039l-0.495,0.037l-0.537,0.037l-0.574,0.039l-0.652,0.037L9.78,43.699l-0.307,0.385l-0.306,0.344l-0.306,0.307l-0.307,0.305l-0.348,0.229l-0.343,0.27l-0.347,0.229l-0.381,0.191l-0.422,0.191l-0.421,0.189l-0.459,0.154l-0.462,0.152
-		l-0.495,0.152l-0.537,0.115l-0.539,0.154z"/>
-	<path style="&st6;" d="M2.233,46.529l0.23,0.229l0.347,0.152l0.42,0.078h0.46l0.536-0.037L4.8,46.837l0.613-0.193l0.612-0.189l0.613-0.27l0.614-0.307l0.612-0.342l0.537-0.385l0.537-0.42l0.458-0.459l0.345-0.459l0.307-0.498l-0.343,0.041l-0.308,0.037
-		l-0.383,0.037L8.67,43.468l-0.344,0.039L8.02,43.544H7.752H7.483v0.152L7.14,44.001l-0.576,0.422l-0.767,0.498L4.88,45.417l-0.922,0.5l-0.919,0.381l-0.806,0.23z"/>
-	<path style="&st6;" d="M1.124,45.455l0.078,0.535l0.192,0.344l0.305,0.156l0.42,0.076l0.499-0.076l0.574-0.191l0.573-0.229l0.614-0.307l0.613-0.346l0.574-0.381l0.575-0.381l0.461-0.346l0.42-0.307l0.307-0.23l0.191-0.152l0.038-0.076l-2.986,0.342l-0.229,0.152
-		L3.959,44.23l-0.458,0.23l-0.5,0.229l-0.535,0.27l-0.497,0.189l-0.461,0.191l-0.384,0.115z"/>
-	<path style="&st6;" d="M4.573,43.886l-0.651,0.039l-0.574,0.039L2.812,44l-0.498,0.037l-0.46,0.041l-0.497,0.035l-0.498,0.078l-0.577,0.113l0.117,0.729l0.343,0.346h0.537l0.689-0.189l0.689-0.348l0.729-0.381l0.651-0.346l0.536-0.229z"/>
-	<path style="&st6;" d="M4.459,43.505l-0.653,0.113l-0.573,0.076l-0.497,0.113l-0.5,0.076l-0.458,0.113l-0.459,0.115L0.781,44.23l-0.574,0.152l-0.038-0.844l0.345-0.535l0.537-0.193l0.727-0.033l0.766,0.15l0.766,0.193l0.651,0.23l0.499,0.154z"/>
-	<path style="&st6;" d="M44.298,27.949l1.684-0.651l1.611-0.419l1.491-0.113l1.417,0.076l1.379,0.309l1.262,0.459l1.227,0.652l1.187,0.729l1.149,0.845l1.11,0.919l1.106,0.959l1.074,0.996l1.071,0.957l1.07,0.921l1.073,0.882l1.109,0.807l-0.384,0.073l-0.421,0.038
-		l-0.421,0.039l-0.383,0.076l-0.423,0.039l-0.421,0.038l-0.459,0.036l-0.421,0.039l-0.422,0.035l-0.461,0.041l-0.458,0.076l-0.422,0.037l-0.461,0.04l-0.457,0.074l-0.498,0.037l-0.461,0.077l-0.382-0.534l-0.495-0.653l-0.576-0.766l-0.688-0.768l-0.727-0.843
-		l-0.805-0.843l-0.879-0.844l-0.881-0.806l-0.959-0.766l-0.953-0.688l-0.957-0.615l-0.997-0.497l-0.957-0.385l-0.958-0.23l-0.956-0.039l-0.88,0.152z"/>
-	<path style="&st6;" d="M41.423,28.597l0.96-0.345l0.92-0.227l0.878-0.152l0.923-0.077l0.878,0.077l0.919,0.192l0.88,0.268l0.919,0.423l0.956,0.537l0.959,0.691l0.995,0.803l1.033,0.96l1.108,1.11l1.11,1.266l1.186,1.418l1.264,1.57l-0.69,0.039l-0.611,0.072
-		l-0.576,0.039l-0.534,0.076l-0.537,0.076l-0.573,0.076l-0.653,0.113l-0.765,0.117l-0.689-0.574l-0.65-0.613l-0.689-0.653l-0.612-0.653l-0.649-0.649l-0.649-0.65l-0.613-0.653l-0.651-0.651l-0.651-0.612l-0.688-0.574l-0.651-0.576l-0.688-0.574l-0.727-0.498
-		l-0.767-0.423l-0.766-0.421l-0.805-0.347z"/>
-	<path style="&st6;" d="M38.207,29.438l0.727-0.611l0.808-0.307l0.88-0.074l0.879,0.191l0.958,0.383l0.956,0.538l0.995,0.688l0.996,0.805l0.996,0.881l0.993,0.921l0.956,0.921l0.92,0.958l0.841,0.88l0.84,0.805l0.729,0.691l0.69,0.574l-4.176,0.496l-0.536-0.613
-		l-0.536-0.615l-0.498-0.613l-0.533-0.611l-0.537-0.613l-0.534-0.651l-0.573-0.614l-0.535-0.576l-0.613-0.574l-0.612-0.573l-0.652-0.538l-0.688-0.498l-0.728-0.497l-0.766-0.423l-0.804-0.383l-0.843-0.346z"/>
-	<path style="&st6;" d="M31.926,32.113l1.148-1.111l1.111-0.802l1.073-0.534l1.072-0.307l1.072-0.037l1.034,0.154l1.033,0.385l0.996,0.498l0.994,0.689l0.955,0.804l0.996,0.921l0.919,0.996l0.957,1.035l0.917,1.111l0.918,1.111l0.919,1.11l-0.729,0.04l-0.611,0.035
-		l-0.498,0.039l-0.461,0.076l-0.458,0.076l-0.499,0.075l-0.571,0.078l-0.692,0.112l-0.803-1.034l-0.766-0.919l-0.803-0.844l-0.766-0.728l-0.802-0.612l-0.766-0.538l-0.728-0.461l-0.768-0.382l-0.728-0.309l-0.688-0.229l-0.728-0.192l-0.689-0.152l-0.648-0.08
-		l-0.653-0.074h-0.649l-0.612-0.002z"/>
-	<path style="&st6;" d="M27.442,33.145l1.267-0.461l1.187-0.344l1.187-0.189l1.109-0.077l1.111,0.001l1.071,0.155l1.035,0.231l0.996,0.347l0.995,0.419l0.919,0.537l0.957,0.613l0.878,0.689l0.882,0.768l0.84,0.842l0.806,0.922l0.803,0.996l-0.803,0.115l-0.919,0.111
-		l-0.921,0.115l-0.921,0.115l-0.842,0.113l-0.649,0.078l-0.499,0.037l-0.191-0.002l-0.075-0.075l-0.192-0.153l-0.269-0.268l-0.343-0.346l-0.423-0.42l-0.495-0.424l-0.575-0.496l-0.65-0.538l-0.728-0.499l-0.765-0.536l-0.844-0.5l-0.918-0.495l-0.92-0.424
-		l-0.993-0.383l-1.034-0.348l-1.073-0.229z"/>
-	<path style="&st6;" d="M21.775,33.828l1.034-0.418l1.035-0.307l1.108-0.115l1.073,0.001l1.111,0.118l1.108,0.229l1.072,0.346l1.111,0.422l1.033,0.498l1.033,0.537l0.995,0.651l0.994,0.651l0.882,0.693l0.881,0.727l0.802,0.728l0.726,0.729l-0.495,0.037
-		l-0.612,0.076l-0.689,0.075l-0.728,0.077l-0.729,0.075l-0.652,0.076l-0.573,0.037h-0.422l-0.001-0.077l-0.191-0.191l-0.38-0.268l-0.574-0.385l-0.689-0.42l-0.805-0.5l-0.919-0.537l-0.956-0.533l-0.955-0.54l-0.996-0.538l-0.998-0.496l-0.916-0.457l-0.846-0.387
-		l-0.762-0.307l-0.616-0.193l-0.495-0.115z"/>
-	<path style="&st6;" d="M16.413,34.936l0.537-0.842l0.805-0.498l0.996-0.188h1.147l1.264,0.268l1.379,0.422l1.455,0.576l1.415,0.651l1.455,0.729l1.339,0.766l1.265,0.73l1.149,0.727l0.954,0.615l0.729,0.459l0.496,0.342l0.23,0.117l-0.537,0.116l-0.61,0.077
-		l-0.653,0.073l-0.689,0.038l-0.727,0.078l-0.729,0.074l-0.688,0.115l-0.689,0.115l-0.729-0.345l-0.688-0.348l-0.729-0.381l-0.688-0.385l-0.69-0.346l-0.688-0.383l-0.728-0.384l-0.688-0.382l-0.689-0.35l-0.688-0.382l-0.729-0.343l-0.688-0.307l-0.689-0.348
-		l-0.727-0.305l-0.727-0.311l-0.729-0.266z"/>
-	<path style="&st6;" d="M9.558,36.768l0.844-0.611l0.956-0.346l0.996-0.149l1.07,0.001l1.113,0.189l1.148,0.348l1.11,0.421l1.108,0.5l1.035,0.574l1.032,0.575l0.919,0.614l0.804,0.536l0.727,0.499l0.574,0.459l0.42,0.307l0.229,0.193l-0.612,0.074l-0.574,0.076
-		l-0.495,0.076l-0.501,0.037l-0.536,0.037l-0.496,0.076l-0.576,0.076l-0.61,0.074l-0.537-0.342l-0.536-0.348l-0.574-0.419l-0.574-0.383l-0.611-0.422l-0.613-0.421l-0.612-0.423l-0.612-0.383l-0.614-0.384l-0.647-0.308l-0.652-0.305l-0.613-0.232l-0.648-0.189
-		l-0.615-0.117H10.17l-0.612,0.037z"/>
-	<path style="&st6;" d="M12.084,35.661l0.653-0.423l0.688-0.305l0.652-0.154l0.688-0.074l0.689,0.037l0.728,0.152l0.807,0.27l0.838,0.308l0.921,0.423l0.959,0.459l1.07,0.576l1.147,0.614l1.265,0.65l1.378,0.692l1.49,0.765l1.648,0.768l-0.613,0.039l-0.689,0.074
-		l-0.688,0.078l-0.691,0.111L24.41,40.8l-0.457,0.078l-0.346,0.035l-0.153-0.035L23.379,40.8l-0.27-0.191l-0.345-0.308l-0.459-0.344l-0.573-0.422l-0.689-0.459l-0.729-0.5l-0.803-0.499l-0.879-0.498l-0.882-0.497l-0.955-0.425l-0.957-0.384L14.88,35.97l-0.957-0.196
-		l-0.92-0.111l-0.919-0.001z"/>
-	<path style="&st6;" d="M6.491,38.719l0.691-0.766l0.726-0.574l0.729-0.382l0.766-0.229l0.767-0.037l0.804,0.076l0.844,0.192l0.804,0.271l0.84,0.422l0.805,0.42l0.842,0.536l0.843,0.539l0.843,0.536l0.803,0.574l0.805,0.578l0.803,0.496l-0.459,0.076l-0.498,0.039
-		l-0.574,0.115l-0.613,0.072l-0.649,0.08l-0.69,0.072l-0.65,0.078l-0.653,0.076l-0.229-0.498l-0.269-0.422l-0.305-0.422l-0.384-0.382l-0.383-0.344l-0.419-0.27l-0.5-0.271l-0.497-0.229l-0.536-0.191l-0.572-0.154l-0.576-0.114l-0.612-0.079l-0.65-0.037l-0.652,0.001
-		l-0.65,0.073l-0.689,0.078z"/>
-	<path style="&st6;" d="M1.778,41.242l0.193-0.307l0.306-0.268l0.422-0.227l0.459-0.155l0.536-0.114l0.612-0.036l0.613,0.001l0.689,0.037l0.65,0.114l0.689,0.155l0.652,0.229l0.61,0.27l0.576,0.307l0.534,0.383l0.422,0.422l0.381,0.461l-0.343,0.076L9.36,42.666
-		l-0.42,0.076l-0.423,0.074l-0.382,0.037l-0.308,0.041H7.6H7.522l-0.153-0.078l-0.381-0.23l-0.652-0.307L5.57,41.937l-0.881-0.309l-0.995-0.27l-0.957-0.154l-0.959,0.037z"/>
-	<path style="&st6;" d="M0.858,42.81l-0.036-0.609l0.152-0.461l0.271-0.307l0.42-0.191l0.497-0.078l0.575,0.041l0.613,0.076l0.688,0.154l0.65,0.23l0.65,0.23l0.613,0.23l0.535,0.23l0.46,0.23l0.383,0.154l0.191,0.152l0.078,0.037l-3.065,0.533l-0.27-0.113
-		l-0.42-0.117l-0.459-0.152L2.85,42.927l-0.536-0.115l-0.535-0.074L1.28,42.736L0.858,42.81z"/>
-	<path style="&st6;" d="M3.389,40.248l0.612-0.498l0.651-0.383l0.729-0.342l0.805-0.231l0.806-0.153l0.803-0.11l0.844,0.001l0.841,0.072l0.804,0.156l0.804,0.27l0.729,0.307l0.689,0.383l0.649,0.461l0.536,0.535l0.421,0.613l0.344,0.689l-0.499,0.039l-0.457,0.078
-		l-0.5,0.035l-0.536,0.076l-0.535,0.078l-0.574,0.037l-0.612,0.115l-0.65,0.072l-0.231-0.34L9.591,41.9l-0.307-0.268l-0.343-0.27l-0.383-0.23l-0.421-0.23L7.715,40.71l-0.459-0.152l-0.459-0.154L6.3,40.289l-0.46-0.076l-0.499-0.04l-0.497-0.037l-0.496-0.001
-		l-0.499,0.038l-0.46,0.075z"/>
-	<path style="&st6;" d="M139.729,21.932l0.077,0.117l0.192,0.307l0.267,0.497l0.344,0.613l0.386,0.727l0.382,0.806l0.346,0.92l0.303,0.918l0.228,0.959l0.079,0.92l-0.041,0.918l-0.192,0.842l-0.422,0.768l-0.651,0.687l-0.919,0.535l-1.189,0.384l0.193-0.578
-		l0.117-0.611l0.113-0.611l0.076-0.689l0.039-0.689v-0.726l-0.037-0.69l-0.037-0.729l-0.076-0.729l-0.074-0.725l-0.116-0.69l-0.152-0.651l-0.113-0.651l-0.154-0.575l-0.188-0.574l-0.155-0.498l0.191-0.075l0.154-0.04l0.19-0.076l0.156-0.036l0.153-0.077l0.15-0.039
-		l0.191-0.078l0.19-0.076z"/>
-	<path style="&st6;" d="M138.429,22.468l0.534,2.108l0.382,1.914l0.189,1.646l0.037,1.455l-0.077,1.264l-0.23,1.072l-0.307,0.92l-0.347,0.764l-0.46,0.613l-0.497,0.496l-0.498,0.347l-0.495,0.267l-0.54,0.191l-0.459,0.076l-0.42,0.037h-0.384l0.229-0.613
-		l0.229-0.612l0.192-0.688l0.154-0.689l0.152-0.767l0.118-0.764l0.116-0.767l0.075-0.803l0.041-0.806l0.001-0.843l-0.041-0.804l-0.073-0.843l-0.114-0.804l-0.155-0.843l-0.188-0.766l-0.229-0.805l0.457-0.154l0.463-0.152l0.422-0.152l0.418-0.115l0.348-0.113
-		l0.381-0.115l0.306-0.076l0.27-0.077z"/>
-	<path style="&st6;" d="M135.325,23.424l0.231,0.765l0.227,0.959l0.155,1.073l0.072,1.186l0.041,1.303l-0.002,1.301l-0.116,1.301l-0.192,1.267l-0.271,1.187l-0.345,1.109l-0.499,0.957l-0.572,0.766l-0.731,0.574l-0.84,0.304l-0.96,0.04l-1.108-0.307l0.422-0.691
-		l0.421-0.727l0.347-0.766l0.307-0.727l0.229-0.803l0.231-0.768l0.152-0.805l0.154-0.805l0.077-0.804l0.038-0.841v-0.805l-0.073-0.842l-0.076-0.842l-0.152-0.806l-0.152-0.845l-0.229-0.803l0.383-0.152l0.458-0.152l0.461-0.153l0.46-0.153l0.46-0.151l0.382-0.153
-		l0.346-0.117l0.267-0.074z"/>
-	<path style="&st6;" d="M125.586,39.307l1.036,0.08l0.997-0.154l0.879-0.381l0.805-0.535l0.766-0.73l0.652-0.879l0.536-0.994l0.499-1.109l0.384-1.188l0.309-1.266l0.192-1.3l0.078-1.302l0.001-1.301l-0.114-1.303l-0.229-1.265l-0.343-1.188l-0.422,0.152
-		l-0.425,0.154l-0.456,0.114l-0.463,0.152l-0.458,0.154l-0.497,0.153l-0.46,0.152l-0.497,0.152v0.804l-0.001,0.879l-0.04,0.999l-0.039,1.033l-0.039,1.033l-0.038,1.072l-0.116,1.11l-0.113,1.032l-0.156,1.035l-0.152,0.957l-0.233,0.919l-0.268,0.806l-0.308,0.687
-		l-0.384,0.577l-0.421,0.419l-0.461,0.267z"/>
-	<path style="&st6;" d="M128.317,25.715l-0.384,0.153l-0.383,0.114l-0.343,0.115l-0.386,0.077l-0.382,0.114l-0.347,0.113l-0.384,0.116l-0.38,0.153l-0.077,0.766l-0.041,0.84l-0.039,0.92l-0.038,0.958l-0.001,0.958l-0.001,1.031l-0.04,1.037l-0.039,0.994
-		l-0.076,0.997l-0.115,0.994l-0.193,0.919l-0.191,0.844l-0.305,0.802l-0.346,0.727l-0.422,0.616l-0.536,0.496l1.108-0.267l0.919-0.383l0.767-0.533l0.651-0.614l0.537-0.729l0.423-0.839l0.306-0.919l0.232-0.959l0.156-1.072l0.112-1.11l0.039-1.15l0.042-1.225
-		l0.037-1.225l0.039-1.264l0.001-1.264l0.078-1.303z"/>
-	<path style="&st6;" d="M118.156,42.058l1.531-0.074l1.304-0.305l1.07-0.496l0.882-0.652l0.689-0.841l0.502-0.958l0.419-1.071l0.27-1.188l0.154-1.226l0.114-1.261l0.041-1.305l0.001-1.262l0.001-1.305l0.001-1.223l0.076-1.15l0.078-1.071l-0.421,0.114l-0.383,0.113
-		l-0.343,0.117l-0.387,0.113l-0.382,0.113l-0.343,0.115l-0.384,0.077l-0.423,0.114l0.039,0.113l0.075,0.269l0.078,0.423l0.114,0.537l0.074,0.688l0.078,0.768l0.039,0.881l-0.04,0.996l-0.114,1.035l-0.195,1.145l-0.347,1.189l-0.42,1.225l-0.614,1.265l-0.766,1.339
-		l-0.921,1.3l-1.15,1.338z"/>
-	<path style="&st6;" d="M112.945,43.703l1.035,0.191l1.035-0.074l0.995-0.346l0.996-0.537l0.956-0.725l0.92-0.881l0.844-1.07l0.769-1.188l0.649-1.265l0.576-1.378l0.462-1.456l0.309-1.489l0.192-1.496l0.041-1.531l-0.152-1.454l-0.308-1.456l-3.638,1.146
-		l0.037,0.613l0.037,0.729l-0.038,0.801l-0.08,0.92l-0.112,0.958l-0.192,1.034l-0.192,1.072l-0.308,1.109l-0.347,1.109l-0.421,1.073l-0.461,1.071l-0.575,1.035l-0.612,0.996l-0.729,0.918l-0.805,0.842l-0.883,0.727z"/>
-	<path style="&st6;" d="M118.702,28.619l-0.573,0.189L117.4,29l-0.807,0.268l-0.84,0.229l-0.806,0.27l-0.804,0.227l-0.689,0.191l-0.537,0.115l-0.076,0.881l-0.042,0.955l-0.075,0.959l-0.038,0.995l-0.117,0.995l-0.077,1.037l-0.115,0.994l-0.153,0.996l-0.19,0.956
-		l-0.232,0.921l-0.309,0.916l-0.344,0.842l-0.422,0.807l-0.498,0.688l-0.536,0.65l-0.65,0.576l0.766,0.115l0.803-0.039l0.804-0.189l0.805-0.344l0.804-0.5l0.807-0.611l0.768-0.764l0.766-0.957l0.689-1.035l0.611-1.227l0.578-1.339l0.495-1.528l0.388-1.65
-		l0.307-1.758l0.194-1.955l0.077-2.066z"/>
-	<path style="&st6;" d="M104.021,45.226l1.725,0.08l1.455-0.154l1.265-0.418l0.998-0.652l0.841-0.803l0.691-0.957l0.497-1.072l0.386-1.224l0.308-1.225l0.19-1.343l0.116-1.3l0.117-1.302l0.038-1.303l0.078-1.188l0.075-1.11l0.117-0.995l-0.535,0.114l-0.463,0.115
-		l-0.419,0.153l-0.418,0.112l-0.463,0.117l-0.422,0.111l-0.496,0.154l-0.576,0.151l-0.116,1.038l-0.112,0.992l-0.116,0.996l-0.156,0.955l-0.116,0.961l-0.153,0.918l-0.189,0.879l-0.194,0.881l-0.269,0.844l-0.308,0.841l-0.382,0.805l-0.422,0.805l-0.536,0.801
-		l-0.576,0.768L104.79,44.5l-0.77,0.727z"/>
-	<path style="&st6;" d="M99.389,46.066l1.532,0.078l1.34-0.193l1.188-0.418l1.036-0.65l0.88-0.805l0.766-0.957l0.615-1.107l0.537-1.188l0.458-1.226l0.347-1.3l0.269-1.266l0.194-1.299l0.19-1.226l0.116-1.15l0.116-1.073l0.079-0.919l-0.539,0.117l-0.459,0.112
-		l-0.42,0.115l-0.423,0.077l-0.38,0.113l-0.425,0.074l-0.495,0.152l-0.576,0.115l-0.192,1.496l-0.229,1.417l-0.27,1.301l-0.269,1.226l-0.31,1.109l-0.345,1.071l-0.383,0.918l-0.384,0.883l-0.383,0.803l-0.425,0.727l-0.459,0.613l-0.422,0.574l-0.459,0.535
-		l-0.461,0.42l-0.498,0.383l-0.459,0.346z"/>
-	<path style="&st6;" d="M95.021,46.636l1.457,0.078l1.302-0.189l1.151-0.424l1.071-0.611l0.881-0.801l0.805-0.92l0.69-1.072l0.614-1.145l0.535-1.189l0.422-1.263l0.347-1.264l0.308-1.262l0.271-1.188l0.192-1.149l0.152-1.031l0.155-0.922l-0.459,0.076l-0.46,0.116
-		l-0.462,0.114l-0.459,0.115l-0.462,0.115l-0.458,0.112l-0.46,0.114l-0.497,0.117l-0.038,0.725l-0.116,0.805l-0.153,0.843l-0.269,0.918l-0.27,0.995l-0.382,0.957l-0.385,1.033l-0.422,0.998l-0.499,0.996l-0.537,0.957l-0.534,0.879l-0.577,0.84l-0.574,0.807
-		l-0.614,0.689l-0.649,0.572l-0.617,0.459z"/>
-	<path style="&st6;" d="M90.237,47.513l1.49,0.193l1.38-0.191l1.264-0.496l1.15-0.766l1.073-0.955l0.921-1.148l0.84-1.301l0.77-1.34l0.613-1.416l0.537-1.381l0.46-1.302l0.384-1.262l0.23-1.074l0.192-0.88l0.114-0.65l0.001-0.381l-0.573,0.111l-0.537,0.115
-		l-0.535,0.152l-0.536,0.115l-0.536,0.152l-0.5,0.113l-0.497,0.115l-0.499,0.078l-0.191,0.651l-0.19,0.765l-0.229,0.879l-0.271,0.996l-0.308,1.035l-0.343,1.071l-0.384,1.069l-0.424,1.115l-0.461,1.07l-0.497,0.994l-0.537,0.959l-0.574,0.842l-0.653,0.725
-		l-0.65,0.574l-0.728,0.422l-0.765,0.229z"/>
-	<path style="&st6;" d="M86.752,47.32l1.377,0.307l1.223,0.002l1.113-0.268l1.034-0.535l0.882-0.729l0.805-0.881l0.727-1.068l0.652-1.15l0.539-1.225l0.498-1.262l0.384-1.264l0.385-1.227l0.307-1.147l0.231-1.035l0.23-0.918l0.189-0.727l-0.419,0.076l-0.423,0.038
-		l-0.38,0.075l-0.347,0.076l-0.384,0.076l-0.346,0.078l-0.305,0.074l-0.345,0.041l-0.118,0.879l-0.189,0.919l-0.232,0.917l-0.228,0.883l-0.309,0.918l-0.347,0.881l-0.382,0.843l-0.461,0.842l-0.46,0.842l-0.537,0.805l-0.615,0.764l-0.61,0.689l-0.729,0.689
-		l-0.727,0.611l-0.806,0.574l-0.879,0.535z"/>
-	<path style="&st6;" d="M82.385,48.005l1.147,0.002l1.112-0.115l1.07-0.268l1.037-0.383l0.956-0.533l0.959-0.65l0.842-0.764l0.841-0.842l0.73-0.959l0.69-1.033l0.614-1.15l0.573-1.185l0.461-1.264l0.385-1.34l0.347-1.379l0.23-1.414l-0.498,0.113l-0.499,0.076
-		l-0.536,0.115l-0.496,0.074l-0.497,0.078l-0.459,0.112l-0.5,0.077l-0.459,0.115l-0.231,0.805l-0.191,0.842l-0.231,0.805l-0.194,0.803l-0.23,0.804l-0.228,0.803l-0.307,0.766l-0.346,0.805l-0.42,0.766l-0.463,0.803l-0.576,0.766l-0.688,0.766l-0.768,0.729
-		l-0.918,0.766l-1.073,0.766l-1.188,0.725z"/>
-	<path style="&st6;" d="M76.18,48.728l1.495,0.117l1.454-0.076l1.34-0.229l1.266-0.383l1.187-0.496l1.112-0.65l1.033-0.768l0.918-0.916l0.844-0.955l0.767-1.074l0.693-1.148l0.573-1.221l0.496-1.304l0.425-1.34l0.307-1.377l0.233-1.381l-0.423,0.076l-0.46,0.117
-		l-0.456,0.074l-0.461,0.075l-0.459,0.078l-0.5,0.114l-0.497,0.076l-0.5,0.115l-0.152,0.955l-0.23,0.957l-0.31,0.96l-0.383,0.917l-0.457,0.917l-0.502,0.918l-0.574,0.883l-0.648,0.842l-0.691,0.844l-0.767,0.762l-0.808,0.727l-0.879,0.689l-0.921,0.611l-0.995,0.576
-		l-0.997,0.496l-1.072,0.42z"/>
-	<path style="&st6;" d="M72.772,49.107l1.264-0.074l1.226-0.189l1.228-0.307l1.186-0.457l1.112-0.537l1.109-0.648l1.034-0.729l0.958-0.842l0.881-0.916l0.843-0.994l0.73-1.076l0.65-1.109l0.536-1.183l0.46-1.226l0.348-1.267l0.229-1.299l-0.419,0.074l-0.385,0.037
-		l-0.346,0.039l-0.343,0.039l-0.346,0.037l-0.382,0.077l-0.458,0.075l-0.539,0.075l-0.537,1.112l-0.459,1.031l-0.46,0.997l-0.422,0.918l-0.46,0.881l-0.424,0.805l-0.461,0.764l-0.498,0.727l-0.537,0.729l-0.613,0.65l-0.688,0.689l-0.765,0.611l-0.884,0.65
-		l-0.996,0.611l-1.108,0.613l-1.265,0.609z"/>
-	<path style="&st6;" d="M66.645,49.488l1.877,0.076l1.763-0.072l1.57-0.268l1.455-0.422l1.34-0.572l1.187-0.691l1.113-0.801l0.993-0.92l0.921-0.992l0.844-1.072l0.729-1.109l0.688-1.189l0.652-1.184l0.577-1.187l0.538-1.227l0.496-1.187l-0.343,0.036l-0.461,0.078
-		l-0.573,0.076l-0.575,0.076l-0.613,0.115l-0.537,0.076l-0.456,0.076l-0.347,0.035l-0.46,1.074l-0.499,1.074l-0.577,0.994l-0.573,0.955l-0.652,0.881l-0.688,0.879l-0.729,0.805l-0.804,0.807l-0.804,0.727l-0.885,0.688l-0.917,0.688l-0.96,0.613l-0.995,0.572
-		l-1.072,0.535l-1.072,0.496l-1.149,0.461z"/>
-	<path style="&st6;" d="M63.006,50.019l1.034-0.037l1.071-0.152l1.15-0.268l1.186-0.42l1.188-0.494l1.189-0.613l1.188-0.727l1.187-0.803l1.149-0.918l1.111-0.957l1.035-1.07l0.999-1.15l0.879-1.188l0.804-1.261l0.691-1.34l0.576-1.38l-0.575,0.079l-0.575,0.074
-		l-0.611,0.037l-0.612,0.077l-0.536,0.037l-0.461,0.077l-0.382,0.076l-0.192,0.115l-0.69,0.535l-0.689,0.575l-0.729,0.688l-0.729,0.688l-0.727,0.765l-0.767,0.803l-0.767,0.844l-0.768,0.844l-0.766,0.879l-0.804,0.842l-0.805,0.842l-0.845,0.84l-0.842,0.844
-		l-0.845,0.762l-0.842,0.768l-0.882,0.688z"/>
-	<path style="&st6;" d="M57.415,50.015l0.997,0.654l1.032,0.268l1.034,0.002l1.073-0.268l1.071-0.537l1.073-0.729l1.111-0.916l1.11-1.033l1.112-1.188l1.148-1.225l1.189-1.301l1.188-1.299l1.188-1.264l1.226-1.263l1.228-1.148l1.226-1.031h-0.425l-0.494,0.074
-		l-0.576,0.038l-0.573,0.116l-0.614,0.076l-0.612,0.113l-0.572,0.115l-0.5,0.075l-0.956,0.88l-0.957,0.88l-0.923,0.918l-0.919,0.92l-0.881,0.916l-0.883,0.92l-0.88,0.92l-0.845,0.84l-0.844,0.84l-0.842,0.768l-0.805,0.688l-0.804,0.613l-0.805,0.535l-0.767,0.459
-		l-0.766,0.344l-0.767,0.229z"/>
-	<path style="&st6;" d="M53.086,50.511l1.572,0.002l1.492-0.152l1.342-0.385l1.304-0.494l1.187-0.613l1.109-0.766l1.075-0.84l0.995-0.92l0.997-0.994l0.956-1.033l0.921-1.035l0.959-1.07l0.959-1.07l0.994-1.034l1.035-0.957l1.072-0.918l-0.382,0.04l-0.458,0.037
-		l-0.577,0.074l-0.572,0.041l-0.577,0.073l-0.459,0.038l-0.382,0.041l-0.229-0.001l-0.651,0.151l-0.651,0.306l-0.649,0.423l-0.692,0.573l-0.689,0.686l-0.729,0.805l-0.766,0.844l-0.769,0.916l-0.88,0.957l-0.883,0.955l-0.997,0.996l-1.032,0.959l-1.111,0.955
-		l-1.188,0.881l-1.264,0.801l-1.381,0.729z"/>
-	<path style="&st6;" d="M138.314,18.982v-0.153l0.04-0.42l0.038-0.649l0.04-0.807l0.039-0.957l-0.037-1.033l-0.038-1.072l-0.111-1.111l-0.229-1.033l-0.309-0.996l-0.38-0.882l-0.572-0.728l-0.654-0.537l-0.843-0.307l-1.034-0.039l-1.186,0.306l0.385,0.384
-		l0.343,0.459l0.345,0.574l0.306,0.613l0.305,0.689l0.27,0.689l0.264,0.767l0.271,0.804l0.228,0.767l0.19,0.806l0.194,0.803l0.188,0.766l0.155,0.768l0.152,0.727l0.114,0.65l0.113,0.613l0.19-0.037l0.154-0.037l0.189-0.078l0.155-0.037l0.151-0.079l0.155-0.075
-		l0.192-0.037l0.226-0.078z"/>
-	<path style="&st6;" d="M136.9,19.558l-0.497-2.489l-0.535-2.108l-0.535-1.801l-0.532-1.492l-0.539-1.188l-0.534-0.958l-0.533-0.689l-0.499-0.497l-0.536-0.347l-0.458-0.153l-0.502-0.039l-0.42,0.078l-0.419,0.152l-0.382,0.191l-0.348,0.229l-0.306,0.23l0.536,0.497
-		l0.533,0.573l0.462,0.538l0.494,0.611l0.424,0.615l0.422,0.648l0.382,0.652l0.344,0.691l0.344,0.727l0.306,0.766l0.307,0.768l0.268,0.805l0.227,0.842l0.23,0.842l0.227,0.882l0.194,0.919l0.457-0.077l0.345-0.036l0.232-0.077l0.153-0.077l0.151-0.037l0.156-0.076
-		l0.153-0.039l0.229-0.075z"/>
-	<path style="&st6;" d="M134.984,20.283l-0.113-0.918l-0.194-1.035l-0.305-1.15l-0.379-1.226l-0.5-1.264l-0.571-1.227l-0.611-1.187l-0.688-1.111l-0.729-0.996l-0.765-0.843l-0.803-0.65l-0.842-0.425L127.603,8.1l-0.882,0.152l-0.842,0.499l-0.882,0.878l0.688,0.498
-		l0.65,0.576l0.613,0.574l0.574,0.576l0.574,0.611l0.496,0.689l0.459,0.691l0.42,0.688l0.423,0.769l0.343,0.767l0.345,0.805l0.267,0.842l0.267,0.879l0.193,0.92l0.189,0.959l0.155,0.994l0.416-0.114l0.461-0.152l0.499-0.153l0.498-0.191l0.461-0.189l0.421-0.154
-		l0.344-0.151l0.23-0.077z"/>
-	<path style="&st6;" d="M120.057,10.239l0.919-0.612l0.92-0.344l0.957-0.115l0.919,0.115l0.958,0.307l0.919,0.5l0.882,0.689l0.843,0.805l0.762,0.919l0.766,1.073l0.65,1.188l0.572,1.226l0.496,1.305l0.384,1.376l0.306,1.38l0.151,1.416L131,21.581l-0.459,0.116
-		l-0.46,0.15l-0.46,0.154l-0.497,0.191l-0.499,0.113l-0.457,0.154l-0.498,0.075l-0.346-0.88l-0.305-0.959l-0.383-0.957l-0.348-0.957l-0.379-0.996l-0.419-0.998l-0.423-0.956l-0.421-0.918l-0.456-0.884l-0.499-0.805l-0.533-0.766l-0.539-0.651l-0.609-0.575
-		l-0.615-0.459l-0.648-0.346l-0.69-0.19z"/>
-	<path style="&st6;" d="M115.844,11.383l1.455-0.648l1.302-0.344l1.149-0.038l1.034,0.193l0.919,0.421l0.806,0.65l0.724,0.807l0.65,0.957l0.575,1.072l0.495,1.188l0.5,1.229l0.457,1.225l0.457,1.264l0.421,1.264l0.459,1.188l0.497,1.111l-0.421,0.037l-0.384,0.115
-		l-0.383,0.113l-0.385,0.152l-0.381,0.118l-0.384,0.151l-0.421,0.114l-0.422,0.074l-0.038-0.151l-0.038-0.383l-0.114-0.498l-0.114-0.689l-0.189-0.803l-0.27-0.92l-0.306-0.996l-0.42-1.034l-0.494-1.034l-0.574-1.035l-0.728-1.035l-0.803-0.958l-0.96-0.918
-		l-1.07-0.767l-1.228-0.691l-1.375-0.5z"/>
-	<path style="&st6;" d="M110.406,12.185l0.882-0.651l0.997-0.42l1.069-0.153l1.072,0.04l1.149,0.229l1.148,0.461l1.108,0.615l1.111,0.768l1.07,0.956l0.997,1.075l0.878,1.225l0.805,1.342l0.687,1.416l0.537,1.533l0.342,1.57l0.19,1.687l-3.945,1.029l-0.228-0.649
-		l-0.307-0.77l-0.306-0.803l-0.382-0.881l-0.461-0.92l-0.457-0.956l-0.537-0.961l-0.573-0.956l-0.652-0.957l-0.725-0.92l-0.766-0.842l-0.803-0.808l-0.878-0.728l-0.959-0.613l-0.996-0.537l-1.07-0.421z"/>
-	<path style="&st6;" d="M120.542,25.02l-0.572,0.115l-0.727,0.152l-0.729,0.23l-0.808,0.229l-0.764,0.267l-0.729,0.191l-0.649,0.189l-0.536,0.152l-0.382-0.957l-0.421-0.995l-0.422-0.996l-0.42-1.036l-0.421-1.032l-0.458-0.997l-0.498-0.995l-0.497-0.997
-		l-0.533-0.918l-0.573-0.845l-0.614-0.804l-0.651-0.727l-0.65-0.652l-0.728-0.537l-0.804-0.423l-0.804-0.306l0.692-0.459l0.764-0.344l0.806-0.23l0.88-0.075l0.918,0.076l0.959,0.231l0.957,0.383l0.992,0.576l0.999,0.728l0.993,0.92l0.995,1.149l0.954,1.304
-		l0.919,1.532l0.917,1.723l0.843,1.992l0.802,2.184z"/>
-	<path style="&st6;" d="M101.328,14.973l1.571-0.841l1.415-0.498l1.304-0.114l1.187,0.193l1.032,0.458l0.996,0.691l0.841,0.883l0.805,1.073l0.688,1.188l0.649,1.265l0.573,1.341l0.534,1.34l0.536,1.302l0.498,1.265l0.458,1.148l0.456,1.035l-0.534,0.076
-		l-0.459,0.112l-0.422,0.079l-0.422,0.114l-0.421,0.114l-0.459,0.115l-0.498,0.076l-0.572,0.112l-0.5-1.033l-0.458-1.036l-0.46-0.994l-0.458-0.958l-0.459-0.958l-0.495-0.88l-0.5-0.881l-0.495-0.806l-0.575-0.807l-0.61-0.727l-0.612-0.688l-0.688-0.652l-0.769-0.615
-		l-0.801-0.536l-0.92-0.498l-0.956-0.46z"/>
-	<path style="&st6;" d="M96.577,16.348l1.419-0.765l1.339-0.383l1.265-0.075l1.225,0.191l1.111,0.461l1.069,0.689l0.996,0.844l0.921,0.998l0.841,1.149l0.802,1.187l0.726,1.227l0.652,1.264l0.611,1.266l0.537,1.148l0.455,1.111l0.423,0.957l-0.574,0.113l-0.5,0.115
-		l-0.46,0.113l-0.421,0.076l-0.458,0.115l-0.461,0.115l-0.536,0.076l-0.613,0.115l-0.688-1.533l-0.688-1.417l-0.646-1.302l-0.651-1.188l-0.614-1.071l-0.573-0.961l-0.61-0.84l-0.574-0.807l-0.612-0.651l-0.613-0.575l-0.611-0.498l-0.65-0.421l-0.653-0.308
-		l-0.685-0.269l-0.731-0.155l-0.765-0.113z"/>
-	<path style="&st6;" d="M92.977,17.379l1.378-0.65l1.307-0.308l1.222,0.001l1.19,0.233l1.07,0.458l1.033,0.654l0.956,0.844l0.92,0.957l0.802,1.072l0.766,1.148l0.726,1.188l0.613,1.188l0.609,1.189l0.5,1.15l0.456,1.033l0.421,0.959l-0.459,0.113l-0.42,0.113
-		l-0.424,0.076l-0.383,0.116l-0.421,0.077l-0.42,0.075l-0.462,0.113l-0.496,0.077l-0.231-0.765l-0.342-0.845l-0.42-0.842l-0.497-0.919l-0.535-0.919l-0.651-0.921l-0.649-0.92l-0.728-0.92l-0.765-0.841l-0.805-0.846l-0.803-0.766l-0.804-0.652l-0.843-0.613
-		l-0.805-0.498l-0.802-0.383l-0.806-0.23z"/>
-	<path style="&st6;" d="M88.648,18.484l1.417-0.762l1.38-0.345l1.379,0.039l1.301,0.385l1.264,0.612l1.226,0.879l1.149,1.038l1.069,1.147l0.995,1.229l0.881,1.264l0.8,1.227l0.65,1.187l0.536,1.036l0.422,0.879l0.23,0.652l0.113,0.383l-0.574,0.115l-0.498,0.113
-		l-0.498,0.115l-0.5,0.115l-0.496,0.115l-0.459,0.074l-0.499,0.077l-0.497,0.076l-0.344-0.651l-0.384-0.804l-0.458-0.882l-0.537-0.921l-0.571-1.033l-0.614-1.034l-0.646-0.997l-0.691-1.034l-0.727-0.959L93.7,20.939l-0.802-0.804l-0.803-0.652l-0.844-0.537
-		l-0.844-0.345l-0.878-0.152l-0.882,0.035z"/>
-	<path style="&st6;" d="M85.508,19.709l1.266-0.842l1.224-0.459l1.149-0.113l1.149,0.19l1.071,0.461l1.033,0.692l0.958,0.842l0.915,1.035l0.844,1.113l0.805,1.184l0.727,1.229l0.687,1.225l0.574,1.15l0.535,1.073l0.421,0.918l0.383,0.766l-0.46,0.077l-0.382,0.114
-		l-0.344,0.115l-0.308,0.113l-0.347,0.114l-0.305,0.115L96.796,30.9l-0.343,0.073l-0.344-0.955l-0.421-0.958l-0.422-0.921l-0.46-0.918l-0.537-0.919l-0.531-0.844l-0.613-0.844l-0.65-0.805l-0.689-0.767l-0.764-0.688l-0.765-0.614l-0.844-0.574l-0.919-0.5
-		l-0.919-0.421l-0.996-0.308l-1.071-0.229z"/>
-	<path style="&st6;" d="M81.523,20.625l1.113-0.422l1.109-0.266l1.148-0.077l1.074,0.078l1.109,0.231l1.032,0.345l1.034,0.536l1.034,0.652l0.956,0.768l0.918,0.92l0.881,0.996l0.842,1.112l0.802,1.226l0.689,1.34l0.688,1.418l0.571,1.491l-0.498,0.077l-0.495,0.076
-		l-0.501,0.115l-0.497,0.153l-0.496,0.115l-0.498,0.153l-0.497,0.115l-0.5,0.074l-0.343-0.842l-0.343-0.882l-0.347-0.843l-0.342-0.883l-0.422-0.842l-0.419-0.805l-0.501-0.842l-0.534-0.767l-0.649-0.729l-0.688-0.728l-0.805-0.652l-0.88-0.613l-0.996-0.537
-		l-1.11-0.498l-1.261-0.424l-1.381-0.344z"/>
-	<path style="&st6;" d="M75.855,21.961l1.455-0.609l1.457-0.385l1.34-0.189l1.34-0.037l1.265,0.191l1.226,0.346l1.147,0.498l1.111,0.652l0.992,0.805l0.994,0.919l0.884,1.036l0.84,1.15l0.764,1.264l0.652,1.34l0.611,1.381l0.535,1.491l-0.459,0.077l-0.46,0.076
-		l-0.536,0.078l-0.501,0.074l-0.533,0.078l-0.538,0.074l-0.535,0.076l-0.535,0.076l-0.269-1.072l-0.383-0.994l-0.42-0.996l-0.533-0.959l-0.575-0.881l-0.651-0.843l-0.688-0.805l-0.766-0.729l-0.842-0.689l-0.916-0.574l-0.959-0.539l-0.995-0.459l-1.071-0.346
-		L78.19,22.23l-1.146-0.191l-1.188-0.078z"/>
-	<path style="&st6;" d="M73.062,22.265l1.302-0.19l1.262-0.113L76.888,22l1.228,0.154l1.224,0.307l1.15,0.385l1.109,0.498l1.073,0.613l0.995,0.729l0.954,0.844l0.844,0.919l0.803,1.034l0.688,1.15l0.611,1.226l0.499,1.341l0.38,1.419l-0.46,0.035l-0.383,0.038
-		l-0.382,0.077l-0.384,0.077l-0.384,0.074l-0.382,0.078l-0.46,0.114l-0.496,0.076l-0.651-1.111l-0.613-1.073l-0.532-0.958l-0.5-0.956l-0.535-0.844l-0.498-0.804l-0.497-0.767l-0.572-0.69l-0.612-0.651l-0.688-0.575l-0.768-0.535l-0.842-0.498l-0.995-0.425
-		l-1.071-0.383l-1.264-0.346l-1.415-0.308z"/>
-	<path style="&st6;" d="M66.973,23.064l1.914-0.457l1.8-0.268l1.646-0.075l1.531,0.154l1.417,0.307l1.302,0.461l1.187,0.573l1.074,0.77l1.03,0.842l0.917,0.96l0.844,1.034l0.802,1.112l0.728,1.147l0.688,1.227l0.612,1.226l0.611,1.265l-0.307,0.037l-0.42,0.037
-		l-0.459,0.115l-0.501,0.076l-0.496,0.115l-0.462,0.114l-0.419,0.036l-0.346,0.039l-0.571-1.148l-0.613-1.035l-0.689-0.996l-0.726-0.918l-0.766-0.883l-0.805-0.806L76.618,27.4l-0.919-0.69l-0.956-0.616l-0.996-0.573l-1.034-0.498l-1.07-0.498l-1.111-0.423
-		l-1.147-0.383l-1.189-0.346l-1.222-0.309z"/>
-	<path style="&st6;" d="M63.335,23.443l1.068-0.189l1.113-0.037l1.225,0.038l1.263,0.192l1.267,0.271l1.3,0.384l1.303,0.497l1.302,0.614l1.3,0.729l1.224,0.845l1.186,0.92l1.147,1.035l1.035,1.149l0.956,1.225l0.841,1.342l0.728,1.455l-0.537,0.039l-0.533,0.076
-		l-0.538,0.115l-0.536,0.113l-0.459,0.113l-0.385,0.117l-0.306,0.036l-0.19-0.037l-0.769-0.46l-0.763-0.537l-0.804-0.613l-0.843-0.689l-0.843-0.729l-0.878-0.768l-0.92-0.768l-0.916-0.802l-0.959-0.806l-0.956-0.807l-0.995-0.803l-0.996-0.729l-1.033-0.729
-		l-0.995-0.652l-1.071-0.613l-1.031-0.537z"/>
-	<path style="&st6;" d="M58.237,24.895l0.958-0.955l1.034-0.572l1.074-0.23l1.109,0.077l1.148,0.308l1.225,0.575l1.227,0.769l1.3,0.879l1.301,1.074l1.341,1.11l1.34,1.19l1.34,1.188l1.377,1.188l1.377,1.112l1.376,1.035l1.381,0.92l-0.421,0.074l-0.499,0.037
-		l-0.612,0.041l-0.613,0.037l-0.648,0.037h-0.653h-0.574l-0.497-0.002l-1.034-0.766l-0.993-0.804l-0.996-0.808l-0.918-0.842l-0.919-0.805l-0.883-0.807l-0.878-0.805l-0.88-0.767l-0.919-0.688l-0.879-0.651l-0.92-0.575l-0.956-0.5l-0.996-0.422l-1.034-0.345
-		l-1.073-0.192l-1.11-0.117z"/>
-	<path style="&st6;" d="M54.408,25.352l1.61-0.381l1.493-0.152l1.415,0.076l1.343,0.271l1.262,0.461l1.226,0.575l1.186,0.729l1.148,0.805l1.11,0.919l1.109,0.922l1.071,0.995l1.111,0.996l1.109,0.958l1.107,0.959l1.188,0.843l1.185,0.807l-0.38,0.037l-0.498,0.075
-		l-0.576,0.078l-0.576,0.036l-0.572,0.079l-0.5,0.072l-0.38,0.041l-0.231,0.037l-0.688-0.002l-0.69-0.189l-0.727-0.348l-0.766-0.496l-0.766-0.614l-0.843-0.728l-0.879-0.807l-0.919-0.844l-0.959-0.881l-1.031-0.918l-1.109-0.882l-1.148-0.844l-1.262-0.808
-		l-1.302-0.728l-1.379-0.651l-1.494-0.5z"/>
-	<path style="&st6;" d="M49.583,26.689L51,25.885l1.495-0.342h1.455l1.49,0.309l1.495,0.576l1.494,0.804l1.454,0.96l1.415,1.034l1.339,1.149l1.302,1.15l1.263,1.075l1.148,0.993l1.033,0.844l0.956,0.65l0.843,0.385l0.726,0.116l-0.61,0.077l-0.653,0.113
-		l-0.727,0.113l-0.765,0.117l-0.767,0.074l-0.767,0.115l-0.728,0.038l-0.652,0.037l-1.07-0.806l-0.958-0.766l-0.879-0.767l-0.84-0.728l-0.767-0.73L59,31.752l-0.767-0.691l-0.726-0.651l-0.729-0.612l-0.804-0.576l-0.841-0.537l-0.919-0.496l-0.996-0.461
-		l-1.071-0.383l-1.226-0.348l-1.34-0.307z"/>
-	<g style="&st6;">
-		<path d="M142.345,10.982l0.191-0.383l0.153-0.42l0.152-0.423l0.113-0.421l0.117-0.459l0.115-0.496l0.077-0.459l0.042-0.5l0.036-0.459l0.035-0.498l0.001-0.499l-0.035-0.46l-0.036-0.459l-0.08-0.457l-0.112-0.461l-0.114-0.42l0.611,0.804l0.459,0.882l0.345,0.842
-			l0.189,0.88l0.076,0.919v0.92l-0.116,0.918l-0.194,0.92l-0.228,0.918l-0.31,0.883l-0.343,0.879l-0.343,0.88l-0.385,0.843l-0.347,0.842l-0.346,0.765l-0.343,0.767l0.074-0.152l0.037-0.269l0.042-0.266v-0.345l0.037-0.424v-0.421v-0.46l0.001-0.496l0.038-0.499
-			v-0.498l0.039-0.534l0.04-0.498l0.038-0.461l0.078-0.461l0.075-0.42l0.116-0.383z"/>
-		<path d="M154.014,26.885l-0.729-0.422l-0.729-0.462l-0.687-0.421l-0.688-0.422l-0.65-0.383l-0.651-0.422l-0.616-0.385l-0.609-0.42L148,23.165l-0.607-0.384l-0.614-0.422l-0.652-0.382l-0.611-0.386l-0.654-0.342l-0.686-0.386l-0.689-0.382l0.61,0.61l0.613,0.616
-			l0.613,0.611l0.612,0.576l0.65,0.611l0.651,0.536l0.65,0.539l0.688,0.497l0.651,0.461l0.689,0.383l0.651,0.346l0.688,0.269l0.688,0.229l0.688,0.115l0.691,0.037l0.691-0.035z"/>
-		<path d="M148.317,11.561l-0.536,0.308l-0.5,0.345l-0.495,0.345l-0.461,0.344l-0.46,0.343l-0.419,0.383l-0.424,0.421l-0.423,0.383l-0.384,0.422l-0.384,0.422l-0.382,0.421l-0.345,0.457l-0.383,0.422l-0.346,0.459l-0.344,0.459l-0.346,0.459l0.153-0.496l0.192-0.499
-			l0.191-0.537l0.229-0.534l0.231-0.536l0.265-0.499l0.31-0.498l0.346-0.495l0.382-0.46l0.461-0.381l0.498-0.385l0.537-0.344l0.612-0.269l0.652-0.229l0.765-0.152l0.805-0.076z"/>
-		<path d="M142.614,6.961l-0.153,0.767l-0.114,0.767l-0.154,0.766l-0.116,0.689L142,10.676l-0.114,0.689l-0.079,0.689l-0.115,0.689l-0.075,0.688l-0.117,0.689l-0.074,0.651l-0.118,0.689l-0.116,0.689l-0.115,0.689l-0.15,0.689l-0.157,0.727l-0.076-0.842
-			l-0.113-0.805l-0.077-0.843l-0.076-0.841l-0.037-0.807l-0.038-0.805l0.039-0.805l0.039-0.764l0.076-0.767l0.116-0.688l0.194-0.689l0.229-0.651l0.269-0.573l0.384-0.537l0.422-0.46l0.497-0.421z"/>
-		<path d="M146.714,5.703l0.692,0.648l0.416,0.729l0.189,0.766l0.04,0.805l-0.153,0.804l-0.307,0.843l-0.424,0.844l-0.498,0.841l-0.575,0.804l-0.611,0.805l-0.653,0.764l-0.65,0.689l-0.614,0.689l-0.534,0.572l-0.463,0.539l-0.383,0.418l0.077-1.147l0.154-0.995
-			l0.191-0.844l0.307-0.764l0.306-0.65l0.386-0.574l0.382-0.535l0.424-0.501l0.383-0.496l0.424-0.495l0.382-0.538l0.307-0.613l0.307-0.688l0.23-0.766l0.194-0.919l0.075-1.032z"/>
-		<path d="M141.803,17.951v-0.805l-0.039-0.765l-0.034-0.765l-0.04-0.768l-0.036-0.729l-0.077-0.727l-0.076-0.727l-0.073-0.691l-0.117-0.688l-0.114-0.728l-0.189-0.689l-0.152-0.689l-0.193-0.689l-0.268-0.689l-0.229-0.689l-0.306-0.689l1.111,1.073l0.918,1.034
-			l0.649,0.959l0.457,0.92l0.309,0.879l0.151,0.805l0.037,0.806l-0.077,0.727l-0.195,0.689l-0.187,0.651l-0.27,0.613l-0.271,0.533l-0.23,0.537l-0.229,0.459l-0.152,0.459l-0.078,0.383z"/>
-		<path d="M153.022,20.603l-0.613,0.114l-0.614,0.116l-0.611,0.075l-0.613,0.075l-0.609,0.038l-0.616,0.037h-0.613h-0.575l-0.612-0.039h-0.574l-0.613-0.077l-0.573-0.038l-0.613-0.04l-0.575-0.075l-0.612-0.079l-0.574-0.075l0.498,0.229l0.498,0.192l0.535,0.231
-			l0.537,0.19l0.574,0.193l0.576,0.151l0.61,0.156l0.61,0.076l0.612,0.039h0.651l0.651-0.039l0.654-0.15l0.651-0.191l0.651-0.27l0.648-0.381l0.654-0.46z"/>
-		<path d="M149.457,23.702l0.461,0.078l0.419,0.075l0.461,0.115l0.457,0.115l0.463,0.194l0.456,0.151l0.421,0.191l0.46,0.23l0.421,0.23l0.421,0.267l0.383,0.271l0.386,0.268l0.343,0.307l0.308,0.307l0.304,0.307l0.27,0.344l-0.269-0.917l-0.422-0.808l-0.494-0.688
-			l-0.615-0.651l-0.688-0.536l-0.768-0.5l-0.84-0.421l-0.882-0.347l-0.919-0.306l-0.919-0.307l-0.955-0.231l-0.958-0.23l-0.957-0.193l-0.919-0.189l-0.843-0.154l-0.842-0.192l0.42,0.153l0.574,0.306l0.69,0.463l0.841,0.497l0.843,0.535l0.879,0.499l0.842,0.46
-			l0.768,0.308z"/>
-		<path d="M151.214,30.559l0.345-0.881l0.117-0.844l-0.116-0.842l-0.307-0.766l-0.457-0.729l-0.612-0.727l-0.728-0.69l-0.804-0.614l-0.843-0.613l-0.879-0.536l-0.919-0.538l-0.884-0.459l-0.801-0.42l-0.767-0.387l-0.651-0.344l-0.496-0.309l0.532,1.113l0.538,0.919
-			l0.573,0.728l0.536,0.652l0.574,0.498l0.574,0.459l0.574,0.346l0.574,0.346l0.571,0.346l0.577,0.382l0.572,0.384l0.536,0.46l0.537,0.573l0.535,0.691l0.497,0.806l0.498,0.995z"/>
-		<path d="M141.569,21.129l0.422,0.652l0.42,0.652l0.421,0.65l0.38,0.613l0.346,0.613l0.345,0.649l0.346,0.614l0.305,0.613l0.304,0.652l0.268,0.65l0.271,0.613l0.229,0.65l0.19,0.689l0.192,0.65l0.152,0.689l0.152,0.73l0.384-1.455l0.191-1.265l0.041-1.149
-			l-0.115-0.994l-0.229-0.844l-0.346-0.766l-0.42-0.652l-0.458-0.537l-0.538-0.499l-0.535-0.421l-0.573-0.346l-0.537-0.306l-0.496-0.306l-0.46-0.268l-0.342-0.307l-0.31-0.271z"/>
-	</g>
-</g><!-- Feather_x0020_shadow -->
-<g id="Layer_x0020_1">
-	<defs>
-		<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd1" x1="-3510.3682" y1="4186.3037" x2="-3520.3882" y2="4153.2837" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 -2022.5977 2980.6621)">
-			<stop  offset="0" style="stop-color:#4F0C81"/>
-			<stop  offset="0.0701" style="stop-color:#690C73"/>
-			<stop  offset="0.209" style="stop-color:#9A0A5B"/>
-			<stop  offset="0.3368" style="stop-color:#C20748"/>
-			<stop  offset="0.4512" style="stop-color:#E0053A"/>
-			<stop  offset="0.5481" style="stop-color:#F20032"/>
-			<stop  offset="0.6158" style="stop-color:#FA002F"/>
-			<stop  offset="1" style="stop-color:#F7EE5F"/>
-		</linearGradient>
-	</defs>
-	<g style="fill-rule:nonzero;fill:url(#AIgd1);stroke:#000000;stroke-width:0.254;stroke-miterlimit:4;">
-		<path style="&st23;" d="M0.241,40.672c13.561-1.867,63.613-4.393,85.943-8.051c17.961-2.937,35.502-8.285,52.242-13.9c4.328-1.453,11.991-4.434,16.896-7.07c3.104-2.373,10.571-5.889,12.606-9.222c-32.45,15.407-45.513,19.649-83.582,27.354
-			c-15.436,3.169-71.617,7.721-84.105,10.889z"/>
-		<defs>
-			<linearGradient id="AIgd2" gradientUnits="userSpaceOnUse" x1="-3788.0986" y1="-3507.6162" x2="-3789.1638" y2="-3479.4058" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#4F0C81"/>
-				<stop  offset="0.0701" style="stop-color:#690C73"/>
-				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
-				<stop  offset="0.3368" style="stop-color:#C20748"/>
-				<stop  offset="0.4512" style="stop-color:#E0053A"/>
-				<stop  offset="0.5481" style="stop-color:#F20032"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st1;" d="M48.261,46.645l1.454,0.498l1.418,0.118l1.417-0.229l1.417-0.574l1.379-0.766l1.38-0.994l1.305-1.146l1.301-1.226l1.228-1.26l1.149-1.267l1.111-1.224l1.035-1.148l0.958-0.957l0.881-0.763l0.767-0.501l0.689-0.228l-0.576,0.036l-0.611,0.038
-			l-0.689,0.077l-0.688,0.074l-0.69,0.078l-0.689,0.076l-0.689,0.038l-0.612,0.076l-0.957,0.88l-0.921,0.842l-0.805,0.842l-0.729,0.844l-0.727,0.801l-0.688,0.805l-0.652,0.764l-0.691,0.729l-0.688,0.727l-0.729,0.65l-0.767,0.65l-0.882,0.61l-0.919,0.576
-			l-1.034,0.535l-1.149,0.496l-1.302,0.421z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd3" x1="-3817.4316" y1="-3498.7192" x2="-3818.3076" y2="-3475.5176" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#4F0C81"/>
-				<stop  offset="0.0701" style="stop-color:#690C73"/>
-				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
-				<stop  offset="0.3368" style="stop-color:#C20748"/>
-				<stop  offset="0.4512" style="stop-color:#E0053A"/>
-				<stop  offset="0.5481" style="stop-color:#F20032"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st2;" d="M43.511,46.45l1.688,0.271l1.569,0.038l1.455-0.15l1.377-0.345l1.265-0.534l1.151-0.652l1.148-0.766l1.034-0.879l1.035-0.918l0.957-0.995l0.959-1.072l0.921-1.032l0.956-1.033l0.96-1.033l0.958-0.955l0.995-0.881l-0.381,0.037h-0.423
-			l-0.384,0.039l-0.419,0.037l-0.424,0.037l-0.421,0.078l-0.42,0.035l-0.42,0.041l-0.421,0.037l-0.461,0.037l-0.422,0.078l-0.459,0.037l-0.459,0.037l-0.46,0.037h-0.46l-0.459,0.039l-0.347,0.535l-0.42,0.651l-0.537,0.765l-0.575,0.805l-0.69,0.881l-0.729,0.879
-			l-0.766,0.918l-0.805,0.879l-0.844,0.844l-0.84,0.805l-0.885,0.726l-0.842,0.612l-0.844,0.496l-0.843,0.346l-0.804,0.189h-0.768z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd4" x1="-3806.9058" y1="-3505.3105" x2="-3807.8401" y2="-3480.5605" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#4F0C81"/>
-				<stop  offset="0.0701" style="stop-color:#690C73"/>
-				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
-				<stop  offset="0.3368" style="stop-color:#C20748"/>
-				<stop  offset="0.4512" style="stop-color:#E0053A"/>
-				<stop  offset="0.5481" style="stop-color:#F20032"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st3;" d="M40.371,46.487l0.958,0.115l0.919,0.076l0.881-0.037l0.881-0.152l0.882-0.19l0.843-0.344l0.841-0.421l0.883-0.574l0.882-0.65l0.882-0.764l0.882-0.921l0.919-0.993l0.958-1.188l0.997-1.3l1.034-1.416l1.074-1.607l-0.651-0.002l-0.613,0.039
-			l-0.614,0.076l-0.612,0.076l-0.611,0.078l-0.613,0.072h-0.688h-0.727l-0.616,0.612l-0.573,0.65l-0.576,0.614l-0.574,0.688l-0.575,0.65l-0.535,0.689l-0.576,0.648l-0.539,0.691l-0.572,0.65l-0.574,0.65l-0.612,0.65l-0.577,0.613l-0.65,0.572l-0.652,0.574
-			l-0.65,0.573l-0.729,0.499z"/>
-		<path style="&st2;" d="M37.041,46.329l0.728,0.387l0.802,0.153l0.807-0.116l0.842-0.342l0.844-0.5l0.881-0.689l0.88-0.764l0.884-0.917l0.841-0.958l0.884-0.993l0.804-0.997l0.805-0.957l0.768-0.957l0.729-0.84l0.689-0.729l0.614-0.613l-4.099,0.382l-0.462,0.612
-			l-0.498,0.61l-0.458,0.616l-0.459,0.608l-0.46,0.614l-0.5,0.612l-0.461,0.612l-0.497,0.612l-0.537,0.573l-0.537,0.611l-0.536,0.578l-0.613,0.57l-0.612,0.574l-0.653,0.576l-0.688,0.536l-0.728,0.532z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd6" x1="-3825.4375" y1="-3503.8936" x2="-3826.3342" y2="-3480.1453" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#4F0C81"/>
-				<stop  offset="0.0701" style="stop-color:#690C73"/>
-				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
-				<stop  offset="0.3368" style="stop-color:#C20748"/>
-				<stop  offset="0.4512" style="stop-color:#E0053A"/>
-				<stop  offset="0.5481" style="stop-color:#F20032"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st4;" d="M30.262,45.444l1.188,0.767l1.109,0.5l1.11,0.231h1.074l1.033-0.191l0.995-0.343l0.955-0.538l0.96-0.687l0.919-0.841l0.923-0.881l0.84-1.037l0.884-1.031l0.843-1.109l0.844-1.146l0.805-1.148l0.805-1.111l-0.688,0.115l-0.536,0.037
-			l-0.384,0.037l-0.345,0.039l-0.343,0.039l-0.346-0.001l-0.499,0.037l-0.651,0.037l-0.729,1.034l-0.727,0.955l-0.729,0.921l-0.805,0.804l-0.767,0.727l-0.767,0.689l-0.804,0.611l-0.768,0.536l-0.766,0.458l-0.768,0.421l-0.727,0.306l-0.689,0.269l-0.689,0.229
-			l-0.614,0.152l-0.612,0.075l-0.537,0.038z"/>
-		<path style="&st2;" d="M26.7,45.21l1.228,0.153l1.186,0.08l1.149-0.078l1.109-0.151l1.036-0.227l1.033-0.345l0.958-0.422l0.92-0.535l0.92-0.572l0.844-0.651l0.843-0.727l0.803-0.804l0.766-0.842l0.73-0.918l0.729-0.959l0.689-0.994l-0.767,0.039l-0.844,0.074
-			l-0.802,0.076l-0.806,0.038l-0.69,0.077l-0.574,0.035l-0.421,0.039l-0.191,0.037l-0.076,0.078l-0.191,0.19l-0.308,0.306l-0.382,0.385l-0.422,0.459l-0.536,0.536l-0.577,0.573l-0.648,0.614l-0.731,0.608l-0.764,0.65l-0.768,0.615l-0.843,0.611l-0.88,0.572
-			l-0.881,0.535l-0.921,0.46L26.7,45.21z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd8" x1="-3841.6636" y1="-3502.4297" x2="-3842.4236" y2="-3482.3" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#4F0C81"/>
-				<stop  offset="0.0701" style="stop-color:#690C73"/>
-				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
-				<stop  offset="0.3368" style="stop-color:#C20748"/>
-				<stop  offset="0.4512" style="stop-color:#E0053A"/>
-				<stop  offset="0.5481" style="stop-color:#F20032"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st5;" d="M21.991,45.476l1.033,0.192l0.998,0.076l1.033-0.113l1.034-0.191l1.034-0.342l0.994-0.423l0.996-0.497l0.998-0.611l0.919-0.648l0.918-0.69l0.881-0.726l0.845-0.766l0.806-0.804l0.766-0.765l0.69-0.768l0.651-0.766h-0.461l-0.574,0.04
-			l-0.611,0.036H34.29l-0.613,0.073l-0.613,0.041l-0.496,0.039l-0.423,0.075v0.077l-0.154,0.189l-0.381,0.347l-0.537,0.42l-0.652,0.535l-0.764,0.613l-0.845,0.652l-0.882,0.647l-0.92,0.687l-0.918,0.691l-0.881,0.65l-0.846,0.574L23.6,44.559L22.91,44.98
-			l-0.537,0.305l-0.382,0.191z"/>
-		<path style="&st2;" d="M16.782,45.434l0.612,0.612l0.806,0.267l0.996,0.001l1.11-0.266l1.227-0.46l1.262-0.646l1.341-0.768l1.305-0.841l1.302-0.919l1.227-0.916l1.147-0.879l0.999-0.844l0.881-0.688l0.65-0.574l0.423-0.381l0.192-0.154l-0.498,0.038l-0.538,0.036
-			l-0.574,0.037l-0.572,0.041l-0.614,0.072l-0.614,0.039l-0.611,0.04l-0.652,0.038l-0.688,0.419l-0.688,0.422l-0.693,0.456l-0.649,0.425l-0.689,0.456l-0.653,0.498l-0.688,0.459l-0.653,0.459l-0.69,0.496l-0.65,0.461l-0.688,0.459l-0.651,0.458l-0.688,0.421
-			l-0.691,0.422l-0.651,0.419l-0.69,0.384z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd10" x1="-3872.1543" y1="-3503.9727" x2="-3872.3848" y2="-3493.1567" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#F7EE5F"/>
-				<stop  offset="0.186" style="stop-color:#F5D65D"/>
-				<stop  offset="0.3825" style="stop-color:#F4C35B"/>
-				<stop  offset="0.5198" style="stop-color:#F4BC5A"/>
-				<stop  offset="0.7809" style="stop-color:#F5DA5D"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st8;" d="M12.953,45.507l0.652,0.229l0.649,0.115l0.65,0.037l0.653-0.11l0.65-0.194l0.689-0.265l0.727-0.383l0.768-0.46l0.843-0.535l0.881-0.612l0.959-0.688l1.072-0.728l1.187-0.803l1.265-0.881l1.379-0.918l1.534-0.957l-0.653,0.039l-0.727,0.039
-			l-0.65-0.001l-0.65,0.038l-0.574,0.037l-0.459,0.038l-0.307,0.039l-0.116,0.036l-0.077,0.115l-0.229,0.23l-0.346,0.307l-0.458,0.42L21.69,40.19l-0.653,0.577l-0.689,0.571l-0.805,0.613l-0.805,0.611l-0.843,0.612l-0.843,0.534l-0.882,0.537l-0.842,0.457
-			l-0.842,0.383l-0.805,0.267l-0.729,0.154z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd11" x1="-3878.0732" y1="-3508.4204" x2="-3874.5449" y2="-3484.9487" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#F7EE5F"/>
-				<stop  offset="0.186" style="stop-color:#F5D65D"/>
-				<stop  offset="0.3825" style="stop-color:#F4C35B"/>
-				<stop  offset="0.5198" style="stop-color:#F4BC5A"/>
-				<stop  offset="0.7809" style="stop-color:#F5DA5D"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st9;" d="M10.158,45.084l0.879,0.344l0.958,0.152l0.998-0.072l1.033-0.268l1.072-0.383l1.033-0.498l1.074-0.608l0.996-0.69l0.958-0.688l0.92-0.728l0.843-0.688l0.728-0.691l0.653-0.572l0.495-0.499l0.383-0.341l0.232-0.232l-0.613,0.038l-0.577,0.04
-			l-0.571,0.037l-0.575,0.074l-0.535,0.041l-0.577,0.037l-0.61,0.074l-0.613,0.038l-0.459,0.421l-0.501,0.42l-0.458,0.421l-0.499,0.46l-0.498,0.498l-0.497,0.459l-0.536,0.459l-0.538,0.458l-0.536,0.423l-0.534,0.421l-0.577,0.381l-0.534,0.343l-0.614,0.309
-			l-0.574,0.266l-0.613,0.193l-0.613,0.152z"/>
-		<path style="&st8;" d="M6.791,44.01l0.765,0.535l0.763,0.345l0.767,0.154l0.767,0.039l0.768-0.151l0.766-0.232l0.766-0.343l0.765-0.458l0.729-0.498l0.766-0.611l0.729-0.613l0.729-0.65l0.727-0.648l0.69-0.69l0.689-0.649l0.69-0.615l-0.422,0.041l-0.46,0.076
-			l-0.497,0.037l-0.535,0.039l-0.575,0.074l-0.612,0.039l-0.652,0.074l-0.612,0.037l-0.192,0.461L13.84,40.26l-0.271,0.422l-0.346,0.422l-0.381,0.383l-0.424,0.383l-0.42,0.381l-0.496,0.306l-0.5,0.308l-0.537,0.268l-0.573,0.268L9.316,43.59l-0.612,0.154
-			l-0.61,0.15L7.44,43.971L6.791,44.01z"/>
-		<path style="&st9;" d="M3.763,43.434L4.415,43.7l0.69,0.193l0.726,0.115l0.806,0.001l0.767-0.038l0.842-0.115l0.805-0.229l0.803-0.229l0.768-0.344l0.729-0.384l0.65-0.421l0.614-0.495l0.536-0.538l0.46-0.572l0.345-0.651l0.23-0.652l-0.46,0.04l-0.46,0.037
-			l-0.497,0.076l-0.5,0.038l-0.495,0.038l-0.537,0.037l-0.574,0.039l-0.652,0.036L9.74,40.067l-0.307,0.384l-0.306,0.345l-0.306,0.306l-0.307,0.306l-0.348,0.229l-0.343,0.27l-0.347,0.229l-0.381,0.191l-0.422,0.19l-0.421,0.19L5.796,42.86l-0.462,0.152
-			l-0.495,0.152L4.302,43.28l-0.539,0.154z"/>
-		<path style="&st8;" d="M2.193,42.896l0.23,0.229l0.347,0.152l0.42,0.078h0.46l0.536-0.038l0.573-0.112l0.613-0.193l0.612-0.189l0.613-0.27l0.614-0.307l0.612-0.342l0.537-0.385l0.537-0.42l0.458-0.459l0.345-0.46l0.307-0.498l-0.343,0.041l-0.308,0.037
-			l-0.383,0.038L8.63,39.836l-0.344,0.039l-0.307,0.036l-0.268,0.001l-0.269-0.001v0.153L7.1,40.37l-0.576,0.422L5.757,41.29L4.84,41.786l-0.922,0.499l-0.919,0.381l-0.806,0.23z"/>
-		<path style="&st8;" d="M1.084,41.822l0.078,0.536l0.192,0.344l0.305,0.155l0.42,0.076l0.499-0.075l0.574-0.192l0.573-0.229l0.614-0.306l0.613-0.346l0.574-0.381l0.575-0.381l0.461-0.347l0.42-0.307l0.307-0.229l0.191-0.152l0.038-0.076l-2.986,0.341l-0.229,0.152
-			l-0.386,0.192l-0.458,0.23l-0.5,0.229l-0.535,0.269l-0.497,0.189l-0.461,0.192l-0.384,0.114z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd16" x1="-3892.5645" y1="-3497.0415" x2="-3892.7126" y2="-3490.0823" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#F7EE5F"/>
-				<stop  offset="0.186" style="stop-color:#F5D65D"/>
-				<stop  offset="0.3825" style="stop-color:#F4C35B"/>
-				<stop  offset="0.5198" style="stop-color:#F4BC5A"/>
-				<stop  offset="0.7809" style="stop-color:#F5DA5D"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st10;" d="M4.533,40.253l-0.651,0.039l-0.574,0.039l-0.536,0.036l-0.498,0.037l-0.46,0.04l-0.497,0.036l-0.498,0.077l-0.577,0.114l0.117,0.729l0.343,0.345l0.537,0.001l0.689-0.19l0.689-0.347l0.729-0.382l0.651-0.345l0.536-0.229z"/>
-		<path style="&st8;" d="M4.419,39.874l-0.653,0.112l-0.573,0.076l-0.497,0.114l-0.5,0.075l-0.458,0.114l-0.459,0.115l-0.537,0.116L0.167,40.75l-0.038-0.844l0.345-0.536l0.537-0.192l0.727-0.034l0.766,0.151l0.766,0.193l0.651,0.23l0.499,0.154z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd18" x1="-3716.793" y1="-3522.1724" x2="-3726.813" y2="-3555.1924" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#4F0C81"/>
-				<stop  offset="0.0701" style="stop-color:#690C73"/>
-				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
-				<stop  offset="0.3368" style="stop-color:#C20748"/>
-				<stop  offset="0.4512" style="stop-color:#E0053A"/>
-				<stop  offset="0.5481" style="stop-color:#F20032"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st11;" d="M44.258,24.317l1.684-0.651l1.611-0.419l1.491-0.113l1.417,0.076l1.379,0.309l1.262,0.459l1.227,0.652l1.187,0.729l1.149,0.845l1.11,0.919l1.106,0.959l1.074,0.996l1.071,0.957l1.07,0.921l1.073,0.882l1.109,0.807l-0.384,0.073
-			l-0.421,0.038l-0.421,0.039l-0.383,0.076l-0.423,0.039l-0.421,0.038l-0.459,0.036l-0.421,0.039l-0.422,0.035l-0.461,0.041l-0.458,0.076l-0.422,0.037l-0.461,0.04l-0.457,0.074l-0.498,0.037l-0.461,0.077l-0.382-0.534l-0.495-0.653l-0.576-0.766l-0.688-0.768
-			l-0.727-0.843l-0.805-0.843l-0.879-0.844l-0.881-0.806l-0.959-0.766l-0.953-0.688l-0.957-0.615l-0.997-0.497l-0.957-0.385l-0.958-0.23l-0.956-0.039l-0.88,0.152z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd19" x1="-3818.3081" y1="-3506.1616" x2="-3836.2568" y2="-3532.4282" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#4F0C81"/>
-				<stop  offset="0.0701" style="stop-color:#690C73"/>
-				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
-				<stop  offset="0.3368" style="stop-color:#C20748"/>
-				<stop  offset="0.4512" style="stop-color:#E0053A"/>
-				<stop  offset="0.5481" style="stop-color:#F20032"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st12;" d="M41.383,24.964l0.96-0.345l0.92-0.227l0.878-0.152l0.923-0.077l0.878,0.077l0.919,0.192l0.88,0.268l0.919,0.423l0.956,0.537l0.959,0.691l0.995,0.803l1.033,0.96l1.108,1.11l1.11,1.266l1.186,1.418l1.264,1.57l-0.69,0.039l-0.611,0.072
-			l-0.576,0.039l-0.534,0.076l-0.537,0.076l-0.573,0.076l-0.653,0.113l-0.765,0.117l-0.689-0.574l-0.65-0.613l-0.689-0.653l-0.612-0.653l-0.649-0.649l-0.649-0.65l-0.613-0.653l-0.651-0.651l-0.651-0.612l-0.688-0.574l-0.651-0.576l-0.688-0.574l-0.727-0.498
-			l-0.767-0.423l-0.766-0.421l-0.805-0.347z"/>
-		<path style="&st11;" d="M38.167,25.805l0.727-0.611l0.808-0.307l0.88-0.074l0.879,0.191l0.958,0.383l0.956,0.538l0.995,0.688l0.996,0.805l0.996,0.881l0.993,0.921l0.956,0.921l0.92,0.958l0.841,0.88l0.84,0.805l0.729,0.691l0.69,0.574l-4.176,0.496l-0.536-0.613
-			l-0.536-0.615l-0.498-0.613l-0.533-0.611l-0.537-0.613l-0.534-0.651l-0.573-0.614l-0.535-0.576l-0.613-0.574l-0.612-0.573l-0.652-0.538l-0.688-0.498l-0.728-0.497l-0.766-0.423l-0.804-0.383l-0.843-0.346z"/>
-		<path style="&st12;" d="M31.886,28.481l1.148-1.111l1.111-0.802l1.073-0.534l1.072-0.307l1.072-0.037l1.034,0.154l1.033,0.385l0.996,0.498l0.994,0.689l0.955,0.804l0.996,0.921l0.919,0.996l0.957,1.035l0.917,1.111l0.918,1.111l0.919,1.11l-0.729,0.04
-			l-0.611,0.035l-0.498,0.039l-0.461,0.076l-0.458,0.076l-0.499,0.075l-0.571,0.078l-0.692,0.112l-0.803-1.034l-0.766-0.919l-0.803-0.844l-0.766-0.728l-0.802-0.612l-0.766-0.538l-0.728-0.461l-0.768-0.382l-0.728-0.309l-0.688-0.229l-0.728-0.192l-0.689-0.152
-			l-0.648-0.08l-0.653-0.074h-0.649l-0.612-0.002z"/>
-		<path style="&st11;" d="M27.402,29.512l1.267-0.461l1.187-0.344l1.187-0.189l1.109-0.077l1.111,0.001l1.071,0.155l1.035,0.231l0.996,0.347l0.995,0.419l0.919,0.537l0.957,0.613l0.878,0.689l0.882,0.768l0.84,0.842l0.806,0.922l0.803,0.996l-0.803,0.115
-			l-0.919,0.111l-0.921,0.115l-0.921,0.115l-0.842,0.113L38.39,35.61l-0.499,0.037l-0.191-0.002l-0.075-0.075l-0.192-0.153l-0.269-0.268l-0.343-0.346l-0.423-0.42l-0.495-0.424l-0.575-0.496l-0.65-0.538l-0.728-0.499l-0.765-0.536l-0.844-0.5l-0.918-0.495
-			l-0.92-0.424l-0.993-0.383l-1.034-0.348l-1.073-0.229z"/>
-		<path style="&st12;" d="M21.735,30.196l1.034-0.418l1.035-0.307l1.108-0.115l1.073,0.001l1.111,0.118l1.108,0.229l1.072,0.346l1.111,0.422l1.033,0.498l1.033,0.537l0.995,0.651l0.994,0.651l0.882,0.693l0.881,0.727l0.802,0.728l0.726,0.729l-0.495,0.037
-			l-0.612,0.076l-0.689,0.075l-0.728,0.077l-0.729,0.075l-0.652,0.076l-0.573,0.037h-0.422l-0.001-0.077l-0.191-0.191l-0.38-0.268l-0.574-0.385l-0.689-0.42l-0.805-0.5l-0.919-0.537l-0.956-0.533l-0.955-0.54l-0.996-0.538l-0.998-0.496l-0.916-0.457l-0.846-0.387
-			l-0.762-0.307l-0.616-0.193l-0.495-0.115z"/>
-		<path style="&st11;" d="M16.373,31.303l0.537-0.842l0.805-0.498l0.996-0.188h1.147l1.264,0.268l1.379,0.422l1.455,0.576l1.415,0.651l1.455,0.729l1.339,0.766l1.265,0.73l1.149,0.727l0.954,0.615l0.729,0.459l0.496,0.342l0.23,0.117l-0.537,0.116l-0.61,0.077
-			l-0.653,0.073l-0.689,0.038l-0.727,0.078l-0.729,0.074l-0.688,0.115l-0.689,0.115l-0.729-0.346l-0.688-0.348l-0.729-0.381l-0.688-0.385l-0.69-0.346l-0.688-0.383l-0.728-0.384l-0.688-0.382l-0.689-0.35l-0.688-0.382l-0.729-0.343l-0.688-0.307l-0.689-0.348
-			l-0.727-0.305l-0.727-0.311l-0.729-0.266z"/>
-		<path style="&st8;" d="M9.518,33.135l0.844-0.611l0.956-0.346l0.996-0.149l1.07,0.001l1.113,0.189l1.148,0.348l1.11,0.421l1.108,0.5l1.035,0.574l1.032,0.575l0.919,0.614l0.804,0.536l0.727,0.499l0.574,0.46l0.42,0.306l0.229,0.193l-0.612,0.074l-0.574,0.077
-			l-0.495,0.076l-0.501,0.037l-0.536,0.037l-0.496,0.076L19.813,37.7l-0.61,0.074l-0.537-0.342l-0.536-0.348l-0.574-0.42l-0.574-0.383L16.37,35.86l-0.613-0.421l-0.612-0.423l-0.612-0.383l-0.614-0.384l-0.647-0.308l-0.652-0.305l-0.613-0.232l-0.648-0.189
-			l-0.615-0.117H10.13l-0.612,0.037z"/>
-		<path style="&st9;" d="M12.044,32.029l0.653-0.423l0.688-0.305l0.652-0.154l0.688-0.074l0.689,0.037l0.728,0.152l0.807,0.27l0.838,0.308l0.921,0.423l0.959,0.459l1.07,0.576l1.147,0.614l1.265,0.65l1.378,0.692l1.49,0.765l1.648,0.768l-0.613,0.04L26.363,36.9
-			l-0.688,0.078l-0.691,0.112l-0.613,0.078l-0.457,0.078l-0.346,0.035l-0.153-0.035l-0.075-0.079l-0.27-0.19l-0.345-0.309l-0.459-0.344l-0.573-0.422l-0.689-0.459l-0.729-0.5l-0.803-0.499l-0.879-0.498l-0.882-0.497l-0.955-0.425l-0.957-0.384l-0.959-0.304
-			l-0.957-0.196l-0.92-0.111l-0.919-0.001z"/>
-		<path style="&st9;" d="M6.451,35.086l0.691-0.766l0.726-0.574l0.729-0.382l0.766-0.229l0.767-0.037l0.804,0.076l0.844,0.192l0.804,0.271l0.84,0.422l0.805,0.42l0.842,0.536l0.843,0.539l0.843,0.536l0.803,0.574l0.805,0.578l0.803,0.496l-0.459,0.076l-0.498,0.038
-			l-0.574,0.116l-0.613,0.072l-0.649,0.079l-0.69,0.073l-0.65,0.078l-0.653,0.075l-0.229-0.497l-0.269-0.422l-0.305-0.422l-0.384-0.383l-0.383-0.344l-0.419-0.27l-0.5-0.271l-0.497-0.229l-0.536-0.191l-0.572-0.154L9.706,35.05l-0.612-0.079l-0.65-0.037
-			l-0.652,0.001l-0.65,0.073l-0.689,0.078z"/>
-		<path style="&st9;" d="M1.738,37.609l0.193-0.306l0.306-0.268l0.422-0.228l0.459-0.154l0.536-0.114l0.612-0.036l0.613,0.001l0.689,0.037l0.65,0.114l0.689,0.155l0.652,0.229l0.61,0.269l0.576,0.308l0.534,0.383l0.422,0.422l0.381,0.461l-0.343,0.076L9.32,39.034
-			L8.9,39.11l-0.423,0.074l-0.382,0.037l-0.308,0.041H7.56H7.482l-0.153-0.078l-0.381-0.23l-0.652-0.307L5.53,38.304l-0.881-0.309l-0.995-0.269l-0.957-0.154l-0.959,0.036z"/>
-		<path style="&st8;" d="M0.818,39.178l-0.036-0.609l0.152-0.461l0.271-0.307l0.42-0.191l0.497-0.078l0.575,0.041l0.613,0.076l0.688,0.154l0.65,0.229l0.65,0.231l0.613,0.23l0.535,0.23l0.46,0.23l0.383,0.154l0.191,0.152l0.078,0.036l-3.065,0.533l-0.27-0.112
-			l-0.42-0.117l-0.459-0.153L2.81,39.294l-0.536-0.115l-0.535-0.074L1.24,39.104l-0.422,0.074z"/>
-		<path style="&st8;" d="M3.349,36.616l0.612-0.498l0.651-0.383l0.729-0.342l0.805-0.231l0.806-0.153l0.803-0.11l0.844,0.001l0.841,0.072l0.804,0.156l0.804,0.27l0.729,0.307l0.689,0.383l0.649,0.461l0.536,0.535l0.421,0.613l0.344,0.689l-0.499,0.039l-0.457,0.077
-			l-0.5,0.036l-0.536,0.076l-0.535,0.078l-0.574,0.037L10.7,38.844l-0.65,0.072l-0.231-0.341l-0.268-0.308L9.244,38l-0.343-0.27L8.519,37.5l-0.421-0.23l-0.423-0.192l-0.459-0.151l-0.459-0.154L6.26,36.657L5.8,36.581l-0.499-0.04l-0.497-0.037l-0.496-0.001
-			l-0.499,0.038l-0.46,0.075z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd31" x1="-3644.5117" y1="-3531.5527" x2="-3636.6318" y2="-3508.3506" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#681083"/>
-				<stop  offset="0.0006" style="stop-color:#681083"/>
-				<stop  offset="0.072" style="stop-color:#8D0F6D"/>
-				<stop  offset="0.1459" style="stop-color:#AD0D5A"/>
-				<stop  offset="0.2229" style="stop-color:#C80A4A"/>
-				<stop  offset="0.3041" style="stop-color:#DE083E"/>
-				<stop  offset="0.3913" style="stop-color:#ED0335"/>
-				<stop  offset="0.4884" style="stop-color:#F60030"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st13;" d="M139.689,18.299l0.077,0.117l0.192,0.307l0.267,0.497l0.344,0.613l0.386,0.727l0.382,0.806l0.346,0.92l0.303,0.918l0.228,0.959l0.079,0.92L142.251,26l-0.192,0.842l-0.422,0.768l-0.651,0.687l-0.919,0.535l-1.189,0.384l0.193-0.578
-			l0.117-0.611l0.113-0.611l0.076-0.689l0.039-0.689V25.31l-0.037-0.69l-0.037-0.729l-0.076-0.729l-0.074-0.725l-0.116-0.69l-0.152-0.651l-0.113-0.651l-0.154-0.575l-0.188-0.574l-0.155-0.498l0.191-0.075l0.154-0.04l0.19-0.076l0.156-0.036l0.153-0.077l0.15-0.039
-			l0.191-0.078l0.19-0.076z"/>
-		<path style="&st13;" d="M138.389,18.835l0.534,2.108l0.382,1.914l0.189,1.646l0.037,1.455l-0.077,1.264l-0.23,1.072l-0.307,0.92l-0.347,0.764l-0.46,0.613l-0.497,0.496l-0.498,0.347l-0.495,0.267l-0.54,0.191l-0.459,0.076l-0.42,0.037h-0.384l0.229-0.613
-			l0.229-0.612l0.192-0.688l0.154-0.689l0.152-0.767l0.118-0.764l0.116-0.767l0.075-0.803l0.041-0.806l0.001-0.843l-0.041-0.804l-0.073-0.843l-0.114-0.804l-0.155-0.843l-0.188-0.766l-0.229-0.805l0.457-0.154l0.463-0.152l0.422-0.152l0.418-0.115l0.348-0.113
-			l0.381-0.115l0.306-0.076l0.27-0.077z"/>
-		<path style="&st13;" d="M135.285,19.792l0.231,0.765l0.227,0.959l0.155,1.073l0.072,1.186l0.041,1.303l-0.002,1.301l-0.116,1.301l-0.192,1.267l-0.271,1.187l-0.345,1.109l-0.499,0.957l-0.572,0.766l-0.731,0.574l-0.84,0.304l-0.96,0.04l-1.108-0.307l0.422-0.691
-			l0.421-0.727l0.347-0.766l0.307-0.727l0.229-0.803l0.231-0.768l0.152-0.805l0.154-0.805l0.077-0.804l0.038-0.841v-0.805l-0.073-0.842l-0.076-0.842l-0.152-0.806l-0.152-0.845l-0.229-0.803l0.383-0.152l0.458-0.152l0.461-0.153l0.46-0.153l0.46-0.151l0.382-0.153
-			l0.346-0.117l0.267-0.074z"/>
-		<path style="&st13;" d="M125.546,35.674l1.036,0.08l0.997-0.154l0.879-0.381l0.805-0.535l0.766-0.73l0.652-0.879l0.536-0.994l0.499-1.109l0.384-1.188l0.309-1.266l0.192-1.3l0.078-1.302l0.001-1.301l-0.114-1.303l-0.229-1.265l-0.343-1.188l-0.422,0.152
-			l-0.425,0.154l-0.456,0.114l-0.463,0.152l-0.458,0.154l-0.497,0.153l-0.46,0.152l-0.497,0.152v0.804l-0.001,0.879l-0.04,0.999l-0.039,1.033l-0.039,1.033l-0.038,1.072l-0.116,1.11l-0.113,1.032l-0.156,1.035L127.62,32l-0.233,0.919l-0.268,0.806l-0.308,0.687
-			l-0.384,0.577l-0.421,0.419l-0.461,0.267z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd35" x1="-3738.23" y1="-3453.355" x2="-3733.0664" y2="-3424.071" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2110.5286 1859.3658)">
-				<stop  offset="0" style="stop-color:#681083"/>
-				<stop  offset="0.0752" style="stop-color:#6F1182"/>
-				<stop  offset="0.1935" style="stop-color:#831380"/>
-				<stop  offset="0.3399" style="stop-color:#A3157B"/>
-				<stop  offset="0.5088" style="stop-color:#D11975"/>
-				<stop  offset="0.6158" style="stop-color:#F21B71"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st14;" d="M128.277,22.083l-0.384,0.153l-0.383,0.114l-0.343,0.115l-0.386,0.077l-0.382,0.114l-0.347,0.113l-0.384,0.116l-0.38,0.153l-0.077,0.766l-0.041,0.84l-0.039,0.92l-0.038,0.958l-0.001,0.958l-0.001,1.031l-0.04,1.037l-0.039,0.994
-			l-0.076,0.997l-0.115,0.994l-0.193,0.919l-0.191,0.844l-0.305,0.802l-0.346,0.727l-0.422,0.616l-0.536,0.496l1.108-0.268l0.919-0.383l0.767-0.533l0.651-0.614l0.537-0.729l0.423-0.839l0.306-0.919l0.232-0.959l0.156-1.072l0.112-1.11l0.039-1.15l0.042-1.225
-			l0.037-1.225l0.039-1.264l0.001-1.264l0.078-1.303z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd36" x1="-3716.3066" y1="-3509.6641" x2="-3713.6802" y2="-3491.7153" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#681083"/>
-				<stop  offset="0.0006" style="stop-color:#681083"/>
-				<stop  offset="0.072" style="stop-color:#8D0F6D"/>
-				<stop  offset="0.1459" style="stop-color:#AD0D5A"/>
-				<stop  offset="0.2229" style="stop-color:#C80A4A"/>
-				<stop  offset="0.3041" style="stop-color:#DE083E"/>
-				<stop  offset="0.3913" style="stop-color:#ED0335"/>
-				<stop  offset="0.4884" style="stop-color:#F60030"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st15;" d="M118.116,38.426l1.531-0.074l1.304-0.305l1.07-0.497l0.882-0.651l0.689-0.842l0.502-0.958l0.419-1.071l0.27-1.188l0.154-1.226l0.114-1.261l0.041-1.305l0.001-1.262l0.001-1.305l0.001-1.223l0.076-1.15l0.078-1.071l-0.421,0.114
-			l-0.383,0.113l-0.343,0.117l-0.387,0.113l-0.382,0.113l-0.343,0.115l-0.384,0.077l-0.423,0.114l0.039,0.113l0.075,0.269l0.078,0.423l0.114,0.537l0.074,0.688l0.078,0.768l0.039,0.881l-0.04,0.996l-0.114,1.035l-0.195,1.145l-0.347,1.189l-0.42,1.225l-0.614,1.265
-			l-0.766,1.339l-0.921,1.3l-1.15,1.339z"/>
-		<path style="&st15;" d="M112.905,40.07l1.035,0.191l1.035-0.073l0.995-0.346l0.996-0.537l0.956-0.725l0.92-0.881l0.844-1.07l0.769-1.188l0.649-1.265l0.576-1.378l0.462-1.456l0.309-1.489l0.192-1.496l0.041-1.531l-0.152-1.454l-0.308-1.456l-3.638,1.146
-			l0.037,0.613l0.037,0.729l-0.038,0.801l-0.08,0.92l-0.112,0.958l-0.192,1.034l-0.192,1.072l-0.308,1.109l-0.347,1.109l-0.421,1.073l-0.461,1.071l-0.575,1.035l-0.612,0.995l-0.729,0.919l-0.805,0.841l-0.883,0.727z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd38" x1="-3716.5049" y1="-3512.9565" x2="-3712.3662" y2="-3473.3286" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#681083"/>
-				<stop  offset="0.0006" style="stop-color:#681083"/>
-				<stop  offset="0.072" style="stop-color:#8D0F6D"/>
-				<stop  offset="0.1459" style="stop-color:#AD0D5A"/>
-				<stop  offset="0.2229" style="stop-color:#C80A4A"/>
-				<stop  offset="0.3041" style="stop-color:#DE083E"/>
-				<stop  offset="0.3913" style="stop-color:#ED0335"/>
-				<stop  offset="0.4884" style="stop-color:#F60030"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st16;" d="M118.662,24.987l-0.573,0.189l-0.729,0.191l-0.807,0.268l-0.84,0.229l-0.806,0.27l-0.804,0.227l-0.689,0.191l-0.537,0.115l-0.076,0.881l-0.042,0.955l-0.075,0.959l-0.038,0.995l-0.117,0.995l-0.077,1.037l-0.115,0.994l-0.153,0.996
-			l-0.19,0.956l-0.232,0.921l-0.309,0.916l-0.344,0.842l-0.422,0.807l-0.498,0.688l-0.536,0.65l-0.65,0.576l0.766,0.114l0.803-0.038l0.804-0.19l0.805-0.343l0.804-0.5l0.807-0.612l0.768-0.763l0.766-0.958l0.689-1.034l0.611-1.227l0.578-1.339l0.495-1.528
-			l0.388-1.65l0.307-1.758l0.194-1.955l0.077-2.066z"/>
-		<path style="&st15;" d="M103.98,41.593l1.725,0.081l1.455-0.154l1.265-0.418l0.998-0.653l0.841-0.802l0.691-0.958l0.497-1.072l0.386-1.224l0.308-1.225l0.19-1.343l0.116-1.3l0.117-1.302l0.038-1.303l0.078-1.188l0.075-1.11l0.117-0.995l-0.535,0.114l-0.463,0.115
-			l-0.419,0.153l-0.418,0.112l-0.463,0.117l-0.422,0.111l-0.496,0.154l-0.576,0.151l-0.116,1.038l-0.112,0.992l-0.116,0.996l-0.156,0.955l-0.116,0.961l-0.153,0.918l-0.189,0.879l-0.194,0.881l-0.269,0.844l-0.308,0.841l-0.382,0.805l-0.422,0.806l-0.536,0.801
-			l-0.576,0.767l-0.689,0.728l-0.77,0.726z"/>
-		<path style="&st16;" d="M99.349,42.433l1.532,0.078l1.34-0.192l1.188-0.418l1.036-0.65l0.88-0.805l0.766-0.957l0.615-1.107l0.537-1.188l0.458-1.227l0.347-1.3l0.269-1.266l0.194-1.299l0.19-1.226l0.116-1.15l0.116-1.073l0.079-0.919l-0.539,0.117l-0.459,0.112
-			l-0.42,0.115l-0.423,0.077l-0.38,0.113l-0.425,0.074l-0.495,0.152l-0.576,0.115l-0.192,1.496l-0.229,1.417l-0.27,1.301l-0.269,1.226l-0.31,1.109l-0.345,1.071l-0.383,0.919l-0.384,0.883l-0.383,0.803l-0.425,0.727l-0.459,0.613l-0.422,0.573l-0.459,0.536
-			l-0.461,0.42l-0.498,0.383l-0.459,0.345z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd41" x1="-3711.1768" y1="-3514.0366" x2="-3709.7402" y2="-3493.4663" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#681083"/>
-				<stop  offset="0.0006" style="stop-color:#681083"/>
-				<stop  offset="0.072" style="stop-color:#8D0F6D"/>
-				<stop  offset="0.1459" style="stop-color:#AD0D5A"/>
-				<stop  offset="0.2229" style="stop-color:#C80A4A"/>
-				<stop  offset="0.3041" style="stop-color:#DE083E"/>
-				<stop  offset="0.3913" style="stop-color:#ED0335"/>
-				<stop  offset="0.4884" style="stop-color:#F60030"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st17;" d="M94.98,43.004l1.457,0.078l1.302-0.189l1.151-0.424l1.071-0.611l0.881-0.802l0.805-0.919l0.69-1.072l0.614-1.146l0.535-1.189l0.422-1.263l0.347-1.264l0.308-1.262l0.271-1.188l0.192-1.149l0.152-1.031l0.155-0.922l-0.459,0.076l-0.46,0.116
-			l-0.462,0.114l-0.459,0.115l-0.462,0.115l-0.458,0.112l-0.46,0.114l-0.497,0.117l-0.038,0.725l-0.116,0.805l-0.153,0.843l-0.269,0.918l-0.27,0.995l-0.382,0.957l-0.385,1.033l-0.422,0.998l-0.499,0.996l-0.537,0.957l-0.534,0.879l-0.577,0.84l-0.574,0.806
-			l-0.614,0.69l-0.649,0.572l-0.617,0.459z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd42" x1="-3718.4951" y1="-3510.1016" x2="-3716.7441" y2="-3482.9595" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#681083"/>
-				<stop  offset="0.0006" style="stop-color:#681083"/>
-				<stop  offset="0.072" style="stop-color:#8D0F6D"/>
-				<stop  offset="0.1459" style="stop-color:#AD0D5A"/>
-				<stop  offset="0.2229" style="stop-color:#C80A4A"/>
-				<stop  offset="0.3041" style="stop-color:#DE083E"/>
-				<stop  offset="0.3913" style="stop-color:#ED0335"/>
-				<stop  offset="0.4884" style="stop-color:#F60030"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st18;" d="M90.197,43.881l1.49,0.193l1.38-0.191l1.264-0.496l1.15-0.766l1.073-0.955l0.921-1.148l0.84-1.301l0.77-1.341l0.613-1.415l0.537-1.381l0.46-1.302l0.384-1.262l0.23-1.074l0.192-0.88l0.114-0.65l0.001-0.381l-0.573,0.111l-0.537,0.115
-			l-0.535,0.152l-0.536,0.115l-0.536,0.152l-0.5,0.113l-0.497,0.115l-0.499,0.078l-0.191,0.651l-0.19,0.765l-0.229,0.879l-0.271,0.996l-0.308,1.035l-0.343,1.071l-0.384,1.069l-0.424,1.114l-0.461,1.07l-0.497,0.995l-0.537,0.959l-0.574,0.842l-0.653,0.725
-			l-0.65,0.574l-0.728,0.422l-0.765,0.229z"/>
-		<path style="&st18;" d="M86.712,43.688l1.377,0.307l1.223,0.001l1.113-0.267l1.034-0.535l0.882-0.729l0.805-0.881l0.727-1.068l0.652-1.15l0.539-1.226l0.498-1.261l0.384-1.265l0.385-1.227l0.307-1.147l0.231-1.035l0.23-0.918l0.189-0.727l-0.419,0.076
-			l-0.423,0.038l-0.38,0.075l-0.347,0.076l-0.384,0.076l-0.346,0.078l-0.305,0.074l-0.345,0.041l-0.118,0.879l-0.189,0.919l-0.232,0.917l-0.228,0.883l-0.309,0.918l-0.347,0.881l-0.382,0.844l-0.461,0.842l-0.46,0.842l-0.537,0.804l-0.615,0.765l-0.61,0.688
-			l-0.729,0.69l-0.727,0.611l-0.806,0.574l-0.879,0.535z"/>
-		<path style="&st16;" d="M82.345,44.374l1.147,0.002l1.112-0.115l1.07-0.268l1.037-0.384l0.956-0.533l0.959-0.65l0.842-0.763l0.841-0.842l0.73-0.96l0.69-1.032l0.614-1.15l0.573-1.186l0.461-1.264l0.385-1.34l0.347-1.379l0.23-1.414l-0.498,0.113l-0.499,0.076
-			l-0.536,0.115l-0.496,0.074l-0.497,0.078l-0.459,0.112l-0.5,0.077l-0.459,0.115l-0.231,0.805l-0.191,0.842l-0.231,0.805l-0.194,0.803l-0.23,0.804l-0.228,0.804l-0.307,0.766l-0.346,0.804l-0.42,0.767l-0.463,0.803l-0.576,0.766l-0.688,0.766l-0.768,0.729
-			l-0.918,0.765l-1.073,0.766l-1.188,0.726z"/>
-		<path style="&st16;" d="M76.14,45.095l1.495,0.118l1.454-0.076l1.34-0.229l1.266-0.382l1.187-0.497l1.112-0.649l1.033-0.768l0.918-0.917l0.844-0.955l0.767-1.073l0.693-1.148l0.573-1.222l0.496-1.304l0.425-1.34l0.307-1.377l0.233-1.381l-0.423,0.076l-0.46,0.117
-			l-0.456,0.074l-0.461,0.075l-0.459,0.078l-0.5,0.114l-0.497,0.076l-0.5,0.115l-0.152,0.955l-0.23,0.957l-0.31,0.96l-0.383,0.917l-0.457,0.918l-0.502,0.918l-0.574,0.882l-0.648,0.843l-0.691,0.844l-0.767,0.762l-0.808,0.727l-0.879,0.689l-0.921,0.611
-			l-0.995,0.575l-0.997,0.497l-1.072,0.419z"/>
-		<path style="&st15;" d="M72.732,45.475l1.264-0.075l1.226-0.189l1.228-0.306l1.186-0.458l1.112-0.536l1.109-0.648l1.034-0.729l0.958-0.842l0.881-0.917l0.843-0.993l0.73-1.076l0.65-1.109l0.536-1.184l0.46-1.226l0.348-1.267l0.229-1.299l-0.419,0.074l-0.385,0.037
-			l-0.346,0.039l-0.343,0.039l-0.346,0.037l-0.382,0.077L83.849,33l-0.539,0.075l-0.537,1.112l-0.459,1.031l-0.46,0.997l-0.422,0.919l-0.46,0.881l-0.424,0.805l-0.461,0.764l-0.498,0.727l-0.537,0.729l-0.613,0.649l-0.688,0.69l-0.765,0.611l-0.884,0.65
-			l-0.996,0.611l-1.108,0.612l-1.265,0.61z"/>
-		<path style="&st16;" d="M66.604,45.855l1.877,0.077l1.763-0.073l1.57-0.267l1.455-0.422l1.34-0.572l1.187-0.691l1.113-0.801l0.993-0.92l0.921-0.993l0.844-1.072l0.729-1.109l0.688-1.189l0.652-1.184l0.577-1.187l0.538-1.227l0.496-1.187l-0.343,0.036l-0.461,0.078
-			l-0.573,0.076l-0.575,0.076l-0.613,0.115l-0.537,0.076l-0.456,0.076l-0.347,0.035l-0.46,1.074l-0.499,1.074l-0.577,0.994l-0.573,0.955l-0.652,0.881l-0.688,0.879l-0.729,0.804l-0.804,0.807l-0.804,0.727l-0.885,0.688l-0.917,0.688l-0.96,0.613l-0.995,0.572
-			l-1.072,0.535l-1.072,0.496l-1.149,0.46z"/>
-		<path style="&st15;" d="M62.966,46.387L64,46.35l1.071-0.152l1.15-0.269l1.186-0.419l1.188-0.495l1.189-0.613l1.188-0.726l1.187-0.803l1.149-0.918l1.111-0.957l1.035-1.07l0.999-1.15l0.879-1.188l0.804-1.262l0.691-1.34l0.576-1.38l-0.575,0.079l-0.575,0.074
-			l-0.611,0.037l-0.612,0.077l-0.536,0.037l-0.461,0.077l-0.382,0.076l-0.192,0.115l-0.69,0.535l-0.689,0.575l-0.729,0.688l-0.729,0.688l-0.727,0.766l-0.767,0.802l-0.767,0.844l-0.768,0.845l-0.766,0.879l-0.804,0.842l-0.805,0.842l-0.845,0.84l-0.842,0.843
-			l-0.845,0.763L63.848,45.7l-0.882,0.688z"/>
-		<path style="&st16;" d="M57.375,46.383l0.997,0.654l1.032,0.268l1.034,0.001l1.073-0.268l1.071-0.536l1.073-0.729l1.111-0.916l1.11-1.033l1.112-1.188l1.148-1.225l1.189-1.301l1.188-1.299l1.188-1.264l1.226-1.264l1.228-1.148l1.226-1.031h-0.425l-0.494,0.074
-			l-0.576,0.038l-0.573,0.116L72.7,34.411l-0.612,0.113l-0.572,0.115l-0.5,0.075l-0.956,0.88l-0.957,0.88l-0.923,0.919l-0.919,0.919l-0.881,0.916l-0.883,0.921l-0.88,0.92l-0.845,0.84l-0.844,0.84l-0.842,0.768l-0.805,0.688l-0.804,0.613l-0.805,0.535l-0.767,0.459
-			l-0.766,0.343l-0.767,0.229z"/>
-		<path style="&st15;" d="M53.046,46.879l1.572,0.001l1.492-0.151l1.342-0.385l1.304-0.494l1.187-0.614l1.109-0.765l1.075-0.84l0.995-0.92l0.997-0.994l0.956-1.033l0.921-1.035l0.959-1.07l0.959-1.07l0.994-1.034l1.035-0.957l1.072-0.918l-0.382,0.04l-0.458,0.037
-			l-0.577,0.074l-0.572,0.041l-0.577,0.073l-0.459,0.038l-0.382,0.041l-0.229-0.001l-0.651,0.151L66.076,35.4l-0.649,0.423l-0.692,0.573l-0.689,0.687l-0.729,0.805l-0.766,0.844l-0.769,0.915l-0.88,0.958l-0.883,0.955l-0.997,0.996l-1.032,0.959l-1.111,0.955
-			l-1.188,0.88l-1.264,0.802l-1.381,0.729z"/>
-		<path style="&st11;" d="M138.274,15.35v-0.153l0.04-0.42l0.038-0.649l0.04-0.807l0.039-0.957l-0.037-1.033l-0.038-1.072l-0.111-1.111l-0.229-1.033l-0.309-0.996l-0.38-0.882l-0.572-0.728l-0.654-0.537l-0.843-0.307l-1.034-0.039l-1.186,0.306l0.385,0.384
-			l0.343,0.459l0.345,0.574l0.306,0.613l0.305,0.689l0.27,0.689l0.264,0.767l0.271,0.804l0.228,0.767l0.19,0.806l0.194,0.803l0.188,0.766l0.155,0.768l0.152,0.727l0.114,0.65l0.113,0.613l0.19-0.037l0.154-0.037l0.189-0.078l0.155-0.037l0.151-0.079l0.155-0.075
-			l0.192-0.037l0.226-0.078z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd52" x1="-3690.9155" y1="-3526.2993" x2="-3702.7354" y2="-3558.2568" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#4F0C81"/>
-				<stop  offset="0.0701" style="stop-color:#690C73"/>
-				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
-				<stop  offset="0.3368" style="stop-color:#C20748"/>
-				<stop  offset="0.4512" style="stop-color:#E0053A"/>
-				<stop  offset="0.5481" style="stop-color:#F20032"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st19;" d="M136.86,15.925l-0.497-2.489l-0.535-2.108l-0.535-1.801l-0.532-1.492l-0.539-1.188l-0.534-0.958l-0.533-0.689l-0.499-0.497l-0.536-0.347l-0.458-0.153l-0.502-0.039l-0.42,0.078l-0.419,0.152l-0.382,0.191l-0.348,0.229l-0.306,0.23
-			l0.536,0.497l0.533,0.573l0.462,0.538l0.494,0.611l0.424,0.615l0.422,0.648l0.382,0.652l0.344,0.691l0.344,0.727l0.306,0.766l0.307,0.768l0.268,0.805l0.227,0.842l0.23,0.842l0.227,0.882l0.194,0.919l0.457-0.077l0.345-0.036l0.232-0.077l0.153-0.077l0.151-0.037
-			l0.156-0.076L136.632,16l0.229-0.075z"/>
-		<path style="&st11;" d="M134.944,16.651l-0.113-0.918l-0.194-1.035l-0.305-1.15l-0.379-1.226l-0.5-1.264l-0.571-1.227l-0.611-1.187l-0.688-1.111l-0.729-0.996l-0.765-0.843l-0.803-0.65l-0.842-0.425l-0.881-0.152l-0.882,0.152l-0.842,0.499l-0.882,0.878
-			l0.688,0.498l0.65,0.576l0.613,0.574l0.574,0.576l0.574,0.611l0.496,0.689l0.459,0.691l0.42,0.688l0.423,0.769l0.343,0.767l0.345,0.805l0.267,0.842l0.267,0.879l0.193,0.92l0.189,0.959l0.155,0.994l0.416-0.114l0.461-0.152l0.499-0.153l0.498-0.191l0.461-0.189
-			l0.421-0.154l0.344-0.151l0.23-0.077z"/>
-		<path style="&st19;" d="M120.017,6.607l0.919-0.612l0.92-0.344l0.957-0.115l0.919,0.115l0.958,0.307l0.919,0.5l0.882,0.689l0.843,0.805l0.762,0.919l0.766,1.073l0.65,1.188l0.572,1.226l0.496,1.305l0.384,1.376l0.306,1.38l0.151,1.416l-0.46,0.115l-0.459,0.116
-			l-0.46,0.15l-0.46,0.154l-0.497,0.191l-0.499,0.113l-0.457,0.154l-0.498,0.075l-0.346-0.88l-0.305-0.959l-0.383-0.957l-0.348-0.957l-0.379-0.996l-0.419-0.998l-0.423-0.956l-0.421-0.918l-0.456-0.884l-0.499-0.805l-0.533-0.766l-0.539-0.651l-0.609-0.575
-			l-0.615-0.459l-0.648-0.346l-0.69-0.19z"/>
-		<path style="&st11;" d="M115.804,7.75l1.455-0.648l1.302-0.344l1.149-0.038l1.034,0.193l0.919,0.421l0.806,0.65l0.724,0.807l0.65,0.957l0.575,1.072l0.495,1.188l0.5,1.229l0.457,1.225l0.457,1.264l0.421,1.264l0.459,1.188l0.497,1.111l-0.421,0.037l-0.384,0.115
-			l-0.383,0.113l-0.385,0.152l-0.381,0.118l-0.384,0.151l-0.421,0.114l-0.422,0.074l-0.038-0.151l-0.038-0.383l-0.114-0.498l-0.114-0.689l-0.189-0.803l-0.27-0.92l-0.306-0.996l-0.42-1.034l-0.494-1.034l-0.574-1.035l-0.728-1.035l-0.803-0.958l-0.96-0.918
-			l-1.07-0.767l-1.228-0.691l-1.375-0.5z"/>
-		<path style="&st19;" d="M110.366,8.552l0.882-0.651l0.997-0.42l1.069-0.153l1.072,0.04l1.149,0.229l1.148,0.461l1.108,0.615l1.111,0.768l1.07,0.956l0.997,1.075l0.878,1.225l0.805,1.342l0.687,1.416l0.537,1.533l0.342,1.57l0.19,1.687l-3.945,1.029l-0.228-0.649
-			l-0.307-0.77l-0.306-0.803l-0.382-0.881l-0.461-0.92l-0.457-0.956l-0.537-0.961l-0.573-0.956l-0.652-0.957l-0.725-0.92l-0.766-0.842l-0.803-0.808l-0.878-0.728l-0.959-0.613l-0.996-0.537l-1.07-0.421z"/>
-		<path style="&st11;" d="M120.502,21.387l-0.572,0.115l-0.727,0.152l-0.729,0.23l-0.808,0.229l-0.764,0.267l-0.729,0.191l-0.649,0.189l-0.536,0.152l-0.382-0.957l-0.421-0.995l-0.422-0.996l-0.42-1.036l-0.421-1.032l-0.458-0.997l-0.498-0.995l-0.497-0.997
-			l-0.533-0.918l-0.573-0.845l-0.614-0.804l-0.651-0.727l-0.65-0.652l-0.728-0.537l-0.804-0.423l-0.804-0.306l0.692-0.459l0.764-0.344l0.806-0.23l0.88-0.075l0.918,0.076l0.959,0.231l0.957,0.383l0.992,0.576l0.999,0.728l0.993,0.92l0.995,1.149l0.954,1.304
-			l0.919,1.532l0.917,1.723l0.843,1.992l0.802,2.184z"/>
-		<path style="&st11;" d="M101.288,11.34l1.571-0.841l1.415-0.498l1.304-0.114l1.187,0.193l1.032,0.458l0.996,0.691l0.841,0.883l0.805,1.073l0.688,1.188l0.649,1.265l0.573,1.341l0.534,1.34l0.536,1.302l0.498,1.265l0.458,1.148l0.456,1.035l-0.534,0.076
-			l-0.459,0.112l-0.422,0.079l-0.422,0.114l-0.421,0.114l-0.459,0.115l-0.498,0.076l-0.572,0.112l-0.5-1.033l-0.458-1.036l-0.46-0.994l-0.458-0.958l-0.459-0.958l-0.495-0.88l-0.5-0.881l-0.495-0.806l-0.575-0.807l-0.61-0.727l-0.612-0.688l-0.688-0.652
-			l-0.769-0.615l-0.801-0.536l-0.92-0.498l-0.956-0.46z"/>
-		<path style="&st19;" d="M96.537,12.715l1.419-0.765l1.339-0.383l1.265-0.075l1.225,0.191l1.111,0.461l1.069,0.689l0.996,0.844l0.921,0.998l0.841,1.149l0.802,1.187l0.726,1.227l0.652,1.264l0.611,1.266l0.537,1.148l0.455,1.111l0.423,0.957l-0.574,0.113
-			l-0.5,0.115l-0.46,0.113l-0.421,0.076l-0.458,0.115l-0.461,0.115l-0.536,0.076l-0.613,0.115l-0.688-1.533l-0.688-1.417l-0.646-1.302l-0.651-1.188l-0.614-1.071l-0.573-0.961l-0.61-0.84l-0.574-0.807l-0.612-0.651l-0.613-0.575l-0.611-0.498l-0.65-0.421
-			l-0.653-0.308l-0.685-0.269l-0.731-0.155l-0.765-0.113z"/>
-		<path style="&st11;" d="M92.937,13.747l1.378-0.65l1.307-0.308l1.222,0.001l1.19,0.233l1.07,0.458l1.033,0.654l0.956,0.844l0.92,0.957l0.802,1.072l0.766,1.148l0.726,1.188l0.613,1.188l0.609,1.189l0.5,1.15l0.456,1.033l0.421,0.959l-0.459,0.113l-0.42,0.113
-			l-0.424,0.076l-0.383,0.116l-0.421,0.077l-0.42,0.075l-0.462,0.113l-0.496,0.077l-0.231-0.765l-0.342-0.845l-0.42-0.842l-0.497-0.919l-0.535-0.919l-0.651-0.921l-0.649-0.92l-0.728-0.92l-0.765-0.841l-0.805-0.846l-0.803-0.766l-0.804-0.652l-0.843-0.613
-			l-0.805-0.498l-0.802-0.383l-0.806-0.23z"/>
-		<path style="&st19;" d="M88.608,14.852l1.417-0.762l1.38-0.345l1.379,0.039l1.301,0.385l1.264,0.612l1.226,0.879l1.149,1.038l1.069,1.147l0.995,1.229l0.881,1.264l0.8,1.227l0.65,1.187l0.536,1.036l0.422,0.879l0.23,0.652l0.113,0.383l-0.574,0.115l-0.498,0.113
-			l-0.498,0.115l-0.5,0.115l-0.496,0.115l-0.459,0.074l-0.499,0.077l-0.497,0.076l-0.344-0.651l-0.384-0.804l-0.458-0.882l-0.537-0.921l-0.571-1.033l-0.614-1.034l-0.646-0.997l-0.691-1.034l-0.727-0.959l-0.767-0.881l-0.802-0.804l-0.803-0.652l-0.844-0.537
-			l-0.844-0.345l-0.878-0.152l-0.882,0.035z"/>
-		<path style="&st11;" d="M85.468,16.077l1.266-0.842l1.224-0.459l1.149-0.113l1.149,0.19l1.071,0.461l1.033,0.692l0.958,0.842l0.915,1.035l0.844,1.113l0.805,1.184l0.727,1.229l0.687,1.225l0.574,1.15l0.535,1.073l0.421,0.918l0.383,0.766l-0.46,0.077l-0.382,0.114
-			l-0.344,0.115l-0.308,0.113l-0.347,0.114l-0.305,0.115l-0.308,0.078l-0.343,0.073l-0.344-0.955l-0.421-0.958l-0.422-0.921l-0.46-0.918l-0.537-0.919l-0.531-0.844l-0.613-0.844l-0.65-0.805l-0.689-0.767l-0.764-0.688l-0.765-0.614l-0.844-0.574l-0.919-0.5
-			l-0.919-0.421l-0.996-0.308l-1.071-0.229z"/>
-		<path style="&st19;" d="M81.483,16.993l1.113-0.422l1.109-0.266l1.148-0.077l1.074,0.078l1.109,0.231l1.032,0.345l1.034,0.536l1.034,0.652l0.956,0.768l0.918,0.92l0.881,0.996l0.842,1.112l0.802,1.226l0.689,1.34l0.688,1.418l0.571,1.491l-0.498,0.077
-			l-0.495,0.076l-0.501,0.115l-0.497,0.153l-0.496,0.115l-0.498,0.153l-0.497,0.115l-0.5,0.074l-0.343-0.842l-0.343-0.882l-0.347-0.843l-0.342-0.883l-0.422-0.842l-0.419-0.805l-0.501-0.842l-0.534-0.767l-0.649-0.729l-0.688-0.728l-0.805-0.652l-0.88-0.613
-			l-0.996-0.537l-1.11-0.498l-1.261-0.424l-1.381-0.344z"/>
-		<path style="&st11;" d="M75.815,18.329l1.455-0.609l1.457-0.385l1.34-0.189l1.34-0.037l1.265,0.191l1.226,0.346l1.147,0.498l1.111,0.652l0.992,0.805l0.994,0.919l0.884,1.036l0.84,1.15l0.764,1.264l0.652,1.34l0.611,1.381l0.535,1.491l-0.459,0.077l-0.46,0.076
-			l-0.536,0.078l-0.501,0.074l-0.533,0.078l-0.538,0.074l-0.535,0.076l-0.535,0.076l-0.269-1.072l-0.383-0.994l-0.42-0.996l-0.533-0.959l-0.575-0.881L85.5,23.046l-0.688-0.805l-0.766-0.729l-0.842-0.689l-0.916-0.574l-0.959-0.539l-0.995-0.459l-1.071-0.346
-			l-1.112-0.307l-1.146-0.191l-1.188-0.078z"/>
-		<path style="&st19;" d="M73.021,18.632l1.302-0.19l1.262-0.113l1.263,0.039l1.228,0.154l1.224,0.307l1.15,0.385l1.109,0.498l1.073,0.613l0.995,0.729l0.954,0.844l0.844,0.919l0.803,1.034L86.916,25l0.611,1.226l0.499,1.341l0.38,1.419l-0.46,0.035l-0.383,0.038
-			l-0.382,0.077l-0.384,0.077l-0.384,0.074l-0.382,0.078l-0.46,0.114l-0.496,0.076l-0.651-1.111l-0.613-1.073l-0.532-0.958l-0.5-0.956l-0.535-0.844l-0.498-0.804l-0.497-0.767l-0.572-0.69l-0.612-0.651l-0.688-0.575l-0.768-0.535l-0.842-0.498l-0.995-0.425
-			L75.7,19.286l-1.264-0.346l-1.415-0.308z"/>
-		<path style="&st11;" d="M66.933,19.432l1.914-0.457l1.8-0.268l1.646-0.075l1.531,0.154l1.417,0.307l1.302,0.461l1.187,0.573l1.074,0.77l1.03,0.842l0.917,0.96l0.844,1.034l0.802,1.112l0.728,1.147l0.688,1.227l0.612,1.226l0.611,1.265l-0.307,0.037l-0.42,0.037
-			l-0.459,0.115l-0.501,0.076l-0.496,0.115l-0.462,0.114l-0.419,0.036l-0.346,0.039l-0.571-1.148l-0.613-1.035L79.753,27.1l-0.726-0.918l-0.766-0.883l-0.805-0.806l-0.879-0.726l-0.919-0.69l-0.956-0.616l-0.996-0.573l-1.034-0.498l-1.07-0.498l-1.111-0.423
-			l-1.147-0.383l-1.189-0.346l-1.222-0.309z"/>
-		<path style="&st11;" d="M63.295,19.811l1.068-0.189l1.113-0.037l1.225,0.038l1.263,0.192l1.267,0.271l1.3,0.384l1.303,0.497l1.302,0.614l1.3,0.729l1.224,0.845l1.186,0.92l1.147,1.035l1.035,1.149l0.956,1.225l0.841,1.342l0.728,1.455l-0.537,0.039l-0.533,0.076
-			l-0.538,0.115l-0.536,0.113l-0.459,0.113l-0.385,0.117l-0.306,0.036l-0.19-0.037l-0.769-0.46l-0.763-0.537l-0.804-0.613l-0.843-0.689l-0.843-0.729l-0.878-0.768l-0.92-0.768l-0.916-0.802l-0.959-0.806l-0.956-0.807l-0.995-0.803l-0.996-0.729l-1.033-0.729
-			l-0.995-0.652l-1.071-0.613l-1.031-0.537z"/>
-		<path style="&st11;" d="M58.197,21.262l0.958-0.955l1.034-0.572l1.074-0.23l1.109,0.077l1.148,0.308l1.225,0.575l1.227,0.769l1.3,0.879l1.301,1.074l1.341,1.11l1.34,1.19l1.34,1.188l1.377,1.188l1.377,1.112l1.376,1.035l1.381,0.92l-0.421,0.074l-0.499,0.037
-			l-0.612,0.041l-0.613,0.037l-0.648,0.037h-0.653h-0.574l-0.497-0.002l-1.034-0.766l-0.993-0.804l-0.996-0.808l-0.918-0.842l-0.919-0.805l-0.883-0.807l-0.878-0.805l-0.88-0.767l-0.919-0.688l-0.879-0.651l-0.92-0.575l-0.956-0.5l-0.996-0.422l-1.034-0.345
-			l-1.073-0.192l-1.11-0.117z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd69" x1="-3772.377" y1="-3509.7163" x2="-3797.2949" y2="-3537.6816" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
-				<stop  offset="0" style="stop-color:#4F0C81"/>
-				<stop  offset="0.0701" style="stop-color:#690C73"/>
-				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
-				<stop  offset="0.3368" style="stop-color:#C20748"/>
-				<stop  offset="0.4512" style="stop-color:#E0053A"/>
-				<stop  offset="0.5481" style="stop-color:#F20032"/>
-				<stop  offset="0.6158" style="stop-color:#FA002F"/>
-				<stop  offset="1" style="stop-color:#F7EE5F"/>
-			</linearGradient>
-		</defs>
-		<path style="&st20;" d="M54.368,21.719l1.61-0.381l1.493-0.152l1.415,0.076l1.343,0.271l1.262,0.461l1.226,0.575l1.186,0.729l1.148,0.805l1.11,0.919l1.109,0.922l1.071,0.995l1.111,0.996l1.109,0.958l1.107,0.959l1.188,0.843l1.185,0.807l-0.38,0.037l-0.498,0.075
-			l-0.576,0.078l-0.576,0.036l-0.572,0.079l-0.5,0.072l-0.38,0.041l-0.231,0.037l-0.688-0.002l-0.69-0.189l-0.727-0.348l-0.766-0.496l-0.766-0.614l-0.843-0.728l-0.879-0.807l-0.919-0.844l-0.959-0.881l-1.031-0.918l-1.109-0.882l-1.148-0.844l-1.262-0.808
-			l-1.302-0.728l-1.379-0.651l-1.494-0.5z"/>
-		<path style="&st20;" d="M49.543,23.057l1.417-0.805l1.495-0.342h1.455l1.49,0.309l1.495,0.576l1.494,0.804l1.454,0.96l1.415,1.034l1.339,1.149l1.302,1.15l1.263,1.075l1.148,0.993l1.033,0.844l0.956,0.65l0.843,0.385l0.726,0.116l-0.61,0.077l-0.653,0.113
-			l-0.727,0.113l-0.765,0.117l-0.767,0.074l-0.767,0.115l-0.728,0.038L64.2,32.642l-1.07-0.806l-0.958-0.766l-0.879-0.767l-0.84-0.728l-0.767-0.73L58.96,28.12l-0.767-0.691l-0.726-0.651l-0.729-0.612l-0.804-0.576l-0.841-0.537l-0.919-0.496l-0.996-0.461
-			l-1.071-0.383l-1.226-0.348l-1.34-0.307z"/>
-		<defs>
-			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd71" x1="-3498.5225" y1="4158.0396" x2="-3482.3647" y2="4209.6001" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 -1982.8965 3021.3838)">
-				<stop  offset="0" style="stop-color:#D8E7EB"/>
-				<stop  offset="0.0849" style="stop-color:#C9D9DE"/>
-				<stop  offset="0.2184" style="stop-color:#A5B8C2"/>
-				<stop  offset="0.3836" style="stop-color:#728896"/>
-				<stop  offset="0.5537" style="stop-color:#405766"/>
-				<stop  offset="0.6417" style="stop-color:#667D8B"/>
-				<stop  offset="0.742" style="stop-color:#92A7B1"/>
-				<stop  offset="0.8374" style="stop-color:#B7C8D0"/>
-				<stop  offset="0.9257" style="stop-color:#CFDFE4"/>
-				<stop  offset="1" style="stop-color:#D8E7EB"/>
-			</linearGradient>
-		</defs>
-		<g style="&st21;">
-			<defs>
-				<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd72" x1="-3704.9473" y1="-3493.9082" x2="-3688.7896" y2="-3442.3477" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2110.5286 1859.3658)">
-					<stop  offset="0" style="stop-color:#D8E7EB"/>
-					<stop  offset="0.0849" style="stop-color:#C9D9DE"/>
-					<stop  offset="0.2184" style="stop-color:#A5B8C2"/>
-					<stop  offset="0.3836" style="stop-color:#728896"/>
-					<stop  offset="0.5537" style="stop-color:#405766"/>
-					<stop  offset="0.6417" style="stop-color:#667D8B"/>
-					<stop  offset="0.742" style="stop-color:#92A7B1"/>
-					<stop  offset="0.8374" style="stop-color:#B7C8D0"/>
-					<stop  offset="0.9257" style="stop-color:#CFDFE4"/>
-					<stop  offset="1" style="stop-color:#D8E7EB"/>
-				</linearGradient>
-			</defs>
-			<path style="&st22;" d="M142.305,7.35l0.191-0.383l0.153-0.42l0.152-0.423l0.113-0.421l0.117-0.459l0.115-0.496l0.077-0.459l0.042-0.5l0.036-0.459l0.035-0.498l0.001-0.499l-0.035-0.46l-0.036-0.459l-0.08-0.457l-0.112-0.461l-0.114-0.42l0.611,0.804l0.459,0.882
-				l0.345,0.842l0.189,0.88l0.076,0.919v0.92l-0.116,0.918l-0.194,0.92l-0.228,0.918l-0.31,0.883l-0.343,0.879l-0.343,0.88l-0.385,0.843l-0.347,0.842l-0.346,0.765l-0.343,0.767l0.074-0.152l0.037-0.269l0.042-0.266v-0.345l0.037-0.424V12.06V11.6l0.001-0.496
-				l0.038-0.499v-0.498l0.039-0.534l0.04-0.498l0.038-0.461l0.078-0.461l0.075-0.42l0.116-0.383z"/>
-			<path style="&st22;" d="M153.974,23.252l-0.729-0.422l-0.729-0.462l-0.687-0.421l-0.688-0.422l-0.65-0.383l-0.651-0.422l-0.616-0.385l-0.609-0.42l-0.653-0.384l-0.607-0.384l-0.614-0.422l-0.652-0.382l-0.611-0.386l-0.654-0.342l-0.686-0.386l-0.689-0.382
-				l0.61,0.61l0.613,0.616l0.613,0.611l0.612,0.576l0.65,0.611l0.651,0.536l0.65,0.539l0.688,0.497l0.651,0.461l0.689,0.383l0.651,0.346l0.688,0.269l0.688,0.229l0.688,0.115l0.691,0.037l0.691-0.035z"/>
-			<path style="&st22;" d="M148.277,7.928l-0.536,0.308l-0.5,0.345l-0.495,0.345l-0.461,0.344l-0.46,0.343l-0.419,0.383l-0.424,0.421l-0.423,0.383l-0.384,0.422l-0.384,0.422l-0.382,0.421l-0.345,0.457l-0.383,0.422l-0.346,0.459l-0.344,0.459l-0.346,0.459
-				l0.153-0.496l0.192-0.499l0.191-0.537l0.229-0.534l0.231-0.536l0.265-0.499l0.31-0.498l0.346-0.495l0.382-0.46l0.461-0.381l0.498-0.385l0.537-0.344l0.612-0.269l0.652-0.229l0.765-0.152l0.805-0.076z"/>
-			<path style="&st22;" d="M142.574,3.329l-0.153,0.767l-0.114,0.767l-0.154,0.766l-0.116,0.689l-0.076,0.727l-0.114,0.689l-0.079,0.689l-0.115,0.689L141.576,9.8l-0.117,0.689l-0.074,0.651l-0.118,0.689l-0.116,0.689l-0.115,0.689l-0.15,0.689l-0.157,0.727
-				l-0.076-0.842l-0.113-0.805l-0.077-0.843l-0.076-0.841l-0.037-0.807l-0.038-0.805l0.039-0.805l0.039-0.764l0.076-0.767l0.116-0.688l0.194-0.689l0.229-0.651l0.269-0.573l0.384-0.537l0.422-0.46l0.497-0.421z"/>
-			<path style="&st22;" d="M146.674,2.071l0.692,0.648l0.416,0.729l0.189,0.766l0.04,0.805l-0.153,0.804l-0.307,0.843l-0.424,0.844l-0.498,0.841l-0.575,0.804l-0.611,0.805l-0.653,0.764l-0.65,0.689l-0.614,0.689l-0.534,0.572l-0.463,0.539l-0.383,0.418l0.077-1.147
-				l0.154-0.995l0.191-0.844l0.307-0.764l0.306-0.65l0.386-0.574l0.382-0.535l0.424-0.501l0.383-0.496l0.424-0.495l0.382-0.538l0.307-0.613l0.307-0.688l0.23-0.766l0.194-0.919l0.075-1.032z"/>
-			<path style="&st22;" d="M141.763,14.319v-0.805l-0.039-0.765l-0.034-0.765l-0.04-0.768l-0.036-0.729l-0.077-0.727l-0.076-0.727l-0.073-0.691l-0.117-0.688l-0.114-0.728l-0.189-0.689l-0.152-0.689L140.62,4.86l-0.268-0.689l-0.229-0.689l-0.306-0.689l1.111,1.073
-				l0.918,1.034l0.649,0.959l0.457,0.92l0.309,0.879l0.151,0.805l0.037,0.806l-0.077,0.727l-0.195,0.689l-0.187,0.651l-0.27,0.613l-0.271,0.533l-0.23,0.537l-0.229,0.459l-0.152,0.459l-0.078,0.383z"/>
-			<path style="&st22;" d="M152.982,16.97l-0.613,0.114l-0.614,0.116l-0.611,0.075l-0.613,0.075l-0.609,0.038l-0.616,0.037h-0.613h-0.575l-0.612-0.039h-0.574l-0.613-0.077l-0.573-0.038l-0.613-0.04l-0.575-0.075l-0.612-0.079l-0.574-0.075l0.498,0.229l0.498,0.192
-				l0.535,0.231l0.537,0.19l0.574,0.193l0.576,0.151l0.61,0.156l0.61,0.076l0.612,0.039h0.651l0.651-0.039l0.654-0.15l0.651-0.191l0.651-0.27l0.648-0.381l0.654-0.46z"/>
-			<path style="&st22;" d="M149.417,20.07l0.461,0.078l0.419,0.075l0.461,0.115l0.457,0.115l0.463,0.194l0.456,0.151l0.421,0.191l0.46,0.23l0.421,0.23l0.421,0.267l0.383,0.271l0.386,0.268l0.343,0.307l0.308,0.307l0.304,0.307l0.27,0.344l-0.269-0.917l-0.422-0.808
-				l-0.494-0.688l-0.615-0.651l-0.688-0.536l-0.768-0.5L151.754,19l-0.882-0.347l-0.919-0.306l-0.919-0.307l-0.955-0.231l-0.958-0.23l-0.957-0.193l-0.919-0.189l-0.843-0.154l-0.842-0.192l0.42,0.153l0.574,0.306l0.69,0.463l0.841,0.497l0.843,0.535l0.879,0.499
-				l0.842,0.46l0.768,0.308z"/>
-			<path style="&st22;" d="M151.174,26.926l0.345-0.881l0.117-0.844l-0.116-0.842l-0.307-0.766l-0.457-0.729l-0.612-0.727l-0.728-0.69l-0.804-0.614l-0.843-0.613l-0.879-0.536l-0.919-0.538l-0.884-0.459l-0.801-0.42l-0.767-0.387l-0.651-0.344l-0.496-0.309
-				l0.532,1.113l0.538,0.919l0.573,0.728l0.536,0.652l0.574,0.498l0.574,0.459l0.574,0.346l0.574,0.346l0.571,0.346l0.577,0.382l0.572,0.384l0.536,0.46l0.537,0.573l0.535,0.691l0.497,0.806l0.498,0.995z"/>
-			<path style="&st22;" d="M141.529,17.497l0.422,0.652l0.42,0.652l0.421,0.65l0.38,0.613l0.346,0.613l0.345,0.649l0.346,0.614l0.305,0.613l0.304,0.652l0.268,0.65l0.271,0.613l0.229,0.65l0.19,0.689l0.192,0.65l0.152,0.689l0.152,0.73l0.384-1.455l0.191-1.265
-				l0.041-1.149l-0.115-0.994l-0.229-0.844l-0.346-0.766l-0.42-0.652l-0.458-0.537l-0.538-0.499l-0.535-0.421l-0.573-0.346l-0.537-0.306l-0.496-0.306l-0.46-0.268l-0.342-0.307l-0.31-0.271z"/>
-		</g>
-	</g>
-</g><!-- Layer_x0020_1 -->
-</g><!-- translate and flip -->
-<g id="project_text1" style='font-family: "Tahoma"; font-size: 15px; font-weight: bold;'>
-	<text x="114" y="15" fill="white" text-anchor="start">The</text>
-</g>
-<g id="project_text2" style='font-family: "Tahoma"; font-size: 26px; font-weight: bold;'>
-	<text x="150" y="23" fill="white" text-anchor="start">Apache Software</text>
-</g>
-<g id="project_text2x" style="font-family:'Tahoma';font-size:26;font-weight:bold"
- transform="matrix(1 0 0 1 0 0) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 -1) translate(9 -10) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(-1 0)"
- >
- <text x="150" y="23" fill="white" text-anchor="start">Foundation</text>
-</g>
-<g id="project_text3" style="font-family:'Tahoma';font-size:16"
-   transform="matrix(1 0 0 1 0 0) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(0 1) translate(-1 0) translate(-176 17) translate(0 -1) translate(0 -1) translate(0 -1) translate(-1 0) translate(-1 0) translate(-1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0)"
-		>
-   <text x="260" y="44" fill="white" text-anchor="start">h t t p : / /  w w w . a p a c h e . o r g /</text>
-</g>
-
-</g>
-</svg>
diff --git a/assets/images/apache-asf-compressed.png b/assets/images/apache-asf-compressed.png
deleted file mode 100644
index 5e03ea3..0000000
--- a/assets/images/apache-asf-compressed.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/apache-incubator-logo-source.svg b/assets/images/apache-incubator-logo-source.svg
deleted file mode 100644
index b66afab..0000000
--- a/assets/images/apache-incubator-logo-source.svg
+++ /dev/null
@@ -1,1189 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
-	"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<!-- ========================================================================= -->
-<!-- Copyright (C) The Apache Software Foundation. All rights reserved.        -->
-<!--                                                                           -->
-<!-- This software is published under the terms of the Apache Software License -->
-<!-- version 1.1, a copy of which has been included with this distribution in  -->
-<!-- the LICENSE file.                                                         -->
-<!-- ========================================================================= -->
-<!-- ========================================================================= -->
-<!-- Test description here                                                     -->
-<!--                                                                           -->
-<!-- @version $Id: apache-incubator-logo-source.svg 537581 2007-05-13 11:54:03Z rdonkin $ -->
-<!-- ========================================================================= -->
-<svg id="body" xmlns="http://www.w3.org/2000/svg"
-	xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" width="229"
-	height="57">
-	<defs>
-		<linearGradient id="black-white_1" x1="82.2222%" y1="100%" x2="0%" y2="0%"
-			spreadMethod="pad" gradientUnits="objectBoundingBox">
-			<stop offset="0%" style="stop-color:rgb(0,0,0);stop-opacity:1"/>
-			<stop offset="100%" style="stop-color:rgb(255,255,255);stop-opacity:1"/>
-		</linearGradient>
-		<linearGradient id="black-white" x1="0%" y1="0%" x2="100%" y2="0%"
-			spreadMethod="pad" gradientUnits="objectBoundingBox">
-			<stop offset="0%" style="stop-color:rgb(0,0,0);stop-opacity:1"/>
-			<stop offset="100%" style="stop-color:rgb(255,255,255);stop-opacity:1"/>
-		</linearGradient>
-		<filter id="medGlow" x="-5%" y="-5%" width="110%" height="110%">
-			<feGaussianBlur in="SourceGraphic" stdDeviation="2" result="glowSrc"/>
-			<feComponentTransfer in="glowSrc" result="glowingGraphic">
-				<feFuncA type="linear" slope="3"/>
-			</feComponentTransfer>
-		</filter>
-	</defs>
-	<rect id="background" x="12" y="7" width="413" height="72" rx="4" ry="4"
-		transform="translate(218.5 7) scale(1 1.27778) translate(-218.5 -7) translate(218.5 7) scale(1 0.820972) translate(-218.5 -7) translate(218.5 7) scale(1 1.17134) translate(-218.5 -7) translate(12 43) scale(0.780658 1) translate(-12 -43) translate(12 43) scale(1.01824 1) translate(-12 -43) translate(0 4.78723) translate(425 7) scale(0.926894 0.830453) translate(-425 -7) translate(12 79) scale(0.927701 0.795837) translate(-12 -79) translate(0 -1.23138) translate(-49.7427 -32.016) translate(-1.46302 0) translate(425 43) scale(0.854135 1) translate(-425 -43) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(1.71287 0) translate(1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(-1.71287 0) translate(12 7) scale(0.945604 0.945604) translate(-12 -7)"
-		
-		 style="fill:rgb(255,255,255);stroke:rgb(0,0,0);stroke-width:2"/>
-	<g id="Apache_feather"
-		transform="matrix(-0.479341 0 0 0.479341 264.331 2.92285) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(-2.0862 0) translate(-2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(2.0862 0) translate(463.457 -4.25684) scale(0.945604 0.945604) translate(-463.457 4.25684)"
-		>
-		<defs>
-			<linearGradient id="AIgd1" gradientUnits="userSpaceOnUse" x1="-3510.37"
-				y1="4186.3" x2="-3520.39" y2="4153.28"
-				gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 -2022.6 2980.66)">
-				<stop offset="0" style="stop-color:rgb(79,12,129)"/>
-				<stop offset="0.0701" style="stop-color:rgb(105,12,115)"/>
-				<stop offset="0.209" style="stop-color:rgb(154,10,91)"/>
-				<stop offset="0.3368" style="stop-color:rgb(194,7,72)"/>
-				<stop offset="0.4512" style="stop-color:rgb(224,5,58)"/>
-				<stop offset="0.5481" style="stop-color:rgb(242,0,50)"/>
-				<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-				<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-			</linearGradient>
-		</defs>
-		<g style="fill-rule:nonzero;fill:url(#AIgd1);stroke:rgb(0,0,0);stroke-width:0.254;stroke-miterlimit:4;
-			">
-			<path style="fill:rgb(0,0,0);stroke-width:0.5956"
-				d="M0.241 40.672 C13.802 38.805 63.854 36.279 86.184 32.621 C104.145 29.684 121.686
-					24.336 138.426 18.721 C142.754 17.268 150.417 14.287 155.322 11.651 C158.426
-					9.278 165.893 5.762 167.928 2.429 C135.478 17.836 122.415 22.078 84.346 29.783
-					C68.91 32.952 12.729 37.504 0.241 40.672 z"/>
-			<defs>
-				<linearGradient id="AIgd2" gradientUnits="userSpaceOnUse" x1="-3788.1"
-					y1="-3507.62" x2="-3789.16" y2="-3479.41"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(79,12,129)"/>
-					<stop offset="0.0701" style="stop-color:rgb(105,12,115)"/>
-					<stop offset="0.209" style="stop-color:rgb(154,10,91)"/>
-					<stop offset="0.3368" style="stop-color:rgb(194,7,72)"/>
-					<stop offset="0.4512" style="stop-color:rgb(224,5,58)"/>
-					<stop offset="0.5481" style="stop-color:rgb(242,0,50)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd2)"
-				d="M48.261 46.645 L49.715 47.143 L51.133 47.261 L52.55 47.032 L53.967 46.458 L55.346
-					45.692 L56.726 44.698 L58.031 43.552 L59.332 42.326 L60.56 41.066 L61.709
-					39.799 L62.82 38.575 L63.855 37.427 L64.813 36.47 L65.694 35.707 L66.461 35.206
-					L67.15 34.978 L66.574 35.014 L65.963 35.052 L65.274 35.129 L64.586 35.203
-					L63.896 35.281 L63.207 35.357 L62.518 35.395 L61.906 35.471 L60.949 36.351
-					L60.028 37.193 L59.223 38.035 L58.494 38.879 L57.767 39.68 L57.079 40.485
-					L56.427 41.249 L55.736 41.978 L55.048 42.705 L54.319 43.355 L53.552 44.005
-					L52.67 44.615 L51.751 45.191 L50.717 45.726 L49.568 46.222 L48.266 46.643
-					z"/>
-			<defs>
-				<linearGradient id="AIgd3" gradientUnits="userSpaceOnUse" x1="-3817.43"
-					y1="-3498.72" x2="-3818.31" y2="-3475.52"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(79,12,129)"/>
-					<stop offset="0.0701" style="stop-color:rgb(105,12,115)"/>
-					<stop offset="0.209" style="stop-color:rgb(154,10,91)"/>
-					<stop offset="0.3368" style="stop-color:rgb(194,7,72)"/>
-					<stop offset="0.4512" style="stop-color:rgb(224,5,58)"/>
-					<stop offset="0.5481" style="stop-color:rgb(242,0,50)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd3)"
-				d="M43.511 46.45 L45.199 46.721 L46.768 46.759 L48.223 46.609 L49.6 46.264 L50.865 45.73
-					L52.016 45.078 L53.164 44.312 L54.198 43.433 L55.233 42.515 L56.19 41.52
-					L57.149 40.448 L58.07 39.416 L59.026 38.383 L59.986 37.35 L60.944 36.395
-					L61.939 35.514 L61.558 35.551 L61.135 35.551 L60.751 35.59 L60.332 35.627
-					L59.908 35.664 L59.487 35.742 L59.067 35.777 L58.647 35.818 L58.226 35.855
-					L57.765 35.892 L57.343 35.97 L56.884 36.007 L56.425 36.044 L55.965 36.081 L55.505
-					36.081 L55.046 36.12 L54.699 36.655 L54.279 37.306 L53.742 38.071 L53.167
-					38.876 L52.477 39.757 L51.748 40.636 L50.982 41.554 L50.177 42.433 L49.333
-					43.277 L48.493 44.082 L47.608 44.808 L46.766 45.42 L45.922 45.916 L45.079
-					46.262 L44.275 46.451 L43.507 46.451 z"/>
-			<defs>
-				<linearGradient id="AIgd4" gradientUnits="userSpaceOnUse" x1="-3806.91"
-					y1="-3505.31" x2="-3807.84" y2="-3480.56"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(79,12,129)"/>
-					<stop offset="0.0701" style="stop-color:rgb(105,12,115)"/>
-					<stop offset="0.209" style="stop-color:rgb(154,10,91)"/>
-					<stop offset="0.3368" style="stop-color:rgb(194,7,72)"/>
-					<stop offset="0.4512" style="stop-color:rgb(224,5,58)"/>
-					<stop offset="0.5481" style="stop-color:rgb(242,0,50)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd4)"
-				d="M40.371 46.487 L41.329 46.602 L42.248 46.678 L43.129 46.641 L44.01 46.489 L44.892
-					46.299 L45.735 45.955 L46.576 45.534 L47.459 44.96 L48.341 44.31 L49.223 43.546
-					L50.105 42.625 L51.024 41.632 L51.982 40.444 L52.979 39.144 L54.013 37.728
-					L55.087 36.121 L54.436 36.119 L53.823 36.158 L53.209 36.234 L52.597 36.31
-					L51.986 36.388 L51.373 36.46 L50.685 36.46 L49.958 36.46 L49.342 37.072
-					L48.769 37.722 L48.193 38.336 L47.619 39.024 L47.044 39.674 L46.509 40.363
-					L45.933 41.011 L45.394 41.702 L44.822 42.352 L44.248 43.002 L43.636 43.652
-					L43.059 44.265 L42.409 44.837 L41.757 45.411 L41.107 45.984 L40.378 46.483
-					z"/>
-			<path style="fill:url(#AIgd3)"
-				d="M37.041 46.329 L37.769 46.716 L38.571 46.869 L39.378 46.753 L40.22 46.411 L41.064
-					45.911 L41.945 45.222 L42.825 44.458 L43.709 43.541 L44.55 42.583 L45.434
-					41.59 L46.238 40.593 L47.043 39.636 L47.811 38.679 L48.54 37.839 L49.229 37.11
-					L49.843 36.497 L45.744 36.879 L45.282 37.491 L44.784 38.101 L44.326 38.717
-					L43.867 39.325 L43.407 39.939 L42.907 40.551 L42.446 41.163 L41.949 41.775
-					L41.412 42.348 L40.875 42.959 L40.339 43.537 L39.726 44.107 L39.114 44.681
-					L38.461 45.257 L37.773 45.793 L37.045 46.325 z"/>
-			<defs>
-				<linearGradient id="AIgd6" gradientUnits="userSpaceOnUse" x1="-3825.44"
-					y1="-3503.89" x2="-3826.33" y2="-3480.15"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(79,12,129)"/>
-					<stop offset="0.0701" style="stop-color:rgb(105,12,115)"/>
-					<stop offset="0.209" style="stop-color:rgb(154,10,91)"/>
-					<stop offset="0.3368" style="stop-color:rgb(194,7,72)"/>
-					<stop offset="0.4512" style="stop-color:rgb(224,5,58)"/>
-					<stop offset="0.5481" style="stop-color:rgb(242,0,50)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd6)"
-				d="M30.262 45.444 L31.45 46.211 L32.559 46.711 L33.669 46.942 L34.743 46.942 L35.776
-					46.751 L36.771 46.408 L37.726 45.87 L38.686 45.183 L39.605 44.342 L40.528
-					43.461 L41.368 42.424 L42.252 41.393 L43.095 40.284 L43.939 39.138 L44.744
-					37.99 L45.549 36.879 L44.861 36.994 L44.325 37.031 L43.941 37.068 L43.596 37.107
-					L43.253 37.146 L42.907 37.145 L42.408 37.182 L41.757 37.219 L41.028 38.253
-					L40.301 39.208 L39.572 40.129 L38.767 40.933 L38 41.66 L37.233 42.349
-					L36.429 42.96 L35.661 43.496 L34.895 43.954 L34.127 44.375 L33.4 44.681 L32.711
-					44.95 L32.022 45.179 L31.408 45.331 L30.796 45.406 L30.259 45.444 z"/>
-			<path style="fill:url(#AIgd3)"
-				d="M26.7 45.21 L27.928 45.363 L29.114 45.443 L30.263 45.365 L31.372 45.214 L32.408 44.987
-					L33.441 44.642 L34.399 44.22 L35.319 43.685 L36.239 43.113 L37.083 42.462
-					L37.926 41.735 L38.729 40.931 L39.495 40.089 L40.225 39.171 L40.954 38.212
-					L41.643 37.218 L40.876 37.257 L40.032 37.331 L39.23 37.407 L38.424 37.445
-					L37.734 37.522 L37.16 37.557 L36.739 37.596 L36.548 37.633 L36.472 37.711
-					L36.281 37.901 L35.973 38.207 L35.591 38.592 L35.169 39.051 L34.633 39.587
-					L34.056 40.16 L33.408 40.774 L32.677 41.382 L31.913 42.032 L31.145 42.647
-					L30.302 43.258 L29.422 43.83 L28.541 44.365 L27.62 44.825 z"/>
-			<defs>
-				<linearGradient id="AIgd8" gradientUnits="userSpaceOnUse" x1="-3841.66"
-					y1="-3502.43" x2="-3842.42" y2="-3482.3"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(79,12,129)"/>
-					<stop offset="0.0701" style="stop-color:rgb(105,12,115)"/>
-					<stop offset="0.209" style="stop-color:rgb(154,10,91)"/>
-					<stop offset="0.3368" style="stop-color:rgb(194,7,72)"/>
-					<stop offset="0.4512" style="stop-color:rgb(224,5,58)"/>
-					<stop offset="0.5481" style="stop-color:rgb(242,0,50)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd8)"
-				d="M21.991 45.476 L23.024 45.668 L24.022 45.744 L25.055 45.631 L26.089 45.44 L27.123
-					45.098 L28.117 44.675 L29.113 44.178 L30.111 43.567 L31.03 42.919 L31.948
-					42.229 L32.829 41.503 L33.674 40.737 L34.48 39.933 L35.246 39.168 L35.936 38.4
-					L36.587 37.634 L36.126 37.634 L35.552 37.674 L34.941 37.71 L34.29 37.71
-					L33.677 37.783 L33.064 37.824 L32.568 37.863 L32.145 37.938 L32.145 38.015
-					L31.991 38.204 L31.61 38.551 L31.073 38.971 L30.421 39.506 L29.657 40.119
-					L28.812 40.771 L27.93 41.418 L27.01 42.105 L26.092 42.796 L25.211 43.446 L24.365
-					44.02 L23.6 44.559 L22.91 44.98 L22.373 45.285 z"/>
-			<path style="fill:url(#AIgd3)"
-				d="M16.782 45.434 L17.394 46.046 L18.2 46.313 L19.196 46.314 L20.306 46.048 L21.533
-					45.588 L22.795 44.942 L24.136 44.174 L25.441 43.333 L26.743 42.414 L27.97 41.498
-					L29.117 40.619 L30.116 39.775 L30.997 39.087 L31.647 38.513 L32.07 38.132
-					L32.262 37.978 L31.764 38.016 L31.226 38.052 L30.652 38.089 L30.08 38.13
-					L29.466 38.202 L28.852 38.241 L28.241 38.281 L27.589 38.319 L26.901 38.738
-					L26.213 39.16 L25.52 39.616 L24.871 40.041 L24.182 40.497 L23.529 40.995
-					L22.841 41.454 L22.188 41.913 L21.498 42.409 L20.848 42.87 L20.16 43.329 L19.509
-					43.787 L18.821 44.208 L18.13 44.63 L17.479 45.049 L16.789 45.433 z"/>
-			<defs>
-				<linearGradient id="AIgd10" gradientUnits="userSpaceOnUse" x1="-3872.15"
-					y1="-3503.97" x2="-3872.38" y2="-3493.16"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(247,238,95)"/>
-					<stop offset="0.186" style="stop-color:rgb(245,214,93)"/>
-					<stop offset="0.3825" style="stop-color:rgb(244,195,91)"/>
-					<stop offset="0.5198" style="stop-color:rgb(244,188,90)"/>
-					<stop offset="0.7809" style="stop-color:rgb(245,218,93)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd10)"
-				d="M12.953 45.507 L13.605 45.736 L14.254 45.851 L14.904 45.888 L15.557 45.778 L16.207
-					45.584 L16.896 45.319 L17.623 44.936 L18.391 44.476 L19.234 43.941 L20.115
-					43.329 L21.074 42.641 L22.146 41.913 L23.333 41.11 L24.598 40.229 L25.977
-					39.311 L27.511 38.354 L26.858 38.393 L26.131 38.432 L25.481 38.431 L24.831
-					38.469 L24.257 38.506 L23.798 38.544 L23.491 38.583 L23.375 38.619 L23.298
-					38.734 L23.069 38.964 L22.723 39.271 L22.265 39.691 L21.69 40.19 L21.037 40.767
-					L20.348 41.338 L19.543 41.951 L18.738 42.562 L17.895 43.174 L17.052 43.708
-					L16.17 44.245 L15.328 44.702 L14.486 45.085 L13.681 45.352 L12.952 45.506
-					z"/>
-			<defs>
-				<linearGradient id="AIgd11" gradientUnits="userSpaceOnUse" x1="-3878.07"
-					y1="-3508.42" x2="-3874.54" y2="-3484.95"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(247,238,95)"/>
-					<stop offset="0.186" style="stop-color:rgb(245,214,93)"/>
-					<stop offset="0.3825" style="stop-color:rgb(244,195,91)"/>
-					<stop offset="0.5198" style="stop-color:rgb(244,188,90)"/>
-					<stop offset="0.7809" style="stop-color:rgb(245,218,93)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd11)"
-				d="M10.158 45.084 L11.037 45.428 L11.995 45.58 L12.993 45.508 L14.026 45.24 L15.098
-					44.857 L16.131 44.359 L17.205 43.751 L18.201 43.061 L19.159 42.373 L20.079
-					41.645 L20.922 40.957 L21.65 40.266 L22.303 39.694 L22.798 39.195 L23.181 38.854
-					L23.413 38.622 L22.8 38.66 L22.223 38.7 L21.652 38.737 L21.077 38.811
-					L20.542 38.852 L19.965 38.889 L19.355 38.963 L18.742 39.001 L18.283 39.422
-					L17.782 39.842 L17.324 40.263 L16.825 40.723 L16.327 41.221 L15.83 41.68 L15.294
-					42.139 L14.756 42.597 L14.22 43.02 L13.686 43.441 L13.109 43.822 L12.575
-					44.165 L11.961 44.474 L11.387 44.74 L10.774 44.933 L10.161 45.085 z"/>
-			<path style="fill:url(#AIgd10)"
-				d="M6.791 44.01 L7.556 44.545 L8.319 44.89 L9.086 45.044 L9.853 45.083 L10.621 44.932
-					L11.387 44.7 L12.153 44.357 L12.918 43.899 L13.647 43.401 L14.413 42.79 L15.142
-					42.177 L15.871 41.527 L16.598 40.879 L17.288 40.189 L17.977 39.54 L18.667
-					38.925 L18.245 38.966 L17.785 39.042 L17.288 39.079 L16.753 39.118 L16.178
-					39.192 L15.566 39.231 L14.914 39.305 L14.302 39.342 L14.11 39.803 L13.84
-					40.26 L13.569 40.682 L13.223 41.104 L12.842 41.487 L12.418 41.87 L11.998
-					42.251 L11.502 42.557 L11.002 42.865 L10.465 43.133 L9.892 43.401 L9.316
-					43.59 L8.704 43.744 L8.094 43.894 L7.44 43.971 z"/>
-			<path style="fill:url(#AIgd11)"
-				d="M3.763 43.434 L4.415 43.7 L5.105 43.893 L5.831 44.008 L6.637 44.009 L7.404 43.971
-					L8.246 43.856 L9.051 43.627 L9.854 43.398 L10.622 43.054 L11.351 42.67 L12.001
-					42.249 L12.615 41.754 L13.151 41.216 L13.611 40.644 L13.956 39.993 L14.186
-					39.341 L13.726 39.381 L13.266 39.418 L12.769 39.494 L12.269 39.532 L11.774
-					39.57 L11.237 39.607 L10.663 39.646 L10.011 39.682 L9.74 40.067 L9.433
-					40.451 L9.127 40.796 L8.821 41.102 L8.514 41.408 L8.166 41.637 L7.823 41.907
-					L7.476 42.136 L7.095 42.327 L6.673 42.517 L6.252 42.707 L5.796 42.86 L5.334
-					43.012 L4.839 43.164 L4.302 43.28 z"/>
-			<path style="fill:url(#AIgd10)"
-				d="M2.193 42.896 L2.423 43.125 L2.77 43.277 L3.19 43.355 L3.65 43.355 L4.186 43.317
-					L4.759 43.205 L5.372 43.012 L5.984 42.823 L6.597 42.553 L7.211 42.246 L7.823
-					41.904 L8.36 41.519 L8.897 41.099 L9.355 40.64 L9.7 40.18 L10.007 39.682
-					L9.664 39.723 L9.356 39.76 L8.973 39.798 L8.63 39.836 L8.286 39.875 L7.979
-					39.911 L7.711 39.912 L7.442 39.911 L7.442 40.064 L7.1 40.37 L6.524 40.792 L5.757
-					41.29 L4.84 41.786 L3.918 42.285 L2.999 42.666 z"/>
-			<path style="fill:url(#AIgd10)"
-				d="M1.084 41.822 L1.162 42.358 L1.354 42.702 L1.659 42.857 L2.079 42.933 L2.578 42.858
-					L3.152 42.666 L3.725 42.437 L4.339 42.131 L4.952 41.785 L5.526 41.404 L6.101
-					41.023 L6.562 40.676 L6.982 40.369 L7.289 40.14 L7.48 39.988 L7.518 39.912
-					L4.532 40.253 L4.303 40.405 L3.917 40.597 L3.459 40.827 L2.959 41.056
-					L2.424 41.325 L1.927 41.514 L1.466 41.706 L1.082 41.82 z"/>
-			<defs>
-				<linearGradient id="AIgd16" gradientUnits="userSpaceOnUse" x1="-3892.56"
-					y1="-3497.04" x2="-3892.71" y2="-3490.08"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(247,238,95)"/>
-					<stop offset="0.186" style="stop-color:rgb(245,214,93)"/>
-					<stop offset="0.3825" style="stop-color:rgb(244,195,91)"/>
-					<stop offset="0.5198" style="stop-color:rgb(244,188,90)"/>
-					<stop offset="0.7809" style="stop-color:rgb(245,218,93)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd16)"
-				d="M4.533 40.253 L3.882 40.292 L3.308 40.331 L2.772 40.367 L2.274 40.404 L1.814 40.444
-					L1.317 40.48 L0.819 40.557 L0.242 40.671 L0.359 41.4 L0.702 41.745 L1.239
-					41.746 L1.928 41.556 L2.617 41.209 L3.346 40.827 L3.997 40.482 z"/>
-			<path style="fill:url(#AIgd10)"
-				d="M4.419 39.874 L3.766 39.986 L3.193 40.062 L2.696 40.176 L2.196 40.251 L1.738 40.365
-					L1.279 40.48 L0.742 40.596 L0.167 40.75 L0.129 39.906 L0.474 39.37 L1.011
-					39.178 L1.738 39.144 L2.504 39.295 L3.27 39.488 L3.921 39.718 L4.42 39.872
-					z"/>
-			<defs>
-				<linearGradient id="AIgd18" gradientUnits="userSpaceOnUse" x1="-3716.79"
-					y1="-3522.17" x2="-3726.81" y2="-3555.19"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(79,12,129)"/>
-					<stop offset="0.0701" style="stop-color:rgb(105,12,115)"/>
-					<stop offset="0.209" style="stop-color:rgb(154,10,91)"/>
-					<stop offset="0.3368" style="stop-color:rgb(194,7,72)"/>
-					<stop offset="0.4512" style="stop-color:rgb(224,5,58)"/>
-					<stop offset="0.5481" style="stop-color:rgb(242,0,50)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd18)"
-				d="M44.258 24.317 L45.942 23.666 L47.553 23.247 L49.044 23.134 L50.461 23.21 L51.84
-					23.519 L53.102 23.978 L54.329 24.63 L55.516 25.359 L56.665 26.204 L57.775 27.123
-					L58.881 28.082 L59.955 29.078 L61.026 30.035 L62.096 30.956 L63.169 31.838
-					L64.278 32.645 L63.894 32.718 L63.473 32.756 L63.052 32.795 L62.669 32.871
-					L62.246 32.91 L61.825 32.948 L61.366 32.984 L60.945 33.023 L60.523 33.058
-					L60.062 33.099 L59.604 33.175 L59.182 33.212 L58.721 33.252 L58.264 33.326
-					L57.766 33.363 L57.305 33.44 L56.923 32.906 L56.428 32.253 L55.852 31.487
-					L55.164 30.719 L54.437 29.876 L53.632 29.033 L52.753 28.189 L51.872 27.383
-					L50.913 26.617 L49.96 25.929 L49.003 25.314 L48.006 24.817 L47.049 24.432
-					L46.091 24.202 L45.135 24.163 L44.255 24.315 z"/>
-			<defs>
-				<linearGradient id="AIgd19" gradientUnits="userSpaceOnUse" x1="-3818.31"
-					y1="-3506.16" x2="-3836.26" y2="-3532.43"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(79,12,129)"/>
-					<stop offset="0.0701" style="stop-color:rgb(105,12,115)"/>
-					<stop offset="0.209" style="stop-color:rgb(154,10,91)"/>
-					<stop offset="0.3368" style="stop-color:rgb(194,7,72)"/>
-					<stop offset="0.4512" style="stop-color:rgb(224,5,58)"/>
-					<stop offset="0.5481" style="stop-color:rgb(242,0,50)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd19)"
-				d="M41.383 24.964 L42.343 24.619 L43.263 24.392 L44.141 24.24 L45.064 24.163 L45.942
-					24.24 L46.861 24.432 L47.741 24.7 L48.66 25.123 L49.616 25.66 L50.575 26.351
-					L51.57 27.154 L52.603 28.114 L53.711 29.224 L54.821 30.49 L56.007 31.908
-					L57.271 33.478 L56.581 33.517 L55.97 33.589 L55.394 33.628 L54.86 33.704 L54.323
-					33.78 L53.75 33.856 L53.097 33.969 L52.332 34.086 L51.643 33.512 L50.993
-					32.899 L50.304 32.246 L49.692 31.593 L49.043 30.944 L48.394 30.294 L47.781
-					29.641 L47.13 28.99 L46.479 28.378 L45.791 27.804 L45.14 27.228 L44.452
-					26.654 L43.725 26.156 L42.958 25.733 L42.192 25.312 L41.387 24.965 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M38.167 25.805 L38.894 25.194 L39.702 24.887 L40.582 24.813 L41.461 25.004 L42.419
-					25.387 L43.375 25.925 L44.37 26.613 L45.366 27.418 L46.362 28.299 L47.355
-					29.22 L48.311 30.141 L49.231 31.099 L50.072 31.979 L50.912 32.784 L51.641
-					33.475 L52.331 34.049 L48.155 34.545 L47.619 33.932 L47.083 33.317 L46.585
-					32.704 L46.052 32.093 L45.515 31.48 L44.981 30.829 L44.408 30.215 L43.873 29.639
-					L43.26 29.065 L42.648 28.492 L41.996 27.954 L41.308 27.456 L40.58 26.959
-					L39.814 26.536 L39.01 26.153 L38.167 25.807 z"/>
-			<path style="fill:url(#AIgd19)"
-				d="M31.886 28.481 L33.034 27.37 L34.145 26.568 L35.218 26.034 L36.29 25.727 L37.362
-					25.69 L38.396 25.844 L39.429 26.229 L40.425 26.727 L41.419 27.416 L42.374 28.22
-					L43.37 29.141 L44.289 30.137 L45.246 31.172 L46.163 32.283 L47.081 33.394
-					L48 34.504 L47.271 34.544 L46.66 34.579 L46.162 34.618 L45.701 34.694 L45.243
-					34.77 L44.744 34.845 L44.173 34.923 L43.481 35.035 L42.678 34.001 L41.912
-					33.082 L41.109 32.238 L40.343 31.51 L39.541 30.898 L38.775 30.36 L38.047
-					29.899 L37.279 29.517 L36.551 29.208 L35.863 28.979 L35.135 28.787 L34.446
-					28.635 L33.798 28.555 L33.145 28.481 L32.496 28.481 L31.884 28.479 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M27.402 29.512 L28.669 29.051 L29.856 28.707 L31.043 28.518 L32.152 28.441 L33.263
-					28.442 L34.334 28.597 L35.369 28.828 L36.365 29.175 L37.36 29.594 L38.279
-					30.131 L39.236 30.744 L40.114 31.433 L40.996 32.201 L41.836 33.043 L42.642
-					33.965 L43.445 34.961 L42.642 35.076 L41.723 35.187 L40.802 35.302 L39.881
-					35.417 L39.039 35.53 L38.39 35.61 L37.891 35.647 L37.7 35.645 L37.625 35.57
-					L37.433 35.417 L37.164 35.149 L36.821 34.803 L36.398 34.383 L35.903 33.959
-					L35.328 33.463 L34.678 32.925 L33.95 32.426 L33.185 31.89 L32.341 31.39 L31.423
-					30.895 L30.503 30.471 L29.51 30.088 L28.476 29.74 L27.403 29.511 z"/>
-			<path style="fill:url(#AIgd19)"
-				d="M21.735 30.196 L22.769 29.778 L23.804 29.471 L24.912 29.356 L25.985 29.357 L27.096
-					29.475 L28.204 29.704 L29.276 30.05 L30.387 30.472 L31.42 30.97 L32.453 31.507
-					L33.448 32.158 L34.442 32.809 L35.324 33.502 L36.205 34.229 L37.007 34.957
-					L37.733 35.686 L37.238 35.723 L36.626 35.799 L35.937 35.874 L35.209 35.951
-					L34.48 36.026 L33.828 36.102 L33.255 36.139 L32.833 36.139 L32.832 36.062
-					L32.641 35.871 L32.261 35.603 L31.687 35.218 L30.998 34.798 L30.193 34.298
-					L29.274 33.761 L28.318 33.228 L27.363 32.688 L26.367 32.15 L25.369 31.654
-					L24.453 31.197 L23.607 30.81 L22.845 30.503 L22.229 30.31 L21.734 30.195 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M16.373 31.303 L16.91 30.461 L17.715 29.963 L18.711 29.775 L19.858 29.775 L21.122
-					30.043 L22.501 30.465 L23.956 31.041 L25.371 31.692 L26.826 32.421 L28.165
-					33.187 L29.43 33.917 L30.579 34.644 L31.533 35.259 L32.262 35.718 L32.758
-					36.06 L32.988 36.177 L32.451 36.293 L31.841 36.37 L31.188 36.443 L30.499 36.481
-					L29.772 36.559 L29.043 36.633 L28.355 36.748 L27.666 36.863 L26.937 36.517
-					L26.249 36.169 L25.52 35.788 L24.832 35.403 L24.142 35.057 L23.454 34.674
-					L22.726 34.29 L22.038 33.908 L21.349 33.558 L20.661 33.176 L19.932 32.833
-					L19.244 32.526 L18.555 32.178 L17.828 31.873 L17.101 31.562 L16.372 31.296
-					z"/>
-			<path style="fill:url(#AIgd10)"
-				d="M9.518 33.135 L10.362 32.524 L11.318 32.178 L12.314 32.029 L13.384 32.03 L14.497
-					32.219 L15.645 32.567 L16.755 32.988 L17.863 33.488 L18.898 34.062 L19.93 34.637
-					L20.849 35.251 L21.653 35.787 L22.38 36.286 L22.954 36.746 L23.374 37.052
-					L23.603 37.245 L22.991 37.319 L22.417 37.396 L21.922 37.472 L21.421 37.509
-					L20.885 37.546 L20.389 37.622 L19.813 37.7 L19.203 37.774 L18.666 37.432
-					L18.13 37.084 L17.556 36.664 L16.982 36.281 L16.37 35.86 L15.757 35.439
-					L15.145 35.016 L14.533 34.633 L13.919 34.249 L13.272 33.941 L12.62 33.636 L12.007
-					33.404 L11.359 33.215 L10.744 33.098 L10.13 33.098 z"/>
-			<path style="fill:url(#AIgd11)"
-				d="M12.044 32.029 L12.697 31.606 L13.385 31.301 L14.037 31.147 L14.725 31.073 L15.414
-					31.11 L16.142 31.262 L16.949 31.532 L17.787 31.84 L18.708 32.263 L19.667
-					32.722 L20.737 33.298 L21.884 33.912 L23.149 34.562 L24.527 35.254 L26.017
-					36.019 L27.665 36.787 L27.052 36.827 L26.363 36.9 L25.675 36.978 L24.984 37.09
-					L24.371 37.168 L23.914 37.246 L23.568 37.281 L23.415 37.246 L23.34 37.167
-					L23.07 36.977 L22.725 36.668 L22.266 36.324 L21.693 35.902 L21.004 35.443
-					L20.275 34.943 L19.472 34.444 L18.593 33.946 L17.711 33.449 L16.756 33.024
-					L15.799 32.64 L14.84 32.336 L13.883 32.14 L12.963 32.029 L12.044 32.028 z"/>
-			<path style="fill:url(#AIgd11)"
-				d="M6.451 35.086 L7.142 34.32 L7.868 33.746 L8.597 33.364 L9.363 33.135 L10.13 33.098
-					L10.934 33.174 L11.778 33.366 L12.582 33.637 L13.422 34.059 L14.227 34.479
-					L15.069 35.015 L15.912 35.554 L16.755 36.09 L17.558 36.664 L18.363 37.242
-					L19.166 37.738 L18.707 37.814 L18.209 37.852 L17.635 37.968 L17.022 38.04
-					L16.373 38.119 L15.683 38.192 L15.033 38.27 L14.38 38.345 L14.151 37.848 L13.882
-					37.426 L13.577 37.004 L13.193 36.621 L12.81 36.277 L12.391 36.007 L11.891
-					35.736 L11.394 35.507 L10.858 35.316 L10.286 35.162 L9.706 35.05 L9.094
-					34.971 L8.444 34.934 L7.792 34.935 L7.142 35.008 L6.453 35.086 z"/>
-			<path style="fill:url(#AIgd11)"
-				d="M1.738 37.609 L1.931 37.303 L2.237 37.035 L2.659 36.807 L3.118 36.653 L3.654 36.539
-					L4.266 36.503 L4.879 36.504 L5.568 36.541 L6.218 36.655 L6.907 36.81 L7.559
-					37.039 L8.169 37.308 L8.745 37.616 L9.279 37.999 L9.701 38.421 L10.082
-					38.882 L9.739 38.958 L9.32 39.034 L8.9 39.11 L8.477 39.184 L8.095 39.221 L7.787
-					39.262 L7.56 39.262 L7.482 39.262 L7.329 39.184 L6.948 38.954 L6.296 38.647
-					L5.53 38.304 L4.649 37.995 L3.654 37.726 L2.697 37.572 L1.738 37.608 z"/>
-			<path style="fill:url(#AIgd10)"
-				d="M0.818 39.178 L0.782 38.569 L0.934 38.108 L1.205 37.801 L1.625 37.61 L2.122 37.532
-					L2.697 37.573 L3.31 37.649 L3.998 37.803 L4.648 38.032 L5.298 38.263 L5.911
-					38.493 L6.446 38.723 L6.906 38.953 L7.289 39.107 L7.48 39.259 L7.558 39.295
-					L4.493 39.828 L4.223 39.716 L3.803 39.599 L3.344 39.446 L2.81 39.294 L2.274
-					39.179 L1.739 39.105 L1.24 39.104 z"/>
-			<path style="fill:url(#AIgd10)"
-				d="M3.349 36.616 L3.961 36.118 L4.612 35.735 L5.341 35.393 L6.146 35.162 L6.952 35.009
-					L7.755 34.899 L8.599 34.9 L9.44 34.972 L10.244 35.128 L11.048 35.398 L11.777
-					35.705 L12.466 36.088 L13.115 36.549 L13.651 37.084 L14.072 37.697 L14.416
-					38.386 L13.917 38.425 L13.46 38.502 L12.96 38.538 L12.424 38.614 L11.889
-					38.692 L11.315 38.729 L10.7 38.844 L10.05 38.916 L9.819 38.575 L9.551 38.267
-					L9.244 38 L8.901 37.73 L8.519 37.5 L8.098 37.27 L7.675 37.078 L7.216 36.927
-					L6.757 36.773 L6.26 36.657 L5.8 36.581 L5.301 36.541 L4.804 36.504 L4.308
-					36.503 L3.809 36.541 z"/>
-			<defs>
-				<linearGradient id="AIgd31" gradientUnits="userSpaceOnUse" x1="-3644.51"
-					y1="-3531.55" x2="-3636.63" y2="-3508.35"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.0006" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.072" style="stop-color:rgb(141,15,109)"/>
-					<stop offset="0.1459" style="stop-color:rgb(173,13,90)"/>
-					<stop offset="0.2229" style="stop-color:rgb(200,10,74)"/>
-					<stop offset="0.3041" style="stop-color:rgb(222,8,62)"/>
-					<stop offset="0.3913" style="stop-color:rgb(237,3,53)"/>
-					<stop offset="0.4884" style="stop-color:rgb(246,0,48)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd31)"
-				d="M139.689 18.299 L139.766 18.416 L139.958 18.723 L140.225 19.22 L140.569 19.833 L140.955
-					20.56 L141.337 21.366 L141.683 22.286 L141.986 23.204 L142.214 24.163
-					L142.293 25.083 L142.251 26 L142.059 26.842 L141.637 27.61 L140.986 28.297
-					L140.067 28.832 L138.878 29.216 L139.071 28.638 L139.188 28.027 L139.301
-					27.416 L139.377 26.727 L139.416 26.038 L139.416 25.31 L139.379 24.62 L139.342
-					23.891 L139.266 23.162 L139.192 22.437 L139.076 21.747 L138.924 21.096 L138.811
-					20.445 L138.657 19.87 L138.469 19.296 L138.314 18.798 L138.505 18.723
-					L138.659 18.683 L138.849 18.607 L139.005 18.571 L139.158 18.494 L139.308
-					18.455 L139.499 18.377 L139.689 18.301 z"/>
-			<path style="fill:url(#AIgd31)"
-				d="M138.389 18.835 L138.923 20.943 L139.305 22.857 L139.494 24.503 L139.531 25.958 L139.454
-					27.222 L139.224 28.294 L138.917 29.214 L138.57 29.978 L138.11 30.591
-					L137.613 31.087 L137.115 31.434 L136.62 31.701 L136.08 31.892 L135.621 31.968
-					L135.201 32.005 L134.817 32.005 L135.046 31.392 L135.275 30.78 L135.467
-					30.092 L135.621 29.403 L135.773 28.636 L135.891 27.872 L136.007 27.105 L136.082
-					26.302 L136.123 25.496 L136.124 24.653 L136.083 23.849 L136.01 23.006
-					L135.896 22.202 L135.741 21.359 L135.553 20.593 L135.324 19.788 L135.781
-					19.634 L136.244 19.482 L136.666 19.33 L137.084 19.215 L137.432 19.102 L137.813
-					18.987 L138.119 18.911 L138.389 18.834 z"/>
-			<path style="fill:url(#AIgd31)"
-				d="M135.285 19.792 L135.516 20.557 L135.743 21.516 L135.898 22.589 L135.97 23.775 L136.011
-					25.078 L136.009 26.379 L135.893 27.68 L135.701 28.947 L135.43 30.134
-					L135.085 31.243 L134.586 32.2 L134.014 32.966 L133.283 33.54 L132.443 33.844
-					L131.483 33.884 L130.375 33.577 L130.797 32.886 L131.218 32.159 L131.565
-					31.393 L131.872 30.666 L132.101 29.863 L132.332 29.095 L132.484 28.29 L132.638
-					27.485 L132.715 26.681 L132.753 25.84 L132.753 25.035 L132.68 24.193 L132.604
-					23.351 L132.452 22.545 L132.3 21.7 L132.071 20.897 L132.454 20.745
-					L132.912 20.593 L133.373 20.44 L133.833 20.287 L134.293 20.136 L134.675 19.983
-					L135.021 19.866 L135.288 19.792 z"/>
-			<path style="fill:url(#AIgd31)"
-				d="M125.546 35.674 L126.582 35.754 L127.579 35.6 L128.458 35.219 L129.263 34.684 L130.029
-					33.954 L130.681 33.075 L131.217 32.081 L131.716 30.972 L132.1 29.784
-					L132.409 28.518 L132.601 27.218 L132.679 25.916 L132.68 24.615 L132.566 23.312
-					L132.337 22.047 L131.994 20.859 L131.572 21.011 L131.147 21.165 L130.691
-					21.279 L130.228 21.431 L129.77 21.585 L129.273 21.738 L128.813 21.89 L128.316
-					22.042 L128.316 22.846 L128.315 23.725 L128.275 24.724 L128.236 25.757
-					L128.197 26.79 L128.159 27.862 L128.043 28.972 L127.93 30.004 L127.774 31.039
-					L127.62 32 L127.387 32.919 L127.119 33.725 L126.811 34.412 L126.427 34.989
-					L126.006 35.408 L125.545 35.675 z"/>
-			<defs>
-				<linearGradient id="AIgd35" gradientUnits="userSpaceOnUse" x1="-3738.23"
-					y1="-3453.36" x2="-3733.07" y2="-3424.07"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2110.53 1859.37)">
-					<stop offset="0" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.0752" style="stop-color:rgb(111,17,130)"/>
-					<stop offset="0.1935" style="stop-color:rgb(131,19,128)"/>
-					<stop offset="0.3399" style="stop-color:rgb(163,21,123)"/>
-					<stop offset="0.5088" style="stop-color:rgb(209,25,117)"/>
-					<stop offset="0.6158" style="stop-color:rgb(242,27,113)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd35)"
-				d="M128.277 22.083 L127.893 22.236 L127.51 22.35 L127.167 22.465 L126.781 22.542 L126.399
-					22.656 L126.052 22.769 L125.668 22.885 L125.288 23.038 L125.211 23.804
-					L125.17 24.644 L125.131 25.564 L125.093 26.522 L125.092 27.48 L125.091 28.511
-					L125.051 29.548 L125.012 30.542 L124.936 31.539 L124.821 32.533 L124.628
-					33.452 L124.437 34.296 L124.132 35.098 L123.786 35.825 L123.364 36.441 L122.828
-					36.937 L123.936 36.669 L124.855 36.286 L125.622 35.753 L126.273 35.139
-					L126.81 34.41 L127.233 33.571 L127.539 32.652 L127.771 31.693 L127.927
-					30.621 L128.039 29.511 L128.078 28.361 L128.12 27.136 L128.157 25.911 L128.196
-					24.647 L128.197 23.383 L128.275 22.08 z"/>
-			<defs>
-				<linearGradient id="AIgd36" gradientUnits="userSpaceOnUse" x1="-3716.31"
-					y1="-3509.66" x2="-3713.68" y2="-3491.72"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.0006" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.072" style="stop-color:rgb(141,15,109)"/>
-					<stop offset="0.1459" style="stop-color:rgb(173,13,90)"/>
-					<stop offset="0.2229" style="stop-color:rgb(200,10,74)"/>
-					<stop offset="0.3041" style="stop-color:rgb(222,8,62)"/>
-					<stop offset="0.3913" style="stop-color:rgb(237,3,53)"/>
-					<stop offset="0.4884" style="stop-color:rgb(246,0,48)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd36)"
-				d="M118.116 38.426 L119.647 38.352 L120.951 38.047 L122.021 37.55 L122.903 36.899 L123.592
-					36.057 L124.094 35.099 L124.513 34.028 L124.783 32.84 L124.937 31.614
-					L125.051 30.353 L125.092 29.048 L125.093 27.786 L125.094 26.481 L125.095
-					25.258 L125.171 24.108 L125.249 23.037 L124.828 23.151 L124.445 23.264 L124.102
-					23.381 L123.715 23.494 L123.333 23.607 L122.99 23.722 L122.606 23.799
-					L122.183 23.913 L122.222 24.026 L122.297 24.295 L122.375 24.718 L122.489 25.255
-					L122.563 25.943 L122.641 26.711 L122.68 27.592 L122.64 28.588 L122.526
-					29.623 L122.331 30.768 L121.984 31.957 L121.564 33.182 L120.95 34.447 L120.184
-					35.786 L119.263 37.086 L118.113 38.425 z"/>
-			<path style="fill:url(#AIgd36)"
-				d="M112.905 40.07 L113.94 40.261 L114.975 40.188 L115.97 39.842 L116.966 39.305 L117.922
-					38.58 L118.842 37.699 L119.686 36.629 L120.455 35.441 L121.104 34.176
-					L121.68 32.798 L122.142 31.342 L122.451 29.853 L122.643 28.357 L122.684 26.826
-					L122.532 25.372 L122.224 23.916 L118.586 25.062 L118.623 25.675 L118.66
-					26.404 L118.622 27.205 L118.542 28.125 L118.43 29.083 L118.238 30.117 L118.046
-					31.189 L117.738 32.298 L117.391 33.407 L116.97 34.48 L116.509 35.551 L115.934
-					36.586 L115.322 37.581 L114.593 38.5 L113.788 39.341 L112.905 40.068 z"/>
-			<defs>
-				<linearGradient id="AIgd38" gradientUnits="userSpaceOnUse" x1="-3716.5"
-					y1="-3512.96" x2="-3712.37" y2="-3473.33"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.0006" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.072" style="stop-color:rgb(141,15,109)"/>
-					<stop offset="0.1459" style="stop-color:rgb(173,13,90)"/>
-					<stop offset="0.2229" style="stop-color:rgb(200,10,74)"/>
-					<stop offset="0.3041" style="stop-color:rgb(222,8,62)"/>
-					<stop offset="0.3913" style="stop-color:rgb(237,3,53)"/>
-					<stop offset="0.4884" style="stop-color:rgb(246,0,48)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd38)"
-				d="M118.662 24.987 L118.089 25.176 L117.36 25.367 L116.553 25.635 L115.713 25.864 L114.907
-					26.134 L114.103 26.361 L113.414 26.552 L112.877 26.667 L112.801 27.548
-					L112.759 28.503 L112.684 29.462 L112.646 30.457 L112.529 31.452 L112.452
-					32.489 L112.337 33.483 L112.184 34.479 L111.994 35.435 L111.762 36.356 L111.453
-					37.272 L111.109 38.114 L110.687 38.921 L110.189 39.609 L109.653 40.259
-					L109.003 40.835 L109.769 40.949 L110.572 40.911 L111.376 40.721 L112.181
-					40.378 L112.985 39.878 L113.792 39.266 L114.56 38.503 L115.326 37.545 L116.015
-					36.511 L116.626 35.284 L117.204 33.945 L117.699 32.417 L118.087 30.767
-					L118.394 29.009 L118.588 27.054 L118.665 24.988 z"/>
-			<path style="fill:url(#AIgd36)"
-				d="M103.98 41.593 L105.705 41.674 L107.16 41.52 L108.425 41.102 L109.423 40.449 L110.264
-					39.647 L110.955 38.689 L111.452 37.617 L111.838 36.393 L112.146 35.168
-					L112.336 33.825 L112.452 32.525 L112.569 31.223 L112.607 29.92 L112.685 28.732
-					L112.76 27.622 L112.877 26.627 L112.342 26.741 L111.879 26.856 L111.46
-					27.009 L111.042 27.121 L110.579 27.238 L110.157 27.349 L109.661 27.503 L109.085
-					27.654 L108.969 28.692 L108.857 29.684 L108.741 30.68 L108.585 31.635
-					L108.469 32.596 L108.316 33.514 L108.127 34.393 L107.933 35.274 L107.664 36.118
-					L107.356 36.959 L106.974 37.764 L106.552 38.57 L106.016 39.371 L105.44
-					40.138 L104.751 40.866 L103.981 41.592 z"/>
-			<path style="fill:url(#AIgd38)"
-				d="M99.349 42.433 L100.881 42.511 L102.221 42.319 L103.409 41.901 L104.445 41.251 L105.325
-					40.446 L106.091 39.489 L106.706 38.382 L107.243 37.194 L107.701 35.967
-					L108.048 34.667 L108.317 33.401 L108.511 32.102 L108.701 30.876 L108.817
-					29.726 L108.933 28.653 L109.012 27.734 L108.473 27.851 L108.014 27.963 L107.594
-					28.078 L107.171 28.155 L106.791 28.268 L106.366 28.342 L105.871 28.494
-					L105.295 28.609 L105.103 30.105 L104.874 31.522 L104.604 32.823 L104.335
-					34.049 L104.025 35.158 L103.68 36.229 L103.297 37.148 L102.913 38.031 L102.53
-					38.834 L102.105 39.561 L101.646 40.174 L101.224 40.747 L100.765 41.283 L100.304
-					41.703 L99.806 42.086 L99.347 42.431 z"/>
-			<defs>
-				<linearGradient id="AIgd41" gradientUnits="userSpaceOnUse" x1="-3711.18"
-					y1="-3514.04" x2="-3709.74" y2="-3493.47"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.0006" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.072" style="stop-color:rgb(141,15,109)"/>
-					<stop offset="0.1459" style="stop-color:rgb(173,13,90)"/>
-					<stop offset="0.2229" style="stop-color:rgb(200,10,74)"/>
-					<stop offset="0.3041" style="stop-color:rgb(222,8,62)"/>
-					<stop offset="0.3913" style="stop-color:rgb(237,3,53)"/>
-					<stop offset="0.4884" style="stop-color:rgb(246,0,48)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd41)"
-				d="M94.98 43.004 L96.437 43.082 L97.739 42.893 L98.89 42.469 L99.961 41.858 L100.842
-					41.056 L101.647 40.137 L102.337 39.065 L102.951 37.919 L103.486 36.73 L103.908
-					35.467 L104.255 34.203 L104.563 32.941 L104.834 31.753 L105.026 30.604
-					L105.178 29.573 L105.333 28.651 L104.874 28.727 L104.414 28.843 L103.952 28.957
-					L103.493 29.072 L103.031 29.187 L102.573 29.299 L102.113 29.413 L101.616
-					29.53 L101.578 30.255 L101.462 31.06 L101.309 31.903 L101.04 32.821 L100.77
-					33.816 L100.388 34.773 L100.003 35.806 L99.581 36.804 L99.082 37.8 L98.545
-					38.757 L98.011 39.636 L97.434 40.476 L96.86 41.282 L96.246 41.972 L95.597
-					42.544 L94.98 43.003 z"/>
-			<defs>
-				<linearGradient id="AIgd42" gradientUnits="userSpaceOnUse" x1="-3718.5"
-					y1="-3510.1" x2="-3716.74" y2="-3482.96"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.0006" style="stop-color:rgb(104,16,131)"/>
-					<stop offset="0.072" style="stop-color:rgb(141,15,109)"/>
-					<stop offset="0.1459" style="stop-color:rgb(173,13,90)"/>
-					<stop offset="0.2229" style="stop-color:rgb(200,10,74)"/>
-					<stop offset="0.3041" style="stop-color:rgb(222,8,62)"/>
-					<stop offset="0.3913" style="stop-color:rgb(237,3,53)"/>
-					<stop offset="0.4884" style="stop-color:rgb(246,0,48)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd42)"
-				d="M90.197 43.881 L91.687 44.074 L93.067 43.883 L94.331 43.387 L95.481 42.621 L96.554
-					41.666 L97.475 40.518 L98.315 39.217 L99.085 37.876 L99.698 36.461 L100.235
-					35.08 L100.695 33.778 L101.079 32.516 L101.309 31.442 L101.501 30.562 L101.615
-					29.912 L101.616 29.531 L101.043 29.642 L100.506 29.757 L99.971 29.909
-					L99.435 30.024 L98.899 30.176 L98.399 30.289 L97.902 30.404 L97.403 30.482
-					L97.212 31.133 L97.022 31.898 L96.793 32.777 L96.522 33.773 L96.214 34.808
-					L95.871 35.879 L95.487 36.948 L95.063 38.062 L94.602 39.132 L94.105 40.127
-					L93.568 41.086 L92.994 41.928 L92.341 42.653 L91.691 43.227 L90.963 43.649
-					L90.198 43.878 z"/>
-			<path style="fill:url(#AIgd42)"
-				d="M86.712 43.688 L88.089 43.995 L89.312 43.996 L90.425 43.729 L91.459 43.194 L92.341
-					42.465 L93.146 41.584 L93.873 40.516 L94.525 39.366 L95.064 38.14 L95.562
-					36.879 L95.946 35.614 L96.331 34.387 L96.638 33.24 L96.869 32.205 L97.099
-					31.287 L97.288 30.56 L96.869 30.636 L96.446 30.674 L96.066 30.749 L95.719 30.825
-					L95.335 30.901 L94.989 30.979 L94.684 31.053 L94.339 31.094 L94.221 31.973
-					L94.032 32.892 L93.8 33.809 L93.572 34.692 L93.263 35.61 L92.916 36.491
-					L92.534 37.335 L92.073 38.177 L91.613 39.019 L91.076 39.823 L90.461 40.588
-					L89.851 41.276 L89.122 41.966 L88.395 42.577 L87.589 43.151 L86.71 43.686
-					z"/>
-			<path style="fill:url(#AIgd38)"
-				d="M82.345 44.374 L83.492 44.376 L84.604 44.261 L85.674 43.993 L86.711 43.609 L87.667
-					43.076 L88.626 42.426 L89.468 41.663 L90.309 40.821 L91.039 39.861 L91.729
-					38.829 L92.343 37.679 L92.916 36.493 L93.377 35.229 L93.762 33.889 L94.109
-					32.51 L94.339 31.096 L93.841 31.209 L93.342 31.285 L92.806 31.4 L92.31 31.474
-					L91.813 31.552 L91.354 31.664 L90.854 31.741 L90.395 31.856 L90.164 32.661
-					L89.973 33.503 L89.742 34.308 L89.548 35.111 L89.318 35.915 L89.09 36.719
-					L88.783 37.485 L88.437 38.289 L88.017 39.056 L87.554 39.859 L86.978 40.625
-					L86.29 41.391 L85.522 42.12 L84.604 42.885 L83.531 43.651 L82.343 44.377 z"/>
-			<path style="fill:url(#AIgd38)"
-				d="M76.14 45.095 L77.635 45.213 L79.089 45.137 L80.429 44.908 L81.695 44.526 L82.882
-					44.029 L83.994 43.38 L85.027 42.612 L85.945 41.695 L86.789 40.74 L87.556 39.667
-					L88.249 38.519 L88.822 37.297 L89.318 35.993 L89.743 34.653 L90.05 33.276
-					L90.283 31.895 L89.86 31.971 L89.4 32.088 L88.944 32.162 L88.483 32.237
-					L88.024 32.315 L87.524 32.429 L87.027 32.505 L86.527 32.62 L86.375 33.575
-					L86.145 34.532 L85.835 35.492 L85.452 36.409 L84.995 37.327 L84.493 38.245
-					L83.919 39.127 L83.271 39.97 L82.58 40.814 L81.813 41.576 L81.005 42.303 L80.126
-					42.992 L79.205 43.603 L78.21 44.178 L77.213 44.675 L76.141 45.094 z"/>
-			<path style="fill:url(#AIgd36)"
-				d="M72.732 45.475 L73.996 45.4 L75.222 45.211 L76.45 44.905 L77.636 44.447 L78.748 43.911
-					L79.857 43.263 L80.891 42.534 L81.849 41.692 L82.73 40.775 L83.573 39.782
-					L84.303 38.706 L84.953 37.597 L85.489 36.413 L85.949 35.187 L86.297 33.92
-					L86.526 32.621 L86.107 32.695 L85.722 32.732 L85.376 32.771 L85.033 32.81
-					L84.687 32.847 L84.305 32.924 L83.849 33 L83.31 33.075 L82.773 34.187 L82.314
-					35.218 L81.854 36.215 L81.432 37.134 L80.972 38.015 L80.548 38.82 L80.087
-					39.584 L79.589 40.311 L79.052 41.04 L78.439 41.689 L77.751 42.379 L76.986
-					42.99 L76.102 43.64 L75.106 44.251 L73.998 44.863 L72.733 45.473 z"/>
-			<path style="fill:url(#AIgd38)"
-				d="M66.604 45.855 L68.481 45.932 L70.244 45.859 L71.814 45.592 L73.269 45.17 L74.609
-					44.598 L75.796 43.907 L76.909 43.106 L77.902 42.186 L78.823 41.193 L79.667
-					40.121 L80.396 39.012 L81.084 37.823 L81.736 36.639 L82.313 35.452 L82.851
-					34.225 L83.347 33.038 L83.004 33.074 L82.543 33.152 L81.97 33.228 L81.395
-					33.304 L80.782 33.419 L80.245 33.495 L79.789 33.571 L79.442 33.606 L78.982
-					34.68 L78.483 35.754 L77.906 36.748 L77.333 37.703 L76.681 38.584 L75.993 39.463
-					L75.264 40.267 L74.46 41.074 L73.656 41.801 L72.771 42.489 L71.854 43.177
-					L70.894 43.79 L69.899 44.362 L68.827 44.897 L67.755 45.393 L66.606 45.853
-					z"/>
-			<path style="fill:url(#AIgd36)"
-				d="M62.966 46.387 L64 46.35 L65.071 46.198 L66.221 45.929 L67.407 45.51 L68.595 45.015
-					L69.784 44.402 L70.972 43.676 L72.159 42.873 L73.308 41.955 L74.419 40.998
-					L75.454 39.928 L76.453 38.778 L77.332 37.59 L78.136 36.328 L78.827 34.988
-					L79.403 33.608 L78.828 33.687 L78.253 33.761 L77.642 33.798 L77.03 33.875
-					L76.494 33.912 L76.033 33.989 L75.651 34.065 L75.459 34.18 L74.769 34.715
-					L74.08 35.29 L73.351 35.978 L72.622 36.666 L71.895 37.432 L71.128 38.234 L70.361
-					39.078 L69.593 39.923 L68.827 40.802 L68.023 41.644 L67.218 42.486 L66.373
-					43.326 L65.531 44.169 L64.686 44.932 L63.848 45.7 L62.966 46.388 z"/>
-			<path style="fill:url(#AIgd38)"
-				d="M57.375 46.383 L58.372 47.037 L59.404 47.305 L60.438 47.306 L61.511 47.038 L62.582
-					46.502 L63.655 45.773 L64.766 44.857 L65.876 43.824 L66.988 42.636 L68.136
-					41.411 L69.325 40.11 L70.513 38.811 L71.701 37.547 L72.927 36.283 L74.155
-					35.135 L75.381 34.104 L74.956 34.104 L74.462 34.178 L73.886 34.216 L73.313
-					34.332 L72.7 34.411 L72.088 34.524 L71.516 34.639 L71.016 34.714 L70.06 35.594
-					L69.103 36.474 L68.18 37.393 L67.261 38.312 L66.38 39.228 L65.497 40.149
-					L64.617 41.069 L63.772 41.909 L62.928 42.749 L62.086 43.517 L61.281 44.205
-					L60.477 44.818 L59.672 45.353 L58.905 45.812 L58.139 46.155 L57.372 46.384
-					z"/>
-			<path style="fill:url(#AIgd36)"
-				d="M53.046 46.879 L54.618 46.88 L56.11 46.729 L57.452 46.344 L58.756 45.85 L59.943 45.236
-					L61.052 44.471 L62.127 43.631 L63.122 42.711 L64.119 41.717 L65.075 40.684
-					L65.996 39.649 L66.955 38.579 L67.914 37.509 L68.908 36.475 L69.943 35.518
-					L71.015 34.6 L70.633 34.64 L70.175 34.677 L69.598 34.751 L69.026 34.792
-					L68.449 34.865 L67.99 34.903 L67.608 34.944 L67.379 34.943 L66.728 35.094
-					L66.076 35.4 L65.427 35.823 L64.735 36.396 L64.046 37.083 L63.317 37.888
-					L62.551 38.732 L61.782 39.647 L60.902 40.605 L60.019 41.56 L59.022 42.556 L57.99
-					43.515 L56.879 44.47 L55.691 45.35 L54.427 46.152 L53.046 46.881 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M138.274 15.35 L138.274 15.197 L138.314 14.777 L138.352 14.128 L138.392 13.321 L138.431
-					12.364 L138.394 11.331 L138.356 10.259 L138.245 9.148 L138.016 8.115
-					L137.707 7.119 L137.327 6.237 L136.755 5.509 L136.101 4.972 L135.258 4.665
-					L134.224 4.626 L133.038 4.932 L133.423 5.316 L133.766 5.775 L134.111 6.349
-					L134.417 6.962 L134.722 7.651 L134.992 8.34 L135.256 9.107 L135.527 9.911
-					L135.755 10.678 L135.945 11.484 L136.139 12.287 L136.327 13.053 L136.482 13.821
-					L136.634 14.548 L136.748 15.198 L136.861 15.811 L137.051 15.774 L137.205
-					15.737 L137.394 15.659 L137.549 15.622 L137.7 15.543 L137.855 15.468 L138.047
-					15.431 L138.273 15.353 z"/>
-			<defs>
-				<linearGradient id="AIgd52" gradientUnits="userSpaceOnUse" x1="-3690.92"
-					y1="-3526.3" x2="-3702.74" y2="-3558.26"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(79,12,129)"/>
-					<stop offset="0.0701" style="stop-color:rgb(105,12,115)"/>
-					<stop offset="0.209" style="stop-color:rgb(154,10,91)"/>
-					<stop offset="0.3368" style="stop-color:rgb(194,7,72)"/>
-					<stop offset="0.4512" style="stop-color:rgb(224,5,58)"/>
-					<stop offset="0.5481" style="stop-color:rgb(242,0,50)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd52)"
-				d="M136.86 15.925 L136.363 13.436 L135.828 11.328 L135.293 9.527 L134.761 8.035 L134.222
-					6.847 L133.688 5.889 L133.155 5.2 L132.656 4.703 L132.12 4.356 L131.662
-					4.203 L131.16 4.164 L130.74 4.242 L130.321 4.394 L129.939 4.585 L129.591
-					4.814 L129.285 5.044 L129.821 5.541 L130.354 6.114 L130.816 6.652 L131.31 7.263
-					L131.734 7.878 L132.156 8.526 L132.538 9.178 L132.882 9.869 L133.226 10.596
-					L133.532 11.362 L133.839 12.13 L134.107 12.935 L134.334 13.777 L134.564
-					14.619 L134.791 15.501 L134.985 16.42 L135.442 16.343 L135.787 16.307 L136.019
-					16.23 L136.172 16.153 L136.323 16.116 L136.479 16.04 L136.632 16 L136.861
-					15.925 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M134.944 16.651 L134.831 15.733 L134.637 14.698 L134.332 13.548 L133.953 12.322 L133.453
-					11.058 L132.882 9.831 L132.271 8.644 L131.583 7.533 L130.854 6.537
-					L130.089 5.694 L129.286 5.044 L128.444 4.619 L127.563 4.467 L126.681 4.619
-					L125.839 5.118 L124.957 5.996 L125.645 6.494 L126.295 7.07 L126.908 7.644 L127.482
-					8.22 L128.056 8.831 L128.552 9.52 L129.011 10.211 L129.431 10.899 L129.854
-					11.668 L130.197 12.435 L130.542 13.24 L130.809 14.082 L131.076 14.961
-					L131.269 15.881 L131.458 16.84 L131.613 17.834 L132.029 17.72 L132.49 17.568
-					L132.989 17.415 L133.487 17.224 L133.948 17.035 L134.369 16.881 L134.713
-					16.73 L134.943 16.653 z"/>
-			<path style="fill:url(#AIgd52)"
-				d="M120.017 6.607 L120.936 5.995 L121.856 5.651 L122.813 5.536 L123.732 5.651 L124.69
-					5.958 L125.609 6.458 L126.491 7.147 L127.334 7.952 L128.096 8.871 L128.862
-					9.944 L129.512 11.132 L130.084 12.358 L130.58 13.663 L130.964 15.039 L131.27
-					16.419 L131.421 17.835 L130.961 17.95 L130.502 18.066 L130.042 18.216 L129.582
-					18.37 L129.085 18.561 L128.586 18.674 L128.129 18.828 L127.631 18.903
-					L127.285 18.023 L126.98 17.064 L126.597 16.107 L126.249 15.15 L125.87 14.154
-					L125.451 13.156 L125.028 12.2 L124.607 11.282 L124.151 10.398 L123.652
-					9.593 L123.119 8.827 L122.58 8.176 L121.971 7.601 L121.356 7.142 L120.708
-					6.796 L120.018 6.606 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M115.804 7.75 L117.259 7.102 L118.561 6.758 L119.71 6.72 L120.744 6.913 L121.663
-					7.334 L122.469 7.984 L123.193 8.791 L123.843 9.748 L124.418 10.82 L124.913
-					12.008 L125.413 13.237 L125.87 14.462 L126.327 15.726 L126.748 16.99 L127.207
-					18.178 L127.704 19.289 L127.283 19.326 L126.899 19.441 L126.516 19.554 L126.131
-					19.706 L125.75 19.824 L125.366 19.975 L124.945 20.089 L124.523 20.163
-					L124.485 20.012 L124.447 19.629 L124.333 19.131 L124.219 18.442 L124.03
-					17.639 L123.76 16.719 L123.454 15.723 L123.034 14.689 L122.54 13.655 L121.966
-					12.62 L121.238 11.585 L120.435 10.627 L119.475 9.709 L118.405 8.942 L117.177
-					8.251 L115.802 7.751 z"/>
-			<path style="fill:url(#AIgd52)"
-				d="M110.366 8.552 L111.248 7.901 L112.245 7.481 L113.314 7.328 L114.386 7.368 L115.535
-					7.597 L116.683 8.058 L117.791 8.673 L118.902 9.441 L119.972 10.397 L120.969
-					11.472 L121.847 12.697 L122.652 14.039 L123.339 15.455 L123.876 16.988
-					L124.218 18.558 L124.408 20.245 L120.463 21.274 L120.235 20.625 L119.928 19.855
-					L119.622 19.052 L119.24 18.171 L118.779 17.251 L118.322 16.295 L117.785
-					15.334 L117.212 14.378 L116.56 13.421 L115.835 12.501 L115.069 11.659 L114.266
-					10.851 L113.388 10.123 L112.429 9.51 L111.433 8.973 L110.363 8.552 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M120.502 21.387 L119.93 21.502 L119.203 21.654 L118.474 21.884 L117.666 22.113 L116.902
-					22.38 L116.173 22.571 L115.524 22.76 L114.988 22.912 L114.606 21.955
-					L114.185 20.96 L113.763 19.964 L113.343 18.928 L112.922 17.896 L112.464 16.899
-					L111.966 15.904 L111.469 14.907 L110.936 13.989 L110.363 13.144 L109.749
-					12.34 L109.098 11.613 L108.448 10.961 L107.72 10.424 L106.916 10.001 L106.112
-					9.695 L106.804 9.236 L107.568 8.892 L108.374 8.662 L109.254 8.587 L110.172
-					8.663 L111.131 8.894 L112.088 9.277 L113.08 9.853 L114.079 10.581 L115.072
-					11.501 L116.067 12.65 L117.021 13.954 L117.94 15.486 L118.857 17.209
-					L119.7 19.201 L120.502 21.385 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M101.288 11.34 L102.859 10.499 L104.274 10.001 L105.578 9.887 L106.765 10.08 L107.797
-					10.538 L108.793 11.229 L109.634 12.112 L110.439 13.185 L111.127 14.373
-					L111.776 15.638 L112.349 16.979 L112.883 18.319 L113.419 19.621 L113.917 20.886
-					L114.375 22.034 L114.831 23.069 L114.297 23.145 L113.838 23.257 L113.416
-					23.336 L112.994 23.45 L112.573 23.564 L112.114 23.679 L111.616 23.755 L111.044
-					23.867 L110.544 22.834 L110.086 21.798 L109.626 20.804 L109.168 19.846
-					L108.709 18.888 L108.214 18.008 L107.714 17.127 L107.219 16.321 L106.644
-					15.514 L106.034 14.787 L105.422 14.099 L104.734 13.447 L103.965 12.832 L103.164
-					12.296 L102.244 11.798 L101.288 11.338 z"/>
-			<path style="fill:url(#AIgd52)"
-				d="M96.537 12.715 L97.956 11.95 L99.295 11.567 L100.56 11.492 L101.785 11.683 L102.896
-					12.144 L103.965 12.833 L104.961 13.677 L105.882 14.675 L106.723 15.824 L107.525
-					17.011 L108.251 18.238 L108.903 19.502 L109.514 20.768 L110.051 21.916
-					L110.506 23.027 L110.929 23.984 L110.355 24.097 L109.855 24.212 L109.395
-					24.325 L108.974 24.401 L108.516 24.516 L108.055 24.631 L107.519 24.707 L106.906
-					24.822 L106.218 23.289 L105.53 21.872 L104.884 20.57 L104.233 19.382
-					L103.619 18.311 L103.046 17.35 L102.436 16.51 L101.862 15.703 L101.25 15.052
-					L100.637 14.477 L100.026 13.979 L99.376 13.558 L98.723 13.25 L98.038 12.981
-					L97.307 12.826 L96.542 12.713 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M92.937 13.747 L94.315 13.097 L95.622 12.789 L96.844 12.79 L98.034 13.023 L99.104
-					13.481 L100.137 14.135 L101.093 14.979 L102.013 15.936 L102.815 17.008 L103.581
-					18.156 L104.307 19.344 L104.92 20.532 L105.529 21.721 L106.029 22.871
-					L106.485 23.904 L106.906 24.863 L106.447 24.976 L106.027 25.089 L105.603 25.165
-					L105.22 25.281 L104.799 25.358 L104.379 25.433 L103.917 25.546 L103.421
-					25.623 L103.19 24.858 L102.848 24.013 L102.428 23.171 L101.931 22.252 L101.396
-					21.333 L100.745 20.412 L100.096 19.492 L99.368 18.572 L98.603 17.731
-					L97.798 16.885 L96.995 16.119 L96.191 15.467 L95.348 14.854 L94.543 14.356
-					L93.741 13.973 L92.935 13.743 z"/>
-			<path style="fill:url(#AIgd52)"
-				d="M88.608 14.852 L90.025 14.09 L91.405 13.745 L92.784 13.784 L94.085 14.169 L95.349
-					14.781 L96.575 15.66 L97.724 16.698 L98.793 17.845 L99.788 19.074 L100.669
-					20.338 L101.469 21.565 L102.119 22.752 L102.655 23.788 L103.077 24.667 L103.307
-					25.319 L103.42 25.702 L102.846 25.817 L102.348 25.93 L101.85 26.045 L101.35
-					26.16 L100.854 26.275 L100.395 26.349 L99.896 26.426 L99.399 26.502
-					L99.055 25.851 L98.671 25.047 L98.213 24.165 L97.676 23.244 L97.105 22.211
-					L96.491 21.177 L95.845 20.18 L95.154 19.146 L94.427 18.187 L93.66 17.306 L92.858
-					16.502 L92.055 15.85 L91.211 15.313 L90.367 14.968 L89.489 14.816 L88.607
-					14.851 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M85.468 16.077 L86.734 15.235 L87.958 14.776 L89.107 14.663 L90.256 14.853 L91.327
-					15.314 L92.36 16.006 L93.318 16.848 L94.233 17.883 L95.077 18.996 L95.882
-					20.18 L96.609 21.409 L97.296 22.634 L97.87 23.784 L98.405 24.857 L98.826 25.775
-					L99.209 26.541 L98.749 26.618 L98.367 26.732 L98.023 26.847 L97.715 26.96
-					L97.368 27.074 L97.063 27.189 L96.755 27.267 L96.412 27.34 L96.068 26.385
-					L95.647 25.427 L95.225 24.506 L94.765 23.588 L94.228 22.669 L93.697 21.825
-					L93.084 20.981 L92.434 20.176 L91.745 19.409 L90.981 18.721 L90.216 18.107
-					L89.372 17.533 L88.453 17.033 L87.534 16.612 L86.538 16.304 L85.467 16.075
-					z"/>
-			<path style="fill:url(#AIgd52)"
-				d="M81.483 16.993 L82.596 16.571 L83.705 16.305 L84.853 16.228 L85.927 16.306 L87.036
-					16.537 L88.068 16.882 L89.102 17.418 L90.136 18.07 L91.092 18.838 L92.01
-					19.758 L92.891 20.754 L93.733 21.866 L94.535 23.092 L95.224 24.432 L95.912
-					25.85 L96.483 27.341 L95.985 27.418 L95.49 27.494 L94.989 27.609 L94.492 27.762
-					L93.996 27.877 L93.498 28.03 L93.001 28.145 L92.501 28.219 L92.158 27.377
-					L91.815 26.495 L91.468 25.652 L91.126 24.769 L90.704 23.927 L90.285 23.122
-					L89.784 22.28 L89.25 21.513 L88.601 20.784 L87.913 20.056 L87.108 19.404
-					L86.228 18.791 L85.232 18.254 L84.122 17.756 L82.861 17.332 L81.48 16.988
-					z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M75.815 18.329 L77.27 17.72 L78.727 17.335 L80.067 17.146 L81.407 17.109 L82.672
-					17.3 L83.898 17.646 L85.045 18.144 L86.156 18.796 L87.148 19.601 L88.142 20.52
-					L89.026 21.556 L89.866 22.706 L90.63 23.97 L91.282 25.31 L91.893 26.691
-					L92.428 28.182 L91.969 28.259 L91.509 28.335 L90.973 28.413 L90.472 28.487
-					L89.939 28.565 L89.401 28.639 L88.866 28.715 L88.331 28.791 L88.062 27.719
-					L87.679 26.725 L87.259 25.729 L86.726 24.77 L86.151 23.889 L85.5 23.046 L84.812
-					22.241 L84.046 21.512 L83.204 20.823 L82.288 20.249 L81.329 19.71 L80.334
-					19.251 L79.263 18.905 L78.151 18.598 L77.005 18.407 L75.817 18.329 z"/>
-			<path style="fill:url(#AIgd52)"
-				d="M73.021 18.632 L74.323 18.442 L75.585 18.329 L76.848 18.368 L78.076 18.522 L79.3
-					18.829 L80.45 19.214 L81.559 19.712 L82.632 20.325 L83.627 21.054 L84.581 21.898
-					L85.425 22.817 L86.228 23.851 L86.916 25 L87.527 26.226 L88.026 27.567
-					L88.406 28.986 L87.946 29.021 L87.563 29.059 L87.181 29.136 L86.797 29.213
-					L86.413 29.287 L86.031 29.365 L85.571 29.479 L85.075 29.555 L84.424 28.444
-					L83.811 27.371 L83.279 26.413 L82.779 25.457 L82.244 24.613 L81.746 23.809
-					L81.249 23.042 L80.677 22.352 L80.065 21.701 L79.377 21.126 L78.609 20.591
-					L77.767 20.093 L76.772 19.668 L75.7 19.286 L74.436 18.94 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M66.933 19.432 L68.847 18.975 L70.647 18.707 L72.293 18.632 L73.824 18.786 L75.241
-					19.093 L76.543 19.554 L77.73 20.127 L78.804 20.897 L79.834 21.739 L80.751
-					22.699 L81.595 23.733 L82.397 24.845 L83.125 25.992 L83.813 27.219 L84.425
-					28.445 L85.036 29.71 L84.729 29.747 L84.309 29.784 L83.85 29.899 L83.349 29.975
-					L82.853 30.09 L82.391 30.204 L81.972 30.24 L81.626 30.279 L81.055 29.131
-					L80.442 28.096 L79.753 27.1 L79.027 26.182 L78.261 25.299 L77.456 24.493
-					L76.577 23.767 L75.658 23.077 L74.702 22.461 L73.706 21.888 L72.672 21.39
-					L71.602 20.892 L70.491 20.469 L69.344 20.086 L68.155 19.74 L66.933 19.431
-					z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M63.295 19.811 L64.363 19.622 L65.476 19.585 L66.701 19.623 L67.964 19.815 L69.231
-					20.086 L70.531 20.47 L71.834 20.967 L73.136 21.581 L74.436 22.31 L75.66 23.155
-					L76.846 24.075 L77.993 25.11 L79.028 26.259 L79.984 27.484 L80.825 28.826
-					L81.553 30.281 L81.016 30.32 L80.483 30.396 L79.945 30.511 L79.409 30.624
-					L78.95 30.737 L78.565 30.854 L78.259 30.89 L78.069 30.853 L77.3 30.393
-					L76.537 29.856 L75.733 29.243 L74.89 28.554 L74.047 27.825 L73.169 27.057 L72.249
-					26.289 L71.333 25.487 L70.374 24.681 L69.418 23.874 L68.423 23.071 L67.427
-					22.342 L66.394 21.613 L65.399 20.961 L64.328 20.348 L63.297 19.811 z"/>
-			<path style="fill:url(#AIgd18)"
-				d="M58.197 21.262 L59.155 20.307 L60.189 19.735 L61.263 19.505 L62.372 19.582 L63.52
-					19.89 L64.745 20.465 L65.972 21.234 L67.272 22.113 L68.573 23.187 L69.914
-					24.297 L71.254 25.487 L72.594 26.675 L73.971 27.863 L75.348 28.975 L76.724
-					30.01 L78.105 30.93 L77.684 31.004 L77.185 31.041 L76.573 31.082 L75.96 31.119
-					L75.312 31.156 L74.659 31.156 L74.085 31.156 L73.588 31.154 L72.554 30.388
-					L71.561 29.584 L70.565 28.776 L69.647 27.934 L68.728 27.129 L67.845 26.322
-					L66.967 25.517 L66.087 24.75 L65.168 24.062 L64.289 23.411 L63.369 22.836
-					L62.413 22.336 L61.417 21.914 L60.383 21.569 L59.31 21.377 L58.2 21.26 z"/>
-			<defs>
-				<linearGradient id="AIgd69" gradientUnits="userSpaceOnUse" x1="-3772.38"
-					y1="-3509.72" x2="-3797.29" y2="-3537.68"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.83 1900.09)">
-					<stop offset="0" style="stop-color:rgb(79,12,129)"/>
-					<stop offset="0.0701" style="stop-color:rgb(105,12,115)"/>
-					<stop offset="0.209" style="stop-color:rgb(154,10,91)"/>
-					<stop offset="0.3368" style="stop-color:rgb(194,7,72)"/>
-					<stop offset="0.4512" style="stop-color:rgb(224,5,58)"/>
-					<stop offset="0.5481" style="stop-color:rgb(242,0,50)"/>
-					<stop offset="0.6158" style="stop-color:rgb(250,0,47)"/>
-					<stop offset="1" style="stop-color:rgb(247,238,95)"/>
-				</linearGradient>
-			</defs>
-			<path style="fill:url(#AIgd69)"
-				d="M54.368 21.719 L55.978 21.338 L57.471 21.186 L58.886 21.262 L60.229 21.533 L61.491
-					21.994 L62.717 22.569 L63.903 23.298 L65.051 24.103 L66.161 25.022 L67.27
-					25.944 L68.341 26.939 L69.452 27.935 L70.561 28.893 L71.668 29.852 L72.856
-					30.695 L74.041 31.502 L73.661 31.539 L73.163 31.614 L72.587 31.692 L72.011
-					31.728 L71.439 31.807 L70.939 31.879 L70.559 31.92 L70.328 31.957 L69.64 31.955
-					L68.95 31.766 L68.223 31.418 L67.457 30.922 L66.691 30.308 L65.848 29.58
-					L64.969 28.773 L64.05 27.929 L63.091 27.048 L62.06 26.13 L60.951 25.248
-					L59.803 24.404 L58.541 23.596 L57.239 22.868 L55.86 22.217 L54.366 21.717
-					z"/>
-			<path style="fill:url(#AIgd69)"
-				d="M49.543 23.057 L50.96 22.252 L52.455 21.91 L53.91 21.91 L55.4 22.219 L56.895 22.795
-					L58.389 23.599 L59.843 24.559 L61.258 25.593 L62.597 26.742 L63.899 27.892
-					L65.162 28.967 L66.31 29.96 L67.343 30.804 L68.299 31.454 L69.142 31.839
-					L69.868 31.955 L69.258 32.032 L68.605 32.145 L67.878 32.258 L67.113 32.375
-					L66.346 32.449 L65.579 32.564 L64.851 32.602 L64.2 32.642 L63.13 31.836 L62.172
-					31.07 L61.293 30.303 L60.453 29.575 L59.686 28.845 L58.96 28.12 L58.193
-					27.429 L57.467 26.778 L56.738 26.166 L55.934 25.59 L55.093 25.053 L54.174
-					24.557 L53.178 24.096 L52.107 23.713 L50.881 23.365 L49.541 23.058 z"/>
-			<defs>
-				<linearGradient id="AIgd71" gradientUnits="userSpaceOnUse" x1="-3498.52"
-					y1="4158.04" x2="-3482.36" y2="4209.6"
-					gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 -1982.9 3021.38)">
-					<stop offset="0" style="stop-color:rgb(216,231,235)"/>
-					<stop offset="0.0849" style="stop-color:rgb(201,217,222)"/>
-					<stop offset="0.2184" style="stop-color:rgb(165,184,194)"/>
-					<stop offset="0.3836" style="stop-color:rgb(114,136,150)"/>
-					<stop offset="0.5537" style="stop-color:rgb(64,87,102)"/>
-					<stop offset="0.6417" style="stop-color:rgb(102,125,139)"/>
-					<stop offset="0.742" style="stop-color:rgb(146,167,177)"/>
-					<stop offset="0.8374" style="stop-color:rgb(183,200,208)"/>
-					<stop offset="0.9257" style="stop-color:rgb(207,223,228)"/>
-					<stop offset="1" style="stop-color:rgb(216,231,235)"/>
-				</linearGradient>
-			</defs>
-			<g style="fill:url(#AIgd71)">
-				<defs>
-					<linearGradient id="AIgd72" gradientUnits="userSpaceOnUse" x1="-3704.95"
-						y1="-3493.91" x2="-3688.79" y2="-3442.35"
-						gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2110.53 1859.37)">
-						<stop offset="0" style="stop-color:rgb(216,231,235)"/>
-						<stop offset="0.0849" style="stop-color:rgb(201,217,222)"/>
-						<stop offset="0.2184" style="stop-color:rgb(165,184,194)"/>
-						<stop offset="0.3836" style="stop-color:rgb(114,136,150)"/>
-						<stop offset="0.5537" style="stop-color:rgb(64,87,102)"/>
-						<stop offset="0.6417" style="stop-color:rgb(102,125,139)"/>
-						<stop offset="0.742" style="stop-color:rgb(146,167,177)"/>
-						<stop offset="0.8374" style="stop-color:rgb(183,200,208)"/>
-						<stop offset="0.9257" style="stop-color:rgb(207,223,228)"/>
-						<stop offset="1" style="stop-color:rgb(216,231,235)"/>
-					</linearGradient>
-				</defs>
-				<path style="fill:url(#AIgd72)"
-					d="M142.305 7.35 L142.496 6.967 L142.649 6.547 L142.801 6.124 L142.914 5.703 L143.031
-						5.244 L143.146 4.748 L143.223 4.289 L143.265 3.789 L143.301 3.33 L143.336
-						2.832 L143.337 2.333 L143.302 1.873 L143.266 1.414 L143.186 0.957 L143.074
-						0.496 L142.96 0.076 L143.571 0.88 L144.03 1.762 L144.375 2.604 L144.564
-						3.484 L144.64 4.403 L144.64 5.323 L144.524 6.241 L144.33 7.161 L144.102 8.079
-						L143.792 8.962 L143.449 9.841 L143.106 10.721 L142.721 11.564 L142.374
-						12.406 L142.028 13.171 L141.685 13.938 L141.759 13.786 L141.796 13.517 L141.838
-						13.251 L141.838 12.906 L141.875 12.482 L141.875 12.06 L141.875 11.6
-						L141.876 11.104 L141.914 10.605 L141.914 10.107 L141.953 9.573 L141.993
-						9.075 L142.031 8.614 L142.109 8.153 L142.184 7.733 L142.3 7.35 z"/>
-				<path style="fill:url(#AIgd72)"
-					d="M153.974 23.252 L153.245 22.83 L152.516 22.368 L151.829 21.947 L151.141 21.525 L150.491
-						21.142 L149.84 20.72 L149.224 20.335 L148.615 19.915 L147.962 19.531
-						L147.355 19.147 L146.741 18.725 L146.089 18.343 L145.478 17.957 L144.824
-						17.615 L144.138 17.229 L143.449 16.847 L144.059 17.457 L144.672 18.073 L145.285
-						18.684 L145.897 19.26 L146.547 19.871 L147.198 20.407 L147.848 20.946
-						L148.536 21.443 L149.187 21.904 L149.876 22.287 L150.527 22.633 L151.215
-						22.902 L151.903 23.131 L152.591 23.246 L153.282 23.283 L153.973 23.248 z"/>
-				<path style="fill:url(#AIgd72)"
-					d="M148.277 7.928 L147.741 8.236 L147.241 8.581 L146.746 8.926 L146.285 9.27 L145.825
-						9.613 L145.406 9.996 L144.982 10.417 L144.559 10.8 L144.175 11.222 L143.791
-						11.644 L143.409 12.065 L143.064 12.522 L142.681 12.944 L142.335 13.403
-						L141.991 13.862 L141.645 14.321 L141.798 13.825 L141.99 13.326 L142.181 12.789
-						L142.41 12.255 L142.641 11.719 L142.906 11.22 L143.216 10.722 L143.562
-						10.227 L143.944 9.767 L144.405 9.386 L144.903 9.001 L145.44 8.657 L146.052
-						8.388 L146.704 8.159 L147.469 8.007 L148.274 7.931 z"/>
-				<path style="fill:url(#AIgd72)"
-					d="M142.574 3.329 L142.421 4.096 L142.307 4.863 L142.153 5.629 L142.037 6.318 L141.961
-						7.045 L141.847 7.734 L141.768 8.423 L141.653 9.112 L141.576 9.8 L141.459
-						10.489 L141.385 11.14 L141.267 11.829 L141.151 12.518 L141.036 13.207 L140.886
-						13.896 L140.729 14.623 L140.653 13.781 L140.54 12.976 L140.463 12.133
-						L140.387 11.292 L140.35 10.485 L140.312 9.68 L140.351 8.875 L140.39 8.111
-						L140.466 7.344 L140.582 6.656 L140.776 5.967 L141.005 5.316 L141.274 4.743
-						L141.658 4.206 L142.08 3.746 L142.577 3.325 z"/>
-				<path style="fill:url(#AIgd72)"
-					d="M146.674 2.071 L147.366 2.719 L147.782 3.448 L147.971 4.214 L148.011 5.019 L147.858
-						5.823 L147.551 6.666 L147.127 7.51 L146.629 8.351 L146.054 9.155 L145.443
-						9.96 L144.79 10.724 L144.14 11.413 L143.526 12.102 L142.992 12.674 L142.529
-						13.213 L142.146 13.631 L142.223 12.484 L142.377 11.489 L142.568 10.645
-						L142.875 9.881 L143.181 9.231 L143.567 8.657 L143.949 8.122 L144.373 7.621
-						L144.756 7.125 L145.18 6.63 L145.562 6.092 L145.869 5.479 L146.176 4.791
-						L146.406 4.025 L146.6 3.106 L146.675 2.074 z"/>
-				<path style="fill:url(#AIgd72)"
-					d="M141.763 14.319 L141.763 13.514 L141.724 12.749 L141.69 11.984 L141.65 11.216 L141.614
-						10.487 L141.537 9.76 L141.461 9.033 L141.388 8.342 L141.271 7.654 L141.157
-						6.926 L140.968 6.237 L140.816 5.548 L140.62 4.86 L140.352 4.171 L140.123
-						3.482 L139.817 2.793 L140.928 3.866 L141.846 4.9 L142.495 5.859 L142.952
-						6.779 L143.261 7.658 L143.412 8.463 L143.449 9.269 L143.372 9.996 L143.177
-						10.685 L142.99 11.336 L142.72 11.949 L142.449 12.482 L142.219 13.019
-						L141.99 13.478 L141.838 13.937 L141.76 14.32 z"/>
-				<path style="fill:url(#AIgd72)"
-					d="M152.982 16.97 L152.369 17.084 L151.755 17.2 L151.144 17.275 L150.531 17.35 L149.922
-						17.388 L149.306 17.425 L148.693 17.425 L148.118 17.425 L147.506 17.386
-						L146.932 17.386 L146.319 17.309 L145.746 17.271 L145.133 17.231 L144.558
-						17.156 L143.946 17.077 L143.372 17.002 L143.87 17.231 L144.368 17.423 L144.903
-						17.654 L145.44 17.844 L146.014 18.037 L146.59 18.188 L147.2 18.344 L147.81
-						18.42 L148.422 18.459 L149.073 18.459 L149.724 18.42 L150.378 18.27
-						L151.029 18.079 L151.68 17.809 L152.328 17.428 L152.982 16.968 z"/>
-				<path style="fill:url(#AIgd72)"
-					d="M149.417 20.07 L149.878 20.148 L150.297 20.223 L150.758 20.338 L151.215 20.453 L151.678
-						20.647 L152.134 20.798 L152.555 20.989 L153.015 21.219 L153.436 21.449
-						L153.857 21.716 L154.24 21.987 L154.626 22.255 L154.969 22.562 L155.277
-						22.869 L155.581 23.176 L155.851 23.52 L155.582 22.603 L155.16 21.795 L154.666
-						21.107 L154.051 20.456 L153.363 19.92 L152.595 19.42 L151.754 19 L150.872
-						18.653 L149.953 18.347 L149.034 18.04 L148.079 17.809 L147.121 17.579
-						L146.164 17.386 L145.245 17.197 L144.402 17.043 L143.56 16.851 L143.98 17.004
-						L144.554 17.31 L145.244 17.773 L146.085 18.27 L146.928 18.805 L147.807
-						19.304 L148.649 19.764 L149.417 20.072 z"/>
-				<path style="fill:url(#AIgd72)"
-					d="M151.174 26.926 L151.519 26.045 L151.636 25.201 L151.52 24.359 L151.213 23.593 L150.756
-						22.864 L150.144 22.137 L149.416 21.447 L148.612 20.833 L147.769 20.22
-						L146.89 19.684 L145.971 19.146 L145.087 18.687 L144.286 18.267 L143.519
-						17.88 L142.868 17.536 L142.372 17.227 L142.904 18.34 L143.442 19.259 L144.015
-						19.987 L144.551 20.639 L145.125 21.137 L145.699 21.596 L146.273 21.942
-						L146.847 22.288 L147.418 22.634 L147.995 23.016 L148.567 23.4 L149.103 23.86
-						L149.64 24.433 L150.175 25.124 L150.672 25.93 L151.17 26.925 z"/>
-				<path style="fill:url(#AIgd72)"
-					d="M141.529 17.497 L141.951 18.149 L142.371 18.801 L142.792 19.451 L143.172 20.064 L143.518
-						20.677 L143.863 21.326 L144.209 21.94 L144.514 22.553 L144.818 23.205
-						L145.086 23.855 L145.357 24.468 L145.586 25.118 L145.776 25.807 L145.968
-						26.457 L146.12 27.146 L146.272 27.876 L146.656 26.421 L146.847 25.156 L146.888
-						24.007 L146.773 23.013 L146.544 22.169 L146.198 21.403 L145.778 20.751
-						L145.32 20.214 L144.782 19.715 L144.247 19.294 L143.674 18.948 L143.137
-						18.642 L142.641 18.336 L142.181 18.068 L141.839 17.761 L141.529 17.49 z"/>
-			</g>
-		</g>
-	</g>
-	<ellipse id="egg" cx="220.824" cy="280.532" rx="23.1765" ry="31"
-		transform="matrix(0.713278 -0.179023 0 0.695623 -108.841 -128.358) translate(31.3383 9.75637) translate(0 1.69125) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(1.40198 0.360808) translate(1.40198 0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(-1.40198 -0.360808) translate(180.385 228.832) scale(0.945604 0.945604) translate(-180.385 -228.832)"
-		
-		 style="fill:url(#black-white_1);stroke:rgb(0,0,0);stroke-width:2"/>
-	<g id="apache_text" style="font-family:Tahoma;font-size:26;font-weight:bold"
-		transform="translate(38.8235 40) translate(-9.41176 249.412) translate(41.1765 -10.5882) translate(-37.6471 30.5882) translate(-101.176 -295.294) translate(62.3529 -2.35294) translate(14.1176 2.35294) translate(49.4118 16.4706) translate(-57.6471 -18.8235) translate(149.94 7.8) scale(1.14911 1.14911) translate(-149.94 -7.8) translate(0 5.11905) translate(-3.48095 5.22143) translate(13.0536 0.870239) translate(-27.8476 -4.35119) translate(-0.870239 2.61072) translate(-29.5881 -22.6262) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(0.870239 0) translate(0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(-0.870239 0) translate(105.764 4.69752) scale(0.945604 0.945604) translate(-105.764 -4.69752)"
-		>
-		<text x="150" y="23" style="font-size:20;text-anchor:start">Apache</text>
-	</g>
-	<g id="incubator_text"
-		transform="translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(1 0) translate(1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(-1 0) translate(42.1768 0.882371) scale(0.945604 0.945604) translate(-42.1768 -0.882371)"
-		>
-		<g
-			transform="translate(63.5294 2.35294) translate(15.2941 4.70588) translate(-3.52941 -2.35294) translate(44.7059 63.5294) translate(-49.4118 -63.5294) translate(83.4904 40.1873) scale(1.10418 1.10418) translate(-83.4904 -40.1873) translate(0 5.32735) translate(-15.396 -4.52825) translate(-6.33955 2.71695) translate(0 0.905649) translate(-30.7921 -23.5469) translate(-0.905649 0)"
-			>
-			<path
-				transform="translate(22.3529 103.529) translate(0 1.17647) translate(-101.176 -295.294) translate(32.9412 92.9412) translate(-30.5882 -94.1176)"
-				
-				d="M166.732 239.981 L166.732 258 L159.961 258 L159.961 239.981 zM163.384 231.952 C164.301
-					231.952 165.094 232.274 165.764 232.919 C166.434 233.564 166.769 234.327
-					166.769 235.207 C166.769 236.148 166.452 236.92 165.819 237.523 C165.185
-					238.126 164.373 238.427 163.384 238.427 C162.394 238.427 161.582 238.126
-					160.948 237.523 C160.315 236.92 159.998 236.148 159.998 235.207 C159.998 234.327
-					160.333 233.564 161.003 232.919 C161.673 232.274 162.466 231.952 163.384
-					231.952 z"/>
-			<path
-				transform="translate(22.3529 103.529) translate(0 1.17647) translate(-101.176 -295.294) translate(32.9412 92.9412) translate(-30.5882 -94.1176)"
-				
-				d="M186.749 258 L179.978 258 L179.978 247.824 C179.978 246.789 179.556 246.271 178.711
-					246.271 C177.878 246.271 177.462 246.789 177.462 247.824 L177.462 258 L170.691
-					258 L170.691 247.951 C170.691 245.604 171.468 243.628 173.021 242.021
-					C174.575 240.414 176.477 239.611 178.729 239.611 C181.306 239.611 183.371
-					240.544 184.924 242.409 C186.141 243.866 186.749 245.894 186.749 248.493 z"/>
-			<path
-				transform="translate(22.3529 103.529) translate(0 1.17647) translate(-101.176 -295.294) translate(32.9412 92.9412) translate(-30.5882 -94.1176)"
-				
-				d="M201.773 249.704 L208.476 249.451 C208.283 252.051 207.313 254.187 205.568 255.86
-					C203.822 257.533 201.696 258.37 199.192 258.37 C196.543 258.37 194.306 257.449
-					192.482 255.608 C190.658 253.766 189.746 251.509 189.746 248.837 C189.746
-					246.297 190.667 244.125 192.509 242.319 C194.352 240.514 196.561 239.611
-					199.138 239.611 C201.39 239.611 203.377 240.321 205.098 241.741 C206.82 243.161
-					207.892 244.972 208.313 247.174 L201.466 247.427 C200.876 246.656 200.13
-					246.271 199.227 246.271 C198.457 246.271 197.825 246.524 197.331 247.03
-					C196.838 247.536 196.591 248.174 196.591 248.945 C196.591 249.728 196.853
-					250.385 197.376 250.915 C197.9 251.445 198.553 251.71 199.335 251.71 C200.479
-					251.71 201.291 251.041 201.773 249.704 z"/>
-			<path
-				transform="translate(22.3529 103.529) translate(0 1.17647) translate(-101.176 -295.294) translate(32.9412 92.9412) translate(-30.5882 -94.1176)"
-				
-				d="M211.428 240.24 L218.199 240.24 L218.199 250.412 C218.199 251.45 218.621 251.969
-					219.466 251.969 C220.299 251.969 220.715 251.45 220.715 250.412 L220.715 240.24
-					L227.486 240.24 L227.486 250.286 C227.486 252.626 226.709 254.602 225.156
-					256.213 C223.602 257.824 221.7 258.629 219.448 258.629 C216.883 258.629
-					214.818 257.694 213.253 255.824 C212.036 254.364 211.428 252.338 211.428 249.744
-					z"/>
-			<path
-				transform="translate(22.3529 103.529) translate(0 1.17647) translate(-101.176 -295.294) translate(32.9412 92.9412) translate(-30.5882 -94.1176)"
-				
-				d="M237.809 233.321 L237.809 248.096 C237.809 250.505 238.669 251.71 240.39 251.71 C241.125
-					251.71 241.747 251.459 242.259 250.958 C242.77 250.457 243.026 249.851
-					243.026 249.138 C243.026 248.401 242.786 247.783 242.305 247.282 C241.824
-					246.781 241.236 246.53 240.539 246.53 C240.046 246.53 239.482 246.745 238.845
-					247.174 L238.845 239.727 C239.64 239.65 240.243 239.611 240.653 239.611
-					C243.195 239.611 245.374 240.528 247.187 242.361 C249.001 244.194 249.908
-					246.4 249.908 248.981 C249.908 251.623 248.985 253.848 247.14 255.657 C245.295
-					257.466 243.027 258.37 240.337 258.37 C238.986 258.37 237.669 258.075
-					236.384 257.484 C235.1 256.893 234.041 256.097 233.209 255.096 C231.762 253.359
-					231.038 251.11 231.038 248.349 L231.038 233.321 z"/>
-			<path
-				transform="translate(22.3529 103.529) translate(0 1.17647) translate(-101.176 -295.294) translate(32.9412 92.9412) translate(-30.5882 -94.1176)"
-				
-				d="M262.895 251.24 L262.895 258.235 C262.342 258.325 261.836 258.37 261.379 258.37 C258.673
-					258.37 256.417 257.478 254.613 255.695 C252.808 253.912 251.906 251.677
-					251.906 248.991 C251.906 246.376 252.818 244.159 254.641 242.34 C256.465
-					240.521 258.683 239.611 261.295 239.611 C264.208 239.611 266.504 240.464
-					268.183 242.171 C269.862 243.877 270.702 246.208 270.702 249.162 L270.702
-					258 L263.931 258 L263.931 249.65 C263.931 248.7 263.701 247.943 263.241 247.378
-					C262.781 246.813 262.163 246.53 261.386 246.53 C260.682 246.53 260.072
-					246.789 259.559 247.306 C259.045 247.824 258.788 248.437 258.788 249.147 C258.788
-					249.893 259.021 250.507 259.488 250.988 C259.954 251.469 260.546 251.71
-					261.263 251.71 C261.849 251.71 262.393 251.553 262.895 251.24 z"/>
-			<path
-				transform="translate(22.3529 103.529) translate(0 1.17647) translate(-101.176 -295.294) translate(32.9412 92.9412) translate(-30.5882 -94.1176)"
-				
-				d="M280.655 233.321 L280.655 240.24 L283.689 240.24 L283.689 247.381 L280.655 247.381
-					C280.655 248.814 280.88 249.801 281.329 250.343 C281.778 250.885 282.602
-					251.156 283.8 251.156 L283.8 258.253 C283.451 258.257 283.192 258.259 283.024
-					258.259 C281.494 258.259 280.052 257.904 278.697 257.195 C277.343 256.485
-					276.256 255.523 275.437 254.309 C274.402 252.757 273.884 250.701 273.884
-					248.14 L273.884 233.321 z"/>
-			<path
-				transform="translate(22.3529 103.529) translate(0 1.17647) translate(-101.176 -295.294) translate(32.9412 92.9412) translate(-30.5882 -94.1176)"
-				
-				d="M295.534 239.611 C298.092 239.611 300.284 240.53 302.112 242.367 C303.939 244.204
-					304.853 246.406 304.853 248.973 C304.853 251.575 303.927 253.792 302.075 255.623
-					C300.224 257.454 297.989 258.37 295.372 258.37 C292.754 258.37 290.516
-					257.451 288.659 255.614 C286.801 253.777 285.872 251.563 285.872 248.973
-					C285.872 246.334 286.801 244.114 288.659 242.313 C290.516 240.512 292.808
-					239.611 295.534 239.611 zM295.353 246.271 C294.631 246.271 294.018 246.534
-					293.512 247.06 C293.007 247.585 292.754 248.229 292.754 248.991 C292.754 249.74
-					293.01 250.38 293.521 250.912 C294.033 251.444 294.643 251.71 295.353
-					251.71 C296.076 251.71 296.692 251.444 297.204 250.912 C297.715 250.38 297.971
-					249.74 297.971 248.991 C297.971 248.229 297.718 247.585 297.213 247.06
-					C296.707 246.534 296.087 246.271 295.353 246.271 z"/>
-			<path
-				transform="translate(22.3529 103.529) translate(0 1.17647) translate(-101.176 -295.294) translate(32.9412 92.9412) translate(-30.5882 -94.1176)"
-				
-				d="M317.544 239.799 L317.544 247.03 C317.077 246.771 316.652 246.641 316.269 246.641
-					C315.047 246.641 314.436 247.578 314.436 249.451 L314.436 258 L307.665 258
-					L307.665 248.15 C307.665 245.55 308.375 243.477 309.796 241.931 C311.217 240.384
-					313.113 239.611 315.485 239.611 C316.015 239.611 316.701 239.674 317.544
-					239.799 z"/>
-		</g>
-	</g>
-</svg>
diff --git a/assets/images/apache-incubator-logo.png b/assets/images/apache-incubator-logo.png
deleted file mode 100644
index 81fb31e..0000000
--- a/assets/images/apache-incubator-logo.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/apache-incubator.png b/assets/images/apache-incubator.png
deleted file mode 100644
index a080fac..0000000
--- a/assets/images/apache-incubator.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/apache_incubator_logo.png b/assets/images/apache_incubator_logo.png
deleted file mode 100644
index ac52018..0000000
--- a/assets/images/apache_incubator_logo.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/asf_logo_wide.gif b/assets/images/asf_logo_wide.gif
deleted file mode 100644
index b240328..0000000
--- a/assets/images/asf_logo_wide.gif
+++ /dev/null
Binary files differ
diff --git a/assets/images/asf_logo_wide_small.png b/assets/images/asf_logo_wide_small.png
deleted file mode 100644
index 865de17..0000000
--- a/assets/images/asf_logo_wide_small.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/egg-logo-source.svg b/assets/images/egg-logo-source.svg
deleted file mode 100644
index d365ab1a..0000000
--- a/assets/images/egg-logo-source.svg
+++ /dev/null
@@ -1,26456 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
-   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="229"
-   height="57"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.91 r13725"
-   sodipodi:docname="egg-logo-source.svg"
-   style="display:inline"
-   inkscape:export-filename="/Users/marvin/Desktop/egg_logo.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4105">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop4107" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop4109" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4095">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0.2820513;"
-         offset="0"
-         id="stop4097" />
-      <stop
-         id="stop4099"
-         offset="0.53076243"
-         style="stop-color:#d3d0c7;stop-opacity:0.4627451;" />
-      <stop
-         style="stop-color:#7e765d;stop-opacity:0.4627451;"
-         offset="1"
-         id="stop4101" />
-      <stop
-         style="stop-color:#534927;stop-opacity:0.46153846;"
-         offset="1"
-         id="stop4103" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4083">
-      <stop
-         id="stop4085"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:0.2820513;" />
-      <stop
-         style="stop-color:#d3d0c7;stop-opacity:0.4627451;"
-         offset="0.50889754"
-         id="stop4087" />
-      <stop
-         id="stop4089"
-         offset="1"
-         style="stop-color:#7e765d;stop-opacity:0.4627451;" />
-      <stop
-         id="stop4091"
-         offset="1"
-         style="stop-color:#534927;stop-opacity:0.46153846;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4058">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0.2820513;"
-         offset="0"
-         id="stop4060" />
-      <stop
-         id="stop4064"
-         offset="0.50889754"
-         style="stop-color:#d3d0c7;stop-opacity:0.4627451;" />
-      <stop
-         style="stop-color:#7e765d;stop-opacity:0.4627451;"
-         offset="0.87239581"
-         id="stop4066" />
-      <stop
-         style="stop-color:#534927;stop-opacity:0.46153846;"
-         offset="1"
-         id="stop4062" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3766">
-      <stop
-         id="stop3768"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:0.4627451;" />
-      <stop
-         id="stop3770"
-         offset="1"
-         style="stop-color:#83733d;stop-opacity:0.46153846;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3756">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0.4627451;"
-         offset="0"
-         id="stop3758" />
-      <stop
-         style="stop-color:#83733d;stop-opacity:0.46153846;"
-         offset="1"
-         id="stop3760" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4095"
-       id="radialGradient4093"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.08659642,0.02218857,-0.0442415,0.1726635,16.939251,932.17833)"
-       cx="343.76776"
-       cy="509.64377"
-       fx="343.76776"
-       fy="509.64377"
-       r="222.88705" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4105"
-       id="radialGradient4111"
-       cx="74.991119"
-       cy="309.08582"
-       fx="74.991119"
-       fy="309.08582"
-       r="32.109375"
-       gradientTransform="matrix(0.56884535,0.47604822,-0.81081909,0.96887379,224.10995,670.75846)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4105"
-       id="radialGradient4159"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.47012662,0.3934337,-0.67010767,0.80073315,193.38695,-261.98537)"
-       cx="74.991119"
-       cy="309.08582"
-       fx="74.991119"
-       fy="309.08582"
-       r="32.109375" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4095"
-       id="radialGradient4161"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.06866755,0.01759466,-0.03508178,0.13691537,22.177336,-43.19661)"
-       cx="343.76776"
-       cy="509.64377"
-       fx="343.76776"
-       fy="509.64377"
-       r="222.88705" />
-    <linearGradient
-       id="SVGID_10_"
-       gradientUnits="userSpaceOnUse"
-       x1="-6953.4072"
-       y1="1134.7161"
-       x2="-6011.9995"
-       y2="1134.7161"
-       gradientTransform="matrix(0.00477841,-0.01024769,0.01024769,0.00477841,227.93882,-47.061733)">
-      <stop
-         offset="0.3233"
-         style="stop-color:#9E2064"
-         id="stop12656" />
-      <stop
-         offset="0.6302"
-         style="stop-color:#C92037"
-         id="stop12658" />
-      <stop
-         offset="0.7514"
-         style="stop-color:#CD2335"
-         id="stop12660" />
-      <stop
-         offset="1"
-         style="stop-color:#E97826"
-         id="stop12662" />
-    </linearGradient>
-    <linearGradient
-       id="SVGID_9_"
-       gradientUnits="userSpaceOnUse"
-       x1="-9346.126"
-       y1="1137.7247"
-       x2="-5086.9941"
-       y2="1137.7247"
-       gradientTransform="matrix(0.00477841,-0.01024769,0.01024769,0.00477841,227.93882,-47.061733)">
-      <stop
-         offset="0.3233"
-         style="stop-color:#9E2064"
-         id="stop12641" />
-      <stop
-         offset="0.6302"
-         style="stop-color:#C92037"
-         id="stop12643" />
-      <stop
-         offset="0.7514"
-         style="stop-color:#CD2335"
-         id="stop12645" />
-      <stop
-         offset="1"
-         style="stop-color:#E97826"
-         id="stop12647" />
-    </linearGradient>
-    <linearGradient
-       id="SVGID_8_"
-       gradientUnits="userSpaceOnUse"
-       x1="-9346.126"
-       y1="1152.7261"
-       x2="-5086.9941"
-       y2="1152.7261"
-       gradientTransform="matrix(0.00477841,-0.01024769,0.01024769,0.00477841,227.93882,-47.061733)">
-      <stop
-         offset="0.3233"
-         style="stop-color:#9E2064"
-         id="stop12626" />
-      <stop
-         offset="0.6302"
-         style="stop-color:#C92037"
-         id="stop12628" />
-      <stop
-         offset="0.7514"
-         style="stop-color:#CD2335"
-         id="stop12630" />
-      <stop
-         offset="1"
-         style="stop-color:#E97826"
-         id="stop12632" />
-    </linearGradient>
-    <linearGradient
-       id="SVGID_7_"
-       gradientUnits="userSpaceOnUse"
-       x1="-9610.334"
-       y1="999.73297"
-       x2="-5351.2017"
-       y2="999.73297"
-       gradientTransform="matrix(0.00477841,-0.01024769,0.01024769,0.00477841,227.93882,-47.061733)">
-      <stop
-         offset="0.3233"
-         style="stop-color:#9E2064"
-         id="stop12611" />
-      <stop
-         offset="0.6302"
-         style="stop-color:#C92037"
-         id="stop12613" />
-      <stop
-         offset="0.7514"
-         style="stop-color:#CD2335"
-         id="stop12615" />
-      <stop
-         offset="1"
-         style="stop-color:#E97826"
-         id="stop12617" />
-    </linearGradient>
-    <linearGradient
-       id="SVGID_6_"
-       gradientUnits="userSpaceOnUse"
-       x1="-9346.126"
-       y1="1021.6218"
-       x2="-5086.9941"
-       y2="1021.6218"
-       gradientTransform="matrix(0.00477841,-0.01024769,0.01024769,0.00477841,227.93882,-47.061733)">
-      <stop
-         offset="0.3233"
-         style="stop-color:#9E2064"
-         id="stop12600" />
-      <stop
-         offset="0.6302"
-         style="stop-color:#C92037"
-         id="stop12602" />
-      <stop
-         offset="0.7514"
-         style="stop-color:#CD2335"
-         id="stop12604" />
-      <stop
-         offset="1"
-         style="stop-color:#E97826"
-         id="stop12606" />
-    </linearGradient>
-    <linearGradient
-       id="SVGID_5_"
-       gradientUnits="userSpaceOnUse"
-       x1="-9035.5029"
-       y1="638.4408"
-       x2="-6797.2012"
-       y2="638.4408"
-       gradientTransform="matrix(0.00477841,-0.01024769,0.01024769,0.00477841,227.93882,-47.061733)">
-      <stop
-         offset="0"
-         style="stop-color:#282662"
-         id="stop12589" />
-      <stop
-         offset="9.548390e-02"
-         style="stop-color:#662E8D"
-         id="stop12591" />
-      <stop
-         offset="0.7882"
-         style="stop-color:#9F2064"
-         id="stop12593" />
-      <stop
-         offset="0.9487"
-         style="stop-color:#CD2032"
-         id="stop12595" />
-    </linearGradient>
-    <linearGradient
-       id="SVGID_4_"
-       gradientUnits="userSpaceOnUse"
-       x1="-9346.126"
-       y1="580.81702"
-       x2="-5086.9941"
-       y2="580.81702"
-       gradientTransform="matrix(0.00477841,-0.01024769,0.01024769,0.00477841,227.93882,-47.061733)">
-      <stop
-         offset="0.3233"
-         style="stop-color:#9E2064"
-         id="stop12578" />
-      <stop
-         offset="0.6302"
-         style="stop-color:#C92037"
-         id="stop12580" />
-      <stop
-         offset="0.7514"
-         style="stop-color:#CD2335"
-         id="stop12582" />
-      <stop
-         offset="1"
-         style="stop-color:#E97826"
-         id="stop12584" />
-    </linearGradient>
-    <linearGradient
-       id="SVGID_3_"
-       gradientUnits="userSpaceOnUse"
-       x1="-9071.207"
-       y1="1047.6898"
-       x2="-6533.1782"
-       y2="1047.6898"
-       gradientTransform="matrix(0.00477841,-0.01024769,0.01024769,0.00477841,227.93882,-47.061733)">
-      <stop
-         offset="0"
-         style="stop-color:#282662"
-         id="stop12567" />
-      <stop
-         offset="9.548390e-02"
-         style="stop-color:#662E8D"
-         id="stop12569" />
-      <stop
-         offset="0.7882"
-         style="stop-color:#9F2064"
-         id="stop12571" />
-      <stop
-         offset="0.9487"
-         style="stop-color:#CD2032"
-         id="stop12573" />
-    </linearGradient>
-    <linearGradient
-       id="SVGID_2_"
-       gradientUnits="userSpaceOnUse"
-       x1="-9585.3418"
-       y1="620.50482"
-       x2="-5326.209"
-       y2="620.50482"
-       gradientTransform="matrix(0.00477841,-0.01024769,0.01024769,0.00477841,227.93882,-47.061733)">
-      <stop
-         offset="0.3233"
-         style="stop-color:#9E2064"
-         id="stop12556" />
-      <stop
-         offset="0.6302"
-         style="stop-color:#C92037"
-         id="stop12558" />
-      <stop
-         offset="0.7514"
-         style="stop-color:#CD2335"
-         id="stop12560" />
-      <stop
-         offset="1"
-         style="stop-color:#E97826"
-         id="stop12562" />
-    </linearGradient>
-    <linearGradient
-       id="SVGID_1_"
-       gradientUnits="userSpaceOnUse"
-       x1="-5167.0962"
-       y1="697.55487"
-       x2="-4570.1162"
-       y2="1395.619"
-       gradientTransform="matrix(0.00477841,-0.01024769,0.01024769,0.00477841,227.93882,-47.061733)">
-      <stop
-         offset="0"
-         style="stop-color:#F69923"
-         id="stop12531" />
-      <stop
-         offset="0.3123"
-         style="stop-color:#F79A23"
-         id="stop12533" />
-      <stop
-         offset="0.8383"
-         style="stop-color:#E97826"
-         id="stop12535" />
-    </linearGradient>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="1"
-     inkscape:cx="161.20551"
-     inkscape:cy="34.630172"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:window-width="1123"
-     inkscape:window-height="856"
-     inkscape:window-x="85"
-     inkscape:window-y="3"
-     inkscape:window-maximized="0"
-     showguides="true" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:groupmode="layer"
-     id="layer2"
-     inkscape:label="Feather"
-     transform="translate(0,-995.36218)"
-     style="display:none"
-     sodipodi:insensitive="true">
-    <switch
-       id="switch11992"
-       transform="matrix(-0.19988634,0,0,0.19988634,214.81724,1002.239)">
-      <foreignObject
-         id="foreignObject11994"
-         height="1"
-         width="1"
-         y="0"
-         x="0"
-         requiredExtensions="http://ns.adobe.com/AdobeIllustrator/10.0/">
-        <i:pgfRef
-           xlink:href="#adobe_illustrator_pgf" />
-      </foreignObject>
-      <g
-         id="g11996"
-         i:extraneous="self">
-        <g
-           i:rgbTrio="#4F008000FFFF"
-           i:dimmedPercent="50"
-           i:layer="yes"
-           id="Layer_1">
-          <g
-             id="g11999">
-            <g
-               id="g12001">
-              <path
-                 id="path12003"
-                 d="m 0.325,76.601 c 25.488,-3.528 119.592,-8.352 161.568,-15.264 33.768,-5.544 66.744,-15.624 98.208,-26.208 8.137,-2.736 22.536,-8.352 31.752,-13.32 5.832,-4.464 19.873,-11.088 23.688,-17.352 C 254.558,33.473 230.005,41.465 158.438,56.009 129.421,61.985 23.797,70.625 0.325,76.601 Z"
-                 i:knockout="Off"
-                 inkscape:connector-curvature="0"
-                 style="stroke:#000000;stroke-width:0.50400001" />
-              <g
-                 id="g12005">
-                <path
-                   id="path12007"
-                   d="m 124.093,66.665 c 0.72,-0.504 1.369,-0.792 2.016,-0.864 -2.664,0.144 -6.912,0.648 -9.864,0.936 -1.008,0.864 -1.944,1.728 -2.735,2.52 l 10.583,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path12009"
-                   d="m 120.926,69.329 c 2.087,-2.016 3.815,-3.384 5.183,-3.528 -2.664,0.144 -6.912,0.648 -9.864,0.936 -2.016,1.728 -3.744,3.456 -5.256,5.112 l 9.937,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path12011"
-                   d="m 124.093,66.665 c -1.583,1.008 -3.456,2.952 -5.616,5.256 l -9.72,2.448 c 1.368,-1.656 2.952,-3.384 4.753,-5.112 l 10.583,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path12013"
-                   d="m 120.926,69.329 c -1.44,1.512 -3.024,3.24 -4.753,5.184 l -9.648,2.376 c 1.44,-1.584 2.88,-3.312 4.464,-5.04 l 9.937,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path12015"
-                   d="m 118.477,71.921 c -1.44,1.584 -2.952,3.384 -4.608,5.112 l -9.648,2.376 c 1.584,-1.584 2.952,-3.24 4.536,-5.04 l 9.72,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path12017"
-                   d="m 116.173,74.513 c -1.512,1.656 -3.096,3.456 -4.752,5.112 l -10.007,2.52 c 1.871,-1.656 3.527,-3.384 5.111,-5.256 l 9.648,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path12019"
-                   d="m 113.869,77.033 c -1.656,1.8 -3.383,3.6 -5.184,5.256 l -11.807,2.88 c 3.024,-1.656 5.327,-3.6 7.343,-5.76 l 9.648,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <g
-                   id="g12021">
-                  <g
-                     id="g12023">
-                    <path
-                       id="path12025"
-                       d="m 91.981,88.409 c -0.432,-0.216 -0.935,-0.36 -1.368,-0.648 4.752,-1.44 8.064,-3.384 10.801,-5.616 l 10.007,-2.52"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.50400001" />
-                  </g>
-                </g>
-                <path
-                   id="path12027"
-                   d="m 108.685,82.289 c -5.687,5.04 -11.88,8.568 -18.072,5.472 2.376,-0.72 4.464,-1.584 6.265,-2.592 l 11.807,-2.88 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <path
-                   id="path12029"
-                   d="m 105.157,85.097 c -4.248,3.096 -8.712,4.824 -13.176,3.312 l 13.176,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0010" />
-                <path
-                   id="path12031"
-                   d="m 90.613,87.761 2.736,0.936 2.664,0.216 2.664,-0.432 2.664,-1.08 2.592,-1.44 2.592,-1.872 2.449,-2.16 2.447,-2.304 2.304,-2.376 2.16,-2.376 2.089,-2.304 1.943,-2.16 1.8,-1.8 1.656,-1.44 1.44,-0.936 1.296,-0.432 -1.08,0.072 -1.151,0.072 -1.297,0.144 -1.296,0.144 -1.296,0.144 -1.296,0.144 -1.296,0.072 -1.152,0.144 -1.8,1.656 -1.728,1.584 -1.512,1.584 -1.368,1.584 -1.368,1.512 -1.296,1.512 -1.223,1.44 -1.297,1.368 -1.296,1.368 -1.368,1.224 -1.44,1.224 -1.656,1.152 -1.728,1.08 -1.944,1.008 -2.16,0.936 -2.448,0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12033">
-                <path
-                   id="path12035"
-                   d="m 103.357,67.961 c 0,0 0,0.072 -0.072,0.072 l 0.072,-0.072 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path12037"
-                   d="m 105.013,67.889 c -0.575,0.072 -1.152,0.072 -1.656,0.072 -0.072,0.144 -0.144,0.288 -0.288,0.432 l 1.944,-0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path12039"
-                   d="m 103.357,67.961 c 1.081,0 2.088,-0.072 3.168,-0.216 l -3.599,0.936 c 0.143,-0.216 0.287,-0.504 0.359,-0.648 l 0.072,-0.072 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path12041"
-                   d="m 105.013,67.889 c 1.152,-0.072 2.304,-0.144 3.384,-0.288 l -5.688,1.368 c 0.144,-0.216 0.289,-0.432 0.36,-0.576 l 1.944,-0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path12043"
-                   d="m 106.525,67.745 c 1.368,-0.072 2.736,-0.216 4.032,-0.36 l -8.064,1.944 c 0.144,-0.216 0.288,-0.432 0.433,-0.648 l 3.599,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path12045"
-                   d="m 108.397,67.601 c 1.296,-0.144 2.592,-0.288 3.888,-0.432 l -10.008,2.448 c 0.144,-0.216 0.288,-0.432 0.432,-0.648 l 5.688,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path12047"
-                   d="m 110.557,67.385 c 1.296,-0.144 2.52,-0.288 3.744,-0.432 l -12.24,3.024 c 0.144,-0.216 0.288,-0.432 0.432,-0.648 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path12049"
-                   d="m 112.285,67.169 c 1.296,-0.144 2.52,-0.216 3.744,-0.288 l -14.256,3.456 c 0.216,-0.216 0.36,-0.432 0.504,-0.72 l 10.008,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path12051"
-                   d="m 115.957,67.097 c 0.144,-0.072 0.216,-0.144 0.36,-0.288 -0.648,0.072 -1.295,0.144 -2.016,0.144 l -12.24,3.024 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l 14.328,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path12053"
-                   d="m 115.525,67.529 c 0.216,-0.216 0.504,-0.432 0.792,-0.72 -0.144,0.072 -0.216,0.072 -0.288,0.072 l -14.256,3.456 c -0.144,0.216 -0.287,0.432 -0.432,0.648 l 14.184,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path12055"
-                   d="m 115.957,67.097 c -0.288,0.216 -0.576,0.504 -0.864,0.72 l -13.968,3.528 c 0.144,-0.288 0.361,-0.504 0.504,-0.72 l 14.328,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path12057"
-                   d="m 115.525,67.529 c -0.288,0.216 -0.575,0.504 -0.864,0.72 l -13.752,3.384 c 0.144,-0.216 0.288,-0.432 0.432,-0.648 l 14.184,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path12059"
-                   d="m 115.093,67.817 c -0.288,0.288 -0.576,0.576 -0.864,0.864 l -13.608,3.384 c 0.144,-0.288 0.36,-0.504 0.504,-0.72 l 13.968,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path12061"
-                   d="m 114.661,68.249 c -0.216,0.288 -0.504,0.504 -0.792,0.72 l -13.464,3.384 c 0.144,-0.216 0.36,-0.504 0.504,-0.72 l 13.752,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path12063"
-                   d="m 114.229,68.681 c -0.216,0.216 -0.504,0.504 -0.719,0.72 l -13.393,3.312 c 0.216,-0.216 0.36,-0.504 0.504,-0.648 l 13.608,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path12065"
-                   d="m 113.869,68.969 c -0.216,0.288 -0.431,0.504 -0.72,0.72 l -13.247,3.312 c 0.144,-0.216 0.359,-0.432 0.503,-0.648 l 13.464,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path12067"
-                   d="m 113.51,69.401 c -0.217,0.216 -0.505,0.504 -0.721,0.72 l -13.104,3.24 c 0.144,-0.216 0.289,-0.432 0.432,-0.648 l 13.393,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path12069"
-                   d="m 113.149,69.689 c -0.216,0.288 -0.504,0.576 -0.72,0.792 l -13.032,3.24 c 0.144,-0.216 0.36,-0.504 0.505,-0.72 l 13.247,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path12071"
-                   d="m 112.789,70.121 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l -13.032,3.168 c 0.216,-0.216 0.36,-0.432 0.576,-0.648 l 13.104,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path12073"
-                   d="m 112.429,70.481 c -0.216,0.216 -0.431,0.504 -0.648,0.72 l -12.888,3.168 c 0.144,-0.216 0.36,-0.432 0.504,-0.648 l 13.032,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path12075"
-                   d="m 112.141,70.841 c -0.288,0.216 -0.504,0.504 -0.72,0.72 l -12.816,3.168 c 0.144,-0.216 0.36,-0.432 0.504,-0.72 l 13.032,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path12077"
-                   d="m 111.781,71.201 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l -12.816,3.168 c 0.217,-0.216 0.36,-0.504 0.576,-0.72 l 12.888,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path12079"
-                   d="m 111.421,71.561 c -0.216,0.288 -0.432,0.504 -0.648,0.72 l -12.744,3.168 c 0.216,-0.288 0.361,-0.504 0.576,-0.72 l 12.816,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path12081"
-                   d="m 111.133,71.921 c -0.216,0.216 -0.432,0.432 -0.647,0.72 l -12.673,3.096 c 0.144,-0.216 0.36,-0.432 0.504,-0.648 l 12.816,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path12083"
-                   d="m 110.773,72.281 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l -12.6,3.096 c 0.144,-0.216 0.36,-0.432 0.504,-0.648 l 12.744,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path12085"
-                   d="m 110.486,72.641 c -0.289,0.216 -0.505,0.504 -0.721,0.72 l -12.6,3.096 c 0.216,-0.216 0.432,-0.432 0.648,-0.72 l 12.673,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path12087"
-                   d="m 110.125,73.001 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l -12.599,3.096 c 0.215,-0.216 0.431,-0.504 0.647,-0.72 l 12.6,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path12089"
-                   d="m 109.765,73.361 c -0.216,0.216 -0.36,0.432 -0.576,0.648 l -12.528,3.096 c 0.144,-0.216 0.361,-0.432 0.504,-0.648 l 12.6,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path12091"
-                   d="m 109.477,73.721 c -0.216,0.216 -0.431,0.432 -0.648,0.72 l -12.528,3.096 c 0.216,-0.288 0.432,-0.504 0.577,-0.72 l 12.599,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path12093"
-                   d="m 109.189,74.009 c -0.215,0.288 -0.432,0.504 -0.648,0.72 l -12.528,3.168 c 0.216,-0.288 0.432,-0.504 0.648,-0.792 l 12.528,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path12095"
-                   d="m 108.829,74.441 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l -12.456,3.023 c 0.216,-0.215 0.36,-0.431 0.576,-0.647 l 12.528,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path12097"
-                   d="m 108.541,74.729 c -0.216,0.288 -0.432,0.504 -0.648,0.72 l -12.528,3.096 c 0.216,-0.216 0.432,-0.432 0.648,-0.648 l 12.528,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path12099"
-                   d="m 108.181,75.161 c -0.216,0.216 -0.36,0.432 -0.576,0.648 l -12.528,3.096 c 0.216,-0.216 0.433,-0.504 0.648,-0.721 l 12.456,-3.023 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path12101"
-                   d="m 107.893,75.449 c -0.216,0.288 -0.431,0.504 -0.648,0.792 l -12.528,3.024 c 0.216,-0.216 0.432,-0.432 0.648,-0.72 l 12.528,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path12103"
-                   d="m 107.605,75.809 c -0.215,0.216 -0.432,0.504 -0.648,0.72 l -12.528,3.096 c 0.216,-0.216 0.432,-0.504 0.648,-0.72 l 12.528,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path12105"
-                   d="m 107.245,76.241 c -0.216,0.216 -0.432,0.432 -0.648,0.648 L 94.07,79.985 c 0.215,-0.216 0.431,-0.432 0.647,-0.72 l 12.528,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path12107"
-                   d="m 106.957,76.529 c -0.216,0.288 -0.504,0.504 -0.72,0.792 l -12.528,3.096 c 0.217,-0.288 0.432,-0.504 0.72,-0.792 l 12.528,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path12109"
-                   d="m 106.597,76.889 c -0.216,0.288 -0.432,0.504 -0.647,0.72 l -12.601,3.096 c 0.216,-0.216 0.504,-0.432 0.721,-0.72 l 12.527,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path12111"
-                   d="m 106.237,77.321 c -0.215,0.216 -0.432,0.432 -0.648,0.648 l -12.6,3.096 c 0.288,-0.216 0.504,-0.432 0.72,-0.648 l 12.528,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path12113"
-                   d="m 105.95,77.609 c -0.217,0.216 -0.433,0.504 -0.649,0.72 l -12.672,3.096 c 0.216,-0.216 0.504,-0.432 0.72,-0.72 l 12.601,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path12115"
-                   d="m 105.589,77.969 c -0.216,0.288 -0.432,0.504 -0.648,0.72 l -12.744,3.168 c 0.289,-0.216 0.576,-0.504 0.792,-0.792 l 12.6,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path12117"
-                   d="m 105.301,78.329 c -0.216,0.216 -0.504,0.504 -0.72,0.72 l -12.744,3.168 c 0.288,-0.216 0.504,-0.504 0.792,-0.792 l 12.672,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path12119"
-                   d="m 104.941,78.689 c -0.288,0.288 -0.503,0.504 -0.72,0.72 l -12.816,3.168 c 0.288,-0.216 0.504,-0.432 0.792,-0.72 l 12.744,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path12121"
-                   d="m 104.581,79.049 c -0.216,0.288 -0.504,0.504 -0.72,0.72 l -12.815,3.168 c 0.215,-0.216 0.503,-0.504 0.791,-0.72 l 12.744,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path12123"
-                   d="m 104.221,79.409 c -0.216,0.288 -0.504,0.504 -0.72,0.72 l -12.96,3.24 c 0.288,-0.288 0.576,-0.504 0.864,-0.792 l 12.816,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path12125"
-                   d="m 103.861,79.769 c -0.288,0.288 -0.504,0.504 -0.792,0.792 l -13.032,3.24 c 0.36,-0.288 0.648,-0.576 1.009,-0.864 l 12.815,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path12127"
-                   d="m 103.501,80.129 c -0.288,0.288 -0.503,0.576 -0.792,0.792 L 89.605,84.16 c 0.288,-0.287 0.648,-0.503 0.936,-0.791 l 12.96,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path12129"
-                   d="m 103.069,80.561 c -0.216,0.216 -0.504,0.504 -0.72,0.72 l -13.32,3.24 c 0.361,-0.216 0.648,-0.432 1.008,-0.72 l 13.032,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path12131"
-                   d="m 102.709,80.921 c -0.288,0.288 -0.576,0.504 -0.864,0.792 l -13.392,3.312 c 0.36,-0.288 0.72,-0.576 1.152,-0.865 l 13.104,-3.239 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path12133"
-                   d="m 102.349,81.281 c -0.288,0.288 -0.648,0.504 -0.935,0.792 l -13.536,3.312 c 0.359,-0.216 0.791,-0.504 1.151,-0.864 l 13.32,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path12135"
-                   d="m 101.845,81.713 c -0.287,0.216 -0.576,0.504 -0.864,0.72 l -13.896,3.456 c 0.432,-0.288 0.865,-0.576 1.368,-0.864 l 13.392,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <g
-                   id="g12137">
-                  <g
-                     id="g12139">
-                    <path
-                       id="path12141"
-                       d="m 81.757,87.473 c -0.072,0 -0.072,0 -0.072,-0.072 0,0.072 0.072,0.072 0.072,0.072 z"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:#fd000d" />
-                    <path
-                       id="path12143"
-                       d="m 86.293,86.321 c 0.504,-0.288 1.008,-0.576 1.585,-0.936 l 13.536,-3.312 -15.121,4.248 z"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:#fd000d" />
-                  </g>
-                </g>
-                <g
-                   id="g12145">
-                  <g
-                     id="g12147">
-                    <path
-                       id="path12149"
-                       d="m 82.405,87.617 c -0.216,-0.072 -0.503,-0.144 -0.72,-0.216 0.432,0.072 0.936,0.072 1.44,0 l -0.72,0.216 z"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:#fe000a" />
-                    <path
-                       id="path12151"
-                       d="m 84.709,87.041 c 0.792,-0.288 1.584,-0.648 2.376,-1.152 l 13.896,-3.456 -16.272,4.608 z"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:#fe000a" />
-                  </g>
-                </g>
-                <g
-                   id="g12153">
-                  <g
-                     id="g12155">
-                    <path
-                       id="path12157"
-                       d="M 83.125,87.689 C 82.693,87.617 82.189,87.545 81.757,87.473"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                    <path
-                       id="path12159"
-                       d="M 100.477,82.865 86.293,86.321"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12161">
-                  <g
-                     id="g12163">
-                    <path
-                       id="path12165"
-                       d="M 83.701,87.833 C 83.269,87.761 82.837,87.689 82.405,87.617"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                    <path
-                       id="path12167"
-                       d="M 100.046,83.225 84.709,87.041"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12169">
-                  <g
-                     id="g12171">
-                    <path
-                       id="path12173"
-                       d="m 84.565,87.905 c -0.504,-0.072 -0.936,-0.144 -1.44,-0.216 l 16.272,-4.032"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12175">
-                  <g
-                     id="g12177">
-                    <path
-                       id="path12179"
-                       d="m 85.501,87.977 c -0.575,0 -1.152,-0.072 -1.728,-0.144 l 15.048,-3.744"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12181">
-                  <g
-                     id="g12183">
-                    <path
-                       id="path12185"
-                       d="m 86.221,88.049 c -0.504,-0.072 -1.08,-0.072 -1.656,-0.144 l 13.608,-3.384"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12187">
-                  <g
-                     id="g12189">
-                    <path
-                       id="path12191"
-                       d="m 87.445,88.049 c -0.648,0 -1.296,0 -1.944,-0.072 l 11.88,-2.952"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12193">
-                  <g
-                     id="g12195">
-                    <path
-                       id="path12197"
-                       d="m 88.669,87.977 c -0.791,0.072 -1.584,0.072 -2.448,0.072 l 10.44,-2.592"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12199"
-                   d="m 95.653,85.961 c -2.448,1.223 -5.112,2.016 -8.208,2.088 l 8.208,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path12201"
-                   d="m 94.429,86.537 c -1.8,0.72 -3.672,1.224 -5.688,1.44 l 5.688,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path12203"
-                   d="m 81.685,87.401 3.168,0.504 2.952,0.072 2.736,-0.288 2.592,-0.648 2.377,-1.008 2.159,-1.224 2.16,-1.44 1.944,-1.656 1.944,-1.728 1.8,-1.872 1.8,-2.016 1.729,-1.944 1.799,-1.944 1.8,-1.944 1.8,-1.8 1.872,-1.656 -0.72,0.072 -0.792,0 -0.72,0.072 -0.792,0.072 -0.792,0.072 -0.792,0.144 -0.792,0.072 -0.792,0.072 -0.792,0.072 -0.864,0.072 -0.792,0.144 -0.864,0.072 -0.863,0.072 -0.865,0.072 -0.864,0 -0.864,0.072 -0.648,1.008 -0.792,1.224 -1.008,1.44 -1.08,1.512 -1.295,1.656 -1.369,1.656 -1.44,1.727 -1.512,1.657 -1.584,1.584 -1.583,1.512 -1.656,1.368 -1.585,1.152 -1.584,0.936 -1.584,0.648 -1.512,0.36 -1.44,0 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12205">
-                <path
-                   id="path12207"
-                   d="m 102.277,68.033 c -2.808,0.072 -5.184,0.792 -8.496,0.576 -0.648,0.648 -1.295,1.296 -1.944,1.944 l 10.44,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path12209"
-                   d="m 102.493,69.401 c 0.288,-0.432 0.576,-0.936 0.936,-1.44 -3.383,-0.072 -5.832,0.864 -9.648,0.648 -1.295,1.224 -2.448,2.52 -3.6,3.816 l 12.312,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path12211"
-                   d="m 101.269,71.129 c 0.72,-1.008 1.368,-2.016 2.16,-3.168 -0.431,0 -0.792,0 -1.152,0.072 l -10.44,2.52 c -1.08,1.224 -2.16,2.448 -3.168,3.744 l 12.6,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path12213"
-                   d="m 102.493,69.401 c -0.864,1.296 -1.728,2.448 -2.519,3.6 l -12.889,3.168 c 1.008,-1.224 2.088,-2.52 3.096,-3.744 l 12.312,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path12215"
-                   d="m 101.269,71.129 c -0.936,1.296 -1.8,2.52 -2.664,3.672 l -13.104,3.24 c 1.081,-1.224 2.088,-2.52 3.168,-3.744 l 12.6,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path12217"
-                   d="m 99.974,73.001 c -1.009,1.296 -1.945,2.52 -2.809,3.672 l -13.32,3.312 c 1.081,-1.224 2.16,-2.52 3.24,-3.816 l 12.889,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path12219"
-                   d="m 98.605,74.801 c -1.008,1.368 -2.016,2.592 -2.952,3.672 l -13.464,3.384 c 1.152,-1.224 2.232,-2.52 3.312,-3.816 l 13.104,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path12221"
-                   d="m 97.165,76.673 c -1.08,1.368 -2.16,2.592 -3.239,3.672 l -13.609,3.384 c 1.224,-1.152 2.376,-2.448 3.528,-3.744 l 13.32,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path12223"
-                   d="m 95.653,78.473 c -1.296,1.512 -2.592,2.808 -3.816,3.96 l -13.896,3.456 c 1.512,-1.296 2.952,-2.592 4.248,-4.032 l 13.464,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <g
-                   id="g12225">
-                  <g
-                     id="g12227">
-                    <path
-                       id="path12229"
-                       d="m 76.645,87.617 c -0.288,0 -0.575,-0.072 -0.864,-0.144 1.584,-1.08 3.097,-2.376 4.536,-3.744 l 13.609,-3.384"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12231"
-                   d="m 91.837,82.433 c -5.399,4.896 -10.224,6.12 -16.056,5.04 0.72,-0.504 1.44,-1.008 2.16,-1.584 l 13.896,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path12233"
-                   d="m 89.245,84.521 c -4.104,2.952 -8.064,3.744 -12.6,3.096 l 12.6,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path12235"
-                   d="m 75.781,87.473 1.801,0.216 1.727,0.144 1.656,-0.072 1.656,-0.288 1.656,-0.36 1.584,-0.648 1.584,-0.793 1.656,-1.079 1.656,-1.224 1.657,-1.44 1.656,-1.728 1.727,-1.872 1.8,-2.232 1.872,-2.448 1.945,-2.664 2.015,-3.024 -1.224,0 -1.152,0.072 -1.151,0.144 -1.153,0.144 -1.152,0.144 -1.152,0.144 -1.296,0 -1.368,0 -1.152,1.152 -1.08,1.224 -1.08,1.152 -1.079,1.296 -1.081,1.224 -1.008,1.296 -1.08,1.224 -1.008,1.296 -1.08,1.224 -1.08,1.224 -1.151,1.224 -1.081,1.152 -1.224,1.08 -1.224,1.08 -1.224,1.08 -1.368,0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12237">
-                <path
-                   id="path12239"
-                   d="m 86.365,69.401 -0.504,0 c -0.072,0.072 -0.072,0.072 -0.144,0.144 l 0.648,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path12241"
-                   d="m 88.309,69.185 -2.448,0.216 c -0.144,0.216 -0.288,0.36 -0.432,0.504 l 2.88,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path12243"
-                   d="m 86.365,69.401 3.384,-0.36 -4.536,1.152 c 0.216,-0.216 0.36,-0.432 0.504,-0.648 l 0.648,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path12245"
-                   d="m 88.309,69.185 2.952,-0.288 -6.263,1.584 c 0.143,-0.216 0.287,-0.36 0.431,-0.576 l 2.88,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path12247"
-                   d="m 89.749,69.041 3.456,-0.288 -8.496,2.088 c 0.217,-0.216 0.361,-0.432 0.504,-0.648 l 4.536,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path12249"
-                   d="m 93.277,68.969 c 0.072,-0.072 0.144,-0.144 0.288,-0.288 l -2.304,0.216 -6.263,1.584 c -0.145,0.216 -0.361,0.432 -0.505,0.648 l 8.784,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path12251"
-                   d="m 92.917,69.257 c 0.216,-0.216 0.432,-0.36 0.648,-0.576 l -0.36,0.072 -8.496,2.088 c -0.144,0.216 -0.288,0.36 -0.432,0.576 l 8.64,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path12253"
-                   d="m 93.277,68.969 c -0.216,0.216 -0.432,0.36 -0.648,0.576 l -8.568,2.16 c 0.144,-0.216 0.288,-0.36 0.432,-0.576 l 8.784,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path12255"
-                   d="m 92.917,69.257 c -0.216,0.216 -0.431,0.504 -0.648,0.72 l -8.496,2.088 c 0.144,-0.216 0.36,-0.432 0.504,-0.648 l 8.64,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path12257"
-                   d="m 92.629,69.545 c -0.215,0.216 -0.432,0.504 -0.648,0.72 l -8.423,2.088 c 0.143,-0.216 0.359,-0.432 0.503,-0.648 l 8.568,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path12259"
-                   d="m 92.269,69.977 c -0.216,0.216 -0.36,0.36 -0.576,0.576 l -8.352,2.088 c 0.145,-0.144 0.288,-0.36 0.432,-0.576 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path12261"
-                   d="m 91.981,70.265 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l -8.28,2.016 c 0.216,-0.216 0.361,-0.432 0.505,-0.648 l 8.423,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path12263"
-                   d="m 91.693,70.553 c -0.216,0.216 -0.432,0.504 -0.647,0.72 l -8.209,2.016 c 0.144,-0.216 0.36,-0.432 0.504,-0.648 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path12265"
-                   d="m 91.333,70.985 c -0.144,0.144 -0.287,0.36 -0.504,0.576 l -8.208,2.016 c 0.144,-0.216 0.288,-0.36 0.432,-0.576 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path12267"
-                   d="m 91.046,71.273 c -0.144,0.216 -0.289,0.36 -0.433,0.576 l -8.208,2.016 c 0.144,-0.144 0.288,-0.36 0.432,-0.576 l 8.209,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path12269"
-                   d="m 90.829,71.561 c -0.216,0.216 -0.36,0.432 -0.576,0.648 l -8.136,2.016 c 0.216,-0.216 0.36,-0.432 0.504,-0.648 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path12271"
-                   d="m 90.613,71.849 c -0.216,0.216 -0.432,0.432 -0.576,0.648 l -8.135,2.016 c 0.215,-0.216 0.359,-0.432 0.503,-0.648 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path12273"
-                   d="m 90.253,72.209 c -0.144,0.216 -0.36,0.432 -0.504,0.648 l -8.064,1.944 c 0.144,-0.144 0.289,-0.36 0.432,-0.576 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path12275"
-                   d="m 90.037,72.497 c -0.216,0.216 -0.36,0.432 -0.575,0.648 l -7.993,2.016 c 0.144,-0.216 0.288,-0.432 0.433,-0.648 l 8.135,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path12277"
-                   d="m 89.749,72.857 c -0.144,0.216 -0.359,0.432 -0.504,0.648 l -8.064,1.944 c 0.216,-0.216 0.36,-0.432 0.504,-0.648 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path12279"
-                   d="m 89.462,73.145 c -0.145,0.216 -0.361,0.432 -0.505,0.648 l -7.992,1.944 c 0.144,-0.216 0.36,-0.36 0.504,-0.576 l 7.993,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path12281"
-                   d="m 89.245,73.505 c -0.216,0.144 -0.36,0.36 -0.504,0.576 l -7.992,1.944 c 0.144,-0.144 0.288,-0.36 0.432,-0.576 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path12283"
-                   d="m 88.957,73.793 c -0.144,0.216 -0.36,0.432 -0.504,0.648 l -7.991,1.944 c 0.215,-0.216 0.359,-0.432 0.503,-0.648 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path12285"
-                   d="m 88.741,74.081 c -0.216,0.216 -0.36,0.432 -0.576,0.648 l -7.92,2.016 c 0.145,-0.216 0.36,-0.504 0.504,-0.72 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path12287"
-                   d="m 88.453,74.441 c -0.216,0.216 -0.36,0.36 -0.503,0.576 l -7.921,1.944 c 0.144,-0.144 0.288,-0.36 0.433,-0.576 l 7.991,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path12289"
-                   d="m 88.165,74.729 c -0.143,0.216 -0.36,0.432 -0.504,0.648 l -7.92,1.944 c 0.144,-0.216 0.36,-0.432 0.504,-0.576 l 7.92,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path12291"
-                   d="m 87.95,75.017 c -0.217,0.216 -0.361,0.432 -0.577,0.648 l -7.92,2.016 c 0.216,-0.216 0.36,-0.432 0.576,-0.72 l 7.921,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path12293"
-                   d="m 87.661,75.377 c -0.144,0.216 -0.36,0.432 -0.504,0.576 l -7.92,2.016 c 0.144,-0.216 0.36,-0.432 0.504,-0.648 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path12295"
-                   d="m 87.373,75.665 c -0.144,0.216 -0.36,0.432 -0.504,0.648 l -7.919,1.944 c 0.215,-0.144 0.359,-0.36 0.503,-0.576 l 7.92,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path12297"
-                   d="m 87.157,75.953 c -0.144,0.216 -0.36,0.432 -0.504,0.648 l -7.92,1.944 c 0.145,-0.216 0.361,-0.361 0.504,-0.576 l 7.92,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path12299"
-                   d="m 86.869,76.313 c -0.144,0.216 -0.359,0.432 -0.504,0.648 l -7.92,1.944 c 0.144,-0.216 0.36,-0.432 0.505,-0.648 l 7.919,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path12301"
-                   d="m 86.653,76.601 c -0.143,0.216 -0.36,0.432 -0.504,0.648 l -7.992,1.944 c 0.216,-0.216 0.36,-0.432 0.576,-0.648 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path12303"
-                   d="m 86.365,76.961 c -0.144,0.216 -0.36,0.432 -0.504,0.648 l -7.992,1.944 c 0.216,-0.216 0.36,-0.432 0.576,-0.648 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path12305"
-                   d="m 86.149,77.249 c -0.216,0.216 -0.36,0.432 -0.576,0.648 l -7.991,2.016 c 0.215,-0.216 0.431,-0.504 0.575,-0.72 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path12307"
-                   d="m 85.861,77.609 c -0.216,0.216 -0.36,0.36 -0.504,0.575 l -8.064,2.017 c 0.217,-0.216 0.432,-0.432 0.576,-0.648 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path12309"
-                   d="m 85.573,77.897 c -0.144,0.216 -0.36,0.432 -0.503,0.648 l -7.993,1.944 c 0.144,-0.216 0.361,-0.36 0.505,-0.576 l 7.991,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path12311"
-                   d="m 85.357,78.184 c -0.216,0.217 -0.359,0.433 -0.576,0.649 l -7.992,1.944 c 0.144,-0.144 0.36,-0.36 0.504,-0.576 l 8.064,-2.017 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path12313"
-                   d="m 85.07,78.545 c -0.217,0.216 -0.361,0.432 -0.577,0.648 l -8.064,2.016 c 0.216,-0.288 0.432,-0.504 0.648,-0.72 l 7.993,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path12315"
-                   d="m 84.781,78.833 c -0.144,0.216 -0.36,0.432 -0.504,0.648 l -8.136,2.016 c 0.216,-0.216 0.432,-0.432 0.648,-0.72 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path12317"
-                   d="m 84.493,79.193 c -0.144,0.216 -0.36,0.432 -0.504,0.648 l -8.208,1.944 c 0.217,-0.216 0.432,-0.36 0.648,-0.576 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path12319"
-                   d="m 84.277,79.481 c -0.216,0.216 -0.432,0.432 -0.648,0.648 l -8.208,2.088 c 0.288,-0.288 0.505,-0.504 0.72,-0.72 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path12321"
-                   d="m 83.989,79.841 c -0.216,0.144 -0.36,0.36 -0.575,0.576 l -8.281,2.088 c 0.216,-0.216 0.432,-0.432 0.648,-0.72 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path12323"
-                   d="m 83.629,80.129 c -0.143,0.216 -0.36,0.432 -0.504,0.648 l -8.28,2.016 c 0.216,-0.216 0.36,-0.36 0.576,-0.576 l 8.208,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path12325"
-                   d="m 83.414,80.417 c -0.217,0.216 -0.361,0.432 -0.577,0.648 l -8.351,2.088 c 0.215,-0.216 0.431,-0.432 0.647,-0.648 l 8.281,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path12327"
-                   d="m 83.125,80.777 c -0.216,0.216 -0.432,0.432 -0.576,0.648 l -8.496,2.088 c 0.288,-0.216 0.505,-0.432 0.792,-0.72 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path12329"
-                   d="m 82.837,81.065 c -0.216,0.216 -0.432,0.432 -0.576,0.648 l -8.568,2.16 c 0.288,-0.288 0.576,-0.504 0.793,-0.72 l 8.351,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path12331"
-                   d="m 82.549,81.425 c -0.216,0.216 -0.432,0.432 -0.647,0.648 l -8.569,2.087 c 0.288,-0.215 0.504,-0.431 0.72,-0.647 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path12333"
-                   d="m 82.261,81.713 c -0.215,0.216 -0.432,0.432 -0.648,0.648 l -8.64,2.16 c 0.288,-0.216 0.504,-0.432 0.72,-0.648 l 8.568,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path12335"
-                   d="m 81.902,82.073 c -0.217,0.216 -0.361,0.432 -0.577,0.648 l -8.784,2.16 c 0.288,-0.216 0.576,-0.504 0.792,-0.721 l 8.569,-2.087 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path12337"
-                   d="m 81.613,82.361 c -0.216,0.216 -0.432,0.504 -0.648,0.72 l -8.856,2.16 c 0.288,-0.216 0.576,-0.504 0.864,-0.72 l 8.64,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path12339"
-                   d="m 81.325,82.721 c -0.216,0.216 -0.504,0.432 -0.72,0.648 l -8.928,2.232 c 0.288,-0.216 0.576,-0.432 0.864,-0.72 l 8.784,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path12341"
-                   d="m 80.965,83.081 c -0.216,0.216 -0.503,0.432 -0.72,0.648 l -9.144,2.304 c 0.36,-0.288 0.648,-0.504 1.008,-0.792 l 8.856,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path12343"
-                   d="m 80.605,83.369 c -0.215,0.216 -0.432,0.432 -0.648,0.648 l -9.288,2.304 c 0.36,-0.216 0.648,-0.504 1.008,-0.72 l 8.928,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path12345"
-                   d="m 80.245,83.729 c -0.216,0.216 -0.432,0.431 -0.72,0.648 l -9.288,2.304 c 0.288,-0.216 0.576,-0.432 0.864,-0.648 l 9.144,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path12347"
-                   d="m 79.957,84.017 c -0.288,0.288 -0.504,0.504 -0.792,0.72 l -9.432,2.304 c 0.288,-0.216 0.648,-0.432 0.936,-0.72 l 9.288,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <g
-                   id="g12349">
-                  <g
-                     id="g12351">
-                    <path
-                       id="path12353"
-                       d="m 69.661,87.401 c -0.072,-0.072 -0.072,-0.144 -0.144,-0.217 0.216,-0.143 0.432,-0.287 0.72,-0.503 l 9.288,-2.304"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12355">
-                  <g
-                     id="g12357">
-                    <path
-                       id="path12359"
-                       d="m 69.949,87.545 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.361 0.072,0 0.144,-0.071 0.216,-0.143 l 9.432,-2.304"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12361">
-                  <g
-                     id="g12363">
-                    <path
-                       id="path12365"
-                       d="m 70.237,87.689 c -0.216,-0.072 -0.36,-0.216 -0.504,-0.288 l 9,-2.304"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12367">
-                  <g
-                     id="g12369">
-                    <path
-                       id="path12371"
-                       d="m 70.669,87.905 c -0.216,-0.144 -0.504,-0.216 -0.72,-0.36 l 8.352,-2.088"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12373">
-                  <g
-                     id="g12375">
-                    <path
-                       id="path12377"
-                       d="m 71.029,88.049 c -0.288,-0.144 -0.504,-0.216 -0.792,-0.36 l 7.632,-1.872"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12379">
-                  <g
-                     id="g12381">
-                    <path
-                       id="path12383"
-                       d="m 71.533,88.121 c -0.288,-0.072 -0.576,-0.144 -0.864,-0.216 l 6.624,-1.656"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12385">
-                  <g
-                     id="g12387">
-                    <path
-                       id="path12389"
-                       d="m 72.253,88.193 c -0.432,0 -0.792,-0.072 -1.224,-0.144 l 5.688,-1.44"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12391"
-                   d="m 76.141,87.041 c -1.583,0.864 -3.168,1.368 -4.608,1.08 l 4.608,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path12393"
-                   d="m 75.277,87.473 c -1.008,0.504 -2.088,0.792 -3.024,0.72 l 3.024,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path12395"
-                   d="m 69.517,87.184 1.368,0.721 1.512,0.288 1.512,-0.216 1.584,-0.648 1.584,-0.936 1.656,-1.296 1.657,-1.44 1.656,-1.728 1.583,-1.8 1.656,-1.872 1.512,-1.872 1.512,-1.8 1.44,-1.8 1.368,-1.584 1.297,-1.368 1.151,-1.152 -7.704,0.72 -0.863,1.152 -0.937,1.152 -0.864,1.152 -0.864,1.152 -0.864,1.152 -0.935,1.152 -0.865,1.152 -0.936,1.152 -1.008,1.08 -1.008,1.152 -1.008,1.08 -1.151,1.08 -1.153,1.08 -1.224,1.08 -1.296,1.008 -1.368,1.007 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12397">
-                <path
-                   id="path12399"
-                   d="m 78.805,70.049 c -0.144,0 -0.288,0 -0.432,0 -0.072,0.072 -0.072,0.072 -0.072,0.144 l 0.504,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path12401"
-                   d="m 80.462,69.905 c -0.505,0.072 -1.225,0.072 -2.089,0.144 -0.144,0.216 -0.216,0.36 -0.36,0.504 l 2.449,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path12403"
-                   d="m 78.805,70.049 c 1.44,-0.144 2.16,-0.144 2.88,-0.144 l -3.816,0.936 c 0.144,-0.216 0.288,-0.432 0.432,-0.648 l 0.504,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path12405"
-                   d="m 80.462,69.905 c 1.223,0 1.727,-0.072 3.239,-0.216 l -6.119,1.512 c 0.143,-0.216 0.287,-0.432 0.431,-0.648 l 2.449,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path12407"
-                   d="m 85.357,69.545 c 0.072,-0.072 0.072,-0.072 0.144,-0.144 -2.16,0.36 -2.952,0.432 -3.816,0.504 l -3.816,0.936 c -0.144,0.216 -0.359,0.432 -0.504,0.72 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path12409"
-                   d="m 85.213,69.833 c 0.072,-0.144 0.144,-0.288 0.288,-0.432 -0.72,0.144 -1.296,0.216 -1.8,0.288 l -6.119,1.512 c -0.144,0.216 -0.289,0.432 -0.433,0.648 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path12411"
-                   d="m 85.357,69.545 c -0.144,0.216 -0.287,0.432 -0.431,0.648 l -8.065,2.016 c 0.216,-0.216 0.36,-0.432 0.504,-0.648 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path12413"
-                   d="m 85.213,69.833 c -0.215,0.216 -0.36,0.432 -0.504,0.648 l -8.064,2.016 c 0.216,-0.216 0.36,-0.432 0.504,-0.648 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path12415"
-                   d="m 84.926,70.193 c -0.145,0.216 -0.361,0.432 -0.505,0.648 l -7.992,2.016 c 0.144,-0.216 0.288,-0.432 0.432,-0.648 l 8.065,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path12417"
-                   d="m 84.709,70.481 c -0.144,0.216 -0.288,0.432 -0.504,0.648 l -7.992,2.016 c 0.144,-0.216 0.288,-0.432 0.504,-0.648 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path12419"
-                   d="m 84.421,70.841 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -8.136,2.016 c 0.217,-0.216 0.36,-0.432 0.576,-0.648 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path12421"
-                   d="m 84.205,71.129 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -8.136,2.016 c 0.216,-0.216 0.361,-0.432 0.576,-0.648 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path12423"
-                   d="m 83.989,71.489 c -0.144,0.216 -0.36,0.432 -0.503,0.648 l -8.137,2.088 c 0.144,-0.288 0.36,-0.504 0.504,-0.72 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path12425"
-                   d="m 83.773,71.777 c -0.144,0.216 -0.287,0.432 -0.432,0.648 l -8.208,2.016 c 0.144,-0.216 0.36,-0.432 0.504,-0.648 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path12427"
-                   d="m 83.486,72.137 c -0.145,0.216 -0.289,0.432 -0.433,0.648 l -8.28,2.088 c 0.216,-0.216 0.36,-0.432 0.576,-0.648 l 8.137,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path12429"
-                   d="m 83.341,72.425 c -0.216,0.216 -0.36,0.432 -0.504,0.648 l -8.279,2.088 c 0.143,-0.216 0.359,-0.432 0.575,-0.72 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path12431"
-                   d="m 83.053,72.785 c -0.144,0.216 -0.36,0.432 -0.504,0.648 l -8.352,2.088 c 0.217,-0.216 0.361,-0.432 0.576,-0.648 l 8.28,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path12433"
-                   d="m 82.837,73.073 c -0.144,0.216 -0.288,0.432 -0.504,0.648 l -8.424,2.088 c 0.216,-0.216 0.432,-0.432 0.649,-0.648 l 8.279,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path12435"
-                   d="m 82.549,73.433 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -8.568,2.088 c 0.216,-0.216 0.432,-0.432 0.648,-0.72 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path12437"
-                   d="m 82.333,73.721 c -0.144,0.216 -0.287,0.432 -0.431,0.72 l -8.641,2.088 c 0.216,-0.216 0.432,-0.432 0.648,-0.72 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path12439"
-                   d="m 82.117,74.153 c -0.215,0.216 -0.36,0.432 -0.504,0.648 l -8.712,2.16 c 0.216,-0.216 0.432,-0.504 0.648,-0.72 l 8.568,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path12441"
-                   d="m 81.902,74.441 c -0.217,0.216 -0.361,0.432 -0.577,0.72 l -8.856,2.16 c 0.288,-0.216 0.504,-0.504 0.792,-0.792 l 8.641,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path12443"
-                   d="m 81.613,74.801 c -0.144,0.216 -0.288,0.432 -0.504,0.648 l -8.928,2.232 c 0.216,-0.288 0.432,-0.504 0.72,-0.72 l 8.712,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path12445"
-                   d="m 81.325,75.161 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -9.144,2.232 c 0.216,-0.216 0.504,-0.432 0.72,-0.72 l 8.856,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path12447"
-                   d="m 81.109,75.449 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -9.288,2.304 c 0.216,-0.288 0.504,-0.504 0.792,-0.72 l 8.928,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path12449"
-                   d="m 80.893,75.809 c -0.216,0.216 -0.359,0.432 -0.503,0.648 l -9.505,2.376 c 0.288,-0.288 0.576,-0.504 0.864,-0.792 l 9.144,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path12451"
-                   d="m 80.677,76.097 c -0.215,0.216 -0.36,0.432 -0.504,0.648 l -9.648,2.376 c 0.288,-0.216 0.576,-0.504 0.864,-0.72 l 9.288,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path12453"
-                   d="m 80.39,76.457 c -0.217,0.216 -0.361,0.432 -0.505,0.648 l -9.864,2.448 c 0.288,-0.216 0.576,-0.504 0.864,-0.72 l 9.505,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path12455"
-                   d="m 80.173,76.745 c -0.216,0.216 -0.36,0.432 -0.504,0.648 l -10.08,2.52 c 0.36,-0.288 0.648,-0.504 0.936,-0.792 l 9.648,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path12457"
-                   d="m 79.885,77.105 c -0.216,0.216 -0.36,0.432 -0.504,0.648 l -10.296,2.592 c 0.288,-0.288 0.648,-0.504 0.936,-0.792 l 9.864,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path12459"
-                   d="m 79.669,77.393 c -0.216,0.216 -0.36,0.432 -0.504,0.648 l -10.584,2.664 c 0.36,-0.288 0.72,-0.576 1.008,-0.792 l 10.08,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path12461"
-                   d="m 79.381,77.753 c -0.216,0.216 -0.359,0.431 -0.503,0.72 l -10.945,2.664 c 0.432,-0.288 0.792,-0.504 1.152,-0.792 l 10.296,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path12463"
-                   d="m 79.165,78.041 c -0.215,0.216 -0.36,0.504 -0.576,0.72 l -11.16,2.736 c 0.432,-0.288 0.792,-0.504 1.152,-0.792 l 10.584,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path12465"
-                   d="m 78.878,78.473 c -0.217,0.216 -0.361,0.432 -0.577,0.648 l -11.592,2.88 c 0.432,-0.288 0.864,-0.576 1.224,-0.864 l 10.945,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path12467"
-                   d="m 78.589,78.761 c -0.144,0.216 -0.36,0.432 -0.504,0.648 l -11.952,2.952 c 0.432,-0.288 0.864,-0.576 1.296,-0.864 l 11.16,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path12469"
-                   d="m 78.301,79.121 c -0.144,0.216 -0.36,0.432 -0.576,0.648 l -12.528,3.096 c 0.504,-0.288 1.008,-0.576 1.512,-0.864 l 11.592,-2.88 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path12471"
-                   d="m 78.085,79.409 c -0.216,0.216 -0.36,0.432 -0.575,0.648 l -13.105,3.24 c 0.576,-0.288 1.152,-0.576 1.728,-0.936 l 11.952,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path12473"
-                   d="m 77.725,79.769 c -0.143,0.216 -0.36,0.504 -0.576,0.72 l -14.04,3.456 c 0.72,-0.288 1.368,-0.648 2.088,-1.08 l 12.528,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <g
-                   id="g12475">
-                  <g
-                     id="g12477">
-                    <path
-                       id="path12479"
-                       d="m 56.989,85.745 c -0.072,-0.073 -0.144,-0.144 -0.216,-0.216 0.504,0 1.008,0 1.584,-0.072 l -1.368,0.288 z"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:#f70042" />
-                    <path
-                       id="path12481"
-                       d="m 61.021,84.737 c 1.08,-0.36 2.232,-0.792 3.384,-1.44 l 13.105,-3.24 -16.489,4.68 z"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:#f70042" />
-                  </g>
-                </g>
-                <g
-                   id="g12483">
-                  <g
-                     id="g12485">
-                    <path
-                       id="path12487"
-                       d="m 57.277,85.961 c -0.216,-0.144 -0.36,-0.289 -0.504,-0.432 1.728,0 3.96,-0.504 6.336,-1.584 l 14.04,-3.456"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12489">
-                  <g
-                     id="g12491">
-                    <path
-                       id="path12493"
-                       d="m 57.565,86.177 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.432"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                    <path
-                       id="path12495"
-                       d="m 76.861,80.849 -15.84,3.888"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12497">
-                  <g
-                     id="g12499">
-                    <path
-                       id="path12501"
-                       d="m 57.853,86.321 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l 19.296,-4.824"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12503">
-                  <g
-                     id="g12505">
-                    <path
-                       id="path12507"
-                       d="m 58.213,86.537 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.36 l 18.648,-4.608"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12509">
-                  <g
-                     id="g12511">
-                    <path
-                       id="path12513"
-                       d="m 58.429,86.681 c -0.144,-0.072 -0.36,-0.216 -0.576,-0.36 l 18.073,-4.464"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12515">
-                  <g
-                     id="g12517">
-                    <path
-                       id="path12519"
-                       d="m 58.861,86.897 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.36 l 17.352,-4.32"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12521">
-                  <g
-                     id="g12523">
-                    <path
-                       id="path12525"
-                       d="m 59.149,87.041 c -0.216,-0.072 -0.432,-0.216 -0.72,-0.36 l 16.848,-4.176"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12527">
-                  <g
-                     id="g12529">
-                    <path
-                       id="path12531"
-                       d="m 59.581,87.257 c -0.288,-0.073 -0.504,-0.216 -0.72,-0.36 l 16.056,-3.96"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12533">
-                  <g
-                     id="g12535">
-                    <path
-                       id="path12537"
-                       d="m 59.869,87.401 c -0.216,-0.072 -0.504,-0.217 -0.72,-0.36 l 15.409,-3.816"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12539">
-                  <g
-                     id="g12541">
-                    <path
-                       id="path12543"
-                       d="m 60.301,87.617 c -0.216,-0.072 -0.504,-0.216 -0.792,-0.36 l 14.688,-3.6"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12545">
-                  <g
-                     id="g12547">
-                    <path
-                       id="path12549"
-                       d="m 60.733,87.761 c -0.288,-0.072 -0.576,-0.216 -0.864,-0.36 l 13.968,-3.456"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12551">
-                  <g
-                     id="g12553">
-                    <path
-                       id="path12555"
-                       d="m 61.237,87.977 c -0.288,-0.144 -0.576,-0.216 -0.936,-0.36 l 13.032,-3.24"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12557">
-                  <g
-                     id="g12559">
-                    <path
-                       id="path12561"
-                       d="m 61.597,88.049 c -0.288,-0.072 -0.576,-0.144 -0.864,-0.288 l 12.24,-3.024"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12563">
-                  <g
-                     id="g12565">
-                    <path
-                       id="path12567"
-                       d="m 62.245,88.193 c -0.36,-0.072 -0.648,-0.144 -1.008,-0.216 l 11.16,-2.808"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12569">
-                  <g
-                     id="g12571">
-                    <path
-                       id="path12573"
-                       d="M 62.821,88.337 C 62.389,88.265 62.029,88.193 61.597,88.049 L 71.965,85.457"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12575">
-                  <g
-                     id="g12577">
-                    <path
-                       id="path12579"
-                       d="m 63.613,88.409 c -0.432,0 -0.864,-0.072 -1.368,-0.216 l 9.072,-2.232"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12581">
-                  <g
-                     id="g12583">
-                    <path
-                       id="path12585"
-                       d="m 64.837,88.409 c -0.648,0.072 -1.368,0 -2.016,-0.072 l 7.992,-2.016"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12587"
-                   d="m 69.949,86.825 c -2.016,1.152 -4.104,1.728 -6.336,1.584 l 6.336,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path12589"
-                   d="m 68.725,87.473 c -1.224,0.504 -2.52,0.864 -3.888,0.936 l 3.888,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path12591"
-                   d="m 56.773,85.529 2.232,1.44 2.088,0.936 2.088,0.432 2.016,0 1.944,-0.36 1.872,-0.648 1.8,-1.008 1.8,-1.296 1.728,-1.584 1.729,-1.656 1.583,-1.944 1.656,-1.944 1.584,-2.088 1.584,-2.16 1.512,-2.16 1.512,-2.088 -1.296,0.216 -1.008,0.072 -0.72,0.072 -0.648,0.072 -0.648,0.072 -0.647,0 -0.938,0.072 -1.224,0.072 -1.368,1.944 -1.368,1.8 -1.368,1.728 -1.512,1.512 -1.44,1.368 -1.44,1.296 -1.512,1.152 -1.44,1.008 -1.44,0.864 -1.44,0.792 -1.368,0.576 -1.296,0.504 -1.296,0.432 -1.152,0.288 -1.152,0.144 -1.007,0.072 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12593">
-                <path
-                   id="path12595"
-                   d="m 69.229,70.769 c -0.36,0.072 -0.648,0.072 -0.648,0.072 -0.072,0 -0.144,0.072 -0.216,0.144 l 0.864,-0.216 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path12597"
-                   d="m 70.669,70.625 c -1.152,0.144 -2.016,0.216 -2.088,0.216 -0.072,0.072 -0.216,0.216 -0.504,0.432 l 2.592,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path12599"
-                   d="m 69.229,70.769 c 0.648,-0.072 1.656,-0.144 2.88,-0.216 l -4.32,1.08 c 0.288,-0.288 0.432,-0.504 0.576,-0.648 l 0.864,-0.216 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path12601"
-                   d="m 70.669,70.625 c 0.72,0 1.512,-0.072 2.448,-0.144 l -5.544,1.296 c 0.216,-0.144 0.36,-0.36 0.504,-0.504 l 2.592,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path12603"
-                   d="m 72.109,70.553 c 0.72,-0.072 1.512,-0.144 2.305,-0.216 l -7.129,1.728 c 0.216,-0.144 0.36,-0.288 0.504,-0.432 l 4.32,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path12605"
-                   d="m 73.117,70.481 c 0.864,-0.072 1.728,-0.144 2.664,-0.216 l -8.784,2.16 c 0.216,-0.216 0.432,-0.432 0.576,-0.648 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path12607"
-                   d="m 74.414,70.337 c 0.719,-0.072 1.512,-0.144 2.231,-0.144 l -9.792,2.448 c 0.144,-0.216 0.288,-0.36 0.432,-0.576 l 7.129,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path12609"
-                   d="m 75.781,70.265 c 0.72,-0.072 1.44,-0.144 2.088,-0.144 l -11.304,2.808 c 0.144,-0.216 0.288,-0.36 0.432,-0.504 l 8.784,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path12611"
-                   d="m 78.013,70.265 c 0,-0.072 0.072,-0.144 0.144,-0.216 -0.504,0.072 -1.008,0.072 -1.512,0.144 l -9.792,2.448 c -0.216,0.144 -0.432,0.36 -0.576,0.576 l 11.736,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path12613"
-                   d="m 77.869,70.481 c 0.072,-0.144 0.144,-0.288 0.288,-0.432 -0.144,0.072 -0.216,0.072 -0.288,0.072 l -11.304,2.808 c -0.144,0.144 -0.36,0.288 -0.504,0.504 l 11.808,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path12615"
-                   d="m 78.013,70.265 c -0.144,0.216 -0.216,0.36 -0.36,0.504 l -11.88,2.952 c 0.144,-0.216 0.36,-0.36 0.504,-0.504 l 11.736,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path12617"
-                   d="m 77.869,70.481 c -0.144,0.216 -0.287,0.36 -0.359,0.576 l -12.025,2.952 c 0.216,-0.216 0.36,-0.432 0.576,-0.576 l 11.808,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path12619"
-                   d="m 77.653,70.769 c -0.143,0.144 -0.215,0.36 -0.36,0.576 l -12.168,2.952 c 0.216,-0.216 0.432,-0.432 0.648,-0.576 l 11.88,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path12621"
-                   d="m 77.51,71.057 c -0.145,0.144 -0.217,0.288 -0.361,0.432 l -12.168,3.024 c 0.144,-0.144 0.288,-0.36 0.504,-0.504 L 77.51,71.057 Z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path12623"
-                   d="m 77.293,71.345 c -0.144,0.144 -0.216,0.288 -0.36,0.432 l -12.312,3.024 c 0.216,-0.144 0.36,-0.288 0.504,-0.504 l 12.168,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path12625"
-                   d="m 77.149,71.489 c -0.144,0.216 -0.288,0.36 -0.432,0.576 l -12.384,3.096 c 0.216,-0.216 0.432,-0.432 0.648,-0.648 l 12.168,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path12627"
-                   d="m 76.933,71.777 c -0.072,0.144 -0.216,0.288 -0.288,0.432 l -12.528,3.096 c 0.216,-0.144 0.36,-0.288 0.504,-0.504 l 12.312,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path12629"
-                   d="m 76.717,72.065 c -0.072,0.144 -0.216,0.288 -0.288,0.432 l -12.6,3.168 c 0.144,-0.216 0.36,-0.36 0.504,-0.504 l 12.384,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path12631"
-                   d="m 76.645,72.209 c -0.144,0.216 -0.288,0.432 -0.432,0.576 l -12.744,3.168 c 0.216,-0.216 0.432,-0.432 0.648,-0.648 l 12.528,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path12633"
-                   d="m 76.429,72.497 c -0.144,0.216 -0.216,0.36 -0.359,0.504 l -12.817,3.168 c 0.216,-0.216 0.36,-0.36 0.576,-0.504 l 12.6,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path12635"
-                   d="m 76.213,72.785 c -0.143,0.144 -0.215,0.36 -0.36,0.504 l -12.96,3.168 c 0.216,-0.144 0.432,-0.36 0.576,-0.504 l 12.744,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path12637"
-                   d="m 76.07,73.001 c -0.144,0.144 -0.289,0.36 -0.433,0.576 l -13.032,3.24 c 0.216,-0.216 0.432,-0.432 0.648,-0.648 L 76.07,73.001 Z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path12639"
-                   d="m 75.853,73.289 c -0.144,0.144 -0.288,0.36 -0.432,0.576 l -13.176,3.24 c 0.216,-0.216 0.432,-0.432 0.648,-0.648 l 12.96,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path12641"
-                   d="m 75.637,73.577 c -0.144,0.144 -0.288,0.288 -0.36,0.432 l -13.248,3.312 c 0.144,-0.216 0.36,-0.36 0.576,-0.504 l 13.032,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path12643"
-                   d="m 75.421,73.865 c -0.144,0.144 -0.288,0.288 -0.432,0.432 l -13.32,3.312 c 0.216,-0.144 0.36,-0.36 0.576,-0.504 l 13.176,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path12645"
-                   d="m 75.277,74.009 c -0.144,0.216 -0.288,0.432 -0.504,0.576 l -13.464,3.384 c 0.216,-0.216 0.432,-0.432 0.72,-0.648 l 13.248,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path12647"
-                   d="m 74.989,74.297 c -0.072,0.216 -0.216,0.36 -0.36,0.504 l -13.608,3.383 c 0.216,-0.215 0.432,-0.359 0.648,-0.575 l 13.32,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path12649"
-                   d="m 74.773,74.585 c -0.072,0.144 -0.215,0.36 -0.359,0.504 l -13.753,3.384 c 0.216,-0.144 0.432,-0.36 0.648,-0.504 l 13.464,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path12651"
-                   d="m 74.629,74.801 c -0.143,0.216 -0.288,0.36 -0.504,0.576 l -13.824,3.456 c 0.216,-0.216 0.504,-0.432 0.72,-0.649 l 13.608,-3.383 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path12653"
-                   d="m 74.414,75.089 c -0.145,0.144 -0.289,0.288 -0.433,0.504 l -13.968,3.456 c 0.216,-0.216 0.432,-0.36 0.648,-0.576 l 13.753,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path12655"
-                   d="m 74.125,75.377 c -0.144,0.144 -0.288,0.36 -0.432,0.504 l -14.112,3.456 c 0.288,-0.144 0.504,-0.36 0.72,-0.504 l 13.824,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path12657"
-                   d="m 73.981,75.593 c -0.144,0.144 -0.36,0.36 -0.504,0.576 l -14.256,3.528 c 0.288,-0.216 0.504,-0.432 0.792,-0.648 l 13.968,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path12659"
-                   d="m 73.693,75.881 c -0.144,0.216 -0.288,0.36 -0.504,0.576 l -14.4,3.528 c 0.288,-0.216 0.576,-0.432 0.792,-0.648 l 14.112,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path12661"
-                   d="m 73.477,76.169 c -0.144,0.144 -0.288,0.288 -0.432,0.504 l -14.544,3.6 c 0.216,-0.216 0.432,-0.432 0.72,-0.576 l 14.256,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path12663"
-                   d="m 73.189,76.457 c -0.144,0.144 -0.288,0.288 -0.432,0.504 l -14.688,3.6 c 0.216,-0.144 0.432,-0.36 0.72,-0.576 l 14.4,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path12665"
-                   d="m 73.045,76.673 c -0.216,0.216 -0.432,0.36 -0.576,0.576 l -14.904,3.672 c 0.288,-0.216 0.576,-0.432 0.936,-0.648 l 14.544,-3.6 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path12667"
-                   d="m 72.757,76.961 c -0.144,0.144 -0.36,0.36 -0.504,0.504 l -15.048,3.744 c 0.288,-0.216 0.576,-0.432 0.864,-0.648 l 14.688,-3.6 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path12669"
-                   d="m 72.469,77.249 c -0.144,0.144 -0.36,0.36 -0.504,0.504 l -15.192,3.744 c 0.288,-0.144 0.504,-0.36 0.792,-0.576 l 14.904,-3.672 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path12671"
-                   d="m 72.253,77.465 c -0.216,0.216 -0.432,0.36 -0.576,0.576 l -15.48,3.816 c 0.36,-0.216 0.72,-0.432 1.008,-0.648 l 15.048,-3.744 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path12673"
-                   d="m 71.965,77.753 c -0.144,0.144 -0.36,0.36 -0.504,0.504 l -15.624,3.888 c 0.288,-0.216 0.648,-0.432 0.936,-0.648 l 15.192,-3.744 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path12675"
-                   d="m 71.677,78.041 c -0.216,0.216 -0.36,0.36 -0.576,0.504 l -15.84,3.96 c 0.36,-0.216 0.648,-0.432 0.936,-0.648 l 15.48,-3.816 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path12677"
-                   d="m 71.461,78.257 c -0.216,0.216 -0.504,0.432 -0.72,0.648 l -16.056,3.96 c 0.36,-0.216 0.792,-0.504 1.152,-0.72 l 15.624,-3.888 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path12679"
-                   d="m 71.101,78.545 c -0.216,0.216 -0.432,0.432 -0.72,0.648 l -16.416,4.104 c 0.432,-0.288 0.864,-0.504 1.296,-0.792 l 15.84,-3.96 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path12681"
-                   d="m 70.741,78.905 c -0.144,0.144 -0.36,0.36 -0.576,0.504 l -16.632,4.104 c 0.36,-0.216 0.72,-0.432 1.152,-0.648 l 16.056,-3.96 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path12683"
-                   d="m 70.381,79.193 c -0.144,0.216 -0.36,0.36 -0.576,0.576 l -17.136,4.176 c 0.432,-0.216 0.864,-0.432 1.296,-0.648 l 16.416,-4.104 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path12685"
-                   d="m 70.165,79.409 c -0.216,0.216 -0.504,0.432 -0.792,0.648 l -17.712,4.392 c 0.648,-0.289 1.224,-0.576 1.872,-0.936 l 16.632,-4.104 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path12687"
-                   d="m 69.805,79.769 c -0.216,0.144 -0.432,0.36 -0.648,0.504 l -18.288,4.536 c 0.648,-0.288 1.224,-0.504 1.8,-0.864 l 17.136,-4.176 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <g
-                   id="g12689">
-                  <g
-                     id="g12691">
-                    <path
-                       id="path12693"
-                       d="m 50.293,85.169 c -0.072,0 -0.144,0 -0.216,-0.072 0.504,-0.144 1.08,-0.36 1.584,-0.648 l 17.712,-4.392"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12695">
-                  <g
-                     id="g12697">
-                    <path
-                       id="path12699"
-                       d="m 50.869,85.241 c -0.288,0 -0.504,-0.072 -0.792,-0.144 0.288,-0.072 0.504,-0.216 0.792,-0.288 l 18.288,-4.536"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12701">
-                  <g
-                     id="g12703">
-                    <path
-                       id="path12705"
-                       d="m 51.301,85.313 c -0.36,-0.072 -0.648,-0.072 -1.008,-0.144 l 18.432,-4.536"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12707">
-                  <g
-                     id="g12709">
-                    <path
-                       id="path12711"
-                       d="m 51.877,85.385 c -0.288,0 -0.648,-0.072 -1.008,-0.144 l 17.352,-4.248"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12713">
-                  <g
-                     id="g12715">
-                    <path
-                       id="path12717"
-                       d="m 52.597,85.457 c -0.432,0 -0.864,-0.072 -1.296,-0.144 l 16.632,-4.104"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12719">
-                  <g
-                     id="g12721">
-                    <path
-                       id="path12723"
-                       d="M 53.245,85.529 C 52.813,85.457 52.381,85.457 51.877,85.385 L 67.429,81.569"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12725">
-                  <g
-                     id="g12727">
-                    <path
-                       id="path12729"
-                       d="m 53.821,85.529 c -0.432,0 -0.792,-0.072 -1.224,-0.072 l 14.256,-3.528"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12731">
-                  <g
-                     id="g12733">
-                    <path
-                       id="path12735"
-                       d="m 54.757,85.529 c -0.504,0 -1.008,0 -1.512,0 l 13.032,-3.24"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12737">
-                  <g
-                     id="g12739">
-                    <path
-                       id="path12741"
-                       d="m 55.693,85.529 c -0.648,0 -1.224,0 -1.872,0 l 11.952,-2.952"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12743">
-                  <g
-                     id="g12745">
-                    <path
-                       id="path12747"
-                       d="m 56.557,85.457 c -0.576,0.072 -1.224,0.072 -1.872,0.072 l 10.296,-2.52"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12749">
-                  <g
-                     id="g12751">
-                    <path
-                       id="path12753"
-                       d="m 58.501,85.241 c -0.864,0.144 -1.872,0.216 -2.808,0.288 l 8.424,-2.088"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12755"
-                   d="m 63.325,83.801 c -2.088,0.864 -4.32,1.44 -6.768,1.656 l 6.768,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path12757"
-                   d="m 61.453,84.521 c -0.936,0.288 -1.872,0.504 -2.88,0.648 l 2.88,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path12759"
-                   d="m 50.077,85.097 2.304,0.288 2.232,0.144 2.16,-0.144 2.088,-0.288 1.944,-0.432 1.944,-0.648 1.8,-0.792 1.728,-1.008 1.728,-1.08 1.584,-1.224 1.584,-1.368 1.512,-1.512 1.44,-1.584 1.368,-1.728 1.368,-1.8 1.296,-1.872 -1.44,0.072 -1.584,0.144 -1.512,0.144 -1.512,0.072 -1.296,0.144 -1.08,0.072 -0.792,0.072 -0.36,0.072 -0.144,0.144 -0.36,0.36 -0.576,0.576 -0.72,0.72 -0.792,0.864 -1.008,1.008 -1.08,1.08 -1.224,1.152 -1.368,1.152 -1.44,1.224 -1.44,1.152 -1.584,1.152 -1.656,1.08 -1.656,1.008 -1.728,0.864 -1.728,0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12761">
-                <path
-                   id="path12763"
-                   d="m 68.437,71.129 c 0.072,-0.072 0.144,-0.216 0.216,-0.288 -2.088,0.072 -6.624,0.216 -8.352,0.576 0.288,0 -0.72,0.936 -2.448,2.304 l 10.584,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path12765"
-                   d="m 66.997,72.785 c 0.576,-0.648 1.08,-1.296 1.656,-1.944 -1.368,0.072 -3.6,0.144 -5.544,0.288 l -3.096,0.792 c -0.72,0.648 -2.448,2.088 -4.536,3.744 l 11.52,-2.88 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path12767"
-                   d="m 68.437,71.129 c -0.936,1.08 -1.944,2.16 -3.024,3.312 l -12.456,3.096 c 1.872,-1.368 3.6,-2.736 4.896,-3.816 l 10.584,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path12769"
-                   d="m 66.997,72.785 c -1.008,1.08 -2.16,2.232 -3.312,3.384 l -13.32,3.312 c 1.8,-1.297 3.6,-2.664 5.112,-3.816 l 11.52,-2.88 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path12771"
-                   d="m 65.413,74.441 c -1.152,1.224 -2.376,2.376 -3.672,3.528 l -14.112,3.528 c 1.728,-1.224 3.6,-2.664 5.328,-3.96 l 12.456,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path12773"
-                   d="m 63.685,76.169 c -1.224,1.224 -2.592,2.448 -4.032,3.528 l -14.688,3.672 c 1.584,-1.08 3.528,-2.448 5.4,-3.888 l 13.32,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path12775"
-                   d="m 61.741,77.969 c -1.44,1.296 -3.096,2.592 -4.752,3.672 l -15.624,3.888 c 1.08,-0.504 3.528,-2.088 6.264,-4.032 l 14.112,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <g
-                   id="g12777">
-                  <g
-                     id="g12779">
-                    <path
-                       id="path12781"
-                       d="m 44.389,86.105 c -1.08,0 -2.16,-0.216 -3.168,-0.504 0.648,-0.216 2.016,-1.08 3.744,-2.232 l 14.688,-3.672"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12783"
-                   d="m 56.989,81.641 c -4.968,3.384 -10.512,5.472 -15.768,3.96 0,0 0.072,0 0.144,-0.072 l 15.624,-3.888 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0010" />
-                <path
-                   id="path12785"
-                   d="m 53.173,83.945 c -2.88,1.368 -5.832,2.232 -8.784,2.16 l 8.784,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path12787"
-                   d="m 41.221,85.601 1.944,0.36 1.872,0.144 1.944,-0.216 1.944,-0.36 1.944,-0.648 1.872,-0.792 1.872,-0.936 1.872,-1.152 1.728,-1.224 1.728,-1.296 1.656,-1.368 1.584,-1.44 1.512,-1.512 1.44,-1.44 1.296,-1.44 1.224,-1.44 -0.864,0 -1.08,0.072 -1.152,0.072 -1.224,0 -1.152,0.144 -1.152,0.072 -0.936,0.072 -0.792,0.144 0,0.144 -0.288,0.36 -0.72,0.648 -1.008,0.792 -1.224,1.008 -1.44,1.152 -1.584,1.224 -1.656,1.224 -1.728,1.296 -1.728,1.296 -1.656,1.224 -1.584,1.08 -1.44,1.008 -1.296,0.792 -1.008,0.576 -0.72,0.36 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12789">
-                <path
-                   id="path12791"
-                   d="m 59.005,71.633 c -2.16,0.144 -4.752,0.432 -7.272,0.504 -1.152,0.648 -2.232,1.368 -3.312,2.088 l 10.584,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path12793"
-                   d="m 58.501,73.289 c 1.152,-1.08 1.944,-1.728 2.016,-1.8 -2.376,0.072 -5.616,0.504 -8.784,0.648 -2.376,1.368 -4.608,2.88 -6.912,4.464 l 13.68,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path12795"
-                   d="m 55.909,75.449 c 2.664,-2.232 4.464,-3.816 4.608,-3.96 -0.504,0.072 -1.008,0.072 -1.512,0.144 l -10.584,2.592 c -2.376,1.512 -4.608,3.168 -6.912,4.752 l 14.4,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path12797"
-                   d="m 58.501,73.289 c -1.368,1.08 -3.24,2.664 -5.4,4.392 l -14.976,3.672 c 2.232,-1.512 4.464,-3.169 6.696,-4.752 l 13.68,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path12799"
-                   d="m 55.909,75.449 c -1.728,1.368 -3.672,2.952 -5.832,4.464 l -15.696,3.888 c 2.376,-1.512 4.752,-3.168 7.128,-4.824 l 14.4,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <g
-                   id="g12801">
-                  <g
-                     id="g12803">
-                    <path
-                       id="path12805"
-                       d="m 31.717,85.961 c -0.144,-0.072 -0.216,-0.216 -0.288,-0.432 2.232,-1.224 4.464,-2.664 6.696,-4.176 l 14.976,-3.672"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12807">
-                  <g
-                     id="g12809">
-                    <path
-                       id="path12811"
-                       d="m 33.445,87.113 c -0.792,-0.288 -1.512,-0.792 -2.016,-1.584 1.008,-0.504 1.944,-1.08 2.952,-1.728 l 15.696,-3.888"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12813"
-                   d="m 46.621,82.289 c -5.976,3.96 -12.24,6.768 -14.904,3.672 l 14.904,-3.672 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path12815"
-                   d="m 42.157,84.953 c -3.384,1.728 -6.48,2.736 -8.712,2.16 l 8.712,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <path
-                   id="path12817"
-                   d="m 31.429,85.529 1.152,1.152 1.512,0.503 1.872,0 2.088,-0.503 2.304,-0.864 2.376,-1.224 2.52,-1.44 2.448,-1.584 2.448,-1.728 2.304,-1.728 2.16,-1.656 1.872,-1.584 1.656,-1.296 1.224,-1.08 0.792,-0.72 0.36,-0.288 -0.936,0.072 -1.008,0.072 -1.08,0.072 -1.08,0.072 -1.152,0.144 -1.152,0.072 -1.152,0.072 -1.224,0.072 -1.296,0.792 -1.296,0.792 -1.296,0.864 -1.224,0.792 -1.296,0.864 -1.224,0.936 -1.296,0.864 -1.224,0.864 -1.296,0.936 -1.224,0.864 -1.296,0.864 -1.224,0.864 -1.296,0.792 -1.296,0.792 -1.224,0.792 -1.296,0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12819">
-                <path
-                   id="path12821"
-                   d="m 50.941,72.281 c -3.168,0.144 -7.056,0.288 -7.128,0.432 -0.072,0.144 -0.72,0.792 -1.8,1.728 l 8.928,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path12823"
-                   d="m 48.709,74.081 c 0.864,-0.648 1.872,-1.224 2.88,-1.872 -2.376,0.144 -5.4,0.216 -6.912,0.36 l -0.936,0.288 c -0.36,0.36 -1.728,1.656 -3.672,3.312 l 8.64,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path12825"
-                   d="m 45.757,76.025 c 1.728,-1.224 3.672,-2.448 5.832,-3.816 -0.216,0.072 -0.432,0.072 -0.648,0.072 l -8.928,2.16 c -1.008,0.936 -2.448,2.16 -4.032,3.456 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path12827"
-                   d="m 48.709,74.081 c -2.16,1.368 -4.032,2.664 -5.76,3.816 l -7.272,1.8 c 1.656,-1.224 3.168,-2.448 4.392,-3.528 l 8.64,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path12829"
-                   d="m 45.757,76.025 c -2.16,1.368 -4.032,2.736 -5.688,3.888 l -7.2,1.8 c 1.8,-1.224 3.6,-2.52 5.112,-3.816 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <path
-                   id="path12831"
-                   d="m 42.949,77.897 c -2.088,1.44 -3.96,2.808 -5.544,3.888 l -7.92,1.944 c 2.088,-1.08 4.248,-2.52 6.192,-4.032 l 7.272,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe300" />
-                <g
-                   id="g12833">
-                  <g
-                     id="g12835">
-                    <path
-                       id="path12837"
-                       d="m 25.165,86.033 c -0.36,-0.072 -0.648,-0.216 -0.936,-0.361 2.448,-0.287 5.616,-1.943 8.64,-3.959 l 7.2,-1.8"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12839"
-                   d="m 37.405,81.785 c -5.688,3.96 -9.072,5.76 -13.176,3.887 1.512,-0.143 3.384,-0.935 5.256,-1.943 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe800" />
-                <path
-                   id="path12841"
-                   d="m 34.453,83.729 c -3.6,2.304 -6.336,3.24 -9.288,2.304 l 9.288,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffeb00" />
-                <path
-                   id="path12843"
-                   d="m 24.229,85.672 1.224,0.433 1.224,0.216 1.224,0.072 1.224,-0.216 1.224,-0.36 1.296,-0.504 1.368,-0.72 1.44,-0.864 1.584,-1.008 1.656,-1.152 1.8,-1.296 2.016,-1.368 2.232,-1.512 2.376,-1.656 2.592,-1.728 2.88,-1.8 -1.224,0.072 -1.368,0.072 -1.224,0 -1.224,0.072 -1.08,0.072 -0.864,0.072 -0.576,0.072 -0.216,0.072 -0.144,0.216 -0.432,0.432 -0.648,0.576 -0.864,0.792 -1.08,0.936 -1.224,1.08 -1.296,1.08 -1.512,1.152 -1.512,1.152 -1.584,1.152 -1.584,1.008 -1.656,1.008 -1.584,0.863 -1.584,0.721 -1.512,0.504 -1.368,0.287 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12845">
-                <path
-                   id="path12847"
-                   d="m 39.133,73.145 c -1.296,0.072 -2.592,0.216 -4.032,0.288 -0.36,0.36 -0.72,0.648 -1.08,0.936 l 5.112,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd400" />
-                <path
-                   id="path12849"
-                   d="m 43.237,73.289 c 0.288,-0.216 0.504,-0.432 0.648,-0.576 -3.168,0.144 -5.544,0.504 -8.784,0.72 -1.008,0.792 -1.944,1.728 -2.952,2.664 l 11.088,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path12851"
-                   d="m 41.437,75.017 c 1.296,-1.152 2.088,-2.016 2.448,-2.304 -1.728,0.144 -3.24,0.216 -4.752,0.432 l -5.112,1.224 c -1.224,1.08 -2.448,2.232 -3.672,3.456 l 11.088,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path12853"
-                   d="m 43.237,73.289 c -0.72,0.72 -2.016,2.016 -3.6,3.456 l -11.16,2.736 c 1.224,-1.152 2.52,-2.304 3.672,-3.384 l 11.088,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path12855"
-                   d="m 41.437,75.017 c -1.008,1.008 -2.376,2.232 -3.888,3.456 l -11.232,2.736 c 1.44,-1.08 2.736,-2.232 4.032,-3.384 l 11.088,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path12857"
-                   d="m 39.637,76.745 c -1.296,1.08 -2.808,2.304 -4.392,3.528 l -11.88,2.952 c 1.8,-1.008 3.456,-2.304 5.112,-3.744 l 11.16,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <g
-                   id="g12859">
-                  <g
-                     id="g12861">
-                    <path
-                       id="path12863"
-                       d="m 19.837,85.313 c -0.288,-0.072 -0.576,-0.216 -0.864,-0.432 2.592,-0.432 5.04,-1.872 7.344,-3.672 l 11.232,-2.736"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12865"
-                   d="m 18.973,84.881 c 1.152,0.72 2.448,0.936 3.816,0.936 4.032,-0.072 8.568,-2.664 12.456,-5.544 l -11.88,2.952 c -1.44,0.792 -2.88,1.44 -4.392,1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe600" />
-                <path
-                   id="path12867"
-                   d="m 32.509,82.217 c -4.248,2.664 -8.928,4.536 -12.672,3.096 l 12.672,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe800" />
-                <path
-                   id="path12869"
-                   d="m 28.333,84.449 c -1.872,0.792 -3.744,1.368 -5.544,1.368 l 5.544,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffeb00" />
-                <path
-                   id="path12871"
-                   d="m 18.973,84.881 1.656,0.648 1.8,0.288 1.872,-0.145 1.944,-0.503 2.016,-0.72 1.944,-0.936 2.016,-1.152 1.872,-1.296 1.8,-1.296 1.728,-1.368 1.584,-1.296 1.368,-1.296 1.224,-1.08 0.936,-0.936 0.72,-0.648 0.432,-0.432 -1.152,0.072 -1.08,0.072 -1.08,0.072 -1.08,0.144 -1.008,0.072 -1.08,0.072 -1.152,0.144 -1.152,0.072 -0.864,0.792 -0.936,0.792 -0.864,0.792 -0.936,0.864 -0.936,0.936 -0.936,0.864 -1.008,0.864 -1.008,0.864 -1.008,0.792 -1.008,0.792 -1.08,0.72 -1.008,0.648 -1.152,0.576 -1.08,0.504 -1.152,0.36 -1.152,0.288 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12873">
-                <path
-                   id="path12875"
-                   d="m 30.709,73.793 c -1.224,0.072 -2.592,0.216 -3.96,0.288 -0.144,0.288 -0.216,0.504 -0.36,0.72 l 4.32,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd400" />
-                <path
-                   id="path12877"
-                   d="m 34.021,74.081 c 0.288,-0.216 0.648,-0.504 0.936,-0.792 -1.872,0.216 -5.04,0.576 -8.208,0.792 -0.288,0.72 -0.648,1.44 -1.152,2.088 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path12879"
-                   d="m 32.365,75.665 c 0.864,-0.792 1.728,-1.584 2.592,-2.376 -1.08,0.144 -2.592,0.288 -4.248,0.504 l -4.32,1.008 c -0.432,1.008 -1.08,1.944 -1.872,2.736 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path12881"
-                   d="m 34.021,74.081 c -1.08,1.008 -2.16,2.088 -3.24,3.096 l -7.848,1.944 c 1.08,-0.864 2.016,-1.872 2.664,-2.952 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path12883"
-                   d="m 32.365,75.665 c -1.08,1.008 -2.16,2.088 -3.312,3.096 l -8.928,2.16 c 1.728,-0.864 3.24,-2.016 4.392,-3.384 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <g
-                   id="g12885">
-                  <g
-                     id="g12887">
-                    <path
-                       id="path12889"
-                       d="m 13.717,83.657 c -0.36,-0.216 -0.72,-0.432 -1.08,-0.792 3.96,-0.072 7.632,-1.584 10.296,-3.744 l 7.848,-1.944"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12891">
-                  <g
-                     id="g12893">
-                    <path
-                       id="path12895"
-                       d="m 15.229,84.449 c -0.864,-0.36 -1.728,-0.864 -2.592,-1.584 2.736,0 5.328,-0.792 7.488,-1.944 l 8.928,-2.16"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12897"
-                   d="m 13.717,83.657 c 1.44,0.936 2.88,1.296 4.32,1.224 3.096,-0.072 6.192,-2.016 9.144,-4.536 l -13.464,3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe600" />
-                <path
-                   id="path12899"
-                   d="m 25.093,82.001 c -3.24,2.304 -6.552,3.671 -9.864,2.448 l 9.864,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe800" />
-                <path
-                   id="path12901"
-                   d="m 21.709,84.017 c -1.224,0.504 -2.448,0.864 -3.672,0.864 l 3.672,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffeb00" />
-                <path
-                   id="path12903"
-                   d="m 12.637,82.865 1.44,1.008 1.44,0.648 1.44,0.288 1.44,0.072 1.44,-0.288 1.44,-0.433 1.44,-0.647 1.44,-0.864 1.368,-0.936 1.44,-1.152 1.368,-1.152 1.368,-1.225 1.368,-1.223 1.296,-1.296 1.296,-1.224 1.296,-1.152 -0.792,0.072 -0.864,0.144 -0.936,0.072 -1.008,0.072 -1.08,0.144 -1.152,0.072 -1.224,0.144 -1.152,0.072 -0.36,0.864 -0.504,0.864 -0.504,0.792 -0.648,0.792 -0.72,0.72 -0.792,0.72 -0.792,0.72 -0.936,0.576 -0.936,0.576 -1.008,0.504 -1.08,0.504 -1.08,0.36 -1.152,0.288 -1.152,0.288 -1.224,0.144 -1.224,0.072 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12905">
-                <path
-                   id="path12907"
-                   d="m 23.581,74.369 c -1.44,0.144 -2.952,0.288 -4.896,0.36 -0.288,0.432 -0.504,0.72 -0.792,1.08 l 5.688,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path12909"
-                   d="m 26.389,74.585 c 0,-0.144 0.072,-0.288 0.144,-0.504 -2.376,0.216 -4.536,0.504 -7.848,0.648 l 0,0.072 c -0.576,0.72 -1.08,1.44 -1.656,2.088 l 9.36,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path12911"
-                   d="m 26.029,75.521 c 0.216,-0.504 0.36,-0.936 0.504,-1.44 -1.008,0.144 -1.944,0.216 -2.952,0.288 l -5.688,1.44 c -0.648,0.864 -1.368,1.584 -2.16,2.232 l 10.296,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path12913"
-                   d="m 26.389,74.585 c -0.216,0.648 -0.576,1.296 -0.936,1.872 l -11.592,2.88 c 1.152,-0.648 2.16,-1.44 3.168,-2.448 l 9.36,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <g
-                   id="g12915">
-                  <g
-                     id="g12917">
-                    <path
-                       id="path12919"
-                       d="M 7.093,81.929 C 7.021,81.857 6.949,81.857 6.949,81.785 c 3.816,-0.864 6.552,-1.872 8.784,-3.744 l 10.296,-2.52"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12921">
-                  <g
-                     id="g12923">
-                    <path
-                       id="path12925"
-                       d="m 8.389,82.433 c -0.504,-0.144 -1.008,-0.36 -1.44,-0.648 2.808,-0.648 5.04,-1.368 6.912,-2.448 l 11.592,-2.88"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12927">
-                  <g
-                     id="g12929">
-                    <path
-                       id="path12931"
-                       d="M 10.405,82.793 C 9.181,82.721 8.029,82.361 7.093,81.929 l 17.496,-4.32"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12933"
-                   d="m 8.389,82.433 c 1.584,0.504 3.456,0.576 5.4,0.36 3.528,-0.36 7.2,-1.872 9.72,-4.104 l -15.12,3.744 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe800" />
-                <path
-                   id="path12935"
-                   d="m 21.781,79.985 c -3.312,2.16 -7.704,3.24 -11.376,2.808 l 11.376,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffeb00" />
-                <path
-                   id="path12937"
-                   d="m 18.613,81.569 c -1.584,0.648 -3.24,1.08 -4.824,1.224 l 4.824,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffed00" />
-                <path
-                   id="path12939"
-                   d="m 6.949,81.785 1.224,0.504 1.296,0.36 1.368,0.216 1.512,0 1.44,-0.072 1.584,-0.216 1.512,-0.432 1.512,-0.432 1.44,-0.648 1.368,-0.72 1.224,-0.792 1.152,-0.936 1.008,-1.008 0.864,-1.08 0.648,-1.224 0.432,-1.224 -0.864,0.072 -0.864,0.072 -0.936,0.144 -0.936,0.072 -0.936,0.072 -1.008,0.072 -1.08,0.072 -1.224,0.072 -0.504,0.72 -0.576,0.72 -0.576,0.648 -0.576,0.576 -0.576,0.576 -0.648,0.432 -0.648,0.504 -0.648,0.432 -0.72,0.36 -0.792,0.36 -0.792,0.36 -0.864,0.288 -0.864,0.288 -0.936,0.288 -1.008,0.216 -1.008,0.288 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12941">
-                <path
-                   id="path12943"
-                   d="m 16.453,75.017 c -1.008,0.144 -1.944,0.216 -2.592,0.144 0.144,0.072 0,0.288 -0.36,0.576 l 2.952,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path12945"
-                   d="m 18.397,75.233 c 0.072,-0.144 0.216,-0.288 0.288,-0.504 -1.584,0.144 -3.672,0.504 -4.824,0.432 0.288,0.072 -0.432,0.72 -1.656,1.584 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path12947"
-                   d="m 17.821,76.097 c 0.36,-0.432 0.648,-0.864 0.864,-1.368 -0.72,0.072 -1.44,0.216 -2.232,0.288 l -2.952,0.72 c -0.576,0.504 -1.656,1.296 -3.024,2.16 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path12949"
-                   d="m 18.397,75.233 c -0.36,0.576 -0.792,1.152 -1.368,1.728 l -8.712,2.16 c 1.44,-0.792 2.88,-1.656 3.888,-2.376 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <g
-                   id="g12951">
-                  <g
-                     id="g12953">
-                    <path
-                       id="path12955"
-                       d="m 3.997,80.849 c 0,0 0,0 0,-0.072 1.8,-0.288 4.392,-1.656 6.48,-2.88 l 7.344,-1.8"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12957">
-                  <g
-                     id="g12959">
-                    <path
-                       id="path12961"
-                       d="M 4.645,81.353 C 4.357,81.209 4.141,81.065 3.997,80.777 5.221,80.561 6.805,79.913 8.317,79.121 l 8.712,-2.16"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12963">
-                  <g
-                     id="g12965">
-                    <path
-                       id="path12967"
-                       d="m 6.229,81.641 c -1.008,0 -1.8,-0.288 -2.232,-0.792 l 12.024,-2.952"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12969"
-                   d="m 14.509,78.905 c -3.456,2.232 -7.92,3.384 -9.864,2.448 l 9.864,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe800" />
-                <path
-                   id="path12971"
-                   d="m 12.061,80.201 c -2.088,0.936 -4.176,1.512 -5.832,1.44 l 5.832,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffeb00" />
-                <path
-                   id="path12973"
-                   d="m 3.997,80.777 0.432,0.432 0.648,0.288 0.792,0.144 0.864,0 1.008,-0.072 1.08,-0.216 1.152,-0.36 1.152,-0.36 1.152,-0.504 1.152,-0.576 1.152,-0.648 1.008,-0.721 1.008,-0.791 0.864,-0.864 0.648,-0.864 0.576,-0.936 -0.648,0.072 -0.576,0.072 -0.72,0.072 -0.648,0.072 -0.648,0.072 -0.576,0.072 -0.504,0 -0.504,0 0,0.288 -0.648,0.576 -1.08,0.792 -1.44,0.936 -1.728,0.936 -1.728,0.936 -1.728,0.72 -1.512,0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g12975">
-                <path
-                   id="path12977"
-                   d="m 12.421,75.377 -4.032,0.432 c -0.36,0.216 -1.152,0.648 -2.088,1.08 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd400" />
-                <path
-                   id="path12979"
-                   d="m 13.213,75.881 c 0.504,-0.432 0.792,-0.648 0.792,-0.72 l -5.616,0.648 c -0.792,0.432 -3.744,2.016 -5.616,2.664 l 10.44,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path12981"
-                   d="m 1.909,78.761 c 0,0.288 0,0.504 0,0.648 0.792,4.824 12.312,-4.176 12.096,-4.248 l -1.584,0.216 -6.12,1.512 c -1.512,0.792 -3.456,1.656 -4.392,1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <g
-                   id="g12983">
-                  <g
-                     id="g12985">
-                    <path
-                       id="path12987"
-                       d="m 2.125,80.129 c -0.144,-0.36 -0.288,-0.792 -0.216,-1.368 0.216,0 0.504,-0.144 0.864,-0.288 l 10.44,-2.592"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g12989">
-                  <g
-                     id="g12991">
-                    <path
-                       id="path12993"
-                       d="M 2.773,80.705 C 2.341,80.489 2.053,80.057 1.909,79.409 l 9.792,-2.448"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path12995"
-                   d="m 10.045,78.113 c -3.024,1.944 -6.84,3.816 -7.92,2.016 l 7.92,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <path
-                   id="path12997"
-                   d="m 7.885,79.409 c -2.016,1.08 -4.032,1.8 -5.112,1.296 l 5.112,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe300" />
-                <path
-                   id="path12999"
-                   d="m 1.909,78.761 0.144,1.008 0.36,0.648 0.576,0.288 0.792,0.144 0.936,-0.144 1.08,-0.36 1.08,-0.432 1.152,-0.576 1.152,-0.648 1.08,-0.72 1.08,-0.72 0.864,-0.648 0.792,-0.576 0.576,-0.432 0.36,-0.288 0.072,-0.144 -5.616,0.648 -0.432,0.288 -0.72,0.36 -0.864,0.432 -0.936,0.432 -1.008,0.504 -0.936,0.359 -0.864,0.361 -0.72,0.216 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g13001">
-                <path
-                   id="path13003"
-                   d="m 2.269,76.313 c -0.576,0.072 -1.224,0.144 -1.944,0.288 0,0.072 0,0.144 0,0.216 l 1.944,-0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd100" />
-                <path
-                   id="path13005"
-                   d="m 5.149,76.025 c -1.656,0.144 -2.952,0.216 -4.824,0.576 -0.072,0.288 0,0.504 0,0.648 l 4.824,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd400" />
-                <path
-                   id="path13007"
-                   d="m 2.269,76.313 c 1.728,-0.216 3.096,-0.216 5.328,-0.432 l -7.2,1.8 C 0.325,77.465 0.325,77.177 0.325,76.817 l 1.944,-0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path13009"
-                   d="m 5.149,76.025 c 0.864,0 1.944,-0.072 3.24,-0.216 -1.944,0.648 -6.624,4.32 -7.848,2.304 C 0.469,77.897 0.325,77.609 0.325,77.249 l 4.824,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path13011"
-                   d="m 7.597,75.881 c 0.288,0 0.504,0 0.792,-0.072 -1.8,0.576 -5.904,3.744 -7.488,2.664 C 0.685,78.329 0.469,78.041 0.397,77.681 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path13013"
-                   d="m 0.541,78.113 c 0.288,0.504 0.792,0.648 1.368,0.576 1.44,-0.144 3.384,-1.296 4.968,-2.16 l -6.336,1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path13015"
-                   d="m 5.293,77.393 c -1.656,0.864 -3.456,1.728 -4.392,1.08 l 4.392,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <path
-                   id="path13017"
-                   d="M 3.205,78.401 C 2.773,78.545 2.341,78.689 1.909,78.689 L 3.205,78.401 Z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe300" />
-                <path
-                   id="path13019"
-                   d="m 8.389,75.809 -1.224,0.072 -1.08,0.072 -1.008,0.072 -0.936,0.072 -0.864,0.072 -0.936,0.072 -0.936,0.144 -1.08,0.216 0.216,1.368 0.648,0.648 1.008,0 1.296,-0.36 1.296,-0.648 1.368,-0.72 1.224,-0.648 1.008,-0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g13021">
-                <g
-                   id="g13023">
-                  <g
-                     id="g13025">
-                    <path
-                       id="path13027"
-                       d="m 8.173,75.089 c -1.584,0.216 -2.664,0.432 -3.744,0.648 l 3.312,-0.72 c 0.144,0 0.288,0.072 0.432,0.072 z"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:#ffd600" />
-                    <path
-                       id="path13029"
-                       d="m 4.429,75.737 c -1.368,0.288 -2.52,0.648 -4.248,1.008 l 4.248,-1.008 z"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:#ffd600" />
-                  </g>
-                </g>
-                <path
-                   id="path13031"
-                   d="M 8.173,75.089 C 4.645,75.593 3.277,76.025 0.181,76.745 0.109,76.601 0.109,76.457 0.109,76.313 l 6.912,-1.584 c 0.432,0.144 0.864,0.288 1.152,0.36 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path13033"
-                   d="m 2.413,76.241 c 0.72,-0.144 1.368,-0.36 2.016,-0.504 l 3.312,-0.72 C 7.381,74.873 6.805,74.657 6.229,74.441 l -6.192,1.44 c 0,0.288 0.072,0.576 0.144,0.864 l 2.232,-0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path13035"
-                   d="m 0.037,75.449 c 0,0.216 0,0.504 0.072,0.864 L 7.021,74.729 C 6.517,74.585 5.941,74.369 5.293,74.225 l -5.256,1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path13037"
-                   d="m 0.181,74.945 c -0.072,0.288 -0.144,0.576 -0.144,0.936 l 6.192,-1.44 C 5.653,74.297 5.005,74.081 4.357,73.937 l -4.176,1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <path
-                   id="path13039"
-                   d="m 0.397,74.513 c -0.144,0.216 -0.288,0.504 -0.36,0.936 L 5.293,74.225 C 4.717,74.009 4.069,73.865 3.421,73.793 l -3.024,0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe300" />
-                <path
-                   id="path13041"
-                   d="m 8.173,75.089 -1.224,0.216 -1.08,0.144 -0.936,0.216 -0.936,0.144 -0.864,0.216 -0.864,0.216 -1.008,0.216 -1.08,0.288 -0.072,-1.584 0.648,-1.008 1.008,-0.36 1.368,-0.072 1.44,0.288 1.44,0.36 1.224,0.432 0.936,0.288 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g13043">
-                <path
-                   id="path13045"
-                   d="m 119.341,60.473 c 0.432,0.36 0.864,0.648 1.368,0.936 -3.168,0.576 -6.624,0.72 -10.368,1.152 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13047"
-                   d="m 119.341,60.473 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -11.303,2.664 c 0,0.072 0.072,0.144 0.143,0.144 0.936,-0.144 1.872,-0.216 2.736,-0.36 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13049"
-                   d="m 119.125,60.329 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -11.232,2.592 c 0.145,0.144 0.217,0.288 0.36,0.432 0.216,0 0.504,-0.072 0.72,-0.072 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path13051"
-                   d="m 118.765,60.113 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -11.16,2.592 c 0.144,0.216 0.288,0.36 0.433,0.576 l 11.303,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path13053"
-                   d="m 118.477,59.897 c -0.144,-0.144 -0.36,-0.288 -0.503,-0.432 l -11.089,2.592 c 0.144,0.144 0.288,0.288 0.36,0.432 l 11.232,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path13055"
-                   d="m 118.189,59.609 c -0.215,-0.144 -0.36,-0.288 -0.504,-0.36 l -10.944,2.52 c 0.072,0.144 0.216,0.288 0.288,0.432 l 11.16,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path13057"
-                   d="m 117.974,59.465 c -0.217,-0.144 -0.433,-0.36 -0.577,-0.504 l -10.872,2.52 c 0.144,0.216 0.288,0.36 0.36,0.576 l 11.089,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path13059"
-                   d="m 117.685,59.249 c -0.216,-0.216 -0.432,-0.36 -0.576,-0.504 l -10.8,2.52 c 0.144,0.144 0.288,0.36 0.432,0.504 l 10.944,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path13061"
-                   d="m 117.397,58.961 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.36 l -10.728,2.448 c 0.144,0.144 0.288,0.288 0.36,0.432 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path13063"
-                   d="m 117.109,58.745 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.432 l -10.583,2.52 c 0.071,0.144 0.215,0.288 0.287,0.432 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path13065"
-                   d="m 116.893,58.601 c -0.216,-0.216 -0.431,-0.36 -0.576,-0.504 l -10.512,2.448 c 0.145,0.144 0.288,0.36 0.36,0.504 l 10.728,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path13067"
-                   d="m 116.605,58.313 c -0.215,-0.144 -0.36,-0.288 -0.576,-0.432 l -10.44,2.376 c 0.144,0.216 0.289,0.36 0.433,0.576 l 10.583,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path13069"
-                   d="m 116.317,58.097 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -10.368,2.448 c 0.144,0.144 0.216,0.288 0.36,0.432 l 10.512,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path13071"
-                   d="m 116.029,57.881 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -10.296,2.376 c 0.144,0.144 0.216,0.288 0.36,0.432 l 10.44,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path13073"
-                   d="m 115.813,57.665 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -10.224,2.448 c 0.144,0.144 0.288,0.288 0.432,0.504 l 10.368,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path13075"
-                   d="m 115.525,57.449 c -0.144,-0.144 -0.36,-0.36 -0.503,-0.504 l -10.225,2.376 c 0.144,0.144 0.288,0.36 0.432,0.504 l 10.296,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path13077"
-                   d="m 115.237,57.161 c -0.144,-0.144 -0.287,-0.216 -0.432,-0.36 l -10.152,2.304 c 0.144,0.216 0.288,0.36 0.36,0.504 l 10.224,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path13079"
-                   d="m 115.022,56.945 c -0.217,-0.144 -0.361,-0.288 -0.505,-0.432 l -10.079,2.376 c 0.143,0.144 0.287,0.288 0.359,0.432 l 10.225,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path13081"
-                   d="m 114.805,56.801 c -0.216,-0.216 -0.36,-0.36 -0.576,-0.504 l -10.008,2.304 c 0.144,0.216 0.289,0.36 0.432,0.504 l 10.152,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path13083"
-                   d="m 114.517,56.513 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -10.008,2.304 c 0.144,0.144 0.288,0.36 0.433,0.504 l 10.079,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path13085"
-                   d="m 114.229,56.297 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.936,2.304 c 0.144,0.144 0.288,0.288 0.36,0.432 l 10.008,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path13087"
-                   d="m 114.013,56.081 c -0.216,-0.144 -0.36,-0.288 -0.503,-0.432 l -9.865,2.304 c 0.144,0.144 0.216,0.288 0.36,0.432 l 10.008,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path13089"
-                   d="m 113.797,55.865 c -0.216,-0.144 -0.359,-0.288 -0.576,-0.504 l -9.792,2.304 c 0.144,0.216 0.288,0.36 0.432,0.504 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path13091"
-                   d="m 113.51,55.649 c -0.145,-0.216 -0.361,-0.36 -0.505,-0.504 l -9.792,2.304 c 0.144,0.144 0.288,0.288 0.432,0.504 l 9.865,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path13093"
-                   d="m 113.221,55.361 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -9.719,2.232 c 0.143,0.216 0.287,0.36 0.431,0.504 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path13095"
-                   d="m 113.005,55.145 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -9.72,2.304 c 0.145,0.144 0.288,0.288 0.432,0.432 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path13097"
-                   d="m 112.717,54.929 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.72,2.232 c 0.144,0.144 0.288,0.288 0.433,0.432 l 9.719,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path13099"
-                   d="m 112.501,54.713 c -0.144,-0.144 -0.36,-0.288 -0.503,-0.504 l -9.649,2.304 c 0.144,0.144 0.288,0.288 0.432,0.504 l 9.72,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path13101"
-                   d="m 112.285,54.497 c -0.216,-0.144 -0.359,-0.36 -0.576,-0.504 l -9.576,2.232 c 0.144,0.216 0.288,0.36 0.432,0.504 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path13103"
-                   d="m 111.998,54.209 c -0.145,-0.144 -0.289,-0.288 -0.505,-0.432 l -9.576,2.304 c 0.144,0.144 0.288,0.288 0.432,0.432 l 9.649,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path13105"
-                   d="m 111.709,53.993 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.576,2.232 c 0.144,0.144 0.288,0.288 0.432,0.432 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path13107"
-                   d="m 111.493,53.777 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -9.503,2.232 c 0.143,0.144 0.287,0.288 0.431,0.504 l 9.576,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path13109"
-                   d="m 111.277,53.561 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -9.432,2.232 c 0.145,0.144 0.289,0.36 0.432,0.504 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path13111"
-                   d="m 110.989,53.345 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.504,2.232 c 0.144,0.144 0.288,0.288 0.433,0.432 l 9.503,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path13113"
-                   d="m 110.701,53.057 c -0.144,-0.144 -0.287,-0.216 -0.432,-0.36 l -9.432,2.16 c 0.144,0.144 0.288,0.288 0.432,0.432 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path13115"
-                   d="m 110.557,52.913 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -9.432,2.232 c 0.216,0.144 0.36,0.288 0.504,0.504 l 9.504,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path13117"
-                   d="m 110.269,52.697 c -0.216,-0.216 -0.36,-0.36 -0.576,-0.504 l -9.36,2.16 c 0.144,0.216 0.288,0.36 0.504,0.504 l 9.432,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path13119"
-                   d="m 109.981,52.409 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -9.36,2.232 c 0.144,0.144 0.288,0.288 0.432,0.432 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path13121"
-                   d="m 109.693,52.193 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.359,2.16 c 0.144,0.144 0.287,0.288 0.431,0.432 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path13123"
-                   d="m 109.477,51.977 c -0.144,-0.144 -0.36,-0.288 -0.503,-0.432 l -9.361,2.16 c 0.216,0.144 0.361,0.288 0.504,0.504 l 9.36,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path13125"
-                   d="m 109.261,51.761 c -0.215,-0.144 -0.359,-0.288 -0.576,-0.504 l -9.288,2.232 c 0.144,0.144 0.36,0.288 0.505,0.432 l 9.359,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path13127"
-                   d="m 108.974,51.545 c -0.145,-0.144 -0.361,-0.288 -0.505,-0.432 l -9.288,2.16 c 0.144,0.144 0.288,0.288 0.432,0.432 l 9.361,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path13129"
-                   d="m 108.685,51.257 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.36 l -9.216,2.16 c 0.144,0.144 0.288,0.288 0.432,0.432 l 9.288,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path13131"
-                   d="m 108.469,51.113 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.504 l -9.216,2.16 c 0.144,0.144 0.36,0.36 0.504,0.504 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path13133"
-                   d="m 108.181,50.897 c -0.144,-0.216 -0.36,-0.36 -0.576,-0.504 l -9.215,2.16 c 0.215,0.144 0.359,0.288 0.575,0.504 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path13135"
-                   d="m 107.893,50.609 c -0.144,-0.144 -0.288,-0.288 -0.503,-0.36 l -9.145,2.088 c 0.145,0.144 0.289,0.288 0.432,0.432 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path13137"
-                   d="m 107.605,50.393 c -0.143,-0.144 -0.288,-0.288 -0.504,-0.432 l -9.144,2.16 c 0.144,0.144 0.288,0.288 0.433,0.432 l 9.215,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path13139"
-                   d="m 107.39,50.249 c -0.145,-0.216 -0.361,-0.36 -0.577,-0.504 l -9.144,2.16 c 0.216,0.144 0.36,0.288 0.576,0.432 l 9.145,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path13141"
-                   d="m 107.101,49.961 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.432 l -9.144,2.088 c 0.216,0.216 0.36,0.36 0.576,0.504 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path13143"
-                   d="m 106.813,49.745 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.504 l -9.144,2.16 c 0.216,0.144 0.36,0.288 0.576,0.504 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path13145"
-                   d="m 106.525,49.529 c -0.144,-0.144 -0.36,-0.288 -0.503,-0.432 l -9.144,2.16 c 0.215,0.072 0.359,0.216 0.503,0.36 l 9.144,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path13147"
-                   d="m 106.237,49.241 c -0.144,-0.072 -0.359,-0.216 -0.504,-0.36 l -9.144,2.088 c 0.216,0.144 0.361,0.288 0.504,0.432 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path13149"
-                   d="m 106.022,49.097 c -0.217,-0.144 -0.433,-0.288 -0.649,-0.432 l -9.072,2.088 c 0.216,0.144 0.432,0.288 0.577,0.504 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path13151"
-                   d="m 105.733,48.881 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -9.072,2.16 c 0.216,0.144 0.432,0.288 0.576,0.432 l 9.144,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path13153"
-                   d="m 105.373,48.665 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -9.072,2.088 c 0.216,0.144 0.36,0.288 0.504,0.432 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path13155"
-                   d="m 105.085,48.377 c -0.216,-0.144 -0.36,-0.216 -0.575,-0.36 l -9,2.088 c 0.215,0.144 0.359,0.288 0.503,0.432 l 9.072,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path13157"
-                   d="m 104.869,48.233 c -0.216,-0.144 -0.431,-0.288 -0.648,-0.432 l -9,2.088 c 0.217,0.144 0.432,0.288 0.576,0.432 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path13159"
-                   d="m 104.51,48.017 c -0.217,-0.144 -0.433,-0.288 -0.649,-0.504 l -8.928,2.16 c 0.216,0.144 0.36,0.288 0.577,0.432 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path13161"
-                   d="m 104.221,47.801 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.432 l -9,2.088 c 0.216,0.144 0.36,0.288 0.576,0.432 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path13163"
-                   d="m 103.861,47.513 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.36 l -8.928,2.088 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.928,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path13165"
-                   d="m 103.645,47.369 c -0.288,-0.144 -0.504,-0.288 -0.719,-0.432 l -8.928,2.088 c 0.215,0.144 0.431,0.288 0.647,0.432 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path13167"
-                   d="m 103.285,47.153 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.432 l -8.856,2.088 c 0.217,0.144 0.432,0.288 0.648,0.432 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path13169"
-                   d="m 102.926,46.937 c -0.217,-0.144 -0.433,-0.288 -0.649,-0.36 l -8.856,2.016 c 0.216,0.144 0.432,0.288 0.577,0.432 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path13171"
-                   d="m 102.565,46.721 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.36 l -8.784,2.016 c 0.144,0.144 0.36,0.288 0.576,0.432 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path13173"
-                   d="m 102.277,46.577 c -0.216,-0.144 -0.504,-0.288 -0.719,-0.432 l -8.785,2.016 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.856,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path13175"
-                   d="m 101.917,46.361 c -0.288,-0.144 -0.503,-0.288 -0.792,-0.432 l -8.711,2.016 c 0.215,0.144 0.431,0.288 0.719,0.432 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path13177"
-                   d="m 101.558,46.145 c -0.289,-0.144 -0.505,-0.288 -0.721,-0.36 l -8.712,2.016 c 0.216,0.072 0.433,0.216 0.648,0.36 l 8.785,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path13179"
-                   d="m 101.125,45.929 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.36 l -8.64,2.016 c 0.216,0.072 0.432,0.216 0.649,0.36 l 8.711,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path13181"
-                   d="m 100.837,45.785 c -0.288,-0.144 -0.576,-0.288 -0.863,-0.432 l -8.641,2.016 c 0.288,0.144 0.504,0.288 0.792,0.432 l 8.712,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path13183"
-                   d="m 100.405,45.569 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.432 l -8.567,2.016 c 0.215,0.144 0.503,0.288 0.791,0.432 l 8.64,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path13185"
-                   d="m 99.974,45.353 c -0.289,-0.144 -0.505,-0.216 -0.793,-0.36 l -8.568,2.016 c 0.216,0.072 0.504,0.216 0.72,0.36 l 8.641,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path13187"
-                   d="m 99.541,45.137 c -0.288,-0.144 -0.576,-0.216 -0.864,-0.36 l -8.496,2.016 c 0.288,0.072 0.504,0.216 0.793,0.36 l 8.567,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path13189"
-                   d="m 99.181,44.993 c -0.36,-0.144 -0.647,-0.288 -1.008,-0.36 l -8.424,1.944 c 0.288,0.144 0.576,0.288 0.864,0.432 l 8.568,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path13191"
-                   d="m 98.677,44.777 c -0.36,-0.072 -0.648,-0.216 -1.008,-0.36 l -8.352,1.944 c 0.288,0.144 0.576,0.288 0.864,0.432 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path13193"
-                   d="m 98.173,44.633 c -0.36,-0.144 -0.72,-0.288 -1.08,-0.36 l -8.28,1.944 c 0.288,0.072 0.649,0.216 0.936,0.36 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path13195"
-                   d="m 97.669,44.417 c -0.36,-0.072 -0.647,-0.216 -1.008,-0.288 l -8.28,1.944 c 0.288,0.072 0.576,0.216 0.936,0.288 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path13197"
-                   d="m 97.093,44.273 c -0.36,-0.144 -0.72,-0.216 -1.08,-0.288 l -8.208,1.944 c 0.288,0.072 0.648,0.144 1.008,0.288 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path13199"
-                   d="m 96.661,44.129 c -0.432,-0.072 -0.936,-0.216 -1.368,-0.288 l -8.136,1.944 c 0.432,0.072 0.793,0.144 1.224,0.288 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path13201"
-                   d="M 96.013,43.985 C 95.51,43.913 95.005,43.769 94.501,43.697 l -8.063,1.944 c 0.431,0.072 0.863,0.144 1.367,0.288 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path13203"
-                   d="m 95.293,43.841 c -0.432,-0.072 -0.936,-0.144 -1.44,-0.216 l -8.136,1.944 c 0.432,0 0.936,0.072 1.44,0.216 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path13205"
-                   d="m 94.501,43.697 c -0.575,-0.072 -1.08,-0.072 -1.656,-0.144 l -8.568,2.016 c 0.721,-0.072 1.44,-0.072 2.161,0.072 l 8.063,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path13207"
-                   d="m 84.133,45.353 c -0.36,0.144 -0.719,0.288 -1.08,0.432 0.864,-0.216 1.728,-0.288 2.664,-0.216 l 8.136,-1.944 c -0.72,-0.072 -1.512,-0.072 -2.304,-0.072 l -7.416,1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path13209"
-                   d="m 86.51,44.489 c -1.081,0.288 -2.305,0.792 -3.457,1.296 0.361,-0.072 0.792,-0.144 1.224,-0.216 l 8.568,-2.016 c -1.152,0 -2.376,0.072 -3.6,0.288 l -2.735,0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path13211"
-                   d="m 83.053,45.785 3.168,-1.224 3.024,-0.792 2.808,-0.216 2.664,0.144 2.592,0.576 2.376,0.864 2.304,1.224 2.232,1.368 2.16,1.584 2.088,1.728 2.088,1.8 2.016,1.872 2.016,1.8 2.016,1.728 2.016,1.656 2.088,1.512 -0.72,0.144 -0.792,0.072 -0.792,0.072 -0.72,0.144 -0.792,0.072 -0.792,0.072 -0.864,0.072 -0.792,0.072 -0.792,0.072 -0.864,0.072 -0.863,0.144 -0.793,0.072 -0.864,0.072 -0.864,0.144 -0.936,0.072 -0.864,0.144 -0.72,-1.008 -0.935,-1.224 -1.081,-1.44 -1.296,-1.44 -1.368,-1.584 -1.512,-1.584 -1.656,-1.584 -1.656,-1.512 -1.8,-1.44 -1.8,-1.296 -1.8,-1.152 -1.872,-0.936 -1.8,-0.72 -1.799,-0.432 -1.801,-0.072 -1.656,0.288 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g13213">
-                <path
-                   id="path13215"
-                   d="m 106.885,62.201 c 0.216,0.288 0.432,0.576 0.649,0.792 -3.745,0.288 -5.185,0.504 -9.144,1.152 l 8.495,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13217"
-                   d="m 106.885,62.201 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.36 l -8.712,2.016 c 0.144,0.072 0.288,0.216 0.432,0.288 0,0 0.072,0 0.145,0 l 8.495,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13219"
-                   d="m 106.741,61.985 c -0.144,-0.072 -0.216,-0.216 -0.36,-0.36 l -8.784,2.016 c 0.144,0.144 0.288,0.288 0.432,0.36 l 8.712,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path13221"
-                   d="m 106.525,61.841 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.432 l -8.856,2.088 c 0.144,0.072 0.288,0.216 0.432,0.36 l 8.712,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path13223"
-                   d="m 106.381,61.625 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.36 l -8.928,2.016 c 0.144,0.144 0.288,0.288 0.432,0.36 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path13225"
-                   d="m 106.237,61.409 c -0.072,-0.072 -0.215,-0.216 -0.287,-0.36 l -9,2.088 c 0.143,0.072 0.287,0.216 0.431,0.36 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path13227"
-                   d="m 106.093,61.265 c -0.071,-0.144 -0.215,-0.288 -0.288,-0.432 l -9.072,2.088 c 0.145,0.144 0.289,0.288 0.432,0.36 l 8.928,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path13229"
-                   d="m 105.95,61.049 c -0.145,-0.144 -0.217,-0.288 -0.289,-0.36 l -9.072,2.088 c 0.144,0.072 0.216,0.216 0.361,0.36 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path13231"
-                   d="m 105.805,60.833 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -9.144,2.16 c 0.144,0.144 0.288,0.216 0.432,0.36 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path13233"
-                   d="m 105.661,60.689 c -0.144,-0.144 -0.288,-0.36 -0.36,-0.504 l -9.216,2.16 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path13235"
-                   d="m 105.445,60.401 c -0.144,-0.144 -0.216,-0.216 -0.288,-0.36 l -9.216,2.088 c 0.144,0.144 0.288,0.288 0.36,0.432 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path13237"
-                   d="m 105.301,60.185 c -0.144,-0.072 -0.216,-0.216 -0.36,-0.36 l -9.216,2.16 c 0.144,0.072 0.216,0.216 0.36,0.36 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path13239"
-                   d="m 105.157,60.041 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -9.287,2.16 c 0.143,0.144 0.287,0.288 0.431,0.36 l 9.216,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path13241"
-                   d="m 104.941,59.825 c -0.072,-0.144 -0.216,-0.216 -0.288,-0.36 l -9.36,2.16 c 0.145,0.072 0.288,0.216 0.432,0.36 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path13243"
-                   d="m 104.797,59.609 c -0.072,-0.072 -0.216,-0.216 -0.287,-0.36 l -9.361,2.16 c 0.144,0.144 0.216,0.288 0.361,0.36 l 9.287,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path13245"
-                   d="m 104.653,59.465 c -0.143,-0.144 -0.215,-0.288 -0.36,-0.36 l -9.36,2.16 c 0.144,0.072 0.288,0.216 0.36,0.36 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path13247"
-                   d="m 104.51,59.249 c -0.145,-0.144 -0.289,-0.288 -0.361,-0.432 l -9.432,2.232 c 0.144,0.072 0.288,0.216 0.432,0.36 l 9.361,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path13249"
-                   d="m 104.293,59.105 c -0.072,-0.216 -0.216,-0.288 -0.36,-0.432 l -9.36,2.16 c 0.072,0.144 0.216,0.288 0.36,0.432 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path13251"
-                   d="m 104.149,58.817 c -0.144,-0.144 -0.216,-0.216 -0.36,-0.36 l -9.432,2.16 c 0.072,0.144 0.216,0.288 0.36,0.432 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path13253"
-                   d="m 103.933,58.673 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -9.504,2.16 c 0.144,0.144 0.288,0.288 0.432,0.432 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path13255"
-                   d="m 103.789,58.457 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -9.575,2.232 c 0.144,0.144 0.287,0.216 0.431,0.36 l 9.432,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path13257"
-                   d="m 103.645,58.241 c -0.144,-0.144 -0.216,-0.216 -0.36,-0.36 l -9.504,2.16 c 0.145,0.144 0.217,0.288 0.36,0.36 l 9.504,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path13259"
-                   d="m 103.501,58.025 c -0.144,-0.072 -0.216,-0.216 -0.36,-0.36 l -9.576,2.232 c 0.144,0.072 0.288,0.216 0.361,0.36 l 9.575,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path13261"
-                   d="m 103.285,57.881 c -0.072,-0.144 -0.216,-0.288 -0.287,-0.432 l -9.577,2.232 c 0.072,0.144 0.216,0.288 0.36,0.36 l 9.504,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path13263"
-                   d="m 103.141,57.665 c -0.143,-0.144 -0.288,-0.288 -0.36,-0.432 l -9.576,2.232 c 0.072,0.144 0.216,0.288 0.36,0.432 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path13265"
-                   d="m 102.998,57.449 c -0.145,-0.144 -0.289,-0.216 -0.361,-0.36 l -9.648,2.232 c 0.144,0.144 0.288,0.216 0.432,0.36 l 9.577,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path13267"
-                   d="m 102.781,57.233 c -0.144,-0.144 -0.216,-0.216 -0.36,-0.36 l -9.576,2.232 c 0.072,0.144 0.216,0.216 0.36,0.36 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path13269"
-                   d="m 102.637,57.089 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -9.648,2.232 c 0.072,0.144 0.216,0.288 0.36,0.432 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path13271"
-                   d="m 102.421,56.873 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.36 l -9.719,2.232 c 0.144,0.072 0.287,0.216 0.431,0.36 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path13273"
-                   d="m 102.277,56.657 c -0.144,-0.144 -0.216,-0.216 -0.36,-0.36 l -9.648,2.232 c 0.072,0.144 0.217,0.216 0.36,0.36 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path13275"
-                   d="m 102.133,56.513 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -9.72,2.232 c 0.144,0.144 0.216,0.288 0.361,0.432 l 9.719,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path13277"
-                   d="m 101.917,56.297 c -0.144,-0.144 -0.216,-0.288 -0.359,-0.36 l -9.721,2.232 c 0.144,0.072 0.288,0.216 0.432,0.36 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path13279"
-                   d="m 101.773,56.081 c -0.144,-0.144 -0.215,-0.216 -0.359,-0.36 l -9.721,2.232 c 0.144,0.144 0.216,0.288 0.36,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path13281"
-                   d="m 101.558,55.937 c -0.144,-0.144 -0.217,-0.288 -0.361,-0.432 l -9.72,2.232 c 0.144,0.144 0.288,0.288 0.36,0.432 l 9.721,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path13283"
-                   d="m 101.414,55.721 c -0.145,-0.144 -0.289,-0.288 -0.433,-0.432 l -9.648,2.304 c 0.072,0.072 0.216,0.216 0.36,0.36 l 9.721,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path13285"
-                   d="m 101.197,55.505 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.36 l -9.72,2.232 c 0.144,0.144 0.288,0.288 0.36,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path13287"
-                   d="m 100.981,55.289 c -0.072,-0.144 -0.216,-0.216 -0.288,-0.36 l -9.791,2.232 c 0.144,0.144 0.287,0.288 0.431,0.432 l 9.648,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path13289"
-                   d="m 100.837,55.145 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -9.72,2.232 c 0.072,0.144 0.217,0.288 0.36,0.432 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path13291"
-                   d="m 100.693,54.929 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.36 l -9.72,2.232 c 0.144,0.144 0.216,0.216 0.361,0.36 l 9.791,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path13293"
-                   d="m 100.477,54.713 c -0.144,-0.144 -0.216,-0.216 -0.36,-0.36 l -9.72,2.232 c 0.072,0.144 0.216,0.288 0.36,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path13295"
-                   d="m 100.333,54.497 c -0.144,-0.072 -0.287,-0.216 -0.359,-0.36 l -9.793,2.304 c 0.144,0.072 0.216,0.216 0.36,0.36 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path13297"
-                   d="m 100.117,54.353 c -0.143,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.72,2.304 c 0.144,0.144 0.288,0.216 0.432,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path13299"
-                   d="m 99.974,54.137 c -0.145,-0.144 -0.289,-0.216 -0.433,-0.36 l -9.72,2.232 c 0.144,0.144 0.216,0.288 0.36,0.432 l 9.793,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path13301"
-                   d="m 99.685,53.921 c -0.072,-0.144 -0.216,-0.216 -0.36,-0.36 l -9.72,2.304 c 0.144,0.072 0.216,0.216 0.36,0.36 l 9.72,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path13303"
-                   d="m 99.541,53.777 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -9.719,2.304 c 0.072,0.144 0.215,0.288 0.359,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path13305"
-                   d="m 99.325,53.561 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.36 l -9.792,2.232 c 0.144,0.144 0.289,0.288 0.432,0.432 l 9.72,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path13307"
-                   d="m 99.181,53.345 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.36 l -9.72,2.232 c 0.144,0.144 0.288,0.288 0.433,0.432 l 9.719,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path13309"
-                   d="m 98.965,53.201 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.36 l -9.792,2.232 c 0.144,0.144 0.288,0.216 0.36,0.36 l 9.792,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path13311"
-                   d="m 98.749,52.985 c -0.072,-0.144 -0.215,-0.216 -0.359,-0.36 l -9.721,2.232 c 0.072,0.144 0.216,0.288 0.36,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path13313"
-                   d="m 98.605,52.841 c -0.143,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.72,2.232 c 0.144,0.144 0.216,0.288 0.36,0.432 l 9.792,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path13315"
-                   d="m 98.39,52.625 c -0.145,-0.144 -0.289,-0.288 -0.433,-0.432 l -9.72,2.304 c 0.144,0.144 0.288,0.216 0.432,0.36 l 9.721,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path13317"
-                   d="m 98.173,52.409 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.36 l -9.648,2.232 c 0.072,0.144 0.216,0.288 0.36,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path13319"
-                   d="m 97.957,52.193 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.36 l -9.647,2.304 c 0.144,0.072 0.215,0.216 0.359,0.36 l 9.72,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path13321"
-                   d="m 97.741,52.049 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.36 l -9.72,2.232 c 0.144,0.144 0.289,0.288 0.432,0.36 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path13323"
-                   d="m 97.525,51.833 c -0.072,-0.144 -0.216,-0.216 -0.36,-0.36 l -9.72,2.232 c 0.144,0.144 0.288,0.288 0.433,0.432 l 9.647,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path13325"
-                   d="m 97.381,51.689 c -0.144,-0.144 -0.288,-0.288 -0.431,-0.36 l -9.721,2.232 c 0.144,0.072 0.288,0.216 0.432,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path13327"
-                   d="m 97.165,51.473 c -0.143,-0.144 -0.287,-0.216 -0.432,-0.36 l -9.72,2.232 c 0.144,0.144 0.288,0.216 0.432,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path13329"
-                   d="m 96.95,51.329 c -0.145,-0.144 -0.289,-0.288 -0.433,-0.36 l -9.648,2.232 c 0.144,0.072 0.216,0.216 0.36,0.36 l 9.721,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path13331"
-                   d="m 96.733,51.113 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.36 l -9.648,2.232 c 0.144,0.072 0.288,0.216 0.36,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path13333"
-                   d="m 96.517,50.969 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -9.575,2.232 c 0.144,0.144 0.287,0.288 0.431,0.432 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path13335"
-                   d="m 96.301,50.753 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.36 l -9.648,2.232 c 0.144,0.072 0.289,0.216 0.432,0.36 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path13337"
-                   d="m 96.013,50.537 c -0.144,-0.144 -0.288,-0.216 -0.36,-0.36 l -9.648,2.232 c 0.144,0.144 0.288,0.288 0.433,0.36 l 9.575,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path13339"
-                   d="m 95.869,50.393 c -0.144,-0.144 -0.359,-0.288 -0.504,-0.36 l -9.504,2.232 c 0.072,0.072 0.216,0.216 0.36,0.36 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path13341"
-                   d="m 95.653,50.177 c -0.215,-0.144 -0.36,-0.216 -0.504,-0.36 l -9.576,2.232 c 0.144,0.072 0.288,0.216 0.432,0.36 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path13343"
-                   d="m 95.365,50.033 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.36 l -9.576,2.16 c 0.144,0.144 0.288,0.288 0.504,0.432 l 9.504,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path13345"
-                   d="m 95.149,49.817 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.36 l -9.576,2.232 c 0.144,0.072 0.288,0.216 0.432,0.36 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path13347"
-                   d="m 94.933,49.673 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.432 l -9.503,2.232 c 0.144,0.144 0.287,0.216 0.431,0.36 l 9.576,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path13349"
-                   d="m 94.717,49.457 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.432,2.232 c 0.144,0.072 0.289,0.216 0.432,0.36 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path13351"
-                   d="m 94.429,49.241 c -0.216,-0.072 -0.359,-0.216 -0.503,-0.36 l -9.433,2.232 c 0.144,0.144 0.288,0.216 0.433,0.36 l 9.503,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path13353"
-                   d="m 94.141,49.097 c -0.143,-0.144 -0.288,-0.216 -0.504,-0.36 l -9.36,2.232 c 0.144,0.072 0.288,0.216 0.432,0.36 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path13355"
-                   d="m 93.926,48.881 c -0.145,-0.072 -0.361,-0.216 -0.505,-0.288 l -9.36,2.16 c 0.144,0.144 0.288,0.216 0.432,0.36 l 9.433,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path13357"
-                   d="m 93.637,48.737 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.36 l -9.288,2.232 c 0.144,0.072 0.288,0.216 0.432,0.36 l 9.36,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path13359"
-                   d="m 93.421,48.593 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.36 l -9.287,2.16 c 0.143,0.072 0.287,0.216 0.503,0.36 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path13361"
-                   d="m 93.133,48.377 c -0.144,-0.072 -0.36,-0.216 -0.575,-0.36 l -9.289,2.16 c 0.217,0.144 0.36,0.288 0.576,0.432 l 9.288,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path13363"
-                   d="m 92.845,48.233 c -0.216,-0.144 -0.359,-0.288 -0.576,-0.36 l -9.216,2.16 c 0.144,0.072 0.288,0.216 0.505,0.36 l 9.287,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path13365"
-                   d="m 92.558,48.017 c -0.144,-0.072 -0.361,-0.216 -0.577,-0.288 l -9.216,2.088 c 0.216,0.144 0.36,0.288 0.504,0.36 l 9.289,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path13367"
-                   d="m 92.269,47.873 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.144,2.16 c 0.144,0.144 0.288,0.216 0.504,0.36 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path13369"
-                   d="m 91.981,47.729 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.144,2.16 c 0.216,0.072 0.36,0.216 0.504,0.288 l 9.216,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path13371"
-                   d="m 91.693,47.513 c -0.216,-0.072 -0.432,-0.216 -0.576,-0.288 l -9.071,2.088 c 0.143,0.144 0.359,0.216 0.503,0.36 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path13373"
-                   d="m 91.405,47.369 c -0.216,-0.072 -0.431,-0.216 -0.648,-0.288 l -9,2.088 c 0.217,0.072 0.36,0.216 0.504,0.36 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path13375"
-                   d="m 91.117,47.225 c -0.215,-0.144 -0.432,-0.216 -0.648,-0.288 l -8.928,2.088 c 0.144,0.072 0.361,0.216 0.505,0.288 l 9.071,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path13377"
-                   d="m 90.757,47.081 c -0.216,-0.144 -0.504,-0.216 -0.72,-0.36 l -8.856,2.088 c 0.216,0.072 0.432,0.216 0.576,0.36 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path13379"
-                   d="m 90.469,46.937 c -0.288,-0.144 -0.504,-0.216 -0.792,-0.36 l -8.784,2.016 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path13381"
-                   d="m 90.037,46.721 c -0.288,-0.072 -0.503,-0.216 -0.792,-0.288 l -8.64,2.016 c 0.216,0.144 0.36,0.216 0.576,0.36 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path13383"
-                   d="M 89.677,46.577 C 89.39,46.505 89.173,46.361 88.885,46.289 l -8.568,2.016 c 0.217,0.072 0.36,0.216 0.576,0.288 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path13385"
-                   d="m 89.245,46.433 c -0.216,-0.072 -0.504,-0.216 -0.792,-0.288 l -8.424,2.016 c 0.216,0.072 0.361,0.216 0.576,0.288 l 8.64,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path13387"
-                   d="m 88.885,46.289 c -0.288,-0.072 -0.576,-0.144 -0.863,-0.216 l -8.281,1.872 c 0.216,0.144 0.36,0.216 0.576,0.36 l 8.568,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path13389"
-                   d="m 88.453,46.145 c -0.288,-0.072 -0.575,-0.144 -0.936,-0.216 l -8.136,1.872 c 0.216,0.144 0.432,0.216 0.648,0.36 l 8.424,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path13391"
-                   d="m 88.022,46.073 c -0.361,-0.144 -0.649,-0.216 -1.009,-0.288 l -7.919,1.872 c 0.215,0.144 0.431,0.216 0.647,0.288 l 8.281,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path13393"
-                   d="M 87.517,45.929 C 87.229,45.857 86.869,45.785 86.51,45.713 l -7.705,1.8 c 0.217,0.072 0.36,0.216 0.576,0.288 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffab00" />
-                <path
-                   id="path13395"
-                   d="m 87.013,45.785 c -0.431,-0.072 -0.864,-0.144 -1.296,-0.144 l -7.416,1.656 c 0.288,0.144 0.504,0.216 0.793,0.36 l 7.919,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path13397"
-                   d="m 86.51,45.713 c -0.577,-0.072 -1.081,-0.144 -1.657,-0.144 l -6.912,1.584 c 0.288,0.144 0.576,0.216 0.864,0.36 l 7.705,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffb800" />
-                <path
-                   id="path13399"
-                   d="m 77.653,47.009 c 0.216,0.144 0.432,0.216 0.648,0.288 l 7.416,-1.656 c -0.576,-0.072 -1.224,-0.072 -1.8,-0.072 l -6.264,1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffbf00" />
-                <path
-                   id="path13401"
-                   d="m 79.453,46.361 c -0.575,0.216 -1.224,0.432 -1.8,0.648 0.072,0.072 0.216,0.144 0.288,0.144 l 6.912,-1.584 c -0.864,0 -1.728,0 -2.592,0.144 l -2.808,0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffc700" />
-                <path
-                   id="path13403"
-                   d="m 77.653,47.009 1.8,-0.648 1.728,-0.432 1.656,-0.288 1.728,-0.144 1.656,0.144 1.729,0.36 1.655,0.504 1.728,0.792 1.8,1.008 1.8,1.296 1.872,1.512 1.944,1.8 2.088,2.088 2.089,2.376 2.231,2.664 2.377,2.952 -1.297,0.072 -1.152,0.144 -1.08,0.072 -1.007,0.144 -1.009,0.144 -1.08,0.144 -1.224,0.216 -1.44,0.216 -1.295,-1.08 -1.225,-1.152 -1.296,-1.224 -1.152,-1.224 -1.224,-1.224 -1.224,-1.224 -1.152,-1.224 -1.224,-1.224 -1.224,-1.152 -1.296,-1.08 -1.224,-1.08 -1.295,-1.08 -1.368,-0.936 -1.441,-0.792 -1.44,-0.792 -1.512,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g13405">
-                <path
-                   id="path13407"
-                   d="m 96.878,62.921 c 0.431,0.432 0.935,0.864 1.367,1.152 l -7.848,0.936 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l 6.913,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13409"
-                   d="m 96.878,62.921 c -0.145,-0.072 -0.289,-0.216 -0.433,-0.36 l -6.84,1.656 c 0.144,0.072 0.216,0.216 0.36,0.36 l 6.913,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13411"
-                   d="m 96.661,62.777 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.839,1.584 c 0.144,0.144 0.287,0.288 0.359,0.432 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path13413"
-                   d="m 96.445,62.561 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.768,1.656 c 0.072,0.144 0.217,0.288 0.36,0.432 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path13415"
-                   d="m 96.229,62.345 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.36 l -6.768,1.584 c 0.144,0.144 0.216,0.216 0.361,0.36 l 6.839,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path13417"
-                   d="m 96.013,62.129 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.36 l -6.768,1.584 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.768,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path13419"
-                   d="M 95.797,61.985 C 95.653,61.841 95.51,61.697 95.365,61.553 l -6.696,1.584 c 0.144,0.144 0.288,0.288 0.36,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path13421"
-                   d="m 95.581,61.769 c -0.143,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.624,1.584 c 0.072,0.144 0.216,0.288 0.288,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path13423"
-                   d="m 95.365,61.553 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.624,1.584 c 0.144,0.144 0.216,0.288 0.36,0.432 l 6.696,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path13425"
-                   d="m 95.149,61.337 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.552,1.584 c 0.072,0.144 0.216,0.288 0.36,0.432 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path13427"
-                   d="m 94.933,61.121 c -0.144,-0.144 -0.288,-0.216 -0.36,-0.36 l -6.623,1.512 c 0.143,0.144 0.215,0.288 0.359,0.432 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path13429"
-                   d="m 94.717,60.905 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.36 l -6.552,1.512 c 0.145,0.144 0.289,0.288 0.432,0.432 l 6.552,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path13431"
-                   d="m 94.573,60.761 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.552,1.512 c 0.144,0.144 0.216,0.288 0.361,0.432 l 6.623,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path13433"
-                   d="m 94.285,60.545 c -0.144,-0.144 -0.287,-0.288 -0.432,-0.504 l -6.48,1.584 c 0.144,0.144 0.288,0.288 0.36,0.432 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path13435"
-                   d="m 94.141,60.329 c -0.143,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.48,1.512 c 0.144,0.144 0.216,0.288 0.36,0.432 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path13437"
-                   d="m 93.853,60.041 c -0.072,-0.072 -0.216,-0.216 -0.36,-0.36 l -6.408,1.512 c 0.072,0.144 0.216,0.288 0.288,0.432 l 6.48,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path13439"
-                   d="m 93.709,59.897 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.408,1.512 c 0.072,0.144 0.216,0.288 0.36,0.432 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path13441"
-                   d="m 93.493,59.681 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.336,1.512 c 0.072,0.144 0.216,0.288 0.36,0.432 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path13443"
-                   d="m 93.277,59.465 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.36 l -6.407,1.44 c 0.143,0.144 0.215,0.288 0.359,0.432 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path13445"
-                   d="m 93.061,59.249 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.336,1.512 c 0.145,0.144 0.289,0.288 0.432,0.432 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path13447"
-                   d="m 92.917,59.105 c -0.144,-0.144 -0.288,-0.288 -0.431,-0.432 l -6.337,1.512 c 0.144,0.072 0.216,0.216 0.361,0.36 l 6.407,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path13449"
-                   d="m 92.629,58.817 c -0.071,-0.072 -0.215,-0.216 -0.36,-0.36 l -6.264,1.44 c 0.072,0.144 0.216,0.288 0.288,0.432 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path13451"
-                   d="m 92.486,58.673 c -0.145,-0.144 -0.289,-0.288 -0.433,-0.432 l -6.264,1.44 c 0.144,0.144 0.216,0.288 0.36,0.504 l 6.337,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path13453"
-                   d="m 92.269,58.457 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.192,1.512 c 0.072,0.144 0.216,0.216 0.36,0.36 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path13455"
-                   d="m 92.053,58.241 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.192,1.44 c 0.072,0.144 0.216,0.288 0.36,0.432 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path13457"
-                   d="m 91.837,58.025 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -6.264,1.512 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path13459"
-                   d="m 91.621,57.809 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.36 l -6.191,1.44 c 0.143,0.144 0.215,0.216 0.359,0.36 l 6.192,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path13461"
-                   d="m 91.477,57.593 c -0.144,-0.144 -0.288,-0.288 -0.431,-0.432 l -6.193,1.44 c 0.145,0.144 0.288,0.36 0.36,0.504 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path13463"
-                   d="m 91.261,57.449 c -0.144,-0.144 -0.287,-0.288 -0.432,-0.432 l -6.12,1.44 c 0.144,0.144 0.217,0.288 0.361,0.432 l 6.191,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path13465"
-                   d="m 91.046,57.161 c -0.144,-0.144 -0.289,-0.216 -0.433,-0.36 l -6.12,1.44 c 0.144,0.072 0.216,0.216 0.36,0.36 l 6.193,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path13467"
-                   d="m 90.829,57.017 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.12,1.44 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path13469"
-                   d="m 90.613,56.801 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -6.12,1.44 c 0.144,0.144 0.216,0.288 0.36,0.432 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path13471"
-                   d="m 90.397,56.585 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -6.12,1.44 c 0.144,0.144 0.288,0.288 0.36,0.432 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path13473"
-                   d="m 90.253,56.369 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -6.048,1.44 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path13475"
-                   d="m 90.037,56.153 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.047,1.44 c 0.143,0.144 0.287,0.288 0.359,0.432 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path13477"
-                   d="m 89.749,55.937 c -0.072,-0.144 -0.215,-0.216 -0.359,-0.36 l -6.049,1.368 c 0.145,0.144 0.288,0.288 0.36,0.432 l 6.048,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path13479"
-                   d="m 89.605,55.721 c -0.143,-0.072 -0.288,-0.216 -0.432,-0.36 l -5.976,1.368 c 0.072,0.144 0.217,0.288 0.361,0.432 l 6.047,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path13481"
-                   d="m 89.39,55.577 c -0.145,-0.144 -0.289,-0.288 -0.433,-0.432 l -5.976,1.368 c 0.144,0.144 0.216,0.288 0.36,0.432 l 6.049,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path13483"
-                   d="m 89.173,55.361 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -5.976,1.368 c 0.144,0.144 0.288,0.288 0.432,0.432 l 5.976,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path13485"
-                   d="m 88.957,55.145 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -5.976,1.368 c 0.144,0.144 0.288,0.288 0.432,0.432 l 5.976,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path13487"
-                   d="m 88.741,54.929 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -5.976,1.44 c 0.144,0.072 0.288,0.216 0.432,0.36 l 5.976,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path13489"
-                   d="m 88.525,54.713 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -5.904,1.44 c 0.072,0.144 0.216,0.288 0.36,0.36 l 5.976,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path13491"
-                   d="m 88.309,54.497 c -0.144,-0.144 -0.287,-0.216 -0.431,-0.36 l -5.904,1.368 c 0.143,0.144 0.287,0.288 0.359,0.432 l 5.976,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path13493"
-                   d="m 88.093,54.281 c -0.143,-0.144 -0.288,-0.216 -0.432,-0.36 l -5.904,1.368 c 0.145,0.144 0.289,0.288 0.432,0.432 l 5.904,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path13495"
-                   d="m 87.878,54.137 c -0.145,-0.144 -0.289,-0.288 -0.433,-0.432 l -5.904,1.368 c 0.144,0.144 0.288,0.288 0.433,0.432 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path13497"
-                   d="m 87.661,53.921 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -5.904,1.368 c 0.144,0.144 0.288,0.288 0.432,0.432 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path13499"
-                   d="m 87.445,53.705 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -5.904,1.368 c 0.144,0.144 0.288,0.288 0.432,0.432 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path13501"
-                   d="m 87.229,53.489 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -5.904,1.44 c 0.144,0.072 0.288,0.216 0.432,0.36 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path13503"
-                   d="m 87.013,53.273 c -0.144,-0.144 -0.288,-0.288 -0.431,-0.432 l -5.905,1.368 c 0.144,0.144 0.288,0.288 0.432,0.432 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path13505"
-                   d="m 86.797,53.057 c -0.144,-0.144 -0.359,-0.288 -0.504,-0.432 l -5.903,1.44 c 0.215,0.144 0.359,0.288 0.503,0.432 l 5.904,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path13507"
-                   d="m 86.582,52.841 c -0.144,-0.072 -0.361,-0.216 -0.505,-0.36 l -5.832,1.368 c 0.145,0.144 0.289,0.288 0.432,0.36 l 5.905,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path13509"
-                   d="m 86.293,52.625 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.36 l -5.904,1.368 c 0.144,0.144 0.288,0.288 0.433,0.432 l 5.903,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path13511"
-                   d="m 86.077,52.481 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -5.904,1.368 c 0.144,0.144 0.36,0.288 0.504,0.432 l 5.832,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path13513"
-                   d="m 85.861,52.265 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.36 l -5.904,1.368 c 0.144,0.144 0.288,0.216 0.432,0.36 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path13515"
-                   d="m 85.645,52.049 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.36 l -5.904,1.368 c 0.216,0.144 0.36,0.216 0.504,0.36 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path13517"
-                   d="M 85.429,51.905 C 85.285,51.761 85.07,51.617 84.926,51.473 l -5.904,1.368 c 0.143,0.144 0.359,0.288 0.503,0.432 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path13519"
-                   d="m 85.141,51.689 c -0.143,-0.144 -0.288,-0.288 -0.432,-0.432 l -5.976,1.368 c 0.217,0.144 0.361,0.288 0.504,0.432 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path13521"
-                   d="m 84.926,51.473 c -0.145,-0.144 -0.289,-0.288 -0.433,-0.36 l -5.976,1.368 c 0.144,0.144 0.361,0.216 0.505,0.36 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path13523"
-                   d="m 84.709,51.257 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.36 l -5.904,1.368 c 0.144,0.144 0.288,0.216 0.432,0.36 l 5.976,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path13525"
-                   d="m 84.493,51.113 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -5.904,1.368 c 0.144,0.144 0.36,0.288 0.504,0.432 l 5.976,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path13527"
-                   d="m 84.205,50.897 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -5.976,1.44 c 0.216,0.072 0.36,0.216 0.576,0.36 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path13529"
-                   d="m 83.917,50.681 c -0.144,-0.144 -0.288,-0.288 -0.431,-0.36 l -5.976,1.368 c 0.143,0.144 0.287,0.216 0.503,0.36 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path13531"
-                   d="m 83.701,50.465 c -0.143,-0.144 -0.36,-0.216 -0.504,-0.36 l -6.048,1.368 c 0.216,0.144 0.433,0.288 0.576,0.432 l 5.976,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path13533"
-                   d="m 83.486,50.321 c -0.217,-0.144 -0.361,-0.288 -0.577,-0.432 l -5.976,1.44 c 0.144,0.072 0.36,0.216 0.577,0.36 l 5.976,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path13535"
-                   d="m 83.197,50.105 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -6.048,1.44 c 0.216,0.072 0.432,0.216 0.576,0.36 l 6.048,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path13537"
-                   d="m 82.909,49.889 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.36 l -6.048,1.368 c 0.144,0.144 0.36,0.288 0.576,0.432 l 5.976,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path13539"
-                   d="m 82.621,49.673 c -0.144,-0.144 -0.36,-0.216 -0.504,-0.36 l -6.119,1.44 c 0.215,0.072 0.359,0.216 0.575,0.36 l 6.048,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path13541"
-                   d="m 82.405,49.529 c -0.216,-0.144 -0.431,-0.288 -0.576,-0.432 l -6.12,1.44 c 0.217,0.144 0.432,0.288 0.576,0.36 l 6.12,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path13543"
-                   d="m 82.117,49.313 c -0.215,-0.144 -0.36,-0.216 -0.576,-0.36 l -6.12,1.44 c 0.216,0.072 0.432,0.216 0.577,0.36 l 6.119,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path13545"
-                   d="m 81.829,49.097 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -6.192,1.44 c 0.216,0.144 0.432,0.216 0.648,0.36 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path13547"
-                   d="m 81.541,48.953 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.36 l -6.264,1.44 c 0.216,0.072 0.504,0.216 0.72,0.36 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path13549"
-                   d="m 81.253,48.737 c -0.216,-0.144 -0.432,-0.216 -0.576,-0.36 l -6.263,1.44 c 0.215,0.144 0.431,0.288 0.647,0.36 l 6.192,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path13551"
-                   d="m 80.965,48.593 c -0.216,-0.144 -0.503,-0.288 -0.72,-0.432 l -6.264,1.512 c 0.288,0.072 0.505,0.216 0.72,0.36 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path13553"
-                   d="m 80.677,48.377 c -0.215,-0.144 -0.504,-0.216 -0.72,-0.36 l -6.264,1.44 c 0.216,0.144 0.504,0.288 0.721,0.36 l 6.263,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path13555"
-                   d="m 80.245,48.161 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.288 l -6.264,1.44 c 0.216,0.144 0.432,0.216 0.648,0.36 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path13557"
-                   d="m 79.957,48.017 c -0.216,-0.144 -0.504,-0.216 -0.72,-0.36 l -6.336,1.512 c 0.288,0.072 0.504,0.216 0.792,0.288 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path13559"
-                   d="m 79.597,47.873 c -0.216,-0.144 -0.432,-0.288 -0.719,-0.36 l -6.337,1.512 c 0.288,0.072 0.504,0.216 0.792,0.288 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path13561"
-                   d="m 79.237,47.657 c -0.215,-0.072 -0.504,-0.216 -0.72,-0.288 l -6.336,1.44 c 0.216,0.144 0.504,0.216 0.72,0.36 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path13563"
-                   d="m 78.878,47.513 c -0.289,-0.144 -0.577,-0.216 -0.865,-0.36 l -6.336,1.512 c 0.288,0.072 0.576,0.216 0.864,0.36 l 6.337,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path13565"
-                   d="m 71.821,48.377 c -0.072,0.072 -0.144,0.144 -0.216,0.216 0.144,0.072 0.36,0.144 0.576,0.216 l 6.336,-1.44 c -0.36,-0.144 -0.648,-0.216 -0.935,-0.288 l -5.761,1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path13567"
-                   d="m 72.109,48.089 c -0.216,0.144 -0.36,0.36 -0.504,0.504 0,0.072 0,0.072 0.072,0.072 l 6.336,-1.512 c -0.288,-0.072 -0.575,-0.144 -0.936,-0.216 l -4.968,1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path13569"
-                   d="m 72.685,47.657 c -0.288,0.216 -0.576,0.432 -0.864,0.72 l 5.761,-1.296 c -0.433,-0.144 -0.793,-0.216 -1.225,-0.288 l -3.672,0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path13571"
-                   d="m 73.333,47.297 c -0.432,0.216 -0.864,0.432 -1.224,0.792 l 4.968,-1.152 C 76.573,46.793 76.07,46.793 75.565,46.793 l -2.232,0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path13573"
-                   d="m 71.605,48.593 1.368,-1.152 1.513,-0.576 1.655,-0.144 1.656,0.36 1.8,0.72 1.8,1.008 1.872,1.296 1.872,1.512 1.872,1.656 1.872,1.728 1.8,1.728 1.729,1.8 1.584,1.656 1.583,1.512 1.369,1.296 1.295,1.08 -7.848,0.936 -1.007,-1.152 -1.009,-1.152 -0.936,-1.152 -1.007,-1.152 -1.009,-1.152 -1.008,-1.224 -1.08,-1.152 -1.008,-1.08 -1.152,-1.08 -1.152,-1.08 -1.224,-1.008 -1.295,-0.936 -1.369,-0.936 -1.44,-0.792 -1.512,-0.72 -1.584,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g13575">
-                <path
-                   id="path13577"
-                   d="m 89.029,63.641 c 0.361,0.432 0.72,0.864 1.08,1.296 -4.104,0.144 -4.608,0.504 -8.496,1.008 -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13579"
-                   d="m 89.029,63.641 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -7.776,1.8 c 0.072,0.144 0.216,0.288 0.288,0.432 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13581"
-                   d="m 88.885,63.497 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.776,1.8 c 0.144,0.144 0.288,0.36 0.36,0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path13583"
-                   d="m 88.669,63.209 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -7.775,1.8 c 0.071,0.144 0.215,0.288 0.359,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path13585"
-                   d="m 88.453,62.993 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -7.703,1.8 c 0.072,0.144 0.215,0.288 0.287,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path13587"
-                   d="M 88.309,62.777 C 88.165,62.633 88.022,62.489 87.95,62.345 l -7.777,1.8 c 0.072,0.144 0.217,0.288 0.361,0.432 l 7.775,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path13589"
-                   d="m 88.093,62.561 c -0.071,-0.144 -0.215,-0.288 -0.36,-0.432 l -7.704,1.8 c 0.072,0.144 0.216,0.288 0.361,0.432 l 7.703,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path13591"
-                   d="m 87.95,62.345 c -0.145,-0.144 -0.289,-0.36 -0.433,-0.504 l -7.704,1.8 c 0.072,0.144 0.216,0.36 0.36,0.504 l 7.777,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path13593"
-                   d="m 87.733,62.129 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -7.776,1.8 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path13595"
-                   d="m 87.517,61.841 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -7.704,1.8 c 0.072,0.144 0.216,0.288 0.36,0.432 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path13597"
-                   d="m 87.373,61.697 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.504 l -7.776,1.8 c 0.144,0.144 0.288,0.36 0.432,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path13599"
-                   d="m 87.157,61.409 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -7.775,1.8 c 0.143,0.144 0.287,0.288 0.431,0.432 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path13601"
-                   d="m 87.013,61.193 c -0.144,-0.144 -0.288,-0.288 -0.431,-0.432 l -7.777,1.8 c 0.145,0.144 0.289,0.288 0.432,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path13603"
-                   d="m 86.797,60.977 c -0.144,-0.144 -0.215,-0.288 -0.359,-0.432 l -7.777,1.8 c 0.144,0.144 0.217,0.288 0.361,0.432 l 7.775,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path13605"
-                   d="m 86.582,60.761 c -0.072,-0.216 -0.217,-0.36 -0.361,-0.504 l -7.776,1.8 c 0.072,0.144 0.216,0.288 0.36,0.504 l 7.777,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path13607"
-                   d="m 86.438,60.545 c -0.145,-0.144 -0.289,-0.288 -0.361,-0.432 l -7.848,1.8 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.777,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path13609"
-                   d="m 86.221,60.257 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -7.848,1.8 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path13611"
-                   d="m 86.077,60.113 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -7.848,1.8 c 0.072,0.144 0.216,0.288 0.36,0.432 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path13613"
-                   d="m 85.861,59.825 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -7.919,1.8 c 0.143,0.144 0.287,0.288 0.431,0.432 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path13615"
-                   d="m 85.717,59.681 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.847,1.872 c 0.144,0.144 0.287,0.288 0.431,0.432 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path13617"
-                   d="M 85.501,59.393 C 85.357,59.249 85.213,59.105 85.07,58.961 l -7.921,1.8 c 0.144,0.144 0.289,0.288 0.433,0.432 l 7.919,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path13619"
-                   d="M 85.285,59.177 C 85.213,59.033 85.07,58.889 84.926,58.745 l -7.993,1.872 c 0.216,0.144 0.36,0.288 0.505,0.432 l 7.847,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path13621"
-                   d="m 85.07,58.961 c -0.144,-0.144 -0.217,-0.288 -0.361,-0.432 l -7.992,1.8 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.921,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path13623"
-                   d="m 84.926,58.745 c -0.145,-0.144 -0.289,-0.288 -0.361,-0.432 l -8.064,1.872 c 0.144,0.144 0.288,0.288 0.504,0.432 l 7.921,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path13625"
-                   d="m 84.709,58.529 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -8.064,1.8 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.992,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path13627"
-                   d="m 84.565,58.313 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -8.135,1.872 c 0.143,0.144 0.359,0.36 0.503,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path13629"
-                   d="m 84.349,58.097 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -8.136,1.944 c 0.145,0.072 0.36,0.216 0.504,0.36 l 8.064,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path13631"
-                   d="m 84.133,57.809 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.208,1.872 c 0.144,0.144 0.36,0.288 0.505,0.432 l 8.135,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path13633"
-                   d="m 83.917,57.593 c -0.144,-0.144 -0.288,-0.288 -0.359,-0.432 l -8.281,1.944 c 0.216,0.144 0.36,0.288 0.504,0.432 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path13635"
-                   d="m 83.701,57.377 c -0.143,-0.144 -0.287,-0.288 -0.36,-0.432 l -8.352,1.944 c 0.216,0.072 0.36,0.216 0.504,0.36 l 8.208,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path13637"
-                   d="m 83.558,57.161 c -0.144,-0.144 -0.289,-0.288 -0.433,-0.432 l -8.352,1.944 c 0.216,0.144 0.36,0.288 0.504,0.432 l 8.281,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path13639"
-                   d="m 83.341,56.945 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.423,1.944 c 0.215,0.144 0.359,0.288 0.503,0.432 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path13641"
-                   d="m 83.125,56.729 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.424,1.944 c 0.145,0.144 0.36,0.288 0.504,0.432 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path13643"
-                   d="m 82.909,56.513 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.496,1.944 c 0.144,0.144 0.36,0.288 0.505,0.432 l 8.423,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path13645"
-                   d="m 82.693,56.297 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -8.64,2.016 c 0.216,0.072 0.36,0.216 0.576,0.36 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path13647"
-                   d="m 82.477,56.081 c -0.144,-0.144 -0.288,-0.288 -0.431,-0.432 l -8.641,2.016 c 0.216,0.072 0.36,0.216 0.576,0.36 l 8.496,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path13649"
-                   d="m 82.333,55.865 c -0.144,-0.144 -0.287,-0.288 -0.431,-0.432 l -8.785,2.016 c 0.216,0.144 0.432,0.288 0.576,0.432 l 8.64,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path13651"
-                   d="m 82.046,55.649 c -0.144,-0.144 -0.217,-0.288 -0.361,-0.432 l -8.856,2.016 c 0.144,0.144 0.36,0.288 0.576,0.432 l 8.641,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path13653"
-                   d="m 81.902,55.433 c -0.145,-0.144 -0.361,-0.36 -0.505,-0.504 l -8.928,2.088 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.785,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path13655"
-                   d="m 81.685,55.217 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -9,2.088 c 0.216,0.072 0.432,0.216 0.648,0.36 l 8.856,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path13657"
-                   d="m 81.397,54.929 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.144,2.16 c 0.216,0.072 0.432,0.216 0.648,0.36 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path13659"
-                   d="m 81.181,54.785 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.216,2.088 c 0.216,0.144 0.432,0.288 0.648,0.432 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path13661"
-                   d="m 80.965,54.497 c -0.144,-0.144 -0.288,-0.288 -0.431,-0.432 l -9.361,2.16 c 0.216,0.144 0.432,0.288 0.648,0.432 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path13663"
-                   d="m 80.749,54.353 c -0.144,-0.144 -0.287,-0.288 -0.432,-0.432 l -9.432,2.16 c 0.216,0.144 0.432,0.288 0.648,0.36 l 9.216,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path13665"
-                   d="M 80.534,54.065 C 80.39,53.921 80.245,53.777 80.101,53.633 l -9.648,2.232 c 0.216,0.144 0.504,0.288 0.72,0.36 l 9.361,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path13667"
-                   d="m 80.317,53.921 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.72,2.232 c 0.216,0.144 0.432,0.216 0.72,0.36 l 9.432,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path13669"
-                   d="m 80.101,53.633 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.432 l -9.936,2.304 c 0.288,0.144 0.504,0.216 0.792,0.36 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path13671"
-                   d="m 79.885,53.489 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -10.008,2.304 c 0.216,0.144 0.504,0.216 0.792,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path13673"
-                   d="m 79.597,53.201 c -0.144,-0.144 -0.288,-0.216 -0.503,-0.36 l -10.225,2.376 c 0.288,0.072 0.576,0.216 0.792,0.288 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path13675"
-                   d="m 79.381,53.057 c -0.144,-0.144 -0.359,-0.36 -0.576,-0.504 l -10.368,2.448 c 0.288,0.144 0.576,0.216 0.936,0.36 l 10.008,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path13677"
-                   d="M 79.094,52.841 C 78.95,52.697 78.805,52.553 78.589,52.409 l -10.584,2.448 c 0.288,0.072 0.576,0.216 0.864,0.36 l 10.225,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path13679"
-                   d="m 78.805,52.553 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.36 l -10.8,2.448 c 0.288,0.144 0.576,0.216 0.936,0.36 l 10.368,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path13681"
-                   d="m 78.589,52.409 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -11.016,2.592 c 0.288,0.072 0.648,0.144 0.936,0.288 l 10.584,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path13683"
-                   d="m 78.301,52.121 c -0.144,-0.072 -0.288,-0.216 -0.504,-0.36 l -11.304,2.592 c 0.288,0.144 0.648,0.216 1.008,0.288 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path13685"
-                   d="m 78.085,51.977 c -0.144,-0.144 -0.36,-0.288 -0.503,-0.432 l -11.593,2.736 c 0.36,0.072 0.72,0.144 1.08,0.288 l 11.016,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path13687"
-                   d="m 77.797,51.761 c -0.144,-0.144 -0.359,-0.288 -0.504,-0.432 l -11.952,2.808 c 0.36,0.072 0.72,0.144 1.152,0.216 l 11.304,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path13689"
-                   d="m 77.582,51.545 c -0.217,-0.072 -0.361,-0.216 -0.577,-0.36 l -12.24,2.808 c 0.432,0.072 0.792,0.144 1.224,0.288 l 11.593,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path13691"
-                   d="m 77.293,51.329 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.36 l -12.744,2.88 c 0.432,0.072 0.936,0.144 1.368,0.288 l 11.952,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path13693"
-                   d="m 77.005,51.185 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.432 l -13.032,3.024 c 0.432,0.072 0.936,0.144 1.368,0.216 l 12.24,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path13695"
-                   d="M 76.717,50.969 C 76.501,50.825 76.285,50.681 76.07,50.537 l -13.609,3.168 c 0.504,0.072 1.008,0.072 1.512,0.144 l 12.744,-2.88 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path13697"
-                   d="m 76.429,50.753 c -0.216,-0.072 -0.431,-0.216 -0.576,-0.36 l -14.184,3.312 c 0.504,0 1.152,0.072 1.728,0.072 l 13.032,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path13699"
-                   d="m 76.07,50.537 c -0.217,-0.144 -0.433,-0.216 -0.649,-0.36 l -14.976,3.456 c 0.648,0 1.296,0.072 2.016,0.072 L 76.07,50.537 Z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path13701"
-                   d="m 59.941,53.489 c -0.072,0.072 -0.144,0.072 -0.144,0.144 0.576,0 1.224,0 1.872,0.072 l 14.184,-3.312 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -15.12,3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path13703"
-                   d="m 60.229,53.129 c -0.144,0.216 -0.288,0.36 -0.432,0.504 0.216,0 0.432,0 0.648,0 l 14.976,-3.456 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.36 l -14.544,3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path13705"
-                   d="m 60.589,52.769 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l 15.12,-3.528 c -0.216,-0.144 -0.503,-0.216 -0.72,-0.36 l -13.752,3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path13707"
-                   d="m 60.877,52.481 c -0.216,0.216 -0.432,0.432 -0.648,0.648 l 14.544,-3.312 c -0.287,-0.144 -0.504,-0.288 -0.72,-0.36 l -13.176,3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path13709"
-                   d="m 61.309,52.049 c -0.216,0.288 -0.504,0.504 -0.72,0.72 l 13.752,-3.168 c -0.216,-0.144 -0.504,-0.216 -0.792,-0.36 l -12.24,2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path13711"
-                   d="m 61.669,51.761 c -0.288,0.216 -0.504,0.504 -0.792,0.72 l 13.176,-3.024 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.36 l -11.52,2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path13713"
-                   d="m 62.173,51.329 c -0.288,0.216 -0.576,0.504 -0.864,0.72 l 12.24,-2.808 c -0.288,-0.144 -0.576,-0.216 -0.864,-0.36 l -10.512,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path13715"
-                   d="m 62.533,51.041 c -0.288,0.216 -0.576,0.432 -0.864,0.72 l 11.52,-2.664 c -0.288,-0.144 -0.648,-0.216 -0.936,-0.288 l -9.72,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path13717"
-                   d="m 63.109,50.609 c -0.288,0.216 -0.648,0.504 -0.936,0.72 l 10.512,-2.448 c -0.36,-0.072 -0.72,-0.144 -1.08,-0.216 l -8.496,1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path13719"
-                   d="m 63.685,50.249 c -0.36,0.216 -0.792,0.504 -1.152,0.792 l 9.72,-2.232 c -0.432,-0.144 -0.792,-0.216 -1.152,-0.288 l -7.416,1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path13721"
-                   d="m 64.477,49.745 c -0.432,0.288 -0.864,0.576 -1.368,0.864 l 8.496,-1.944 c -0.432,-0.144 -0.936,-0.216 -1.368,-0.216 l -5.76,1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path13723"
-                   d="m 65.341,49.313 c -0.576,0.288 -1.152,0.576 -1.728,0.936 l 7.488,-1.728 c -0.576,-0.072 -1.152,-0.144 -1.728,-0.144 l -4.032,0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path13725"
-                   d="m 59.797,53.633 2.16,-2.088 2.088,-1.512 2.016,-1.008 2.016,-0.576 2.016,-0.072 1.944,0.288 1.944,0.72 1.872,0.936 1.872,1.296 1.8,1.512 1.872,1.728 1.728,1.872 1.801,1.944 1.727,2.088 1.728,2.088 1.728,2.088 -1.368,0.072 -1.152,0.072 -0.936,0.072 -0.864,0.144 -0.863,0.144 -0.937,0.144 -1.08,0.144 -1.296,0.216 -1.512,-1.944 -1.44,-1.728 -1.512,-1.584 -1.44,-1.368 -1.512,-1.152 -1.44,-1.008 -1.368,-0.864 -1.44,-0.72 -1.368,-0.576 -1.296,-0.432 -1.368,-0.36 -1.296,-0.288 -1.224,-0.144 -1.224,-0.144 -1.224,0 -1.152,0 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g13727">
-                <path
-                   id="path13729"
-                   d="m 81.253,65.441 c 0.072,0.144 0.144,0.288 0.288,0.36 -1.296,0.216 -2.88,0.432 -4.464,0.648 l 4.176,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13731"
-                   d="m 81.253,65.441 c -0.144,-0.072 -0.216,-0.144 -0.288,-0.288 l -7.272,1.728 c 1.008,-0.144 2.233,-0.288 3.384,-0.432 l 4.176,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13733"
-                   d="m 81.109,65.369 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.36 l -8.784,2.016 c 0.936,-0.072 2.232,-0.216 3.672,-0.432 l 5.4,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path13735"
-                   d="m 80.965,65.153 c -0.072,-0.072 -0.144,-0.216 -0.216,-0.288 l -9.864,2.232 c 0.432,0 1.512,-0.072 2.808,-0.216 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path13737"
-                   d="m 80.821,65.009 c -0.072,-0.144 -0.144,-0.288 -0.287,-0.36 l -10.009,2.304 c 0.072,0.144 0.144,0.144 0.216,0.144 0,0.072 0.504,0 1.296,-0.072 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path13739"
-                   d="M 80.749,64.865 C 80.605,64.721 80.534,64.577 80.39,64.433 l -10.009,2.376 c 0.144,0.216 0.288,0.288 0.36,0.288 0,0.072 0.072,0.072 0.144,0 l 9.864,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path13741"
-                   d="M 80.534,64.649 C 80.462,64.505 80.39,64.433 80.317,64.361 l -10.08,2.304 c 0.144,0.144 0.216,0.216 0.288,0.288 l 10.009,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path13743"
-                   d="m 80.39,64.433 c -0.073,-0.072 -0.145,-0.216 -0.289,-0.288 l -10.08,2.376 c 0.144,0.072 0.216,0.216 0.36,0.288 L 80.39,64.433 Z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path13745"
-                   d="m 80.317,64.361 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -10.08,2.376 c 0.144,0.144 0.216,0.288 0.36,0.36 l 10.08,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path13747"
-                   d="m 80.101,64.145 c -0.072,-0.144 -0.144,-0.216 -0.216,-0.288 l -10.152,2.304 c 0.144,0.144 0.216,0.216 0.288,0.36 l 10.08,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path13749"
-                   d="m 79.957,63.929 c -0.072,-0.072 -0.144,-0.216 -0.288,-0.288 l -10.152,2.376 c 0.144,0.072 0.216,0.216 0.36,0.288 l 10.08,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path13751"
-                   d="m 79.885,63.857 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -10.152,2.376 c 0.144,0.144 0.216,0.288 0.36,0.36 l 10.152,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path13753"
-                   d="m 79.669,63.641 c -0.072,-0.144 -0.144,-0.216 -0.216,-0.36 l -10.224,2.376 c 0.144,0.144 0.216,0.216 0.288,0.36 l 10.152,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path13755"
-                   d="m 79.525,63.425 c -0.072,-0.072 -0.144,-0.216 -0.288,-0.288 l -10.224,2.376 c 0.144,0.144 0.216,0.216 0.36,0.288 l 10.152,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path13757"
-                   d="m 79.453,63.281 c -0.144,-0.072 -0.288,-0.216 -0.359,-0.36 l -10.225,2.376 c 0.144,0.144 0.216,0.288 0.36,0.36 l 10.224,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path13759"
-                   d="m 79.237,63.137 c -0.072,-0.144 -0.143,-0.216 -0.287,-0.36 l -10.225,2.448 c 0.072,0.072 0.216,0.216 0.288,0.288 l 10.224,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path13761"
-                   d="m 79.094,62.921 c -0.072,-0.072 -0.216,-0.216 -0.289,-0.288 l -10.296,2.376 c 0.144,0.144 0.216,0.216 0.36,0.288 l 10.225,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path13763"
-                   d="m 78.95,62.777 c -0.072,-0.072 -0.217,-0.216 -0.289,-0.36 l -10.368,2.448 c 0.144,0.072 0.288,0.216 0.432,0.36 L 78.95,62.777 Z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path13765"
-                   d="m 78.805,62.633 c -0.072,-0.072 -0.216,-0.216 -0.288,-0.288 l -10.296,2.376 c 0.072,0.072 0.216,0.216 0.288,0.288 l 10.296,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path13767"
-                   d="m 78.661,62.417 c -0.144,-0.072 -0.216,-0.216 -0.36,-0.288 l -10.296,2.448 c 0.072,0.072 0.216,0.144 0.288,0.288 l 10.368,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path13769"
-                   d="m 78.517,62.345 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -10.368,2.448 c 0.144,0.144 0.288,0.216 0.432,0.36 l 10.296,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path13771"
-                   d="m 78.301,62.129 c -0.072,-0.072 -0.144,-0.216 -0.288,-0.288 l -10.368,2.376 c 0.144,0.144 0.216,0.216 0.36,0.36 l 10.296,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path13773"
-                   d="m 78.157,61.913 c -0.072,-0.072 -0.216,-0.144 -0.288,-0.288 l -10.44,2.448 c 0.144,0.072 0.288,0.216 0.36,0.288 l 10.368,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path13775"
-                   d="m 78.013,61.841 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.36 l -10.44,2.376 c 0.144,0.144 0.288,0.288 0.432,0.36 l 10.368,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path13777"
-                   d="m 77.869,61.625 c -0.144,-0.144 -0.287,-0.216 -0.359,-0.36 l -10.513,2.448 c 0.144,0.072 0.288,0.216 0.432,0.36 l 10.44,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path13779"
-                   d="m 77.653,61.481 c -0.071,-0.144 -0.215,-0.216 -0.288,-0.36 l -10.44,2.448 c 0.072,0.144 0.216,0.216 0.288,0.288 l 10.44,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path13781"
-                   d="m 77.51,61.265 c -0.145,-0.144 -0.217,-0.216 -0.361,-0.288 l -10.44,2.448 c 0.072,0.072 0.216,0.144 0.288,0.288 L 77.51,61.265 Z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path13783"
-                   d="m 77.365,61.121 c -0.144,-0.072 -0.288,-0.216 -0.36,-0.36 l -10.512,2.448 c 0.144,0.144 0.288,0.288 0.432,0.36 l 10.44,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path13785"
-                   d="m 77.149,60.977 c -0.072,-0.144 -0.216,-0.216 -0.288,-0.36 l -10.512,2.52 c 0.072,0.072 0.216,0.144 0.36,0.288 l 10.44,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path13787"
-                   d="m 77.005,60.761 c -0.144,-0.072 -0.216,-0.216 -0.36,-0.288 l -10.512,2.448 c 0.072,0.072 0.216,0.216 0.36,0.288 l 10.512,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path13789"
-                   d="m 76.861,60.617 c -0.144,-0.072 -0.288,-0.216 -0.36,-0.36 l -10.584,2.52 c 0.144,0.072 0.288,0.216 0.432,0.36 l 10.512,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path13791"
-                   d="m 76.645,60.473 c -0.072,-0.144 -0.216,-0.216 -0.288,-0.288 l -10.584,2.448 c 0.072,0.072 0.216,0.216 0.36,0.288 l 10.512,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path13793"
-                   d="m 76.501,60.257 c -0.144,-0.072 -0.288,-0.144 -0.36,-0.288 l -10.656,2.448 c 0.144,0.144 0.288,0.216 0.432,0.36 l 10.584,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path13795"
-                   d="m 76.357,60.185 c -0.144,-0.144 -0.287,-0.288 -0.431,-0.36 l -10.585,2.448 c 0.144,0.144 0.288,0.216 0.432,0.36 l 10.584,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path13797"
-                   d="m 76.141,59.969 c -0.143,-0.072 -0.215,-0.216 -0.36,-0.288 l -10.656,2.448 c 0.144,0.144 0.288,0.216 0.36,0.288 l 10.656,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path13799"
-                   d="m 75.926,59.825 c -0.145,-0.144 -0.217,-0.216 -0.361,-0.36 l -10.656,2.52 c 0.144,0.072 0.288,0.216 0.432,0.288 l 10.585,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path13801"
-                   d="m 75.781,59.681 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.36 l -10.656,2.52 c 0.144,0.072 0.288,0.216 0.432,0.288 l 10.656,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path13803"
-                   d="m 75.565,59.465 c -0.144,-0.072 -0.216,-0.144 -0.36,-0.288 l -10.656,2.52 c 0.144,0.072 0.216,0.216 0.36,0.288 l 10.656,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path13805"
-                   d="m 75.349,59.321 c -0.072,-0.072 -0.216,-0.216 -0.36,-0.288 l -10.656,2.52 c 0.072,0.072 0.216,0.144 0.36,0.288 l 10.656,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path13807"
-                   d="m 75.205,59.177 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.36 l -10.728,2.52 c 0.144,0.144 0.36,0.216 0.504,0.36 l 10.656,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path13809"
-                   d="m 74.989,59.033 c -0.072,-0.072 -0.216,-0.216 -0.36,-0.288 l -10.728,2.52 c 0.144,0.072 0.288,0.144 0.432,0.288 l 10.656,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path13811"
-                   d="m 74.773,58.817 c -0.072,-0.072 -0.215,-0.144 -0.359,-0.288 l -10.729,2.52 c 0.144,0.144 0.216,0.216 0.36,0.288 l 10.728,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path13813"
-                   d="m 74.629,58.745 c -0.143,-0.144 -0.288,-0.216 -0.432,-0.36 l -10.8,2.52 c 0.216,0.072 0.36,0.216 0.504,0.36 l 10.728,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path13815"
-                   d="m 74.414,58.529 c -0.145,-0.072 -0.217,-0.144 -0.361,-0.288 l -10.8,2.52 c 0.144,0.144 0.288,0.216 0.432,0.288 l 10.729,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path13817"
-                   d="m 74.197,58.385 c -0.144,-0.072 -0.288,-0.216 -0.36,-0.288 l -10.8,2.52 c 0.144,0.072 0.216,0.216 0.36,0.288 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path13819"
-                   d="m 74.053,58.241 c -0.144,-0.072 -0.36,-0.216 -0.504,-0.288 l -10.8,2.52 c 0.144,0.072 0.36,0.216 0.504,0.288 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path13821"
-                   d="m 73.837,58.097 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.288 l -10.8,2.52 c 0.144,0.072 0.288,0.216 0.432,0.288 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path13823"
-                   d="m 73.549,57.953 c -0.072,-0.144 -0.216,-0.216 -0.36,-0.288 l -10.872,2.52 c 0.144,0.072 0.288,0.144 0.432,0.288 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path13825"
-                   d="m 73.405,57.809 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.36 l -10.872,2.52 c 0.216,0.144 0.36,0.216 0.576,0.36 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path13827"
-                   d="m 73.189,57.665 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.36 l -10.872,2.52 c 0.144,0.144 0.36,0.216 0.504,0.36 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path13829"
-                   d="m 72.901,57.449 c -0.144,-0.072 -0.288,-0.144 -0.432,-0.288 l -10.872,2.592 c 0.144,0.072 0.288,0.144 0.432,0.216 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path13831"
-                   d="m 72.685,57.305 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.288 l -10.872,2.52 c 0.144,0.072 0.288,0.216 0.432,0.288 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path13833"
-                   d="m 72.469,57.161 c -0.144,-0.072 -0.288,-0.216 -0.504,-0.288 l -10.872,2.52 c 0.144,0.144 0.36,0.216 0.504,0.36 l 10.872,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path13835"
-                   d="m 72.253,57.017 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.288 l -10.944,2.52 c 0.144,0.144 0.288,0.216 0.504,0.288 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path13837"
-                   d="m 71.965,56.873 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.288 l -10.944,2.52 c 0.216,0.072 0.36,0.216 0.504,0.288 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path13839"
-                   d="m 71.821,56.729 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.288 l -10.872,2.52 c 0.144,0.072 0.36,0.216 0.504,0.288 l 10.944,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path13841"
-                   d="m 71.533,56.585 c -0.144,-0.072 -0.288,-0.216 -0.504,-0.288 l -10.872,2.52 c 0.144,0.144 0.288,0.216 0.432,0.288 l 10.944,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path13843"
-                   d="m 71.245,56.441 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.288 l -10.872,2.521 c 0.144,0.072 0.288,0.216 0.504,0.288 l 10.872,-2.521 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path13845"
-                   d="m 71.029,56.297 c -0.144,-0.072 -0.36,-0.216 -0.576,-0.288 l -10.872,2.52 c 0.144,0.072 0.36,0.216 0.576,0.288 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path13847"
-                   d="m 70.741,56.153 c -0.144,-0.072 -0.288,-0.216 -0.504,-0.288 l -10.872,2.52 c 0.144,0.144 0.288,0.216 0.504,0.288 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path13849"
-                   d="m 70.453,56.009 c -0.144,-0.144 -0.36,-0.216 -0.504,-0.288 l -10.944,2.52 c 0.216,0.144 0.36,0.216 0.576,0.288 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path13851"
-                   d="m 70.237,55.865 c -0.144,-0.072 -0.36,-0.216 -0.576,-0.288 l -10.944,2.52 c 0.216,0.144 0.432,0.216 0.648,0.288 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path13853"
-                   d="m 69.949,55.721 c -0.144,-0.072 -0.36,-0.144 -0.504,-0.288 l -10.944,2.592 c 0.216,0.072 0.36,0.144 0.504,0.216 l 10.944,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path13855"
-                   d="m 69.661,55.577 c -0.216,-0.072 -0.36,-0.144 -0.576,-0.288 l -10.872,2.592 c 0.144,0.072 0.36,0.144 0.504,0.216 l 10.944,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path13857"
-                   d="m 69.445,55.433 c -0.216,-0.072 -0.432,-0.144 -0.72,-0.288 l -10.872,2.592 c 0.216,0.072 0.432,0.144 0.648,0.288 l 10.944,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path13859"
-                   d="m 69.085,55.289 c -0.144,-0.072 -0.36,-0.144 -0.576,-0.216 l -10.872,2.52 c 0.216,0.072 0.36,0.144 0.576,0.288 l 10.872,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path13861"
-                   d="m 68.725,55.145 c -0.144,-0.072 -0.36,-0.144 -0.576,-0.216 l -10.8,2.52 c 0.144,0.072 0.36,0.144 0.504,0.288 l 10.872,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path13863"
-                   d="m 68.509,55.073 c -0.216,-0.072 -0.504,-0.216 -0.72,-0.288 l -10.8,2.52 c 0.216,0.072 0.432,0.216 0.648,0.288 l 10.872,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path13865"
-                   d="m 68.149,54.929 c -0.216,-0.072 -0.432,-0.144 -0.648,-0.216 l -10.8,2.52 c 0.216,0.072 0.432,0.144 0.648,0.216 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path13867"
-                   d="m 67.789,54.785 c -0.216,-0.072 -0.432,-0.144 -0.648,-0.216 l -10.728,2.52 c 0.144,0.072 0.36,0.144 0.576,0.216 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path13869"
-                   d="m 67.501,54.713 c -0.216,-0.144 -0.504,-0.216 -0.792,-0.288 l -10.656,2.52 c 0.216,0.072 0.432,0.144 0.648,0.288 l 10.8,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path13871"
-                   d="m 67.141,54.569 c -0.216,-0.072 -0.504,-0.144 -0.72,-0.216 l -10.656,2.448 c 0.216,0.072 0.432,0.144 0.648,0.288 l 10.728,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path13873"
-                   d="m 66.709,54.425 c -0.216,-0.072 -0.504,-0.144 -0.72,-0.216 l -10.584,2.448 c 0.216,0.072 0.432,0.216 0.648,0.288 l 10.656,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path13875"
-                   d="m 66.421,54.353 c -0.288,-0.072 -0.576,-0.216 -0.936,-0.288 l -10.512,2.52 c 0.288,0.072 0.504,0.144 0.792,0.216 l 10.656,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path13877"
-                   d="m 65.989,54.209 c -0.36,-0.072 -0.648,-0.144 -1.008,-0.216 l -10.44,2.448 c 0.288,0.072 0.576,0.144 0.864,0.216 l 10.584,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path13879"
-                   d="m 65.485,54.065 c -0.216,0 -0.504,-0.072 -0.792,-0.144 l -10.368,2.376 c 0.216,0.072 0.432,0.144 0.648,0.288 l 10.512,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path13881"
-                   d="m 64.981,53.993 c -0.288,-0.072 -0.576,-0.144 -0.864,-0.144 l -10.224,2.376 c 0.216,0.072 0.432,0.144 0.648,0.216 l 10.44,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path13883"
-                   d="m 64.693,53.921 c -0.36,-0.072 -0.792,-0.144 -1.152,-0.216 l -10.08,2.376 c 0.288,0.072 0.576,0.144 0.864,0.216 l 10.368,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path13885"
-                   d="m 64.117,53.849 c -0.36,-0.072 -0.72,-0.144 -1.008,-0.144 l -10.008,2.304 c 0.288,0.072 0.504,0.144 0.792,0.216 l 10.224,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path13887"
-                   d="m 63.541,53.705 c -0.36,0 -0.792,-0.072 -1.152,-0.072 l -9.72,2.232 c 0.216,0.072 0.504,0.144 0.792,0.216 l 10.08,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path13889"
-                   d="m 63.109,53.705 c -0.504,-0.072 -1.008,-0.144 -1.512,-0.144 l -9.432,2.232 c 0.36,0.072 0.648,0.144 0.936,0.216 l 10.008,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path13891"
-                   d="m 62.389,53.633 c -0.432,-0.072 -0.936,-0.072 -1.368,-0.072 l -9.216,2.16 c 0.288,0 0.576,0.072 0.864,0.144 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path13893"
-                   d="m 51.517,55.505 c 0,0.072 -0.072,0.072 -0.144,0.072 0.216,0.072 0.504,0.144 0.792,0.216 l 9.432,-2.232 c -0.576,0 -1.152,0 -1.728,0 l -8.352,1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path13895"
-                   d="m 53.029,54.929 c -0.576,0.216 -1.08,0.432 -1.656,0.648 0.144,0.072 0.288,0.072 0.432,0.144 l 9.216,-2.16 c -0.864,0 -1.656,0 -2.52,0.144 l -5.472,1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path13897"
-                   d="m 51.373,55.577 2.376,-0.864 2.232,-0.648 2.232,-0.36 2.088,-0.144 2.088,0 2.016,0.288 1.944,0.432 1.872,0.648 1.872,0.792 1.728,1.008 1.8,1.152 1.656,1.296 1.656,1.44 1.584,1.584 1.512,1.728 1.512,1.872 -1.512,0.216 -1.728,0.216 -1.728,0.216 -1.728,0.216 -1.584,0.216 -1.224,0.144 -0.936,0.072 -0.36,0 -0.144,-0.144 -0.36,-0.288 -0.504,-0.504 -0.648,-0.648 -0.792,-0.792 -0.936,-0.792 -1.08,-0.936 -1.224,-1.008 -1.368,-0.936 -1.44,-1.008 -1.584,-0.936 -1.728,-0.936 -1.728,-0.792 -1.872,-0.72 -1.944,-0.648 -2.016,-0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g13899">
-                <path
-                   id="path13901"
-                   d="m 70.093,66.521 c 0.288,0.216 0.504,0.432 0.72,0.648 -1.44,0.144 -4.248,0.504 -6.48,0.72 l 5.76,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13903"
-                   d="m 70.093,66.521 c -0.072,-0.072 -0.144,-0.216 -0.288,-0.288 l -7.848,1.8 c 0.576,0 1.44,-0.072 2.376,-0.144 l 5.76,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path13905"
-                   d="m 70.021,66.449 c -0.144,-0.144 -0.216,-0.216 -0.288,-0.36 l -8.136,1.872 c 0.072,0.072 0,0.072 0,0.072 0.36,0 1.008,0 1.728,-0.072 l 6.696,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path13907"
-                   d="m 69.805,66.233 c -0.072,-0.072 -0.216,-0.216 -0.288,-0.288 l -8.064,1.872 c 0.216,0.144 0.216,0.216 0.144,0.216 0.072,0 0.216,0 0.36,0 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path13909"
-                   d="m 69.733,66.089 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.36 l -8.064,1.872 c 0.216,0.216 0.36,0.288 0.36,0.36 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path13911"
-                   d="m 69.517,65.945 c -0.144,-0.144 -0.216,-0.216 -0.36,-0.288 l -8.064,1.872 c 0.144,0.072 0.288,0.216 0.36,0.288 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path13913"
-                   d="m 69.301,65.729 c -0.072,-0.072 -0.216,-0.216 -0.288,-0.288 l -8.136,1.872 c 0.144,0.144 0.288,0.216 0.36,0.288 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path13915"
-                   d="m 69.157,65.657 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.36 l -8.136,1.872 c 0.144,0.144 0.288,0.216 0.432,0.36 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path13917"
-                   d="m 69.013,65.441 c -0.144,-0.072 -0.216,-0.216 -0.36,-0.288 l -8.208,1.872 c 0.144,0.144 0.288,0.216 0.432,0.288 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path13919"
-                   d="m 68.797,65.297 c -0.072,-0.144 -0.216,-0.216 -0.36,-0.36 l -8.208,1.944 c 0.144,0.072 0.288,0.216 0.432,0.288 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path13921"
-                   d="m 68.653,65.153 c -0.072,-0.144 -0.216,-0.216 -0.36,-0.288 l -8.28,1.872 c 0.144,0.144 0.288,0.216 0.432,0.288 l 8.208,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path13923"
-                   d="m 68.437,64.937 c -0.072,-0.072 -0.216,-0.216 -0.288,-0.288 l -8.352,1.944 c 0.144,0.072 0.288,0.216 0.432,0.288 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path13925"
-                   d="m 68.293,64.865 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -8.424,2.016 c 0.216,0.072 0.36,0.216 0.504,0.288 l 8.28,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path13927"
-                   d="m 68.149,64.649 c -0.144,-0.072 -0.288,-0.216 -0.36,-0.288 l -8.424,1.944 c 0.144,0.072 0.288,0.216 0.432,0.288 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path13929"
-                   d="m 67.933,64.433 c -0.144,-0.072 -0.216,-0.144 -0.36,-0.288 l -8.496,2.016 c 0.144,0.072 0.288,0.144 0.432,0.288 l 8.424,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path13931"
-                   d="m 67.789,64.361 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.36 l -8.496,2.016 c 0.144,0.072 0.36,0.216 0.504,0.288 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path13933"
-                   d="m 67.573,64.145 c -0.144,-0.072 -0.216,-0.144 -0.36,-0.288 l -8.568,2.016 c 0.144,0.072 0.288,0.144 0.432,0.288 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path13935"
-                   d="m 67.357,64.001 c -0.072,-0.072 -0.216,-0.216 -0.36,-0.288 l -8.64,1.944 c 0.216,0.144 0.36,0.216 0.504,0.36 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path13937"
-                   d="m 67.213,63.857 c -0.144,-0.072 -0.216,-0.144 -0.36,-0.288 l -8.64,2.016 c 0.144,0.072 0.288,0.216 0.432,0.288 l 8.568,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path13939"
-                   d="m 66.997,63.713 c -0.144,-0.144 -0.216,-0.216 -0.36,-0.288 l -8.712,2.016 c 0.144,0.072 0.288,0.144 0.432,0.216 l 8.64,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path13941"
-                   d="m 66.853,63.569 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.36 l -8.784,2.016 c 0.216,0.144 0.36,0.288 0.576,0.36 l 8.64,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path13943"
-                   d="m 66.637,63.425 c -0.144,-0.144 -0.216,-0.216 -0.36,-0.288 l -8.784,2.016 c 0.144,0.072 0.288,0.144 0.432,0.288 l 8.712,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path13945"
-                   d="m 66.421,63.209 c -0.144,-0.072 -0.216,-0.216 -0.36,-0.288 l -8.856,2.088 c 0.144,0.072 0.288,0.144 0.432,0.216 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path13947"
-                   d="m 66.277,63.137 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.36 l -8.856,2.088 c 0.144,0.072 0.36,0.216 0.504,0.288 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path13949"
-                   d="m 66.061,62.921 c -0.144,-0.072 -0.288,-0.216 -0.36,-0.288 l -8.928,2.088 c 0.144,0.072 0.288,0.144 0.432,0.288 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path13951"
-                   d="m 65.845,62.777 c -0.144,-0.144 -0.288,-0.216 -0.36,-0.288 l -9,2.016 c 0.144,0.144 0.36,0.216 0.504,0.36 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path13953"
-                   d="m 65.701,62.633 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.36 l -9,2.16 c 0.144,0.072 0.288,0.144 0.504,0.288 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path13955"
-                   d="m 65.485,62.489 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.288 l -9.072,2.088 c 0.216,0.072 0.36,0.144 0.504,0.216 l 9,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path13957"
-                   d="m 65.269,62.273 c -0.144,-0.072 -0.288,-0.144 -0.432,-0.288 l -9.072,2.16 c 0.216,0.072 0.36,0.144 0.504,0.288 l 9,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path13959"
-                   d="m 65.053,62.201 c -0.144,-0.144 -0.216,-0.216 -0.36,-0.288 l -9.144,2.088 c 0.144,0.072 0.288,0.144 0.432,0.288 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path13961"
-                   d="m 64.837,61.985 c -0.144,-0.072 -0.288,-0.144 -0.432,-0.288 l -9.144,2.16 c 0.216,0.072 0.36,0.216 0.504,0.288 l 9.072,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path13963"
-                   d="m 64.693,61.913 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.36 l -9.144,2.16 c 0.144,0.072 0.36,0.216 0.504,0.288 l 9.144,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path13965"
-                   d="m 64.405,61.697 c -0.072,-0.072 -0.216,-0.216 -0.36,-0.288 l -9.216,2.16 c 0.144,0.072 0.288,0.144 0.432,0.288 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path13967"
-                   d="m 64.189,61.553 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.288 l -9.216,2.16 c 0.144,0.072 0.36,0.144 0.504,0.288 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path13969"
-                   d="m 64.045,61.409 c -0.144,-0.072 -0.288,-0.216 -0.504,-0.288 l -9.216,2.16 c 0.144,0.072 0.288,0.216 0.504,0.288 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path13971"
-                   d="m 63.757,61.265 c -0.072,-0.144 -0.216,-0.216 -0.36,-0.288 l -9.36,2.16 c 0.144,0.072 0.288,0.144 0.504,0.288 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path13973"
-                   d="m 63.541,61.121 c -0.072,-0.144 -0.216,-0.216 -0.36,-0.288 l -9.36,2.16 c 0.144,0.072 0.288,0.216 0.504,0.288 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path13975"
-                   d="m 63.397,60.977 c -0.144,-0.072 -0.288,-0.216 -0.432,-0.288 l -9.36,2.16 c 0.144,0.072 0.288,0.216 0.432,0.288 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path13977"
-                   d="m 63.181,60.833 c -0.144,-0.144 -0.36,-0.216 -0.504,-0.288 l -9.36,2.16 c 0.144,0.072 0.36,0.216 0.504,0.288 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path13979"
-                   d="m 62.965,60.689 c -0.144,-0.144 -0.36,-0.216 -0.504,-0.288 l -9.432,2.16 c 0.216,0.144 0.36,0.216 0.576,0.288 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path13981"
-                   d="m 62.677,60.545 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.288 l -9.432,2.16 c 0.144,0.072 0.288,0.216 0.504,0.288 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path13983"
-                   d="m 62.461,60.401 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.36 l -9.504,2.232 c 0.144,0.072 0.36,0.216 0.504,0.288 l 9.432,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path13985"
-                   d="m 62.245,60.257 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.36 l -9.432,2.232 c 0.144,0.144 0.36,0.216 0.504,0.288 l 9.432,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path13987"
-                   d="m 62.029,60.041 c -0.144,-0.072 -0.36,-0.144 -0.504,-0.216 l -9.504,2.16 c 0.144,0.072 0.36,0.216 0.504,0.288 l 9.504,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path13989"
-                   d="m 61.741,59.897 c -0.144,-0.072 -0.288,-0.144 -0.432,-0.216 l -9.504,2.232 c 0.144,0.072 0.36,0.144 0.504,0.216 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path13991"
-                   d="m 61.525,59.825 c -0.144,-0.144 -0.288,-0.216 -0.432,-0.288 l -9.576,2.232 c 0.216,0.072 0.36,0.144 0.504,0.216 l 9.504,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path13993"
-                   d="m 61.309,59.681 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.36 l -9.576,2.232 c 0.216,0.144 0.36,0.216 0.576,0.36 l 9.504,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path13995"
-                   d="m 61.093,59.537 c -0.144,-0.144 -0.36,-0.216 -0.504,-0.288 l -9.576,2.232 c 0.216,0.072 0.36,0.144 0.504,0.288 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path13997"
-                   d="m 60.805,59.321 c -0.144,-0.072 -0.288,-0.144 -0.432,-0.216 l -9.648,2.232 c 0.216,0.072 0.36,0.144 0.504,0.216 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path13999"
-                   d="m 60.589,59.249 c -0.216,-0.144 -0.36,-0.216 -0.504,-0.36 l -9.648,2.232 c 0.216,0.144 0.432,0.216 0.576,0.36 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path14001"
-                   d="m 60.373,59.105 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.288 l -9.576,2.232 c 0.216,0.072 0.36,0.144 0.504,0.288 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path14003"
-                   d="m 60.085,58.889 c -0.216,-0.072 -0.36,-0.144 -0.504,-0.216 l -9.648,2.232 c 0.216,0.072 0.36,0.144 0.504,0.216 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path14005"
-                   d="m 59.797,58.817 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.288 l -9.576,2.232 c 0.216,0.072 0.36,0.216 0.504,0.288 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path14007"
-                   d="m 59.581,58.673 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.288 l -9.576,2.232 c 0.216,0.072 0.36,0.144 0.504,0.288 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path14009"
-                   d="m 59.293,58.529 c -0.144,-0.072 -0.36,-0.216 -0.504,-0.288 l -9.648,2.232 c 0.216,0.072 0.432,0.216 0.576,0.288 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path14011"
-                   d="m 59.005,58.385 c -0.144,-0.072 -0.36,-0.216 -0.504,-0.288 l -9.576,2.232 c 0.144,0.072 0.36,0.216 0.504,0.288 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path14013"
-                   d="m 58.789,58.241 c -0.216,-0.072 -0.36,-0.144 -0.576,-0.288 l -9.576,2.232 c 0.216,0.072 0.36,0.216 0.504,0.288 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path14015"
-                   d="m 58.501,58.097 c -0.144,-0.072 -0.36,-0.144 -0.504,-0.216 l -9.576,2.232 c 0.216,0.072 0.36,0.144 0.504,0.216 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path14017"
-                   d="m 58.213,57.953 c -0.144,-0.072 -0.36,-0.144 -0.576,-0.288 l -9.504,2.232 c 0.144,0.144 0.36,0.216 0.504,0.288 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path14019"
-                   d="m 57.997,57.881 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.288 l -9.504,2.16 c 0.216,0.144 0.36,0.216 0.576,0.36 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path14021"
-                   d="m 57.637,57.665 c -0.216,-0.072 -0.36,-0.144 -0.576,-0.216 l -9.432,2.232 c 0.144,0.072 0.288,0.144 0.504,0.216 l 9.504,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path14023"
-                   d="m 57.349,57.593 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.288 l -9.432,2.232 c 0.216,0.072 0.36,0.144 0.576,0.216 l 9.504,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path14025"
-                   d="m 57.061,57.449 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.288 l -9.432,2.232 c 0.216,0.072 0.432,0.144 0.648,0.288 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path14027"
-                   d="m 56.701,57.305 c -0.144,-0.072 -0.36,-0.144 -0.576,-0.216 l -9.36,2.16 c 0.216,0.072 0.36,0.144 0.504,0.288 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path14029"
-                   d="m 56.413,57.161 c -0.144,-0.072 -0.36,-0.144 -0.576,-0.216 l -9.36,2.16 c 0.144,0.072 0.36,0.144 0.504,0.288 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path14031"
-                   d="m 56.125,57.089 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.288 l -9.288,2.232 c 0.144,0.072 0.36,0.144 0.504,0.216 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path14033"
-                   d="m 55.837,56.945 c -0.216,-0.072 -0.432,-0.144 -0.648,-0.288 l -9.288,2.16 c 0.216,0.144 0.36,0.216 0.576,0.288 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path14035"
-                   d="m 55.549,56.801 c -0.216,-0.072 -0.504,-0.144 -0.72,-0.216 l -9.216,2.088 c 0.216,0.144 0.432,0.216 0.648,0.36 l 9.288,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path14037"
-                   d="m 55.117,56.657 c -0.216,-0.072 -0.432,-0.144 -0.648,-0.216 l -9.072,2.16 c 0.144,0.072 0.36,0.144 0.504,0.216 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path14039"
-                   d="m 54.829,56.585 c -0.288,-0.072 -0.504,-0.216 -0.72,-0.288 l -9.072,2.16 c 0.216,0.072 0.36,0.144 0.576,0.216 l 9.216,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path14041"
-                   d="m 54.469,56.441 c -0.216,-0.072 -0.504,-0.144 -0.72,-0.216 l -9,2.088 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.072,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path14043"
-                   d="m 54.109,56.297 c -0.288,-0.072 -0.504,-0.144 -0.72,-0.216 l -8.856,2.088 c 0.144,0.072 0.36,0.216 0.504,0.288 l 9.072,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path14045"
-                   d="m 53.749,56.225 c -0.288,-0.072 -0.504,-0.144 -0.792,-0.216 l -8.784,2.016 c 0.144,0.072 0.36,0.216 0.576,0.288 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path14047"
-                   d="m 53.389,56.081 c -0.288,-0.072 -0.504,-0.072 -0.792,-0.144 l -8.64,2.016 c 0.144,0.072 0.36,0.144 0.576,0.216 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path14049"
-                   d="m 52.957,56.009 c -0.288,-0.072 -0.576,-0.144 -0.864,-0.216 l -8.496,2.016 c 0.144,0.072 0.36,0.144 0.576,0.216 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path14051"
-                   d="m 52.597,55.937 c -0.288,-0.072 -0.576,-0.144 -0.936,-0.216 l -8.424,1.944 c 0.216,0.072 0.432,0.216 0.72,0.288 l 8.64,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path14053"
-                   d="m 52.093,55.793 c -0.216,-0.072 -0.504,-0.144 -0.792,-0.144 l -8.352,1.944 c 0.216,0.072 0.432,0.144 0.648,0.216 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path14055"
-                   d="m 51.661,55.721 c -0.288,-0.072 -0.648,-0.144 -0.936,-0.216 l -8.136,1.944 c 0.216,0.072 0.432,0.144 0.648,0.216 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path14057"
-                   d="m 51.301,55.649 c -0.36,-0.072 -0.648,-0.144 -1.008,-0.216 l -7.92,1.872 c 0.216,0.072 0.36,0.144 0.576,0.288 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path14059"
-                   d="m 50.725,55.505 c -0.36,-0.072 -0.72,-0.072 -1.08,-0.144 l -7.704,1.872 c 0.216,0 0.432,0.072 0.648,0.216 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path14061"
-                   d="m 50.293,55.433 c -0.432,0 -0.864,-0.072 -1.368,-0.144 l -7.416,1.8 c 0.288,0.072 0.504,0.144 0.864,0.216 l 7.92,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path14063"
-                   d="m 49.645,55.361 c -0.36,0 -0.792,-0.072 -1.152,-0.072 l -7.272,1.728 c 0.216,0 0.432,0.072 0.72,0.216 l 7.704,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path14065"
-                   d="m 40.789,56.873 c -0.072,0 -0.072,0 -0.072,0 0.216,0.072 0.504,0.144 0.792,0.216 l 7.416,-1.8 c -0.432,0 -0.936,0 -1.368,0 l -6.768,1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path14067"
-                   d="m 41.797,56.369 c -0.36,0.144 -0.72,0.36 -1.08,0.504 0.144,0.072 0.288,0.072 0.504,0.144 l 7.272,-1.728 c -0.72,0 -1.368,0 -2.088,0 l -4.608,1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path14069"
-                   d="m 43.021,55.937 c -0.792,0.288 -1.512,0.576 -2.232,0.936 l 6.768,-1.584 c -0.864,0 -1.728,0.072 -2.52,0.216 l -2.016,0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path14071"
-                   d="m 40.717,56.873 1.944,-0.792 1.944,-0.576 2.088,-0.216 2.016,0 2.088,0.216 2.088,0.432 2.016,0.648 2.088,0.792 1.944,0.936 1.944,1.008 1.872,1.224 1.872,1.224 1.656,1.296 1.656,1.368 1.512,1.368 1.368,1.368 -0.936,0.072 -1.152,0.144 -1.296,0.144 -1.368,0.144 -1.368,0.144 -1.224,0.144 -1.08,0.072 -0.792,0 0,-0.144 -0.36,-0.36 -0.72,-0.504 -1.08,-0.72 -1.296,-0.792 -1.512,-0.936 -1.728,-1.008 -1.8,-1.008 -1.8,-1.008 -1.872,-1.008 -1.872,-0.936 -1.728,-0.864 -1.584,-0.72 -1.44,-0.576 -1.152,-0.36 -0.936,-0.216 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14073">
-                <path
-                   id="path14075"
-                   d="m 60.805,67.457 c 0.648,0.432 1.008,0.648 1.08,0.648 -1.944,0.504 -4.968,0.576 -7.704,0.936 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path14077"
-                   d="m 60.805,67.457 c -0.144,-0.072 -0.288,-0.144 -0.504,-0.288 l -8.856,2.088 c 0.144,0.072 0.288,0.144 0.432,0.144 0.72,-0.144 1.512,-0.216 2.304,-0.36 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path14079"
-                   d="m 60.589,67.313 c -0.144,-0.072 -0.36,-0.216 -0.504,-0.36 l -9,2.088 c 0.216,0.144 0.432,0.216 0.648,0.36 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path14081"
-                   d="m 60.301,67.169 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.36 l -9,2.088 c 0.216,0.144 0.432,0.216 0.648,0.36 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path14083"
-                   d="m 60.085,66.953 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.288 l -9,2.088 c 0.216,0.144 0.36,0.216 0.576,0.288 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path14085"
-                   d="m 59.797,66.809 c -0.144,-0.072 -0.36,-0.216 -0.504,-0.288 l -9.144,2.088 c 0.216,0.144 0.432,0.216 0.648,0.288 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path14087"
-                   d="m 59.509,66.665 c -0.144,-0.144 -0.288,-0.216 -0.504,-0.36 l -9.144,2.16 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path14089"
-                   d="m 59.293,66.521 c -0.144,-0.144 -0.36,-0.216 -0.504,-0.36 l -9.216,2.16 c 0.216,0.072 0.432,0.216 0.576,0.288 l 9.144,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path14091"
-                   d="m 59.005,66.305 c -0.144,-0.072 -0.36,-0.216 -0.504,-0.288 l -9.216,2.16 c 0.144,0.072 0.36,0.144 0.576,0.288 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path14093"
-                   d="m 58.789,66.161 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.288,2.16 c 0.216,0.144 0.432,0.216 0.648,0.36 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path14095"
-                   d="m 58.501,66.017 c -0.144,-0.144 -0.36,-0.216 -0.504,-0.36 l -9.36,2.16 c 0.216,0.144 0.432,0.216 0.648,0.36 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path14097"
-                   d="m 58.213,65.801 c -0.144,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.36,2.16 c 0.216,0.144 0.432,0.288 0.648,0.36 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path14099"
-                   d="m 57.997,65.657 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.36 l -9.432,2.16 c 0.288,0.144 0.504,0.288 0.72,0.36 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path14101"
-                   d="m 57.637,65.441 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.432,2.232 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path14103"
-                   d="m 57.349,65.297 c -0.144,-0.144 -0.36,-0.216 -0.504,-0.36 l -9.504,2.232 c 0.216,0.072 0.432,0.216 0.576,0.288 l 9.432,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path14105"
-                   d="m 57.061,65.081 c -0.144,-0.072 -0.288,-0.216 -0.504,-0.288 l -9.504,2.232 c 0.216,0.072 0.36,0.144 0.576,0.288 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path14107"
-                   d="m 56.845,64.937 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.504,2.232 c 0.144,0.144 0.36,0.216 0.576,0.36 l 9.504,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path14109"
-                   d="m 56.557,64.793 c -0.144,-0.144 -0.36,-0.216 -0.504,-0.36 l -9.576,2.232 c 0.144,0.144 0.36,0.216 0.576,0.36 l 9.504,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path14111"
-                   d="m 56.269,64.577 c -0.144,-0.072 -0.36,-0.216 -0.504,-0.288 l -9.648,2.232 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.504,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path14113"
-                   d="m 56.053,64.433 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.36 l -9.648,2.304 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path14115"
-                   d="m 55.765,64.289 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.648,2.232 c 0.216,0.144 0.432,0.216 0.576,0.36 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path14117"
-                   d="m 55.477,64.073 c -0.144,-0.072 -0.36,-0.216 -0.504,-0.288 l -9.72,2.232 c 0.216,0.144 0.432,0.216 0.576,0.36 l 9.648,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path14119"
-                   d="m 55.189,63.929 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.72,2.232 c 0.216,0.144 0.432,0.288 0.648,0.36 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path14121"
-                   d="m 54.973,63.785 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.36 l -9.792,2.232 c 0.288,0.144 0.504,0.288 0.72,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path14123"
-                   d="m 54.613,63.569 c -0.216,-0.144 -0.432,-0.216 -0.576,-0.36 l -9.792,2.304 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path14125"
-                   d="m 54.325,63.425 c -0.216,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.792,2.304 c 0.216,0.072 0.432,0.216 0.576,0.288 l 9.792,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path14127"
-                   d="m 54.037,63.209 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.288 l -9.792,2.304 c 0.216,0.072 0.36,0.144 0.576,0.288 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path14129"
-                   d="m 53.749,63.065 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.288 l -9.792,2.232 c 0.216,0.144 0.432,0.216 0.576,0.36 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path14131"
-                   d="m 53.461,62.921 c -0.144,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.792,2.304 c 0.216,0.144 0.36,0.216 0.576,0.36 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path14133"
-                   d="m 53.173,62.777 c -0.144,-0.144 -0.36,-0.216 -0.576,-0.36 l -9.792,2.304 c 0.144,0.072 0.36,0.216 0.576,0.288 l 9.792,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path14135"
-                   d="m 52.885,62.561 c -0.144,-0.072 -0.36,-0.216 -0.576,-0.288 l -9.792,2.304 c 0.144,0.072 0.36,0.216 0.576,0.288 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path14137"
-                   d="m 52.597,62.417 c -0.144,-0.072 -0.36,-0.216 -0.576,-0.288 l -9.864,2.232 c 0.216,0.144 0.432,0.216 0.648,0.36 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path14139"
-                   d="m 52.309,62.273 c -0.144,-0.144 -0.36,-0.216 -0.504,-0.36 l -9.936,2.304 c 0.216,0.144 0.432,0.216 0.648,0.36 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path14141"
-                   d="m 52.021,62.129 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -9.864,2.304 c 0.216,0.144 0.432,0.288 0.648,0.36 l 9.864,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path14143"
-                   d="m 51.805,61.913 c -0.288,-0.072 -0.504,-0.216 -0.72,-0.36 l -9.864,2.304 c 0.216,0.144 0.432,0.288 0.648,0.36 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path14145"
-                   d="m 51.373,61.697 c -0.216,-0.072 -0.36,-0.144 -0.576,-0.288 l -9.864,2.304 c 0.144,0.144 0.36,0.216 0.576,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path14147"
-                   d="m 51.085,61.553 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.288 l -9.936,2.304 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path14149"
-                   d="m 50.797,61.409 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.288 l -9.936,2.304 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path14151"
-                   d="m 50.509,61.265 c -0.216,-0.144 -0.432,-0.216 -0.576,-0.36 l -9.936,2.304 c 0.216,0.144 0.432,0.216 0.576,0.36 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path14153"
-                   d="m 50.221,61.121 c -0.216,-0.144 -0.432,-0.216 -0.576,-0.36 l -9.936,2.304 c 0.216,0.144 0.36,0.216 0.576,0.36 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path14155"
-                   d="m 49.933,60.905 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.288 l -9.864,2.304 c 0.144,0.144 0.36,0.216 0.576,0.288 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path14157"
-                   d="m 49.645,60.761 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.288 l -9.936,2.304 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path14159"
-                   d="m 49.285,60.617 c -0.144,-0.072 -0.36,-0.216 -0.576,-0.288 l -9.936,2.304 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path14161"
-                   d="m 48.997,60.473 c -0.216,-0.144 -0.432,-0.216 -0.576,-0.36 l -9.936,2.376 c 0.216,0.072 0.36,0.144 0.576,0.288 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path14163"
-                   d="m 48.709,60.329 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.36 l -9.936,2.304 c 0.216,0.072 0.504,0.216 0.72,0.36 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path14165"
-                   d="m 48.421,60.113 c -0.288,-0.072 -0.504,-0.216 -0.792,-0.36 l -9.864,2.376 c 0.216,0.072 0.432,0.216 0.72,0.36 l 9.936,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path14167"
-                   d="m 47.989,59.969 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.36 l -9.936,2.376 c 0.216,0.072 0.432,0.144 0.648,0.288 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path14169"
-                   d="m 47.629,59.753 c -0.144,-0.072 -0.36,-0.144 -0.576,-0.288 l -9.936,2.304 c 0.216,0.144 0.432,0.216 0.648,0.36 l 9.864,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path14171"
-                   d="m 47.341,59.609 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.288 l -9.864,2.304 c 0.216,0.144 0.432,0.216 0.576,0.36 l 9.936,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path14173"
-                   d="m 47.053,59.465 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.288 l -9.936,2.304 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path14175"
-                   d="m 46.693,59.321 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.288 l -9.864,2.304 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path14177"
-                   d="m 46.405,59.177 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.288 l -9.936,2.304 c 0.216,0.072 0.432,0.216 0.648,0.288 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path14179"
-                   d="m 46.045,59.033 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.288 l -9.864,2.304 c 0.216,0.072 0.432,0.144 0.648,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path14181"
-                   d="m 45.685,58.889 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.288 l -9.864,2.304 c 0.216,0.072 0.432,0.144 0.648,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path14183"
-                   d="m 45.397,58.745 c -0.216,-0.144 -0.432,-0.216 -0.72,-0.288 l -9.864,2.304 c 0.216,0.072 0.432,0.144 0.72,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path14185"
-                   d="m 45.037,58.601 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.36 l -9.864,2.304 c 0.288,0.072 0.576,0.216 0.792,0.36 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path14187"
-                   d="m 44.677,58.457 c -0.216,-0.144 -0.504,-0.288 -0.792,-0.36 l -9.864,2.304 c 0.288,0.072 0.576,0.216 0.792,0.36 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path14189"
-                   d="m 44.245,58.241 c -0.216,-0.144 -0.504,-0.216 -0.72,-0.288 l -9.792,2.304 c 0.216,0.072 0.432,0.144 0.648,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path14191"
-                   d="m 43.885,58.097 c -0.216,-0.144 -0.504,-0.216 -0.72,-0.288 l -9.792,2.304 c 0.216,0.072 0.432,0.144 0.648,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path14193"
-                   d="m 43.525,57.953 c -0.216,-0.144 -0.504,-0.216 -0.72,-0.288 l -9.792,2.304 c 0.216,0.072 0.504,0.144 0.72,0.288 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path14195"
-                   d="m 43.165,57.809 c -0.216,-0.072 -0.504,-0.216 -0.72,-0.288 l -9.792,2.304 c 0.288,0.072 0.504,0.144 0.72,0.288 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path14197"
-                   d="m 42.805,57.665 c -0.288,-0.072 -0.504,-0.216 -0.792,-0.288 l -9.72,2.304 c 0.288,0.072 0.504,0.144 0.72,0.288 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path14199"
-                   d="m 42.445,57.521 c -0.288,-0.072 -0.576,-0.216 -0.792,-0.288 l -9.72,2.232 c 0.288,0.144 0.504,0.216 0.72,0.36 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path14201"
-                   d="m 42.013,57.377 c -0.216,-0.072 -0.504,-0.216 -0.792,-0.288 l -9.648,2.232 c 0.216,0.144 0.504,0.216 0.72,0.36 l 9.72,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path14203"
-                   d="m 41.653,57.233 c -0.288,-0.072 -0.576,-0.144 -0.792,-0.288 l -9.648,2.304 c 0.288,0.072 0.504,0.144 0.72,0.216 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path14205"
-                   d="m 41.221,57.089 c -0.288,-0.072 -0.576,-0.144 -0.864,-0.216 l -9.504,2.232 c 0.216,0.072 0.504,0.144 0.72,0.216 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path14207"
-                   d="m 30.709,58.817 c -0.072,0.072 -0.072,0.144 -0.072,0.144 0.144,0.072 0.36,0.216 0.576,0.288 l 9.648,-2.304 c -0.36,-0.072 -0.72,-0.144 -1.08,-0.288 l -9.072,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path14209"
-                   d="m 30.781,58.601 c -0.072,0.072 -0.144,0.216 -0.144,0.36 0.072,0.072 0.144,0.072 0.216,0.144 l 9.504,-2.232 c -0.288,-0.144 -0.648,-0.216 -1.008,-0.288 l -8.568,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path14211"
-                   d="m 30.997,58.313 c -0.144,0.144 -0.216,0.288 -0.288,0.504 l 9.072,-2.16 c -0.288,-0.072 -0.648,-0.144 -0.936,-0.216 l -7.848,1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path14213"
-                   d="m 31.141,58.025 c -0.144,0.144 -0.216,0.36 -0.36,0.576 l 8.568,-2.016 c -0.36,-0.072 -0.648,-0.144 -1.008,-0.216 l -7.2,1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path14215"
-                   d="m 31.357,57.737 c -0.144,0.144 -0.288,0.36 -0.432,0.576 l 7.92,-1.872 c -0.36,-0.072 -0.72,-0.144 -1.08,-0.216 l -6.408,1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path14217"
-                   d="m 31.573,57.449 c -0.144,0.144 -0.288,0.36 -0.432,0.576 l 7.2,-1.656 c -0.432,-0.072 -0.792,-0.144 -1.152,-0.216 l -5.616,1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path14219"
-                   d="m 31.933,57.161 c -0.216,0.144 -0.432,0.36 -0.576,0.576 l 6.408,-1.512 c -0.432,-0.072 -0.864,-0.072 -1.224,-0.144 l -4.608,1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path14221"
-                   d="m 32.437,56.801 c -0.288,0.144 -0.576,0.432 -0.864,0.648 l 5.616,-1.296 c -0.504,-0.072 -1.08,-0.072 -1.584,-0.072 l -3.168,0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path14223"
-                   d="m 30.637,58.961 1.008,-1.584 1.512,-0.936 1.872,-0.36 2.16,0 2.376,0.504 2.592,0.792 2.736,1.08 2.664,1.224 2.736,1.368 2.52,1.44 2.376,1.368 2.16,1.368 1.8,1.152 1.368,0.864 0.936,0.648 0.432,0.216 -1.008,0.216 -1.152,0.144 -1.224,0.144 -1.296,0.072 -1.368,0.144 -1.368,0.144 -1.296,0.216 -1.296,0.216 -1.368,-0.648 -1.296,-0.648 -1.368,-0.72 -1.296,-0.72 -1.296,-0.648 -1.296,-0.72 -1.368,-0.72 -1.296,-0.72 -1.296,-0.648 -1.296,-0.72 -1.368,-0.648 -1.296,-0.576 -1.296,-0.648 -1.368,-0.576 -1.368,-0.576 -1.368,-0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14225">
-                <path
-                   id="path14227"
-                   d="m 43.669,69.689 c 0.216,0.216 0.432,0.36 0.576,0.432 -2.088,0.36 -3.528,0.432 -5.184,0.648 l 4.608,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffcc00" />
-                <path
-                   id="path14229"
-                   d="m 42.517,68.825 c 0.864,0.648 1.44,1.152 1.728,1.296 -3.312,0.504 -4.968,0.504 -8.28,1.008 -0.36,-0.144 -0.648,-0.36 -0.936,-0.576 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffcf00" />
-                <path
-                   id="path14231"
-                   d="m 43.669,69.689 c -0.576,-0.432 -1.368,-1.008 -2.448,-1.8 l -7.56,1.8 c 0.792,0.504 1.584,1.008 2.304,1.44 1.224,-0.144 2.16,-0.288 3.096,-0.36 l 4.608,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd100" />
-                <path
-                   id="path14233"
-                   d="m 42.517,68.825 c -0.72,-0.504 -1.584,-1.152 -2.592,-1.8 l -7.56,1.728 c 0.936,0.648 1.8,1.296 2.664,1.8 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd400" />
-                <path
-                   id="path14235"
-                   d="m 41.221,67.889 c -0.72,-0.504 -1.584,-1.08 -2.52,-1.728 l -7.56,1.728 c 0.864,0.648 1.728,1.224 2.52,1.8 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path14237"
-                   d="m 39.925,67.025 c -0.792,-0.576 -1.728,-1.152 -2.664,-1.728 l -7.416,1.656 c 0.864,0.648 1.728,1.224 2.52,1.8 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path14239"
-                   d="m 38.701,66.161 c -0.936,-0.576 -1.872,-1.152 -2.88,-1.728 l -7.272,1.656 c 0.864,0.576 1.728,1.224 2.592,1.8 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path14241"
-                   d="m 37.261,65.297 c -0.936,-0.576 -1.944,-1.152 -2.952,-1.728 l -7.128,1.656 c 0.864,0.576 1.8,1.152 2.664,1.728 l 7.416,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path14243"
-                   d="m 35.821,64.433 c -1.008,-0.576 -2.088,-1.152 -3.168,-1.656 l -6.984,1.584 c 0.936,0.576 1.944,1.152 2.88,1.728 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <path
-                   id="path14245"
-                   d="m 34.309,63.569 c -1.08,-0.576 -2.232,-1.08 -3.384,-1.584 l -6.84,1.584 c 1.008,0.504 2.088,1.08 3.096,1.656 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe300" />
-                <path
-                   id="path14247"
-                   d="m 32.653,62.777 c -1.224,-0.576 -2.448,-1.08 -3.672,-1.512 l -6.84,1.584 c 1.152,0.36 2.376,0.936 3.528,1.512 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe600" />
-                <path
-                   id="path14249"
-                   d="m 30.925,61.985 c -1.44,-0.576 -2.88,-1.08 -4.32,-1.368 l -7.2,1.728 c 1.512,0.072 3.096,0.576 4.68,1.224 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe800" />
-                <path
-                   id="path14251"
-                   d="m 19.981,60.977 c -0.792,0.36 -1.584,0.864 -2.232,1.44 1.368,-0.216 2.88,0 4.392,0.432 l 6.84,-1.584 c -2.16,-0.72 -4.32,-1.08 -6.264,-0.936 l -2.736,0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffeb00" />
-                <path
-                   id="path14253"
-                   d="m 26.605,60.617 c -3.312,-0.648 -6.48,-0.36 -8.856,1.8 0.504,-0.072 1.08,-0.072 1.656,-0.072 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffed00" />
-                <path
-                   id="path14255"
-                   d="m 17.749,62.417 1.584,-1.152 1.8,-0.648 1.872,-0.288 2.016,0 2.088,0.36 2.16,0.648 2.088,0.792 2.088,0.936 1.944,1.08 1.944,1.08 1.728,1.152 1.512,1.008 1.368,0.936 1.08,0.864 0.792,0.576 0.432,0.36 -1.152,0.144 -1.08,0.144 -0.936,0.144 -0.936,0.072 -1.008,0.072 -0.936,0.144 -1.08,0.144 -1.152,0.144 -1.008,-0.648 -1.008,-0.648 -1.08,-0.792 -1.08,-0.72 -1.152,-0.792 -1.152,-0.792 -1.152,-0.792 -1.152,-0.72 -1.152,-0.72 -1.224,-0.576 -1.224,-0.576 -1.152,-0.432 -1.224,-0.36 -1.152,-0.216 -1.152,0 -1.152,0.072 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14257">
-                <path
-                   id="path14259"
-                   d="m 51.373,69.041 c 0.144,0.072 0.288,0.144 0.504,0.216 -0.72,0.072 -1.512,0.144 -2.376,0.216 l 1.872,-0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffcc00" />
-                <path
-                   id="path14261"
-                   d="m 49.645,68.249 c 0.72,0.36 1.44,0.72 2.232,1.008 -2.88,0.072 -7.848,1.152 -7.992,0.864 -0.072,0 -0.216,-0.144 -0.576,-0.432 l 6.336,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffcf00" />
-                <path
-                   id="path14263"
-                   d="m 51.373,69.041 c -1.152,-0.504 -2.304,-1.08 -3.312,-1.584 l -5.832,1.368 c 1.008,0.792 1.584,1.296 1.656,1.296 0.072,0.216 2.952,-0.288 5.616,-0.648 l 1.872,-0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd100" />
-                <path
-                   id="path14265"
-                   d="m 49.645,68.249 c -1.152,-0.576 -2.232,-1.08 -3.24,-1.584 l -5.4,1.224 c 1.008,0.792 1.8,1.44 2.304,1.8 l 6.336,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd400" />
-                <path
-                   id="path14267"
-                   d="m 48.061,67.457 c -1.152,-0.504 -2.232,-1.08 -3.24,-1.584 l -5.04,1.152 c 0.936,0.648 1.8,1.296 2.448,1.8 l 5.832,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path14269"
-                   d="m 46.405,66.665 c -1.08,-0.576 -2.088,-1.08 -3.096,-1.584 l -4.824,1.08 c 0.936,0.648 1.8,1.224 2.52,1.728 l 5.4,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path14271"
-                   d="m 44.821,65.873 c -1.08,-0.576 -2.088,-1.08 -3.096,-1.584 l -4.536,1.008 c 0.936,0.648 1.8,1.224 2.592,1.728 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path14273"
-                   d="m 43.309,65.081 c -1.08,-0.576 -2.16,-1.152 -3.096,-1.656 l -4.464,1.08 c 0.936,0.504 1.872,1.08 2.736,1.656 l 4.824,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path14275"
-                   d="m 41.725,64.289 c -1.08,-0.648 -2.088,-1.152 -3.096,-1.656 l -4.392,1.008 c 1.008,0.576 2.016,1.152 2.952,1.656 l 4.536,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <path
-                   id="path14277"
-                   d="m 40.213,63.425 c -1.08,-0.576 -2.16,-1.08 -3.096,-1.584 l -4.392,1.008 c 1.008,0.504 2.088,1.08 3.024,1.656 l 4.464,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe300" />
-                <path
-                   id="path14279"
-                   d="m 38.629,62.633 c -1.152,-0.576 -2.16,-1.152 -3.168,-1.584 l -4.464,1.008 c 1.08,0.504 2.16,1.008 3.24,1.584 l 4.392,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe600" />
-                <path
-                   id="path14281"
-                   d="m 37.117,61.841 c -1.152,-0.576 -2.304,-1.152 -3.312,-1.584 l -4.68,1.08 c 1.224,0.432 2.448,0.936 3.6,1.512 l 4.392,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe800" />
-                <path
-                   id="path14283"
-                   d="m 35.461,61.049 c -1.224,-0.648 -2.376,-1.152 -3.384,-1.512 l -5.184,1.224 c 1.368,0.288 2.736,0.792 4.104,1.296 l 4.464,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffeb00" />
-                <path
-                   id="path14285"
-                   d="m 33.805,60.257 c -1.44,-0.648 -2.808,-1.152 -4.032,-1.44 l -6.264,1.512 c 1.8,0 3.672,0.432 5.616,1.008 l 4.68,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffed00" />
-                <path
-                   id="path14287"
-                   d="m 32.077,59.537 c -3.744,-1.368 -6.552,-1.368 -9.576,0.792 1.368,-0.072 2.88,0.072 4.392,0.432 l 5.184,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fff000" />
-                <path
-                   id="path14289"
-                   d="m 29.773,58.817 c -2.664,-0.576 -4.896,-0.216 -7.272,1.512 0.288,0 0.648,0 1.008,0 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fff200" />
-                <path
-                   id="path14291"
-                   d="m 22.501,60.329 1.224,-0.792 1.296,-0.576 1.224,-0.288 1.296,-0.144 1.296,0.072 1.368,0.288 1.512,0.504 1.584,0.576 1.728,0.792 1.8,0.864 2.016,1.08 2.16,1.152 2.376,1.224 2.592,1.296 2.808,1.44 3.096,1.44 -1.152,0.072 -1.296,0.144 -1.296,0.144 -1.296,0.216 -1.152,0.144 -0.864,0.144 -0.648,0.072 -0.288,-0.072 -0.144,-0.144 -0.504,-0.36 -0.648,-0.576 -0.864,-0.648 -1.08,-0.792 -1.296,-0.864 -1.368,-0.936 -1.512,-0.936 -1.656,-0.936 -1.656,-0.936 -1.8,-0.792 -1.8,-0.72 -1.8,-0.576 -1.8,-0.36 -1.728,-0.216 -1.728,0 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14293">
-                <path
-                   id="path14295"
-                   d="m 34.309,70.121 c 0.576,0.288 1.08,0.648 1.584,0.936 -2.016,0.288 -5.832,0.792 -9,1.152 -0.072,-0.072 -0.144,-0.216 -0.216,-0.36 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffcf00" />
-                <path
-                   id="path14297"
-                   d="m 35.533,70.913 c -0.792,-0.504 -1.584,-1.08 -2.448,-1.656 l -6.912,1.584 c 0.288,0.432 0.504,0.936 0.72,1.368 2.016,-0.216 4.248,-0.504 6.192,-0.72 l 2.448,-0.576 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd100" />
-                <path
-                   id="path14299"
-                   d="m 34.309,70.121 c -0.792,-0.576 -1.584,-1.08 -2.376,-1.656 l -6.408,1.512 c 0.432,0.576 0.864,1.224 1.152,1.872 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd400" />
-                <path
-                   id="path14301"
-                   d="m 33.085,69.257 c -0.792,-0.504 -1.584,-1.08 -2.376,-1.656 l -6.048,1.44 c 0.576,0.504 1.08,1.152 1.512,1.8 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path14303"
-                   d="m 31.933,68.465 c -0.792,-0.576 -1.584,-1.08 -2.448,-1.656 l -5.832,1.368 c 0.72,0.504 1.296,1.08 1.872,1.8 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path14305"
-                   d="m 30.709,67.601 c -0.864,-0.576 -1.656,-1.08 -2.52,-1.584 l -5.904,1.368 c 0.864,0.432 1.656,1.008 2.376,1.656 l 6.048,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path14307"
-                   d="m 29.485,66.809 c -0.792,-0.576 -1.656,-1.08 -2.52,-1.584 l -6.264,1.44 c 1.08,0.36 2.088,0.864 2.952,1.512 l 5.832,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path14309"
-                   d="m 28.189,66.017 c -0.864,-0.576 -1.728,-1.152 -2.664,-1.584 l -7.2,1.656 c 1.44,0.216 2.808,0.648 3.96,1.296 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <path
-                   id="path14311"
-                   d="m 26.965,65.225 c -1.008,-0.576 -1.944,-1.152 -2.952,-1.584 l -9.288,2.232 c 2.16,-0.072 4.176,0.216 5.976,0.792 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe300" />
-                <path
-                   id="path14313"
-                   d="m 12.781,65.153 c -0.288,0.288 -0.576,0.648 -0.792,0.936 2.232,-0.36 4.392,-0.36 6.336,0 l 7.2,-1.656 c -1.08,-0.648 -2.16,-1.08 -3.24,-1.44 l -9.504,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe600" />
-                <path
-                   id="path14315"
-                   d="m 14.437,63.713 c -0.864,0.576 -1.656,1.368 -2.448,2.376 0.936,-0.144 1.872,-0.216 2.736,-0.216 l 9.288,-2.232 c -1.368,-0.648 -2.736,-1.08 -4.104,-1.224 l -5.472,1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe800" />
-                <path
-                   id="path14317"
-                   d="m 11.989,66.089 1.296,-1.44 1.368,-1.08 1.368,-0.72 1.44,-0.432 1.44,-0.072 1.512,0.144 1.584,0.36 1.512,0.504 1.584,0.792 1.512,0.792 1.584,1.008 1.584,1.008 1.584,1.008 1.512,1.08 1.512,1.08 1.512,0.936 -0.864,0.144 -0.936,0.072 -1.08,0.216 -1.152,0.144 -1.224,0.144 -1.296,0.144 -1.224,0.144 -1.224,0.144 -0.432,-0.936 -0.504,-0.792 -0.576,-0.792 -0.72,-0.72 -0.72,-0.648 -0.792,-0.504 -0.936,-0.504 -0.936,-0.432 -1.008,-0.36 -1.08,-0.288 -1.08,-0.216 -1.152,-0.144 -1.224,-0.072 -1.224,0 -1.224,0.144 -1.296,0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14319">
-                <path
-                   id="path14321"
-                   d="m 18.685,73.073 c 0,0.072 0.072,0.144 0.144,0.144 -1.008,0.216 -2.52,0.504 -3.6,0.648 l 3.456,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffcf00" />
-                <path
-                   id="path14323"
-                   d="m 18.253,72.569 c 0.216,0.216 0.36,0.432 0.576,0.648 -1.584,0.36 -4.824,0.864 -4.896,0.72 0,0 -0.216,-0.072 -0.504,-0.216 l 4.824,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd100" />
-                <path
-                   id="path14325"
-                   d="m 18.685,73.073 c -0.216,-0.36 -0.504,-0.648 -0.792,-0.936 l -5.184,1.152 c 0.72,0.432 1.224,0.648 1.224,0.648 0,0.072 0.504,0.072 1.296,-0.072 l 3.456,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd400" />
-                <path
-                   id="path14327"
-                   d="m 18.253,72.569 c -0.216,-0.36 -0.576,-0.648 -0.936,-0.936 l -5.4,1.296 c 0.648,0.288 1.152,0.576 1.512,0.792 l 4.824,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path14329"
-                   d="m 17.893,72.137 c -0.36,-0.36 -0.72,-0.648 -1.152,-0.936 l -5.76,1.296 c 0.72,0.288 1.296,0.576 1.728,0.792 l 5.184,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path14331"
-                   d="m 17.317,71.633 c -0.36,-0.36 -0.792,-0.648 -1.296,-0.936 l -5.976,1.44 c 0.72,0.216 1.296,0.504 1.872,0.792 l 5.4,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path14333"
-                   d="m 16.741,71.201 c -0.432,-0.36 -0.936,-0.576 -1.368,-0.864 l -6.192,1.44 c 0.648,0.216 1.296,0.504 1.8,0.72 l 5.76,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path14335"
-                   d="m 16.021,70.697 c -0.504,-0.288 -1.008,-0.504 -1.584,-0.72 l -6.336,1.44 c 0.648,0.216 1.368,0.432 1.944,0.72 l 5.976,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <path
-                   id="path14337"
-                   d="m 15.373,70.337 c -0.648,-0.288 -1.224,-0.576 -1.872,-0.72 l -6.624,1.512 c 0.792,0.144 1.584,0.432 2.304,0.648 l 6.192,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe300" />
-                <path
-                   id="path14339"
-                   d="m 14.437,69.977 c -0.648,-0.288 -1.368,-0.576 -2.16,-0.72 l -6.912,1.584 c 0.936,0.144 1.872,0.36 2.736,0.576 l 6.336,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe600" />
-                <path
-                   id="path14341"
-                   d="m 3.133,70.841 c 1.152,-0.144 2.448,0 3.744,0.288 l 6.624,-1.512 c -0.792,-0.288 -1.584,-0.504 -2.448,-0.648 l -7.92,1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe800" />
-                <path
-                   id="path14343"
-                   d="m 3.637,70.121 c -0.216,0.216 -0.432,0.504 -0.504,0.72 0.72,-0.072 1.44,-0.072 2.232,0 l 6.912,-1.584 C 11.341,68.969 10.333,68.825 9.325,68.825 l -5.688,1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffeb00" />
-                <path
-                   id="path14345"
-                   d="m 3.133,70.841 0.36,-0.576 0.576,-0.504 0.792,-0.432 0.864,-0.288 1.008,-0.216 1.152,-0.072 1.152,0 1.296,0.072 1.224,0.216 1.296,0.288 1.224,0.432 1.152,0.504 1.08,0.576 1.008,0.72 0.792,0.792 0.72,0.864 -0.648,0.144 -0.792,0.144 -0.792,0.144 -0.792,0.144 -0.72,0.072 -0.576,0.072 -0.432,0 -0.144,0 -0.288,-0.144 -0.72,-0.432 -1.224,-0.576 -1.44,-0.648 -1.656,-0.576 -1.872,-0.504 -1.8,-0.288 -1.8,0.072 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14347">
-                <path
-                   id="path14349"
-                   d="m 14.005,74.009 0.072,0 -1.152,0.216 1.08,-0.216 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffcf00" />
-                <path
-                   id="path14351"
-                   d="m 13.141,73.505 c 0.576,0.288 0.936,0.504 0.936,0.504 l -5.76,1.008 c -0.216,0 -0.432,-0.144 -0.72,-0.216 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd100" />
-                <path
-                   id="path14353"
-                   d="m 14.005,74.009 c -0.216,-0.144 -0.792,-0.504 -1.728,-0.936 l -5.76,1.368 c 0.792,0.216 1.44,0.504 1.8,0.576 l 4.608,-0.792 1.08,-0.216 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd400" />
-                <path
-                   id="path14355"
-                   d="m 13.141,73.505 c -0.504,-0.216 -1.152,-0.576 -1.872,-0.864 l -6.12,1.44 c 0.936,0.216 1.8,0.504 2.448,0.72 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path14357"
-                   d="m 12.277,73.073 c -0.576,-0.216 -1.224,-0.504 -1.944,-0.792 l -6.552,1.512 c 0.936,0.144 1.872,0.36 2.736,0.648 l 5.76,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path14359"
-                   d="m 1.333,73.649 c 0,0.072 0,0.144 0.072,0.144 0.936,-0.288 2.376,-0.072 3.744,0.288 l 6.12,-1.44 C 10.621,72.353 9.901,72.065 9.181,71.849 l -7.848,1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path14361"
-                   d="m 1.333,73.073 c 0,0.216 0,0.504 0.072,0.72 0.576,-0.144 1.44,-0.144 2.376,0 l 6.552,-1.512 C 9.613,71.993 8.893,71.705 8.101,71.489 l -6.768,1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path14363"
-                   d="m 1.405,72.353 c -0.144,0.36 -0.144,0.792 -0.072,1.296 l 7.848,-1.8 C 8.389,71.561 7.597,71.345 6.733,71.129 l -5.328,1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <path
-                   id="path14365"
-                   d="m 1.693,71.633 c -0.216,0.36 -0.432,0.792 -0.36,1.44 L 8.101,71.489 C 7.093,71.201 6.085,70.913 5.149,70.841 l -3.456,0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe300" />
-                <path
-                   id="path14367"
-                   d="m 1.405,73.793 -0.072,-1.152 0.288,-0.864 0.504,-0.576 0.792,-0.36 0.936,-0.144 1.08,0.072 1.152,0.144 1.296,0.288 1.224,0.432 1.224,0.432 1.152,0.432 1.008,0.432 0.864,0.432 0.72,0.288 0.36,0.288 0.144,0.072 -5.76,1.008 L 7.813,74.801 7.021,74.585 6.157,74.297 5.149,74.009 4.141,73.793 3.133,73.649 l -0.936,0 -0.792,0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14369">
-                <path
-                   id="path14371"
-                   d="m 26.677,71.777 c 0.144,0.144 0.216,0.36 0.288,0.504 -1.656,0.216 -3.168,0.36 -4.968,0.576 l 4.68,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffcf00" />
-                <path
-                   id="path14373"
-                   d="m 26.317,71.057 c 0.216,0.36 0.432,0.792 0.648,1.224 -2.448,0.288 -4.752,0.504 -8.208,1.008 -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd100" />
-                <path
-                   id="path14375"
-                   d="m 26.677,71.777 c -0.216,-0.504 -0.504,-0.936 -0.792,-1.368 l -7.992,1.8 c 0.288,0.36 0.576,0.72 0.864,1.08 1.152,-0.144 2.232,-0.288 3.24,-0.432 l 4.68,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd400" />
-                <path
-                   id="path14377"
-                   d="m 26.317,71.057 c -0.288,-0.504 -0.648,-0.936 -1.008,-1.368 l -8.136,1.872 c 0.504,0.432 0.936,0.864 1.224,1.296 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path14379"
-                   d="m 25.885,70.409 c -0.36,-0.504 -0.792,-0.936 -1.224,-1.368 l -8.28,1.944 c 0.576,0.36 1.08,0.792 1.512,1.224 l 7.992,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd900" />
-                <path
-                   id="path14381"
-                   d="m 25.309,69.689 c -0.432,-0.432 -0.864,-0.864 -1.368,-1.296 l -8.568,2.016 c 0.648,0.36 1.296,0.72 1.8,1.152 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffdb00" />
-                <path
-                   id="path14383"
-                   d="m 24.661,69.041 c -0.432,-0.432 -1.008,-0.864 -1.584,-1.224 l -8.784,2.088 c 0.72,0.288 1.44,0.648 2.088,1.08 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path14385"
-                   d="m 23.941,68.393 c -0.648,-0.432 -1.224,-0.792 -1.944,-1.152 l -9.144,2.16 c 0.864,0.216 1.728,0.576 2.52,1.008 l 8.568,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe000" />
-                <path
-                   id="path14387"
-                   d="m 23.077,67.817 c -0.72,-0.432 -1.44,-0.792 -2.232,-1.08 l -9.792,2.232 c 1.152,0.216 2.232,0.504 3.24,0.936 l 8.784,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe300" />
-                <path
-                   id="path14389"
-                   d="m 21.997,67.241 c -0.792,-0.36 -1.728,-0.72 -2.664,-0.936 L 8.677,68.753 c 1.368,0.072 2.808,0.288 4.176,0.648 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe600" />
-                <path
-                   id="path14391"
-                   d="m 6.877,68.393 c -0.288,0.144 -0.504,0.36 -0.72,0.576 1.584,-0.288 3.24,-0.216 4.896,0 l 9.792,-2.232 c -1.08,-0.36 -2.16,-0.648 -3.312,-0.792 L 6.877,68.393 Z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe800" />
-                <path
-                   id="path14393"
-                   d="m 8.893,67.169 c -1.008,0.432 -1.944,1.08 -2.736,1.8 0.792,-0.144 1.656,-0.216 2.52,-0.216 l 10.656,-2.448 c -1.44,-0.432 -3.096,-0.576 -4.608,-0.504 l -5.832,1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffeb00" />
-                <path
-                   id="path14395"
-                   d="m 6.157,68.969 1.152,-0.936 1.224,-0.72 1.368,-0.648 1.512,-0.432 1.512,-0.288 1.512,-0.216 1.584,0 1.584,0.144 1.512,0.288 1.512,0.504 1.368,0.576 1.296,0.72 1.224,0.864 1.008,1.008 0.792,1.152 0.648,1.296 -0.936,0.072 -0.864,0.144 -0.936,0.072 -1.008,0.144 -1.008,0.144 -1.08,0.072 -1.152,0.216 -1.224,0.144 -0.432,-0.648 -0.504,-0.576 -0.576,-0.504 -0.648,-0.504 -0.72,-0.432 -0.792,-0.432 -0.792,-0.36 -0.864,-0.288 -0.864,-0.288 -0.936,-0.216 -0.864,-0.144 -0.936,-0.072 -0.936,-0.072 -0.936,0 -0.936,0.072 -0.864,0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14397">
-                <path
-                   id="path14399"
-                   d="m 263.053,35.345 c -0.36,-0.576 -0.575,-0.936 -0.575,-1.008 -1.081,0.432 -1.585,0.576 -2.593,0.936 0.072,0.288 0.145,0.576 0.216,0.864 l 2.952,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path14401"
-                   d="m 263.701,36.497 c -0.721,-1.296 -1.224,-2.088 -1.224,-2.16 -1.081,0.432 -1.585,0.576 -2.593,0.936 0.216,0.648 0.433,1.296 0.576,2.016 l 3.241,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path14403"
-                   d="m 264.35,37.649 c -0.505,-0.936 -0.937,-1.728 -1.297,-2.304 l -2.952,0.792 c 0.288,0.72 0.504,1.512 0.721,2.376 l 3.528,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path14405"
-                   d="m 264.853,38.729 c -0.359,-0.792 -0.791,-1.584 -1.151,-2.232 l -3.24,0.792 c 0.216,0.792 0.432,1.584 0.576,2.376 l 3.815,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path14407"
-                   d="m 265.429,39.881 c -0.359,-0.792 -0.72,-1.512 -1.079,-2.232 l -3.528,0.864 c 0.144,0.792 0.287,1.584 0.432,2.376 l 4.175,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path14409"
-                   d="m 265.934,41.105 c -0.36,-0.864 -0.721,-1.656 -1.081,-2.376 l -3.815,0.936 c 0.144,0.792 0.359,1.656 0.432,2.52 l 4.464,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path14411"
-                   d="m 266.364,42.257 c -0.287,-0.792 -0.575,-1.584 -0.936,-2.376 l -4.176,1.008 c 0.144,0.864 0.288,1.728 0.432,2.52 l 4.68,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path14413"
-                   d="m 266.726,43.409 c -0.217,-0.792 -0.505,-1.584 -0.792,-2.304 l -4.465,1.08 c 0.145,0.792 0.216,1.656 0.288,2.448 l 4.969,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path14415"
-                   d="m 267.013,44.633 c -0.144,-0.792 -0.359,-1.584 -0.648,-2.376 l -4.68,1.152 c 0.072,0.864 0.145,1.656 0.216,2.52 l 5.112,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path14417"
-                   d="m 267.229,45.857 c -0.072,-0.792 -0.288,-1.656 -0.504,-2.448 l -4.969,1.224 c 0.072,0.864 0.144,1.728 0.144,2.52 l 5.329,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path14419"
-                   d="m 267.373,47.153 c -0.072,-0.864 -0.144,-1.656 -0.36,-2.52 l -5.112,1.296 c 0,0.864 0.073,1.728 0,2.52 l 5.472,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path14421"
-                   d="m 267.301,48.377 c 0.072,-0.792 0.072,-1.656 -0.071,-2.52 l -5.329,1.296 c 0.073,0.864 0,1.728 0,2.592 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <path
-                   id="path14423"
-                   d="m 267.085,49.745 c 0.216,-0.792 0.288,-1.728 0.288,-2.592 l -5.473,1.296 c 0,0.936 0,1.8 -0.144,2.592 l 5.329,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0010" />
-                <path
-                   id="path14425"
-                   d="m 266.581,51.185 c 0.432,-0.864 0.648,-1.8 0.72,-2.808 l -5.4,1.368 c -0.071,0.864 -0.144,1.8 -0.287,2.664 l 4.967,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path14427"
-                   d="m 265.356,52.769 c 0.864,-0.864 1.44,-1.872 1.729,-3.024 l -5.328,1.296 c -0.072,0.936 -0.216,1.872 -0.432,2.736 l 4.031,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path14429"
-                   d="m 266.581,51.185 c -0.936,1.728 -2.664,3.024 -5.616,3.672 0.288,-0.72 0.504,-1.584 0.648,-2.448 l 4.968,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5e00" />
-                <path
-                   id="path14431"
-                   d="m 265.285,52.769 c -0.936,0.936 -2.376,1.656 -4.32,2.088 0.072,-0.36 0.216,-0.72 0.36,-1.08 l 3.96,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8500" />
-                <path
-                   id="path14433"
-                   d="m 262.478,34.337 0.144,0.216 0.359,0.576 0.504,0.936 0.648,1.152 0.72,1.368 0.721,1.512 0.647,1.728 0.576,1.728 0.433,1.8 0.144,1.728 -0.072,1.728 -0.359,1.584 -0.792,1.44 -1.225,1.296 -1.729,1.008 -2.231,0.72 0.36,-1.08 0.216,-1.152 0.216,-1.152 0.144,-1.296 0.073,-1.296 0,-1.368 -0.073,-1.296 -0.071,-1.368 -0.145,-1.368 -0.144,-1.368 -0.216,-1.296 -0.288,-1.224 -0.216,-1.224 -0.288,-1.08 -0.36,-1.08 -0.288,-0.936 0.36,-0.144 0.288,-0.072 0.359,-0.144 0.288,-0.072 0.288,-0.144 0.288,-0.072 0.36,-0.144 0.361,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14435">
-                <path
-                   id="path14437"
-                   d="m 260.533,37.289 c -0.145,-0.648 -0.36,-1.296 -0.504,-1.944 -1.296,0.288 -3.384,1.008 -5.761,1.8 0.145,0.504 0.289,1.008 0.433,1.512 l 5.832,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path14439"
-                   d="m 260.893,38.729 c -0.216,-0.936 -0.504,-1.872 -0.72,-2.808 l -5.904,1.44 c 0.36,0.864 0.576,1.8 0.793,2.808 l 5.831,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path14441"
-                   d="m 261.181,40.097 c -0.216,-0.936 -0.432,-1.872 -0.647,-2.808 l -5.832,1.368 c 0.287,1.008 0.432,1.944 0.648,2.88 l 5.831,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path14443"
-                   d="m 261.469,41.537 c -0.144,-0.936 -0.36,-1.872 -0.576,-2.808 l -5.831,1.44 c 0.215,0.936 0.359,1.872 0.432,2.808 l 5.975,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path14445"
-                   d="m 261.685,42.905 c -0.144,-0.864 -0.288,-1.8 -0.504,-2.808 l -5.831,1.44 c 0.144,1.008 0.216,1.944 0.287,2.88 l 6.048,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path14447"
-                   d="m 261.9,44.417 c -0.071,-0.936 -0.216,-1.872 -0.432,-2.88 l -5.976,1.44 c 0.144,1.008 0.216,1.944 0.216,2.952 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path14449"
-                   d="m 262.045,45.857 c -0.071,-0.936 -0.145,-1.872 -0.36,-2.952 l -6.048,1.512 c 0.072,1.008 0.144,2.016 0.072,3.024 l 6.336,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path14451"
-                   d="m 262.117,47.369 c 0,-0.936 -0.072,-1.944 -0.217,-2.952 l -6.191,1.512 c 0.071,1.008 0,2.016 0,3.024 l 6.408,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path14453"
-                   d="m 262.117,48.809 c 0.071,-0.864 0,-1.872 -0.072,-2.952 l -6.336,1.584 c 0,1.008 -0.072,2.016 -0.144,3.024 l 6.552,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path14455"
-                   d="m 262.045,50.321 c 0.072,-0.936 0.144,-1.872 0.072,-2.952 l -6.408,1.584 c -0.072,1.008 -0.144,2.088 -0.288,3.024 l 6.624,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path14457"
-                   d="m 261.9,51.905 c 0.145,-0.936 0.217,-1.944 0.217,-3.096 l -6.552,1.656 c -0.072,1.08 -0.216,2.088 -0.433,3.096 l 6.768,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <path
-                   id="path14459"
-                   d="m 261.541,53.489 c 0.216,-0.936 0.433,-2.016 0.504,-3.168 l -6.624,1.656 c -0.145,1.08 -0.359,2.16 -0.576,3.168 l 6.696,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0010" />
-                <path
-                   id="path14461"
-                   d="m 260.965,55.145 c 0.36,-0.936 0.72,-2.016 0.936,-3.24 l -6.768,1.656 c -0.145,1.08 -0.432,2.16 -0.72,3.168 l 6.552,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path14463"
-                   d="m 260.029,56.801 c 0.575,-0.864 1.151,-2.016 1.512,-3.312 l -6.696,1.656 c -0.216,1.08 -0.576,2.16 -0.864,3.168 l 6.048,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path14465"
-                   d="m 258.013,58.817 c 1.08,-0.72 2.16,-1.944 2.952,-3.672 l -6.552,1.584 c -0.288,1.224 -0.648,2.304 -1.08,3.312 l 4.68,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5e00" />
-                <path
-                   id="path14467"
-                   d="m 260.029,56.801 c -2.088,3.024 -5.185,3.528 -6.696,3.312 0.216,-0.576 0.432,-1.152 0.647,-1.8 l 6.049,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8500" />
-                <path
-                   id="path14469"
-                   d="m 258.013,58.817 c -1.728,1.224 -3.6,1.44 -4.68,1.296 l 0,-0.072 4.68,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path14471"
-                   d="m 260.029,35.345 1.008,3.96 0.72,3.6 0.36,3.096 0.071,2.736 -0.144,2.376 -0.432,2.016 -0.576,1.728 -0.648,1.44 -0.863,1.152 -0.937,0.936 -0.936,0.648 -0.937,0.504 -1.008,0.36 -0.864,0.144 -0.792,0.072 -0.72,0 0.432,-1.152 0.432,-1.152 0.361,-1.296 0.287,-1.296 0.288,-1.44 0.217,-1.44 0.216,-1.44 0.144,-1.512 0.071,-1.512 0,-1.584 -0.071,-1.512 -0.144,-1.584 -0.216,-1.512 -0.288,-1.584 -0.36,-1.44 -0.433,-1.512 0.864,-0.288 0.864,-0.288 0.792,-0.288 0.792,-0.216 0.648,-0.216 0.719,-0.216 0.577,-0.144 0.506,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14473">
-                <path
-                   id="path14475"
-                   d="m 254.341,37.649 c -0.072,-0.216 -0.145,-0.36 -0.145,-0.504 -0.863,0.288 -3.239,1.08 -5.039,1.728 l 5.184,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path14477"
-                   d="m 254.484,38.081 c -0.071,-0.144 -0.144,-0.288 -0.144,-0.432 l -5.184,1.224 c -0.36,0.144 -0.72,0.288 -1.008,0.36 0,0.144 0.071,0.288 0.071,0.432 l 6.265,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path14479"
-                   d="m 254.558,38.369 c -0.073,-0.144 -0.145,-0.36 -0.145,-0.576 l -6.264,1.584 c 0.071,0.144 0.071,0.36 0.144,0.576 l 6.265,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path14481"
-                   d="m 254.629,38.585 c -0.071,-0.144 -0.071,-0.288 -0.145,-0.504 l -6.264,1.584 c 0.072,0.144 0.072,0.288 0.144,0.504 l 6.265,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path14483"
-                   d="m 254.701,38.873 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.504 l -6.265,1.584 c 0.071,0.144 0.071,0.288 0.145,0.504 l 6.264,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path14485"
-                   d="m 254.772,39.161 c -0.071,-0.144 -0.144,-0.36 -0.144,-0.576 l -6.265,1.584 c 0.073,0.144 0.073,0.36 0.145,0.576 l 6.264,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path14487"
-                   d="m 254.772,39.377 c 0,-0.144 -0.071,-0.288 -0.071,-0.504 l -6.264,1.584 c 0.071,0.144 0.071,0.288 0.144,0.504 l 6.191,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path14489"
-                   d="m 254.845,39.665 c 0,-0.144 -0.072,-0.288 -0.072,-0.504 l -6.264,1.584 c 0.072,0.144 0.072,0.288 0.145,0.504 l 6.191,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path14491"
-                   d="m 254.917,40.025 c 0,-0.216 -0.072,-0.432 -0.145,-0.648 l -6.191,1.584 c 0,0.144 0.072,0.36 0.145,0.576 l 6.191,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path14493"
-                   d="m 254.988,40.241 c -0.071,-0.216 -0.071,-0.36 -0.144,-0.576 l -6.191,1.584 c 0,0.144 0.072,0.288 0.072,0.504 l 6.263,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path14495"
-                   d="m 254.988,40.529 c 0,-0.216 0,-0.36 -0.071,-0.504 l -6.191,1.512 c 0,0.144 0.071,0.288 0.071,0.504 l 6.191,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path14497"
-                   d="m 255.062,40.817 c 0,-0.216 -0.073,-0.432 -0.073,-0.576 l -6.263,1.512 c 0.071,0.144 0.071,0.36 0.144,0.576 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path14499"
-                   d="m 255.133,41.033 c -0.071,-0.216 -0.071,-0.36 -0.145,-0.504 l -6.191,1.512 c 0.072,0.144 0.072,0.288 0.145,0.504 l 6.191,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path14501"
-                   d="m 255.133,41.321 c 0,-0.216 -0.071,-0.36 -0.071,-0.504 l -6.192,1.512 c 0,0.144 0.072,0.288 0.072,0.504 l 6.191,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path14503"
-                   d="m 255.205,41.609 c -0.072,-0.216 -0.072,-0.432 -0.072,-0.576 l -6.191,1.512 c 0,0.144 0.071,0.36 0.071,0.576 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path14505"
-                   d="m 255.205,41.825 c 0,-0.144 0,-0.36 -0.072,-0.504 l -6.191,1.512 c 0.071,0.144 0.071,0.36 0.071,0.504 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path14507"
-                   d="m 255.276,42.113 c -0.071,-0.144 -0.071,-0.36 -0.071,-0.504 l -6.192,1.512 c 0,0.144 0.072,0.36 0.072,0.504 l 6.191,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path14509"
-                   d="m 255.276,42.401 c 0,-0.216 0,-0.36 -0.071,-0.576 l -6.192,1.512 c 0.072,0.216 0.072,0.432 0.145,0.576 l 6.118,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path14511"
-                   d="m 255.35,42.617 c -0.073,-0.144 -0.073,-0.288 -0.073,-0.504 l -6.191,1.512 c 0,0.216 0.072,0.36 0.072,0.504 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path14513"
-                   d="m 255.35,42.977 c 0,-0.216 -0.073,-0.36 -0.073,-0.576 l -6.119,1.512 c 0,0.216 0,0.36 0.072,0.576 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path14515"
-                   d="m 255.35,43.265 c 0,-0.216 0,-0.432 0,-0.648 l -6.192,1.512 c 0,0.216 0.072,0.432 0.072,0.648 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path14517"
-                   d="m 255.421,43.481 c -0.071,-0.216 -0.071,-0.36 -0.071,-0.504 l -6.12,1.512 c 0,0.144 0,0.288 0,0.504 l 6.191,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path14519"
-                   d="m 255.421,43.769 c 0,-0.216 0,-0.36 -0.071,-0.504 l -6.12,1.512 c 0,0.144 0.071,0.288 0.071,0.504 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path14521"
-                   d="m 255.421,44.057 c 0,-0.216 0,-0.36 0,-0.576 l -6.191,1.512 c 0.071,0.144 0.071,0.36 0.071,0.576 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path14523"
-                   d="m 255.493,44.273 c -0.072,-0.144 -0.072,-0.36 -0.072,-0.504 l -6.12,1.512 c 0,0.144 0,0.36 0,0.504 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path14525"
-                   d="m 255.493,44.561 c 0,-0.144 0,-0.36 -0.072,-0.504 l -6.12,1.512 c 0,0.144 0.072,0.36 0.072,0.504 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path14527"
-                   d="m 255.493,44.849 c 0,-0.144 0,-0.36 0,-0.576 l -6.192,1.512 c 0.072,0.216 0.072,0.432 0.072,0.576 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path14529"
-                   d="m 255.493,45.137 c 0,-0.216 0,-0.36 0,-0.576 l -6.12,1.512 c 0,0.216 0,0.36 0,0.576 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path14531"
-                   d="m 255.493,45.425 c 0,-0.216 0,-0.36 0,-0.576 l -6.12,1.512 c 0,0.216 0,0.36 0,0.576 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path14533"
-                   d="m 255.565,45.713 c 0,-0.216 -0.072,-0.432 -0.072,-0.576 l -6.12,1.512 c 0,0.144 0,0.36 0,0.576 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path14535"
-                   d="m 255.565,45.929 c 0,-0.144 0,-0.36 -0.072,-0.504 l -6.12,1.512 c 0,0.144 0,0.36 0,0.504 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path14537"
-                   d="m 255.565,46.289 c 0,-0.216 0,-0.36 0,-0.576 l -6.192,1.512 c 0,0.216 0,0.36 0.071,0.504 l 6.121,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path14539"
-                   d="m 255.565,46.577 c 0,-0.216 0,-0.432 0,-0.648 l -6.192,1.512 c 0.071,0.216 0.071,0.432 0.071,0.648 l 6.121,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path14541"
-                   d="m 255.565,46.793 c 0,-0.216 0,-0.36 0,-0.504 l -6.121,1.44 c 0,0.216 0,0.36 0,0.576 l 6.121,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path14543"
-                   d="m 255.565,47.081 c 0,-0.144 0,-0.36 0,-0.504 l -6.121,1.512 c 0,0.144 -0.071,0.36 -0.071,0.504 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path14545"
-                   d="m 255.565,47.369 c 0,-0.216 0,-0.36 0,-0.576 l -6.121,1.512 c -0.071,0.216 -0.071,0.36 -0.071,0.576 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path14547"
-                   d="m 255.565,47.585 c 0,-0.144 0,-0.36 0,-0.504 l -6.192,1.512 c 0,0.216 0,0.36 0,0.576 l 6.192,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path14549"
-                   d="m 255.565,47.945 c 0,-0.216 0,-0.36 0,-0.576 l -6.192,1.512 c 0,0.216 0,0.36 0,0.576 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path14551"
-                   d="m 255.565,48.233 c 0,-0.216 0,-0.432 0,-0.648 l -6.192,1.584 c 0,0.144 0,0.36 0,0.576 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path14553"
-                   d="m 255.565,48.449 c 0,-0.144 0,-0.36 0,-0.504 l -6.192,1.512 c 0,0.144 0,0.36 0,0.504 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path14555"
-                   d="m 255.565,48.809 c 0,-0.216 0,-0.432 0,-0.576 l -6.192,1.512 c 0,0.216 -0.072,0.36 -0.072,0.576 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path14557"
-                   d="m 255.565,49.097 c 0,-0.216 0,-0.432 0,-0.648 l -6.192,1.512 c -0.072,0.216 -0.072,0.432 -0.072,0.648 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path14559"
-                   d="m 255.565,49.313 c 0,-0.144 0,-0.36 0,-0.504 l -6.265,1.512 c 0,0.144 0,0.36 0,0.504 l 6.265,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path14561"
-                   d="m 255.493,49.601 c 0,-0.144 0.072,-0.36 0.072,-0.504 l -6.265,1.512 c 0,0.216 -0.071,0.36 -0.071,0.576 l 6.264,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path14563"
-                   d="m 255.493,49.889 c 0,-0.144 0,-0.36 0.072,-0.576 l -6.265,1.512 c -0.071,0.216 -0.071,0.432 -0.071,0.648 l 6.264,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path14565"
-                   d="m 255.493,50.177 c 0,-0.216 0,-0.36 0,-0.576 l -6.264,1.584 c 0,0.144 0,0.36 -0.072,0.504 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path14567"
-                   d="m 255.493,50.465 c 0,-0.216 0,-0.36 0,-0.576 l -6.264,1.584 c -0.072,0.216 -0.072,0.36 -0.072,0.576 l 6.336,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path14569"
-                   d="m 255.421,50.753 c 0.072,-0.216 0.072,-0.36 0.072,-0.576 l -6.336,1.512 c 0,0.216 -0.072,0.432 -0.072,0.648 l 6.336,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path14571"
-                   d="m 255.421,51.041 c 0,-0.216 0,-0.36 0.072,-0.576 l -6.336,1.584 c -0.072,0.144 -0.072,0.36 -0.145,0.504 l 6.409,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path14573"
-                   d="m 255.421,51.329 c 0,-0.216 0,-0.36 0,-0.576 l -6.336,1.584 c 0,0.216 -0.072,0.36 -0.072,0.576 l 6.408,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path14575"
-                   d="m 255.35,51.617 c 0.071,-0.216 0.071,-0.36 0.071,-0.576 l -6.408,1.512 c 0,0.216 -0.071,0.432 -0.071,0.648 l 6.408,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path14577"
-                   d="m 255.35,51.905 c 0,-0.216 0,-0.36 0.071,-0.576 l -6.408,1.584 c -0.071,0.144 -0.071,0.36 -0.144,0.576 l 6.481,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path14579"
-                   d="m 255.276,52.193 c 0.073,-0.216 0.073,-0.36 0.073,-0.576 l -6.408,1.584 c -0.072,0.216 -0.072,0.432 -0.145,0.576 l 6.48,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path14581"
-                   d="m 255.276,52.481 c 0,-0.144 0.073,-0.36 0.073,-0.576 l -6.48,1.584 c 0,0.216 -0.072,0.432 -0.144,0.648 l 6.551,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path14583"
-                   d="m 255.205,52.769 c 0.071,-0.216 0.071,-0.36 0.071,-0.576 l -6.479,1.584 c 0,0.216 -0.071,0.36 -0.071,0.576 l 6.479,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path14585"
-                   d="m 255.205,53.057 c 0,-0.216 0.071,-0.36 0.071,-0.576 l -6.551,1.656 c 0,0.144 -0.072,0.36 -0.072,0.504 l 6.552,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path14587"
-                   d="m 255.133,53.345 c 0.072,-0.216 0.072,-0.36 0.072,-0.576 l -6.479,1.584 c -0.072,0.216 -0.145,0.432 -0.217,0.648 l 6.624,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path14589"
-                   d="m 255.133,53.633 c 0,-0.216 0.072,-0.36 0.072,-0.576 l -6.552,1.584 c -0.072,0.216 -0.145,0.432 -0.145,0.576 l 6.625,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path14591"
-                   d="m 255.062,53.921 c 0,-0.144 0.071,-0.36 0.071,-0.576 l -6.624,1.656 c 0,0.216 -0.071,0.36 -0.145,0.576 l 6.698,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path14593"
-                   d="m 254.988,54.281 c 0.073,-0.216 0.073,-0.432 0.145,-0.648 l -6.624,1.584 c -0.071,0.216 -0.145,0.432 -0.216,0.648 l 6.695,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path14595"
-                   d="m 254.988,54.497 c 0,-0.216 0.073,-0.36 0.073,-0.576 l -6.697,1.656 c 0,0.216 -0.071,0.36 -0.144,0.576 l 6.768,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path14597"
-                   d="m 254.917,54.785 c 0,-0.144 0.071,-0.36 0.071,-0.504 l -6.695,1.584 c -0.072,0.216 -0.144,0.432 -0.144,0.648 l 6.768,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path14599"
-                   d="m 254.845,55.145 c 0,-0.216 0.072,-0.432 0.144,-0.648 l -6.768,1.656 c -0.071,0.216 -0.144,0.432 -0.216,0.648 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path14601"
-                   d="m 254.772,55.361 c 0.072,-0.144 0.072,-0.36 0.145,-0.576 l -6.768,1.728 c -0.072,0.144 -0.145,0.36 -0.216,0.576 l 6.839,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path14603"
-                   d="m 254.701,55.721 c 0.071,-0.216 0.071,-0.36 0.144,-0.576 l -6.84,1.656 c -0.071,0.216 -0.145,0.432 -0.216,0.576 l 6.912,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path14605"
-                   d="m 254.629,56.009 c 0.072,-0.216 0.072,-0.432 0.144,-0.648 l -6.839,1.728 c -0.073,0.216 -0.145,0.432 -0.217,0.648 l 6.912,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path14607"
-                   d="m 254.558,56.297 c 0.071,-0.216 0.071,-0.432 0.144,-0.576 l -6.912,1.656 c -0.072,0.216 -0.144,0.432 -0.216,0.576 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path14609"
-                   d="m 254.484,56.585 c 0.073,-0.144 0.073,-0.36 0.145,-0.576 l -6.912,1.728 c -0.071,0.216 -0.216,0.36 -0.288,0.576 l 7.055,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path14611"
-                   d="m 254.413,56.945 c 0,-0.216 0.071,-0.432 0.145,-0.648 l -6.984,1.656 c -0.072,0.216 -0.145,0.504 -0.217,0.72 l 7.056,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path14613"
-                   d="m 254.341,57.161 c 0,-0.216 0.072,-0.36 0.144,-0.576 l -7.056,1.728 c -0.072,0.216 -0.144,0.432 -0.216,0.576 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path14615"
-                   d="m 254.196,57.521 c 0.072,-0.216 0.145,-0.432 0.217,-0.576 l -7.057,1.729 c -0.144,0.216 -0.215,0.36 -0.287,0.576 l 7.127,-1.729 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path14617"
-                   d="m 254.125,57.809 c 0.071,-0.216 0.144,-0.432 0.216,-0.648 l -7.128,1.728 c -0.071,0.288 -0.216,0.504 -0.288,0.72 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path14619"
-                   d="m 253.98,58.097 c 0.072,-0.216 0.145,-0.36 0.216,-0.576 l -7.127,1.728 c -0.072,0.216 -0.217,0.432 -0.289,0.648 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path14621"
-                   d="m 253.837,58.457 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l -7.2,1.8 c -0.145,0.216 -0.216,0.432 -0.288,0.576 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path14623"
-                   d="m 253.765,58.745 c 0.072,-0.216 0.145,-0.432 0.216,-0.648 l -7.2,1.8 c -0.144,0.216 -0.215,0.432 -0.359,0.648 l 7.343,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path14625"
-                   d="m 253.621,59.033 c 0.071,-0.216 0.144,-0.432 0.216,-0.576 l -7.2,1.728 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path14627"
-                   d="m 253.478,59.393 c 0.071,-0.216 0.144,-0.432 0.287,-0.648 l -7.344,1.8 c -0.071,0.216 -0.216,0.432 -0.288,0.648 l 7.345,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path14629"
-                   d="m 253.333,59.681 c 0.071,-0.216 0.216,-0.432 0.288,-0.648 l -7.345,1.8 c -0.071,0.216 -0.215,0.432 -0.359,0.648 l 7.416,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path14631"
-                   d="m 253.188,59.969 c 0.072,-0.216 0.145,-0.36 0.289,-0.576 l -7.345,1.8 c -0.145,0.216 -0.216,0.36 -0.36,0.576 l 7.416,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path14633"
-                   d="m 252.974,60.329 c 0.071,-0.216 0.215,-0.432 0.359,-0.648 l -7.416,1.8 c -0.145,0.216 -0.216,0.432 -0.359,0.648 l 7.416,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path14635"
-                   d="m 252.757,60.689 c 0.144,-0.216 0.288,-0.504 0.432,-0.72 l -7.416,1.8 c -0.144,0.288 -0.288,0.504 -0.432,0.72 l 7.416,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path14637"
-                   d="m 252.541,60.977 c 0.144,-0.216 0.288,-0.432 0.433,-0.648 l -7.416,1.8 c -0.145,0.216 -0.289,0.432 -0.433,0.648 l 7.416,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path14639"
-                   d="m 252.253,61.337 c 0.216,-0.216 0.36,-0.432 0.504,-0.648 l -7.416,1.8 c -0.145,0.216 -0.288,0.432 -0.36,0.576 0,0.072 0,0.072 0.072,0.072 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path14641"
-                   d="m 251.965,61.697 c 0.216,-0.216 0.432,-0.432 0.576,-0.72 l -7.416,1.8 c -0.072,0.144 -0.072,0.216 -0.145,0.288 0.145,0.072 0.36,0.144 0.577,0.216 l 6.408,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path14643"
-                   d="m 251.677,62.057 c 0.216,-0.216 0.432,-0.504 0.576,-0.72 l -7.2,1.8 c 0.288,0.144 0.576,0.216 0.936,0.288 l 5.688,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path14645"
-                   d="m 251.245,62.417 c 0.216,-0.216 0.504,-0.432 0.72,-0.72 l -6.407,1.584 c 0.359,0.144 0.719,0.216 1.079,0.288 l 4.608,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path14647"
-                   d="m 250.597,62.921 c 0.36,-0.288 0.721,-0.576 1.08,-0.864 l -5.688,1.368 c 0.505,0.144 1.009,0.216 1.44,0.216 l 3.168,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path14649"
-                   d="m 249.518,63.425 c 0.647,-0.216 1.224,-0.576 1.728,-1.008 l -4.608,1.152 c 0.72,0.144 1.368,0.144 2.017,0.072 l 0.863,-0.216 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path14651"
-                   d="m 254.196,37.145 0.433,1.44 0.433,1.8 0.288,2.016 0.144,2.232 0.072,2.448 0,2.448 -0.216,2.448 -0.361,2.376 -0.504,2.232 -0.647,2.088 -0.937,1.8 -1.079,1.44 -1.368,1.08 -1.584,0.576 -1.8,0.072 -2.089,-0.576 0.792,-1.296 0.793,-1.368 0.647,-1.44 0.576,-1.368 0.432,-1.512 0.433,-1.44 0.288,-1.512 0.288,-1.512 0.144,-1.512 0.071,-1.584 0,-1.512 -0.144,-1.584 -0.144,-1.584 -0.288,-1.512 -0.288,-1.584 -0.432,-1.512 0.72,-0.288 0.864,-0.288 0.863,-0.288 0.864,-0.288 0.864,-0.288 0.72,-0.288 0.647,-0.216 0.505,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14653">
-                <path
-                   id="path14655"
-                   d="m 248.077,39.449 c -0.072,-0.072 -0.072,-0.144 -0.072,-0.288 -1.152,0.432 -2.376,0.792 -3.672,1.224 l 3.744,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path14657"
-                   d="m 248.149,39.737 c -0.072,-0.144 -0.145,-0.36 -0.145,-0.576 -2.088,0.72 -4.464,1.44 -6.912,2.232 0,0.072 0,0.072 0,0.144 l 7.057,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path14659"
-                   d="m 248.077,39.449 c 0.072,0.144 0.072,0.36 0.144,0.504 l -7.128,1.8 c 0,-0.144 0,-0.216 0,-0.36 1.08,-0.36 2.16,-0.648 3.24,-1.008 l 3.744,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path14661"
-                   d="m 248.149,39.737 c 0.071,0.144 0.071,0.36 0.144,0.504 l -7.271,1.8 c 0.071,-0.216 0.071,-0.36 0.071,-0.504 l 7.056,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path14663"
-                   d="m 248.221,39.953 c 0.072,0.216 0.144,0.36 0.144,0.576 l -7.343,1.8 c 0,-0.216 0,-0.36 0.071,-0.576 l 7.128,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path14665"
-                   d="m 248.293,40.241 c 0.071,0.144 0.071,0.36 0.145,0.504 l -7.416,1.872 c 0,-0.216 0,-0.432 0,-0.576 l 7.271,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path14667"
-                   d="m 248.364,40.529 c 0.073,0.144 0.073,0.36 0.145,0.504 l -7.487,1.872 c 0,-0.216 0,-0.36 0,-0.576 l 7.342,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path14669"
-                   d="m 248.438,40.745 c 0.071,0.216 0.071,0.36 0.144,0.576 l -7.56,1.872 c 0,-0.216 0,-0.432 0,-0.576 l 7.416,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path14671"
-                   d="m 248.509,41.033 c 0.072,0.216 0.072,0.36 0.145,0.576 l -7.632,1.872 c 0,-0.216 0,-0.36 0,-0.576 l 7.487,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path14673"
-                   d="m 248.581,41.321 c 0.072,0.144 0.072,0.36 0.145,0.504 l -7.704,1.944 c 0,-0.216 0,-0.36 0,-0.576 l 7.559,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path14675"
-                   d="m 248.653,41.609 c 0,0.144 0.072,0.36 0.072,0.504 l -7.704,1.944 c 0,-0.216 0,-0.36 0,-0.576 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path14677"
-                   d="m 248.726,41.825 c 0,0.216 0.071,0.432 0.071,0.576 l -7.775,1.944 c 0,-0.216 0,-0.432 0,-0.576 l 7.704,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path14679"
-                   d="m 248.726,42.113 c 0.071,0.216 0.071,0.36 0.144,0.504 l -7.848,1.944 c 0,-0.144 0,-0.36 0,-0.504 l 7.704,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path14681"
-                   d="m 248.797,42.401 c 0.072,0.216 0.072,0.36 0.072,0.504 l -7.848,1.944 c 0,-0.144 0,-0.36 0,-0.504 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path14683"
-                   d="m 248.869,42.617 c 0,0.216 0.072,0.432 0.072,0.576 l -7.92,2.016 c 0,-0.216 0,-0.432 0,-0.648 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path14685"
-                   d="m 248.869,42.905 c 0.072,0.216 0.072,0.432 0.144,0.576 l -7.991,2.016 c 0,-0.216 0,-0.432 0,-0.648 l 7.847,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path14687"
-                   d="m 248.941,43.193 c 0.071,0.216 0.071,0.36 0.071,0.576 l -7.991,1.944 c 0,-0.144 0,-0.36 0,-0.504 l 7.92,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path14689"
-                   d="m 249.013,43.481 c 0,0.216 0,0.36 0.072,0.576 l -8.063,1.944 c 0,-0.144 0,-0.36 0,-0.504 l 7.991,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path14691"
-                   d="m 249.013,43.769 c 0.072,0.144 0.072,0.36 0.072,0.576 l -8.063,2.016 c 0,-0.216 0,-0.432 0,-0.648 l 7.991,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path14693"
-                   d="m 249.085,44.057 c 0,0.144 0,0.36 0.072,0.504 l -8.136,2.016 c 0,-0.216 0,-0.36 0,-0.576 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path14695"
-                   d="m 249.085,44.345 c 0,0.144 0.072,0.36 0.072,0.504 l -8.209,2.016 c 0.073,-0.144 0.073,-0.36 0.073,-0.504 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path14697"
-                   d="m 249.157,44.561 c 0,0.216 0,0.36 0,0.576 l -8.209,2.088 c 0,-0.216 0.073,-0.432 0.073,-0.648 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path14699"
-                   d="m 249.157,44.849 c 0,0.216 0,0.432 0.072,0.576 l -8.281,2.088 c 0,-0.216 0,-0.432 0,-0.648 l 8.209,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path14701"
-                   d="m 249.157,45.137 c 0.072,0.216 0.072,0.36 0.072,0.576 l -8.281,2.016 c 0,-0.144 0,-0.36 0,-0.504 l 8.209,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path14703"
-                   d="m 249.229,45.425 c 0,0.216 0,0.36 0,0.576 l -8.281,2.016 c 0,-0.144 0,-0.36 0,-0.504 l 8.281,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path14705"
-                   d="m 249.229,45.713 c 0,0.144 0,0.36 0,0.576 l -8.281,2.088 c 0,-0.216 0,-0.432 0,-0.648 l 8.281,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path14707"
-                   d="m 249.229,46.001 c 0,0.144 0,0.36 0,0.504 l -8.281,2.088 c 0,-0.216 0,-0.36 0,-0.576 l 8.281,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path14709"
-                   d="m 249.229,46.289 c 0,0.144 0.071,0.36 0.071,0.504 l -8.353,2.088 c 0,-0.216 0,-0.36 0,-0.504 l 8.282,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path14711"
-                   d="m 249.229,46.505 c 0.071,0.216 0.071,0.432 0.071,0.576 l -8.424,2.088 c 0.071,-0.216 0.071,-0.36 0.071,-0.576 l 8.282,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path14713"
-                   d="m 249.301,46.793 c 0,0.216 0,0.432 0,0.648 l -8.424,2.088 c 0,-0.216 0.071,-0.432 0.071,-0.648 l 8.353,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path14715"
-                   d="m 249.301,47.081 c 0,0.216 0,0.36 0,0.576 l -8.424,2.088 c 0,-0.216 0,-0.36 0,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path14717"
-                   d="m 249.301,47.441 c 0,0.144 0,0.36 0,0.504 l -8.424,2.088 c 0,-0.144 0,-0.36 0,-0.504 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path14719"
-                   d="m 249.301,47.657 c 0,0.216 0,0.432 0,0.576 l -8.424,2.088 c 0,-0.144 0,-0.36 0,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path14721"
-                   d="m 249.301,47.945 c 0,0.216 0,0.36 0,0.576 l -8.424,2.088 c 0,-0.216 0,-0.36 0,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path14723"
-                   d="m 249.301,48.233 c 0,0.216 0,0.36 0,0.576 l -8.496,2.088 c 0,-0.216 0.072,-0.36 0.072,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path14725"
-                   d="m 249.301,48.521 c 0,0.216 -0.071,0.36 -0.071,0.576 l -8.425,2.088 c 0,-0.216 0,-0.36 0.072,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path14727"
-                   d="m 249.301,48.809 c -0.071,0.144 -0.071,0.36 -0.071,0.504 l -8.425,2.088 c 0,-0.144 0,-0.36 0,-0.504 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path14729"
-                   d="m 249.229,49.097 c 0,0.216 0,0.36 0,0.576 l -8.425,2.088 c 0,-0.216 0,-0.36 0,-0.576 l 8.425,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path14731"
-                   d="m 249.229,49.313 c 0,0.216 0,0.432 0,0.648 l -8.496,2.088 c 0.071,-0.216 0.071,-0.432 0.071,-0.648 l 8.425,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path14733"
-                   d="m 249.229,49.673 c 0,0.216 0,0.432 -0.072,0.576 l -8.424,2.088 c 0,-0.144 0,-0.36 0.071,-0.576 l 8.425,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path14735"
-                   d="m 249.229,49.961 c 0,0.216 -0.072,0.36 -0.072,0.576 l -8.424,2.088 c 0,-0.216 0,-0.36 0,-0.576 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path14737"
-                   d="m 249.157,50.249 c 0,0.216 0,0.36 0,0.576 l -8.424,2.088 c 0,-0.216 0,-0.36 0,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path14739"
-                   d="m 249.157,50.537 c 0,0.216 0,0.36 -0.072,0.576 l -8.424,2.088 c 0,-0.216 0.072,-0.36 0.072,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path14741"
-                   d="m 249.157,50.825 c -0.072,0.144 -0.072,0.36 -0.072,0.576 l -8.424,2.088 c 0,-0.216 0,-0.432 0.072,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path14743"
-                   d="m 249.085,51.113 c 0,0.216 0,0.36 -0.072,0.576 l -8.352,2.088 c 0,-0.216 0,-0.36 0,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path14745"
-                   d="m 249.085,51.401 c 0,0.216 -0.072,0.36 -0.072,0.576 l -8.424,2.088 c 0,-0.216 0.072,-0.432 0.072,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path14747"
-                   d="m 249.013,51.689 c 0,0.216 0,0.432 -0.071,0.648 l -8.353,2.088 c 0,-0.216 0,-0.432 0.072,-0.648 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path14749"
-                   d="m 249.013,51.977 c -0.071,0.216 -0.071,0.432 -0.071,0.576 l -8.353,2.088 c 0,-0.216 0,-0.36 0,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path14751"
-                   d="m 248.941,52.337 c 0,0.144 -0.072,0.36 -0.072,0.576 l -8.352,2.016 c 0,-0.144 0.071,-0.36 0.071,-0.504 l 8.353,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path14753"
-                   d="m 248.941,52.553 c -0.072,0.216 -0.072,0.432 -0.145,0.648 l -8.279,2.016 c 0,-0.144 0,-0.36 0.071,-0.576 l 8.353,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path14755"
-                   d="m 248.869,52.913 c -0.072,0.144 -0.072,0.36 -0.072,0.504 l -8.353,2.088 c 0.073,-0.216 0.073,-0.36 0.073,-0.576 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path14757"
-                   d="m 248.797,53.201 c 0,0.216 -0.071,0.36 -0.071,0.576 l -8.281,2.016 c 0,-0.144 0,-0.36 0.073,-0.576 l 8.279,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path14759"
-                   d="m 248.797,53.417 c -0.071,0.216 -0.144,0.432 -0.144,0.648 l -8.28,2.088 c 0.071,-0.216 0.071,-0.432 0.071,-0.648 l 8.353,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path14761"
-                   d="m 248.726,53.777 c -0.072,0.216 -0.145,0.432 -0.145,0.648 l -8.208,2.016 c 0,-0.216 0,-0.432 0.071,-0.648 l 8.282,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path14763"
-                   d="m 248.653,54.065 c -0.072,0.216 -0.072,0.432 -0.145,0.576 l -8.208,2.016 c 0.072,-0.144 0.072,-0.36 0.072,-0.504 l 8.281,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path14765"
-                   d="m 248.581,54.425 c -0.072,0.144 -0.072,0.36 -0.144,0.576 l -8.137,2.016 c 0,-0.216 0,-0.36 0.072,-0.576 l 8.209,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path14767"
-                   d="m 248.509,54.641 c -0.071,0.216 -0.071,0.432 -0.145,0.648 l -8.135,2.016 c 0.071,-0.216 0.071,-0.432 0.071,-0.648 l 8.209,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path14769"
-                   d="m 248.438,55.001 c -0.073,0.144 -0.073,0.36 -0.145,0.504 l -8.063,2.016 c 0,-0.144 0,-0.36 0.071,-0.504 l 8.137,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path14771"
-                   d="m 248.364,55.289 c -0.071,0.216 -0.071,0.36 -0.144,0.576 l -8.063,2.016 c 0,-0.216 0.072,-0.36 0.072,-0.576 l 8.135,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path14773"
-                   d="m 248.293,55.505 c -0.072,0.288 -0.144,0.504 -0.144,0.72 l -8.064,1.944 c 0.072,-0.216 0.072,-0.432 0.145,-0.648 l 8.063,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path14775"
-                   d="m 248.221,55.865 c -0.071,0.216 -0.144,0.432 -0.216,0.648 l -7.92,2.016 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path14777"
-                   d="m 248.149,56.225 c -0.072,0.144 -0.145,0.36 -0.216,0.576 l -7.921,1.944 c 0.072,-0.216 0.072,-0.36 0.072,-0.576 l 8.065,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path14779"
-                   d="m 248.005,56.513 c -0.071,0.216 -0.071,0.432 -0.145,0.576 l -7.919,1.944 c 0.071,-0.144 0.071,-0.36 0.144,-0.504 l 7.92,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path14781"
-                   d="m 247.934,56.801 c -0.073,0.216 -0.145,0.432 -0.217,0.648 l -7.775,1.944 c 0,-0.216 0.071,-0.432 0.071,-0.648 l 7.921,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path14783"
-                   d="m 247.86,57.089 c -0.071,0.216 -0.144,0.432 -0.215,0.576 l -7.776,1.944 c 0,-0.144 0.072,-0.36 0.072,-0.576 l 7.919,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path14785"
-                   d="m 247.717,57.449 c -0.071,0.216 -0.144,0.36 -0.216,0.576 l -7.704,1.944 c 0.072,-0.216 0.072,-0.432 0.145,-0.576 l 7.775,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path14787"
-                   d="m 247.646,57.665 c -0.072,0.288 -0.145,0.504 -0.217,0.72 l -7.703,1.872 c 0.071,-0.216 0.071,-0.432 0.144,-0.648 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path14789"
-                   d="m 247.501,58.025 c -0.072,0.216 -0.145,0.432 -0.216,0.576 l -7.632,1.944 c 0.072,-0.216 0.072,-0.432 0.144,-0.576 l 7.704,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path14791"
-                   d="m 247.429,58.385 c -0.144,0.216 -0.216,0.36 -0.287,0.576 l -7.561,1.872 c 0.072,-0.216 0.072,-0.36 0.145,-0.576 l 7.703,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path14793"
-                   d="m 247.285,58.601 c -0.072,0.288 -0.144,0.504 -0.288,0.72 l -7.488,1.872 c 0.072,-0.216 0.145,-0.432 0.145,-0.648 l 7.631,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path14795"
-                   d="m 247.142,58.961 c -0.072,0.216 -0.145,0.432 -0.289,0.648 l -7.415,1.872 c 0.071,-0.216 0.144,-0.432 0.144,-0.648 l 7.56,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path14797"
-                   d="m 246.997,59.321 c -0.072,0.216 -0.145,0.36 -0.288,0.576 l -7.345,1.8 c 0.073,-0.144 0.073,-0.36 0.145,-0.504 l 7.488,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path14799"
-                   d="m 246.853,59.609 c -0.072,0.216 -0.144,0.432 -0.287,0.648 l -7.272,1.8 c 0.071,-0.216 0.071,-0.36 0.145,-0.576 l 7.414,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path14801"
-                   d="m 246.709,59.897 c -0.072,0.216 -0.216,0.504 -0.288,0.72 l -7.271,1.8 c 0.071,-0.216 0.144,-0.432 0.215,-0.72 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path14803"
-                   d="m 246.565,60.257 c -0.072,0.216 -0.216,0.432 -0.289,0.576 l -7.199,1.8 c 0.072,-0.216 0.144,-0.36 0.216,-0.576 l 7.272,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path14805"
-                   d="m 246.421,60.617 c -0.145,0.216 -0.216,0.36 -0.359,0.576 l -7.057,1.8 c 0.072,-0.216 0.145,-0.432 0.145,-0.576 l 7.271,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path14807"
-                   d="m 246.276,60.833 c -0.144,0.288 -0.288,0.504 -0.432,0.72 l -6.984,1.728 c 0.073,-0.216 0.145,-0.432 0.217,-0.648 l 7.199,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path14809"
-                   d="m 246.062,61.193 c -0.145,0.288 -0.289,0.504 -0.433,0.72 l -6.912,1.728 c 0.072,-0.216 0.217,-0.432 0.288,-0.648 l 7.057,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path14811"
-                   d="m 245.845,61.553 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -6.839,1.728 c 0.071,-0.216 0.144,-0.432 0.215,-0.648 l 6.984,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path14813"
-                   d="m 245.629,61.913 c -0.145,0.216 -0.288,0.432 -0.433,0.648 l -6.695,1.656 c 0.072,-0.144 0.145,-0.36 0.216,-0.576 l 6.912,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path14815"
-                   d="m 245.484,62.201 c -0.216,0.288 -0.359,0.504 -0.504,0.72 l -6.695,1.656 c 0.144,-0.216 0.216,-0.432 0.36,-0.648 l 6.839,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path14817"
-                   d="m 245.196,62.561 c -0.144,0.216 -0.287,0.432 -0.432,0.648 l -6.623,1.656 c 0.144,-0.216 0.215,-0.432 0.359,-0.648 l 6.696,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path14819"
-                   d="m 244.98,62.921 c -0.216,0.288 -0.359,0.504 -0.576,0.72 l -6.479,1.584 c 0.145,-0.216 0.288,-0.432 0.36,-0.648 l 6.695,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path14821"
-                   d="m 244.765,63.209 c -0.216,0.288 -0.432,0.576 -0.647,0.792 l -6.408,1.584 c 0.144,-0.216 0.288,-0.432 0.433,-0.72 l 6.622,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path14823"
-                   d="m 244.404,63.641 c -0.216,0.216 -0.431,0.504 -0.647,0.72 l -6.336,1.584 c 0.145,-0.216 0.359,-0.432 0.504,-0.72 l 6.479,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path14825"
-                   d="m 244.117,64.001 c -0.217,0.216 -0.504,0.504 -0.721,0.72 l -6.264,1.512 c 0.217,-0.144 0.36,-0.36 0.576,-0.648 l 6.409,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path14827"
-                   d="m 243.757,64.361 c -0.288,0.288 -0.576,0.504 -0.792,0.72 l -6.336,1.584 c 0.288,-0.144 0.504,-0.432 0.792,-0.72 l 6.336,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <g
-                   id="g14829">
-                  <g
-                     id="g14831">
-                    <path
-                       id="path14833"
-                       d="m 236.125,67.097 c -0.072,0 -0.145,0 -0.216,-0.072 0.432,-0.144 0.863,-0.36 1.224,-0.792 l 6.264,-1.512"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g14835">
-                  <g
-                     id="g14837">
-                    <path
-                       id="path14839"
-                       d="m 236.772,67.169 c -0.288,0 -0.576,-0.072 -0.863,-0.144 0.216,-0.072 0.504,-0.216 0.72,-0.36 l 6.336,-1.584"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g14841">
-                  <g
-                     id="g14843">
-                    <path
-                       id="path14845"
-                       d="m 237.997,67.169 c -0.647,0.072 -1.225,0 -1.872,-0.072 l 6.264,-1.512"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path14847"
-                   d="m 241.812,65.945 c -1.439,0.936 -3.167,1.368 -5.04,1.224 l 5.04,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffb800" />
-                <path
-                   id="path14849"
-                   d="m 240.805,66.521 c -0.936,0.36 -1.871,0.648 -2.808,0.648 l 2.808,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffbf00" />
-                <path
-                   id="path14851"
-                   d="m 235.909,67.025 1.943,0.144 1.873,-0.288 1.655,-0.72 1.512,-1.008 1.44,-1.368 1.225,-1.656 1.008,-1.872 0.936,-2.088 0.72,-2.232 0.576,-2.376 0.36,-2.448 0.144,-2.448 0,-2.448 -0.216,-2.448 -0.432,-2.376 -0.648,-2.232 -0.792,0.288 -0.792,0.288 -0.863,0.216 -0.865,0.288 -0.863,0.288 -0.937,0.288 -0.863,0.288 -0.937,0.288 0,1.512 0,1.656 -0.071,1.872 -0.073,1.944 -0.071,1.944 -0.072,2.016 -0.216,2.088 -0.216,1.944 -0.288,1.944 -0.288,1.8 -0.433,1.728 -0.504,1.512 -0.575,1.296 -0.72,1.08 -0.793,0.792 -0.864,0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14853">
-                <path
-                   id="path14855"
-                   d="m 241.021,41.465 c -1.944,0.72 -3.672,1.08 -5.617,1.8 -0.071,0.432 -0.144,0.792 -0.144,1.224 l 5.616,-1.44 c 0.072,-0.504 0.072,-1.008 0.145,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path14857"
-                   d="m 241.021,41.465 c -1.944,0.72 -3.672,1.08 -5.617,1.8 -0.144,0.864 -0.216,1.8 -0.287,2.808 l 5.76,-1.368 c 0,-1.08 0.071,-2.16 0.144,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path14859"
-                   d="m 235.045,47.729 c 0.072,-1.152 0.144,-2.232 0.216,-3.24 l 5.616,-1.44 c 0,1.08 -0.072,2.16 -0.072,3.24 l -5.76,1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path14861"
-                   d="m 235.045,49.313 c 0,-1.08 0.072,-2.16 0.072,-3.24 l 5.76,-1.368 c -0.072,1.08 -0.072,2.16 -0.072,3.24 l -5.76,1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path14863"
-                   d="m 235.045,51.041 c 0,-1.152 0,-2.232 0,-3.312 l 5.76,-1.44 c 0,1.152 0,2.232 -0.071,3.312 l -5.689,1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path14865"
-                   d="m 234.974,52.625 c 0.071,-1.152 0.071,-2.232 0.071,-3.312 l 5.76,-1.368 c -0.071,1.08 -0.071,2.16 -0.071,3.24 l -5.76,1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path14867"
-                   d="m 234.974,54.209 c 0,-1.08 0.071,-2.16 0.071,-3.168 l 5.688,-1.44 c 0,1.08 0,2.16 -0.072,3.24 l -5.687,1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path14869"
-                   d="m 234.9,55.865 c 0.073,-1.08 0.073,-2.16 0.073,-3.24 l 5.76,-1.44 c 0,1.152 -0.072,2.232 -0.145,3.24 l -5.688,1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path14871"
-                   d="m 234.829,57.449 c 0.071,-1.08 0.145,-2.16 0.145,-3.24 l 5.688,-1.368 c 0,1.08 -0.072,2.16 -0.144,3.24 l -5.689,1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path14873"
-                   d="m 234.757,59.105 c 0.072,-1.08 0.144,-2.16 0.144,-3.24 l 5.688,-1.44 c -0.071,1.152 -0.145,2.232 -0.288,3.312 l -5.544,1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path14875"
-                   d="m 234.541,60.761 c 0.144,-1.08 0.216,-2.16 0.288,-3.312 l 5.688,-1.368 c -0.145,1.152 -0.288,2.232 -0.433,3.312 l -5.543,1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <path
-                   id="path14877"
-                   d="m 234.253,62.489 c 0.216,-1.08 0.36,-2.232 0.504,-3.384 l 5.544,-1.368 c -0.144,1.224 -0.359,2.376 -0.647,3.456 l -5.401,1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0010" />
-                <path
-                   id="path14879"
-                   d="m 233.821,64.217 c 0.359,-1.08 0.575,-2.232 0.72,-3.456 l 5.544,-1.368 c -0.288,1.296 -0.576,2.448 -1.008,3.528 l -5.256,1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path14881"
-                   d="m 233.245,65.945 c 0.432,-1.008 0.792,-2.16 1.008,-3.456 l 5.4,-1.296 c -0.36,1.296 -0.793,2.52 -1.44,3.528 l -4.968,1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path14883"
-                   d="m 232.237,67.817 c 0.72,-1.008 1.224,-2.232 1.584,-3.6 l 5.256,-1.296 c -0.576,1.512 -1.368,2.808 -2.52,3.816 l -4.32,1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5e00" />
-                <path
-                   id="path14885"
-                   d="m 233.245,65.945 c -0.576,1.44 -1.368,2.664 -2.448,3.456 3.6,-0.576 5.904,-2.232 7.416,-4.68 l -4.968,1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8500" />
-                <path
-                   id="path14887"
-                   d="m 232.237,67.817 c -0.433,0.648 -0.864,1.152 -1.44,1.584 2.521,-0.432 4.392,-1.296 5.761,-2.664 l -4.321,1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path14889"
-                   d="m 241.021,41.465 -0.721,0.288 -0.72,0.216 -0.647,0.216 -0.721,0.144 -0.72,0.216 -0.648,0.216 -0.72,0.216 -0.721,0.288 -0.144,1.44 -0.072,1.584 -0.071,1.728 -0.072,1.8 0,1.8 0,1.944 -0.071,1.944 -0.073,1.872 -0.144,1.872 -0.216,1.872 -0.36,1.728 -0.359,1.584 -0.576,1.512 -0.648,1.368 -0.792,1.152 -1.008,0.936 2.088,-0.504 1.729,-0.72 1.439,-1.008 1.224,-1.152 1.009,-1.368 0.792,-1.584 0.576,-1.728 0.432,-1.8 0.288,-2.016 0.216,-2.088 0.072,-2.16 0.072,-2.304 0.071,-2.304 0.072,-2.376 0,-2.376 0.144,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g14891">
-                <path
-                   id="path14893"
-                   d="m 235.261,43.481 c 0,-0.072 0,-0.144 0.072,-0.216 -1.225,0.432 -2.304,0.72 -3.385,1.008 l 3.313,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path14895"
-                   d="m 235.261,43.697 c 0,-0.144 0,-0.288 0.072,-0.432 -2.088,0.648 -3.672,1.152 -5.76,1.656 0,0.072 0,0.144 0,0.216 l 5.688,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path14897"
-                   d="m 235.261,43.481 c 0,0.216 0,0.36 -0.072,0.576 l -5.543,1.368 c -0.072,-0.288 -0.072,-0.432 -0.072,-0.504 0.864,-0.216 1.656,-0.36 2.375,-0.648 l 3.312,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path14899"
-                   d="m 235.261,43.697 c 0,0.216 -0.072,0.432 -0.072,0.648 l -5.472,1.368 c -0.071,-0.288 -0.071,-0.432 -0.144,-0.576 l 5.688,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path14901"
-                   d="m 235.188,44.057 c 0,0.144 0,0.36 0,0.504 l -5.399,1.368 c -0.072,-0.216 -0.072,-0.36 -0.144,-0.504 l 5.543,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path14903"
-                   d="m 235.188,44.345 c 0,0.216 0,0.36 -0.071,0.576 l -5.257,1.296 c -0.071,-0.216 -0.071,-0.36 -0.144,-0.504 l 5.472,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path14905"
-                   d="m 235.188,44.561 c 0,0.216 -0.071,0.432 -0.071,0.648 l -5.184,1.296 c -0.073,-0.216 -0.073,-0.432 -0.145,-0.576 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path14907"
-                   d="m 235.117,44.921 c 0,0.144 0,0.36 0,0.504 l -5.184,1.296 c 0,-0.144 -0.073,-0.36 -0.073,-0.504 l 5.257,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path14909"
-                   d="m 235.117,45.209 c 0,0.216 0,0.36 0,0.576 l -5.112,1.224 c 0,-0.144 -0.071,-0.36 -0.071,-0.504 l 5.183,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path14911"
-                   d="m 235.117,45.425 c 0,0.216 0,0.432 0,0.648 l -5.04,1.224 c -0.072,-0.216 -0.072,-0.36 -0.144,-0.576 l 5.184,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path14913"
-                   d="m 235.117,45.785 c 0,0.144 0,0.36 -0.072,0.504 l -4.968,1.224 c 0,-0.144 0,-0.36 -0.072,-0.504 l 5.112,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path14915"
-                   d="m 235.117,46.073 c -0.072,0.144 -0.072,0.36 -0.072,0.504 l -4.896,1.224 c 0,-0.144 -0.072,-0.36 -0.072,-0.504 l 5.04,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path14917"
-                   d="m 235.045,46.289 c 0,0.216 0,0.432 0,0.648 l -4.824,1.152 c -0.071,-0.144 -0.071,-0.36 -0.144,-0.576 l 4.968,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path14919"
-                   d="m 235.045,46.577 c 0,0.216 0,0.432 0,0.648 l -4.824,1.152 c 0,-0.216 -0.071,-0.36 -0.071,-0.576 l 4.895,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path14921"
-                   d="m 235.045,46.937 c 0,0.144 0,0.36 0,0.504 l -4.752,1.224 c -0.072,-0.216 -0.072,-0.36 -0.072,-0.576 l 4.824,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path14923"
-                   d="m 235.045,47.225 c 0,0.144 0,0.36 0,0.504 l -4.752,1.224 c 0,-0.216 0,-0.36 -0.072,-0.576 l 4.824,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path14925"
-                   d="m 235.045,47.441 c 0,0.216 0,0.432 0,0.648 l -4.681,1.152 c -0.071,-0.216 -0.071,-0.432 -0.071,-0.576 l 4.752,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path14927"
-                   d="m 235.045,47.729 c 0,0.216 0,0.36 0,0.576 l -4.681,1.152 c 0,-0.144 -0.071,-0.36 -0.071,-0.504 l 4.752,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path14929"
-                   d="m 235.045,48.089 c 0,0.144 0,0.36 0,0.504 l -4.681,1.152 c 0,-0.144 0,-0.36 0,-0.504 l 4.681,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path14931"
-                   d="m 235.045,48.305 c 0,0.216 0,0.36 0,0.576 l -4.681,1.152 c 0,-0.216 0,-0.36 0,-0.576 l 4.681,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path14933"
-                   d="m 235.045,48.593 c 0,0.216 0,0.36 0,0.504 l -4.607,1.152 c 0,-0.144 -0.073,-0.288 -0.073,-0.504 l 4.68,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path14935"
-                   d="m 235.045,48.881 c 0,0.216 0,0.36 0,0.576 l -4.607,1.152 c 0,-0.216 0,-0.36 -0.073,-0.576 l 4.68,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path14937"
-                   d="m 235.045,49.097 c 0,0.216 0,0.432 0,0.648 l -4.607,1.152 c 0,-0.216 0,-0.432 0,-0.648 l 4.607,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path14939"
-                   d="m 235.045,49.457 c 0,0.144 0,0.36 0,0.504 l -4.607,1.152 c 0,-0.144 0,-0.36 0,-0.504 l 4.607,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path14941"
-                   d="m 235.045,49.745 c 0,0.144 0,0.36 0,0.504 l -4.607,1.152 c 0,-0.144 0,-0.36 0,-0.504 l 4.607,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path14943"
-                   d="m 235.045,49.961 c 0,0.216 0,0.432 0,0.648 l -4.607,1.08 c 0,-0.144 0,-0.36 0,-0.576 l 4.607,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path14945"
-                   d="m 235.045,50.249 c 0,0.216 0,0.432 0,0.648 l -4.607,1.08 c 0,-0.144 0,-0.36 0,-0.576 l 4.607,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path14947"
-                   d="m 235.045,50.609 c 0,0.144 0,0.36 0,0.504 l -4.607,1.152 c 0,-0.216 0,-0.36 0,-0.576 l 4.607,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path14949"
-                   d="m 235.045,50.897 c 0,0.144 0,0.36 0,0.504 l -4.607,1.152 c 0,-0.144 0,-0.36 0,-0.576 l 4.607,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path14951"
-                   d="m 235.045,51.113 c 0,0.216 0,0.432 0,0.648 l -4.607,1.08 c 0,-0.216 0,-0.36 0,-0.576 l 4.607,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path14953"
-                   d="m 235.045,51.401 c 0,0.216 0,0.36 0,0.576 l -4.607,1.152 c 0,-0.216 0,-0.36 0,-0.576 l 4.607,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path14955"
-                   d="m 235.045,51.761 c 0,0.144 0,0.288 0,0.504 l -4.607,1.152 c 0,-0.216 0,-0.36 0,-0.576 l 4.607,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path14957"
-                   d="m 235.045,51.977 c 0,0.216 0,0.36 0,0.576 l -4.681,1.152 c 0.073,-0.216 0.073,-0.432 0.073,-0.576 l 4.608,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path14959"
-                   d="m 235.045,52.265 c 0,0.144 0,0.36 0,0.504 l -4.681,1.224 c 0,-0.216 0.073,-0.432 0.073,-0.576 l 4.608,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path14961"
-                   d="m 235.045,52.553 c 0,0.216 0,0.36 0,0.576 l -4.681,1.152 c 0,-0.216 0,-0.36 0,-0.576 l 4.681,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path14963"
-                   d="m 235.045,52.769 c 0,0.216 0,0.432 0,0.648 l -4.752,1.152 c 0.071,-0.216 0.071,-0.432 0.071,-0.576 l 4.681,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path14965"
-                   d="m 235.045,53.129 c 0,0.144 0,0.36 0,0.504 l -4.752,1.224 c 0,-0.216 0.071,-0.432 0.071,-0.576 l 4.681,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path14967"
-                   d="m 235.045,53.417 c 0,0.144 0,0.36 0,0.504 l -4.752,1.224 c 0,-0.216 0,-0.432 0,-0.576 l 4.752,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path14969"
-                   d="m 235.045,53.633 c 0,0.216 -0.071,0.432 -0.071,0.648 l -4.753,1.152 c 0,-0.216 0.072,-0.432 0.072,-0.576 l 4.752,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path14971"
-                   d="m 235.045,53.921 c -0.071,0.216 -0.071,0.36 -0.071,0.576 l -4.753,1.224 c 0,-0.216 0,-0.432 0.072,-0.576 l 4.752,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path14973"
-                   d="m 234.974,54.281 c 0,0.144 0,0.36 0,0.504 l -4.824,1.224 c 0,-0.216 0.071,-0.36 0.071,-0.576 l 4.753,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path14975"
-                   d="m 234.974,54.497 c 0,0.216 0,0.432 0,0.576 l -4.896,1.224 c 0.072,-0.216 0.072,-0.432 0.144,-0.576 l 4.752,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path14977"
-                   d="m 234.974,54.785 c 0,0.216 0,0.432 0,0.576 l -4.969,1.224 c 0.072,-0.144 0.072,-0.36 0.145,-0.576 l 4.824,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path14979"
-                   d="m 234.974,55.073 c 0,0.216 0,0.36 0,0.576 l -4.969,1.224 c 0,-0.216 0.072,-0.36 0.072,-0.576 l 4.897,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path14981"
-                   d="m 234.974,55.361 c 0,0.216 0,0.36 0,0.576 l -5.04,1.224 c 0.071,-0.144 0.071,-0.36 0.071,-0.576 l 4.969,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path14983"
-                   d="m 234.974,55.649 c 0,0.216 0,0.36 0,0.576 l -5.113,1.296 c 0.073,-0.216 0.073,-0.432 0.145,-0.648 l 4.968,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path14985"
-                   d="m 234.974,55.937 c 0,0.216 0,0.36 0,0.576 l -5.185,1.296 c 0.071,-0.216 0.071,-0.432 0.145,-0.648 l 5.04,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path14987"
-                   d="m 234.974,56.225 c 0,0.216 0,0.36 -0.073,0.576 l -5.184,1.296 c 0.072,-0.216 0.072,-0.432 0.144,-0.576 l 5.113,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path14989"
-                   d="m 234.974,56.513 c -0.073,0.216 -0.073,0.36 -0.073,0.576 l -5.255,1.296 c 0.071,-0.216 0.144,-0.432 0.144,-0.576 l 5.184,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path14991"
-                   d="m 234.9,56.801 c 0,0.216 0,0.36 0,0.576 l -5.327,1.296 c 0.072,-0.216 0.144,-0.36 0.144,-0.576 l 5.183,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path14993"
-                   d="m 234.9,57.089 c 0,0.216 0,0.36 0,0.576 l -5.399,1.296 c 0.072,-0.144 0.145,-0.36 0.145,-0.576 l 5.254,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path14995"
-                   d="m 234.9,57.377 c 0,0.144 0,0.36 -0.071,0.576 l -5.4,1.368 c 0.072,-0.216 0.145,-0.432 0.145,-0.648 l 5.326,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path14997"
-                   d="m 234.9,57.665 c 0,0.144 -0.071,0.36 -0.071,0.576 l -5.473,1.368 c 0.072,-0.216 0.072,-0.432 0.145,-0.648 l 5.399,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path14999"
-                   d="m 234.829,57.953 c 0,0.216 0,0.36 0,0.576 l -5.616,1.368 c 0.072,-0.216 0.144,-0.432 0.216,-0.576 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path15001"
-                   d="m 234.829,58.241 c 0,0.144 0,0.36 0,0.576 l -5.688,1.368 c 0.071,-0.216 0.144,-0.432 0.215,-0.576 l 5.473,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path15003"
-                   d="m 234.829,58.529 c 0,0.144 -0.072,0.36 -0.072,0.576 l -5.688,1.44 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 5.616,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path15005"
-                   d="m 234.829,58.817 c -0.072,0.144 -0.072,0.36 -0.072,0.576 l -5.832,1.44 c 0.072,-0.216 0.145,-0.432 0.217,-0.648 l 5.687,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path15007"
-                   d="m 234.757,59.105 c 0,0.216 0,0.36 -0.072,0.576 l -5.832,1.44 c 0.072,-0.216 0.145,-0.432 0.217,-0.576 l 5.687,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path15009"
-                   d="m 234.757,59.393 c 0,0.216 -0.072,0.36 -0.072,0.576 l -5.976,1.512 c 0.071,-0.216 0.144,-0.432 0.216,-0.648 l 5.832,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path15011"
-                   d="m 234.685,59.681 c 0,0.144 0,0.36 -0.071,0.576 l -5.977,1.512 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 5.832,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path15013"
-                   d="m 234.685,59.969 c 0,0.216 -0.071,0.36 -0.071,0.576 l -6.12,1.512 c 0.072,-0.216 0.144,-0.432 0.216,-0.576 l 5.975,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path15015"
-                   d="m 234.613,60.257 c 0,0.216 0,0.36 -0.072,0.576 l -6.191,1.512 c 0.071,-0.216 0.144,-0.36 0.287,-0.576 l 5.976,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path15017"
-                   d="m 234.613,60.545 c 0,0.216 -0.072,0.36 -0.072,0.576 l -6.336,1.584 c 0.145,-0.216 0.216,-0.432 0.288,-0.648 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path15019"
-                   d="m 234.541,60.833 c 0,0.216 -0.072,0.36 -0.072,0.576 l -6.336,1.584 c 0.072,-0.216 0.144,-0.432 0.217,-0.648 l 6.191,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path15021"
-                   d="m 234.541,61.121 c -0.072,0.216 -0.072,0.36 -0.145,0.576 l -6.479,1.584 c 0.145,-0.216 0.216,-0.36 0.288,-0.576 l 6.336,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path15023"
-                   d="m 234.469,61.409 c 0,0.216 -0.072,0.36 -0.072,0.576 l -6.552,1.656 c 0.072,-0.216 0.144,-0.432 0.288,-0.648 l 6.336,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path15025"
-                   d="m 234.396,61.697 c 0,0.216 -0.071,0.432 -0.071,0.576 l -6.624,1.656 c 0.071,-0.216 0.144,-0.432 0.216,-0.648 l 6.479,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path15027"
-                   d="m 234.396,61.985 c -0.071,0.216 -0.144,0.432 -0.144,0.648 l -6.769,1.656 c 0.145,-0.216 0.217,-0.432 0.36,-0.648 l 6.553,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path15029"
-                   d="m 234.325,62.273 c -0.072,0.216 -0.072,0.432 -0.145,0.576 l -6.84,1.728 c 0.144,-0.216 0.217,-0.432 0.36,-0.648 l 6.625,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path15031"
-                   d="m 234.253,62.633 c -0.072,0.144 -0.072,0.36 -0.145,0.576 l -6.912,1.656 c 0.072,-0.216 0.217,-0.36 0.288,-0.576 l 6.769,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path15033"
-                   d="m 234.181,62.849 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -7.057,1.728 c 0.145,-0.216 0.216,-0.432 0.36,-0.648 l 6.841,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path15035"
-                   d="m 234.108,63.209 c -0.071,0.216 -0.144,0.432 -0.144,0.648 l -7.2,1.728 c 0.145,-0.216 0.288,-0.432 0.432,-0.72 l 6.912,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path15037"
-                   d="m 234.037,63.497 c -0.072,0.216 -0.145,0.432 -0.216,0.648 l -7.2,1.8 c 0.144,-0.288 0.216,-0.504 0.359,-0.72 l 7.057,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path15039"
-                   d="m 233.965,63.857 c -0.072,0.144 -0.144,0.36 -0.216,0.576 l -7.271,1.8 c 0.071,-0.216 0.215,-0.432 0.287,-0.648 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path15041"
-                   d="m 233.821,64.145 c 0,0.144 -0.072,0.36 -0.145,0.576 l -7.416,1.872 c 0.072,-0.216 0.217,-0.432 0.36,-0.648 l 7.201,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path15043"
-                   d="m 233.749,64.433 c -0.072,0.144 -0.145,0.36 -0.216,0.576 l -7.488,1.872 c 0.144,-0.216 0.288,-0.432 0.433,-0.648 l 7.271,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path15045"
-                   d="m 233.677,64.721 c -0.072,0.216 -0.144,0.432 -0.216,0.576 l -7.632,1.872 c 0.145,-0.216 0.288,-0.36 0.432,-0.576 l 7.416,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path15047"
-                   d="m 233.533,65.009 c -0.072,0.216 -0.145,0.432 -0.216,0.648 l -7.704,1.872 c 0.144,-0.216 0.287,-0.432 0.432,-0.648 l 7.488,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path15049"
-                   d="m 233.461,65.297 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -7.776,1.944 c 0.145,-0.216 0.288,-0.432 0.433,-0.72 l 7.631,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path15051"
-                   d="m 233.317,65.657 c -0.072,0.216 -0.217,0.432 -0.288,0.576 l -7.849,1.944 c 0.145,-0.216 0.288,-0.432 0.433,-0.648 l 7.704,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path15053"
-                   d="m 233.173,65.945 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -7.992,2.016 c 0.145,-0.288 0.36,-0.504 0.504,-0.72 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path15055"
-                   d="m 233.029,66.233 c -0.072,0.288 -0.217,0.504 -0.288,0.648 l -8.064,2.016 c 0.145,-0.216 0.288,-0.432 0.504,-0.72 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path15057"
-                   d="m 232.885,66.593 c -0.144,0.216 -0.216,0.432 -0.359,0.648 l -8.064,2.016 c 0.144,-0.216 0.288,-0.432 0.432,-0.648 l 7.991,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path15059"
-                   d="m 232.741,66.881 c -0.145,0.288 -0.288,0.504 -0.433,0.72 l -8.136,2.016 c 0.145,-0.216 0.288,-0.432 0.504,-0.72 l 8.065,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path15061"
-                   d="m 232.525,67.241 c -0.145,0.216 -0.288,0.504 -0.433,0.72 l -8.28,2.016 c 0.217,-0.216 0.433,-0.504 0.648,-0.72 l 8.065,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path15063"
-                   d="m 232.309,67.601 c -0.144,0.216 -0.287,0.432 -0.432,0.648 l -8.28,2.016 c 0.216,-0.216 0.36,-0.432 0.576,-0.648 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path15065"
-                   d="m 232.093,67.961 c -0.216,0.216 -0.359,0.432 -0.504,0.648 l -8.28,2.016 c 0.217,-0.216 0.36,-0.432 0.504,-0.648 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path15067"
-                   d="m 231.877,68.249 c -0.216,0.288 -0.433,0.504 -0.647,0.72 l -8.208,2.088 c 0.216,-0.288 0.432,-0.576 0.575,-0.792 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffab00" />
-                <path
-                   id="path15069"
-                   d="m 231.589,68.609 c -0.216,0.216 -0.432,0.504 -0.647,0.72 l -8.208,2.016 c 0.215,-0.216 0.359,-0.504 0.575,-0.72 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path15071"
-                   d="m 231.229,68.969 c -0.217,0.288 -0.504,0.504 -0.721,0.72 l -8.136,2.016 c 0.216,-0.216 0.432,-0.432 0.648,-0.648 l 8.209,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffb800" />
-                <path
-                   id="path15073"
-                   d="m 230.941,69.329 c -0.288,0.288 -0.648,0.576 -1.008,0.864 l -7.921,1.944 c 0.288,-0.288 0.505,-0.576 0.721,-0.792 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffbf00" />
-                <g
-                   id="g15075">
-                  <g
-                     id="g15077">
-                    <path
-                       id="path15079"
-                       d="m 222.444,72.281 c -0.215,0 -0.359,-0.072 -0.503,-0.072 0.144,-0.144 0.288,-0.288 0.432,-0.504 l 8.136,-2.016"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15081">
-                  <g
-                     id="g15083">
-                    <path
-                       id="path15085"
-                       d="m 223.885,72.209 c -0.647,0 -1.296,0.072 -1.943,0 l 0.071,-0.072 7.921,-1.944"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path15087"
-                   d="m 229.356,70.553 c -1.728,1.08 -3.96,1.728 -6.912,1.656 l 6.912,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path15089"
-                   d="m 228.35,71.057 c -1.225,0.648 -2.736,1.008 -4.465,1.152 l 4.465,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path15091"
-                   d="m 221.941,72.209 2.88,-0.144 2.447,-0.576 2.017,-0.936 1.656,-1.224 1.296,-1.584 0.936,-1.8 0.792,-2.016 0.504,-2.232 0.288,-2.304 0.217,-2.376 0.071,-2.448 0,-2.376 0,-2.448 0,-2.304 0.144,-2.16 0.145,-2.016 -0.792,0.216 -0.72,0.216 -0.648,0.216 -0.72,0.216 -0.72,0.216 -0.648,0.216 -0.721,0.144 -0.791,0.216 0.072,0.216 0.144,0.504 0.145,0.792 0.216,1.008 0.144,1.296 0.145,1.44 0.071,1.656 -0.071,1.872 -0.217,1.944 -0.36,2.16 -0.647,2.232 -0.792,2.304 -1.152,2.376 -1.439,2.52 -1.729,2.448 -2.163,2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g15093">
-                <path
-                   id="path15095"
-                   d="m 229.646,45.137 c 0,-0.072 0,-0.144 0,-0.216 l -2.593,0.864 2.593,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path15097"
-                   d="m 229.789,45.497 c -0.072,-0.216 -0.144,-0.36 -0.144,-0.576 l -6.841,2.16 c 0,0.072 0,0.072 0,0.072 l 6.985,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path15099"
-                   d="m 229.646,45.137 c 0.071,0.216 0.144,0.432 0.215,0.648 l -7.056,1.728 c 0,-0.144 0,-0.288 0,-0.432 l 4.248,-1.296 2.593,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path15101"
-                   d="m 229.789,45.497 c 0,0.144 0.071,0.36 0.071,0.576 l -7.056,1.728 c 0,-0.216 0,-0.432 0,-0.648 l 6.985,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path15103"
-                   d="m 229.86,45.785 c 0,0.144 0.073,0.36 0.073,0.576 l -7.057,1.728 c 0,-0.216 -0.072,-0.432 -0.072,-0.576 l 7.056,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path15105"
-                   d="m 229.86,46.073 c 0.073,0.216 0.145,0.432 0.145,0.648 l -7.128,1.728 c 0,-0.216 0,-0.432 -0.072,-0.648 l 7.055,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path15107"
-                   d="m 229.934,46.361 c 0.071,0.216 0.144,0.432 0.144,0.648 l -7.2,1.728 c 0,-0.216 0,-0.432 0,-0.648 l 7.056,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path15109"
-                   d="m 230.005,46.721 c 0.072,0.144 0.072,0.36 0.145,0.576 l -7.272,1.8 c 0,-0.216 0,-0.432 0,-0.648 l 7.127,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path15111"
-                   d="m 230.077,47.009 c 0.072,0.144 0.072,0.36 0.144,0.576 l -7.344,1.8 c 0,-0.216 0,-0.432 0,-0.648 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path15113"
-                   d="m 230.149,47.297 c 0,0.216 0.071,0.432 0.071,0.648 l -7.344,1.8 c 0,-0.216 0,-0.432 0,-0.648 l 7.273,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path15115"
-                   d="m 230.221,47.585 c 0,0.216 0,0.432 0.072,0.648 l -7.416,1.8 c 0,-0.216 0,-0.432 0,-0.648 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path15117"
-                   d="m 230.221,47.945 c 0.072,0.216 0.072,0.36 0.072,0.576 l -7.416,1.872 c 0,-0.216 0,-0.432 0,-0.648 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path15119"
-                   d="m 230.293,48.233 c 0,0.216 0.071,0.432 0.071,0.576 l -7.487,1.872 c 0,-0.216 0,-0.432 0,-0.648 l 7.416,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path15121"
-                   d="m 230.293,48.521 c 0.071,0.216 0.071,0.432 0.071,0.648 l -7.56,1.872 c 0.072,-0.216 0.072,-0.432 0.072,-0.648 l 7.417,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path15123"
-                   d="m 230.364,48.809 c 0,0.216 0,0.504 0.073,0.72 l -7.633,1.872 c 0,-0.288 0.072,-0.504 0.072,-0.72 l 7.488,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path15125"
-                   d="m 230.364,49.169 c 0.073,0.216 0.073,0.432 0.073,0.648 l -7.633,1.872 c 0,-0.216 0,-0.432 0,-0.648 l 7.56,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path15127"
-                   d="m 230.438,49.529 c 0,0.144 0,0.36 0,0.576 l -7.633,1.872 c 0,-0.216 0,-0.432 0,-0.576 l 7.633,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path15129"
-                   d="m 230.438,49.817 c 0,0.216 0,0.432 0,0.648 l -7.704,1.944 c 0,-0.288 0.071,-0.504 0.071,-0.72 l 7.633,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path15131"
-                   d="m 230.438,50.105 c 0,0.216 0,0.432 0,0.72 l -7.704,1.872 c 0,-0.216 0,-0.432 0.071,-0.72 l 7.633,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path15133"
-                   d="m 230.438,50.465 c 0,0.216 0.071,0.432 0.071,0.648 l -7.848,1.872 c 0.072,-0.216 0.072,-0.36 0.072,-0.576 l 7.705,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path15135"
-                   d="m 230.438,50.825 c 0.071,0.144 0.071,0.36 0.071,0.576 l -7.848,1.944 c 0,-0.216 0,-0.432 0.072,-0.648 l 7.705,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path15137"
-                   d="m 230.509,51.113 c 0,0.216 0,0.432 -0.071,0.648 l -7.849,1.944 c 0.072,-0.216 0.072,-0.432 0.072,-0.72 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path15139"
-                   d="m 230.509,51.401 c 0,0.216 -0.071,0.432 -0.071,0.72 l -7.849,1.944 c 0,-0.288 0,-0.504 0.072,-0.72 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path15141"
-                   d="m 230.438,51.761 c 0,0.216 0,0.432 0,0.648 l -7.92,1.944 c 0,-0.216 0.071,-0.432 0.071,-0.648 l 7.849,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path15143"
-                   d="m 230.438,52.121 c 0,0.216 0,0.36 0,0.576 l -7.993,1.944 c 0.073,-0.216 0.073,-0.36 0.145,-0.576 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path15145"
-                   d="m 230.438,52.409 c 0,0.216 0,0.432 0,0.648 l -7.993,1.944 c 0,-0.216 0.073,-0.432 0.073,-0.648 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path15147"
-                   d="m 230.438,52.697 c 0,0.216 0,0.504 -0.073,0.72 l -7.991,1.944 c 0.071,-0.216 0.071,-0.432 0.071,-0.72 l 7.993,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path15149"
-                   d="m 230.438,53.057 c 0,0.216 -0.073,0.432 -0.073,0.648 l -8.063,2.016 c 0.072,-0.288 0.072,-0.504 0.144,-0.72 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path15151"
-                   d="m 230.364,53.417 c 0,0.216 0,0.432 0,0.648 l -8.063,1.944 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 7.991,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path15153"
-                   d="m 230.364,53.705 c 0,0.216 0,0.432 -0.071,0.648 l -8.063,2.016 c 0,-0.216 0.071,-0.432 0.071,-0.648 l 8.063,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path15155"
-                   d="m 230.364,54.065 c -0.071,0.216 -0.071,0.432 -0.071,0.648 l -8.136,2.016 c 0,-0.216 0.072,-0.504 0.144,-0.72 l 8.063,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path15157"
-                   d="m 230.293,54.353 c 0,0.216 -0.072,0.432 -0.072,0.72 l -8.136,2.016 c 0.072,-0.288 0.072,-0.504 0.145,-0.72 l 8.063,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path15159"
-                   d="m 230.293,54.713 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -8.137,2.016 c 0.072,-0.216 0.072,-0.432 0.145,-0.648 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path15161"
-                   d="m 230.221,55.073 c 0,0.216 -0.071,0.432 -0.071,0.648 l -8.208,1.944 c 0.071,-0.216 0.071,-0.432 0.144,-0.576 l 8.135,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path15163"
-                   d="m 230.149,55.361 c 0,0.216 -0.072,0.504 -0.072,0.72 l -8.208,2.016 c 0.072,-0.216 0.072,-0.504 0.144,-0.72 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path15165"
-                   d="m 230.149,55.721 c -0.072,0.216 -0.072,0.432 -0.145,0.648 l -8.208,2.016 c 0.072,-0.216 0.072,-0.432 0.145,-0.72 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path15167"
-                   d="m 230.077,56.081 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -8.208,2.016 c 0,-0.216 0.071,-0.432 0.144,-0.648 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path15169"
-                   d="m 230.005,56.369 c 0,0.216 -0.071,0.432 -0.145,0.72 l -8.207,2.016 c 0,-0.216 0.072,-0.432 0.144,-0.72 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path15171"
-                   d="m 229.934,56.729 c 0,0.216 -0.073,0.504 -0.145,0.72 l -8.28,2.016 c 0.072,-0.216 0.145,-0.504 0.217,-0.72 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path15173"
-                   d="m 229.86,57.089 c 0,0.216 -0.071,0.432 -0.144,0.72 l -8.279,2.016 c 0.071,-0.288 0.144,-0.504 0.216,-0.72 l 8.207,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path15175"
-                   d="m 229.789,57.449 c 0,0.216 -0.072,0.432 -0.144,0.648 l -8.281,2.016 c 0.073,-0.216 0.145,-0.432 0.145,-0.648 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path15177"
-                   d="m 229.717,57.809 c -0.071,0.216 -0.071,0.432 -0.144,0.648 l -8.28,2.016 c 0.071,-0.216 0.071,-0.432 0.145,-0.648 l 8.279,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path15179"
-                   d="m 229.646,58.097 c -0.072,0.216 -0.145,0.504 -0.145,0.72 l -8.352,2.016 c 0.071,-0.216 0.144,-0.432 0.215,-0.72 l 8.282,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path15181"
-                   d="m 229.573,58.457 c -0.072,0.216 -0.145,0.432 -0.217,0.72 l -8.279,2.016 c 0.072,-0.216 0.144,-0.504 0.216,-0.72 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path15183"
-                   d="m 229.501,58.817 c -0.072,0.216 -0.145,0.432 -0.216,0.648 l -8.352,2.088 c 0.071,-0.216 0.144,-0.432 0.216,-0.72 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path15185"
-                   d="m 229.356,59.177 c 0,0.216 -0.071,0.432 -0.144,0.648 l -8.353,2.016 c 0.073,-0.216 0.145,-0.432 0.217,-0.648 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path15187"
-                   d="m 229.285,59.465 c -0.072,0.288 -0.144,0.504 -0.216,0.792 l -8.353,2.016 c 0.072,-0.216 0.144,-0.504 0.217,-0.72 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path15189"
-                   d="m 229.213,59.825 c -0.071,0.216 -0.144,0.504 -0.216,0.72 l -8.424,2.088 c 0.144,-0.288 0.216,-0.504 0.287,-0.792 l 8.353,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path15191"
-                   d="m 229.069,60.257 c -0.072,0.216 -0.145,0.432 -0.217,0.648 l -8.352,2.016 c 0.072,-0.216 0.145,-0.432 0.216,-0.648 l 8.353,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path15193"
-                   d="m 228.997,60.545 c -0.072,0.216 -0.145,0.432 -0.288,0.648 l -8.353,2.088 c 0.072,-0.216 0.145,-0.432 0.217,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path15195"
-                   d="m 228.853,60.905 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.352,2.088 c 0.071,-0.216 0.144,-0.504 0.216,-0.72 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path15197"
-                   d="m 228.709,61.193 c -0.072,0.288 -0.144,0.504 -0.216,0.792 l -8.424,2.016 c 0.144,-0.216 0.216,-0.504 0.287,-0.72 l 8.353,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path15199"
-                   d="m 228.637,61.553 c -0.071,0.288 -0.216,0.504 -0.287,0.792 l -8.353,2.016 c 0.072,-0.216 0.145,-0.504 0.288,-0.72 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path15201"
-                   d="m 228.493,61.985 c -0.144,0.216 -0.217,0.432 -0.288,0.648 l -8.353,2.088 c 0.072,-0.216 0.145,-0.432 0.217,-0.72 l 8.424,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path15203"
-                   d="m 228.35,62.345 c -0.073,0.216 -0.217,0.432 -0.288,0.648 l -8.353,2.088 c 0.071,-0.288 0.144,-0.504 0.288,-0.72 l 8.353,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path15205"
-                   d="m 228.205,62.633 c -0.072,0.288 -0.217,0.504 -0.288,0.792 l -8.424,2.016 c 0.144,-0.216 0.216,-0.504 0.359,-0.72 l 8.353,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path15207"
-                   d="m 228.062,62.993 c -0.073,0.288 -0.217,0.504 -0.36,0.792 l -8.352,2.016 c 0.144,-0.216 0.216,-0.504 0.359,-0.72 l 8.353,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path15209"
-                   d="m 227.917,63.425 c -0.145,0.216 -0.216,0.432 -0.359,0.72 l -8.353,2.016 c 0.071,-0.216 0.216,-0.432 0.288,-0.72 l 8.424,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path15211"
-                   d="m 227.701,63.785 c -0.072,0.216 -0.144,0.432 -0.288,0.648 l -8.352,2.088 c 0.071,-0.216 0.215,-0.504 0.288,-0.72 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path15213"
-                   d="m 227.558,64.145 c -0.073,0.216 -0.217,0.504 -0.361,0.72 l -8.352,2.088 c 0.144,-0.288 0.217,-0.504 0.36,-0.792 l 8.353,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path15215"
-                   d="m 227.413,64.433 c -0.145,0.288 -0.217,0.576 -0.36,0.792 l -8.424,2.088 c 0.144,-0.288 0.288,-0.576 0.433,-0.792 l 8.351,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path15217"
-                   d="m 227.196,64.865 c -0.071,0.288 -0.216,0.504 -0.359,0.72 l -8.353,2.088 c 0.145,-0.288 0.217,-0.504 0.36,-0.72 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path15219"
-                   d="m 227.053,65.225 c -0.144,0.216 -0.288,0.504 -0.36,0.72 l -8.424,2.016 c 0.145,-0.216 0.289,-0.432 0.36,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path15221"
-                   d="m 226.837,65.585 c -0.145,0.288 -0.288,0.504 -0.433,0.792 l -8.352,2.016 c 0.144,-0.216 0.288,-0.504 0.432,-0.72 l 8.353,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path15223"
-                   d="m 226.692,65.945 c -0.144,0.288 -0.288,0.504 -0.504,0.792 l -8.352,2.016 c 0.144,-0.216 0.288,-0.504 0.432,-0.792 l 8.424,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path15225"
-                   d="m 226.404,66.377 c -0.144,0.216 -0.287,0.504 -0.431,0.72 l -8.353,2.016 c 0.144,-0.216 0.288,-0.432 0.432,-0.72 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path15227"
-                   d="m 226.188,66.737 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -8.353,2.016 c 0.145,-0.216 0.288,-0.432 0.433,-0.72 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path15229"
-                   d="m 225.974,67.097 c -0.145,0.288 -0.289,0.504 -0.505,0.792 l -8.352,2.088 c 0.144,-0.288 0.36,-0.576 0.504,-0.864 l 8.353,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path15231"
-                   d="m 225.757,67.457 c -0.144,0.288 -0.288,0.504 -0.504,0.792 l -8.353,2.088 c 0.145,-0.288 0.36,-0.576 0.504,-0.864 l 8.353,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path15233"
-                   d="m 225.469,67.889 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -8.424,2.088 c 0.144,-0.288 0.36,-0.504 0.504,-0.72 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path15235"
-                   d="m 225.253,68.249 c -0.145,0.288 -0.36,0.504 -0.504,0.72 l -8.424,2.088 c 0.216,-0.216 0.359,-0.504 0.575,-0.72 l 8.353,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path15237"
-                   d="m 225.037,68.609 c -0.216,0.288 -0.433,0.576 -0.648,0.864 l -8.424,2.088 c 0.216,-0.288 0.432,-0.576 0.648,-0.864 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path15239"
-                   d="m 224.749,68.969 c -0.216,0.288 -0.432,0.576 -0.648,0.864 l -8.424,2.088 c 0.216,-0.288 0.432,-0.576 0.648,-0.864 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path15241"
-                   d="m 224.389,69.473 c -0.216,0.216 -0.359,0.504 -0.576,0.72 l -8.424,2.088 c 0.216,-0.216 0.36,-0.504 0.576,-0.72 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path15243"
-                   d="m 224.101,69.833 c -0.216,0.288 -0.432,0.504 -0.647,0.792 l -8.424,2.088 c 0.216,-0.288 0.432,-0.504 0.647,-0.792 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path15245"
-                   d="m 223.812,70.193 c -0.216,0.288 -0.432,0.576 -0.72,0.792 l -8.424,2.088 c 0.216,-0.216 0.432,-0.504 0.72,-0.792 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path15247"
-                   d="m 223.453,70.625 c -0.216,0.288 -0.505,0.576 -0.792,0.864 l -8.496,2.088 c 0.288,-0.288 0.576,-0.576 0.864,-0.864 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path15249"
-                   d="m 223.093,70.985 c -0.216,0.36 -0.575,0.648 -0.863,0.936 l -8.497,2.088 c 0.36,-0.288 0.648,-0.648 0.936,-0.936 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path15251"
-                   d="m 222.661,71.489 c -0.288,0.288 -0.576,0.576 -0.864,0.864 l -8.496,2.088 c 0.288,-0.288 0.576,-0.576 0.864,-0.864 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path15253"
-                   d="m 222.229,71.921 c -0.288,0.288 -0.576,0.576 -0.865,0.792 l -8.639,2.16 c 0.36,-0.288 0.72,-0.576 1.008,-0.864 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <g
-                   id="g15255">
-                  <g
-                     id="g15257">
-                    <path
-                       id="path15259"
-                       d="m 212.221,75.377 c -0.072,0 -0.072,0 -0.072,-0.072 0.36,-0.288 0.72,-0.576 1.152,-0.864 l 8.496,-2.088"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15261">
-                  <g
-                     id="g15263">
-                    <path
-                       id="path15265"
-                       d="m 212.797,75.521 c -0.216,-0.072 -0.432,-0.144 -0.648,-0.216 0.216,-0.144 0.432,-0.288 0.576,-0.432 l 8.639,-2.16"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15267">
-                  <g
-                     id="g15269">
-                    <path
-                       id="path15271"
-                       d="m 213.589,75.665 c -0.504,-0.072 -0.936,-0.144 -1.368,-0.288 l 8.425,-2.088"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15273">
-                  <g
-                     id="g15275">
-                    <path
-                       id="path15277"
-                       d="m 214.669,75.665 c -0.648,0 -1.224,0 -1.872,-0.144 l 7.2,-1.8"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path15279"
-                   d="m 219.276,74.225 c -1.872,1.08 -3.815,1.584 -5.688,1.44 l 5.688,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path15281"
-                   d="m 218.125,74.801 c -1.151,0.504 -2.304,0.864 -3.456,0.864 l 3.456,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path15283"
-                   d="m 212.149,75.305 1.944,0.36 1.944,-0.144 1.872,-0.648 1.871,-1.008 1.801,-1.368 1.728,-1.656 1.584,-2.016 1.44,-2.232 1.225,-2.376 1.079,-2.592 0.864,-2.736 0.576,-2.808 0.36,-2.808 0.071,-2.88 -0.288,-2.736 -0.575,-2.736 -6.841,2.16 0.072,1.152 0.071,1.368 -0.071,1.512 -0.144,1.728 -0.216,1.8 -0.36,1.944 -0.36,2.016 -0.576,2.088 -0.647,2.088 -0.793,2.016 -0.863,2.016 -1.08,1.944 -1.152,1.872 -1.367,1.728 -1.513,1.584 -1.656,1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g15285">
-                <path
-                   id="path15287"
-                   d="m 222.948,46.937 c -2.52,0.72 -8.567,2.736 -10.871,3.168 -0.072,0.576 -0.144,1.224 -0.144,1.8 l 10.944,-2.664 c 0,-0.72 0.071,-1.512 0.071,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path15289"
-                   d="m 217.333,48.665 c -2.088,0.648 -4.176,1.224 -5.256,1.44 -0.144,1.224 -0.216,2.448 -0.288,3.744 l 10.944,-2.664 c 0.144,-1.296 0.144,-2.52 0.215,-3.888 l -5.615,1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path15291"
-                   d="m 211.645,55.721 c 0.144,-1.296 0.216,-2.592 0.288,-3.816 l 10.944,-2.664 c -0.072,1.296 -0.144,2.592 -0.288,3.816 l -10.944,2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path15293"
-                   d="m 211.573,57.665 c 0.072,-1.296 0.144,-2.592 0.216,-3.816 l 10.944,-2.664 c -0.072,1.296 -0.216,2.592 -0.36,3.816 l -10.8,2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path15295"
-                   d="m 211.429,59.537 c 0.072,-1.296 0.144,-2.52 0.216,-3.816 l 10.944,-2.664 c -0.145,1.296 -0.288,2.592 -0.576,3.888 l -10.584,2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path15297"
-                   d="m 211.213,61.481 c 0.144,-1.296 0.216,-2.52 0.36,-3.816 l 10.8,-2.664 c -0.216,1.368 -0.432,2.664 -0.72,3.888 l -10.44,2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path15299"
-                   d="m 210.925,63.497 c 0.216,-1.296 0.36,-2.592 0.504,-3.96 l 10.584,-2.592 c -0.216,1.44 -0.575,2.736 -0.936,4.032 l -10.152,2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path15301"
-                   d="m 210.637,65.441 c 0.216,-1.296 0.432,-2.592 0.576,-3.96 l 10.44,-2.592 c -0.36,1.44 -0.72,2.808 -1.152,4.104 l -9.864,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path15303"
-                   d="m 210.205,67.385 c 0.288,-1.224 0.576,-2.592 0.72,-3.888 l 10.152,-2.52 c -0.36,1.44 -0.864,2.808 -1.368,4.104 l -9.504,2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path15305"
-                   d="m 209.629,69.401 c 0.36,-1.224 0.72,-2.592 1.008,-3.96 l 9.864,-2.448 c -0.576,1.512 -1.151,2.88 -1.8,4.176 l -9.072,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <path
-                   id="path15307"
-                   d="m 208.765,71.561 c 0.576,-1.296 1.08,-2.736 1.44,-4.176 l 9.504,-2.304 c -0.721,1.584 -1.44,3.024 -2.231,4.32 l -8.713,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0010" />
-                <path
-                   id="path15309"
-                   d="m 207.613,73.649 c 0.864,-1.224 1.512,-2.664 2.016,-4.248 l 9.072,-2.232 c -0.864,1.728 -1.801,3.24 -2.88,4.464 l -8.208,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path15311"
-                   d="m 205.597,76.097 c 1.368,-1.296 2.376,-2.808 3.168,-4.536 l 8.712,-2.16 c -1.225,1.944 -2.593,3.528 -4.033,4.752 l -7.847,1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path15313"
-                   d="m 207.613,73.649 c -0.792,1.224 -1.728,2.304 -2.808,3.096 3.456,0.864 7.56,-0.864 11.017,-5.112 l -8.209,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5e00" />
-                <path
-                   id="path15315"
-                   d="m 205.597,76.097 c -0.216,0.216 -0.504,0.432 -0.792,0.648 2.664,0.648 5.76,-0.216 8.64,-2.592 l -7.848,1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8500" />
-                <path
-                   id="path15317"
-                   d="m 222.948,46.937 -1.079,0.36 -1.368,0.36 -1.513,0.504 -1.584,0.432 -1.512,0.504 -1.512,0.432 -1.296,0.36 -1.008,0.216 -0.144,1.656 -0.072,1.8 -0.144,1.8 -0.072,1.872 -0.216,1.872 -0.144,1.944 -0.216,1.872 -0.288,1.872 -0.36,1.8 -0.432,1.728 -0.576,1.728 -0.648,1.584 -0.792,1.512 -0.936,1.296 -1.008,1.224 -1.224,1.08 1.44,0.216 1.512,-0.072 1.512,-0.36 1.512,-0.648 1.512,-0.936 1.512,-1.152 1.44,-1.44 1.439,-1.8 1.296,-1.944 1.152,-2.304 1.08,-2.52 0.937,-2.88 0.72,-3.096 0.575,-3.312 0.36,-3.672 0.145,-3.888 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g15319">
-                <path
-                   id="path15321"
-                   d="m 211.789,52.553 c 0.072,-0.936 0.144,-1.728 0.288,-2.52 -2.808,0.648 -4.104,1.152 -7.128,1.944 -0.144,0.792 -0.216,1.584 -0.288,2.304 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path15323"
-                   d="m 211.933,50.609 c -0.144,1.152 -0.216,2.448 -0.288,3.744 l -7.2,1.8 c 0.144,-1.224 0.288,-2.448 0.432,-3.744 l 7.056,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path15325"
-                   d="m 211.789,52.553 c -0.072,1.152 -0.144,2.376 -0.216,3.672 l -7.416,1.8 c 0.216,-1.224 0.36,-2.448 0.504,-3.744 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path15327"
-                   d="m 211.645,54.353 c -0.072,1.224 -0.072,2.448 -0.144,3.744 l -7.56,1.872 c 0.144,-1.224 0.288,-2.52 0.504,-3.816 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path15329"
-                   d="m 211.573,56.225 c -0.072,1.224 -0.144,2.448 -0.216,3.744 l -7.704,1.872 c 0.216,-1.224 0.36,-2.448 0.504,-3.816 l 7.416,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path15331"
-                   d="m 211.501,58.097 c -0.072,1.224 -0.144,2.448 -0.288,3.744 l -7.92,1.944 c 0.288,-1.224 0.504,-2.52 0.648,-3.816 l 7.56,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path15333"
-                   d="m 211.357,59.969 c -0.072,1.224 -0.216,2.52 -0.36,3.744 l -8.136,2.016 c 0.36,-1.296 0.576,-2.52 0.792,-3.888 l 7.704,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path15335"
-                   d="m 211.213,61.841 c -0.144,1.224 -0.288,2.52 -0.432,3.744 l -8.424,2.088 c 0.36,-1.296 0.72,-2.592 0.936,-3.888 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path15337"
-                   d="m 210.997,63.713 c -0.144,1.296 -0.36,2.592 -0.648,3.816 l -8.784,2.16 c 0.576,-1.296 0.936,-2.592 1.296,-3.96 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path15339"
-                   d="m 210.781,65.585 c -0.288,1.296 -0.576,2.664 -0.936,3.888 l -9.288,2.304 c 0.72,-1.368 1.296,-2.736 1.8,-4.104 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <path
-                   id="path15341"
-                   d="m 210.349,67.529 c -0.288,1.368 -0.72,2.736 -1.296,3.96 l -9.792,2.448 c 0.936,-1.368 1.728,-2.808 2.304,-4.248 l 8.784,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0010" />
-                <path
-                   id="path15343"
-                   d="m 209.845,69.473 c -0.504,1.512 -1.152,2.952 -1.944,4.176 l -10.512,2.592 c 1.296,-1.44 2.376,-2.952 3.168,-4.464 l 9.288,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <g
-                   id="g15345">
-                  <g
-                     id="g15347">
-                    <path
-                       id="path15349"
-                       d="m 196.381,78.329 c -0.36,0 -0.72,-0.072 -1.008,-0.145 1.584,-1.367 2.808,-2.735 3.888,-4.247 l 9.792,-2.448"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path15351"
-                   d="m 207.901,73.649 c -2.304,3.312 -6.12,5.4 -12.528,4.535 0.72,-0.647 1.368,-1.295 2.016,-1.943 l 10.512,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5e00" />
-                <path
-                   id="path15353"
-                   d="m 205.669,76.025 c -2.16,1.728 -5.112,2.592 -9.288,2.304 l 9.288,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8500" />
-                <path
-                   id="path15355"
-                   d="m 195.373,78.184 3.24,0.145 2.736,-0.288 2.376,-0.792 1.872,-1.224 1.584,-1.512 1.296,-1.8 0.936,-2.016 0.72,-2.304 0.576,-2.304 0.36,-2.52 0.216,-2.448 0.216,-2.448 0.072,-2.448 0.144,-2.232 0.144,-2.088 0.216,-1.872 -1.008,0.216 -0.864,0.216 -0.792,0.288 -0.792,0.216 -0.864,0.216 -0.792,0.216 -0.936,0.288 -1.08,0.288 -0.216,1.944 -0.216,1.872 -0.216,1.872 -0.288,1.8 -0.216,1.8 -0.288,1.728 -0.36,1.656 -0.36,1.656 -0.504,1.584 -0.576,1.584 -0.72,1.512 -0.792,1.512 -1.008,1.512 -1.08,1.44 -1.296,1.368 -1.44,1.367 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g15357">
-                <path
-                   id="path15359"
-                   d="m 204.805,52.193 c 0,0 0,0 0,-0.072 -2.952,0.648 -3.888,0.936 -6.984,1.656 0,0.072 -0.072,0.072 -0.072,0.144 l 7.056,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path15361"
-                   d="m 204.733,52.481 c 0,-0.072 0,-0.216 0.072,-0.36 -2.952,0.648 -3.888,0.936 -6.984,1.656 -0.072,0.144 -0.072,0.288 -0.072,0.432 l 6.984,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path15363"
-                   d="m 204.805,52.193 c -0.072,0.216 -0.072,0.36 -0.072,0.576 l -7.056,1.8 c 0.072,-0.216 0.072,-0.432 0.072,-0.648 l 7.056,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path15365"
-                   d="m 204.733,52.481 c 0,0.216 0,0.432 -0.072,0.648 l -6.984,1.728 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 6.984,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path15367"
-                   d="m 204.733,52.769 c -0.072,0.288 -0.072,0.504 -0.072,0.72 l -7.056,1.728 c 0.072,-0.216 0.072,-0.432 0.072,-0.648 l 7.056,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path15369"
-                   d="m 204.661,53.129 c 0,0.216 0,0.432 -0.072,0.72 l -6.984,1.728 c 0,-0.288 0,-0.504 0.072,-0.72 l 6.984,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path15371"
-                   d="m 204.661,53.489 c -0.072,0.216 -0.072,0.432 -0.072,0.648 l -7.056,1.728 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 7.056,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path15373"
-                   d="m 204.589,53.849 c 0,0.144 0,0.36 0,0.576 l -7.128,1.8 c 0.072,-0.216 0.072,-0.432 0.144,-0.648 l 6.984,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path15375"
-                   d="m 204.589,54.137 c 0,0.216 -0.072,0.432 -0.072,0.648 l -7.056,1.728 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 7.056,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path15377"
-                   d="m 204.589,54.425 c -0.072,0.288 -0.072,0.504 -0.072,0.72 l -7.128,1.8 c 0.072,-0.288 0.072,-0.504 0.072,-0.72 l 7.128,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path15379"
-                   d="m 204.517,54.785 c 0,0.216 -0.072,0.432 -0.072,0.72 l -7.128,1.728 c 0.072,-0.216 0.072,-0.504 0.144,-0.72 l 7.056,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path15381"
-                   d="m 204.517,55.145 c -0.072,0.216 -0.072,0.432 -0.072,0.648 l -7.128,1.728 c 0,-0.144 0.072,-0.36 0.072,-0.576 l 7.128,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path15383"
-                   d="m 204.445,55.505 c 0,0.144 0,0.36 -0.072,0.576 l -7.128,1.8 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path15385"
-                   d="m 204.445,55.793 c -0.072,0.216 -0.072,0.432 -0.072,0.72 l -7.2,1.728 c 0.072,-0.216 0.072,-0.432 0.144,-0.72 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path15387"
-                   d="m 204.373,56.081 c 0,0.216 0,0.504 -0.072,0.72 l -7.2,1.8 c 0.072,-0.288 0.072,-0.504 0.144,-0.72 l 7.128,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path15389"
-                   d="m 204.373,56.513 c -0.072,0.216 -0.072,0.36 -0.072,0.576 l -7.2,1.8 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path15391"
-                   d="m 204.301,56.801 c 0,0.216 0,0.432 -0.072,0.648 l -7.2,1.8 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path15393"
-                   d="m 204.301,57.089 c -0.072,0.216 -0.072,0.432 -0.072,0.648 l -7.272,1.8 c 0.072,-0.216 0.072,-0.432 0.144,-0.648 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path15395"
-                   d="m 204.229,57.449 c 0,0.216 -0.072,0.432 -0.072,0.72 l -7.272,1.8 c 0.072,-0.288 0.072,-0.504 0.144,-0.72 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path15397"
-                   d="m 204.229,57.737 c -0.072,0.216 -0.072,0.504 -0.072,0.72 l -7.344,1.8 c 0.072,-0.216 0.072,-0.504 0.144,-0.72 l 7.272,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path15399"
-                   d="m 204.157,58.169 c 0,0.144 -0.072,0.36 -0.072,0.576 l -7.344,1.8 c 0.072,-0.144 0.144,-0.36 0.144,-0.576 l 7.272,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path15401"
-                   d="m 204.157,58.457 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -7.344,1.8 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path15403"
-                   d="m 204.085,58.745 c 0,0.216 -0.072,0.432 -0.072,0.648 l -7.344,1.8 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path15405"
-                   d="m 204.013,59.105 c 0,0.216 0,0.432 -0.072,0.72 l -7.416,1.8 c 0.072,-0.216 0.144,-0.504 0.144,-0.72 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path15407"
-                   d="m 204.013,59.393 c -0.072,0.216 -0.072,0.504 -0.144,0.72 l -7.416,1.872 c 0.072,-0.288 0.144,-0.504 0.216,-0.792 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path15409"
-                   d="m 203.941,59.825 c 0,0.216 -0.072,0.432 -0.072,0.648 l -7.488,1.8 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 7.416,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path15411"
-                   d="m 203.869,60.113 c 0,0.216 0,0.432 -0.072,0.648 l -7.488,1.872 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 7.416,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path15413"
-                   d="m 203.869,60.473 c -0.072,0.216 -0.072,0.36 -0.144,0.576 l -7.488,1.872 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 7.488,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path15415"
-                   d="m 203.797,60.761 c 0,0.216 -0.072,0.504 -0.072,0.72 l -7.56,1.872 c 0.072,-0.288 0.144,-0.504 0.144,-0.72 l 7.488,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path15417"
-                   d="m 203.725,61.049 c 0,0.288 -0.072,0.504 -0.072,0.72 l -7.56,1.872 c 0.072,-0.216 0.072,-0.432 0.144,-0.72 l 7.488,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path15419"
-                   d="m 203.725,61.481 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -7.56,1.872 c 0,-0.216 0.072,-0.432 0.144,-0.648 l 7.56,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path15421"
-                   d="m 203.653,61.769 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -7.632,1.872 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 7.56,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path15423"
-                   d="m 203.581,62.129 c -0.072,0.216 -0.072,0.432 -0.144,0.72 l -7.632,1.872 c 0.072,-0.216 0.144,-0.504 0.216,-0.72 l 7.56,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path15425"
-                   d="m 203.509,62.417 c 0,0.288 -0.072,0.504 -0.144,0.72 l -7.632,1.944 c 0.072,-0.288 0.144,-0.504 0.144,-0.792 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path15427"
-                   d="m 203.437,62.849 c 0,0.216 -0.072,0.432 -0.144,0.648 l -7.704,1.872 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path15429"
-                   d="m 203.365,63.137 c 0,0.216 -0.072,0.432 -0.072,0.648 l -7.776,1.944 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 7.632,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path15431"
-                   d="m 203.293,63.497 c 0,0.216 -0.072,0.432 -0.072,0.648 l -7.776,1.872 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 7.704,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path15433"
-                   d="m 203.293,63.785 c -0.072,0.216 -0.144,0.504 -0.216,0.72 l -7.776,1.944 c 0.072,-0.216 0.144,-0.504 0.216,-0.72 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path15435"
-                   d="m 203.221,64.145 c -0.072,0.216 -0.144,0.432 -0.216,0.72 l -7.776,1.944 c 0.072,-0.288 0.144,-0.504 0.216,-0.792 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path15437"
-                   d="m 203.077,64.505 c 0,0.216 -0.072,0.432 -0.144,0.648 l -7.848,1.944 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path15439"
-                   d="m 203.005,64.865 c 0,0.216 -0.072,0.432 -0.144,0.648 l -7.92,1.944 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path15441"
-                   d="m 202.933,65.153 c 0,0.216 -0.072,0.432 -0.144,0.648 l -7.92,2.016 c 0.072,-0.216 0.144,-0.432 0.216,-0.72 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path15443"
-                   d="m 202.861,65.513 c -0.072,0.216 -0.144,0.504 -0.144,0.72 l -7.992,2.016 c 0.072,-0.288 0.144,-0.504 0.216,-0.792 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path15445"
-                   d="m 202.789,65.801 c -0.072,0.288 -0.144,0.504 -0.216,0.792 l -7.992,1.944 c 0.072,-0.216 0.216,-0.504 0.288,-0.72 l 7.92,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path15447"
-                   d="m 202.717,66.233 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.064,2.016 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path15449"
-                   d="m 202.573,66.593 c 0,0.216 -0.072,0.432 -0.144,0.648 l -8.064,2.016 c 0.072,-0.288 0.144,-0.504 0.216,-0.72 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path15451"
-                   d="m 202.501,66.881 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.064,2.016 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path15453"
-                   d="m 202.429,67.241 c -0.072,0.216 -0.144,0.504 -0.216,0.72 l -8.208,2.016 c 0.144,-0.216 0.216,-0.504 0.36,-0.72 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path15455"
-                   d="m 202.285,67.529 c -0.072,0.288 -0.144,0.504 -0.216,0.792 l -8.208,2.016 c 0.144,-0.288 0.216,-0.504 0.36,-0.792 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path15457"
-                   d="m 202.213,67.961 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.28,2.088 c 0.144,-0.288 0.216,-0.504 0.288,-0.72 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path15459"
-                   d="m 202.069,68.321 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.28,2.016 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path15461"
-                   d="m 201.997,68.609 c -0.144,0.288 -0.216,0.504 -0.288,0.792 l -8.352,2.016 c 0.144,-0.216 0.288,-0.504 0.36,-0.72 l 8.28,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path15463"
-                   d="m 201.853,68.969 c -0.072,0.216 -0.144,0.504 -0.288,0.72 l -8.352,2.088 c 0.144,-0.216 0.216,-0.504 0.36,-0.792 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path15465"
-                   d="m 201.709,69.401 c -0.072,0.216 -0.144,0.432 -0.288,0.648 l -8.352,2.088 c 0.072,-0.216 0.216,-0.432 0.288,-0.72 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path15467"
-                   d="m 201.565,69.689 c -0.072,0.288 -0.144,0.504 -0.288,0.72 l -8.424,2.088 c 0.144,-0.216 0.216,-0.504 0.36,-0.72 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path15469"
-                   d="m 201.421,70.049 c -0.072,0.216 -0.144,0.432 -0.288,0.72 l -8.424,2.088 c 0.072,-0.216 0.216,-0.504 0.36,-0.72 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path15471"
-                   d="m 201.277,70.409 c -0.072,0.216 -0.216,0.504 -0.288,0.792 l -8.568,2.088 c 0.144,-0.288 0.288,-0.504 0.432,-0.792 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path15473"
-                   d="m 201.133,70.769 c -0.072,0.216 -0.216,0.504 -0.288,0.72 l -8.64,2.16 c 0.144,-0.288 0.36,-0.504 0.504,-0.792 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path15475"
-                   d="m 200.989,71.201 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -8.64,2.16 c 0.144,-0.216 0.288,-0.504 0.432,-0.72 l 8.568,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path15477"
-                   d="m 200.845,71.489 c -0.144,0.288 -0.288,0.504 -0.36,0.72 l -8.712,2.16 c 0.144,-0.216 0.288,-0.504 0.432,-0.72 l 8.64,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path15479"
-                   d="m 200.629,71.849 c -0.072,0.288 -0.216,0.504 -0.36,0.72 l -8.712,2.16 c 0.144,-0.216 0.288,-0.504 0.432,-0.72 l 8.64,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path15481"
-                   d="m 200.485,72.209 c -0.144,0.288 -0.288,0.576 -0.432,0.792 l -8.784,2.16 c 0.144,-0.216 0.36,-0.504 0.504,-0.792 l 8.712,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path15483"
-                   d="m 200.269,72.569 c -0.144,0.288 -0.288,0.504 -0.432,0.792 l -8.856,2.232 c 0.216,-0.288 0.36,-0.576 0.576,-0.864 l 8.712,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path15485"
-                   d="m 200.053,73.001 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -8.928,2.232 c 0.216,-0.288 0.36,-0.504 0.576,-0.792 l 8.784,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path15487"
-                   d="m 199.837,73.361 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -9,2.232 c 0.216,-0.216 0.432,-0.504 0.576,-0.72 l 8.856,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path15489"
-                   d="m 199.621,73.721 c -0.144,0.288 -0.288,0.504 -0.504,0.72 l -9,2.232 c 0.216,-0.216 0.36,-0.504 0.576,-0.72 l 8.928,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path15491"
-                   d="m 199.405,74.081 c -0.216,0.288 -0.432,0.576 -0.576,0.864 l -9.144,2.232 c 0.216,-0.288 0.504,-0.576 0.72,-0.864 l 9,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path15493"
-                   d="m 199.117,74.441 c -0.216,0.288 -0.36,0.576 -0.576,0.864 l -9.216,2.304 c 0.288,-0.288 0.504,-0.576 0.792,-0.936 l 9,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path15495"
-                   d="m 198.829,74.945 c -0.216,0.216 -0.432,0.504 -0.648,0.72 l -9.288,2.304 c 0.288,-0.216 0.504,-0.504 0.792,-0.792 l 9.144,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path15497"
-                   d="m 198.541,75.305 c -0.216,0.288 -0.504,0.504 -0.72,0.792 l -9.36,2.304 c 0.288,-0.288 0.576,-0.504 0.864,-0.792 l 9.216,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path15499"
-                   d="m 198.181,75.665 c -0.288,0.36 -0.504,0.648 -0.792,0.936 l -9.576,2.304 c 0.36,-0.288 0.72,-0.576 1.08,-0.936 l 9.288,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path15501"
-                   d="m 197.821,76.097 c -0.288,0.288 -0.576,0.576 -0.936,0.864 l -9.648,2.448 c 0.432,-0.288 0.792,-0.648 1.224,-1.008 l 9.36,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <g
-                   id="g15503">
-                  <g
-                     id="g15505">
-                    <path
-                       id="path15507"
-                       d="m 186.733,79.841 c 0,0 -0.072,0 -0.072,-0.072 0.36,-0.216 0.792,-0.504 1.152,-0.864 l 9.576,-2.304"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15509">
-                  <g
-                     id="g15511">
-                    <path
-                       id="path15513"
-                       d="m 187.669,79.913 c -0.36,0 -0.648,-0.072 -1.008,-0.144 0.144,-0.072 0.36,-0.216 0.576,-0.36 l 9.648,-2.448"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15515">
-                  <g
-                     id="g15517">
-                    <path
-                       id="path15519"
-                       d="m 188.749,79.913 c -0.648,0 -1.296,0 -2.016,-0.072 l 9.648,-2.448"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path15521"
-                   d="m 187.669,79.913 c 1.152,0.072 2.232,0 3.24,-0.144 1.872,-0.288 3.456,-0.936 4.824,-1.872 l -8.064,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path15523"
-                   d="m 194.941,78.401 c -1.728,1.008 -3.744,1.584 -6.192,1.512 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path15525"
-                   d="m 193.069,79.265 c -0.648,0.216 -1.368,0.432 -2.16,0.504 l 2.16,-0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path15527"
-                   d="m 186.661,79.769 2.88,0.144 2.52,-0.36 2.232,-0.792 1.944,-1.224 1.656,-1.512 1.44,-1.8 1.152,-2.088 1.008,-2.232 0.864,-2.304 0.648,-2.448 0.504,-2.376 0.36,-2.448 0.36,-2.304 0.216,-2.16 0.216,-2.016 0.144,-1.728 -1.008,0.216 -0.864,0.216 -0.792,0.216 -0.792,0.144 -0.72,0.216 -0.792,0.144 -0.936,0.288 -1.08,0.216 -0.36,2.808 -0.432,2.664 -0.504,2.448 -0.504,2.304 -0.576,2.088 -0.648,2.016 -0.72,1.728 -0.72,1.656 -0.72,1.512 -0.792,1.368 -0.864,1.152 -0.792,1.08 -0.864,1.008 -0.864,0.792 -0.936,0.72 -0.864,0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g15529">
-                <path
-                   id="path15531"
-                   d="m 197.605,55.433 c 0.072,-0.576 0.216,-1.08 0.288,-1.584 -2.376,0.36 -4.464,1.152 -6.984,1.656 0,0.504 -0.072,1.008 -0.144,1.584 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path15533"
-                   d="m 197.317,57.233 c 0.216,-1.224 0.36,-2.376 0.576,-3.384 -2.376,0.36 -4.464,1.152 -6.984,1.656 0,1.008 -0.144,2.16 -0.432,3.384 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path15535"
-                   d="m 197.605,55.433 c -0.144,1.08 -0.36,2.304 -0.576,3.672 l -6.912,1.656 c 0.288,-1.296 0.576,-2.52 0.648,-3.672 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path15537"
-                   d="m 197.317,57.233 c -0.144,1.152 -0.432,2.448 -0.648,3.744 l -7.128,1.8 c 0.432,-1.368 0.72,-2.664 0.936,-3.888 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path15539"
-                   d="m 197.029,59.105 c -0.216,1.152 -0.504,2.448 -0.792,3.744 l -7.344,1.8 c 0.504,-1.296 0.864,-2.592 1.224,-3.888 l 6.912,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path15541"
-                   d="m 196.669,60.977 c -0.288,1.224 -0.576,2.52 -0.936,3.744 l -7.56,1.872 c 0.504,-1.296 0.936,-2.592 1.368,-3.816 l 7.128,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path15543"
-                   d="m 196.237,62.849 c -0.288,1.224 -0.648,2.52 -1.008,3.744 l -7.92,1.944 c 0.576,-1.296 1.152,-2.592 1.584,-3.888 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path15545"
-                   d="m 195.733,64.721 c -0.288,1.296 -0.72,2.592 -1.152,3.816 l -8.208,2.016 c 0.648,-1.296 1.224,-2.592 1.8,-3.96 l 7.56,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path15547"
-                   d="m 195.229,66.593 c -0.432,1.368 -0.936,2.664 -1.44,3.888 l -8.496,2.088 c 0.72,-1.296 1.44,-2.592 2.016,-4.032 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path15549"
-                   d="m 194.581,68.537 c -0.504,1.368 -1.08,2.664 -1.728,3.96 l -8.784,2.16 c 0.792,-1.296 1.584,-2.664 2.304,-4.104 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <path
-                   id="path15551"
-                   d="m 193.789,70.481 c -0.648,1.512 -1.368,2.88 -2.232,4.176 l -9,2.16 c 0.936,-1.224 1.872,-2.664 2.736,-4.248 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0010" />
-                <path
-                   id="path15553"
-                   d="m 192.853,72.497 c -0.864,1.584 -1.872,3.024 -3.024,4.32 l -9.216,2.304 c 1.224,-1.224 2.376,-2.736 3.456,-4.464 l 8.784,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <g
-                   id="g15555">
-                  <g
-                     id="g15557">
-                    <path
-                       id="path15559"
-                       d="m 179.965,80.993 c -0.504,0 -1.008,-0.072 -1.512,-0.144 1.368,-0.864 2.736,-2.304 4.104,-4.032 l 9,-2.16"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path15561"
-                   d="m 189.829,76.817 c -2.664,2.952 -6.408,4.752 -11.376,4.032 0.72,-0.432 1.44,-1.008 2.16,-1.728 l 9.216,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5e00" />
-                <path
-                   id="path15563"
-                   d="m 186.805,79.337 c -1.944,1.152 -4.176,1.728 -6.84,1.656 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8500" />
-                <path
-                   id="path15565"
-                   d="m 178.453,80.849 2.736,0.144 2.448,-0.36 2.16,-0.792 2.016,-1.152 1.656,-1.512 1.512,-1.728 1.296,-2.016 1.152,-2.16 1.008,-2.232 0.792,-2.376 0.648,-2.376 0.576,-2.376 0.504,-2.232 0.36,-2.16 0.288,-1.944 0.288,-1.728 -0.864,0.144 -0.864,0.216 -0.864,0.216 -0.864,0.216 -0.864,0.216 -0.864,0.216 -0.864,0.216 -0.936,0.216 -0.072,1.368 -0.216,1.512 -0.288,1.584 -0.504,1.728 -0.504,1.872 -0.72,1.8 -0.72,1.944 -0.792,1.872 -0.936,1.872 -1.008,1.8 -1.008,1.656 -1.08,1.584 -1.08,1.512 -1.152,1.296 -1.224,1.08 -1.152,0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g15567">
-                <path
-                   id="path15569"
-                   d="m 190.909,55.577 c 0,0 0,0 0,-0.072 -2.808,0.576 -5.472,1.368 -7.92,1.8 -0.072,0.072 -0.072,0.144 -0.072,0.216 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path15571"
-                   d="m 190.909,55.865 c 0,-0.144 0,-0.288 0,-0.36 -2.808,0.576 -5.472,1.368 -7.92,1.8 -0.072,0.216 -0.144,0.36 -0.144,0.576 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path15573"
-                   d="m 190.909,55.577 c 0,0.072 0,0.288 -0.072,0.576 l -8.136,2.016 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path15575"
-                   d="m 190.909,55.865 c 0,0.144 -0.072,0.36 -0.072,0.648 l -8.208,2.016 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path15577"
-                   d="m 190.837,56.153 c 0,0.216 0,0.432 -0.072,0.648 l -8.208,2.016 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path15579"
-                   d="m 190.837,56.513 c 0,0.144 -0.072,0.36 -0.072,0.576 l -8.28,2.088 c 0.072,-0.216 0.072,-0.432 0.144,-0.648 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path15581"
-                   d="m 190.765,56.801 c 0,0.216 -0.072,0.432 -0.072,0.648 l -8.28,2.016 c 0,-0.216 0.072,-0.432 0.144,-0.648 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path15583"
-                   d="m 190.765,57.089 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -8.352,2.088 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.28,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path15585"
-                   d="m 190.693,57.449 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -8.352,2.016 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path15587"
-                   d="m 190.621,57.737 c 0,0.216 -0.072,0.36 -0.144,0.576 l -8.352,2.088 c 0.072,-0.216 0.144,-0.432 0.144,-0.576 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path15589"
-                   d="m 190.549,58.097 c 0,0.144 -0.072,0.36 -0.072,0.576 l -8.424,2.088 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path15591"
-                   d="m 190.477,58.313 c 0,0.216 -0.072,0.432 -0.072,0.648 l -8.424,2.088 c 0.072,-0.216 0.072,-0.432 0.144,-0.648 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path15593"
-                   d="m 190.477,58.673 c -0.072,0.216 -0.144,0.432 -0.144,0.648 l -8.424,2.088 c 0,-0.216 0.072,-0.432 0.144,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path15595"
-                   d="m 190.405,58.961 c -0.072,0.216 -0.144,0.432 -0.144,0.648 l -8.496,2.088 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path15597"
-                   d="m 190.333,59.321 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.424,2.088 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path15599"
-                   d="m 190.261,59.609 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.424,2.088 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path15601"
-                   d="m 190.117,59.969 c 0,0.216 -0.072,0.432 -0.144,0.648 l -8.424,2.088 c 0,-0.216 0.072,-0.432 0.144,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path15603"
-                   d="m 190.045,60.257 c 0,0.216 -0.072,0.432 -0.144,0.648 l -8.496,2.16 c 0.072,-0.288 0.144,-0.504 0.216,-0.72 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path15605"
-                   d="m 189.973,60.617 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -8.496,2.088 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path15607"
-                   d="m 189.901,60.905 c -0.072,0.216 -0.144,0.432 -0.144,0.648 l -8.496,2.16 c 0.072,-0.216 0.072,-0.432 0.144,-0.72 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path15609"
-                   d="m 189.829,61.265 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.496,2.088 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path15611"
-                   d="m 189.757,61.553 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.496,2.088 c 0.072,-0.216 0.144,-0.36 0.216,-0.576 l 8.496,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path15613"
-                   d="m 189.613,61.913 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -8.496,2.088 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path15615"
-                   d="m 189.541,62.201 c -0.072,0.216 -0.144,0.432 -0.216,0.72 l -8.496,2.016 c 0.073,-0.216 0.144,-0.432 0.216,-0.648 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path15617"
-                   d="m 189.469,62.561 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.496,2.088 c 0.072,-0.216 0.145,-0.432 0.216,-0.648 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path15619"
-                   d="m 189.325,62.921 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.424,2.088 c 0.072,-0.216 0.072,-0.432 0.144,-0.72 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path15621"
-                   d="m 189.253,63.209 c -0.072,0.216 -0.144,0.432 -0.216,0.576 l -8.496,2.16 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path15623"
-                   d="m 189.109,63.569 c 0,0.144 -0.072,0.36 -0.144,0.576 l -8.496,2.088 c 0.072,-0.216 0.144,-0.432 0.216,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path15625"
-                   d="m 189.037,63.785 c -0.072,0.216 -0.144,0.504 -0.216,0.72 l -8.496,2.088 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.496,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path15627"
-                   d="m 188.965,64.145 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.496,2.088 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path15629"
-                   d="m 188.821,64.505 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.424,2.088 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path15631"
-                   d="m 188.749,64.793 c -0.072,0.216 -0.144,0.432 -0.216,0.72 l -8.496,2.088 c 0.072,-0.216 0.144,-0.504 0.216,-0.72 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path15633"
-                   d="m 188.605,65.153 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.496,2.088 c 0.072,-0.216 0.144,-0.432 0.288,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path15635"
-                   d="m 188.533,65.513 c -0.144,0.216 -0.216,0.432 -0.288,0.648 l -8.424,2.088 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path15637"
-                   d="m 188.389,65.801 c -0.072,0.216 -0.144,0.432 -0.288,0.72 l -8.424,2.088 c 0.072,-0.288 0.144,-0.504 0.216,-0.72 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path15639"
-                   d="m 188.245,66.161 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.424,2.088 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path15641"
-                   d="m 188.101,66.521 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.424,2.016 c 0.072,-0.216 0.144,-0.432 0.216,-0.576 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path15643"
-                   d="m 188.029,66.809 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -8.424,2.088 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path15645"
-                   d="m 187.885,67.169 c -0.072,0.216 -0.144,0.432 -0.288,0.648 l -8.352,2.088 c 0.072,-0.216 0.145,-0.504 0.216,-0.72 l 8.424,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path15647"
-                   d="m 187.741,67.457 c -0.072,0.288 -0.144,0.504 -0.288,0.72 l -8.352,2.016 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path15649"
-                   d="m 187.597,67.817 c -0.072,0.216 -0.144,0.432 -0.288,0.72 l -8.352,2.016 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path15651"
-                   d="m 187.453,68.177 c -0.072,0.216 -0.144,0.432 -0.288,0.648 l -8.352,2.088 c 0.144,-0.216 0.216,-0.504 0.288,-0.72 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path15653"
-                   d="m 187.309,68.537 c -0.072,0.216 -0.144,0.432 -0.288,0.648 l -8.28,2.016 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path15655"
-                   d="m 187.165,68.825 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -8.352,2.016 c 0.072,-0.144 0.144,-0.36 0.216,-0.576 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path15657"
-                   d="m 187.021,69.185 c -0.072,0.216 -0.143,0.432 -0.288,0.648 l -8.28,2.016 c 0.072,-0.216 0.144,-0.432 0.288,-0.648 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path15659"
-                   d="m 186.949,69.473 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -8.28,2.088 c 0.072,-0.216 0.216,-0.432 0.288,-0.72 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path15661"
-                   d="m 186.733,69.833 c -0.072,0.216 -0.144,0.432 -0.288,0.648 l -8.28,2.088 c 0.072,-0.216 0.216,-0.504 0.288,-0.72 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path15663"
-                   d="m 186.589,70.121 c -0.072,0.288 -0.216,0.504 -0.288,0.72 l -8.28,2.016 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 8.28,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path15665"
-                   d="m 186.445,70.481 c -0.144,0.216 -0.216,0.504 -0.36,0.72 l -8.207,2.016 c 0.071,-0.216 0.215,-0.432 0.287,-0.648 l 8.28,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path15667"
-                   d="m 186.301,70.841 c -0.144,0.216 -0.288,0.432 -0.36,0.72 l -8.208,2.016 c 0.072,-0.216 0.145,-0.432 0.288,-0.72 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path15669"
-                   d="m 186.085,71.201 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -8.208,2.016 c 0.072,-0.216 0.144,-0.432 0.289,-0.648 l 8.207,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path15671"
-                   d="m 185.941,71.561 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -8.208,2.016 c 0.144,-0.216 0.216,-0.432 0.36,-0.648 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path15673"
-                   d="m 185.797,71.849 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -8.136,2.016 c 0.144,-0.216 0.216,-0.504 0.36,-0.72 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path15675"
-                   d="m 185.581,72.209 c -0.144,0.216 -0.288,0.504 -0.36,0.72 l -8.136,2.016 c 0.072,-0.288 0.216,-0.504 0.288,-0.72 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path15677"
-                   d="m 185.365,72.569 c -0.072,0.216 -0.216,0.504 -0.36,0.72 l -8.136,1.944 c 0.144,-0.216 0.216,-0.432 0.36,-0.648 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path15679"
-                   d="m 185.221,72.929 c -0.144,0.216 -0.288,0.432 -0.432,0.72 l -8.064,1.944 c 0.072,-0.216 0.216,-0.432 0.36,-0.648 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path15681"
-                   d="m 185.005,73.289 c -0.144,0.216 -0.288,0.432 -0.432,0.72 l -8.064,1.944 c 0.144,-0.216 0.216,-0.432 0.36,-0.72 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path15683"
-                   d="m 184.789,73.649 c -0.144,0.216 -0.288,0.432 -0.432,0.72 l -8.064,1.944 c 0.144,-0.216 0.288,-0.432 0.432,-0.72 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path15685"
-                   d="m 184.573,74.009 c -0.144,0.216 -0.288,0.432 -0.432,0.72 l -8.064,1.944 c 0.144,-0.216 0.288,-0.432 0.432,-0.72 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path15687"
-                   d="m 184.357,74.369 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -7.992,2.016 c 0.072,-0.288 0.216,-0.504 0.36,-0.72 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path15689"
-                   d="m 184.141,74.729 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -8.064,2.016 c 0.144,-0.288 0.288,-0.504 0.432,-0.72 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path15691"
-                   d="m 183.925,75.017 c -0.144,0.216 -0.36,0.504 -0.504,0.72 l -7.992,2.016 c 0.144,-0.288 0.288,-0.504 0.504,-0.72 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path15693"
-                   d="m 183.709,75.377 c -0.216,0.288 -0.36,0.504 -0.576,0.72 l -7.92,2.016 c 0.144,-0.288 0.288,-0.504 0.432,-0.72 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path15695"
-                   d="m 183.421,75.737 c -0.144,0.288 -0.36,0.504 -0.504,0.792 l -7.992,1.944 c 0.144,-0.216 0.36,-0.504 0.504,-0.72 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path15697"
-                   d="m 183.133,76.097 c -0.144,0.288 -0.36,0.504 -0.504,0.72 l -7.92,1.944 c 0.144,-0.216 0.288,-0.432 0.504,-0.648 l 7.92,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path15699"
-                   d="m 182.917,76.529 c -0.216,0.216 -0.432,0.432 -0.576,0.648 l -7.92,1.944 c 0.144,-0.216 0.36,-0.432 0.504,-0.648 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path15701"
-                   d="m 182.629,76.817 c -0.216,0.288 -0.432,0.504 -0.648,0.792 l -7.92,1.944 c 0.216,-0.288 0.432,-0.504 0.648,-0.792 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path15703"
-                   d="m 182.341,77.177 c -0.216,0.288 -0.432,0.576 -0.648,0.792 l -7.992,1.944 c 0.288,-0.216 0.504,-0.504 0.72,-0.792 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path15705"
-                   d="m 181.981,77.609 c -0.216,0.288 -0.432,0.504 -0.648,0.792 l -7.992,1.944 c 0.288,-0.288 0.504,-0.504 0.72,-0.792 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path15707"
-                   d="m 181.693,77.969 c -0.288,0.288 -0.504,0.576 -0.791,0.792 l -7.993,1.944 c 0.288,-0.216 0.576,-0.504 0.792,-0.792 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path15709"
-                   d="m 181.333,78.401 c -0.288,0.216 -0.576,0.504 -0.792,0.792 l -8.136,1.944 c 0.288,-0.216 0.648,-0.504 0.936,-0.792 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path15711"
-                   d="m 180.902,78.761 c -0.289,0.288 -0.577,0.576 -0.865,0.864 l -8.352,2.016 c 0.432,-0.288 0.864,-0.576 1.224,-0.936 l 7.993,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path15713"
-                   d="m 180.541,79.193 c -0.36,0.288 -0.648,0.576 -1.008,0.864 l -9.072,2.16 c 0.648,-0.216 1.296,-0.576 1.944,-1.008 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <g
-                   id="g15715">
-                  <g
-                     id="g15717">
-                    <path
-                       id="path15719"
-                       d="m 170.029,82.649 c -0.216,0 -0.432,-0.072 -0.576,-0.144 0.792,-0.072 1.512,-0.432 2.232,-0.864 l 8.352,-2.016"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15721">
-                  <g
-                     id="g15723">
-                    <path
-                       id="path15725"
-                       d="m 170.821,82.793 c -0.504,-0.072 -0.936,-0.144 -1.368,-0.288 0.36,0 0.648,-0.144 1.008,-0.288 l 9.072,-2.16"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15727">
-                  <g
-                     id="g15729">
-                    <path
-                       id="path15731"
-                       d="m 171.757,82.865 c -0.576,0 -1.152,-0.072 -1.728,-0.216 l 8.928,-2.16"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15733">
-                  <g
-                     id="g15735">
-                    <path
-                       id="path15737"
-                       d="m 173.125,82.793 c -0.792,0.072 -1.512,0.072 -2.304,0 l 7.488,-1.872"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path15739"
-                   d="m 177.445,81.497 c -1.728,0.936 -3.6,1.44 -5.688,1.368 l 5.688,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path15741"
-                   d="m 176.221,82.073 c -1.008,0.36 -2.016,0.648 -3.096,0.72 l 3.096,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path15743"
-                   d="m 169.453,82.505 2.808,0.36 2.592,-0.36 2.376,-0.936 2.161,-1.44 2.015,-1.8 1.728,-2.16 1.584,-2.448 1.44,-2.52 1.152,-2.664 1.008,-2.592 0.864,-2.448 0.72,-2.376 0.432,-2.016 0.36,-1.656 0.216,-1.224 0,-0.72 -1.08,0.216 -1.008,0.216 -1.008,0.288 -1.008,0.216 -1.008,0.288 -0.936,0.216 -0.936,0.216 -0.936,0.144 -0.36,1.224 -0.36,1.44 -0.432,1.656 -0.504,1.872 -0.576,1.944 -0.648,2.016 -0.719,2.016 -0.793,2.088 -0.864,2.016 -0.936,1.872 -1.008,1.8 -1.08,1.584 -1.224,1.368 -1.224,1.08 -1.368,0.792 -1.44,0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g15745">
-                <path
-                   id="path15747"
-                   d="m 182.053,57.593 c -1.872,0.288 -3.384,0.72 -4.824,0.864 -0.072,0.144 -0.072,0.216 -0.072,0.36 l 4.896,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path15749"
-                   d="m 182.701,57.737 c 0,-0.072 0,-0.144 0.072,-0.288 -2.232,0.288 -3.888,0.792 -5.544,1.008 -0.072,0.216 -0.072,0.432 -0.144,0.648 l 5.616,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path15751"
-                   d="m 182.629,57.953 c 0,-0.144 0.072,-0.288 0.144,-0.504 -0.288,0.072 -0.504,0.072 -0.72,0.144 l -4.896,1.224 c 0,0.144 -0.072,0.36 -0.072,0.504 l 5.544,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path15753"
-                   d="m 182.701,57.737 c -0.072,0.144 -0.144,0.36 -0.144,0.576 l -5.544,1.368 c 0.072,-0.216 0.072,-0.36 0.072,-0.576 l 5.616,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path15755"
-                   d="m 182.629,57.953 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -5.472,1.368 c 0.072,-0.216 0.072,-0.432 0.144,-0.648 l 5.544,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path15757"
-                   d="m 182.557,58.313 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -5.4,1.368 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 5.544,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path15759"
-                   d="m 182.413,58.601 c 0,0.216 -0.072,0.432 -0.144,0.648 l -5.4,1.368 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 5.472,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path15761"
-                   d="m 182.341,58.961 c 0,0.216 -0.072,0.36 -0.144,0.576 l -5.4,1.368 c 0.072,-0.216 0.072,-0.432 0.144,-0.576 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path15763"
-                   d="m 182.269,59.249 c 0,0.216 -0.072,0.432 -0.144,0.576 l -5.4,1.368 c 0.072,-0.216 0.144,-0.36 0.144,-0.576 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path15765"
-                   d="m 182.197,59.537 c 0,0.216 -0.072,0.432 -0.144,0.648 l -5.328,1.368 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path15767"
-                   d="m 182.125,59.825 c 0,0.216 -0.072,0.432 -0.144,0.648 l -5.328,1.368 c 0,-0.216 0.072,-0.432 0.072,-0.648 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path15769"
-                   d="m 182.053,60.185 c 0,0.216 -0.072,0.36 -0.144,0.576 l -5.328,1.296 c 0,-0.144 0.072,-0.36 0.144,-0.504 l 5.328,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path15771"
-                   d="m 181.981,60.473 c 0,0.216 -0.072,0.432 -0.144,0.648 l -5.328,1.296 c 0,-0.216 0.072,-0.432 0.144,-0.576 l 5.328,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path15773"
-                   d="m 181.909,60.761 c 0,0.216 -0.072,0.432 -0.144,0.648 l -5.328,1.296 c 0.072,-0.216 0.072,-0.432 0.144,-0.648 l 5.328,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path15775"
-                   d="m 181.837,61.121 c 0,0.144 -0.072,0.36 -0.144,0.576 l -5.328,1.296 c 0.072,-0.144 0.072,-0.36 0.144,-0.576 l 5.328,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path15777"
-                   d="m 181.765,61.409 c -0.072,0.216 -0.072,0.36 -0.144,0.576 l -5.328,1.296 c 0.072,-0.144 0.072,-0.36 0.144,-0.576 l 5.328,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path15779"
-                   d="m 181.693,61.697 c -0.072,0.216 -0.072,0.432 -0.144,0.576 l -5.328,1.368 c 0.072,-0.216 0.072,-0.432 0.144,-0.648 l 5.328,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path15781"
-                   d="m 181.621,61.985 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -5.328,1.296 c 0,-0.216 0.072,-0.432 0.144,-0.648 l 5.328,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path15783"
-                   d="m 181.549,62.273 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -5.4,1.368 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 5.328,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path15785"
-                   d="m 181.477,62.633 c -0.072,0.216 -0.144,0.432 -0.144,0.648 l -5.4,1.296 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 5.328,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path15787"
-                   d="m 181.405,62.921 c -0.072,0.216 -0.144,0.432 -0.144,0.576 l -5.4,1.368 c 0.072,-0.216 0.144,-0.432 0.144,-0.576 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path15789"
-                   d="m 181.333,63.281 c -0.072,0.144 -0.144,0.36 -0.216,0.576 l -5.328,1.296 c 0,-0.144 0.072,-0.36 0.144,-0.576 l 5.4,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path15791"
-                   d="m 181.261,63.497 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -5.4,1.368 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path15793"
-                   d="m 181.117,63.857 c 0,0.216 -0.072,0.432 -0.144,0.648 l -5.4,1.296 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 5.328,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path15795"
-                   d="m 181.045,64.145 c 0,0.216 -0.072,0.432 -0.143,0.576 l -5.401,1.368 c 0,-0.216 0.072,-0.36 0.144,-0.576 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path15797"
-                   d="m 180.973,64.505 c -0.071,0.216 -0.071,0.36 -0.144,0.576 l -5.472,1.368 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 5.4,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path15799"
-                   d="m 180.902,64.721 c -0.073,0.288 -0.145,0.504 -0.145,0.72 l -5.544,1.296 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 5.401,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path15801"
-                   d="m 180.829,65.081 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -5.472,1.368 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 5.472,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path15803"
-                   d="m 180.757,65.441 c -0.072,0.144 -0.144,0.36 -0.216,0.576 l -5.544,1.368 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path15805"
-                   d="m 180.613,65.729 c -0.072,0.216 -0.072,0.432 -0.144,0.576 l -5.544,1.368 c 0.072,-0.144 0.144,-0.36 0.216,-0.576 l 5.472,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path15807"
-                   d="m 180.541,66.017 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -5.544,1.368 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 5.544,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path15809"
-                   d="m 180.469,66.305 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -5.616,1.368 c 0.072,-0.216 0.144,-0.432 0.288,-0.648 l 5.544,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path15811"
-                   d="m 180.325,66.665 c 0,0.216 -0.072,0.432 -0.144,0.648 l -5.688,1.368 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 5.544,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path15813"
-                   d="m 180.253,66.953 c -0.072,0.216 -0.144,0.432 -0.144,0.648 l -5.76,1.368 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 5.616,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path15815"
-                   d="m 180.181,67.313 c -0.072,0.216 -0.144,0.36 -0.216,0.576 l -5.76,1.44 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 5.688,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path15817"
-                   d="m 180.109,67.601 c -0.072,0.144 -0.144,0.36 -0.216,0.576 l -5.832,1.44 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 5.76,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path15819"
-                   d="m 179.965,67.889 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -5.832,1.44 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 5.76,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path15821"
-                   d="m 179.893,68.177 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -5.904,1.44 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 5.832,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path15823"
-                   d="m 179.749,68.537 c -0.072,0.216 -0.144,0.432 -0.216,0.576 l -5.904,1.512 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 5.832,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path15825"
-                   d="m 179.677,68.825 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -5.976,1.44 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 5.904,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path15827"
-                   d="m 179.533,69.113 c -0.072,0.216 -0.143,0.432 -0.216,0.648 l -6.048,1.512 c 0.145,-0.216 0.216,-0.432 0.36,-0.648 l 5.904,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path15829"
-                   d="m 179.461,69.473 c -0.071,0.216 -0.144,0.36 -0.216,0.576 l -6.12,1.512 c 0.144,-0.216 0.216,-0.432 0.36,-0.648 l 5.976,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path15831"
-                   d="m 179.317,69.761 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -6.192,1.512 c 0.144,-0.216 0.288,-0.432 0.36,-0.648 l 6.048,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path15833"
-                   d="m 179.245,70.049 c -0.144,0.216 -0.216,0.504 -0.288,0.72 l -6.264,1.512 c 0.144,-0.216 0.288,-0.432 0.432,-0.72 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path15835"
-                   d="m 179.101,70.409 c -0.072,0.216 -0.144,0.432 -0.288,0.648 l -6.264,1.512 c 0.144,-0.216 0.288,-0.432 0.36,-0.648 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path15837"
-                   d="m 178.957,70.769 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -6.408,1.512 c 0.144,-0.216 0.288,-0.432 0.36,-0.648 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path15839"
-                   d="m 178.813,71.057 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -6.479,1.584 c 0.144,-0.216 0.288,-0.432 0.432,-0.72 l 6.263,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path15841"
-                   d="m 178.741,71.417 c -0.144,0.216 -0.216,0.432 -0.288,0.576 l -6.551,1.656 c 0.143,-0.216 0.287,-0.432 0.431,-0.72 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path15843"
-                   d="m 178.597,71.705 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -6.624,1.584 c 0.144,-0.216 0.288,-0.432 0.432,-0.648 l 6.48,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path15845"
-                   d="m 178.453,71.993 c -0.072,0.216 -0.216,0.504 -0.288,0.72 l -6.696,1.584 c 0.144,-0.216 0.288,-0.432 0.433,-0.648 l 6.551,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path15847"
-                   d="m 178.309,72.353 c -0.072,0.216 -0.144,0.432 -0.288,0.648 l -6.84,1.656 c 0.216,-0.216 0.36,-0.432 0.504,-0.72 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path15849"
-                   d="m 178.165,72.713 c -0.072,0.216 -0.216,0.36 -0.287,0.576 l -6.913,1.728 c 0.144,-0.216 0.288,-0.432 0.504,-0.72 l 6.696,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path15851"
-                   d="m 178.021,73.001 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -7.056,1.728 c 0.216,-0.216 0.36,-0.504 0.504,-0.72 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path15853"
-                   d="m 177.878,73.289 c -0.073,0.216 -0.217,0.504 -0.289,0.72 l -7.199,1.728 c 0.215,-0.216 0.359,-0.504 0.575,-0.72 l 6.913,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path15855"
-                   d="m 177.733,73.649 c -0.072,0.216 -0.216,0.432 -0.288,0.576 l -7.272,1.8 c 0.144,-0.216 0.36,-0.432 0.504,-0.648 l 7.056,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path15857"
-                   d="m 177.589,74.009 c -0.144,0.216 -0.216,0.36 -0.36,0.576 l -7.416,1.872 c 0.216,-0.216 0.432,-0.504 0.577,-0.72 l 7.199,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path15859"
-                   d="m 177.445,74.225 c -0.144,0.288 -0.288,0.504 -0.36,0.72 l -7.56,1.8 c 0.216,-0.216 0.432,-0.432 0.648,-0.72 l 7.272,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path15861"
-                   d="m 177.229,74.585 c -0.072,0.216 -0.216,0.504 -0.36,0.72 l -7.632,1.872 c 0.216,-0.288 0.432,-0.504 0.576,-0.72 l 7.416,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path15863"
-                   d="m 177.085,74.945 c -0.144,0.216 -0.288,0.432 -0.432,0.72 l -7.775,1.872 c 0.215,-0.216 0.431,-0.504 0.647,-0.792 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path15865"
-                   d="m 176.869,75.305 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -7.992,1.944 c 0.216,-0.216 0.432,-0.504 0.72,-0.72 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path15867"
-                   d="m 176.653,75.665 c -0.072,0.216 -0.216,0.36 -0.36,0.576 l -8.136,2.016 c 0.216,-0.216 0.432,-0.432 0.721,-0.72 l 7.775,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path15869"
-                   d="m 176.509,75.953 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -8.352,2.088 c 0.288,-0.288 0.504,-0.505 0.792,-0.792 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path15871"
-                   d="m 176.293,76.241 c -0.144,0.288 -0.288,0.504 -0.432,0.72 l -8.568,2.16 c 0.288,-0.288 0.576,-0.576 0.864,-0.864 l 8.136,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path15873"
-                   d="m 176.077,76.601 c -0.144,0.288 -0.288,0.504 -0.432,0.72 l -8.856,2.16 c 0.288,-0.216 0.648,-0.504 0.936,-0.792 l 8.352,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path15875"
-                   d="m 175.861,76.961 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -9.072,2.232 c 0.288,-0.216 0.576,-0.504 0.936,-0.72 l 8.568,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path15877"
-                   d="m 175.645,77.321 c -0.144,0.216 -0.36,0.432 -0.504,0.72 l -9.36,2.232 c 0.36,-0.216 0.648,-0.504 1.008,-0.792 l 8.856,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path15879"
-                   d="m 175.429,77.609 c -0.216,0.288 -0.432,0.504 -0.576,0.792 l -9.72,2.376 c 0.432,-0.288 0.864,-0.576 1.224,-0.936 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path15881"
-                   d="m 175.141,78.041 c -0.216,0.216 -0.36,0.432 -0.576,0.72 l -10.08,2.448 c 0.432,-0.288 0.864,-0.576 1.296,-0.936 l 9.36,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path15883"
-                   d="m 174.853,78.401 c -0.216,0.216 -0.432,0.504 -0.648,0.72 l -10.584,2.592 c 0.504,-0.288 1.008,-0.576 1.512,-0.936 l 9.72,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path15885"
-                   d="m 174.565,78.689 c -0.216,0.288 -0.432,0.504 -0.648,0.792 l -11.015,2.664 c 0.503,-0.288 1.079,-0.576 1.583,-0.936 l 10.08,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <g
-                   id="g15887">
-                  <g
-                     id="g15889">
-                    <path
-                       id="path15891"
-                       d="m 163.405,82.361 c -0.216,-0.072 -0.36,-0.144 -0.503,-0.216 0.215,-0.144 0.503,-0.288 0.719,-0.432 l 10.584,-2.592"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15893">
-                  <g
-                     id="g15895">
-                    <path
-                       id="path15897"
-                       d="m 163.981,82.505 c -0.36,-0.072 -0.72,-0.216 -1.079,-0.36 l 11.015,-2.664"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15899">
-                  <g
-                     id="g15901">
-                    <path
-                       id="path15903"
-                       d="m 164.629,82.649 c -0.432,-0.072 -0.792,-0.216 -1.224,-0.288 l 10.08,-2.52"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15905">
-                  <g
-                     id="g15907">
-                    <path
-                       id="path15909"
-                       d="m 165.205,82.721 c -0.36,0 -0.791,-0.144 -1.224,-0.216 l 9.072,-2.232"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15911">
-                  <g
-                     id="g15913">
-                    <path
-                       id="path15915"
-                       d="m 166.069,82.793 c -0.504,0 -0.936,-0.072 -1.44,-0.144 l 7.992,-1.944"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g15917">
-                  <g
-                     id="g15919">
-                    <path
-                       id="path15921"
-                       d="m 167.293,82.793 c -0.648,0.072 -1.367,0.072 -2.088,-0.072 l 6.912,-1.656"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path15923"
-                   d="m 171.397,81.497 c -1.584,0.936 -3.312,1.44 -5.4,1.368 l 5.4,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path15925"
-                   d="m 170.245,82.073 c -0.936,0.432 -1.872,0.648 -2.952,0.72 l 2.952,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path15927"
-                   d="m 162.902,82.145 2.591,0.576 2.304,0 2.088,-0.504 1.944,-1.008 1.656,-1.368 1.512,-1.657 1.368,-2.015 1.224,-2.16 1.008,-2.304 0.936,-2.376 0.72,-2.376 0.72,-2.304 0.576,-2.16 0.432,-1.944 0.432,-1.728 0.36,-1.368 -0.792,0.144 -0.792,0.072 -0.72,0.144 -0.648,0.144 -0.72,0.144 -0.648,0.144 -0.575,0.144 -0.649,0.072 -0.216,1.656 -0.36,1.728 -0.432,1.728 -0.432,1.656 -0.576,1.728 -0.648,1.656 -0.72,1.584 -0.864,1.584 -0.864,1.584 -1.008,1.512 -1.152,1.44 -1.152,1.296 -1.368,1.296 -1.368,1.152 -1.512,1.08 -1.655,1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g15929">
-                <path
-                   id="path15931"
-                   d="m 176.869,60.401 c 0.144,-0.576 0.216,-1.224 0.36,-1.944 -2.52,0.576 -5.112,0.864 -7.416,1.44 -0.288,0.864 -0.504,1.656 -0.72,2.448 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path15933"
-                   d="m 177.157,58.745 c -0.144,1.224 -0.36,2.304 -0.648,3.456 l -7.848,1.944 c 0.288,-1.152 0.576,-2.304 0.936,-3.528 l 7.56,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path15935"
-                   d="m 176.869,60.401 c -0.216,1.224 -0.432,2.376 -0.792,3.528 l -7.848,1.944 c 0.288,-1.152 0.576,-2.304 0.864,-3.528 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path15937"
-                   d="m 176.509,62.201 c -0.216,1.224 -0.576,2.376 -0.936,3.528 l -7.848,1.944 c 0.36,-1.152 0.648,-2.376 0.936,-3.528 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path15939"
-                   d="m 176.077,63.929 c -0.288,1.224 -0.648,2.376 -1.152,3.528 l -7.776,1.944 c 0.432,-1.152 0.792,-2.376 1.08,-3.528 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path15941"
-                   d="m 175.573,65.729 c -0.432,1.224 -0.864,2.448 -1.368,3.6 l -7.776,1.944 c 0.576,-1.224 0.936,-2.376 1.296,-3.6 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path15943"
-                   d="m 174.997,67.457 c -0.504,1.368 -1.08,2.592 -1.728,3.816 l -7.776,1.944 c 0.72,-1.296 1.224,-2.52 1.656,-3.816 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path15945"
-                   d="m 174.205,69.329 c -0.576,1.368 -1.224,2.592 -1.944,3.816 l -7.92,1.944 c 0.864,-1.296 1.585,-2.52 2.088,-3.816 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path15947"
-                   d="m 173.269,71.273 c -0.72,1.368 -1.512,2.664 -2.376,3.816 l -8.208,2.088 c 1.152,-1.368 2.088,-2.664 2.808,-3.96 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <path
-                   id="path15949"
-                   d="m 172.261,73.145 c -0.936,1.44 -1.944,2.808 -3.024,4.032 l -8.712,2.16 c 1.584,-1.44 2.808,-2.808 3.816,-4.248 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0010" />
-                <path
-                   id="path15951"
-                   d="m 170.893,75.089 c -1.224,1.656 -2.52,3.095 -3.96,4.32 l -9.576,2.376 c 2.232,-1.512 3.96,-3.096 5.328,-4.608 l 8.208,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path15953"
-                   d="m 154.693,83.441 c 0.721,0.072 1.44,0.072 2.088,0.072 4.824,-0.216 9.072,-2.592 12.456,-6.336 l -8.712,2.16 c -1.584,1.368 -3.456,2.736 -5.832,4.104 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path15955"
-                   d="m 166.933,79.409 c -3.456,2.88 -7.632,4.464 -12.24,4.032 0.936,-0.504 1.872,-1.08 2.664,-1.656 l 9.576,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5e00" />
-                <path
-                   id="path15957"
-                   d="m 162.829,82.001 c -1.872,0.864 -3.888,1.368 -6.048,1.512 l 6.048,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8500" />
-                <path
-                   id="path15959"
-                   d="m 154.693,83.441 2.16,0 2.088,-0.216 2.016,-0.504 1.945,-0.72 1.799,-1.008 1.8,-1.224 1.584,-1.44 1.584,-1.584 1.368,-1.8 1.296,-1.944 1.152,-2.16 1.08,-2.232 0.864,-2.376 0.72,-2.52 0.648,-2.592 0.432,-2.664 -0.936,0.216 -0.936,0.144 -1.008,0.216 -0.935,0.144 -0.937,0.144 -0.864,0.216 -0.936,0.144 -0.864,0.216 -0.432,1.512 -0.36,1.584 -0.432,1.512 -0.36,1.512 -0.432,1.512 -0.432,1.512 -0.576,1.44 -0.648,1.512 -0.792,1.44 -0.864,1.512 -1.08,1.44 -1.296,1.44 -1.44,1.368 -1.728,1.44 -2.015,1.44 -2.233,1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g15961">
-                <path
-                   id="path15963"
-                   d="m 163.981,61.049 c -0.504,0.144 -0.936,0.216 -1.44,0.288 0,0.072 -0.072,0.072 -0.072,0.144 l 1.512,-0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path15965"
-                   d="m 169.597,60.041 c 0,0 0,0 0,-0.072 -2.16,0.432 -4.464,0.864 -7.056,1.368 -0.072,0.144 -0.072,0.288 -0.072,0.432 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path15967"
-                   d="m 169.525,60.329 c 0,-0.072 0,-0.216 0.072,-0.36 -1.8,0.36 -3.6,0.72 -5.616,1.08 l -1.512,0.432 c 0,0.144 0,0.36 -0.072,0.576 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path15969"
-                   d="m 169.597,60.041 c -0.072,0.144 -0.072,0.36 -0.144,0.504 l -7.056,1.8 c 0,-0.216 0,-0.36 0.072,-0.576 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path15971"
-                   d="m 169.525,60.329 c 0,0.216 -0.072,0.36 -0.072,0.576 l -7.128,1.728 c 0,-0.144 0.072,-0.36 0.072,-0.576 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path15973"
-                   d="m 169.453,60.545 c 0,0.216 0,0.432 -0.072,0.648 l -7.128,1.8 c 0.072,-0.216 0.072,-0.432 0.144,-0.648 l 7.056,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path15975"
-                   d="m 169.453,60.905 c -0.072,0.144 -0.072,0.36 -0.072,0.576 l -7.2,1.728 c 0.072,-0.216 0.072,-0.36 0.144,-0.576 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path15977"
-                   d="m 169.381,61.193 c 0,0.216 -0.072,0.36 -0.072,0.576 l -7.2,1.728 c 0.072,-0.144 0.144,-0.36 0.144,-0.504 l 7.128,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path15979"
-                   d="m 169.381,61.481 c -0.072,0.216 -0.072,0.432 -0.144,0.648 l -7.2,1.728 c 0.072,-0.216 0.144,-0.432 0.144,-0.648 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path15981"
-                   d="m 169.309,61.769 c -0.072,0.216 -0.072,0.36 -0.144,0.576 l -7.128,1.728 c 0,-0.144 0.072,-0.36 0.072,-0.576 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path15983"
-                   d="m 169.237,62.129 c 0,0.144 -0.072,0.36 -0.072,0.504 l -7.2,1.8 c 0,-0.216 0.072,-0.36 0.072,-0.576 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path15985"
-                   d="m 169.165,62.345 c 0,0.216 -0.072,0.432 -0.072,0.648 l -7.272,1.728 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path15987"
-                   d="m 169.165,62.633 c -0.072,0.216 -0.072,0.36 -0.144,0.576 l -7.272,1.8 c 0.072,-0.216 0.144,-0.432 0.216,-0.576 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path15989"
-                   d="m 169.093,62.993 c -0.072,0.144 -0.072,0.36 -0.144,0.504 l -7.272,1.8 c 0.072,-0.144 0.144,-0.36 0.144,-0.576 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path15991"
-                   d="m 169.021,63.209 c -0.072,0.216 -0.072,0.432 -0.143,0.648 l -7.273,1.8 c 0.072,-0.216 0.072,-0.432 0.144,-0.648 l 7.272,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path15993"
-                   d="m 168.949,63.497 c -0.071,0.216 -0.071,0.432 -0.144,0.648 l -7.344,1.8 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 7.272,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path15995"
-                   d="m 168.878,63.857 c -0.073,0.216 -0.073,0.36 -0.145,0.576 l -7.343,1.8 c 0.071,-0.216 0.143,-0.36 0.215,-0.576 l 7.273,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path15997"
-                   d="m 168.805,64.145 c -0.072,0.144 -0.072,0.36 -0.144,0.576 l -7.416,1.872 c 0.072,-0.216 0.216,-0.432 0.216,-0.648 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path15999"
-                   d="m 168.733,64.433 c -0.072,0.216 -0.072,0.36 -0.144,0.576 l -7.416,1.872 c 0.072,-0.216 0.144,-0.432 0.217,-0.648 l 7.343,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path16001"
-                   d="m 168.661,64.721 c -0.072,0.216 -0.072,0.432 -0.144,0.576 l -7.488,1.872 c 0.072,-0.216 0.144,-0.432 0.216,-0.576 l 7.416,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path16003"
-                   d="m 168.589,65.009 c -0.072,0.216 -0.144,0.432 -0.144,0.648 l -7.488,1.872 c 0.072,-0.216 0.144,-0.432 0.216,-0.648 l 7.416,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path16005"
-                   d="m 168.517,65.297 c -0.072,0.216 -0.144,0.432 -0.144,0.576 l -7.56,1.872 c 0.072,-0.216 0.144,-0.36 0.216,-0.576 l 7.488,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path16007"
-                   d="m 168.445,65.657 c -0.072,0.216 -0.144,0.36 -0.216,0.576 l -7.56,1.872 c 0.072,-0.216 0.216,-0.432 0.288,-0.576 l 7.488,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path16009"
-                   d="m 168.373,65.873 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -7.632,1.872 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 7.56,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path16011"
-                   d="m 168.229,66.233 c 0,0.216 -0.072,0.36 -0.144,0.576 l -7.632,1.872 c 0.072,-0.216 0.144,-0.36 0.216,-0.576 l 7.56,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path16013"
-                   d="m 168.157,66.521 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -7.704,1.872 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path16015"
-                   d="m 168.085,66.809 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -7.776,1.944 c 0.144,-0.216 0.216,-0.504 0.36,-0.72 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path16017"
-                   d="m 167.941,67.169 c -0.072,0.144 -0.072,0.36 -0.144,0.576 l -7.848,1.944 c 0.144,-0.216 0.216,-0.432 0.36,-0.648 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path16019"
-                   d="m 167.869,67.457 c -0.072,0.216 -0.144,0.432 -0.216,0.576 l -7.848,1.944 c 0.073,-0.216 0.216,-0.432 0.288,-0.576 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path16021"
-                   d="m 167.797,67.745 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -7.92,1.944 c 0.144,-0.216 0.289,-0.432 0.36,-0.648 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path16023"
-                   d="m 167.653,68.033 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -7.992,1.944 c 0.144,-0.216 0.216,-0.432 0.36,-0.648 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path16025"
-                   d="m 167.509,68.393 c -0.072,0.216 -0.144,0.432 -0.216,0.576 l -7.992,2.016 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path16027"
-                   d="m 167.437,68.681 c -0.072,0.216 -0.144,0.432 -0.288,0.648 l -8.064,1.944 c 0.144,-0.216 0.288,-0.432 0.36,-0.648 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path16029"
-                   d="m 167.293,68.969 c -0.072,0.216 -0.144,0.432 -0.216,0.576 l -8.136,2.088 c 0.072,-0.216 0.216,-0.432 0.36,-0.648 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path16031"
-                   d="m 167.149,69.329 c -0.072,0.216 -0.144,0.36 -0.216,0.576 l -8.208,2.016 c 0.144,-0.216 0.216,-0.432 0.36,-0.648 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path16033"
-                   d="m 167.077,69.545 c -0.072,0.288 -0.216,0.504 -0.288,0.72 l -8.28,2.016 c 0.144,-0.216 0.288,-0.432 0.432,-0.648 l 8.136,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path16035"
-                   d="m 166.933,69.905 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -8.352,2.016 c 0.145,-0.216 0.288,-0.432 0.432,-0.648 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path16037"
-                   d="m 166.789,70.265 c -0.072,0.216 -0.216,0.432 -0.288,0.576 l -8.424,2.16 c 0.144,-0.288 0.288,-0.504 0.432,-0.72 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path16039"
-                   d="m 166.645,70.553 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -8.496,2.088 c 0.144,-0.216 0.288,-0.432 0.432,-0.72 l 8.352,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path16041"
-                   d="m 166.501,70.841 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -8.64,2.16 c 0.216,-0.216 0.36,-0.432 0.504,-0.648 l 8.424,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path16043"
-                   d="m 166.357,71.201 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -8.712,2.16 c 0.144,-0.216 0.288,-0.504 0.504,-0.72 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path16045"
-                   d="m 166.213,71.489 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -8.784,2.16 c 0.216,-0.216 0.36,-0.432 0.504,-0.648 l 8.64,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path16047"
-                   d="m 166.069,71.849 c -0.143,0.216 -0.216,0.432 -0.36,0.576 l -8.856,2.232 c 0.144,-0.216 0.288,-0.432 0.504,-0.648 l 8.712,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path16049"
-                   d="m 165.853,72.137 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -9,2.232 c 0.144,-0.216 0.361,-0.432 0.504,-0.72 l 8.784,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path16051"
-                   d="m 165.709,72.425 c -0.072,0.216 -0.216,0.504 -0.36,0.72 l -9.072,2.232 c 0.216,-0.288 0.36,-0.504 0.576,-0.72 l 8.856,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path16053"
-                   d="m 165.565,72.785 c -0.144,0.216 -0.288,0.432 -0.36,0.648 l -9.216,2.232 c 0.216,-0.216 0.36,-0.432 0.576,-0.648 l 9,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path16055"
-                   d="m 165.349,73.145 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -9.288,2.304 c 0.216,-0.288 0.36,-0.504 0.576,-0.72 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path16057"
-                   d="m 165.205,73.433 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -9.432,2.304 c 0.216,-0.216 0.432,-0.432 0.648,-0.72 l 9.216,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path16059"
-                   d="m 164.989,73.793 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -9.504,2.304 c 0.216,-0.216 0.432,-0.432 0.648,-0.648 l 9.288,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path16061"
-                   d="m 164.773,74.081 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -9.648,2.376 c 0.216,-0.288 0.432,-0.504 0.648,-0.792 l 9.432,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path16063"
-                   d="m 164.557,74.441 c -0.143,0.216 -0.288,0.432 -0.432,0.648 l -9.792,2.448 c 0.216,-0.288 0.504,-0.504 0.72,-0.792 l 9.504,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path16065"
-                   d="m 164.341,74.801 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -9.936,2.448 c 0.216,-0.216 0.504,-0.504 0.72,-0.72 l 9.648,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path16067"
-                   d="m 164.125,75.089 c -0.144,0.216 -0.288,0.504 -0.504,0.72 l -10.08,2.448 c 0.288,-0.216 0.576,-0.504 0.792,-0.72 l 9.792,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path16069"
-                   d="m 163.909,75.449 c -0.144,0.216 -0.36,0.432 -0.504,0.72 l -10.224,2.448 c 0.288,-0.216 0.504,-0.504 0.792,-0.72 l 9.936,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path16071"
-                   d="m 163.621,75.809 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -10.44,2.52 c 0.288,-0.216 0.504,-0.432 0.792,-0.72 l 10.08,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path16073"
-                   d="m 163.405,76.097 c -0.144,0.288 -0.36,0.504 -0.503,0.72 l -10.657,2.592 c 0.36,-0.216 0.648,-0.504 0.936,-0.792 l 10.224,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path16075"
-                   d="m 163.189,76.457 c -0.216,0.216 -0.36,0.432 -0.576,0.72 l -10.8,2.592 c 0.36,-0.216 0.648,-0.504 0.936,-0.792 l 10.44,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path16077"
-                   d="m 162.902,76.817 c -0.217,0.216 -0.361,0.432 -0.577,0.648 l -11.016,2.736 c 0.36,-0.216 0.648,-0.504 0.936,-0.792 l 10.657,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path16079"
-                   d="m 162.613,77.177 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l -11.232,2.736 c 0.36,-0.216 0.72,-0.504 1.08,-0.864 l 10.8,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path16081"
-                   d="m 162.325,77.465 c -0.216,0.288 -0.432,0.504 -0.648,0.792 l -11.448,2.808 c 0.36,-0.288 0.721,-0.576 1.08,-0.864 l 11.016,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path16083"
-                   d="m 161.965,77.897 c -0.216,0.216 -0.432,0.432 -0.648,0.648 l -11.736,2.952 c 0.36,-0.288 0.72,-0.576 1.152,-0.864 l 11.232,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path16085"
-                   d="m 161.677,78.257 c -0.287,0.216 -0.504,0.504 -0.72,0.72 l -12.168,3.024 c 0.504,-0.288 0.936,-0.648 1.368,-0.936 l 11.52,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path16087"
-                   d="m 161.317,78.545 c -0.288,0.288 -0.504,0.576 -0.792,0.864 l -12.599,3.096 c 0.575,-0.288 1.079,-0.648 1.655,-1.008 l 11.736,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path16089"
-                   d="m 160.957,78.977 c -0.288,0.288 -0.504,0.504 -0.792,0.72 l -12.96,3.24 c 0.576,-0.288 1.08,-0.648 1.584,-0.936 l 12.168,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path16091"
-                   d="m 160.525,79.409 c -0.288,0.216 -0.576,0.504 -0.864,0.72 l -13.536,3.384 c 0.648,-0.36 1.224,-0.648 1.801,-1.008 l 12.599,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path16093"
-                   d="m 160.165,79.697 c -0.36,0.288 -0.648,0.576 -1.008,0.864 l -14.328,3.528 c 0.792,-0.36 1.585,-0.72 2.376,-1.152 l 12.96,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path16095"
-                   d="m 159.661,80.129 c -0.288,0.288 -0.576,0.504 -0.936,0.792 l -15.335,3.744 c 0.935,-0.36 1.871,-0.72 2.735,-1.152 l 13.536,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <g
-                   id="g16097">
-                  <g
-                     id="g16099">
-                    <path
-                       id="path16101"
-                       d="m 143.677,84.953 c -0.215,-0.072 -0.432,-0.072 -0.648,-0.144 0.576,-0.216 1.224,-0.432 1.8,-0.72 l 14.328,-3.528"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16103">
-                  <g
-                     id="g16105">
-                    <path
-                       id="path16107"
-                       d="m 144.613,85.025 c -0.504,-0.072 -1.08,-0.144 -1.584,-0.216 0.072,0 0.216,-0.072 0.361,-0.144 l 15.335,-3.744"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16109">
-                  <g
-                     id="g16111">
-                    <path
-                       id="path16113"
-                       d="m 145.405,85.025 c -0.576,0 -1.152,-0.072 -1.728,-0.072 l 14.4,-3.6"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16115">
-                  <g
-                     id="g16117">
-                    <path
-                       id="path16119"
-                       d="m 146.629,85.025 c -0.648,0 -1.296,0 -2.016,0 l 12.744,-3.168"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16121">
-                  <g
-                     id="g16123">
-                    <path
-                       id="path16125"
-                       d="m 148.213,84.953 c -0.936,0.072 -1.872,0.144 -2.808,0.072 l 11.304,-2.808"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path16127"
-                   d="m 146.629,85.025 c 1.297,0 2.592,-0.144 3.744,-0.36 1.944,-0.36 3.744,-1.008 5.4,-1.872 l -9.144,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path16129"
-                   d="m 154.333,83.441 c -1.872,0.792 -3.888,1.296 -6.12,1.512 l 6.12,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path16131"
-                   d="m 152.317,84.16 c -0.648,0.217 -1.296,0.361 -1.944,0.505 l 1.944,-0.505 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path16133"
-                   d="m 143.029,84.809 2.808,0.216 2.736,-0.144 2.52,-0.432 2.376,-0.72 2.232,-0.936 2.088,-1.224 1.944,-1.44 1.728,-1.728 1.584,-1.8 1.44,-2.016 1.296,-2.16 1.08,-2.304 0.936,-2.448 0.792,-2.521 0.576,-2.592 0.432,-2.592 -0.792,0.144 -0.864,0.216 -0.864,0.144 -0.864,0.144 -0.864,0.144 -0.935,0.216 -0.937,0.144 -0.936,0.216 -0.288,1.8 -0.432,1.8 -0.576,1.8 -0.72,1.728 -0.864,1.728 -0.936,1.728 -1.08,1.656 -1.224,1.584 -1.296,1.584 -1.44,1.439 -1.512,1.369 -1.656,1.296 -1.728,1.152 -1.872,1.08 -1.872,0.936 -2.016,0.793 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g16135">
-                <path
-                   id="path16137"
-                   d="m 162.397,62.273 c 0,-0.288 0.072,-0.576 0.144,-0.936 -2.304,0.36 -3.096,0.36 -6.048,0.864 -0.288,0.576 -0.576,1.152 -0.864,1.728 l 6.768,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7b017d" />
-                <path
-                   id="path16139"
-                   d="m 162.037,63.929 c 0.216,-0.864 0.36,-1.656 0.504,-2.592 -2.304,0.36 -3.096,0.36 -6.048,0.864 -0.648,1.296 -1.152,2.448 -1.656,3.528 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9c017e" />
-                <path
-                   id="path16141"
-                   d="m 162.397,62.273 c -0.216,1.152 -0.432,2.304 -0.792,3.384 l -7.632,1.872 c 0.504,-1.08 1.08,-2.304 1.656,-3.6 l 6.768,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path16143"
-                   d="m 162.037,63.929 c -0.216,1.224 -0.576,2.376 -1.008,3.456 l -7.92,2.016 c 0.576,-1.152 1.08,-2.376 1.728,-3.672 l 7.2,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path16145"
-                   d="m 161.605,65.657 c -0.36,1.224 -0.792,2.376 -1.296,3.528 l -8.064,2.016 c 0.576,-1.152 1.152,-2.376 1.728,-3.672 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10273" />
-                <path
-                   id="path16147"
-                   d="m 161.029,67.385 c -0.432,1.296 -1.008,2.448 -1.656,3.672 l -8.136,1.944 c 0.648,-1.08 1.296,-2.304 1.872,-3.6 l 7.92,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015f" />
-                <path
-                   id="path16149"
-                   d="m 160.309,69.185 c -0.576,1.296 -1.224,2.52 -2.016,3.744 l -8.208,2.016 c 0.793,-1.224 1.512,-2.448 2.16,-3.744 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path16151"
-                   d="m 159.373,71.057 c -0.72,1.296 -1.512,2.592 -2.447,3.744 l -8.209,2.088 c 0.936,-1.224 1.8,-2.52 2.52,-3.888 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path16153"
-                   d="m 158.293,72.929 c -0.864,1.368 -1.872,2.664 -3.024,3.888 l -8.424,2.088 c 1.296,-1.224 2.304,-2.592 3.24,-3.96 l 8.208,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0023" />
-                <path
-                   id="path16155"
-                   d="m 156.926,74.801 c -1.153,1.584 -2.449,2.952 -3.889,4.176 l -8.928,2.232 c 1.872,-1.368 3.384,-2.808 4.608,-4.32 l 8.209,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0010" />
-                <path
-                   id="path16157"
-                   d="m 155.269,76.817 c -1.584,1.728 -3.384,3.312 -5.256,4.536 l -10.008,2.52 c 2.88,-1.656 5.112,-3.24 6.84,-4.968 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path16159"
-                   d="m 153.037,78.977 c -4.536,4.104 -10.368,6.552 -16.416,6.552 3.096,-1.44 5.544,-2.88 7.488,-4.32 l 8.928,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path16161"
-                   d="m 150.013,81.353 c -4.032,2.664 -8.64,4.176 -13.392,4.176 1.224,-0.576 2.305,-1.08 3.384,-1.656 l 10.008,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5e00" />
-                <path
-                   id="path16163"
-                   d="m 136.621,85.529 2.376,-0.144 2.304,-0.36 2.304,-0.576 2.232,-0.864 2.089,-1.008 2.087,-1.224 1.944,-1.368 1.8,-1.584 1.657,-1.728 1.583,-1.872 1.368,-2.016 1.224,-2.088 1.008,-2.232 0.864,-2.304 0.648,-2.376 0.432,-2.448 -0.792,0.144 -0.72,0.072 -0.648,0.072 -0.648,0.072 -0.648,0.072 -0.72,0.144 -0.864,0.144 -1.008,0.144 -1.008,2.088 -0.864,1.944 -0.864,1.872 -0.792,1.728 -0.864,1.656 -0.792,1.512 -0.864,1.44 -0.936,1.368 -1.008,1.368 -1.152,1.224 -1.296,1.296 -1.44,1.152 -1.656,1.224 -1.872,1.152 -2.088,1.152 -2.376,1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g16165">
-                <path
-                   id="path16167"
-                   d="m 151.453,62.921 c -1.008,0.144 -1.8,0.216 -2.232,0.288 -0.072,0.144 -0.072,0.216 -0.144,0.288 l 2.376,-0.576 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path16169"
-                   d="m 153.685,62.561 c -1.728,0.288 -3.744,0.576 -4.464,0.648 -0.072,0.216 -0.144,0.36 -0.216,0.504 l 4.68,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path16171"
-                   d="m 156.493,62.201 c 0,0 0.072,0 0.072,-0.072 -0.936,0.144 -3.24,0.504 -5.112,0.792 l -2.376,0.576 c -0.072,0.216 -0.144,0.36 -0.216,0.576 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path16173"
-                   d="m 156.349,62.489 c 0.072,-0.072 0.144,-0.216 0.216,-0.36 -0.576,0.144 -1.656,0.288 -2.88,0.432 l -4.68,1.152 c -0.144,0.288 -0.216,0.504 -0.288,0.72 l 7.632,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path16175"
-                   d="m 156.493,62.201 c -0.072,0.216 -0.144,0.36 -0.216,0.576 l -7.704,1.944 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path16177"
-                   d="m 156.349,62.489 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -7.704,1.872 c 0.072,-0.144 0.216,-0.36 0.288,-0.576 l 7.632,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path16179"
-                   d="m 156.277,62.777 c -0.072,0.216 -0.216,0.432 -0.288,0.72 l -7.704,1.872 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 7.704,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path16181"
-                   d="m 156.133,63.137 c -0.072,0.216 -0.144,0.36 -0.288,0.576 l -7.704,1.944 c 0.144,-0.216 0.216,-0.432 0.288,-0.648 l 7.704,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path16183"
-                   d="m 155.989,63.497 c -0.072,0.144 -0.216,0.36 -0.288,0.576 l -7.704,1.944 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 7.704,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path16185"
-                   d="m 155.845,63.713 c -0.072,0.216 -0.144,0.504 -0.288,0.72 l -7.704,1.872 c 0.073,-0.216 0.216,-0.432 0.288,-0.648 l 7.704,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path16187"
-                   d="m 155.701,64.073 c -0.072,0.216 -0.144,0.36 -0.216,0.576 l -7.776,1.944 c 0.072,-0.216 0.217,-0.432 0.288,-0.576 l 7.704,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path16189"
-                   d="m 155.557,64.433 c -0.072,0.144 -0.143,0.36 -0.216,0.576 l -7.776,1.944 c 0.072,-0.216 0.144,-0.432 0.288,-0.648 l 7.704,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path16191"
-                   d="m 155.485,64.649 c -0.144,0.216 -0.216,0.432 -0.288,0.72 l -7.848,1.872 c 0.144,-0.216 0.216,-0.432 0.36,-0.648 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path16193"
-                   d="m 155.341,65.009 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -7.776,1.944 c 0.072,-0.216 0.216,-0.432 0.36,-0.648 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path16195"
-                   d="m 155.197,65.369 c -0.144,0.144 -0.216,0.36 -0.288,0.576 l -7.848,1.944 c 0.072,-0.216 0.216,-0.432 0.288,-0.648 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path16197"
-                   d="m 154.981,65.657 c -0.072,0.216 -0.144,0.432 -0.216,0.648 l -7.92,1.944 c 0.072,-0.216 0.216,-0.432 0.36,-0.648 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path16199"
-                   d="m 154.909,65.945 c -0.144,0.216 -0.216,0.432 -0.36,0.72 l -7.92,1.944 c 0.144,-0.216 0.288,-0.504 0.432,-0.72 l 7.848,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path16201"
-                   d="m 154.765,66.305 c -0.144,0.216 -0.216,0.432 -0.288,0.576 l -7.992,2.016 c 0.144,-0.216 0.216,-0.432 0.36,-0.648 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path16203"
-                   d="m 154.549,66.665 c -0.072,0.144 -0.144,0.36 -0.288,0.576 l -7.992,2.016 c 0.145,-0.216 0.216,-0.432 0.36,-0.648 l 7.92,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path16205"
-                   d="m 154.477,66.881 c -0.144,0.288 -0.216,0.504 -0.36,0.72 l -8.064,2.016 c 0.144,-0.288 0.288,-0.504 0.432,-0.72 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path16207"
-                   d="m 154.261,67.241 c -0.072,0.216 -0.144,0.432 -0.288,0.648 l -8.064,2.016 c 0.072,-0.216 0.216,-0.432 0.36,-0.648 l 7.992,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path16209"
-                   d="m 154.117,67.601 c -0.072,0.216 -0.215,0.432 -0.288,0.576 l -8.208,2.088 c 0.144,-0.216 0.288,-0.432 0.432,-0.648 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path16211"
-                   d="m 153.973,67.889 c -0.071,0.216 -0.216,0.432 -0.288,0.648 l -8.28,2.016 c 0.216,-0.216 0.36,-0.432 0.504,-0.648 l 8.064,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path16213"
-                   d="m 153.829,68.177 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -8.28,2.016 c 0.144,-0.216 0.288,-0.432 0.36,-0.576 l 8.208,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path16215"
-                   d="m 153.685,68.537 c -0.144,0.216 -0.216,0.432 -0.288,0.648 l -8.423,2.016 c 0.143,-0.216 0.287,-0.432 0.431,-0.648 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path16217"
-                   d="m 153.541,68.825 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -8.424,2.088 c 0.145,-0.216 0.36,-0.432 0.504,-0.72 l 8.28,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path16219"
-                   d="m 153.397,69.185 c -0.144,0.144 -0.216,0.36 -0.36,0.576 l -8.496,2.088 c 0.144,-0.216 0.288,-0.432 0.433,-0.648 l 8.423,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path16221"
-                   d="m 153.181,69.473 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -8.64,2.16 c 0.216,-0.216 0.36,-0.504 0.504,-0.72 l 8.424,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path16223"
-                   d="m 153.037,69.761 c -0.144,0.216 -0.216,0.504 -0.36,0.72 l -8.64,2.16 c 0.144,-0.288 0.36,-0.504 0.504,-0.792 l 8.496,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path16225"
-                   d="m 152.893,70.121 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -8.712,2.16 c 0.144,-0.216 0.36,-0.504 0.504,-0.72 l 8.64,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path16227"
-                   d="m 152.677,70.481 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -8.855,2.16 c 0.215,-0.216 0.359,-0.432 0.575,-0.648 l 8.64,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path16229"
-                   d="m 152.461,70.841 c -0.071,0.216 -0.216,0.432 -0.288,0.648 l -9,2.16 c 0.217,-0.216 0.36,-0.432 0.576,-0.648 l 8.712,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path16231"
-                   d="m 152.317,71.129 c -0.144,0.216 -0.216,0.432 -0.36,0.648 l -9.072,2.304 c 0.216,-0.288 0.432,-0.504 0.577,-0.792 l 8.855,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path16233"
-                   d="m 152.173,71.489 c -0.144,0.144 -0.288,0.36 -0.36,0.576 l -9.216,2.304 c 0.216,-0.216 0.432,-0.504 0.576,-0.72 l 9,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path16235"
-                   d="m 151.957,71.777 c -0.144,0.216 -0.288,0.432 -0.36,0.648 l -9.288,2.304 c 0.144,-0.216 0.36,-0.432 0.576,-0.648 l 9.072,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path16237"
-                   d="m 151.813,72.065 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -9.431,2.304 c 0.215,-0.216 0.431,-0.504 0.647,-0.72 l 9.216,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path16239"
-                   d="m 151.597,72.425 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -9.504,2.304 c 0.217,-0.216 0.432,-0.432 0.648,-0.648 l 9.288,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path16241"
-                   d="m 151.381,72.785 c -0.144,0.216 -0.288,0.432 -0.431,0.648 l -9.649,2.376 c 0.216,-0.216 0.432,-0.432 0.649,-0.72 l 9.431,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path16243"
-                   d="m 151.165,73.073 c -0.144,0.216 -0.287,0.432 -0.432,0.72 l -9.792,2.448 c 0.288,-0.288 0.504,-0.576 0.72,-0.864 l 9.504,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path16245"
-                   d="m 150.95,73.433 c -0.072,0.216 -0.217,0.432 -0.361,0.648 l -9.936,2.448 c 0.216,-0.216 0.432,-0.504 0.648,-0.72 l 9.649,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path16247"
-                   d="m 150.733,73.793 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -10.08,2.448 c 0.217,-0.216 0.504,-0.432 0.72,-0.648 l 9.792,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path16249"
-                   d="m 150.589,74.081 c -0.216,0.216 -0.36,0.432 -0.504,0.72 l -10.296,2.52 c 0.288,-0.288 0.576,-0.504 0.864,-0.792 l 9.936,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path16251"
-                   d="m 150.301,74.441 c -0.144,0.216 -0.288,0.504 -0.504,0.72 l -10.44,2.592 c 0.288,-0.288 0.576,-0.576 0.864,-0.864 l 10.08,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path16253"
-                   d="m 150.085,74.801 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -10.656,2.592 c 0.288,-0.216 0.504,-0.432 0.792,-0.72 l 10.296,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path16255"
-                   d="m 149.797,75.161 c -0.144,0.216 -0.288,0.432 -0.432,0.648 l -10.872,2.664 c 0.288,-0.216 0.576,-0.432 0.864,-0.72 l 10.44,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path16257"
-                   d="m 149.653,75.449 c -0.215,0.216 -0.36,0.504 -0.576,0.72 l -11.088,2.736 c 0.36,-0.216 0.648,-0.504 1.008,-0.864 l 10.656,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path16259"
-                   d="m 149.365,75.809 c -0.216,0.216 -0.36,0.432 -0.504,0.648 l -11.304,2.808 c 0.288,-0.216 0.648,-0.504 0.936,-0.792 l 10.872,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path16261"
-                   d="m 149.077,76.169 c -0.144,0.216 -0.36,0.432 -0.504,0.648 l -11.52,2.88 c 0.288,-0.288 0.648,-0.504 0.936,-0.792 l 11.088,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path16263"
-                   d="m 148.861,76.457 c -0.216,0.288 -0.432,0.504 -0.576,0.792 l -11.88,2.88 c 0.432,-0.288 0.792,-0.576 1.152,-0.864 l 11.304,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path16265"
-                   d="m 148.573,76.817 c -0.216,0.216 -0.36,0.504 -0.576,0.72 l -12.023,2.952 c 0.359,-0.288 0.719,-0.504 1.079,-0.792 l 11.52,-2.88 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path16267"
-                   d="m 148.285,77.249 c -0.216,0.216 -0.432,0.432 -0.576,0.648 l -12.384,3.096 c 0.36,-0.288 0.72,-0.576 1.08,-0.864 l 11.88,-2.88 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path16269"
-                   d="m 147.997,77.537 c -0.216,0.216 -0.432,0.504 -0.648,0.72 l -12.744,3.168 c 0.432,-0.288 0.936,-0.576 1.369,-0.936 l 12.023,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path16271"
-                   d="m 147.709,77.897 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l -13.032,3.24 c 0.433,-0.288 0.864,-0.576 1.296,-0.864 l 12.384,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path16273"
-                   d="m 147.349,78.257 c -0.216,0.288 -0.432,0.504 -0.648,0.72 l -13.464,3.384 c 0.432,-0.288 0.864,-0.648 1.368,-0.936 l 12.744,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path16275"
-                   d="m 147.061,78.617 c -0.216,0.216 -0.504,0.504 -0.792,0.792 l -13.968,3.456 c 0.577,-0.36 1.152,-0.72 1.728,-1.008 l 13.032,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path16277"
-                   d="m 146.701,78.977 c -0.216,0.288 -0.504,0.504 -0.72,0.72 l -14.4,3.6 c 0.576,-0.36 1.08,-0.648 1.656,-0.936 l 13.464,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path16279"
-                   d="m 146.269,79.409 c -0.216,0.216 -0.504,0.504 -0.72,0.72 l -15.048,3.744 c 0.648,-0.36 1.224,-0.648 1.8,-1.008 l 13.968,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path16281"
-                   d="m 145.981,79.697 c -0.288,0.288 -0.576,0.576 -0.936,0.864 l -15.696,3.888 c 0.72,-0.36 1.512,-0.792 2.232,-1.152 l 14.4,-3.6 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path16283"
-                   d="m 145.549,80.129 c -0.36,0.288 -0.647,0.576 -1.008,0.864 l -16.632,4.104 c 0.936,-0.432 1.8,-0.792 2.592,-1.224 l 15.048,-3.744 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path16285"
-                   d="m 145.045,80.561 c -0.288,0.216 -0.576,0.504 -0.936,0.72 l -17.424,4.32 c 0.936,-0.36 1.801,-0.72 2.664,-1.152 l 15.696,-3.888 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <g
-                   id="g16287">
-                  <g
-                     id="g16289">
-                    <path
-                       id="path16291"
-                       d="m 125.173,86.321 -0.072,-0.072 c 0.936,-0.36 1.873,-0.72 2.808,-1.152 l 16.632,-4.104"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16293">
-                  <g
-                     id="g16295">
-                    <path
-                       id="path16297"
-                       d="m 126.109,86.393 c -0.36,-0.072 -0.647,-0.072 -1.008,-0.144 0.504,-0.144 1.08,-0.36 1.584,-0.648 l 17.424,-4.32"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16299">
-                  <g
-                     id="g16301">
-                    <path
-                       id="path16303"
-                       d="m 126.902,86.393 c -0.577,0 -1.153,-0.072 -1.729,-0.072 l 18.432,-4.608"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16305">
-                  <g
-                     id="g16307">
-                    <path
-                       id="path16309"
-                       d="m 127.981,86.465 c -0.576,0 -1.224,-0.072 -1.872,-0.072 l 16.848,-4.176"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16311">
-                  <g
-                     id="g16313">
-                    <path
-                       id="path16315"
-                       d="m 129.277,86.465 c -0.791,0 -1.584,0 -2.375,-0.072 l 15.479,-3.816"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16317">
-                  <g
-                     id="g16319">
-                    <path
-                       id="path16321"
-                       d="m 130.357,86.393 c -0.72,0.072 -1.512,0.072 -2.376,0.072 l 13.608,-3.384"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16323">
-                  <g
-                     id="g16325">
-                    <path
-                       id="path16327"
-                       d="m 132.373,86.177 c -1.008,0.144 -2.016,0.216 -3.096,0.288 l 11.376,-2.808"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path16329"
-                   d="m 139.717,84.089 c -2.664,1.296 -5.76,2.088 -9.36,2.304 l 9.36,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path16331"
-                   d="m 137.989,84.809 c -1.656,0.648 -3.527,1.152 -5.616,1.368 l 5.616,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path16333"
-                   d="m 125.101,86.249 3.528,0.144 3.312,-0.144 2.952,-0.504 2.736,-0.792 2.52,-1.08 2.232,-1.296 2.088,-1.512 1.872,-1.728 1.728,-1.872 1.584,-2.016 1.368,-2.088 1.296,-2.232 1.224,-2.232 1.08,-2.232 1.008,-2.304 0.936,-2.232 -0.648,0.072 -0.864,0.144 -1.08,0.144 -1.08,0.144 -1.152,0.216 -1.008,0.144 -0.864,0.144 -0.648,0.072 -0.864,2.016 -0.936,2.016 -1.08,1.872 -1.08,1.8 -1.224,1.656 -1.296,1.656 -1.368,1.512 -1.512,1.512 -1.512,1.368 -1.656,1.296 -1.728,1.296 -1.8,1.152 -1.872,1.08 -2.016,1.008 -2.016,0.936 -2.16,0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g16335">
-                <path
-                   id="path16337"
-                   d="m 143.677,63.857 c -1.008,0.072 -1.727,0.216 -1.944,0.432 l 1.944,-0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path16339"
-                   d="m 145.765,63.641 c -1.872,0.144 -3.672,0.288 -4.032,0.648 -0.216,0.144 -0.432,0.36 -0.648,0.504 l 4.68,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path16341"
-                   d="m 143.677,63.857 c 1.225,-0.144 2.737,-0.288 4.176,-0.432 l -7.344,1.8 c 0.432,-0.288 0.792,-0.648 1.224,-0.936 l 1.944,-0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path16343"
-                   d="m 149.077,63.425 c 0,-0.072 0,-0.144 0.072,-0.216 -1.008,0.216 -2.232,0.288 -3.384,0.432 l -4.68,1.152 c -0.36,0.288 -0.72,0.576 -1.08,0.864 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path16345"
-                   d="m 148.933,63.785 c 0.072,-0.216 0.144,-0.36 0.216,-0.576 -0.432,0.072 -0.864,0.144 -1.296,0.216 l -7.344,1.8 c -0.36,0.288 -0.648,0.576 -1.008,0.864 l 9.432,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path16347"
-                   d="m 149.077,63.425 c -0.144,0.216 -0.216,0.432 -0.288,0.648 l -9.792,2.448 c 0.36,-0.288 0.648,-0.576 1.008,-0.864 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path16349"
-                   d="m 148.933,63.785 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -10.08,2.52 c 0.288,-0.288 0.576,-0.576 0.936,-0.864 l 9.432,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path16351"
-                   d="m 148.789,64.073 c -0.072,0.288 -0.216,0.504 -0.288,0.72 l -10.44,2.592 c 0.36,-0.288 0.648,-0.576 0.936,-0.864 l 9.792,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path16353"
-                   d="m 148.645,64.433 c -0.072,0.216 -0.216,0.432 -0.288,0.72 l -10.728,2.592 c 0.36,-0.288 0.648,-0.504 0.936,-0.792 l 10.08,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path16355"
-                   d="m 148.501,64.793 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -10.944,2.736 c 0.288,-0.288 0.576,-0.576 0.792,-0.792 l 10.44,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path16357"
-                   d="m 148.357,65.153 c -0.072,0.216 -0.216,0.432 -0.288,0.648 l -11.232,2.808 c 0.288,-0.288 0.577,-0.576 0.792,-0.864 l 10.728,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path16359"
-                   d="m 148.213,65.441 c -0.144,0.288 -0.216,0.504 -0.36,0.72 l -11.448,2.808 c 0.288,-0.288 0.576,-0.504 0.864,-0.792 l 10.944,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path16361"
-                   d="m 148.069,65.801 c -0.143,0.216 -0.216,0.504 -0.36,0.72 l -11.664,2.88 c 0.216,-0.288 0.504,-0.576 0.792,-0.792 l 11.232,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path16363"
-                   d="m 147.853,66.161 c -0.072,0.216 -0.216,0.432 -0.288,0.72 l -11.952,2.952 c 0.289,-0.288 0.576,-0.576 0.792,-0.864 l 11.448,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path16365"
-                   d="m 147.709,66.521 c -0.072,0.216 -0.216,0.432 -0.288,0.576 l -12.096,3.024 c 0.216,-0.288 0.504,-0.504 0.72,-0.72 l 11.664,-2.88 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path16367"
-                   d="m 147.565,66.881 c -0.144,0.216 -0.216,0.36 -0.36,0.576 l -12.24,3.024 c 0.216,-0.216 0.432,-0.432 0.648,-0.648 l 11.952,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path16369"
-                   d="m 147.421,67.097 c -0.144,0.288 -0.288,0.504 -0.432,0.72 l -12.384,3.096 c 0.216,-0.288 0.504,-0.576 0.72,-0.792 l 12.096,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path16371"
-                   d="m 147.205,67.457 c -0.144,0.288 -0.288,0.504 -0.432,0.72 l -12.6,3.096 c 0.289,-0.216 0.504,-0.504 0.792,-0.792 l 12.24,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path16373"
-                   d="m 146.989,67.817 c -0.144,0.216 -0.216,0.504 -0.36,0.72 l -12.816,3.168 c 0.288,-0.288 0.504,-0.504 0.792,-0.792 l 12.384,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path16375"
-                   d="m 146.773,68.177 c -0.072,0.216 -0.216,0.504 -0.359,0.72 l -12.961,3.168 c 0.288,-0.216 0.504,-0.504 0.72,-0.792 l 12.6,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path16377"
-                   d="m 146.629,68.537 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -13.104,3.24 c 0.288,-0.288 0.504,-0.504 0.72,-0.792 l 12.816,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path16379"
-                   d="m 146.414,68.897 c -0.145,0.216 -0.289,0.504 -0.505,0.72 l -13.176,3.24 c 0.217,-0.216 0.504,-0.504 0.72,-0.792 l 12.961,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path16381"
-                   d="m 146.197,69.257 c -0.216,0.216 -0.36,0.504 -0.504,0.72 l -13.32,3.312 c 0.216,-0.288 0.505,-0.504 0.72,-0.792 l 13.104,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path16383"
-                   d="m 145.909,69.617 c -0.144,0.216 -0.288,0.504 -0.432,0.72 l -13.464,3.312 c 0.216,-0.216 0.504,-0.504 0.72,-0.792 l 13.176,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path16385"
-                   d="m 145.693,69.977 c -0.144,0.288 -0.288,0.504 -0.504,0.72 l -13.536,3.384 c 0.216,-0.288 0.504,-0.504 0.72,-0.792 l 13.32,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path16387"
-                   d="m 145.477,70.337 c -0.216,0.288 -0.36,0.504 -0.503,0.72 l -13.681,3.384 c 0.216,-0.216 0.504,-0.504 0.72,-0.792 l 13.464,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path16389"
-                   d="m 145.189,70.697 c -0.144,0.288 -0.287,0.504 -0.504,0.792 l -13.752,3.384 c 0.216,-0.288 0.505,-0.504 0.72,-0.792 l 13.536,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path16391"
-                   d="m 144.974,71.057 c -0.217,0.288 -0.361,0.504 -0.577,0.792 l -13.824,3.384 c 0.216,-0.216 0.504,-0.504 0.72,-0.792 l 13.681,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path16393"
-                   d="m 144.685,71.489 c -0.144,0.216 -0.36,0.504 -0.576,0.72 l -13.896,3.456 c 0.216,-0.288 0.504,-0.504 0.72,-0.792 l 13.752,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path16395"
-                   d="m 144.397,71.849 c -0.144,0.216 -0.36,0.504 -0.576,0.72 l -13.968,3.456 c 0.216,-0.216 0.504,-0.504 0.72,-0.792 l 13.824,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path16397"
-                   d="m 144.109,72.209 c -0.144,0.288 -0.36,0.504 -0.576,0.792 l -14.04,3.456 c 0.216,-0.288 0.505,-0.504 0.72,-0.792 l 13.896,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path16399"
-                   d="m 143.821,72.569 c -0.144,0.288 -0.359,0.504 -0.576,0.792 l -14.112,3.456 c 0.216,-0.216 0.504,-0.504 0.72,-0.792 l 13.968,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path16401"
-                   d="m 143.533,73.001 c -0.216,0.216 -0.432,0.504 -0.648,0.72 l -14.112,3.528 c 0.216,-0.288 0.504,-0.504 0.72,-0.792 l 14.04,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path16403"
-                   d="m 143.245,73.361 c -0.216,0.216 -0.432,0.504 -0.648,0.792 l -14.183,3.456 c 0.215,-0.216 0.503,-0.504 0.719,-0.792 l 14.112,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path16405"
-                   d="m 142.885,73.721 c -0.216,0.288 -0.432,0.504 -0.648,0.792 l -14.184,3.528 c 0.216,-0.288 0.433,-0.504 0.72,-0.792 l 14.112,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path16407"
-                   d="m 142.597,74.153 c -0.216,0.216 -0.504,0.504 -0.719,0.72 l -14.257,3.528 c 0.288,-0.217 0.504,-0.504 0.793,-0.792 l 14.183,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path16409"
-                   d="m 142.237,74.513 c -0.216,0.288 -0.504,0.504 -0.72,0.792 l -14.256,3.528 c 0.288,-0.288 0.504,-0.504 0.792,-0.792 l 14.184,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path16411"
-                   d="m 141.878,74.873 c -0.217,0.288 -0.505,0.576 -0.721,0.864 l -14.255,3.456 c 0.287,-0.216 0.503,-0.504 0.719,-0.792 l 14.257,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path16413"
-                   d="m 141.517,75.305 c -0.216,0.288 -0.504,0.504 -0.792,0.792 l -14.184,3.528 c 0.216,-0.288 0.504,-0.504 0.72,-0.792 l 14.256,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path16415"
-                   d="m 141.157,75.737 c -0.288,0.216 -0.504,0.504 -0.792,0.792 l -14.256,3.528 c 0.288,-0.288 0.576,-0.576 0.793,-0.864 l 14.255,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path16417"
-                   d="m 140.725,76.097 c -0.216,0.288 -0.504,0.576 -0.792,0.792 l -14.184,3.528 c 0.288,-0.288 0.504,-0.504 0.792,-0.792 l 14.184,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path16419"
-                   d="m 140.365,76.529 c -0.288,0.288 -0.576,0.504 -0.864,0.792 l -14.111,3.528 c 0.215,-0.288 0.503,-0.576 0.719,-0.792 l 14.256,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path16421"
-                   d="m 139.933,76.889 c -0.288,0.288 -0.576,0.576 -0.864,0.864 l -14.112,3.456 c 0.288,-0.216 0.505,-0.504 0.792,-0.792 l 14.184,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path16423"
-                   d="m 139.501,77.321 c -0.288,0.288 -0.575,0.576 -0.936,0.863 l -13.968,3.457 c 0.216,-0.288 0.504,-0.504 0.793,-0.792 l 14.111,-3.528 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path16425"
-                   d="m 139.069,77.753 c -0.36,0.288 -0.648,0.576 -0.936,0.864 l -13.968,3.456 c 0.288,-0.288 0.504,-0.576 0.792,-0.864 l 14.112,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path16427"
-                   d="m 138.565,78.184 c -0.288,0.289 -0.648,0.577 -1.008,0.865 l -13.824,3.384 c 0.288,-0.216 0.576,-0.504 0.864,-0.792 l 13.968,-3.457 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path16429"
-                   d="m 138.133,78.617 c -0.36,0.288 -0.719,0.576 -1.08,0.864 l -13.752,3.384 c 0.288,-0.288 0.577,-0.504 0.864,-0.792 l 13.968,-3.456 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path16431"
-                   d="m 137.557,79.049 c -0.288,0.216 -0.576,0.504 -0.936,0.792 l -13.608,3.312 c 0.216,-0.216 0.504,-0.432 0.72,-0.72 l 13.824,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path16433"
-                   d="m 137.053,79.481 c -0.36,0.288 -0.648,0.504 -1.008,0.792 l -13.464,3.312 c 0.216,-0.216 0.504,-0.504 0.72,-0.72 l 13.752,-3.384 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path16435"
-                   d="m 136.621,79.841 c -0.36,0.288 -0.792,0.576 -1.152,0.864 l -13.392,3.312 c 0.288,-0.288 0.648,-0.576 0.936,-0.864 l 13.608,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path16437"
-                   d="m 136.045,80.273 c -0.432,0.288 -0.792,0.576 -1.224,0.936 l -13.176,3.24 c 0.288,-0.289 0.576,-0.576 0.936,-0.864 l 13.464,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path16439"
-                   d="m 135.469,80.705 c -0.432,0.36 -0.936,0.648 -1.368,0.936 l -12.96,3.24 c 0.36,-0.288 0.648,-0.576 0.936,-0.864 l 13.392,-3.312 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path16441"
-                   d="m 134.821,81.209 c -0.504,0.288 -0.936,0.648 -1.44,0.936 l -12.672,3.168 c 0.289,-0.288 0.648,-0.576 0.936,-0.864 l 13.176,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path16443"
-                   d="m 134.101,81.641 c -0.504,0.36 -1.008,0.72 -1.512,1.008 l -12.384,3.096 c 0.288,-0.288 0.648,-0.576 0.936,-0.864 l 12.96,-3.24 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path16445"
-                   d="m 133.381,82.145 c -0.576,0.36 -1.152,0.72 -1.656,1.008 l -12.024,3.024 c 0.288,-0.288 0.648,-0.576 1.008,-0.864 l 12.672,-3.168 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path16447"
-                   d="m 132.589,82.649 c -0.648,0.36 -1.224,0.72 -1.872,1.08 l -11.592,2.88 c 0.361,-0.288 0.72,-0.576 1.08,-0.864 l 12.384,-3.096 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path16449"
-                   d="m 131.725,83.153 c -0.72,0.432 -1.368,0.792 -2.088,1.152 l -11.088,2.736 c 0.36,-0.288 0.72,-0.576 1.08,-0.864 l 12.096,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <g
-                   id="g16451">
-                  <g
-                     id="g16453">
-                    <path
-                       id="path16455"
-                       d="m 118.693,87.329 c -0.144,0 -0.288,0 -0.432,-0.072 0.288,-0.216 0.576,-0.432 0.864,-0.648 l 11.592,-2.88"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16457">
-                  <g
-                     id="g16459">
-                    <path
-                       id="path16461"
-                       d="m 120.277,87.257 c -0.72,0 -1.368,0.072 -2.016,0 0.072,-0.073 0.216,-0.144 0.288,-0.216 l 11.088,-2.736"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path16463"
-                   d="m 128.269,84.953 c -3.384,1.512 -6.696,2.376 -9.576,2.376 l 9.576,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path16465"
-                   d="m 126.469,85.672 c -2.16,0.865 -4.248,1.369 -6.192,1.585 l 6.192,-1.585 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path16467"
-                   d="m 118.261,87.257 1.944,-0.073 2.016,-0.287 2.16,-0.504 2.232,-0.792 2.232,-0.936 2.232,-1.152 2.232,-1.368 2.232,-1.512 2.16,-1.728 2.088,-1.8 1.944,-2.016 1.872,-2.16 1.656,-2.232 1.512,-2.376 1.296,-2.52 1.08,-2.592 -1.08,0.144 -1.08,0.144 -1.152,0.072 -1.152,0.144 -1.008,0.072 -0.864,0.144 -0.72,0.144 -0.36,0.216 -1.295,1.008 -1.297,1.08 -1.368,1.296 -1.368,1.296 -1.368,1.44 -1.44,1.512 -1.44,1.584 -1.44,1.584 -1.44,1.656 -1.512,1.584 -1.512,1.584 -1.584,1.584 -1.584,1.584 -1.584,1.44 -1.584,1.44 -1.656,1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g16469">
-                <path
-                   id="path16471"
-                   d="m 134.245,65.153 c -0.36,0.072 -0.648,0.144 -0.864,0.144 -0.072,0.072 -0.072,0.072 -0.144,0.144 l 1.008,-0.288 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path16473"
-                   d="m 137.989,64.505 c -1.656,0.288 -3.384,0.576 -4.608,0.792 -0.216,0.216 -0.431,0.36 -0.576,0.504 l 5.184,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path16475"
-                   d="m 134.245,65.153 c 1.944,-0.36 4.536,-0.792 6.336,-0.936 l -8.28,2.088 c 0.288,-0.288 0.649,-0.648 0.936,-0.864 l 1.008,-0.288 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path16477"
-                   d="m 141.229,64.433 c 0.072,-0.072 0.216,-0.144 0.36,-0.288 -0.864,0 -2.16,0.216 -3.6,0.36 l -5.184,1.296 c -0.36,0.36 -0.72,0.648 -1.08,1.008 l 9.504,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path16479"
-                   d="m 140.653,64.865 c 0.288,-0.216 0.576,-0.432 0.936,-0.72 -0.288,0 -0.648,0.072 -1.008,0.072 l -8.28,2.088 c -0.36,0.288 -0.72,0.576 -1.008,0.936 l 9.36,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path16481"
-                   d="m 141.229,64.433 c -0.36,0.288 -0.72,0.576 -1.08,0.864 l -9.288,2.304 c 0.288,-0.288 0.577,-0.504 0.864,-0.792 l 9.504,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path16483"
-                   d="m 140.653,64.865 c -0.36,0.36 -0.72,0.648 -1.08,1.008 l -9.288,2.232 c 0.36,-0.288 0.648,-0.576 1.008,-0.864 l 9.36,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path16485"
-                   d="m 140.149,65.297 c -0.36,0.36 -0.72,0.648 -1.08,1.008 l -9.216,2.232 c 0.36,-0.288 0.648,-0.576 1.008,-0.936 l 9.288,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path16487"
-                   d="m 139.573,65.873 c -0.36,0.216 -0.647,0.504 -0.936,0.792 l -9.216,2.304 c 0.288,-0.288 0.577,-0.576 0.864,-0.864 l 9.288,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path16489"
-                   d="m 139.069,66.305 c -0.36,0.288 -0.648,0.576 -1.008,0.936 l -9.144,2.232 c 0.288,-0.288 0.648,-0.648 0.936,-0.936 l 9.216,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path16491"
-                   d="m 138.637,66.665 c -0.36,0.36 -0.72,0.648 -1.008,0.936 l -9.143,2.304 c 0.359,-0.36 0.647,-0.648 0.935,-0.936 l 9.216,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path16493"
-                   d="m 138.061,67.241 c -0.288,0.216 -0.575,0.504 -0.864,0.792 l -9.072,2.232 c 0.289,-0.288 0.504,-0.504 0.792,-0.792 l 9.144,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path16495"
-                   d="m 137.629,67.601 c -0.36,0.288 -0.648,0.648 -0.936,0.936 l -9.072,2.232 c 0.288,-0.288 0.576,-0.576 0.865,-0.864 l 9.143,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path16497"
-                   d="m 137.197,68.033 c -0.288,0.288 -0.648,0.576 -0.936,0.936 l -9.072,2.232 c 0.288,-0.288 0.648,-0.648 0.936,-0.936 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path16499"
-                   d="m 136.693,68.537 c -0.288,0.288 -0.576,0.504 -0.791,0.792 l -9.073,2.232 c 0.288,-0.216 0.504,-0.504 0.792,-0.792 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path16501"
-                   d="m 136.261,68.969 c -0.287,0.288 -0.576,0.576 -0.864,0.864 l -9.072,2.232 c 0.288,-0.288 0.577,-0.576 0.864,-0.864 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path16503"
-                   d="m 135.902,69.329 c -0.361,0.288 -0.649,0.648 -0.937,0.936 l -9.072,2.232 c 0.288,-0.288 0.648,-0.576 0.936,-0.936 l 9.073,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path16505"
-                   d="m 135.397,69.833 c -0.288,0.288 -0.504,0.576 -0.792,0.864 l -9.072,2.232 c 0.288,-0.288 0.504,-0.576 0.792,-0.864 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path16507"
-                   d="m 134.965,70.265 c -0.288,0.288 -0.575,0.576 -0.864,0.864 l -9.072,2.304 c 0.288,-0.288 0.576,-0.648 0.864,-0.936 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path16509"
-                   d="m 134.605,70.697 c -0.288,0.288 -0.576,0.576 -0.864,0.864 l -9.072,2.232 c 0.288,-0.288 0.576,-0.576 0.864,-0.864 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path16511"
-                   d="m 134.101,71.129 c -0.216,0.288 -0.432,0.576 -0.72,0.864 l -9.144,2.232 c 0.288,-0.288 0.576,-0.576 0.792,-0.792 l 9.072,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path16513"
-                   d="m 133.741,71.561 c -0.288,0.288 -0.504,0.576 -0.791,0.864 l -9.145,2.304 c 0.288,-0.288 0.576,-0.648 0.864,-0.936 l 9.072,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path16515"
-                   d="m 133.381,71.993 c -0.288,0.288 -0.503,0.576 -0.792,0.864 l -9.216,2.232 c 0.288,-0.288 0.577,-0.576 0.864,-0.864 l 9.144,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path16517"
-                   d="m 132.95,72.425 c -0.289,0.288 -0.505,0.576 -0.721,0.792 l -9.216,2.304 c 0.288,-0.288 0.504,-0.504 0.792,-0.792 l 9.145,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path16519"
-                   d="m 132.589,72.857 c -0.288,0.288 -0.576,0.576 -0.792,0.864 l -9.287,2.304 c 0.287,-0.288 0.575,-0.576 0.863,-0.936 l 9.216,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path16521"
-                   d="m 132.229,73.217 c -0.288,0.288 -0.576,0.576 -0.791,0.936 l -9.289,2.232 c 0.289,-0.288 0.576,-0.576 0.864,-0.864 l 9.216,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path16523"
-                   d="m 131.797,73.721 c -0.288,0.288 -0.504,0.504 -0.72,0.792 l -9.288,2.304 c 0.216,-0.288 0.504,-0.504 0.721,-0.792 l 9.287,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path16525"
-                   d="m 131.438,74.153 c -0.289,0.288 -0.577,0.576 -0.793,0.864 l -9.36,2.304 c 0.288,-0.288 0.576,-0.576 0.864,-0.936 l 9.289,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path16527"
-                   d="m 131.077,74.513 c -0.288,0.288 -0.576,0.576 -0.792,0.864 l -9.432,2.376 c 0.288,-0.36 0.576,-0.648 0.936,-0.936 l 9.288,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path16529"
-                   d="m 130.645,75.017 c -0.288,0.216 -0.504,0.504 -0.719,0.792 l -9.433,2.304 c 0.216,-0.288 0.505,-0.504 0.792,-0.792 l 9.36,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path16531"
-                   d="m 130.285,75.377 c -0.287,0.288 -0.576,0.648 -0.864,0.936 l -9.504,2.304 c 0.36,-0.288 0.648,-0.576 0.936,-0.864 l 9.432,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path16533"
-                   d="m 129.926,75.809 c -0.289,0.288 -0.577,0.576 -0.793,0.864 l -9.576,2.376 c 0.288,-0.288 0.576,-0.576 0.936,-0.936 l 9.433,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path16535"
-                   d="m 129.421,76.313 c -0.216,0.216 -0.432,0.504 -0.648,0.792 l -9.648,2.376 c 0.289,-0.288 0.576,-0.576 0.792,-0.864 l 9.504,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path16537"
-                   d="m 129.133,76.673 c -0.288,0.288 -0.576,0.576 -0.864,0.864 l -9.648,2.448 c 0.288,-0.288 0.576,-0.648 0.936,-0.936 l 9.576,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path16539"
-                   d="m 128.773,77.105 c -0.287,0.288 -0.576,0.576 -0.792,0.864 l -9.792,2.448 c 0.288,-0.36 0.648,-0.648 0.936,-0.936 l 9.648,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path16541"
-                   d="m 128.269,77.537 c -0.216,0.288 -0.432,0.576 -0.648,0.792 l -9.864,2.448 c 0.288,-0.216 0.576,-0.504 0.864,-0.792 l 9.648,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path16543"
-                   d="m 127.981,77.969 c -0.288,0.288 -0.576,0.576 -0.864,0.864 l -9.936,2.448 c 0.36,-0.288 0.648,-0.576 1.008,-0.864 l 9.792,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path16545"
-                   d="m 127.621,78.329 c -0.288,0.36 -0.576,0.648 -0.864,0.936 l -10.008,2.448 c 0.288,-0.288 0.648,-0.576 1.008,-0.936 l 9.864,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path16547"
-                   d="m 127.117,78.833 c -0.215,0.288 -0.432,0.576 -0.72,0.792 l -10.152,2.52 c 0.288,-0.288 0.648,-0.504 0.936,-0.864 l 9.936,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path16549"
-                   d="m 126.757,79.265 c -0.288,0.288 -0.504,0.576 -0.792,0.864 l -10.368,2.592 c 0.36,-0.36 0.72,-0.648 1.152,-1.008 l 10.008,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path16551"
-                   d="m 126.397,79.625 c -0.288,0.288 -0.576,0.648 -0.864,0.936 l -10.44,2.592 c 0.36,-0.36 0.792,-0.648 1.152,-1.008 l 10.152,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path16553"
-                   d="m 125.965,80.129 c -0.288,0.288 -0.503,0.576 -0.792,0.792 l -10.584,2.664 c 0.361,-0.288 0.72,-0.576 1.008,-0.864 l 10.368,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path16555"
-                   d="m 125.533,80.561 c -0.288,0.288 -0.576,0.576 -0.792,0.864 l -10.872,2.664 c 0.432,-0.288 0.792,-0.648 1.224,-0.936 l 10.44,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path16557"
-                   d="m 125.173,80.921 c -0.288,0.288 -0.576,0.648 -0.864,0.936 l -11.088,2.736 c 0.432,-0.36 0.936,-0.648 1.368,-1.008 l 10.584,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path16559"
-                   d="m 124.741,81.425 c -0.288,0.288 -0.576,0.576 -0.863,0.792 l -11.305,2.808 c 0.432,-0.288 0.865,-0.576 1.296,-0.936 l 10.872,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path16561"
-                   d="m 124.309,81.857 c -0.288,0.288 -0.648,0.576 -0.936,0.936 l -11.88,2.879 c 0.576,-0.287 1.152,-0.647 1.728,-1.079 l 11.088,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path16563"
-                   d="m 123.878,82.217 c -0.289,0.36 -0.577,0.648 -0.937,0.936 l -12.455,3.096 c 0.719,-0.36 1.367,-0.72 2.087,-1.224 l 11.305,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path16565"
-                   d="m 123.373,82.793 c -0.288,0.288 -0.576,0.504 -0.863,0.792 l -13.753,3.384 c 0.936,-0.288 1.8,-0.72 2.736,-1.297 l 11.88,-2.879 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <g
-                   id="g16567">
-                  <g
-                     id="g16569">
-                    <path
-                       id="path16571"
-                       d="m 108.037,87.545 c -0.072,-0.072 -0.216,-0.144 -0.288,-0.288 0.864,-0.144 1.8,-0.504 2.737,-1.008 l 12.455,-3.096"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16573">
-                  <g
-                     id="g16575">
-                    <path
-                       id="path16577"
-                       d="m 108.397,87.761 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.504 0.288,-0.073 0.648,-0.144 1.008,-0.288 l 13.753,-3.384"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16579">
-                  <g
-                     id="g16581">
-                    <path
-                       id="path16583"
-                       d="m 108.685,87.977 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l 13.896,-3.456"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16585">
-                  <g
-                     id="g16587">
-                    <path
-                       id="path16589"
-                       d="m 109.189,88.265 c -0.287,-0.144 -0.576,-0.288 -0.792,-0.504 l 13.104,-3.24"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16591">
-                  <g
-                     id="g16593">
-                    <path
-                       id="path16595"
-                       d="m 109.549,88.481 c -0.288,-0.144 -0.575,-0.288 -0.864,-0.504 l 12.313,-3.024"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16597">
-                  <g
-                     id="g16599">
-                    <path
-                       id="path16601"
-                       d="m 110.053,88.697 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.432 l 11.16,-2.736"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16603">
-                  <g
-                     id="g16605">
-                    <path
-                       id="path16607"
-                       d="m 110.701,88.913 c -0.36,-0.144 -0.792,-0.288 -1.152,-0.432 l 10.224,-2.52"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16609">
-                  <g
-                     id="g16611">
-                    <path
-                       id="path16613"
-                       d="m 111.349,88.985 c -0.432,-0.072 -0.863,-0.144 -1.296,-0.288 l 9.144,-2.304"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16615">
-                  <g
-                     id="g16617">
-                    <path
-                       id="path16619"
-                       d="m 112.213,89.129 c -0.504,-0.072 -1.008,-0.144 -1.512,-0.216 l 7.632,-1.944"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path16621"
-                   d="m 117.541,87.473 c -2.088,1.296 -4.176,1.872 -6.192,1.512 l 6.192,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path16623"
-                   d="m 116.462,88.049 c -1.44,0.72 -2.809,1.08 -4.249,1.08 l 4.249,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path16625"
-                   d="m 107.749,87.257 1.872,1.224 1.944,0.504 1.945,0 2.015,-0.504 2.016,-1.008 2.016,-1.368 2.088,-1.728 2.088,-1.944 2.088,-2.232 2.16,-2.304 2.232,-2.448 2.232,-2.448 2.232,-2.376 2.304,-2.376 2.304,-2.16 2.304,-1.944 -0.792,0 -0.936,0.144 -1.08,0.072 -1.08,0.216 -1.152,0.144 -1.152,0.216 -1.08,0.216 -0.936,0.144 -1.8,1.656 -1.8,1.656 -1.728,1.728 -1.728,1.728 -1.656,1.728 -1.656,1.728 -1.656,1.728 -1.584,1.584 -1.584,1.584 -1.584,1.44 -1.512,1.296 -1.512,1.152 -1.512,1.008 -1.44,0.864 -1.44,0.648 -1.44,0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g16627">
-                <path
-                   id="path16629"
-                   d="m 127.405,65.729 c -0.431,0 -0.72,0 -0.864,0 -0.792,0.072 -1.512,0.36 -2.232,0.72 l 3.096,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path16631"
-                   d="m 129.349,65.513 c -1.296,0.144 -2.52,0.216 -2.808,0.216 -1.008,0.144 -2.016,0.504 -3.024,1.224 l 5.832,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path16633"
-                   d="m 127.405,65.729 c 0.936,-0.144 2.376,-0.288 3.6,-0.36 l -8.064,1.944 c 0.432,-0.288 0.864,-0.576 1.368,-0.864 l 3.096,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path16635"
-                   d="m 129.349,65.513 c 1.368,-0.144 2.88,-0.288 3.744,-0.36 l -10.655,2.592 c 0.359,-0.288 0.719,-0.576 1.079,-0.792 l 5.832,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path16637"
-                   d="m 133.021,65.369 c 0.072,-0.072 0.216,-0.144 0.36,-0.288 -0.503,0.072 -1.368,0.144 -2.376,0.288 l -8.064,1.944 c -0.288,0.288 -0.576,0.504 -0.936,0.792 l 11.016,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path16639"
-                   d="m 132.445,65.801 c 0.288,-0.216 0.576,-0.432 0.936,-0.72 -0.072,0.072 -0.216,0.072 -0.288,0.072 l -10.655,2.592 c -0.289,0.288 -0.577,0.504 -0.865,0.792 l 10.872,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path16641"
-                   d="m 133.021,65.369 c -0.36,0.288 -0.648,0.504 -0.936,0.792 l -10.872,2.664 c 0.288,-0.216 0.576,-0.504 0.792,-0.72 l 11.016,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path16643"
-                   d="m 132.445,65.801 c -0.288,0.288 -0.576,0.504 -0.864,0.792 l -10.8,2.664 c 0.288,-0.216 0.504,-0.504 0.792,-0.72 l 10.872,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path16645"
-                   d="m 132.085,66.161 c -0.288,0.288 -0.647,0.576 -0.936,0.792 l -10.656,2.664 c 0.216,-0.288 0.505,-0.504 0.72,-0.792 l 10.872,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path16647"
-                   d="m 131.581,66.593 c -0.288,0.216 -0.504,0.504 -0.792,0.72 l -10.656,2.664 c 0.216,-0.288 0.432,-0.504 0.648,-0.72 l 10.8,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path16649"
-                   d="m 131.149,66.953 c -0.216,0.288 -0.504,0.504 -0.792,0.792 l -10.584,2.592 c 0.216,-0.288 0.504,-0.504 0.72,-0.72 l 10.656,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path16651"
-                   d="m 130.789,67.313 c -0.216,0.216 -0.504,0.504 -0.72,0.72 l -10.583,2.592 c 0.215,-0.216 0.431,-0.432 0.647,-0.648 l 10.656,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path16653"
-                   d="m 130.357,67.745 c -0.216,0.216 -0.504,0.432 -0.72,0.72 l -10.512,2.592 c 0.216,-0.288 0.432,-0.504 0.648,-0.72 l 10.584,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path16655"
-                   d="m 130.069,68.033 c -0.288,0.216 -0.504,0.504 -0.792,0.72 l -10.44,2.592 c 0.216,-0.216 0.432,-0.432 0.649,-0.72 l 10.583,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path16657"
-                   d="m 129.637,68.465 c -0.288,0.216 -0.504,0.432 -0.72,0.72 l -10.44,2.592 c 0.216,-0.288 0.432,-0.504 0.648,-0.72 l 10.512,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path16659"
-                   d="m 129.277,68.753 c -0.216,0.288 -0.504,0.504 -0.72,0.792 l -10.368,2.52 c 0.216,-0.216 0.432,-0.504 0.648,-0.72 l 10.44,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path16661"
-                   d="m 128.917,69.185 c -0.216,0.216 -0.431,0.432 -0.648,0.648 l -10.367,2.592 c 0.215,-0.216 0.359,-0.432 0.575,-0.648 l 10.44,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path16663"
-                   d="m 128.557,69.545 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l -10.296,2.52 c 0.144,-0.216 0.361,-0.504 0.576,-0.72 l 10.368,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path16665"
-                   d="m 128.269,69.833 c -0.216,0.216 -0.504,0.504 -0.72,0.72 l -10.224,2.52 c 0.144,-0.216 0.36,-0.432 0.577,-0.648 l 10.367,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path16667"
-                   d="m 127.909,70.265 c -0.288,0.216 -0.504,0.432 -0.72,0.72 l -10.224,2.52 c 0.216,-0.288 0.432,-0.504 0.648,-0.72 l 10.296,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path16669"
-                   d="m 127.549,70.553 c -0.216,0.288 -0.432,0.504 -0.72,0.792 l -10.152,2.52 c 0.216,-0.288 0.432,-0.504 0.648,-0.792 l 10.224,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path16671"
-                   d="m 127.189,70.985 c -0.215,0.216 -0.432,0.432 -0.648,0.648 l -10.224,2.52 c 0.216,-0.216 0.432,-0.432 0.648,-0.648 l 10.224,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path16673"
-                   d="m 126.829,71.345 c -0.216,0.216 -0.36,0.432 -0.576,0.648 l -10.224,2.52 c 0.216,-0.216 0.433,-0.432 0.648,-0.648 l 10.152,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path16675"
-                   d="m 126.541,71.633 c -0.216,0.216 -0.432,0.504 -0.576,0.72 l -10.224,2.52 c 0.216,-0.216 0.432,-0.432 0.576,-0.72 l 10.224,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path16677"
-                   d="m 126.253,71.993 c -0.216,0.288 -0.432,0.504 -0.648,0.72 l -10.152,2.448 c 0.216,-0.216 0.36,-0.432 0.576,-0.648 l 10.224,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path16679"
-                   d="m 125.965,72.353 c -0.216,0.216 -0.432,0.432 -0.648,0.648 l -10.152,2.52 c 0.144,-0.216 0.36,-0.432 0.576,-0.648 l 10.224,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path16681"
-                   d="m 125.605,72.713 c -0.215,0.216 -0.432,0.432 -0.648,0.72 l -10.152,2.52 c 0.217,-0.288 0.432,-0.504 0.648,-0.792 l 10.152,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path16683"
-                   d="m 125.317,73.001 c -0.216,0.288 -0.432,0.504 -0.648,0.792 l -10.224,2.52 c 0.288,-0.288 0.505,-0.504 0.72,-0.792 l 10.152,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path16685"
-                   d="m 124.957,73.433 c -0.216,0.216 -0.36,0.432 -0.576,0.648 l -10.224,2.52 c 0.216,-0.216 0.432,-0.432 0.648,-0.648 l 10.152,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path16687"
-                   d="m 124.669,73.793 c -0.216,0.216 -0.432,0.432 -0.648,0.648 l -10.152,2.52 c 0.216,-0.216 0.432,-0.432 0.576,-0.648 l 10.224,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path16689"
-                   d="m 124.381,74.081 c -0.216,0.288 -0.431,0.504 -0.648,0.72 l -10.223,2.52 c 0.215,-0.216 0.431,-0.432 0.647,-0.72 l 10.224,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path16691"
-                   d="m 124.021,74.441 c -0.216,0.288 -0.36,0.504 -0.576,0.72 l -10.224,2.52 c 0.217,-0.216 0.432,-0.504 0.648,-0.72 l 10.152,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path16693"
-                   d="m 123.733,74.801 c -0.216,0.216 -0.432,0.504 -0.648,0.72 l -10.296,2.52 c 0.288,-0.216 0.504,-0.432 0.721,-0.72 l 10.223,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path16695"
-                   d="m 123.445,75.161 c -0.216,0.216 -0.432,0.432 -0.648,0.72 l -10.296,2.52 c 0.216,-0.217 0.432,-0.504 0.72,-0.72 l 10.224,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path16697"
-                   d="m 123.085,75.521 c -0.216,0.288 -0.432,0.504 -0.575,0.72 l -10.369,2.52 c 0.216,-0.216 0.432,-0.432 0.648,-0.72 l 10.296,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path16699"
-                   d="m 122.797,75.881 c -0.216,0.216 -0.432,0.432 -0.648,0.648 l -10.368,2.592 c 0.288,-0.216 0.504,-0.504 0.72,-0.72 l 10.296,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path16701"
-                   d="m 122.51,76.241 c -0.217,0.216 -0.433,0.432 -0.649,0.648 l -10.368,2.592 c 0.216,-0.288 0.433,-0.504 0.648,-0.72 l 10.369,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path16703"
-                   d="m 122.149,76.529 c -0.216,0.288 -0.432,0.504 -0.648,0.72 l -10.44,2.592 c 0.288,-0.216 0.504,-0.504 0.72,-0.72 l 10.368,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path16705"
-                   d="m 121.861,76.889 c -0.216,0.288 -0.432,0.504 -0.648,0.72 l -10.512,2.592 c 0.288,-0.288 0.504,-0.504 0.792,-0.72 l 10.368,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path16707"
-                   d="m 121.501,77.249 c -0.216,0.288 -0.432,0.504 -0.648,0.792 l -10.512,2.52 c 0.216,-0.216 0.504,-0.504 0.72,-0.72 l 10.44,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path16709"
-                   d="m 121.213,77.609 c -0.215,0.216 -0.504,0.504 -0.72,0.72 l -10.584,2.664 c 0.288,-0.288 0.577,-0.576 0.792,-0.792 l 10.512,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path16711"
-                   d="m 120.853,78.041 c -0.216,0.216 -0.432,0.432 -0.648,0.648 l -10.656,2.592 c 0.288,-0.216 0.504,-0.432 0.792,-0.72 l 10.512,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path16713"
-                   d="m 120.493,78.329 c -0.216,0.216 -0.432,0.504 -0.648,0.72 l -10.728,2.664 c 0.288,-0.288 0.504,-0.504 0.792,-0.72 l 10.584,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path16715"
-                   d="m 120.205,78.689 c -0.216,0.216 -0.504,0.504 -0.719,0.72 l -10.729,2.664 c 0.217,-0.288 0.504,-0.504 0.792,-0.792 l 10.656,-2.592 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path16717"
-                   d="m 119.845,79.049 c -0.216,0.216 -0.431,0.432 -0.72,0.72 l -10.872,2.664 c 0.288,-0.216 0.576,-0.504 0.864,-0.72 l 10.728,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path16719"
-                   d="m 119.486,79.409 c -0.217,0.216 -0.433,0.504 -0.721,0.72 l -10.944,2.664 c 0.36,-0.216 0.648,-0.504 0.936,-0.72 l 10.729,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path16721"
-                   d="m 119.125,79.769 c -0.216,0.216 -0.504,0.504 -0.792,0.72 l -11.016,2.736 c 0.36,-0.216 0.648,-0.504 0.936,-0.792 l 10.872,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path16723"
-                   d="m 118.765,80.129 c -0.288,0.216 -0.504,0.504 -0.791,0.792 l -11.161,2.736 c 0.36,-0.288 0.721,-0.576 1.008,-0.864 l 10.944,-2.664 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path16725"
-                   d="m 118.333,80.489 c -0.216,0.288 -0.504,0.504 -0.792,0.792 l -11.232,2.736 c 0.36,-0.288 0.72,-0.504 1.008,-0.792 l 11.016,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path16727"
-                   d="m 117.974,80.921 c -0.289,0.216 -0.505,0.432 -0.793,0.648 l -11.376,2.88 c 0.36,-0.289 0.648,-0.504 1.008,-0.792 l 11.161,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path16729"
-                   d="m 117.541,81.281 c -0.216,0.216 -0.504,0.432 -0.792,0.72 l -11.448,2.808 c 0.36,-0.288 0.721,-0.504 1.008,-0.792 l 11.232,-2.736 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path16731"
-                   d="m 117.181,81.569 c -0.288,0.288 -0.576,0.576 -0.936,0.864 l -11.592,2.808 c 0.36,-0.288 0.792,-0.504 1.152,-0.792 l 11.376,-2.88 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path16733"
-                   d="m 116.749,82.001 c -0.287,0.216 -0.576,0.504 -0.864,0.72 l -11.808,2.88 c 0.433,-0.216 0.864,-0.504 1.224,-0.792 l 11.448,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path16735"
-                   d="m 116.245,82.433 c -0.288,0.216 -0.648,0.504 -0.936,0.72 l -11.952,2.952 c 0.432,-0.288 0.864,-0.576 1.296,-0.864 l 11.592,-2.808 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path16737"
-                   d="m 115.885,82.721 c -0.36,0.288 -0.72,0.576 -1.08,0.864 l -12.24,3.024 c 0.504,-0.288 1.008,-0.648 1.512,-1.008 l 11.808,-2.88 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path16739"
-                   d="m 115.309,83.153 c -0.359,0.288 -0.72,0.576 -1.08,0.864 l -12.384,3.024 c 0.504,-0.288 1.008,-0.648 1.512,-0.936 l 11.952,-2.952 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path16741"
-                   d="m 114.805,83.585 c -0.432,0.288 -0.792,0.575 -1.224,0.864 l -12.672,3.096 c 0.577,-0.288 1.08,-0.576 1.656,-0.936 l 12.24,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path16743"
-                   d="m 114.229,84.017 c -0.432,0.288 -0.864,0.576 -1.296,0.792 l -12.959,3.24 c 0.647,-0.36 1.295,-0.648 1.871,-1.008 l 12.384,-3.024 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <g
-                   id="g16745">
-                  <g
-                     id="g16747">
-                    <path
-                       id="path16749"
-                       d="m 100.189,88.265 c -0.215,0 -0.432,0 -0.576,-0.072 0.433,-0.216 0.864,-0.432 1.296,-0.648 l 12.672,-3.168"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16751">
-                  <g
-                     id="g16753">
-                    <path
-                       id="path16755"
-                       d="m 101.053,88.265 c -0.432,0 -0.936,0 -1.44,-0.072 0.072,0 0.216,-0.072 0.361,-0.144 l 12.959,-3.24"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16757">
-                  <g
-                     id="g16759">
-                    <path
-                       id="path16761"
-                       d="m 102.421,88.265 c -0.72,0 -1.44,0 -2.232,0 l 11.952,-2.952"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g16763">
-                  <g
-                     id="g16765">
-                    <path
-                       id="path16767"
-                       d="m 104.438,88.049 c -1.081,0.144 -2.161,0.216 -3.385,0.216 l 10.368,-2.52"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path16769"
-                   d="m 110.197,86.321 c -2.304,1.08 -4.824,1.8 -7.776,1.944 l 7.776,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path16771"
-                   d="m 108.397,87.041 c -1.224,0.504 -2.519,0.792 -3.887,1.008 l 3.887,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path16773"
-                   d="m 99.613,88.193 2.952,0 2.808,-0.288 2.52,-0.721 2.448,-0.935 2.232,-1.152 2.088,-1.44 2.016,-1.584 1.872,-1.728 1.872,-1.872 1.8,-1.944 1.729,-1.944 1.799,-2.016 1.8,-2.016 1.872,-1.944 1.944,-1.8 2.016,-1.728 -0.72,0.072 -0.864,0.072 -1.08,0.144 -1.08,0.072 -1.08,0.144 -0.864,0.072 -0.719,0.072 -0.433,0 -1.224,0.288 -1.224,0.576 -1.224,0.792 -1.296,1.08 -1.296,1.296 -1.368,1.512 -1.44,1.584 -1.44,1.728 -1.656,1.8 -1.656,1.799 -1.872,1.873 -1.943,1.8 -2.089,1.8 -2.232,1.656 -2.376,1.512 -2.592,1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g16775">
-                <path
-                   id="path16777"
-                   d="m 259.812,28.217 c 0,0.36 -0.071,0.576 0,0.576 -1.151,0.288 -1.655,0.72 -2.663,0.864 -0.072,-0.216 -0.145,-0.504 -0.216,-0.792 l 2.879,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path16779"
-                   d="m 259.885,27.713 c -0.072,0.216 -0.072,0.36 -0.072,0.504 l -2.879,0.648 c 0,-0.144 0,-0.288 -0.073,-0.432 l 3.024,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path16781"
-                   d="m 259.885,27.497 c 0,0.144 -0.072,0.36 -0.072,0.504 l -2.879,0.648 c 0,-0.144 -0.073,-0.288 -0.073,-0.432 l 3.024,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path16783"
-                   d="m 259.885,27.281 c 0,0.144 0,0.288 0,0.432 l -3.024,0.72 c 0,-0.144 0,-0.288 -0.071,-0.432 l 3.095,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path16785"
-                   d="m 259.885,27.065 c 0,0.144 0,0.288 0,0.432 l -3.024,0.72 c -0.071,-0.144 -0.071,-0.288 -0.071,-0.432 l 3.095,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path16787"
-                   d="m 259.885,26.777 c 0,0.216 0,0.36 0,0.504 l -3.096,0.72 c 0,-0.144 -0.072,-0.288 -0.072,-0.432 l 3.168,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path16789"
-                   d="m 259.957,26.561 c 0,0.144 -0.072,0.36 -0.072,0.504 l -3.096,0.72 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.504 l 3.312,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path16791"
-                   d="m 259.957,26.345 c 0,0.144 0,0.288 -0.072,0.432 l -3.168,0.792 c 0,-0.144 -0.071,-0.36 -0.071,-0.504 l 3.311,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path16793"
-                   d="m 259.957,26.057 c 0,0.144 0,0.36 0,0.504 l -3.312,0.72 c 0,-0.144 0,-0.288 -0.072,-0.432 l 3.384,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path16795"
-                   d="m 259.957,25.841 c 0,0.144 0,0.288 0,0.504 l -3.312,0.72 c -0.072,-0.144 -0.072,-0.288 -0.145,-0.504 l 3.457,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path16797"
-                   d="m 259.957,25.553 c 0,0.216 0,0.36 0,0.504 l -3.384,0.792 c 0,-0.144 -0.072,-0.36 -0.072,-0.504 l 3.456,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path16799"
-                   d="m 260.029,25.337 c -0.072,0.144 -0.072,0.36 -0.072,0.504 l -3.456,0.72 c 0,-0.144 0,-0.216 -0.072,-0.36 l 3.6,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path16801"
-                   d="m 260.029,25.121 c 0,0.144 0,0.288 -0.072,0.432 l -3.456,0.792 c -0.072,-0.144 -0.072,-0.288 -0.072,-0.432 l 3.6,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path16803"
-                   d="m 260.029,24.905 c 0,0.144 0,0.288 0,0.432 l -3.601,0.864 c 0,-0.216 -0.072,-0.36 -0.072,-0.504 l 3.673,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path16805"
-                   d="m 260.029,24.689 c 0,0.144 0,0.288 0,0.432 l -3.601,0.792 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.432 l 3.745,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path16807"
-                   d="m 260.029,24.401 c 0,0.144 0,0.36 0,0.504 l -3.673,0.792 c 0,-0.144 -0.071,-0.288 -0.071,-0.432 l 3.744,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path16809"
-                   d="m 260.029,24.113 c 0,0.216 0,0.36 0,0.576 l -3.744,0.792 c 0,-0.144 -0.072,-0.288 -0.072,-0.504 l 3.816,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path16811"
-                   d="m 260.029,23.897 c 0,0.144 0,0.36 0,0.504 l -3.744,0.864 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.504 l 3.888,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path16813"
-                   d="m 260.029,23.681 c 0,0.144 0,0.288 0,0.432 l -3.816,0.864 c -0.071,-0.144 -0.071,-0.288 -0.071,-0.432 l 3.887,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path16815"
-                   d="m 260.029,23.465 c 0,0.144 0,0.288 0,0.432 l -3.888,0.864 c 0,-0.144 -0.072,-0.288 -0.072,-0.432 l 3.96,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path16817"
-                   d="m 260.029,23.177 c 0,0.216 0,0.36 0,0.504 l -3.888,0.864 c -0.072,-0.144 -0.072,-0.288 -0.145,-0.432 l 4.033,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path16819"
-                   d="m 260.029,22.961 c 0,0.144 0,0.36 0,0.504 l -3.96,0.864 c -0.072,-0.144 -0.072,-0.288 -0.072,-0.432 l 4.032,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path16821"
-                   d="m 260.029,22.745 c 0,0.144 0,0.288 0,0.432 l -4.032,0.936 c 0,-0.144 -0.072,-0.288 -0.072,-0.432 l 4.104,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path16823"
-                   d="m 260.029,22.529 c 0,0.144 0,0.288 0,0.432 l -4.032,0.936 c -0.072,-0.144 -0.072,-0.288 -0.145,-0.432 l 4.177,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path16825"
-                   d="m 260.029,22.241 c 0,0.144 0,0.36 0,0.504 l -4.104,0.936 c -0.072,-0.144 -0.072,-0.288 -0.145,-0.504 l 4.249,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path16827"
-                   d="m 260.029,22.025 c 0,0.144 0,0.288 0,0.504 l -4.177,0.936 c 0,-0.144 -0.072,-0.288 -0.072,-0.504 l 4.249,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path16829"
-                   d="m 260.029,21.809 c 0,0.144 0,0.288 0,0.432 l -4.249,0.936 c 0,-0.144 -0.071,-0.288 -0.071,-0.432 l 4.32,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path16831"
-                   d="m 260.029,21.521 c 0,0.216 0,0.36 0,0.504 l -4.249,0.936 c -0.071,-0.144 -0.071,-0.288 -0.144,-0.432 l 4.393,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path16833"
-                   d="m 260.029,21.305 c 0,0.144 0,0.288 0,0.504 l -4.32,0.936 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.432 l 4.464,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path16835"
-                   d="m 260.029,21.089 c 0,0.144 0,0.288 0,0.432 l -4.393,1.008 c 0,-0.144 -0.071,-0.288 -0.071,-0.432 l 4.464,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path16837"
-                   d="m 260.029,20.801 c 0,0.216 0,0.36 0,0.504 l -4.464,1.008 c 0,-0.144 -0.072,-0.288 -0.072,-0.432 l 4.536,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path16839"
-                   d="m 260.029,20.585 c 0,0.216 0,0.36 0,0.504 l -4.464,1.008 c -0.072,-0.144 -0.072,-0.288 -0.145,-0.432 l 4.609,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path16841"
-                   d="m 260.029,20.369 c 0,0.144 0,0.288 0,0.432 l -4.536,1.08 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.432 l 4.68,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path16843"
-                   d="m 259.957,20.153 c 0,0.144 0.072,0.288 0.072,0.432 l -4.608,1.08 c 0,-0.144 -0.071,-0.288 -0.145,-0.504 l 4.681,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path16845"
-                   d="m 259.957,19.865 c 0,0.216 0,0.36 0.072,0.504 l -4.68,1.08 c 0,-0.144 -0.073,-0.288 -0.073,-0.504 l 4.681,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path16847"
-                   d="m 259.957,19.649 c 0,0.144 0,0.36 0,0.504 l -4.681,1.008 c 0,-0.144 -0.071,-0.288 -0.071,-0.432 l 4.752,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path16849"
-                   d="m 259.957,19.433 c 0,0.144 0,0.288 0,0.432 l -4.681,1.08 c -0.071,-0.144 -0.071,-0.288 -0.144,-0.432 l 4.825,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path16851"
-                   d="m 259.885,19.217 c 0.072,0.144 0.072,0.288 0.072,0.432 l -4.752,1.08 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.36 l 4.824,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path16853"
-                   d="m 259.885,18.929 c 0,0.216 0,0.36 0.072,0.504 l -4.824,1.08 c -0.071,-0.144 -0.071,-0.288 -0.145,-0.432 l 4.897,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path16855"
-                   d="m 259.885,18.713 c 0,0.216 0,0.36 0,0.504 l -4.823,1.152 c 0,-0.216 -0.073,-0.36 -0.145,-0.504 l 4.968,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path16857"
-                   d="m 259.885,18.497 c 0,0.144 0,0.288 0,0.432 l -4.896,1.152 c 0,-0.144 -0.071,-0.288 -0.071,-0.432 l 4.967,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path16859"
-                   d="m 259.812,18.281 c 0,0.144 0.072,0.288 0.072,0.432 l -4.968,1.152 c 0,-0.144 -0.072,-0.288 -0.072,-0.432 l 4.968,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path16861"
-                   d="m 259.812,18.065 c 0,0.144 0,0.288 0.072,0.432 l -4.968,1.152 c -0.072,-0.144 -0.145,-0.288 -0.145,-0.432 l 5.041,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path16863"
-                   d="m 259.741,17.849 c 0.071,0.144 0.071,0.288 0.071,0.432 l -4.968,1.152 C 254.772,19.289 254.7,19.145 254.7,19.001 l 5.041,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path16865"
-                   d="m 259.741,17.633 c 0,0.144 0.071,0.288 0.071,0.432 l -5.04,1.152 c -0.071,-0.144 -0.071,-0.288 -0.144,-0.432 l 5.113,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path16867"
-                   d="m 259.741,17.345 c 0,0.144 0,0.36 0,0.504 l -5.04,1.152 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.432 l 5.184,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path16869"
-                   d="m 259.669,17.129 c 0,0.144 0.072,0.288 0.072,0.504 l -5.112,1.152 c -0.071,-0.144 -0.071,-0.288 -0.145,-0.432 l 5.185,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path16871"
-                   d="m 259.669,16.913 c 0,0.144 0,0.288 0.072,0.432 l -5.184,1.224 c -0.073,-0.144 -0.073,-0.288 -0.145,-0.432 l 5.257,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path16873"
-                   d="m 259.597,16.697 c 0,0.144 0.072,0.288 0.072,0.432 l -5.185,1.224 c 0,-0.144 -0.071,-0.288 -0.144,-0.432 l 5.257,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path16875"
-                   d="m 259.525,16.409 c 0.071,0.144 0.071,0.36 0.144,0.504 l -5.256,1.224 c 0,-0.216 -0.072,-0.36 -0.145,-0.504 l 5.257,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path16877"
-                   d="m 259.525,16.193 c 0,0.144 0.071,0.36 0.071,0.504 l -5.256,1.224 c 0,-0.216 -0.072,-0.36 -0.145,-0.504 l 5.33,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path16879"
-                   d="m 259.453,15.977 c 0.072,0.144 0.072,0.288 0.072,0.432 l -5.257,1.224 c 0,-0.144 -0.072,-0.288 -0.144,-0.432 l 5.329,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path16881"
-                   d="m 259.453,15.761 c 0,0.144 0,0.288 0.072,0.432 l -5.329,1.224 c 0,-0.144 -0.071,-0.288 -0.144,-0.432 l 5.401,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path16883"
-                   d="m 259.381,15.545 c 0,0.144 0.072,0.288 0.072,0.432 l -5.328,1.224 c 0,-0.144 -0.072,-0.288 -0.145,-0.432 l 5.401,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path16885"
-                   d="m 259.309,15.329 c 0.072,0.144 0.072,0.288 0.145,0.432 l -5.4,1.224 c 0,-0.144 -0.072,-0.288 -0.144,-0.432 l 5.399,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path16887"
-                   d="m 259.237,15.113 c 0.071,0.144 0.071,0.288 0.144,0.432 l -5.4,1.224 c 0,-0.144 -0.071,-0.288 -0.144,-0.432 l 5.4,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path16889"
-                   d="m 259.237,14.897 c 0,0.144 0.071,0.288 0.071,0.432 l -5.399,1.224 c -0.072,-0.144 -0.072,-0.288 -0.145,-0.432 l 5.473,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path16891"
-                   d="m 259.165,14.681 c 0,0.144 0.072,0.288 0.072,0.432 l -5.4,1.224 c -0.072,-0.144 -0.072,-0.288 -0.145,-0.432 l 5.473,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path16893"
-                   d="m 259.093,14.393 c 0,0.144 0.072,0.288 0.145,0.504 l -5.473,1.224 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.432 l 5.472,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path16895"
-                   d="m 259.021,14.177 c 0.071,0.144 0.071,0.36 0.144,0.504 l -5.473,1.224 c -0.071,-0.144 -0.144,-0.288 -0.144,-0.432 l 5.473,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path16897"
-                   d="m 258.948,13.961 c 0.073,0.144 0.073,0.288 0.145,0.432 l -5.472,1.296 c -0.072,-0.144 -0.144,-0.288 -0.144,-0.432 l 5.471,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path16899"
-                   d="m 258.877,13.745 c 0.071,0.144 0.071,0.288 0.145,0.432 l -5.473,1.296 c -0.071,-0.144 -0.145,-0.288 -0.216,-0.432 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path16901"
-                   d="m 258.805,13.529 c 0.072,0.144 0.072,0.288 0.144,0.432 l -5.471,1.296 c -0.073,-0.144 -0.145,-0.288 -0.217,-0.432 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path16903"
-                   d="m 258.733,13.313 c 0.071,0.144 0.071,0.288 0.144,0.432 l -5.544,1.296 c 0,-0.144 -0.072,-0.288 -0.145,-0.432 l 5.545,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path16905"
-                   d="m 258.661,13.097 c 0,0.144 0.072,0.288 0.144,0.432 l -5.544,1.296 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.432 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path16907"
-                   d="m 258.589,12.881 c 0,0.144 0.072,0.288 0.145,0.432 l -5.545,1.296 c -0.071,-0.144 -0.144,-0.288 -0.144,-0.432 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path16909"
-                   d="m 258.444,12.665 c 0.073,0.144 0.145,0.288 0.217,0.432 l -5.544,1.296 c -0.072,-0.144 -0.144,-0.288 -0.217,-0.432 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path16911"
-                   d="m 258.373,12.449 c 0.071,0.144 0.145,0.288 0.216,0.432 l -5.544,1.296 c -0.071,-0.144 -0.145,-0.288 -0.216,-0.432 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path16913"
-                   d="m 258.229,12.233 c 0.071,0.144 0.144,0.288 0.215,0.432 l -5.544,1.296 c -0.071,-0.144 -0.144,-0.288 -0.144,-0.432 l 5.473,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path16915"
-                   d="m 258.157,12.017 c 0.072,0.144 0.144,0.288 0.216,0.432 l -5.544,1.296 c -0.072,-0.144 -0.145,-0.288 -0.216,-0.432 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path16917"
-                   d="m 258.013,11.801 c 0.072,0.144 0.145,0.288 0.217,0.432 l -5.473,1.296 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l 5.472,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path16919"
-                   d="m 257.941,11.585 c 0.071,0.144 0.144,0.288 0.216,0.432 l -5.544,1.296 c -0.072,-0.144 -0.145,-0.288 -0.217,-0.432 l 5.545,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path16921"
-                   d="m 257.797,11.369 c 0.072,0.144 0.145,0.288 0.216,0.432 l -5.472,1.296 c -0.072,-0.144 -0.145,-0.288 -0.216,-0.432 l 5.472,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path16923"
-                   d="m 257.653,11.225 c 0.072,0.072 0.144,0.216 0.288,0.36 l -5.545,1.296 c -0.071,-0.144 -0.071,-0.288 -0.144,-0.432 l 5.401,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path16925"
-                   d="m 257.509,11.009 c 0.072,0.144 0.217,0.216 0.288,0.36 l -5.472,1.296 c -0.072,-0.144 -0.145,-0.288 -0.217,-0.432 l 5.401,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path16927"
-                   d="m 257.364,10.793 c 0.073,0.144 0.217,0.288 0.289,0.432 l -5.4,1.224 c -0.145,-0.144 -0.216,-0.288 -0.288,-0.432 l 5.399,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path16929"
-                   d="m 257.149,10.577 c 0.144,0.144 0.215,0.288 0.359,0.432 l -5.4,1.224 c -0.071,-0.144 -0.144,-0.288 -0.216,-0.432 l 5.257,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path16931"
-                   d="m 257.005,10.361 c 0.145,0.144 0.216,0.288 0.359,0.432 l -5.399,1.224 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path16933"
-                   d="m 256.86,10.217 c 0.073,0.072 0.217,0.216 0.289,0.36 l -5.257,1.224 c -0.144,-0.144 -0.216,-0.288 -0.288,-0.432 l 5.256,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path16935"
-                   d="m 256.646,10.001 c 0.144,0.144 0.215,0.216 0.359,0.36 l -5.256,1.224 c -0.072,-0.144 -0.145,-0.288 -0.216,-0.36 l 5.113,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path16937"
-                   d="m 256.429,9.857 c 0.145,0.072 0.288,0.216 0.432,0.36 l -5.256,1.152 c -0.071,-0.072 -0.144,-0.216 -0.216,-0.36 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path16939"
-                   d="m 256.213,9.641 c 0.144,0.144 0.288,0.216 0.433,0.36 l -5.112,1.224 c -0.145,-0.144 -0.216,-0.288 -0.288,-0.432 l 4.967,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path16941"
-                   d="m 255.925,9.497 c 0.217,0.072 0.36,0.216 0.504,0.36 l -5.04,1.152 c -0.071,-0.144 -0.216,-0.288 -0.288,-0.432 l 4.824,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path16943"
-                   d="m 255.637,9.281 c 0.216,0.144 0.36,0.216 0.576,0.36 l -4.968,1.152 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l 4.68,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path16945"
-                   d="m 255.276,9.137 c 0.217,0.072 0.433,0.216 0.721,0.36 l -4.896,1.08 c -0.071,-0.144 -0.216,-0.288 -0.359,-0.432 l 4.534,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path16947"
-                   d="m 254.917,8.993 c 0.288,0.072 0.504,0.144 0.72,0.288 l -4.68,1.08 c -0.145,-0.144 -0.216,-0.288 -0.36,-0.36 l 4.32,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path16949"
-                   d="m 254.484,8.849 c 0.288,0.072 0.577,0.144 0.792,0.288 l -4.535,1.008 c -0.072,-0.144 -0.216,-0.216 -0.288,-0.36 l 4.031,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path16951"
-                   d="m 253.98,8.705 c 0.36,0.072 0.648,0.144 0.937,0.288 l -4.32,1.008 c -0.071,-0.144 -0.216,-0.288 -0.288,-0.432 l 3.671,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path16953"
-                   d="m 253.404,8.633 c 0.36,0.072 0.721,0.072 1.08,0.216 l -4.031,0.936 c -0.145,-0.144 -0.216,-0.288 -0.36,-0.36 l 3.311,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path16955"
-                   d="m 253.98,8.705 c -0.503,-0.072 -1.08,-0.072 -1.728,0 -0.72,0.072 -1.512,0.216 -2.305,0.504 0.073,0.144 0.217,0.288 0.36,0.36 l 3.673,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffab00" />
-                <path
-                   id="path16957"
-                   d="m 253.333,8.633 c -0.937,-0.072 -2.088,0.144 -3.385,0.576 0,0.072 0.073,0.144 0.145,0.216 l 3.24,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path16959"
-                   d="m 250.093,9.209 c 0.792,-0.288 1.44,-0.432 2.16,-0.504 l -2.16,0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffb800" />
-                <path
-                   id="path16961"
-                   d="m 259.812,28.793 0,-0.288 0.072,-0.792 0.072,-1.224 0.072,-1.512 0.071,-1.8 -0.071,-1.944 -0.072,-2.016 -0.216,-2.088 -0.433,-1.944 -0.575,-1.872 -0.721,-1.656 -1.079,-1.368 -1.225,-1.008 -1.584,-0.576 -1.944,-0.072 -2.232,0.576 0.721,0.72 0.648,0.864 0.647,1.08 0.576,1.152 0.576,1.296 0.504,1.296 0.504,1.44 0.504,1.512 0.433,1.44 0.359,1.512 0.359,1.512 0.361,1.44 0.287,1.44 0.288,1.368 0.217,1.224 0.216,1.152 0.359,-0.072 0.288,-0.072 0.36,-0.144 0.287,-0.072 0.289,-0.144 0.288,-0.144 0.359,-0.072 0.435,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g16963">
-                <path
-                   id="path16965"
-                   d="m 256.86,28.433 c 0.073,0.432 0.145,0.936 0.289,1.44 -1.369,0.36 -0.864,0.576 -3.528,0.936 -0.144,-0.504 -0.288,-1.008 -0.36,-1.584 l 3.599,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path16967"
-                   d="m 256.717,28.001 c 0.072,0.144 0.072,0.288 0.144,0.432 l -3.6,0.792 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.432 l 3.6,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path16969"
-                   d="m 256.717,27.713 c 0,0.144 0.072,0.288 0.072,0.504 l -3.601,0.792 c 0,-0.144 -0.071,-0.288 -0.071,-0.504 l 3.6,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path16971"
-                   d="m 256.646,27.425 c 0,0.216 0.071,0.36 0.071,0.576 l -3.6,0.792 c 0,-0.144 -0.072,-0.288 -0.072,-0.504 l 3.601,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path16973"
-                   d="m 256.573,27.137 c 0.072,0.216 0.072,0.36 0.144,0.576 l -3.6,0.792 c -0.072,-0.144 -0.144,-0.288 -0.144,-0.504 l 3.6,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path16975"
-                   d="m 256.573,26.993 c 0,0.144 0,0.288 0.072,0.432 l -3.601,0.864 c -0.071,-0.144 -0.071,-0.288 -0.145,-0.504 l 3.674,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path16977"
-                   d="m 256.501,26.705 c 0,0.144 0.072,0.288 0.072,0.432 l -3.6,0.864 C 252.9,27.857 252.9,27.713 252.828,27.497 l 3.673,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path16979"
-                   d="m 256.429,26.417 c 0.072,0.216 0.072,0.36 0.145,0.576 l -3.673,0.792 c 0,-0.144 -0.071,-0.288 -0.144,-0.504 l 3.672,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path16981"
-                   d="m 256.356,26.201 c 0.072,0.144 0.072,0.288 0.145,0.504 l -3.672,0.792 c 0,-0.144 -0.072,-0.288 -0.072,-0.432 l 3.599,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path16983"
-                   d="m 256.356,25.913 c 0,0.216 0.072,0.36 0.072,0.504 l -3.672,0.864 c 0,-0.144 -0.072,-0.288 -0.144,-0.504 l 3.744,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path16985"
-                   d="m 256.285,25.769 c 0,0.144 0.071,0.288 0.071,0.432 l -3.6,0.864 c -0.072,-0.144 -0.144,-0.288 -0.144,-0.432 l 3.673,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path16987"
-                   d="m 256.213,25.409 c 0.072,0.216 0.072,0.36 0.144,0.504 l -3.743,0.864 c 0,-0.144 -0.072,-0.288 -0.072,-0.432 l 3.671,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path16989"
-                   d="m 256.142,25.193 c 0.071,0.216 0.071,0.36 0.144,0.576 l -3.672,0.864 c -0.072,-0.216 -0.145,-0.36 -0.145,-0.576 l 3.673,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path16991"
-                   d="m 256.069,24.905 c 0.072,0.216 0.072,0.36 0.144,0.504 l -3.672,0.936 c -0.072,-0.216 -0.145,-0.36 -0.145,-0.504 l 3.673,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path16993"
-                   d="m 256.069,24.689 c 0,0.216 0.072,0.36 0.072,0.504 l -3.673,0.864 c -0.072,-0.144 -0.144,-0.288 -0.144,-0.504 l 3.745,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path16995"
-                   d="m 255.997,24.473 c 0.072,0.144 0.072,0.288 0.072,0.432 l -3.673,0.936 c -0.071,-0.144 -0.071,-0.288 -0.144,-0.432 l 3.745,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path16997"
-                   d="m 255.925,24.185 c 0.072,0.216 0.072,0.36 0.145,0.504 l -3.744,0.864 c -0.072,-0.144 -0.145,-0.288 -0.145,-0.432 l 3.744,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path16999"
-                   d="m 255.853,23.969 c 0.072,0.216 0.145,0.36 0.145,0.504 l -3.744,0.936 c -0.072,-0.216 -0.072,-0.36 -0.145,-0.504 l 3.744,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path17001"
-                   d="m 255.78,23.681 c 0.072,0.216 0.145,0.36 0.145,0.504 l -3.744,0.936 c -0.072,-0.216 -0.144,-0.36 -0.144,-0.504 l 3.743,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path17003"
-                   d="m 255.78,23.465 c 0,0.216 0.072,0.36 0.072,0.504 l -3.744,0.936 c -0.071,-0.216 -0.144,-0.36 -0.144,-0.504 l 3.816,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path17005"
-                   d="m 255.709,23.177 c 0,0.216 0.071,0.36 0.071,0.504 l -3.743,0.936 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.504 l 3.888,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path17007"
-                   d="m 255.637,22.961 c 0.072,0.216 0.072,0.36 0.144,0.504 l -3.815,0.936 c -0.072,-0.216 -0.144,-0.36 -0.144,-0.504 l 3.815,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path17009"
-                   d="m 255.565,22.745 c 0.071,0.144 0.071,0.288 0.144,0.432 l -3.888,0.936 c 0,-0.144 -0.072,-0.288 -0.072,-0.432 l 3.816,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path17011"
-                   d="m 255.493,22.457 c 0.072,0.216 0.072,0.36 0.144,0.504 l -3.815,0.936 c -0.072,-0.144 -0.145,-0.36 -0.217,-0.504 l 3.888,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path17013"
-                   d="m 255.493,22.241 c 0,0.216 0.072,0.36 0.072,0.504 l -3.816,0.936 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.504 l 3.96,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path17015"
-                   d="m 255.421,21.953 c 0,0.216 0.072,0.36 0.072,0.504 l -3.889,0.936 c -0.071,-0.144 -0.071,-0.288 -0.144,-0.504 l 3.961,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path17017"
-                   d="m 255.35,21.809 c 0,0.144 0.071,0.288 0.144,0.432 l -3.96,0.936 c -0.072,-0.144 -0.072,-0.288 -0.145,-0.504 l 3.961,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path17019"
-                   d="m 255.276,21.521 c 0,0.144 0.073,0.288 0.145,0.432 l -3.96,0.936 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l 4.031,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path17021"
-                   d="m 255.205,21.305 c 0.071,0.144 0.071,0.288 0.145,0.504 l -3.961,0.864 c -0.071,-0.144 -0.144,-0.288 -0.216,-0.432 l 4.032,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path17023"
-                   d="m 255.133,21.017 c 0.072,0.144 0.072,0.288 0.144,0.504 l -4.031,0.936 c 0,-0.144 -0.072,-0.288 -0.145,-0.432 l 4.032,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path17025"
-                   d="m 255.062,20.801 c 0.071,0.144 0.071,0.288 0.144,0.432 l -4.032,1.008 c -0.072,-0.216 -0.072,-0.36 -0.144,-0.504 l 4.032,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path17027"
-                   d="m 254.988,20.585 c 0.073,0.144 0.073,0.288 0.145,0.432 l -4.032,1.008 c -0.071,-0.216 -0.144,-0.36 -0.144,-0.504 l 4.031,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path17029"
-                   d="m 254.917,20.297 c 0.071,0.144 0.071,0.288 0.145,0.504 l -4.032,0.936 c -0.072,-0.144 -0.145,-0.36 -0.217,-0.504 l 4.104,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path17031"
-                   d="m 254.845,20.081 c 0.072,0.144 0.144,0.288 0.144,0.504 l -4.031,0.936 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.504 l 4.103,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path17033"
-                   d="m 254.772,19.793 c 0.072,0.144 0.072,0.288 0.145,0.504 l -4.104,0.936 c -0.071,-0.144 -0.144,-0.288 -0.216,-0.504 l 4.175,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path17035"
-                   d="m 254.701,19.577 c 0.071,0.144 0.144,0.288 0.144,0.504 l -4.104,0.936 c -0.072,-0.144 -0.145,-0.288 -0.216,-0.504 l 4.176,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path17037"
-                   d="m 254.629,19.361 c 0.072,0.144 0.144,0.288 0.144,0.432 l -4.176,0.936 c 0,-0.144 -0.071,-0.288 -0.144,-0.36 l 4.176,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path17039"
-                   d="m 254.558,19.073 c 0.071,0.144 0.144,0.288 0.144,0.504 l -4.176,0.936 c -0.072,-0.144 -0.145,-0.288 -0.217,-0.432 l 4.249,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path17041"
-                   d="m 254.484,18.857 c 0.073,0.144 0.145,0.288 0.145,0.504 l -4.176,1.008 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.504 l 4.247,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path17043"
-                   d="m 254.413,18.569 c 0.071,0.144 0.071,0.36 0.145,0.504 l -4.249,1.008 c -0.071,-0.216 -0.144,-0.36 -0.216,-0.504 l 4.32,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path17045"
-                   d="m 254.341,18.353 c 0.072,0.144 0.144,0.36 0.144,0.504 l -4.247,1.008 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.504 l 4.319,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path17047"
-                   d="m 254.269,18.065 c 0.072,0.144 0.072,0.36 0.145,0.504 l -4.32,1.008 c -0.071,-0.144 -0.145,-0.288 -0.216,-0.504 l 4.391,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path17049"
-                   d="m 254.196,17.849 c 0.072,0.144 0.072,0.36 0.145,0.504 l -4.319,1.008 c -0.073,-0.144 -0.145,-0.288 -0.217,-0.432 l 4.391,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path17051"
-                   d="m 254.125,17.633 c 0.071,0.144 0.071,0.288 0.144,0.432 l -4.392,1.008 c -0.072,-0.144 -0.144,-0.216 -0.216,-0.36 l 4.464,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path17053"
-                   d="m 254.053,17.345 c 0,0.216 0.072,0.36 0.144,0.504 l -4.392,1.08 c -0.071,-0.216 -0.144,-0.36 -0.216,-0.504 l 4.464,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path17055"
-                   d="m 253.98,17.129 c 0,0.216 0.072,0.36 0.145,0.504 l -4.464,1.08 c -0.072,-0.216 -0.144,-0.36 -0.217,-0.504 l 4.536,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path17057"
-                   d="m 253.837,16.841 c 0.072,0.216 0.144,0.36 0.216,0.504 l -4.464,1.08 c -0.145,-0.144 -0.216,-0.36 -0.288,-0.504 l 4.536,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path17059"
-                   d="m 253.765,16.697 c 0.072,0.144 0.145,0.288 0.216,0.432 l -4.536,1.08 c -0.071,-0.144 -0.144,-0.288 -0.215,-0.504 l 4.535,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path17061"
-                   d="m 253.692,16.409 c 0.072,0.144 0.072,0.288 0.145,0.432 l -4.536,1.08 c -0.071,-0.144 -0.144,-0.288 -0.216,-0.432 l 4.607,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path17063"
-                   d="m 253.621,16.193 c 0.071,0.144 0.071,0.288 0.144,0.504 l -4.535,1.008 c -0.072,-0.144 -0.217,-0.288 -0.288,-0.432 l 4.679,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path17065"
-                   d="m 253.549,15.977 c 0,0.144 0.072,0.288 0.144,0.432 l -4.607,1.08 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l 4.679,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path17067"
-                   d="m 253.404,15.689 c 0.073,0.144 0.145,0.288 0.217,0.504 l -4.68,1.08 c -0.072,-0.144 -0.145,-0.288 -0.216,-0.504 l 4.679,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path17069"
-                   d="m 253.333,15.473 c 0.071,0.144 0.145,0.36 0.216,0.504 l -4.68,1.08 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l 4.752,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path17071"
-                   d="m 253.261,15.185 c 0,0.144 0.072,0.36 0.144,0.504 l -4.679,1.08 c -0.145,-0.144 -0.217,-0.288 -0.288,-0.432 l 4.823,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path17073"
-                   d="m 253.117,14.969 c 0.071,0.216 0.144,0.36 0.216,0.504 l -4.752,1.152 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.504 l 4.824,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path17075"
-                   d="m 253.045,14.681 c 0.072,0.216 0.144,0.36 0.216,0.504 l -4.823,1.152 c -0.073,-0.144 -0.217,-0.288 -0.288,-0.504 l 4.895,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path17077"
-                   d="m 252.974,14.537 c 0.071,0.144 0.071,0.288 0.144,0.432 l -4.824,1.152 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.432 l 4.968,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path17079"
-                   d="m 252.829,14.321 c 0.071,0.144 0.145,0.288 0.216,0.36 l -4.896,1.152 c -0.072,-0.072 -0.145,-0.216 -0.216,-0.36 l 4.896,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path17081"
-                   d="m 252.757,14.033 c 0.072,0.144 0.144,0.288 0.217,0.504 l -4.969,1.152 c -0.071,-0.216 -0.145,-0.36 -0.288,-0.504 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path17083"
-                   d="m 252.613,13.817 c 0.071,0.144 0.144,0.288 0.216,0.504 l -4.896,1.152 c -0.145,-0.144 -0.217,-0.288 -0.36,-0.504 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path17085"
-                   d="m 252.541,13.529 c 0.072,0.144 0.144,0.36 0.216,0.504 l -5.04,1.152 c -0.071,-0.144 -0.144,-0.288 -0.288,-0.432 l 5.112,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path17087"
-                   d="m 252.396,13.313 c 0.072,0.144 0.145,0.36 0.217,0.504 l -5.04,1.152 c -0.072,-0.144 -0.145,-0.288 -0.288,-0.432 l 5.111,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path17089"
-                   d="m 252.253,13.025 c 0.072,0.216 0.216,0.36 0.288,0.504 l -5.112,1.224 c -0.072,-0.144 -0.216,-0.288 -0.287,-0.504 l 5.111,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path17091"
-                   d="m 252.181,12.881 c 0.072,0.144 0.145,0.288 0.216,0.432 l -5.111,1.224 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l 5.183,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path17093"
-                   d="m 252.108,12.665 c 0,0.144 0.072,0.288 0.145,0.36 l -5.111,1.224 c -0.145,-0.072 -0.217,-0.216 -0.289,-0.36 l 5.255,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path17095"
-                   d="m 251.965,12.377 c 0.072,0.144 0.144,0.288 0.216,0.504 l -5.184,1.224 c -0.145,-0.144 -0.217,-0.288 -0.36,-0.504 l 5.328,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path17097"
-                   d="m 251.821,12.161 c 0.071,0.144 0.144,0.36 0.287,0.504 l -5.256,1.224 c -0.144,-0.144 -0.216,-0.288 -0.359,-0.432 l 5.328,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path17099"
-                   d="m 251.677,11.945 c 0.072,0.144 0.145,0.288 0.288,0.432 l -5.328,1.224 c -0.071,-0.144 -0.216,-0.288 -0.36,-0.432 l 5.4,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path17101"
-                   d="m 251.533,11.729 c 0.144,0.144 0.216,0.288 0.288,0.432 l -5.328,1.296 c -0.072,-0.144 -0.217,-0.288 -0.36,-0.504 l 5.4,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path17103"
-                   d="m 251.389,11.441 c 0.072,0.144 0.216,0.288 0.288,0.504 l -5.4,1.224 c -0.071,-0.144 -0.215,-0.288 -0.288,-0.432 l 5.4,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path17105"
-                   d="m 251.245,11.225 c 0.144,0.144 0.216,0.36 0.288,0.504 l -5.4,1.224 c -0.071,-0.144 -0.216,-0.288 -0.36,-0.432 l 5.472,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path17107"
-                   d="m 251.173,11.081 c 0.072,0.072 0.145,0.216 0.216,0.36 l -5.4,1.296 c -0.144,-0.144 -0.216,-0.288 -0.359,-0.36 l 5.543,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path17109"
-                   d="m 250.957,10.793 c 0.144,0.144 0.216,0.288 0.288,0.432 l -5.473,1.296 c -0.071,-0.144 -0.215,-0.288 -0.359,-0.432 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path17111"
-                   d="m 250.812,10.577 c 0.145,0.144 0.217,0.288 0.36,0.504 l -5.544,1.296 c -0.145,-0.144 -0.216,-0.36 -0.36,-0.504 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path17113"
-                   d="m 250.669,10.361 c 0.072,0.144 0.216,0.288 0.288,0.432 l -5.544,1.296 c -0.145,-0.144 -0.217,-0.288 -0.36,-0.432 l 5.616,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path17115"
-                   d="m 250.525,10.145 c 0.071,0.144 0.216,0.288 0.287,0.432 l -5.544,1.296 c -0.144,-0.144 -0.288,-0.288 -0.359,-0.432 l 5.616,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path17117"
-                   d="m 250.309,9.857 c 0.072,0.144 0.217,0.288 0.36,0.504 l -5.616,1.296 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l 5.688,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path17119"
-                   d="m 250.093,9.713 c 0.145,0.144 0.288,0.288 0.433,0.432 l -5.616,1.296 c -0.145,-0.144 -0.288,-0.288 -0.432,-0.432 l 5.615,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path17121"
-                   d="m 249.948,9.497 c 0.145,0.144 0.217,0.288 0.36,0.36 l -5.688,1.368 c -0.072,-0.144 -0.217,-0.288 -0.36,-0.36 l 5.688,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path17123"
-                   d="m 249.733,9.281 c 0.144,0.144 0.215,0.288 0.359,0.432 l -5.615,1.296 c -0.145,-0.144 -0.289,-0.288 -0.433,-0.432 l 5.689,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path17125"
-                   d="m 249.518,9.065 c 0.144,0.144 0.287,0.288 0.431,0.432 l -5.688,1.368 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l 5.617,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path17127"
-                   d="m 249.229,8.849 c 0.144,0.144 0.288,0.288 0.504,0.432 l -5.688,1.296 c -0.145,-0.144 -0.288,-0.288 -0.432,-0.432 l 5.616,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path17129"
-                   d="m 249.013,8.633 c 0.145,0.144 0.36,0.288 0.505,0.432 l -5.617,1.368 c -0.144,-0.144 -0.287,-0.288 -0.504,-0.432 l 5.616,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path17131"
-                   d="m 248.653,8.417 c 0.216,0.144 0.359,0.288 0.576,0.432 l -5.616,1.296 c -0.145,-0.144 -0.288,-0.288 -0.433,-0.432 l 5.473,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path17133"
-                   d="m 248.364,8.273 c 0.217,0.144 0.433,0.216 0.648,0.36 l -5.616,1.368 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l 5.4,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path17135"
-                   d="m 248.653,8.417 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.288 -2.16,-0.936 -4.032,0.36 -5.185,1.296 0.072,0.144 0.145,0.216 0.288,0.288 l 5.473,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path17137"
-                   d="m 248.364,8.273 c -0.287,-0.144 -0.504,-0.216 -0.791,-0.36 -1.944,-0.504 -3.6,0.648 -4.681,1.512 0,0.072 0.072,0.072 0.072,0.144 l 5.4,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <g
-                   id="g17139">
-                  <g
-                     id="g17141">
-                    <path
-                       id="path17143"
-                       d="m 246.997,7.841 c 0.359,0.072 0.72,0.144 1.08,0.288 l -5.04,1.224"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path17145"
-                   d="m 243.613,8.849 c 1.079,-0.72 2.448,-1.296 3.96,-0.936 l -3.96,0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path17147"
-                   d="m 244.261,8.489 c 0.792,-0.432 1.728,-0.792 2.736,-0.648 l -2.736,0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffab00" />
-                <path
-                   id="path17149"
-                   d="m 257.149,29.873 -0.937,-4.68 -1.008,-3.96 -1.009,-3.384 -1.008,-2.808 -1.008,-2.232 -1.008,-1.8 -1.008,-1.296 -0.936,-0.936 -1.009,-0.648 -0.864,-0.288 -0.936,-0.072 -0.792,0.144 -0.792,0.288 -0.72,0.36 -0.648,0.432 -0.576,0.432 1.008,0.936 1.009,1.08 0.863,1.008 0.937,1.152 0.792,1.152 0.792,1.224 0.72,1.224 0.648,1.296 0.647,1.368 0.576,1.44 0.576,1.44 0.504,1.512 0.432,1.584 0.433,1.584 0.432,1.656 0.36,1.728 0.863,-0.144 0.648,-0.072 0.433,-0.144 0.287,-0.144 0.289,-0.072 0.287,-0.144 0.288,-0.072 0.435,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g17151">
-                <path
-                   id="path17153"
-                   d="m 253.478,30.449 c 0,0.288 0,0.576 0.071,0.792 -0.864,0.288 -4.392,1.8 -6.264,2.232 -0.072,-0.504 -0.144,-1.008 -0.288,-1.512 l 6.481,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path17155"
-                   d="m 253.404,29.873 c 0,0.216 0,0.36 0.073,0.576 l -6.48,1.512 c 0,-0.216 -0.072,-0.432 -0.072,-0.576 l 6.479,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path17157"
-                   d="m 253.333,29.585 c 0,0.216 0.071,0.36 0.071,0.576 l -6.407,1.512 c -0.072,-0.216 -0.072,-0.432 -0.145,-0.576 l 6.481,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path17159"
-                   d="m 253.261,29.297 c 0.072,0.216 0.072,0.36 0.144,0.576 l -6.479,1.512 c 0,-0.216 -0.072,-0.432 -0.072,-0.576 l 6.407,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path17161"
-                   d="m 253.261,29.009 c 0,0.216 0.072,0.36 0.072,0.576 l -6.48,1.512 c 0,-0.216 -0.072,-0.432 -0.072,-0.648 l 6.48,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path17163"
-                   d="m 253.188,28.721 c 0,0.144 0.072,0.36 0.072,0.576 l -6.408,1.512 c -0.072,-0.216 -0.144,-0.432 -0.144,-0.648 l 6.48,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path17165"
-                   d="m 253.117,28.433 c 0.071,0.144 0.071,0.36 0.144,0.576 l -6.48,1.44 c -0.071,-0.144 -0.071,-0.36 -0.144,-0.576 l 6.48,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path17167"
-                   d="m 253.045,28.145 c 0.072,0.144 0.072,0.36 0.144,0.576 l -6.479,1.44 c -0.072,-0.144 -0.072,-0.36 -0.144,-0.576 l 6.479,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path17169"
-                   d="m 252.974,27.857 c 0.071,0.144 0.071,0.36 0.144,0.576 l -6.48,1.44 c 0,-0.144 -0.071,-0.36 -0.144,-0.576 l 6.48,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path17171"
-                   d="m 252.9,27.497 c 0.073,0.216 0.145,0.432 0.145,0.648 l -6.479,1.44 c 0,-0.216 -0.072,-0.432 -0.145,-0.648 l 6.479,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path17173"
-                   d="m 252.829,27.209 c 0.071,0.216 0.145,0.432 0.145,0.648 l -6.48,1.44 c 0,-0.216 -0.072,-0.432 -0.144,-0.648 l 6.479,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path17175"
-                   d="m 252.757,26.921 c 0.072,0.144 0.144,0.36 0.144,0.576 l -6.479,1.44 c 0,-0.144 -0.071,-0.36 -0.145,-0.576 l 6.48,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path17177"
-                   d="m 252.685,26.633 c 0.072,0.144 0.145,0.36 0.145,0.576 l -6.479,1.44 c 0,-0.144 -0.073,-0.36 -0.145,-0.576 l 6.479,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path17179"
-                   d="m 252.613,26.345 c 0.071,0.144 0.071,0.36 0.144,0.576 l -6.48,1.44 c 0,-0.144 -0.071,-0.36 -0.144,-0.576 l 6.48,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path17181"
-                   d="m 252.541,26.057 c 0.072,0.144 0.072,0.36 0.144,0.576 l -6.479,1.44 c -0.072,-0.144 -0.072,-0.36 -0.144,-0.576 l 6.479,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path17183"
-                   d="m 252.469,25.769 c 0.072,0.144 0.072,0.36 0.145,0.576 l -6.48,1.44 c -0.071,-0.144 -0.071,-0.36 -0.145,-0.576 l 6.48,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path17185"
-                   d="m 252.396,25.481 c 0,0.144 0.072,0.36 0.145,0.576 l -6.479,1.44 c -0.073,-0.144 -0.145,-0.36 -0.145,-0.576 l 6.479,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path17187"
-                   d="m 252.253,25.193 c 0.072,0.144 0.144,0.36 0.216,0.576 l -6.48,1.44 c -0.071,-0.144 -0.144,-0.36 -0.144,-0.504 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path17189"
-                   d="m 252.181,24.833 c 0.072,0.216 0.145,0.432 0.216,0.648 l -6.479,1.44 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.576 l 6.479,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path17191"
-                   d="m 252.108,24.545 c 0.072,0.216 0.145,0.432 0.145,0.648 l -6.408,1.512 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l 6.479,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path17193"
-                   d="m 251.965,24.257 c 0.072,0.216 0.144,0.36 0.216,0.576 l -6.479,1.512 c -0.072,-0.216 -0.144,-0.36 -0.217,-0.576 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path17195"
-                   d="m 251.893,23.969 c 0.072,0.216 0.145,0.36 0.216,0.576 l -6.479,1.512 c -0.071,-0.216 -0.145,-0.432 -0.216,-0.576 l 6.479,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path17197"
-                   d="m 251.821,23.681 c 0.071,0.216 0.144,0.36 0.144,0.576 l -6.48,1.512 c 0,-0.216 -0.071,-0.36 -0.144,-0.576 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path17199"
-                   d="m 251.677,23.393 c 0.072,0.216 0.145,0.36 0.216,0.576 l -6.479,1.512 c -0.072,-0.216 -0.145,-0.36 -0.217,-0.576 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path17201"
-                   d="m 251.604,23.105 c 0.072,0.216 0.145,0.432 0.217,0.576 l -6.48,1.512 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l 6.479,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path17203"
-                   d="m 251.533,22.889 c 0.071,0.144 0.144,0.36 0.144,0.504 l -6.48,1.512 c -0.071,-0.144 -0.144,-0.36 -0.216,-0.576 l 6.552,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path17205"
-                   d="m 251.389,22.601 c 0.072,0.144 0.145,0.36 0.216,0.504 l -6.479,1.512 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.504 l 6.479,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path17207"
-                   d="m 251.317,22.241 c 0.071,0.216 0.144,0.432 0.216,0.648 l -6.553,1.44 c -0.071,-0.144 -0.144,-0.36 -0.216,-0.576 l 6.553,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path17209"
-                   d="m 251.173,21.953 c 0.072,0.216 0.145,0.432 0.216,0.648 l -6.479,1.512 c -0.072,-0.216 -0.145,-0.432 -0.288,-0.648 l 6.551,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path17211"
-                   d="m 251.101,21.665 c 0.072,0.216 0.145,0.36 0.217,0.576 l -6.553,1.512 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path17213"
-                   d="m 250.957,21.377 c 0.072,0.216 0.144,0.432 0.216,0.576 l -6.552,1.512 c -0.072,-0.144 -0.144,-0.36 -0.217,-0.576 l 6.553,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path17215"
-                   d="m 250.812,21.089 c 0.072,0.216 0.217,0.432 0.288,0.576 l -6.552,1.512 c -0.145,-0.144 -0.216,-0.36 -0.288,-0.576 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path17217"
-                   d="m 250.741,20.873 c 0.071,0.144 0.144,0.36 0.216,0.504 l -6.553,1.512 c -0.071,-0.144 -0.144,-0.36 -0.287,-0.504 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path17219"
-                   d="m 250.597,20.585 c 0.072,0.144 0.145,0.36 0.216,0.504 l -6.552,1.512 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path17221"
-                   d="m 250.525,20.297 c 0.071,0.144 0.144,0.36 0.216,0.576 l -6.624,1.512 c -0.072,-0.216 -0.144,-0.36 -0.217,-0.576 l 6.625,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path17223"
-                   d="m 250.381,20.009 c 0.072,0.216 0.145,0.36 0.216,0.576 l -6.552,1.512 c -0.145,-0.216 -0.216,-0.36 -0.288,-0.576 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path17225"
-                   d="m 250.237,19.649 c 0.071,0.216 0.144,0.432 0.288,0.648 l -6.625,1.512 c -0.144,-0.216 -0.216,-0.36 -0.287,-0.576 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path17227"
-                   d="m 250.093,19.433 c 0.072,0.144 0.216,0.36 0.288,0.576 l -6.624,1.512 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.576 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path17229"
-                   d="m 249.948,19.145 c 0.145,0.144 0.217,0.36 0.289,0.504 l -6.624,1.584 c -0.145,-0.144 -0.217,-0.36 -0.288,-0.504 l 6.623,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path17231"
-                   d="m 249.877,18.857 c 0.071,0.144 0.145,0.36 0.216,0.576 l -6.624,1.512 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.576 l 6.768,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path17233"
-                   d="m 249.733,18.569 c 0.071,0.216 0.144,0.36 0.215,0.576 l -6.623,1.584 c -0.145,-0.216 -0.217,-0.432 -0.36,-0.576 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path17235"
-                   d="m 249.589,18.281 c 0.072,0.216 0.145,0.36 0.288,0.576 l -6.769,1.512 c -0.071,-0.144 -0.216,-0.36 -0.287,-0.504 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path17237"
-                   d="m 249.444,17.993 c 0.073,0.216 0.145,0.36 0.289,0.576 l -6.769,1.584 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path17239"
-                   d="m 249.301,17.777 c 0.072,0.144 0.217,0.36 0.288,0.504 l -6.768,1.584 c -0.145,-0.216 -0.217,-0.36 -0.36,-0.576 l 6.84,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path17241"
-                   d="m 249.157,17.489 c 0.072,0.144 0.216,0.36 0.287,0.504 l -6.768,1.584 c -0.144,-0.144 -0.288,-0.36 -0.359,-0.504 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path17243"
-                   d="m 249.013,17.129 c 0.072,0.216 0.217,0.432 0.288,0.648 l -6.84,1.512 c -0.072,-0.144 -0.216,-0.36 -0.36,-0.504 l 6.912,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path17245"
-                   d="m 248.869,16.913 c 0.072,0.144 0.216,0.36 0.288,0.576 l -6.84,1.584 c -0.145,-0.216 -0.288,-0.36 -0.36,-0.576 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path17247"
-                   d="m 248.726,16.625 c 0.071,0.144 0.144,0.36 0.287,0.504 l -6.912,1.656 c -0.071,-0.216 -0.216,-0.36 -0.359,-0.576 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path17249"
-                   d="m 248.581,16.337 c 0.072,0.144 0.145,0.36 0.288,0.504 l -6.912,1.656 c -0.145,-0.144 -0.288,-0.36 -0.36,-0.504 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path17251"
-                   d="m 248.364,16.049 c 0.145,0.216 0.217,0.36 0.361,0.576 l -6.984,1.584 c -0.145,-0.144 -0.216,-0.36 -0.36,-0.504 l 6.983,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path17253"
-                   d="m 248.221,15.833 c 0.144,0.144 0.217,0.288 0.36,0.504 l -6.984,1.656 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.576 l 7.056,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path17255"
-                   d="m 248.077,15.545 c 0.144,0.144 0.216,0.36 0.287,0.504 l -6.983,1.656 c -0.144,-0.216 -0.288,-0.36 -0.433,-0.504 l 7.129,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path17257"
-                   d="m 247.934,15.257 c 0.071,0.216 0.216,0.36 0.287,0.576 l -7.056,1.584 c -0.144,-0.144 -0.288,-0.36 -0.36,-0.504 l 7.129,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path17259"
-                   d="m 247.789,14.969 c 0.071,0.216 0.216,0.36 0.288,0.576 l -7.129,1.656 c -0.144,-0.216 -0.215,-0.36 -0.359,-0.504 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path17261"
-                   d="m 247.573,14.681 c 0.144,0.216 0.216,0.36 0.36,0.576 l -7.129,1.656 c -0.144,-0.144 -0.287,-0.36 -0.432,-0.504 l 7.201,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path17263"
-                   d="m 247.429,14.393 c 0.072,0.216 0.217,0.432 0.36,0.576 l -7.2,1.728 c -0.145,-0.216 -0.288,-0.36 -0.432,-0.576 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path17265"
-                   d="m 247.213,14.177 c 0.144,0.144 0.216,0.36 0.36,0.504 l -7.2,1.728 c -0.144,-0.216 -0.288,-0.36 -0.504,-0.504 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path17267"
-                   d="m 247.069,13.889 c 0.072,0.144 0.216,0.36 0.359,0.504 l -7.271,1.728 c -0.216,-0.144 -0.36,-0.36 -0.504,-0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path17269"
-                   d="m 246.853,13.601 c 0.145,0.216 0.289,0.36 0.36,0.576 l -7.344,1.728 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l 7.416,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path17271"
-                   d="m 246.637,13.385 c 0.144,0.144 0.288,0.288 0.433,0.504 l -7.416,1.728 c -0.145,-0.144 -0.289,-0.36 -0.504,-0.504 l 7.487,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path17273"
-                   d="m 246.493,13.097 c 0.144,0.144 0.216,0.36 0.359,0.504 l -7.415,1.8 c -0.145,-0.216 -0.36,-0.36 -0.504,-0.576 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path17275"
-                   d="m 246.276,12.809 c 0.145,0.216 0.289,0.36 0.36,0.576 l -7.487,1.728 c -0.145,-0.216 -0.289,-0.36 -0.433,-0.504 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path17277"
-                   d="m 246.062,12.593 c 0.144,0.144 0.288,0.288 0.432,0.504 l -7.56,1.728 c -0.145,-0.144 -0.36,-0.288 -0.505,-0.504 l 7.633,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path17279"
-                   d="m 245.845,12.305 c 0.144,0.144 0.288,0.36 0.432,0.504 l -7.56,1.8 c -0.216,-0.216 -0.36,-0.36 -0.575,-0.504 l 7.703,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path17281"
-                   d="m 245.629,12.017 c 0.144,0.216 0.288,0.36 0.433,0.576 l -7.633,1.728 c -0.144,-0.144 -0.359,-0.288 -0.504,-0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path17283"
-                   d="m 245.413,11.801 c 0.145,0.144 0.288,0.288 0.432,0.504 l -7.703,1.8 c -0.145,-0.216 -0.289,-0.36 -0.505,-0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path17285"
-                   d="m 245.196,11.513 c 0.145,0.144 0.288,0.36 0.433,0.504 l -7.704,1.8 c -0.216,-0.144 -0.359,-0.288 -0.575,-0.432 l 7.846,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path17287"
-                   d="m 244.98,11.297 c 0.145,0.144 0.288,0.288 0.433,0.504 l -7.776,1.8 c -0.144,-0.144 -0.36,-0.36 -0.504,-0.504 l 7.847,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path17289"
-                   d="m 244.692,11.009 c 0.217,0.144 0.36,0.36 0.504,0.504 l -7.847,1.872 c -0.145,-0.216 -0.361,-0.36 -0.505,-0.504 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path17291"
-                   d="m 244.478,10.721 c 0.144,0.216 0.287,0.36 0.503,0.576 l -7.848,1.8 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l 7.993,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path17293"
-                   d="m 244.188,10.505 c 0.145,0.144 0.36,0.36 0.504,0.504 l -7.848,1.872 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.504 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path17295"
-                   d="m 243.9,10.289 c 0.217,0.144 0.36,0.288 0.577,0.432 l -7.993,1.872 c -0.216,-0.144 -0.432,-0.288 -0.575,-0.504 l 7.991,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path17297"
-                   d="m 243.613,10.001 c 0.144,0.144 0.36,0.288 0.575,0.504 l -7.992,1.872 c -0.216,-0.216 -0.432,-0.36 -0.647,-0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path17299"
-                   d="m 243.253,9.785 c 0.216,0.144 0.432,0.288 0.647,0.504 l -7.991,1.8 c -0.217,-0.144 -0.432,-0.288 -0.648,-0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path17301"
-                   d="m 242.965,9.497 c 0.216,0.144 0.432,0.36 0.648,0.504 l -8.064,1.872 c -0.216,-0.144 -0.36,-0.288 -0.575,-0.432 l 7.991,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path17303"
-                   d="m 243.253,9.785 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.432 -2.52,-1.584 -5.255,-1.368 -7.848,1.872 0.144,0.144 0.36,0.288 0.504,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path17305"
-                   d="m 242.965,9.497 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.36 -2.448,-1.368 -5.04,-1.008 -7.488,2.088 0.072,0.072 0.144,0.144 0.217,0.216 l 7.991,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <g
-                   id="g17307">
-                  <g
-                     id="g17309">
-                    <path
-                       id="path17311"
-                       d="m 241.812,8.921 c 0.288,0.072 0.576,0.216 0.792,0.432 l -7.775,1.8"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g17313">
-                  <g
-                     id="g17315">
-                    <path
-                       id="path17317"
-                       d="m 241.381,8.705 c 0.288,0.072 0.576,0.216 0.864,0.432 l -7.128,1.656"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g17319">
-                  <g
-                     id="g17321">
-                    <path
-                       id="path17323"
-                       d="m 240.661,8.489 c 0.432,0.144 0.792,0.216 1.151,0.432 l -6.335,1.44"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <g
-                   id="g17325">
-                  <g
-                     id="g17327">
-                    <path
-                       id="path17329"
-                       d="m 239.869,8.417 c 0.504,0 1.008,0.144 1.512,0.288 l -5.472,1.296"
-                       i:knockout="Off"
-                       inkscape:connector-curvature="0"
-                       style="fill:none;stroke:#000000;stroke-width:0.215" />
-                  </g>
-                </g>
-                <path
-                   id="path17331"
-                   d="m 236.558,9.497 c 1.367,-1.008 2.735,-1.296 4.104,-1.008 l -4.104,1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path17333"
-                   d="m 237.276,8.993 c 0.865,-0.432 1.729,-0.648 2.593,-0.576 l -2.593,0.576 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path17335"
-                   d="m 253.549,31.241 -0.216,-1.728 -0.359,-1.944 -0.577,-2.16 -0.72,-2.304 -0.936,-2.376 -1.08,-2.304 -1.152,-2.232 -1.296,-2.088 -1.368,-1.872 -1.44,-1.584 -1.512,-1.224 -1.584,-0.792 -1.655,-0.288 -1.656,0.288 -1.584,0.936 -1.656,1.656 1.296,0.936 1.224,1.08 1.152,1.08 1.08,1.08 1.08,1.152 0.937,1.296 0.863,1.296 0.792,1.296 0.793,1.44 0.647,1.44 0.647,1.512 0.504,1.584 0.504,1.656 0.36,1.728 0.36,1.8 0.288,1.872 0.792,-0.216 0.864,-0.288 0.936,-0.288 0.936,-0.36 0.864,-0.36 0.792,-0.288 0.648,-0.288 0.432,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g17337">
-                <path
-                   id="path17339"
-                   d="m 246.78,32.609 c 0.072,0.288 0.072,0.576 0.145,0.864 -2.232,0.432 -4.68,1.656 -7.128,2.016 -0.144,-0.36 -0.288,-0.72 -0.433,-1.152 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path17341"
-                   d="m 246.78,32.609 c 0,-0.144 0,-0.288 0,-0.504 l -7.631,1.8 c 0.071,0.144 0.144,0.288 0.215,0.432 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path17343"
-                   d="m 246.78,32.393 c 0,-0.144 0,-0.36 -0.071,-0.576 l -7.632,1.8 c 0.072,0.216 0.144,0.36 0.216,0.576 l 7.487,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path17345"
-                   d="m 246.78,32.105 c -0.071,-0.144 -0.071,-0.36 -0.071,-0.576 l -7.775,1.8 c 0.071,0.216 0.144,0.36 0.216,0.576 l 7.63,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path17347"
-                   d="m 246.709,31.817 c 0,-0.216 -0.072,-0.36 -0.072,-0.576 l -7.776,1.8 c 0.073,0.216 0.145,0.36 0.217,0.576 l 7.631,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path17349"
-                   d="m 246.709,31.529 c -0.072,-0.216 -0.072,-0.36 -0.144,-0.576 l -7.776,1.8 c 0,0.216 0.071,0.36 0.145,0.576 l 7.775,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path17351"
-                   d="m 246.637,31.241 c 0,-0.216 -0.071,-0.36 -0.071,-0.576 l -7.92,1.8 c 0.071,0.216 0.144,0.36 0.215,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path17353"
-                   d="m 246.565,30.953 c 0,-0.216 0,-0.432 -0.072,-0.576 l -7.92,1.8 c 0.072,0.216 0.144,0.432 0.216,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path17355"
-                   d="m 246.565,30.665 c -0.072,-0.216 -0.072,-0.432 -0.145,-0.576 l -7.992,1.8 c 0.072,0.216 0.145,0.432 0.217,0.576 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path17357"
-                   d="m 246.493,30.377 c 0,-0.216 -0.072,-0.432 -0.072,-0.576 l -8.064,1.872 c 0.072,0.144 0.145,0.36 0.217,0.504 l 7.919,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path17359"
-                   d="m 246.421,30.089 c 0,-0.216 -0.071,-0.36 -0.071,-0.504 l -8.064,1.872 c 0.071,0.144 0.071,0.288 0.144,0.432 l 7.991,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path17361"
-                   d="m 246.421,29.801 c -0.071,-0.216 -0.071,-0.36 -0.145,-0.504 l -8.135,1.872 c 0.071,0.144 0.144,0.288 0.215,0.504 l 8.065,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path17363"
-                   d="m 246.35,29.585 c -0.073,-0.216 -0.073,-0.432 -0.145,-0.576 l -8.136,1.872 c 0.072,0.216 0.144,0.36 0.216,0.576 l 8.065,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path17365"
-                   d="m 246.276,29.297 c 0,-0.216 -0.071,-0.432 -0.144,-0.576 l -8.136,1.872 c 0.072,0.216 0.072,0.36 0.145,0.576 l 8.135,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path17367"
-                   d="m 246.205,29.009 c 0,-0.216 -0.072,-0.432 -0.144,-0.576 l -8.209,1.872 c 0.072,0.216 0.145,0.36 0.217,0.576 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path17369"
-                   d="m 246.133,28.721 c 0,-0.216 -0.071,-0.432 -0.145,-0.576 l -8.208,1.872 c 0.072,0.216 0.145,0.36 0.217,0.576 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path17371"
-                   d="m 246.062,28.433 c 0,-0.216 -0.073,-0.432 -0.145,-0.576 l -8.28,1.872 c 0.072,0.216 0.144,0.432 0.216,0.576 l 8.209,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path17373"
-                   d="m 245.988,28.145 c 0,-0.216 -0.071,-0.432 -0.144,-0.576 l -8.279,1.872 c 0.071,0.216 0.144,0.432 0.215,0.576 l 8.208,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path17375"
-                   d="m 245.917,27.857 c 0,-0.216 -0.072,-0.432 -0.145,-0.576 l -8.352,1.944 c 0.072,0.144 0.145,0.36 0.216,0.504 l 8.281,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path17377"
-                   d="m 245.845,27.569 c 0,-0.216 -0.072,-0.432 -0.144,-0.576 l -8.352,1.944 c 0.071,0.144 0.144,0.36 0.216,0.504 l 8.28,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path17379"
-                   d="m 245.772,27.281 c 0,-0.216 -0.071,-0.36 -0.144,-0.504 l -8.353,1.944 c 0.073,0.144 0.073,0.288 0.145,0.504 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path17381"
-                   d="m 245.701,26.993 c -0.072,-0.216 -0.072,-0.36 -0.144,-0.504 l -8.425,1.944 c 0.072,0.144 0.144,0.288 0.217,0.504 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path17383"
-                   d="m 245.629,26.777 c -0.071,-0.216 -0.071,-0.36 -0.145,-0.576 l -8.423,1.944 c 0.071,0.216 0.144,0.36 0.215,0.576 l 8.353,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path17385"
-                   d="m 245.558,26.489 c -0.073,-0.216 -0.145,-0.36 -0.145,-0.576 l -8.496,1.944 c 0.071,0.216 0.145,0.36 0.216,0.576 l 8.425,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path17387"
-                   d="m 245.484,26.201 c -0.071,-0.216 -0.144,-0.36 -0.216,-0.576 l -8.424,1.944 c 0.072,0.216 0.144,0.432 0.217,0.576 l 8.423,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path17389"
-                   d="m 245.413,25.913 c -0.072,-0.216 -0.145,-0.36 -0.217,-0.576 l -8.495,2.016 c 0.071,0.144 0.144,0.36 0.216,0.504 l 8.496,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path17391"
-                   d="m 245.269,25.625 c -0.072,-0.144 -0.072,-0.36 -0.144,-0.576 l -8.496,2.016 c 0.072,0.144 0.144,0.36 0.216,0.504 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path17393"
-                   d="m 245.196,25.337 c -0.071,-0.144 -0.144,-0.36 -0.216,-0.576 l -8.496,2.016 c 0.073,0.144 0.145,0.36 0.217,0.576 l 8.495,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path17395"
-                   d="m 245.125,25.049 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.576 l -8.496,2.016 c 0.071,0.144 0.145,0.36 0.216,0.576 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path17397"
-                   d="m 244.98,24.761 c -0.071,-0.144 -0.144,-0.36 -0.216,-0.504 l -8.496,1.944 c 0.072,0.216 0.145,0.36 0.216,0.576 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path17399"
-                   d="m 244.909,24.473 c -0.072,-0.144 -0.145,-0.288 -0.217,-0.432 l -8.496,1.944 c 0.072,0.144 0.145,0.36 0.217,0.504 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path17401"
-                   d="m 244.765,24.257 c -0.072,-0.216 -0.072,-0.36 -0.144,-0.504 l -8.568,1.944 c 0.072,0.144 0.144,0.36 0.216,0.504 l 8.496,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path17403"
-                   d="m 244.692,24.041 c -0.071,-0.216 -0.144,-0.432 -0.215,-0.576 l -8.497,1.944 c 0.072,0.216 0.145,0.36 0.216,0.576 l 8.496,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path17405"
-                   d="m 244.621,23.753 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -8.496,2.016 c 0.072,0.144 0.144,0.36 0.216,0.504 l 8.568,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path17407"
-                   d="m 244.478,23.465 c -0.073,-0.216 -0.145,-0.36 -0.217,-0.576 l -8.496,2.016 c 0.072,0.144 0.145,0.36 0.216,0.504 l 8.497,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path17409"
-                   d="m 244.404,23.177 c -0.144,-0.144 -0.216,-0.36 -0.287,-0.504 l -8.496,1.944 c 0.071,0.216 0.144,0.36 0.216,0.576 l 8.567,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path17411"
-                   d="m 244.261,22.889 c -0.072,-0.144 -0.144,-0.36 -0.287,-0.504 l -8.496,1.944 c 0.144,0.216 0.215,0.36 0.287,0.576 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path17413"
-                   d="m 244.117,22.673 c -0.072,-0.216 -0.144,-0.432 -0.217,-0.576 l -8.496,1.944 c 0.073,0.216 0.145,0.36 0.217,0.576 l 8.496,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path17415"
-                   d="m 243.974,22.385 c -0.073,-0.216 -0.145,-0.36 -0.217,-0.576 l -8.496,1.944 c 0.072,0.216 0.144,0.432 0.217,0.576 l 8.496,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path17417"
-                   d="m 243.9,22.097 c -0.144,-0.216 -0.216,-0.36 -0.287,-0.576 l -8.496,2.016 c 0.144,0.144 0.216,0.36 0.287,0.504 l 8.496,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path17419"
-                   d="m 243.757,21.809 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.504 l -8.496,2.016 c 0.072,0.144 0.144,0.288 0.216,0.432 l 8.496,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path17421"
-                   d="m 243.613,21.521 c -0.072,-0.144 -0.145,-0.288 -0.217,-0.432 l -8.496,1.944 c 0.073,0.144 0.145,0.288 0.217,0.504 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path17423"
-                   d="m 243.541,21.305 c -0.145,-0.144 -0.216,-0.36 -0.288,-0.504 l -8.424,1.944 c 0.071,0.216 0.145,0.36 0.216,0.576 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path17425"
-                   d="m 243.396,21.089 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -8.424,1.944 c 0.072,0.216 0.145,0.36 0.216,0.576 l 8.496,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path17427"
-                   d="m 243.253,20.801 c -0.145,-0.216 -0.216,-0.36 -0.288,-0.576 l -8.424,2.016 c 0.072,0.144 0.144,0.36 0.288,0.504 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path17429"
-                   d="m 243.108,20.513 c -0.144,-0.144 -0.216,-0.36 -0.287,-0.504 l -8.425,1.944 c 0.072,0.144 0.217,0.36 0.288,0.504 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path17431"
-                   d="m 242.965,20.225 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -8.424,1.944 c 0.144,0.216 0.216,0.36 0.288,0.576 l 8.424,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path17433"
-                   d="m 242.821,20.009 c -0.145,-0.216 -0.217,-0.36 -0.36,-0.576 l -8.28,1.944 c 0.072,0.216 0.145,0.36 0.216,0.576 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path17435"
-                   d="m 242.677,19.721 c -0.144,-0.216 -0.216,-0.36 -0.359,-0.504 l -8.28,1.872 c 0.071,0.216 0.144,0.36 0.216,0.576 l 8.423,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path17437"
-                   d="m 242.461,19.433 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -8.28,1.944 c 0.072,0.144 0.145,0.36 0.288,0.504 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path17439"
-                   d="m 242.317,19.217 c -0.072,-0.216 -0.145,-0.36 -0.288,-0.504 l -8.28,1.944 c 0.072,0.144 0.216,0.288 0.288,0.432 l 8.28,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path17441"
-                   d="m 242.173,18.929 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -8.28,1.944 c 0.072,0.144 0.217,0.288 0.288,0.504 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path17443"
-                   d="m 242.029,18.713 c -0.072,-0.144 -0.217,-0.36 -0.288,-0.504 l -8.28,1.872 c 0.144,0.216 0.216,0.36 0.288,0.576 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path17445"
-                   d="m 241.885,18.425 c -0.144,-0.144 -0.216,-0.36 -0.359,-0.504 l -8.208,1.872 c 0.144,0.216 0.216,0.36 0.287,0.576 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path17447"
-                   d="m 241.741,18.209 c -0.145,-0.216 -0.288,-0.36 -0.36,-0.576 l -8.208,1.944 c 0.072,0.144 0.216,0.36 0.288,0.504 l 8.28,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path17449"
-                   d="m 241.525,17.921 c -0.145,-0.144 -0.217,-0.36 -0.36,-0.504 l -8.136,1.872 c 0.071,0.216 0.216,0.36 0.288,0.504 l 8.208,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path17451"
-                   d="m 241.381,17.633 c -0.144,-0.144 -0.288,-0.288 -0.359,-0.504 l -8.137,1.872 c 0.072,0.216 0.216,0.36 0.288,0.576 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path17453"
-                   d="m 241.165,17.417 c -0.144,-0.216 -0.217,-0.36 -0.36,-0.504 l -8.063,1.872 c 0.071,0.144 0.216,0.36 0.288,0.504 l 8.135,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path17455"
-                   d="m 241.021,17.129 c -0.145,-0.144 -0.288,-0.36 -0.433,-0.504 l -8.063,1.872 c 0.144,0.144 0.216,0.36 0.359,0.504 l 8.137,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path17457"
-                   d="m 240.805,16.913 c -0.144,-0.216 -0.287,-0.36 -0.432,-0.576 l -7.992,1.872 c 0.145,0.216 0.216,0.36 0.36,0.576 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path17459"
-                   d="m 240.589,16.625 c -0.071,-0.144 -0.216,-0.288 -0.359,-0.432 l -7.992,1.872 c 0.144,0.144 0.216,0.288 0.288,0.432 l 8.063,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path17461"
-                   d="m 240.373,16.337 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -7.92,1.872 c 0.072,0.144 0.216,0.288 0.288,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path17463"
-                   d="m 240.229,16.193 c -0.145,-0.216 -0.288,-0.36 -0.433,-0.504 l -7.92,1.8 c 0.145,0.216 0.288,0.36 0.36,0.576 l 7.993,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path17465"
-                   d="m 240.013,15.905 c -0.144,-0.144 -0.287,-0.36 -0.432,-0.504 l -7.848,1.872 c 0.144,0.144 0.215,0.288 0.359,0.504 l 7.921,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path17467"
-                   d="m 239.797,15.689 c -0.144,-0.216 -0.288,-0.36 -0.433,-0.504 l -7.847,1.8 c 0.144,0.144 0.287,0.36 0.359,0.504 l 7.921,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path17469"
-                   d="m 239.581,15.401 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -7.776,1.8 c 0.071,0.216 0.216,0.36 0.36,0.576 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path17471"
-                   d="m 239.364,15.185 c -0.144,-0.216 -0.287,-0.36 -0.431,-0.504 l -7.776,1.8 c 0.144,0.144 0.287,0.288 0.36,0.504 l 7.847,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path17473"
-                   d="m 239.149,14.897 c -0.145,-0.144 -0.289,-0.288 -0.433,-0.504 l -7.775,1.8 c 0.144,0.216 0.288,0.36 0.432,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path17475"
-                   d="m 238.934,14.681 c -0.145,-0.216 -0.36,-0.36 -0.505,-0.504 l -7.703,1.8 c 0.144,0.144 0.287,0.288 0.432,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path17477"
-                   d="m 238.717,14.393 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.432 l -7.704,1.728 c 0.145,0.144 0.288,0.36 0.433,0.504 l 7.775,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path17479"
-                   d="m 238.429,14.177 c -0.144,-0.144 -0.287,-0.288 -0.432,-0.432 l -7.633,1.8 c 0.145,0.144 0.289,0.288 0.361,0.432 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path17481"
-                   d="m 238.213,13.961 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.432 l -7.56,1.728 c 0.144,0.144 0.288,0.288 0.359,0.432 l 7.705,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path17483"
-                   d="m 237.997,13.745 c -0.217,-0.144 -0.36,-0.36 -0.576,-0.504 l -7.487,1.8 c 0.144,0.144 0.287,0.288 0.431,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path17485"
-                   d="m 237.709,13.529 c -0.216,-0.216 -0.359,-0.36 -0.576,-0.504 l -7.487,1.728 c 0.144,0.144 0.359,0.36 0.504,0.504 l 7.559,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path17487"
-                   d="m 237.421,13.241 c -0.216,-0.144 -0.359,-0.288 -0.576,-0.432 l -7.488,1.728 c 0.217,0.144 0.36,0.288 0.577,0.504 l 7.487,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path17489"
-                   d="m 237.133,13.025 c -0.216,-0.144 -0.432,-0.288 -0.575,-0.504 l -7.416,1.728 c 0.144,0.216 0.359,0.36 0.504,0.504 l 7.487,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path17491"
-                   d="m 236.845,12.809 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.504 l -7.344,1.728 c 0.145,0.144 0.36,0.288 0.576,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path17493"
-                   d="m 236.558,12.521 c -0.217,-0.144 -0.433,-0.288 -0.648,-0.432 l -7.344,1.728 c 0.144,0.144 0.359,0.288 0.576,0.432 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path17495"
-                   d="m 236.196,12.305 c -0.216,-0.144 -0.432,-0.288 -0.647,-0.432 l -7.344,1.728 c 0.216,0.144 0.432,0.288 0.647,0.432 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path17497"
-                   d="m 235.909,12.089 c -0.288,-0.144 -0.505,-0.288 -0.792,-0.432 l -7.272,1.728 c 0.288,0.144 0.505,0.288 0.721,0.432 l 7.343,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path17499"
-                   d="m 235.549,11.873 c -0.216,-0.144 -0.504,-0.216 -0.72,-0.36 l -7.271,1.656 c 0.215,0.144 0.431,0.288 0.647,0.432 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path17501"
-                   d="m 235.117,11.657 c -0.217,-0.144 -0.433,-0.216 -0.721,-0.36 l -7.2,1.656 c 0.217,0.144 0.433,0.288 0.648,0.432 l 7.273,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path17503"
-                   d="m 234.829,11.513 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.432 l -7.2,1.728 c 0.288,0.072 0.576,0.216 0.793,0.36 l 7.271,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path17505"
-                   d="m 234.396,11.297 c -0.288,-0.144 -0.647,-0.288 -0.936,-0.36 l -7.272,1.656 c 0.36,0.144 0.648,0.216 1.008,0.36 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path17507"
-                   d="m 233.965,11.081 c -0.36,-0.144 -0.72,-0.216 -1.08,-0.36 l -7.271,1.728 c 0.36,0.072 0.72,0.216 1.151,0.36 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path17509"
-                   d="m 225.9,12.089 c -0.144,0.072 -0.287,0.216 -0.432,0.288 0.216,0.072 0.505,0.144 0.72,0.216 l 7.272,-1.656 c -0.36,-0.144 -0.792,-0.288 -1.224,-0.36 l -6.336,1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path17511"
-                   d="m 226.549,11.585 c -0.36,0.216 -0.72,0.504 -1.08,0.792 0,0.072 0.072,0.072 0.145,0.072 l 7.271,-1.728 c -0.432,-0.144 -0.937,-0.216 -1.367,-0.288 l -4.969,1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path17513"
-                   d="m 227.629,11.081 c -0.576,0.216 -1.151,0.576 -1.729,1.008 l 6.337,-1.512 c -0.648,-0.144 -1.296,-0.144 -1.944,-0.144 l -2.664,0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path17515"
-                   d="m 225.469,12.377 1.728,-1.152 1.729,-0.648 1.801,-0.216 1.728,0.216 1.8,0.576 1.728,0.936 1.656,1.296 1.584,1.512 1.44,1.728 1.439,2.016 1.225,2.232 1.079,2.304 0.937,2.448 0.721,2.592 0.575,2.592 0.288,2.664 -0.863,0.216 -0.865,0.216 -0.863,0.288 -0.864,0.288 -0.936,0.36 -0.937,0.216 -0.863,0.288 -0.937,0.144 -0.647,-1.656 -0.576,-1.8 -0.721,-1.8 -0.647,-1.8 -0.721,-1.872 -0.792,-1.872 -0.792,-1.8 -0.792,-1.728 -0.863,-1.656 -0.937,-1.512 -1.008,-1.44 -1.008,-1.224 -1.151,-1.08 -1.153,-0.864 -1.224,-0.648 -1.298,-0.36 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g17517">
-                <path
-                   id="path17519"
-                   d="m 239.364,35.057 c 0.217,0.36 0.361,0.792 0.577,1.152 -2.089,0.144 -3.816,1.368 -5.977,1.656 -0.072,-0.072 -0.144,-0.648 -0.288,-1.512 l 5.688,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path17521"
-                   d="m 239.364,35.057 c -0.071,-0.216 -0.144,-0.36 -0.215,-0.576 l -5.616,1.296 c 0.071,0.216 0.071,0.36 0.144,0.576 l 5.687,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path17523"
-                   d="m 239.293,34.769 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.576 l -5.472,1.296 c 0,0.216 0.071,0.432 0.071,0.576 l 5.689,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path17525"
-                   d="m 239.149,34.481 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.504 l -5.473,1.224 c 0,0.216 0.072,0.36 0.072,0.576 l 5.617,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path17527"
-                   d="m 239.005,34.193 c -0.071,-0.144 -0.145,-0.36 -0.216,-0.504 l -5.4,1.224 c 0.072,0.216 0.072,0.36 0.145,0.576 l 5.471,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path17529"
-                   d="m 238.934,33.977 c -0.073,-0.216 -0.145,-0.432 -0.217,-0.576 l -5.399,1.224 c 0.071,0.216 0.071,0.36 0.144,0.576 l 5.472,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path17531"
-                   d="m 238.789,33.689 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -5.328,1.224 c 0.072,0.216 0.072,0.36 0.144,0.576 l 5.4,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path17533"
-                   d="m 238.717,33.401 c -0.071,-0.216 -0.144,-0.36 -0.216,-0.576 l -5.328,1.224 c 0.072,0.216 0.145,0.36 0.145,0.576 l 5.399,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path17535"
-                   d="m 238.573,33.113 c -0.072,-0.216 -0.145,-0.36 -0.217,-0.576 l -5.256,1.224 c 0.072,0.216 0.145,0.36 0.145,0.576 l 5.328,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path17537"
-                   d="m 238.501,32.825 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l -5.256,1.224 c 0.071,0.216 0.144,0.36 0.144,0.576 l 5.328,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path17539"
-                   d="m 238.356,32.537 c -0.071,-0.144 -0.144,-0.36 -0.215,-0.576 l -5.185,1.224 c 0.072,0.216 0.144,0.36 0.144,0.576 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path17541"
-                   d="m 238.285,32.249 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -5.185,1.224 c 0.072,0.216 0.145,0.36 0.145,0.576 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path17543"
-                   d="m 238.142,31.961 c -0.072,-0.144 -0.145,-0.36 -0.217,-0.504 l -5.112,1.152 c 0.072,0.216 0.145,0.36 0.145,0.576 l 5.184,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path17545"
-                   d="m 238.069,31.673 c -0.072,-0.144 -0.145,-0.36 -0.217,-0.504 l -5.111,1.152 c 0.071,0.216 0.144,0.36 0.144,0.576 l 5.184,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path17547"
-                   d="m 237.925,31.457 c -0.072,-0.216 -0.072,-0.432 -0.145,-0.576 l -5.111,1.152 c 0.072,0.216 0.144,0.36 0.144,0.576 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path17549"
-                   d="m 237.853,31.169 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.576 l -5.04,1.152 c 0.072,0.216 0.145,0.36 0.145,0.576 l 5.111,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path17551"
-                   d="m 237.78,30.881 c -0.071,-0.216 -0.144,-0.36 -0.215,-0.576 l -5.04,1.152 c 0.071,0.216 0.071,0.36 0.144,0.576 l 5.111,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path17553"
-                   d="m 237.637,30.593 c -0.071,-0.216 -0.144,-0.36 -0.216,-0.576 l -4.968,1.152 c 0,0.216 0.072,0.36 0.144,0.576 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path17555"
-                   d="m 237.565,30.305 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l -5.041,1.152 c 0.072,0.216 0.145,0.36 0.217,0.576 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path17557"
-                   d="m 237.421,30.017 c -0.071,-0.216 -0.071,-0.36 -0.145,-0.576 l -5.039,1.152 c 0.071,0.216 0.144,0.36 0.216,0.576 l 4.968,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path17559"
-                   d="m 237.35,29.729 c -0.073,-0.144 -0.145,-0.36 -0.217,-0.576 l -4.968,1.152 c 0.072,0.216 0.144,0.36 0.144,0.576 l 5.041,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path17561"
-                   d="m 237.276,29.441 c -0.071,-0.144 -0.144,-0.36 -0.215,-0.576 l -5.04,1.152 c 0.071,0.216 0.144,0.432 0.216,0.576 l 5.039,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path17563"
-                   d="m 237.133,29.153 c -0.071,-0.144 -0.145,-0.36 -0.216,-0.576 l -4.969,1.152 c 0.073,0.216 0.145,0.432 0.217,0.576 l 4.968,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path17565"
-                   d="m 237.062,28.865 c -0.073,-0.144 -0.145,-0.36 -0.217,-0.504 l -4.968,1.152 c 0.071,0.144 0.145,0.36 0.145,0.504 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path17567"
-                   d="m 236.917,28.577 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.576 l -4.968,1.152 c 0.071,0.216 0.144,0.432 0.215,0.576 l 4.969,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path17569"
-                   d="m 236.845,28.361 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -4.968,1.152 c 0.072,0.216 0.144,0.432 0.216,0.648 l 4.968,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path17571"
-                   d="m 236.701,28.001 c 0,-0.216 -0.072,-0.36 -0.144,-0.576 l -5.04,1.152 c 0.071,0.216 0.144,0.432 0.216,0.576 l 4.968,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path17573"
-                   d="m 236.629,27.713 c -0.071,-0.144 -0.145,-0.36 -0.216,-0.576 l -4.969,1.224 c 0.073,0.144 0.145,0.36 0.217,0.504 l 4.968,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path17575"
-                   d="m 236.558,27.425 c -0.073,-0.144 -0.145,-0.36 -0.217,-0.576 l -5.04,1.224 c 0.072,0.144 0.144,0.36 0.217,0.504 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path17577"
-                   d="m 236.413,27.137 c -0.072,-0.144 -0.145,-0.36 -0.217,-0.576 l -5.039,1.224 c 0.072,0.144 0.216,0.36 0.287,0.576 l 4.969,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path17579"
-                   d="m 236.341,26.849 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.504 l -5.04,1.152 c 0.072,0.216 0.145,0.36 0.216,0.576 l 5.04,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path17581"
-                   d="m 236.269,26.561 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -5.111,1.152 c 0.071,0.216 0.144,0.36 0.216,0.576 l 5.111,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path17583"
-                   d="m 236.125,26.345 c -0.072,-0.216 -0.145,-0.432 -0.216,-0.576 l -5.112,1.152 c 0.072,0.216 0.216,0.36 0.288,0.576 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path17585"
-                   d="m 236.053,26.057 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.576 l -5.184,1.152 c 0.144,0.216 0.216,0.36 0.288,0.576 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path17587"
-                   d="m 235.909,25.769 c -0.072,-0.216 -0.145,-0.36 -0.217,-0.576 l -5.111,1.152 c 0.072,0.216 0.145,0.432 0.216,0.576 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path17589"
-                   d="m 235.837,25.481 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l -5.184,1.152 c 0.071,0.216 0.144,0.432 0.216,0.576 l 5.184,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path17591"
-                   d="m 235.692,25.193 c -0.071,-0.216 -0.144,-0.36 -0.215,-0.576 l -5.185,1.224 c 0.071,0.144 0.145,0.36 0.288,0.504 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path17593"
-                   d="m 235.621,24.905 c -0.072,-0.216 -0.144,-0.36 -0.217,-0.576 l -5.255,1.224 c 0.071,0.144 0.144,0.36 0.288,0.504 l 5.184,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path17595"
-                   d="m 235.478,24.617 c -0.073,-0.216 -0.145,-0.36 -0.217,-0.576 l -5.256,1.224 c 0.072,0.216 0.145,0.36 0.288,0.576 l 5.185,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path17597"
-                   d="m 235.404,24.329 c -0.071,-0.144 -0.144,-0.36 -0.216,-0.576 l -5.328,1.224 c 0.073,0.216 0.217,0.36 0.289,0.576 l 5.255,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path17599"
-                   d="m 235.261,24.041 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -5.328,1.224 c 0.072,0.144 0.217,0.36 0.288,0.504 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path17601"
-                   d="m 235.188,23.753 c -0.071,-0.144 -0.144,-0.36 -0.215,-0.504 l -5.4,1.224 c 0.072,0.144 0.144,0.36 0.287,0.504 l 5.328,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path17603"
-                   d="m 235.045,23.537 c -0.071,-0.216 -0.145,-0.432 -0.216,-0.576 l -5.473,1.224 c 0.145,0.216 0.217,0.36 0.36,0.576 l 5.329,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path17605"
-                   d="m 234.974,23.249 c -0.073,-0.216 -0.145,-0.36 -0.217,-0.576 l -5.544,1.296 c 0.144,0.144 0.216,0.288 0.36,0.504 l 5.401,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path17607"
-                   d="m 234.829,22.961 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l -5.544,1.296 c 0.144,0.144 0.216,0.36 0.287,0.504 l 5.473,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path17609"
-                   d="m 234.757,22.673 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.544,1.296 c 0.072,0.216 0.217,0.36 0.288,0.576 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path17611"
-                   d="m 234.613,22.385 c -0.072,-0.144 -0.145,-0.36 -0.217,-0.576 l -5.688,1.296 c 0.144,0.216 0.216,0.36 0.36,0.576 l 5.545,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path17613"
-                   d="m 234.469,22.097 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -5.688,1.296 c 0.071,0.144 0.215,0.36 0.359,0.504 l 5.545,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path17615"
-                   d="m 234.396,21.809 c -0.071,-0.144 -0.216,-0.36 -0.288,-0.504 l -5.759,1.296 c 0.144,0.216 0.287,0.36 0.359,0.504 l 5.688,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path17617"
-                   d="m 234.253,21.593 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.648 l -5.832,1.368 c 0.144,0.216 0.288,0.36 0.433,0.576 l 5.687,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path17619"
-                   d="m 234.108,21.305 c -0.071,-0.216 -0.144,-0.432 -0.287,-0.576 l -5.833,1.368 c 0.145,0.144 0.288,0.36 0.361,0.504 l 5.759,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path17621"
-                   d="m 233.965,20.945 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -5.977,1.368 c 0.145,0.144 0.289,0.36 0.36,0.504 l 5.833,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path17623"
-                   d="m 233.821,20.729 c -0.072,-0.216 -0.145,-0.432 -0.217,-0.576 l -6.047,1.368 c 0.144,0.216 0.287,0.36 0.431,0.576 l 5.833,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path17625"
-                   d="m 233.749,20.441 c -0.145,-0.216 -0.216,-0.36 -0.288,-0.576 l -6.048,1.44 c 0.145,0.144 0.216,0.36 0.359,0.504 l 5.977,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path17627"
-                   d="m 233.604,20.153 c -0.144,-0.216 -0.216,-0.36 -0.287,-0.576 l -6.121,1.44 c 0.145,0.216 0.288,0.36 0.361,0.504 l 6.047,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path17629"
-                   d="m 233.461,19.865 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.192,1.44 c 0.145,0.144 0.288,0.288 0.433,0.504 l 6.047,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path17631"
-                   d="m 233.317,19.577 c -0.072,-0.144 -0.217,-0.36 -0.288,-0.504 l -6.265,1.44 c 0.145,0.144 0.288,0.36 0.432,0.504 l 6.121,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path17633"
-                   d="m 233.173,19.361 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -6.336,1.512 c 0.144,0.144 0.288,0.288 0.432,0.504 l 6.192,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path17635"
-                   d="m 233.029,19.073 c -0.145,-0.216 -0.217,-0.36 -0.288,-0.576 l -6.48,1.512 c 0.217,0.144 0.36,0.36 0.504,0.504 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path17637"
-                   d="m 232.885,18.785 c -0.144,-0.144 -0.216,-0.36 -0.359,-0.504 l -6.48,1.512 c 0.144,0.144 0.359,0.288 0.504,0.504 l 6.335,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path17639"
-                   d="m 232.741,18.497 c -0.145,-0.144 -0.216,-0.36 -0.36,-0.504 l -6.552,1.512 c 0.145,0.216 0.288,0.36 0.432,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path17641"
-                   d="m 232.525,18.281 c -0.072,-0.216 -0.217,-0.36 -0.288,-0.576 l -6.696,1.584 c 0.216,0.144 0.359,0.288 0.504,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path17643"
-                   d="m 232.381,17.993 c -0.072,-0.216 -0.216,-0.36 -0.359,-0.504 l -6.696,1.512 c 0.144,0.216 0.359,0.36 0.504,0.504 l 6.551,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path17645"
-                   d="m 232.237,17.705 c -0.145,-0.144 -0.216,-0.36 -0.36,-0.504 l -6.84,1.584 c 0.216,0.144 0.359,0.36 0.504,0.504 l 6.696,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path17647"
-                   d="m 232.021,17.489 c -0.073,-0.216 -0.217,-0.36 -0.36,-0.576 l -6.84,1.656 c 0.144,0.144 0.287,0.288 0.504,0.432 l 6.696,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path17649"
-                   d="m 231.877,17.201 c -0.144,-0.216 -0.216,-0.36 -0.359,-0.504 l -6.984,1.584 c 0.144,0.216 0.359,0.36 0.504,0.504 l 6.839,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path17651"
-                   d="m 231.661,16.913 c -0.072,-0.144 -0.217,-0.36 -0.36,-0.504 l -7.128,1.656 c 0.216,0.144 0.432,0.288 0.576,0.504 l 6.912,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path17653"
-                   d="m 231.518,16.697 c -0.145,-0.216 -0.288,-0.36 -0.433,-0.576 l -7.2,1.656 c 0.216,0.216 0.433,0.36 0.648,0.504 l 6.985,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path17655"
-                   d="m 231.301,16.409 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.272,1.656 c 0.145,0.144 0.36,0.288 0.576,0.504 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path17657"
-                   d="m 231.085,16.121 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.416,1.728 c 0.216,0.144 0.432,0.288 0.647,0.432 l 7.201,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path17659"
-                   d="m 230.869,15.905 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.489,1.728 c 0.217,0.144 0.433,0.288 0.648,0.432 l 7.273,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path17661"
-                   d="m 230.653,15.617 c -0.145,-0.144 -0.289,-0.288 -0.504,-0.504 l -7.561,1.8 c 0.216,0.144 0.433,0.288 0.648,0.432 l 7.417,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path17663"
-                   d="m 230.438,15.401 c -0.217,-0.216 -0.36,-0.36 -0.504,-0.504 l -7.704,1.728 c 0.215,0.144 0.432,0.36 0.719,0.504 l 7.489,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path17665"
-                   d="m 230.149,15.113 c -0.145,-0.144 -0.36,-0.288 -0.504,-0.432 l -7.776,1.728 c 0.216,0.144 0.504,0.288 0.72,0.504 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path17667"
-                   d="m 229.934,14.897 c -0.217,-0.216 -0.433,-0.36 -0.648,-0.504 l -7.848,1.8 c 0.288,0.144 0.504,0.288 0.792,0.432 l 7.704,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path17669"
-                   d="m 229.646,14.681 c -0.217,-0.216 -0.433,-0.36 -0.648,-0.504 l -7.92,1.8 c 0.287,0.144 0.504,0.288 0.792,0.432 l 7.776,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path17671"
-                   d="m 229.285,14.393 c -0.144,-0.216 -0.36,-0.36 -0.576,-0.504 l -8.063,1.872 c 0.288,0.144 0.575,0.288 0.792,0.432 l 7.847,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path17673"
-                   d="m 228.997,14.177 c -0.217,-0.216 -0.432,-0.36 -0.647,-0.504 l -8.137,1.944 c 0.288,0.072 0.576,0.216 0.864,0.36 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path17675"
-                   d="m 228.709,13.889 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -8.137,1.944 c 0.289,0.144 0.576,0.216 0.865,0.36 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path17677"
-                   d="m 228.35,13.673 c -0.288,-0.144 -0.577,-0.288 -0.792,-0.432 l -8.208,1.944 c 0.287,0.144 0.575,0.288 0.863,0.432 l 8.137,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path17679"
-                   d="m 227.917,13.457 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.36 l -8.208,1.944 c 0.288,0.072 0.648,0.216 0.936,0.36 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path17681"
-                   d="m 227.484,13.241 c -0.288,-0.144 -0.647,-0.216 -0.936,-0.36 l -8.208,1.944 c 0.288,0.144 0.647,0.216 0.936,0.36 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path17683"
-                   d="m 227.053,13.097 c -0.36,-0.144 -0.792,-0.288 -1.152,-0.36 l -8.136,1.944 c 0.36,0.072 0.72,0.216 1.08,0.36 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path17685"
-                   d="m 218.125,14.249 c -0.216,0.144 -0.433,0.216 -0.576,0.288 0.216,0.144 0.504,0.216 0.792,0.288 l 8.208,-1.944 c -0.504,-0.072 -0.936,-0.216 -1.44,-0.216 l -6.984,1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path17687"
-                   d="m 219.493,13.673 c -0.648,0.216 -1.297,0.504 -1.944,0.864 0.072,0.072 0.144,0.072 0.216,0.144 l 8.136,-1.944 c -0.575,-0.144 -1.224,-0.144 -1.943,-0.144 l -4.465,1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path17689"
-                   d="m 217.549,14.537 2.736,-1.224 2.448,-0.648 2.159,-0.072 1.944,0.36 1.729,0.792 1.512,1.224 1.367,1.512 1.225,1.8 1.08,2.016 0.936,2.232 0.937,2.304 0.863,2.304 0.865,2.376 0.792,2.376 0.863,2.232 0.937,2.088 -0.792,0.072 -0.721,0.216 -0.72,0.216 -0.721,0.288 -0.72,0.216 -0.72,0.288 -0.792,0.216 -0.792,0.144 -0.072,-0.288 -0.071,-0.72 -0.217,-0.936 -0.216,-1.296 -0.359,-1.512 -0.504,-1.728 -0.577,-1.872 -0.791,-1.944 -0.937,-1.944 -1.079,-1.944 -1.369,-1.944 -1.512,-1.8 -1.8,-1.728 -2.017,-1.44 -2.303,-1.296 -2.591,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g17691">
-                <path
-                   id="path17693"
-                   d="m 233.604,36.857 c 0.072,0.432 0.072,0.792 0.145,1.152 l -7.416,1.944 c -0.145,-0.36 -0.288,-0.792 -0.504,-1.224 l 7.775,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path17695"
-                   d="m 233.604,36.857 c 0,-0.144 0,-0.36 -0.071,-0.576 l -7.92,1.872 c 0.071,0.216 0.144,0.36 0.216,0.576 l 7.775,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path17697"
-                   d="m 233.604,36.641 c 0,-0.216 -0.071,-0.432 -0.071,-0.648 l -7.992,1.872 c 0.072,0.216 0.144,0.36 0.216,0.576 l 7.847,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path17699"
-                   d="m 233.604,36.281 c -0.071,-0.144 -0.071,-0.36 -0.144,-0.576 l -8.064,1.872 c 0.072,0.216 0.145,0.36 0.217,0.576 l 7.991,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path17701"
-                   d="m 233.533,35.993 c 0,-0.144 -0.072,-0.36 -0.072,-0.576 l -8.136,1.872 c 0.071,0.216 0.144,0.432 0.216,0.576 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path17703"
-                   d="m 233.461,35.705 c 0,-0.216 0,-0.36 -0.072,-0.576 l -8.208,1.872 c 0.072,0.216 0.145,0.432 0.216,0.576 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path17705"
-                   d="m 233.461,35.417 c -0.072,-0.216 -0.072,-0.432 -0.144,-0.648 l -8.28,1.944 c 0.144,0.216 0.216,0.432 0.288,0.576 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path17707"
-                   d="m 233.389,35.129 c 0,-0.216 -0.071,-0.432 -0.071,-0.648 l -8.353,1.944 c 0.072,0.216 0.144,0.432 0.216,0.576 l 8.208,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path17709"
-                   d="m 233.317,34.769 c 0,-0.216 -0.072,-0.36 -0.072,-0.576 l -8.424,1.944 c 0.071,0.216 0.144,0.36 0.216,0.576 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path17711"
-                   d="m 233.317,34.481 c -0.072,-0.216 -0.072,-0.36 -0.145,-0.576 l -8.424,1.944 c 0.072,0.216 0.144,0.36 0.216,0.576 l 8.353,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path17713"
-                   d="m 233.245,34.193 c -0.072,-0.216 -0.072,-0.432 -0.145,-0.576 l -8.496,1.944 c 0.072,0.216 0.145,0.36 0.217,0.576 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path17715"
-                   d="m 233.173,33.905 c -0.072,-0.216 -0.072,-0.432 -0.144,-0.576 l -8.568,1.944 c 0.144,0.216 0.216,0.432 0.288,0.576 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path17717"
-                   d="m 233.101,33.617 c 0,-0.216 -0.071,-0.432 -0.144,-0.648 l -8.64,2.016 c 0.144,0.216 0.216,0.36 0.287,0.576 l 8.497,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path17719"
-                   d="m 233.029,33.329 c 0,-0.216 -0.072,-0.432 -0.145,-0.648 l -8.64,2.016 c 0.072,0.216 0.144,0.432 0.216,0.576 l 8.569,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path17721"
-                   d="m 232.957,32.969 c -0.072,-0.216 -0.072,-0.432 -0.145,-0.576 l -8.712,2.016 c 0.072,0.216 0.145,0.36 0.217,0.576 l 8.64,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path17723"
-                   d="m 232.885,32.681 c -0.072,-0.216 -0.072,-0.432 -0.144,-0.576 l -8.784,2.016 c 0.072,0.216 0.216,0.36 0.288,0.576 l 8.64,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path17725"
-                   d="m 232.812,32.393 c -0.071,-0.216 -0.071,-0.36 -0.144,-0.576 l -8.784,2.016 c 0.072,0.216 0.145,0.36 0.216,0.576 l 8.712,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path17727"
-                   d="m 232.741,32.105 c -0.072,-0.216 -0.145,-0.36 -0.145,-0.576 l -8.855,2.016 c 0.071,0.216 0.144,0.432 0.216,0.576 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path17729"
-                   d="m 232.669,31.817 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -8.856,2.088 c 0.072,0.216 0.145,0.36 0.288,0.576 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path17731"
-                   d="m 232.597,31.529 c -0.071,-0.216 -0.144,-0.432 -0.216,-0.648 l -8.928,2.088 c 0.072,0.216 0.216,0.432 0.288,0.576 l 8.856,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path17733"
-                   d="m 232.453,31.169 c -0.072,-0.216 -0.145,-0.36 -0.145,-0.576 l -9,2.088 c 0.072,0.216 0.145,0.36 0.288,0.576 l 8.857,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path17735"
-                   d="m 232.381,30.881 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -9,2.088 c 0.072,0.216 0.216,0.36 0.288,0.576 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path17737"
-                   d="m 232.309,30.593 c -0.071,-0.144 -0.144,-0.36 -0.216,-0.576 l -9.071,2.16 c 0.144,0.144 0.216,0.36 0.287,0.504 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path17739"
-                   d="m 232.165,30.305 c -0.072,-0.144 -0.144,-0.36 -0.217,-0.576 l -9.071,2.16 c 0.145,0.144 0.216,0.36 0.288,0.504 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path17741"
-                   d="m 232.093,30.017 c -0.071,-0.216 -0.145,-0.36 -0.288,-0.576 l -9.071,2.088 c 0.144,0.216 0.215,0.432 0.288,0.648 l 9.071,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path17743"
-                   d="m 231.948,29.729 c -0.071,-0.144 -0.144,-0.36 -0.215,-0.576 l -9.145,2.088 c 0.145,0.216 0.216,0.432 0.288,0.648 l 9.072,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path17745"
-                   d="m 231.805,29.441 c -0.071,-0.216 -0.144,-0.36 -0.216,-0.576 l -9.145,2.16 c 0.145,0.144 0.217,0.36 0.289,0.504 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path17747"
-                   d="m 231.733,29.153 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l -9.217,2.16 c 0.144,0.144 0.217,0.36 0.288,0.504 l 9.145,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path17749"
-                   d="m 231.589,28.865 c -0.071,-0.144 -0.145,-0.36 -0.216,-0.576 l -9.216,2.16 c 0.144,0.216 0.216,0.36 0.287,0.576 l 9.145,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path17751"
-                   d="m 231.518,28.577 c -0.073,-0.144 -0.145,-0.36 -0.288,-0.504 l -9.217,2.088 c 0.145,0.216 0.217,0.36 0.288,0.576 l 9.217,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path17753"
-                   d="m 231.373,28.289 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -9.288,2.16 c 0.144,0.144 0.216,0.36 0.288,0.504 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path17755"
-                   d="m 231.229,28.073 c -0.072,-0.216 -0.145,-0.432 -0.288,-0.648 l -9.216,2.16 c 0.071,0.216 0.216,0.36 0.287,0.576 l 9.217,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path17757"
-                   d="m 231.157,27.785 c -0.145,-0.216 -0.216,-0.432 -0.36,-0.648 l -9.288,2.16 c 0.145,0.216 0.288,0.432 0.36,0.648 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path17759"
-                   d="m 230.941,27.425 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.576 l -9.361,2.232 c 0.145,0.144 0.217,0.288 0.361,0.504 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path17761"
-                   d="m 230.869,27.137 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -9.36,2.16 c 0.144,0.144 0.217,0.36 0.288,0.504 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path17763"
-                   d="m 230.726,26.849 c -0.145,-0.144 -0.217,-0.36 -0.288,-0.504 l -9.36,2.16 c 0.072,0.216 0.216,0.36 0.287,0.576 l 9.361,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path17765"
-                   d="m 230.581,26.633 c -0.144,-0.216 -0.217,-0.36 -0.288,-0.576 l -9.359,2.16 c 0.071,0.216 0.216,0.36 0.287,0.576 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path17767"
-                   d="m 230.438,26.345 c -0.145,-0.216 -0.217,-0.432 -0.36,-0.576 l -9.36,2.16 c 0.144,0.216 0.217,0.36 0.36,0.576 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path17769"
-                   d="m 230.293,26.057 c -0.144,-0.216 -0.288,-0.36 -0.359,-0.576 l -9.36,2.16 c 0.072,0.216 0.216,0.432 0.36,0.576 l 9.359,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path17771"
-                   d="m 230.077,25.769 c -0.072,-0.216 -0.217,-0.36 -0.288,-0.576 l -9.433,2.16 c 0.145,0.216 0.217,0.36 0.36,0.576 l 9.361,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path17773"
-                   d="m 229.934,25.481 c -0.145,-0.216 -0.217,-0.36 -0.36,-0.576 l -9.36,2.232 c 0.144,0.144 0.216,0.36 0.36,0.504 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path17775"
-                   d="m 229.789,25.193 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -9.359,2.16 c 0.072,0.144 0.216,0.36 0.287,0.504 l 9.432,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path17777"
-                   d="m 229.573,24.905 c -0.072,-0.144 -0.217,-0.36 -0.288,-0.504 l -9.433,2.16 c 0.145,0.216 0.217,0.36 0.36,0.576 l 9.361,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path17779"
-                   d="m 229.429,24.689 c -0.144,-0.216 -0.216,-0.432 -0.359,-0.648 l -9.433,2.232 c 0.144,0.216 0.288,0.36 0.433,0.576 l 9.359,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path17781"
-                   d="m 229.285,24.401 c -0.144,-0.216 -0.288,-0.432 -0.433,-0.576 l -9.359,2.16 c 0.144,0.216 0.216,0.432 0.359,0.576 l 9.433,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path17783"
-                   d="m 229.069,24.041 c -0.145,-0.144 -0.217,-0.288 -0.36,-0.504 l -9.433,2.232 c 0.145,0.144 0.289,0.288 0.36,0.504 l 9.433,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path17785"
-                   d="m 228.853,23.825 c -0.072,-0.216 -0.216,-0.36 -0.359,-0.576 l -9.36,2.232 c 0.072,0.144 0.217,0.36 0.36,0.504 l 9.359,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path17787"
-                   d="m 228.709,23.537 c -0.144,-0.144 -0.216,-0.36 -0.359,-0.504 l -9.433,2.16 c 0.145,0.216 0.216,0.36 0.359,0.576 l 9.433,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path17789"
-                   d="m 228.493,23.249 c -0.072,-0.144 -0.217,-0.288 -0.36,-0.504 l -9.432,2.232 c 0.144,0.144 0.287,0.288 0.432,0.504 l 9.36,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path17791"
-                   d="m 228.35,23.033 c -0.145,-0.216 -0.288,-0.432 -0.433,-0.576 l -9.433,2.16 c 0.145,0.216 0.288,0.432 0.433,0.576 l 9.433,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path17793"
-                   d="m 228.133,22.745 c -0.145,-0.144 -0.288,-0.36 -0.432,-0.576 l -9.433,2.232 c 0.145,0.144 0.289,0.36 0.433,0.576 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path17795"
-                   d="m 227.917,22.457 c -0.145,-0.216 -0.288,-0.36 -0.433,-0.504 l -9.432,2.16 c 0.144,0.144 0.288,0.36 0.432,0.504 l 9.433,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path17797"
-                   d="m 227.701,22.169 c -0.144,-0.144 -0.288,-0.288 -0.433,-0.504 l -9.359,2.232 c 0.144,0.144 0.216,0.288 0.359,0.504 l 9.433,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path17799"
-                   d="m 227.484,21.953 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -9.36,2.16 c 0.145,0.144 0.288,0.36 0.36,0.504 l 9.432,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path17801"
-                   d="m 227.269,21.665 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -9.359,2.16 c 0.144,0.216 0.287,0.36 0.432,0.576 l 9.359,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path17803"
-                   d="m 227.125,21.449 c -0.145,-0.216 -0.36,-0.36 -0.504,-0.504 l -9.36,2.16 c 0.144,0.144 0.288,0.36 0.432,0.504 l 9.432,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path17805"
-                   d="m 226.909,21.161 c -0.217,-0.216 -0.36,-0.36 -0.505,-0.576 l -9.431,2.232 c 0.144,0.144 0.359,0.36 0.504,0.504 l 9.432,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path17807"
-                   d="m 226.621,20.945 c -0.144,-0.216 -0.288,-0.432 -0.504,-0.576 l -9.36,2.16 c 0.144,0.216 0.36,0.36 0.504,0.576 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path17809"
-                   d="m 226.404,20.585 c -0.216,-0.144 -0.359,-0.288 -0.504,-0.504 l -9.359,2.16 c 0.144,0.216 0.288,0.36 0.433,0.576 l 9.43,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path17811"
-                   d="m 226.117,20.369 c -0.144,-0.216 -0.288,-0.36 -0.433,-0.504 l -9.359,2.16 c 0.144,0.144 0.288,0.36 0.432,0.504 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path17813"
-                   d="m 225.9,20.081 c -0.144,-0.144 -0.287,-0.288 -0.504,-0.504 l -9.359,2.232 c 0.144,0.144 0.359,0.288 0.504,0.432 l 9.359,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path17815"
-                   d="m 225.685,19.865 c -0.216,-0.144 -0.359,-0.36 -0.504,-0.504 l -9.359,2.16 c 0.144,0.144 0.287,0.36 0.504,0.504 l 9.359,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path17817"
-                   d="m 225.396,19.577 c -0.144,-0.144 -0.359,-0.36 -0.575,-0.504 l -9.288,2.16 c 0.144,0.144 0.359,0.36 0.504,0.576 l 9.359,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path17819"
-                   d="m 225.181,19.361 c -0.216,-0.216 -0.432,-0.36 -0.576,-0.576 l -9.359,2.16 c 0.216,0.216 0.359,0.36 0.576,0.576 l 9.359,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path17821"
-                   d="m 224.821,19.073 c -0.145,-0.216 -0.36,-0.36 -0.504,-0.504 l -9.288,2.16 c 0.144,0.144 0.288,0.36 0.504,0.504 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path17823"
-                   d="m 224.604,18.785 c -0.216,-0.144 -0.359,-0.288 -0.575,-0.432 l -9.288,2.16 c 0.144,0.144 0.359,0.288 0.504,0.432 l 9.359,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path17825"
-                   d="m 224.317,18.569 c -0.217,-0.144 -0.36,-0.288 -0.576,-0.504 l -9.288,2.16 c 0.216,0.216 0.359,0.36 0.576,0.504 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path17827"
-                   d="m 224.029,18.353 c -0.145,-0.216 -0.36,-0.36 -0.576,-0.504 l -9.288,2.16 c 0.216,0.144 0.36,0.288 0.576,0.504 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path17829"
-                   d="m 223.741,18.065 c -0.216,-0.144 -0.433,-0.36 -0.648,-0.504 l -9.216,2.16 c 0.144,0.144 0.36,0.36 0.576,0.504 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path17831"
-                   d="m 223.453,17.849 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -9.288,2.16 c 0.288,0.144 0.432,0.36 0.648,0.504 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path17833"
-                   d="m 223.093,17.561 c -0.216,-0.144 -0.432,-0.288 -0.575,-0.432 l -9.289,2.088 c 0.216,0.216 0.432,0.36 0.648,0.504 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path17835"
-                   d="m 222.805,17.345 c -0.216,-0.144 -0.432,-0.288 -0.647,-0.504 l -9.216,2.16 c 0.216,0.144 0.432,0.288 0.576,0.504 l 9.287,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path17837"
-                   d="m 222.518,17.129 c -0.217,-0.216 -0.505,-0.36 -0.721,-0.504 l -9.144,2.16 c 0.216,0.144 0.36,0.288 0.576,0.432 l 9.289,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path17839"
-                   d="m 222.157,16.841 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -9.216,2.16 c 0.216,0.144 0.432,0.288 0.648,0.432 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path17841"
-                   d="m 221.797,16.625 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.504 l -9.216,2.16 c 0.288,0.144 0.504,0.36 0.792,0.504 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path17843"
-                   d="m 221.509,16.409 c -0.288,-0.144 -0.575,-0.288 -0.792,-0.504 l -9.144,2.16 c 0.216,0.144 0.504,0.288 0.72,0.504 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path17845"
-                   d="m 221.077,16.121 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -9.072,2.16 c 0.216,0.144 0.432,0.288 0.648,0.432 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path17847"
-                   d="m 220.717,15.905 c -0.288,-0.144 -0.575,-0.288 -0.792,-0.432 l -9.144,2.16 c 0.288,0.144 0.504,0.288 0.792,0.432 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path17849"
-                   d="m 220.285,15.689 c -0.216,-0.144 -0.505,-0.288 -0.792,-0.36 l -9.072,2.088 c 0.288,0.144 0.504,0.288 0.792,0.432 l 9.072,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path17851"
-                   d="m 219.925,15.473 c -0.288,-0.144 -0.575,-0.288 -0.863,-0.36 l -9.073,2.088 c 0.288,0.144 0.576,0.288 0.792,0.432 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path17853"
-                   d="m 219.493,15.329 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.432 l -9.072,2.088 c 0.288,0.144 0.576,0.288 0.864,0.432 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path17855"
-                   d="m 219.062,15.113 c -0.36,-0.216 -0.721,-0.36 -1.009,-0.432 l -9,2.016 c 0.288,0.144 0.648,0.36 0.936,0.504 l 9.073,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path17857"
-                   d="m 218.629,14.897 c -0.36,-0.144 -0.72,-0.288 -1.151,-0.432 l -8.929,2.088 c 0.36,0.144 0.72,0.288 1.008,0.432 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path17859"
-                   d="m 218.053,14.681 c -0.36,-0.144 -0.72,-0.288 -1.079,-0.36 l -8.929,2.016 c 0.36,0.144 0.648,0.288 1.008,0.36 l 9,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path17861"
-                   d="m 217.478,14.465 c -0.36,-0.144 -0.721,-0.216 -1.152,-0.36 l -8.784,2.088 c 0.36,0.072 0.72,0.216 1.008,0.36 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path17863"
-                   d="m 207.541,15.833 c -0.072,0.072 -0.144,0.144 -0.216,0.216 0.216,0.144 0.504,0.216 0.72,0.288 l 8.929,-2.016 c -0.433,-0.144 -0.865,-0.288 -1.297,-0.36 l -8.136,1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path17865"
-                   d="m 208.117,15.401 c -0.288,0.216 -0.576,0.432 -0.792,0.648 0.072,0.072 0.144,0.072 0.216,0.144 l 8.784,-2.088 c -0.433,-0.072 -0.937,-0.216 -1.44,-0.288 l -6.768,1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path17867"
-                   d="m 209.053,14.825 c -0.504,0.288 -1.008,0.648 -1.512,1.008 l 8.136,-1.872 c -0.647,-0.144 -1.368,-0.216 -2.016,-0.216 l -4.608,1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path17869"
-                   d="m 210.637,14.177 c -0.936,0.288 -1.728,0.648 -2.52,1.224 l 6.768,-1.584 c -1.008,-0.072 -2.016,-0.072 -3.024,0.072 l -1.224,0.288 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path17871"
-                   d="m 207.325,16.049 1.656,-1.224 1.872,-0.792 2.016,-0.288 2.016,0.072 2.16,0.432 2.16,0.864 2.088,1.152 2.088,1.44 2.016,1.8 1.872,2.016 1.656,2.304 1.513,2.52 1.296,2.664 1.008,2.88 0.647,2.952 0.36,3.168 -7.416,1.944 -0.433,-1.224 -0.575,-1.44 -0.576,-1.512 -0.72,-1.656 -0.864,-1.728 -0.864,-1.8 -1.008,-1.8 -1.08,-1.8 -1.225,-1.8 -1.367,-1.728 -1.44,-1.584 -1.512,-1.512 -1.656,-1.368 -1.8,-1.152 -1.872,-1.008 -2.016,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g17873">
-                <path
-                   id="path17875"
-                   d="m 226.404,40.169 c -2.663,0.36 -8.063,2.376 -10.367,2.88 -0.145,-0.144 -0.216,-0.36 -0.288,-0.504 l 10.584,-2.448 c 0,0 0,0.072 0.071,0.072 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path17877"
-                   d="m 215.533,41.969 c 0.071,0.216 0.144,0.36 0.216,0.576 l 10.584,-2.448 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l -10.584,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path17879"
-                   d="m 215.461,41.681 c 0.072,0.216 0.144,0.36 0.216,0.576 l 10.584,-2.448 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -10.584,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path17881"
-                   d="m 215.317,41.393 c 0.071,0.216 0.144,0.432 0.216,0.576 l 10.584,-2.448 c 0,-0.144 -0.072,-0.36 -0.144,-0.576 l -10.656,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path17883"
-                   d="m 215.173,41.177 c 0.072,0.144 0.145,0.36 0.288,0.504 l 10.584,-2.448 c -0.071,-0.144 -0.145,-0.36 -0.216,-0.504 l -10.656,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path17885"
-                   d="m 215.101,40.889 c 0.072,0.144 0.145,0.36 0.217,0.504 l 10.656,-2.448 c -0.073,-0.144 -0.145,-0.36 -0.217,-0.504 l -10.656,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path17887"
-                   d="m 214.957,40.601 c 0.072,0.144 0.144,0.36 0.216,0.576 l 10.656,-2.448 c -0.072,-0.216 -0.145,-0.432 -0.145,-0.576 l -10.727,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path17889"
-                   d="m 214.885,40.313 c 0.072,0.216 0.145,0.36 0.216,0.576 l 10.656,-2.448 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.576 l -10.656,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path17891"
-                   d="m 214.741,40.025 c 0.071,0.216 0.144,0.36 0.216,0.576 l 10.728,-2.448 c -0.071,-0.216 -0.144,-0.432 -0.216,-0.576 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path17893"
-                   d="m 214.597,39.737 c 0.072,0.216 0.216,0.36 0.288,0.576 l 10.656,-2.448 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path17895"
-                   d="m 214.525,39.449 c 0.072,0.216 0.144,0.432 0.216,0.576 l 10.728,-2.448 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path17897"
-                   d="m 214.381,39.161 c 0.072,0.216 0.144,0.432 0.216,0.576 l 10.729,-2.448 c -0.072,-0.216 -0.145,-0.36 -0.217,-0.576 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path17899"
-                   d="m 214.309,38.945 c 0.072,0.144 0.144,0.36 0.216,0.504 l 10.728,-2.448 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l -10.728,2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path17901"
-                   d="m 214.165,38.657 c 0.072,0.144 0.144,0.36 0.216,0.504 l 10.728,-2.448 c -0.071,-0.144 -0.144,-0.36 -0.216,-0.576 l -10.728,2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path17903"
-                   d="m 214.021,38.369 c 0.144,0.144 0.216,0.36 0.288,0.576 l 10.728,-2.52 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.504 l -10.8,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path17905"
-                   d="m 213.949,38.081 c 0.072,0.216 0.144,0.36 0.216,0.576 l 10.728,-2.52 c -0.071,-0.144 -0.144,-0.36 -0.216,-0.504 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path17907"
-                   d="m 213.805,37.793 c 0.072,0.216 0.144,0.36 0.216,0.576 l 10.8,-2.448 c -0.072,-0.216 -0.145,-0.36 -0.217,-0.576 l -10.799,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path17909"
-                   d="m 213.733,37.505 c 0.072,0.216 0.144,0.432 0.216,0.576 l 10.728,-2.448 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path17911"
-                   d="m 213.589,37.289 c 0.072,0.144 0.144,0.36 0.216,0.504 l 10.8,-2.448 c -0.071,-0.216 -0.216,-0.36 -0.287,-0.576 l -10.729,2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path17913"
-                   d="m 213.517,37.001 c 0.072,0.144 0.144,0.36 0.216,0.504 l 10.728,-2.448 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -10.728,2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path17915"
-                   d="m 213.373,36.713 c 0.072,0.144 0.144,0.36 0.216,0.576 l 10.729,-2.52 c -0.072,-0.144 -0.145,-0.36 -0.217,-0.504 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path17917"
-                   d="m 213.229,36.425 c 0.144,0.216 0.216,0.36 0.288,0.576 l 10.728,-2.52 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path17919"
-                   d="m 213.157,36.137 c 0.072,0.216 0.144,0.36 0.216,0.576 l 10.728,-2.448 c -0.071,-0.216 -0.144,-0.36 -0.216,-0.576 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path17921"
-                   d="m 213.013,35.849 c 0.072,0.216 0.144,0.36 0.216,0.576 l 10.728,-2.448 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path17923"
-                   d="m 212.941,35.561 c 0.072,0.216 0.144,0.432 0.216,0.576 l 10.728,-2.448 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -10.656,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path17925"
-                   d="m 212.797,35.345 c 0.072,0.144 0.144,0.36 0.216,0.504 l 10.729,-2.448 c -0.072,-0.144 -0.145,-0.36 -0.288,-0.576 l -10.657,2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path17927"
-                   d="m 212.653,35.057 c 0.072,0.144 0.144,0.36 0.288,0.504 l 10.656,-2.448 c -0.071,-0.144 -0.144,-0.36 -0.216,-0.504 l -10.728,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path17929"
-                   d="m 212.581,34.769 c 0.072,0.144 0.144,0.36 0.216,0.576 l 10.656,-2.52 c -0.072,-0.144 -0.145,-0.36 -0.216,-0.504 l -10.656,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path17931"
-                   d="m 212.437,34.481 c 0.072,0.216 0.144,0.36 0.216,0.576 l 10.728,-2.448 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -10.656,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path17933"
-                   d="m 212.293,34.193 c 0.072,0.216 0.216,0.36 0.288,0.576 l 10.656,-2.448 c -0.072,-0.216 -0.216,-0.36 -0.289,-0.576 l -10.655,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path17935"
-                   d="m 212.221,33.905 c 0.072,0.216 0.144,0.36 0.216,0.576 l 10.656,-2.448 c -0.071,-0.216 -0.145,-0.36 -0.288,-0.576 l -10.584,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path17937"
-                   d="m 212.077,33.689 c 0.072,0.144 0.144,0.36 0.216,0.504 l 10.655,-2.448 c -0.071,-0.144 -0.144,-0.36 -0.287,-0.504 l -10.584,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path17939"
-                   d="m 211.933,33.401 c 0.072,0.144 0.216,0.36 0.288,0.504 l 10.584,-2.448 c -0.071,-0.144 -0.144,-0.36 -0.216,-0.504 l -10.656,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path17941"
-                   d="m 211.861,33.113 c 0.072,0.216 0.144,0.36 0.216,0.576 l 10.584,-2.448 c -0.072,-0.216 -0.144,-0.36 -0.217,-0.576 l -10.583,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path17943"
-                   d="m 211.717,32.825 c 0.072,0.216 0.144,0.36 0.216,0.576 l 10.656,-2.448 c -0.145,-0.216 -0.216,-0.36 -0.288,-0.576 l -10.584,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path17945"
-                   d="m 211.573,32.537 c 0.072,0.216 0.216,0.36 0.288,0.576 l 10.583,-2.448 c -0.144,-0.144 -0.215,-0.36 -0.287,-0.504 l -10.584,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path17947"
-                   d="m 211.429,32.321 c 0.144,0.144 0.216,0.36 0.288,0.504 l 10.584,-2.448 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -10.584,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path17949"
-                   d="m 211.357,32.033 c 0.072,0.144 0.144,0.36 0.216,0.504 l 10.584,-2.376 c -0.145,-0.216 -0.216,-0.36 -0.288,-0.576 l -10.512,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path17951"
-                   d="m 211.213,31.745 c 0.072,0.144 0.144,0.36 0.216,0.576 l 10.584,-2.448 c -0.144,-0.216 -0.216,-0.36 -0.287,-0.576 l -10.513,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path17953"
-                   d="m 211.069,31.457 c 0.072,0.216 0.216,0.36 0.288,0.576 l 10.512,-2.448 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -10.44,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path17955"
-                   d="m 210.925,31.169 c 0.144,0.216 0.216,0.36 0.288,0.576 l 10.513,-2.448 c -0.145,-0.144 -0.217,-0.36 -0.361,-0.504 l -10.44,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path17957"
-                   d="m 210.781,30.881 c 0.144,0.216 0.216,0.432 0.288,0.576 l 10.512,-2.376 c -0.144,-0.216 -0.217,-0.36 -0.36,-0.576 l -10.44,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path17959"
-                   d="m 210.709,30.665 c 0.072,0.144 0.144,0.36 0.216,0.504 l 10.439,-2.376 c -0.071,-0.216 -0.215,-0.36 -0.287,-0.576 l -10.368,2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path17961"
-                   d="m 210.565,30.377 c 0.072,0.144 0.144,0.36 0.216,0.504 l 10.44,-2.376 c -0.071,-0.144 -0.216,-0.36 -0.287,-0.504 l -10.369,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path17963"
-                   d="m 210.421,30.089 c 0.072,0.216 0.144,0.36 0.288,0.576 l 10.368,-2.448 c -0.072,-0.144 -0.217,-0.288 -0.288,-0.504 l -10.368,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path17965"
-                   d="m 210.277,29.801 c 0.072,0.216 0.216,0.36 0.288,0.576 l 10.369,-2.376 c -0.145,-0.216 -0.217,-0.36 -0.36,-0.576 l -10.297,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path17967"
-                   d="m 210.133,29.513 c 0.072,0.216 0.216,0.432 0.288,0.576 l 10.368,-2.376 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -10.296,2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path17969"
-                   d="m 209.989,29.297 c 0.072,0.144 0.216,0.36 0.288,0.504 l 10.296,-2.376 c -0.072,-0.144 -0.217,-0.36 -0.288,-0.504 l -10.296,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path17971"
-                   d="m 209.845,29.009 c 0.072,0.144 0.216,0.36 0.288,0.504 l 10.296,-2.304 c -0.144,-0.216 -0.216,-0.36 -0.359,-0.576 l -10.225,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path17973"
-                   d="m 209.701,28.721 c 0.072,0.216 0.216,0.36 0.288,0.576 l 10.296,-2.376 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.504 l -10.224,2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path17975"
-                   d="m 209.557,28.505 c 0.144,0.144 0.216,0.288 0.288,0.504 l 10.225,-2.376 c -0.072,-0.144 -0.217,-0.36 -0.36,-0.504 l -10.153,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path17977"
-                   d="m 209.413,28.217 c 0.144,0.144 0.216,0.36 0.288,0.504 l 10.224,-2.304 c -0.145,-0.216 -0.216,-0.36 -0.359,-0.576 l -10.153,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path17979"
-                   d="m 209.269,27.929 c 0.144,0.216 0.216,0.36 0.288,0.576 l 10.223,-2.376 c -0.144,-0.144 -0.287,-0.36 -0.431,-0.504 l -10.08,2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path17981"
-                   d="m 209.125,27.641 c 0.072,0.216 0.216,0.36 0.288,0.576 l 10.152,-2.376 c -0.145,-0.144 -0.216,-0.288 -0.36,-0.504 l -10.08,2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path17983"
-                   d="m 208.981,27.425 c 0.072,0.144 0.216,0.36 0.288,0.504 l 10.152,-2.304 c -0.145,-0.216 -0.288,-0.36 -0.433,-0.504 l -10.007,2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path17985"
-                   d="m 208.837,27.137 c 0.072,0.144 0.216,0.36 0.288,0.504 l 10.08,-2.304 c -0.144,-0.144 -0.288,-0.36 -0.36,-0.504 l -10.008,2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path17987"
-                   d="m 208.693,26.849 c 0.072,0.216 0.144,0.36 0.288,0.576 l 10.007,-2.304 c -0.071,-0.216 -0.216,-0.36 -0.359,-0.576 l -9.936,2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path17989"
-                   d="m 208.477,26.561 c 0.144,0.216 0.216,0.36 0.36,0.576 l 10.008,-2.304 c -0.144,-0.216 -0.287,-0.36 -0.432,-0.504 l -9.936,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path17991"
-                   d="m 208.333,26.345 c 0.144,0.144 0.216,0.36 0.36,0.504 l 9.936,-2.304 c -0.145,-0.144 -0.288,-0.288 -0.433,-0.504 l -9.863,2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path17993"
-                   d="m 208.189,26.057 c 0.072,0.144 0.216,0.36 0.288,0.504 l 9.936,-2.232 c -0.145,-0.216 -0.288,-0.36 -0.36,-0.504 l -9.864,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path17995"
-                   d="m 207.973,25.769 c 0.144,0.216 0.288,0.36 0.36,0.576 l 9.863,-2.304 c -0.071,-0.144 -0.216,-0.36 -0.359,-0.504 l -9.864,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path17997"
-                   d="m 207.829,25.553 c 0.144,0.144 0.216,0.36 0.36,0.504 l 9.864,-2.232 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.576 l -9.792,2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path17999"
-                   d="m 207.685,25.265 c 0.072,0.144 0.216,0.36 0.288,0.504 l 9.864,-2.232 c -0.145,-0.144 -0.288,-0.36 -0.433,-0.504 l -9.719,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path18001"
-                   d="m 207.469,24.977 c 0.144,0.216 0.216,0.36 0.36,0.576 l 9.792,-2.304 c -0.144,-0.144 -0.288,-0.288 -0.433,-0.504 l -9.719,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path18003"
-                   d="m 207.325,24.761 c 0.072,0.144 0.216,0.288 0.36,0.504 l 9.719,-2.232 c -0.144,-0.216 -0.287,-0.36 -0.431,-0.504 l -9.648,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path18005"
-                   d="m 207.109,24.473 c 0.144,0.144 0.288,0.36 0.36,0.504 l 9.72,-2.232 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.504 l -9.576,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path18007"
-                   d="m 206.965,24.257 c 0.072,0.144 0.216,0.288 0.36,0.504 l 9.649,-2.232 c -0.145,-0.144 -0.36,-0.36 -0.505,-0.504 l -9.504,2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path18009"
-                   d="m 206.749,23.969 c 0.144,0.144 0.216,0.36 0.36,0.504 l 9.576,-2.232 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -9.504,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path18011"
-                   d="m 206.533,23.681 c 0.144,0.216 0.288,0.36 0.432,0.576 l 9.504,-2.232 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -9.504,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path18013"
-                   d="m 206.317,23.465 c 0.144,0.144 0.288,0.36 0.432,0.504 l 9.504,-2.16 c -0.145,-0.216 -0.288,-0.36 -0.504,-0.504 l -9.432,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path18015"
-                   d="m 206.173,23.177 c 0.144,0.216 0.216,0.36 0.36,0.504 l 9.504,-2.16 c -0.216,-0.144 -0.36,-0.36 -0.504,-0.504 l -9.36,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path18017"
-                   d="m 205.957,22.961 c 0.144,0.144 0.288,0.288 0.36,0.504 l 9.432,-2.16 c -0.145,-0.216 -0.288,-0.36 -0.504,-0.504 l -9.288,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path18019"
-                   d="m 205.741,22.673 c 0.144,0.144 0.288,0.36 0.432,0.504 l 9.36,-2.16 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.504 l -9.288,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path18021"
-                   d="m 205.525,22.457 c 0.144,0.144 0.288,0.288 0.432,0.504 l 9.288,-2.16 c -0.145,-0.144 -0.36,-0.36 -0.504,-0.504 l -9.216,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path18023"
-                   d="m 205.237,22.169 c 0.216,0.144 0.36,0.36 0.504,0.504 l 9.289,-2.16 c -0.217,-0.144 -0.433,-0.288 -0.576,-0.432 l -9.217,2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path18025"
-                   d="m 205.021,21.953 c 0.144,0.144 0.36,0.288 0.504,0.504 l 9.216,-2.16 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -9.144,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path18027"
-                   d="m 204.805,21.665 c 0.144,0.144 0.288,0.36 0.432,0.504 l 9.216,-2.088 c -0.216,-0.216 -0.36,-0.36 -0.576,-0.504 l -9.072,2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path18029"
-                   d="m 204.517,21.449 c 0.216,0.144 0.36,0.288 0.504,0.504 l 9.144,-2.16 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.432 l -9.072,2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path18031"
-                   d="m 204.301,21.161 c 0.144,0.144 0.36,0.36 0.504,0.504 l 9.072,-2.088 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.928,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path18033"
-                   d="m 204.013,20.945 c 0.216,0.144 0.36,0.288 0.504,0.504 l 9.072,-2.088 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.504 l -8.928,2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path18035"
-                   d="m 203.725,20.729 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.928,-2.016 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.504 l -8.856,2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path18037"
-                   d="m 203.437,20.441 c 0.216,0.144 0.432,0.36 0.576,0.504 l 8.928,-2.088 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.856,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path18039"
-                   d="m 203.149,20.225 c 0.216,0.144 0.432,0.288 0.576,0.504 l 8.856,-2.088 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.784,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path18041"
-                   d="m 202.861,20.009 c 0.216,0.144 0.432,0.288 0.576,0.432 l 8.856,-2.016 c -0.288,-0.144 -0.504,-0.288 -0.72,-0.432 l -8.712,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path18043"
-                   d="m 202.573,19.793 c 0.144,0.144 0.36,0.288 0.576,0.432 l 8.784,-2.016 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -8.568,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path18045"
-                   d="m 202.213,19.577 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.712,-2.016 c -0.288,-0.144 -0.576,-0.288 -0.792,-0.432 l -8.568,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path18047"
-                   d="m 201.853,19.289 c 0.216,0.144 0.432,0.36 0.72,0.504 l 8.568,-2.016 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -8.496,1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path18049"
-                   d="m 201.421,19.073 c 0.288,0.144 0.504,0.288 0.792,0.504 l 8.568,-2.016 c -0.288,-0.144 -0.576,-0.288 -0.936,-0.36 l -8.424,1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path18051"
-                   d="m 201.061,18.929 c 0.216,0.072 0.504,0.216 0.792,0.36 l 8.496,-1.944 c -0.36,-0.144 -0.648,-0.216 -0.936,-0.36 l -8.352,1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path18053"
-                   d="m 200.557,18.713 c 0.288,0.144 0.576,0.216 0.864,0.36 l 8.424,-1.872 c -0.288,-0.144 -0.648,-0.288 -0.936,-0.432 l -8.352,1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffab00" />
-                <path
-                   id="path18055"
-                   d="m 200.125,18.497 c 0.288,0.144 0.576,0.288 0.936,0.432 l 8.352,-1.944 c -0.36,-0.144 -0.72,-0.288 -1.08,-0.36 l -8.208,1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path18057"
-                   d="m 199.549,18.353 c 0.36,0.072 0.72,0.216 1.008,0.36 l 8.352,-1.944 c -0.432,-0.144 -0.792,-0.216 -1.224,-0.288 l -8.136,1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffb800" />
-                <path
-                   id="path18059"
-                   d="m 200.125,18.497 c -0.288,-0.072 -0.576,-0.216 -0.792,-0.288 0.072,-0.072 0.144,-0.144 0.288,-0.216 l 7.344,-1.656 c 0.432,0.072 0.936,0.144 1.368,0.288 l -8.208,1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffbf00" />
-                <path
-                   id="path18061"
-                   d="m 199.549,18.353 c -0.072,-0.072 -0.144,-0.072 -0.216,-0.144 0.288,-0.216 0.576,-0.432 0.936,-0.648 l 5.832,-1.368 c 0.576,0.072 1.08,0.144 1.584,0.288 l -8.136,1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffc700" />
-                <path
-                   id="path18063"
-                   d="m 201.277,17.057 c -0.576,0.216 -1.152,0.576 -1.656,0.936 l 7.344,-1.656 c -0.648,-0.144 -1.368,-0.216 -2.016,-0.144 l -3.672,0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd100" />
-                <path
-                   id="path18065"
-                   d="m 226.404,40.169 -1.079,0.216 -1.368,0.288 -1.368,0.432 -1.512,0.432 -1.44,0.504 -1.368,0.36 -1.224,0.36 -1.008,0.288 -0.72,-1.8 -0.792,-1.872 -0.792,-1.872 -0.792,-1.944 -0.792,-1.944 -0.864,-1.872 -0.936,-1.872 -0.936,-1.872 -1.008,-1.728 -1.08,-1.584 -1.152,-1.512 -1.224,-1.368 -1.224,-1.224 -1.368,-1.008 -1.512,-0.792 -1.512,-0.576 1.296,-0.864 1.44,-0.648 1.512,-0.432 1.656,-0.144 1.728,0.144 1.8,0.432 1.8,0.72 1.872,1.08 1.872,1.368 1.872,1.728 1.872,2.16 1.8,2.448 1.729,2.88 1.728,3.24 1.584,3.744 1.51,4.104 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g18067">
-                <path
-                   id="path18069"
-                   d="m 214.957,41.753 c 0.288,0.576 0.504,1.08 0.792,1.584 -2.88,0.432 -3.96,1.008 -7.128,1.512 -0.288,-0.504 -0.504,-1.008 -0.72,-1.512 l 7.056,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18071"
-                   d="m 214.957,41.753 c -0.072,-0.216 -0.145,-0.36 -0.216,-0.576 l -7.128,1.656 c 0.072,0.144 0.216,0.36 0.288,0.504 l 7.056,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18073"
-                   d="m 214.885,41.465 c -0.144,-0.216 -0.216,-0.432 -0.288,-0.648 l -7.128,1.656 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path18075"
-                   d="m 214.741,41.177 c -0.072,-0.216 -0.145,-0.432 -0.288,-0.648 l -7.128,1.656 c 0.144,0.216 0.216,0.432 0.288,0.648 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path18077"
-                   d="m 214.597,40.817 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -7.128,1.584 c 0.144,0.216 0.216,0.432 0.288,0.648 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path18079"
-                   d="m 214.453,40.529 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -7.2,1.656 c 0.144,0.144 0.216,0.36 0.288,0.576 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path18081"
-                   d="m 214.309,40.241 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.128,1.656 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.128,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path18083"
-                   d="m 214.237,39.953 c -0.072,-0.216 -0.144,-0.432 -0.288,-0.648 l -7.2,1.656 c 0.144,0.216 0.216,0.432 0.288,0.648 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path18085"
-                   d="m 214.093,39.665 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.2,1.656 c 0.072,0.216 0.144,0.432 0.288,0.648 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path18087"
-                   d="m 213.949,39.305 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.2,1.728 c 0.072,0.144 0.144,0.36 0.216,0.576 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path18089"
-                   d="m 213.877,39.017 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.576 l -7.272,1.656 c 0.072,0.216 0.144,0.36 0.288,0.576 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path18091"
-                   d="m 213.733,38.657 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.272,1.656 c 0.072,0.144 0.144,0.36 0.288,0.576 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path18093"
-                   d="m 213.589,38.441 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.272,1.656 c 0.072,0.216 0.144,0.432 0.288,0.648 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path18095"
-                   d="m 213.517,38.153 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.344,1.656 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path18097"
-                   d="m 213.373,37.793 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.344,1.728 c 0.072,0.144 0.144,0.36 0.288,0.576 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path18099"
-                   d="m 213.301,37.505 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.648 l -7.344,1.728 c 0.072,0.216 0.216,0.432 0.288,0.576 l 7.344,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path18101"
-                   d="m 213.157,37.145 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -7.416,1.728 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path18103"
-                   d="m 213.013,36.857 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.416,1.656 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path18105"
-                   d="m 212.941,36.569 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.576 l -7.416,1.656 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path18107"
-                   d="m 212.797,36.281 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.488,1.728 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.416,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path18109"
-                   d="m 212.653,35.993 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.488,1.728 c 0.072,0.216 0.216,0.432 0.288,0.576 l 7.416,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path18111"
-                   d="m 212.581,35.633 c -0.144,-0.216 -0.216,-0.432 -0.288,-0.648 l -7.488,1.8 c 0.072,0.144 0.144,0.36 0.288,0.576 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path18113"
-                   d="m 212.437,35.345 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.56,1.728 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path18115"
-                   d="m 212.293,34.985 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -7.56,1.8 c 0.072,0.144 0.144,0.36 0.288,0.576 l 7.488,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path18117"
-                   d="m 212.221,34.697 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.632,1.728 c 0.144,0.216 0.216,0.432 0.36,0.576 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path18119"
-                   d="m 212.077,34.409 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -7.704,1.728 c 0.144,0.216 0.216,0.432 0.36,0.648 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path18121"
-                   d="m 211.933,34.121 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.704,1.8 c 0.144,0.216 0.216,0.36 0.288,0.576 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path18123"
-                   d="m 211.861,33.833 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.648 l -7.704,1.8 c 0.144,0.144 0.216,0.36 0.288,0.576 l 7.704,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path18125"
-                   d="m 211.717,33.473 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.776,1.8 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path18127"
-                   d="m 211.573,33.185 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.776,1.8 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path18129"
-                   d="m 211.501,32.897 c -0.144,-0.216 -0.216,-0.432 -0.288,-0.576 l -7.776,1.728 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path18131"
-                   d="m 211.357,32.537 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.576 l -7.848,1.8 c 0.144,0.216 0.216,0.432 0.36,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path18133"
-                   d="m 211.213,32.321 c -0.072,-0.216 -0.144,-0.432 -0.288,-0.648 l -7.848,1.8 c 0.072,0.216 0.216,0.432 0.36,0.576 l 7.776,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path18135"
-                   d="m 211.069,31.961 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.92,1.8 c 0.072,0.216 0.216,0.432 0.288,0.576 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path18137"
-                   d="m 210.925,31.673 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.648 l -7.992,1.872 c 0.144,0.144 0.216,0.36 0.36,0.576 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path18139"
-                   d="m 210.853,31.385 c -0.144,-0.216 -0.216,-0.432 -0.288,-0.648 l -7.992,1.872 c 0.072,0.216 0.216,0.36 0.36,0.576 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path18141"
-                   d="m 210.709,31.025 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -8.064,1.872 c 0.144,0.144 0.216,0.36 0.36,0.576 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path18143"
-                   d="m 210.565,30.737 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -8.064,1.872 c 0.144,0.144 0.216,0.36 0.36,0.576 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path18145"
-                   d="m 210.421,30.449 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -8.064,1.872 c 0.072,0.216 0.216,0.36 0.288,0.576 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path18147"
-                   d="m 210.277,30.161 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.648 l -8.136,1.872 c 0.072,0.216 0.216,0.432 0.36,0.648 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path18149"
-                   d="m 210.133,29.873 c -0.072,-0.216 -0.144,-0.432 -0.288,-0.648 l -8.208,1.944 c 0.144,0.144 0.288,0.36 0.432,0.576 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path18151"
-                   d="m 209.989,29.513 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -8.208,1.944 c 0.072,0.144 0.216,0.36 0.36,0.504 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path18153"
-                   d="m 209.845,29.225 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.576 l -8.28,1.872 c 0.144,0.216 0.288,0.432 0.36,0.648 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path18155"
-                   d="m 209.701,28.937 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.648 l -8.352,1.944 c 0.144,0.216 0.288,0.432 0.432,0.648 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path18157"
-                   d="m 209.557,28.649 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.648 l -8.424,1.944 c 0.144,0.216 0.288,0.432 0.432,0.576 l 8.28,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path18159"
-                   d="m 209.413,28.289 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -8.424,1.944 c 0.072,0.144 0.216,0.36 0.36,0.504 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path18161"
-                   d="m 209.269,28.001 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.576 l -8.496,2.016 c 0.144,0.144 0.216,0.36 0.36,0.504 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path18163"
-                   d="m 209.125,27.785 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.648 l -8.568,2.016 c 0.144,0.144 0.288,0.36 0.432,0.576 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path18165"
-                   d="m 208.981,27.425 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -8.568,2.016 c 0.144,0.144 0.288,0.36 0.432,0.576 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path18167"
-                   d="m 208.837,27.137 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.576 l -8.712,1.944 c 0.144,0.216 0.36,0.432 0.504,0.648 l 8.568,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path18169"
-                   d="m 208.621,26.849 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -8.784,2.016 c 0.216,0.144 0.36,0.36 0.504,0.576 l 8.568,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path18171"
-                   d="m 208.477,26.561 c -0.144,-0.216 -0.216,-0.432 -0.36,-0.576 l -8.784,2.016 c 0.144,0.144 0.288,0.36 0.432,0.504 l 8.712,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path18173"
-                   d="m 208.333,26.273 c -0.144,-0.216 -0.288,-0.432 -0.36,-0.576 l -8.856,2.016 c 0.144,0.216 0.288,0.36 0.432,0.576 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path18175"
-                   d="m 208.117,25.985 c -0.144,-0.216 -0.216,-0.432 -0.36,-0.648 l -8.928,2.088 c 0.216,0.216 0.36,0.36 0.504,0.576 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path18177"
-                   d="m 207.973,25.697 c -0.144,-0.216 -0.288,-0.432 -0.36,-0.648 l -9,2.088 c 0.144,0.216 0.288,0.36 0.504,0.576 l 8.856,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path18179"
-                   d="m 207.757,25.337 c -0.072,-0.144 -0.216,-0.36 -0.36,-0.504 l -9,2.088 c 0.144,0.144 0.288,0.36 0.432,0.504 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path18181"
-                   d="m 207.613,25.049 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.576 l -9.072,2.16 c 0.144,0.144 0.36,0.36 0.504,0.504 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path18183"
-                   d="m 207.397,24.833 c -0.144,-0.216 -0.216,-0.432 -0.36,-0.576 l -9.216,2.088 c 0.216,0.144 0.36,0.36 0.576,0.576 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path18185"
-                   d="m 207.181,24.473 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.576 l -9.288,2.16 c 0.216,0.216 0.36,0.36 0.576,0.576 l 9.072,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path18187"
-                   d="m 207.037,24.257 c -0.144,-0.216 -0.288,-0.432 -0.432,-0.648 l -9.36,2.16 c 0.216,0.216 0.36,0.36 0.576,0.576 l 9.216,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path18189"
-                   d="m 206.821,23.897 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.576 l -9.432,2.232 c 0.216,0.144 0.432,0.36 0.576,0.504 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path18191"
-                   d="m 206.605,23.609 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -9.504,2.16 c 0.216,0.216 0.36,0.36 0.576,0.504 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path18193"
-                   d="m 206.389,23.321 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -9.576,2.16 c 0.216,0.216 0.36,0.36 0.576,0.576 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path18195"
-                   d="m 206.173,23.105 c -0.144,-0.216 -0.36,-0.432 -0.504,-0.576 l -9.648,2.232 c 0.216,0.144 0.432,0.36 0.648,0.504 l 9.504,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path18197"
-                   d="m 205.957,22.817 c -0.216,-0.216 -0.36,-0.36 -0.504,-0.576 l -9.72,2.232 c 0.216,0.144 0.432,0.36 0.648,0.504 l 9.576,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path18199"
-                   d="m 205.669,22.529 c -0.144,-0.216 -0.36,-0.432 -0.504,-0.576 l -9.792,2.304 c 0.216,0.144 0.432,0.288 0.648,0.504 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path18201"
-                   d="m 205.453,22.241 c -0.216,-0.216 -0.36,-0.36 -0.576,-0.576 l -9.792,2.304 c 0.216,0.144 0.432,0.36 0.648,0.504 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path18203"
-                   d="m 205.165,21.953 c -0.144,-0.216 -0.36,-0.36 -0.504,-0.504 l -10.008,2.304 c 0.288,0.144 0.504,0.288 0.72,0.504 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path18205"
-                   d="m 204.877,21.665 c -0.144,-0.144 -0.36,-0.36 -0.576,-0.504 l -10.008,2.304 c 0.288,0.216 0.504,0.36 0.792,0.504 l 9.792,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path18207"
-                   d="m 204.661,21.449 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.576 l -10.08,2.376 c 0.216,0.144 0.504,0.288 0.72,0.504 l 10.008,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path18209"
-                   d="m 204.301,21.161 c -0.144,-0.216 -0.36,-0.36 -0.576,-0.576 l -10.224,2.376 c 0.288,0.216 0.576,0.36 0.792,0.504 l 10.008,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path18211"
-                   d="m 204.013,20.873 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -10.224,2.376 c 0.288,0.144 0.504,0.288 0.792,0.504 l 10.08,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path18213"
-                   d="m 203.653,20.585 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -10.296,2.376 c 0.288,0.144 0.576,0.288 0.792,0.432 l 10.152,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path18215"
-                   d="m 203.365,20.369 c -0.216,-0.144 -0.504,-0.36 -0.72,-0.504 l -10.368,2.448 c 0.288,0.144 0.576,0.288 0.864,0.432 l 10.224,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path18217"
-                   d="m 203.005,20.153 c -0.288,-0.216 -0.504,-0.36 -0.792,-0.504 l -10.44,2.376 c 0.288,0.144 0.648,0.288 0.936,0.504 l 10.296,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path18219"
-                   d="m 202.645,19.865 c -0.36,-0.144 -0.648,-0.288 -0.936,-0.432 l -10.368,2.376 c 0.288,0.144 0.648,0.288 0.936,0.504 l 10.368,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path18221"
-                   d="m 202.213,19.649 c -0.36,-0.144 -0.648,-0.288 -0.936,-0.432 l -10.368,2.376 c 0.288,0.144 0.576,0.288 0.864,0.432 l 10.44,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path18223"
-                   d="m 201.709,19.433 c -0.36,-0.216 -0.72,-0.288 -1.008,-0.432 l -10.368,2.376 c 0.36,0.144 0.648,0.288 1.008,0.432 l 10.368,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path18225"
-                   d="m 190.909,20.945 c -0.216,0.144 -0.432,0.216 -0.648,0.36 0.216,0.144 0.432,0.216 0.648,0.288 l 10.368,-2.376 c -0.432,-0.144 -0.864,-0.288 -1.296,-0.432 l -9.072,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path18227"
-                   d="m 191.989,20.297 c -0.576,0.288 -1.152,0.648 -1.728,1.008 0,0.072 0,0.072 0.072,0.072 l 10.368,-2.376 c -0.504,-0.144 -1.008,-0.288 -1.584,-0.36 l -7.128,1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path18229"
-                   d="m 193.285,19.721 c -0.792,0.288 -1.584,0.72 -2.376,1.224 l 9.072,-2.16 c -0.648,-0.144 -1.296,-0.216 -2.016,-0.216 l -4.68,1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path18231"
-                   d="m 190.261,21.305 2.952,-1.584 2.664,-0.936 2.448,-0.216 2.232,0.36 1.944,0.864 1.872,1.296 1.584,1.656 1.512,2.016 1.296,2.232 1.224,2.376 1.08,2.52 1.008,2.52 1.008,2.448 0.936,2.376 0.864,2.16 0.864,1.944 -1.008,0.144 -0.864,0.216 -0.792,0.144 -0.792,0.216 -0.792,0.216 -0.864,0.216 -0.936,0.144 -1.08,0.216 -0.936,-1.944 -0.864,-1.944 -0.864,-1.872 -0.864,-1.8 -0.864,-1.8 -0.936,-1.656 -0.936,-1.656 -0.936,-1.512 -1.08,-1.512 -1.152,-1.368 -1.152,-1.296 -1.296,-1.224 -1.44,-1.152 -1.512,-1.008 -1.728,-0.936 -1.8,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g18233">
-                <path
-                   id="path18235"
-                   d="m 207.757,43.625 c 0.216,0.504 0.432,1.008 0.648,1.44 -3.024,0.576 -4.248,1.08 -7.56,1.584 -0.216,-0.432 -0.432,-0.864 -0.648,-1.296 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18237"
-                   d="m 207.757,43.625 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.488,1.8 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18239"
-                   d="m 207.613,43.337 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -7.56,1.8 c 0.072,0.216 0.144,0.36 0.288,0.576 l 7.488,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path18241"
-                   d="m 207.469,43.049 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.56,1.728 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.488,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path18243"
-                   d="m 207.397,42.761 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.576 l -7.56,1.728 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path18245"
-                   d="m 207.253,42.545 c -0.072,-0.216 -0.144,-0.432 -0.288,-0.648 l -7.56,1.8 c 0.144,0.144 0.216,0.36 0.288,0.576 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path18247"
-                   d="m 207.109,42.185 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.632,1.8 c 0.144,0.144 0.216,0.36 0.288,0.504 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path18249"
-                   d="m 206.965,41.897 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.56,1.8 c 0.072,0.216 0.144,0.36 0.216,0.576 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path18251"
-                   d="m 206.893,41.609 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.576 l -7.56,1.8 c 0.072,0.144 0.144,0.36 0.216,0.576 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path18253"
-                   d="m 206.749,41.321 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.576 l -7.56,1.8 c 0.072,0.144 0.144,0.36 0.288,0.576 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path18255"
-                   d="m 206.605,41.033 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.576 l -7.56,1.8 c 0.072,0.144 0.144,0.36 0.288,0.576 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path18257"
-                   d="m 206.461,40.745 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.632,1.8 c 0.072,0.144 0.144,0.36 0.288,0.576 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path18259"
-                   d="m 206.317,40.457 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.632,1.8 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path18261"
-                   d="m 206.245,40.169 c -0.144,-0.216 -0.216,-0.432 -0.288,-0.576 l -7.632,1.728 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path18263"
-                   d="m 206.101,39.881 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.632,1.8 c 0.072,0.144 0.216,0.36 0.288,0.576 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path18265"
-                   d="m 205.957,39.593 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.576 l -7.632,1.8 c 0.072,0.144 0.216,0.36 0.288,0.504 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path18267"
-                   d="m 205.813,39.305 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -7.632,1.8 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path18269"
-                   d="m 205.669,39.017 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.704,1.8 c 0.072,0.144 0.216,0.36 0.288,0.576 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path18271"
-                   d="m 205.525,38.729 c -0.072,-0.216 -0.144,-0.432 -0.288,-0.576 l -7.632,1.8 c 0.072,0.144 0.216,0.36 0.288,0.576 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path18273"
-                   d="m 205.453,38.441 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.632,1.8 c 0.072,0.144 0.216,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path18275"
-                   d="m 205.237,38.153 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.704,1.8 c 0.072,0.144 0.216,0.36 0.288,0.576 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path18277"
-                   d="m 205.093,37.865 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.704,1.8 c 0.072,0.144 0.216,0.36 0.288,0.576 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path18279"
-                   d="m 205.021,37.577 c -0.144,-0.216 -0.216,-0.432 -0.36,-0.648 l -7.632,1.872 c 0.072,0.144 0.216,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path18281"
-                   d="m 204.877,37.289 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.704,1.8 c 0.072,0.144 0.216,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path18283"
-                   d="m 204.661,36.929 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.704,1.8 c 0.072,0.144 0.144,0.36 0.288,0.576 l 7.632,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path18285"
-                   d="m 204.589,36.713 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.704,1.8 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path18287"
-                   d="m 204.445,36.425 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.704,1.8 c 0.072,0.216 0.144,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path18289"
-                   d="m 204.301,36.137 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.704,1.8 c 0.144,0.216 0.216,0.36 0.36,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path18291"
-                   d="m 204.157,35.849 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.704,1.8 c 0.144,0.216 0.216,0.36 0.36,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path18293"
-                   d="m 203.941,35.561 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -7.704,1.8 c 0.144,0.216 0.216,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path18295"
-                   d="m 203.797,35.273 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -7.704,1.8 c 0.144,0.216 0.216,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path18297"
-                   d="m 203.653,34.985 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.704,1.8 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path18299"
-                   d="m 203.509,34.697 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.576 l -7.704,1.8 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path18301"
-                   d="m 203.365,34.409 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.704,1.8 c 0.072,0.216 0.144,0.36 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path18303"
-                   d="m 203.221,34.121 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.704,1.8 c 0.144,0.216 0.216,0.36 0.36,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path18305"
-                   d="m 203.077,33.833 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.704,1.728 c 0.144,0.216 0.216,0.432 0.36,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path18307"
-                   d="m 202.861,33.545 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.576 l -7.704,1.8 c 0.072,0.216 0.216,0.432 0.288,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path18309"
-                   d="m 202.717,33.329 c -0.072,-0.216 -0.216,-0.432 -0.36,-0.648 l -7.704,1.872 c 0.144,0.144 0.216,0.36 0.36,0.504 l 7.704,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path18311"
-                   d="m 202.573,32.969 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.704,1.8 c 0.144,0.144 0.216,0.36 0.36,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path18313"
-                   d="m 202.357,32.681 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.704,1.8 c 0.072,0.144 0.216,0.36 0.288,0.576 l 7.704,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path18315"
-                   d="m 202.213,32.465 c -0.072,-0.216 -0.216,-0.432 -0.36,-0.648 l -7.704,1.872 c 0.144,0.144 0.216,0.36 0.36,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path18317"
-                   d="m 202.069,32.177 c -0.144,-0.216 -0.216,-0.432 -0.36,-0.576 l -7.704,1.8 c 0.072,0.144 0.216,0.36 0.36,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path18319"
-                   d="m 201.853,31.817 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.504 l -7.776,1.8 c 0.144,0.216 0.288,0.36 0.36,0.576 l 7.704,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path18321"
-                   d="m 201.709,31.601 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.704,1.8 c 0.072,0.216 0.216,0.36 0.36,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path18323"
-                   d="m 201.565,31.313 c -0.144,-0.144 -0.288,-0.36 -0.36,-0.504 l -7.776,1.728 c 0.144,0.216 0.288,0.432 0.36,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path18325"
-                   d="m 201.349,31.025 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.576 l -7.704,1.8 c 0.072,0.216 0.216,0.36 0.36,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path18327"
-                   d="m 201.205,30.809 c -0.144,-0.216 -0.288,-0.432 -0.432,-0.576 l -7.704,1.8 c 0.144,0.144 0.288,0.36 0.36,0.504 l 7.776,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path18329"
-                   d="m 200.989,30.449 c -0.144,-0.144 -0.288,-0.36 -0.36,-0.504 l -7.776,1.8 c 0.144,0.144 0.288,0.36 0.432,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path18331"
-                   d="m 200.773,30.233 c -0.072,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.704,1.8 c 0.144,0.144 0.216,0.36 0.36,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path18333"
-                   d="m 200.629,29.945 c -0.144,-0.216 -0.288,-0.432 -0.432,-0.576 l -7.704,1.8 c 0.144,0.144 0.288,0.36 0.36,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path18335"
-                   d="m 200.413,29.657 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.576 l -7.704,1.8 c 0.144,0.216 0.288,0.36 0.432,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path18337"
-                   d="m 200.197,29.369 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.504 l -7.704,1.8 c 0.144,0.144 0.216,0.288 0.36,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path18339"
-                   d="m 199.981,29.081 c -0.072,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.704,1.8 c 0.144,0.144 0.288,0.36 0.36,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path18341"
-                   d="m 199.837,28.865 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.576 l -7.704,1.8 c 0.144,0.216 0.288,0.36 0.432,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path18343"
-                   d="m 199.621,28.577 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.576 l -7.704,1.8 c 0.144,0.216 0.288,0.36 0.432,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path18345"
-                   d="m 199.405,28.289 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -7.704,1.8 c 0.144,0.144 0.288,0.36 0.432,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path18347"
-                   d="m 199.189,28.001 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -7.776,1.8 c 0.216,0.144 0.36,0.36 0.504,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path18349"
-                   d="m 198.973,27.785 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.576 l -7.776,1.8 c 0.144,0.216 0.36,0.36 0.504,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path18351"
-                   d="m 198.757,27.497 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.776,1.8 c 0.144,0.144 0.288,0.288 0.432,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path18353"
-                   d="m 198.541,27.209 c -0.144,-0.144 -0.36,-0.36 -0.504,-0.504 l -7.704,1.8 c 0.144,0.144 0.288,0.36 0.432,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path18355"
-                   d="m 198.325,26.993 c -0.216,-0.216 -0.36,-0.36 -0.504,-0.576 l -7.776,1.8 c 0.144,0.144 0.36,0.36 0.504,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path18357"
-                   d="m 198.037,26.705 c -0.144,-0.216 -0.36,-0.36 -0.504,-0.576 l -7.776,1.8 c 0.216,0.216 0.36,0.36 0.576,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path18359"
-                   d="m 197.821,26.417 c -0.216,-0.144 -0.36,-0.36 -0.504,-0.504 l -7.776,1.8 c 0.144,0.144 0.36,0.288 0.504,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path18361"
-                   d="m 197.533,26.129 c -0.144,-0.144 -0.36,-0.36 -0.504,-0.504 l -7.776,1.8 c 0.144,0.216 0.36,0.36 0.504,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path18363"
-                   d="m 197.317,25.913 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -7.776,1.8 c 0.216,0.144 0.36,0.36 0.576,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path18365"
-                   d="m 197.029,25.625 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -7.776,1.8 c 0.144,0.144 0.36,0.36 0.576,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path18367"
-                   d="m 196.741,25.409 c -0.144,-0.216 -0.36,-0.36 -0.576,-0.504 l -7.776,1.8 c 0.144,0.144 0.36,0.288 0.576,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path18369"
-                   d="m 196.453,25.121 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.504 l -7.848,1.872 c 0.216,0.144 0.432,0.288 0.648,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path18371"
-                   d="m 196.165,24.905 c -0.144,-0.216 -0.36,-0.36 -0.576,-0.504 l -7.848,1.8 c 0.216,0.144 0.432,0.288 0.648,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path18373"
-                   d="m 195.877,24.617 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -7.92,1.8 c 0.216,0.216 0.504,0.36 0.72,0.576 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path18375"
-                   d="m 195.589,24.401 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.504 l -7.992,1.8 c 0.288,0.144 0.504,0.36 0.72,0.504 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path18377"
-                   d="m 195.229,24.113 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -7.992,1.8 c 0.216,0.144 0.504,0.288 0.72,0.432 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path18379"
-                   d="m 194.941,23.897 c -0.216,-0.216 -0.504,-0.36 -0.72,-0.504 l -8.064,1.872 c 0.288,0.144 0.504,0.288 0.792,0.432 l 7.992,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path18381"
-                   d="m 194.581,23.681 c -0.216,-0.216 -0.504,-0.36 -0.792,-0.504 l -8.136,1.872 c 0.288,0.144 0.648,0.288 0.936,0.432 l 7.992,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path18383"
-                   d="m 194.221,23.393 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -8.208,1.872 c 0.288,0.144 0.648,0.288 0.936,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path18385"
-                   d="m 193.789,23.177 c -0.216,-0.144 -0.504,-0.288 -0.792,-0.432 l -8.28,1.872 c 0.288,0.144 0.648,0.288 0.936,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path18387"
-                   d="m 193.429,22.961 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.432 l -8.424,1.944 c 0.36,0.072 0.72,0.216 1.08,0.36 l 8.208,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path18389"
-                   d="m 192.997,22.745 c -0.288,-0.144 -0.648,-0.288 -0.936,-0.432 l -8.568,2.016 c 0.432,0.072 0.792,0.216 1.224,0.288 l 8.28,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path18391"
-                   d="m 192.565,22.529 c -0.36,-0.144 -0.72,-0.288 -1.08,-0.432 l -8.784,2.016 c 0.504,0.072 1.008,0.216 1.44,0.36 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path18393"
-                   d="m 192.061,22.313 c -0.36,-0.144 -0.792,-0.288 -1.152,-0.36 l -9,2.016 c 0.576,0.072 1.08,0.216 1.584,0.36 l 8.568,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path18395"
-                   d="m 181.549,23.753 c -0.072,0.072 -0.144,0.144 -0.216,0.144 0.432,0.072 0.936,0.144 1.368,0.216 l 8.784,-2.016 c -0.432,-0.144 -0.864,-0.216 -1.296,-0.288 l -8.64,1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path18397"
-                   d="m 182.413,23.249 c -0.36,0.216 -0.72,0.432 -1.08,0.648 0.144,0.072 0.36,0.072 0.576,0.072 l 9,-2.016 c -0.504,-0.144 -1.08,-0.216 -1.584,-0.288 l -6.912,1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path18399"
-                   d="m 183.853,22.529 c -0.72,0.36 -1.512,0.72 -2.304,1.224 l 8.64,-1.944 c -0.72,-0.144 -1.44,-0.216 -2.232,-0.216 l -4.104,0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path18401"
-                   d="m 181.333,23.897 2.664,-1.44 2.52,-0.72 2.376,-0.144 2.304,0.36 2.088,0.864 2.016,1.296 1.872,1.584 1.728,1.872 1.584,2.16 1.512,2.232 1.368,2.304 1.224,2.376 1.152,2.376 1.008,2.16 0.864,2.088 0.792,1.8 -1.08,0.216 -0.936,0.216 -0.864,0.216 -0.792,0.144 -0.864,0.216 -0.864,0.216 -1.008,0.144 -1.152,0.216 -1.296,-2.88 -1.296,-2.664 -1.224,-2.448 -1.224,-2.232 -1.152,-2.016 -1.08,-1.8 -1.152,-1.584 -1.08,-1.512 -1.152,-1.224 -1.152,-1.08 -1.152,-0.936 -1.224,-0.792 -1.224,-0.576 -1.296,-0.504 -1.368,-0.288 -1.44,-0.216 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g18403">
-                <path
-                   id="path18405"
-                   d="m 200.197,45.281 c 0.216,0.504 0.432,1.008 0.648,1.44 -2.376,0.576 -3.888,1.008 -6.552,1.44 -0.144,-0.432 -0.288,-0.936 -0.504,-1.368 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18407"
-                   d="m 200.197,45.281 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -6.264,1.512 c 0.072,0.216 0.144,0.36 0.144,0.576 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18409"
-                   d="m 200.053,44.993 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -6.336,1.512 c 0.072,0.216 0.144,0.36 0.216,0.576 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path18411"
-                   d="m 199.909,44.705 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -6.336,1.44 c 0.144,0.216 0.216,0.36 0.288,0.576 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path18413"
-                   d="m 199.837,44.417 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -6.264,1.44 c 0.072,0.216 0.144,0.432 0.216,0.576 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path18415"
-                   d="m 199.693,44.201 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -6.336,1.512 c 0.072,0.144 0.144,0.36 0.216,0.504 l 6.336,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path18417"
-                   d="m 199.549,43.913 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -6.336,1.512 c 0.144,0.144 0.216,0.36 0.288,0.504 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path18419"
-                   d="m 199.477,43.625 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -6.264,1.512 c 0.072,0.216 0.144,0.36 0.216,0.576 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path18421"
-                   d="m 199.333,43.337 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -6.336,1.512 c 0.072,0.216 0.144,0.36 0.216,0.576 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path18423"
-                   d="m 199.189,43.049 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -6.336,1.44 c 0.072,0.216 0.144,0.36 0.288,0.576 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path18425"
-                   d="m 199.117,42.761 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.336,1.512 c 0.072,0.144 0.216,0.36 0.288,0.504 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path18427"
-                   d="m 198.973,42.545 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -6.336,1.512 c 0.072,0.144 0.216,0.36 0.288,0.504 l 6.336,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path18429"
-                   d="m 198.829,42.257 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -6.408,1.512 c 0.144,0.216 0.216,0.36 0.288,0.576 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path18431"
-                   d="m 198.685,41.969 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -6.408,1.512 c 0.144,0.216 0.216,0.36 0.288,0.576 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path18433"
-                   d="m 198.613,41.681 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.408,1.44 c 0.144,0.216 0.216,0.36 0.288,0.576 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path18435"
-                   d="m 198.469,41.393 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.408,1.512 c 0.072,0.144 0.216,0.36 0.288,0.504 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path18437"
-                   d="m 198.325,41.177 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -6.408,1.512 c 0.072,0.216 0.216,0.36 0.288,0.504 l 6.408,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path18439"
-                   d="m 198.181,40.889 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -6.48,1.512 c 0.072,0.216 0.216,0.36 0.288,0.576 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path18441"
-                   d="m 198.037,40.601 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -6.48,1.584 c 0.072,0.144 0.216,0.36 0.288,0.504 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path18443"
-                   d="m 197.965,40.313 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.48,1.512 c 0.072,0.144 0.144,0.36 0.288,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path18445"
-                   d="m 197.821,40.025 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.552,1.512 c 0.144,0.216 0.216,0.36 0.36,0.576 l 6.48,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path18447"
-                   d="m 197.677,39.809 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -6.552,1.584 c 0.144,0.144 0.216,0.36 0.36,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path18449"
-                   d="m 197.533,39.521 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -6.552,1.584 c 0.072,0.144 0.216,0.36 0.288,0.504 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path18451"
-                   d="m 197.389,39.233 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -6.624,1.512 c 0.144,0.216 0.288,0.36 0.36,0.576 l 6.552,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path18453"
-                   d="m 197.245,38.945 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -6.624,1.584 c 0.144,0.144 0.216,0.288 0.36,0.504 l 6.552,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path18455"
-                   d="m 197.101,38.729 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -6.696,1.584 c 0.072,0.144 0.216,0.36 0.288,0.504 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path18457"
-                   d="m 196.957,38.441 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -6.768,1.584 c 0.144,0.216 0.216,0.36 0.36,0.576 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path18459"
-                   d="m 196.885,38.153 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -6.768,1.656 c 0.072,0.144 0.216,0.288 0.36,0.504 l 6.696,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path18461"
-                   d="m 196.741,37.865 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.84,1.584 c 0.144,0.144 0.288,0.36 0.36,0.504 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path18463"
-                   d="m 196.597,37.577 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.84,1.584 c 0.072,0.216 0.216,0.36 0.36,0.576 l 6.768,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path18465"
-                   d="m 196.453,37.361 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -6.84,1.656 c 0.144,0.144 0.288,0.288 0.36,0.504 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path18467"
-                   d="m 196.309,37.073 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -6.84,1.656 c 0.072,0.144 0.216,0.36 0.36,0.504 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path18469"
-                   d="m 196.093,36.785 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -6.912,1.584 c 0.144,0.216 0.288,0.36 0.36,0.576 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path18471"
-                   d="m 195.949,36.497 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.504 l -6.912,1.656 c 0.072,0.144 0.216,0.36 0.36,0.504 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path18473"
-                   d="m 195.805,36.281 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -6.984,1.656 c 0.144,0.216 0.216,0.36 0.36,0.504 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path18475"
-                   d="m 195.661,35.993 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.056,1.656 c 0.144,0.144 0.288,0.288 0.432,0.504 l 6.912,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path18477"
-                   d="m 195.517,35.705 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.128,1.656 c 0.144,0.144 0.288,0.36 0.432,0.504 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path18479"
-                   d="m 195.373,35.489 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.128,1.656 c 0.144,0.216 0.216,0.36 0.36,0.576 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path18481"
-                   d="m 195.229,35.201 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.504 l -7.128,1.656 c 0.144,0.144 0.288,0.36 0.36,0.504 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path18483"
-                   d="m 195.085,34.913 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.2,1.656 c 0.144,0.216 0.288,0.36 0.432,0.504 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path18485"
-                   d="m 194.869,34.697 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.272,1.728 c 0.144,0.144 0.288,0.36 0.432,0.504 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path18487"
-                   d="m 194.725,34.409 c -0.072,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.2,1.728 c 0.072,0.216 0.216,0.36 0.36,0.504 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path18489"
-                   d="m 194.581,34.121 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.272,1.728 c 0.144,0.144 0.216,0.288 0.36,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path18491"
-                   d="m 194.365,33.833 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.504 l -7.344,1.728 c 0.145,0.216 0.288,0.36 0.432,0.504 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path18493"
-                   d="m 194.221,33.617 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.344,1.8 c 0.144,0.144 0.288,0.288 0.432,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path18495"
-                   d="m 194.077,33.329 c -0.144,-0.144 -0.288,-0.36 -0.36,-0.504 l -7.416,1.728 c 0.144,0.144 0.288,0.36 0.432,0.504 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path18497"
-                   d="m 193.861,33.041 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.504 l -7.416,1.8 c 0.144,0.144 0.288,0.288 0.432,0.504 l 7.344,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path18499"
-                   d="m 193.717,32.825 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.504 l -7.488,1.728 c 0.144,0.144 0.288,0.36 0.432,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path18501"
-                   d="m 193.501,32.537 c -0.072,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.56,1.8 c 0.216,0.144 0.36,0.288 0.504,0.504 l 7.416,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path18503"
-                   d="m 193.357,32.321 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.576 l -7.632,1.8 c 0.144,0.144 0.36,0.36 0.504,0.504 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path18505"
-                   d="m 193.141,32.033 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.632,1.8 c 0.144,0.144 0.288,0.288 0.432,0.504 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path18507"
-                   d="m 192.997,31.745 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.632,1.8 c 0.144,0.216 0.288,0.36 0.432,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path18509"
-                   d="m 192.781,31.529 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.504 l -7.704,1.8 c 0.144,0.144 0.288,0.288 0.432,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path18511"
-                   d="m 192.565,31.241 c -0.072,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.776,1.8 c 0.216,0.216 0.36,0.36 0.504,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path18513"
-                   d="m 192.421,31.025 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.576 l -7.776,1.872 c 0.144,0.144 0.36,0.288 0.504,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path18515"
-                   d="m 192.205,30.737 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -7.776,1.8 c 0.144,0.216 0.288,0.36 0.432,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path18517"
-                   d="m 191.989,30.449 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.848,1.872 c 0.216,0.144 0.36,0.36 0.504,0.504 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path18519"
-                   d="m 191.773,30.233 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -7.848,1.872 c 0.144,0.144 0.288,0.288 0.504,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path18521"
-                   d="m 191.557,29.945 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.92,1.872 c 0.216,0.144 0.36,0.36 0.504,0.504 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path18523"
-                   d="m 191.341,29.729 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.92,1.872 c 0.144,0.144 0.288,0.288 0.504,0.504 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path18525"
-                   d="m 191.125,29.441 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.992,1.944 c 0.144,0.144 0.36,0.288 0.504,0.432 l 7.92,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path18527"
-                   d="m 190.909,29.225 c -0.144,-0.144 -0.288,-0.36 -0.504,-0.504 l -7.992,1.872 c 0.216,0.144 0.36,0.36 0.576,0.504 l 7.92,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path18529"
-                   d="m 190.693,28.937 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -7.992,1.872 c 0.144,0.144 0.36,0.288 0.504,0.504 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path18531"
-                   d="m 190.405,28.721 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -8.064,1.872 c 0.144,0.216 0.36,0.36 0.504,0.504 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path18533"
-                   d="m 190.189,28.505 c -0.144,-0.216 -0.36,-0.36 -0.504,-0.504 l -8.064,1.872 c 0.216,0.144 0.36,0.36 0.576,0.504 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path18535"
-                   d="m 189.973,28.217 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.504 l -8.136,1.944 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path18537"
-                   d="m 189.685,28.001 c -0.144,-0.216 -0.36,-0.36 -0.504,-0.504 l -8.136,1.944 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path18539"
-                   d="m 189.469,27.713 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -8.136,1.872 c 0.216,0.144 0.36,0.36 0.576,0.504 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path18541"
-                   d="m 189.181,27.497 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -8.136,1.944 c 0.144,0.144 0.36,0.288 0.576,0.504 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path18543"
-                   d="m 188.893,27.281 c -0.216,-0.216 -0.36,-0.36 -0.576,-0.504 l -8.208,1.944 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path18545"
-                   d="m 188.605,26.993 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -8.208,1.944 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path18547"
-                   d="m 188.317,26.777 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.136,1.944 c 0.144,0.144 0.36,0.288 0.576,0.432 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path18549"
-                   d="m 188.029,26.561 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.208,1.872 c 0.217,0.144 0.432,0.36 0.648,0.504 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path18551"
-                   d="m 187.669,26.345 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -8.208,1.944 c 0.216,0.144 0.432,0.288 0.72,0.504 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path18553"
-                   d="m 187.381,26.129 c -0.216,-0.216 -0.503,-0.36 -0.72,-0.504 l -8.208,1.944 c 0.216,0.144 0.504,0.288 0.72,0.432 l 8.208,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path18555"
-                   d="m 187.021,25.841 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.432 l -8.208,1.944 c 0.216,0.144 0.504,0.288 0.72,0.432 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path18557"
-                   d="m 186.661,25.625 c -0.216,-0.144 -0.504,-0.288 -0.792,-0.432 l -8.136,1.944 c 0.216,0.144 0.504,0.288 0.72,0.432 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path18559"
-                   d="m 186.301,25.409 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.36 l -8.136,1.872 c 0.288,0.144 0.504,0.288 0.792,0.432 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path18561"
-                   d="m 185.869,25.193 c -0.288,-0.144 -0.576,-0.216 -0.864,-0.36 l -8.064,1.872 c 0.216,0.144 0.504,0.288 0.792,0.432 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path18563"
-                   d="m 185.437,25.049 c -0.288,-0.144 -0.576,-0.288 -0.936,-0.432 l -8.064,1.944 c 0.288,0.072 0.576,0.216 0.864,0.36 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path18565"
-                   d="m 185.005,24.833 c -0.36,-0.144 -0.648,-0.288 -1.008,-0.36 l -7.992,1.872 c 0.288,0.144 0.576,0.216 0.936,0.36 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path18567"
-                   d="m 184.501,24.617 c -0.36,-0.144 -0.72,-0.216 -1.08,-0.288 l -7.92,1.8 c 0.36,0.144 0.648,0.288 0.936,0.432 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path18569"
-                   d="m 183.997,24.473 c -0.432,-0.144 -0.864,-0.216 -1.296,-0.288 l -7.704,1.8 c 0.288,0.072 0.648,0.216 1.008,0.36 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path18571"
-                   d="m 174.853,25.697 c -0.144,0.072 -0.216,0.144 -0.288,0.144 0.288,0.072 0.648,0.216 0.936,0.288 l 7.92,-1.8 c -0.504,-0.144 -1.008,-0.216 -1.512,-0.288 l -7.056,1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path18573"
-                   d="m 176.005,25.121 c -0.504,0.216 -1.008,0.504 -1.44,0.72 0.144,0.072 0.216,0.072 0.36,0.144 l 7.776,-1.8 c -0.648,-0.144 -1.296,-0.216 -1.944,-0.144 l -4.752,1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path18575"
-                   d="m 174.565,25.841 2.592,-1.224 2.448,-0.576 2.304,0 2.232,0.432 2.016,0.864 1.944,1.224 1.8,1.584 1.728,1.8 1.512,2.016 1.44,2.16 1.368,2.232 1.152,2.232 1.152,2.232 0.936,2.16 0.864,1.944 0.792,1.8 -0.864,0.216 -0.792,0.216 -0.792,0.144 -0.72,0.216 -0.792,0.144 -0.792,0.144 -0.864,0.216 -0.936,0.144 -0.432,-1.44 -0.648,-1.584 -0.792,-1.584 -0.936,-1.728 -1.008,-1.728 -1.224,-1.728 -1.224,-1.728 -1.368,-1.728 -1.44,-1.584 -1.512,-1.584 -1.512,-1.44 -1.512,-1.224 -1.584,-1.152 -1.512,-0.936 -1.512,-0.72 -1.512,-0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g18577">
-                <path
-                   id="path18579"
-                   d="m 193.717,46.721 c 0.36,0.792 0.504,1.368 0.576,1.584 -2.88,0.648 -4.968,1.152 -7.56,1.512 -0.216,-0.36 -0.432,-0.792 -0.72,-1.296 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18581"
-                   d="m 193.717,46.721 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.776,1.8 c 0.144,0.216 0.216,0.36 0.288,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18583"
-                   d="m 193.645,46.505 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -7.776,1.8 c 0.144,0.216 0.216,0.36 0.288,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path18585"
-                   d="m 193.501,46.217 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.776,1.8 c 0.072,0.216 0.144,0.432 0.216,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path18587"
-                   d="m 193.357,45.929 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -7.776,1.872 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path18589"
-                   d="m 193.285,45.641 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.848,1.8 c 0.144,0.216 0.216,0.432 0.36,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path18591"
-                   d="m 193.141,45.353 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.576 l -7.848,1.8 c 0.144,0.216 0.216,0.432 0.36,0.648 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path18593"
-                   d="m 192.997,45.065 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.848,1.8 c 0.144,0.216 0.216,0.432 0.288,0.576 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path18595"
-                   d="m 192.853,44.777 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.848,1.872 c 0.144,0.144 0.216,0.36 0.288,0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path18597"
-                   d="m 192.709,44.489 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.576 l -7.848,1.872 c 0.144,0.144 0.216,0.36 0.288,0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path18599"
-                   d="m 192.565,44.201 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.848,1.8 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path18601"
-                   d="m 192.421,43.913 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.576 l -7.848,1.8 c 0.072,0.216 0.216,0.432 0.288,0.648 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path18603"
-                   d="m 192.277,43.625 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.848,1.872 c 0.072,0.144 0.144,0.36 0.288,0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path18605"
-                   d="m 192.133,43.337 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.576 l -7.848,1.872 c 0.072,0.216 0.144,0.36 0.288,0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path18607"
-                   d="m 191.989,43.049 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.848,1.8 c 0.072,0.216 0.144,0.36 0.288,0.576 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path18609"
-                   d="m 191.845,42.761 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.576 l -7.848,1.872 c 0.144,0.144 0.216,0.36 0.36,0.576 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path18611"
-                   d="m 191.701,42.545 c -0.144,-0.216 -0.216,-0.432 -0.36,-0.648 l -7.848,1.872 c 0.144,0.216 0.216,0.36 0.36,0.576 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path18613"
-                   d="m 191.485,42.185 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.848,1.8 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path18615"
-                   d="m 191.341,41.897 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.848,1.8 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path18617"
-                   d="m 191.197,41.681 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.848,1.872 c 0.072,0.144 0.216,0.36 0.288,0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path18619"
-                   d="m 191.053,41.393 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.776,1.872 c 0.072,0.144 0.216,0.36 0.288,0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path18621"
-                   d="m 190.909,41.105 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.576 l -7.848,1.8 c 0.144,0.216 0.216,0.432 0.36,0.648 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path18623"
-                   d="m 190.693,40.817 c -0.072,-0.144 -0.216,-0.36 -0.36,-0.576 l -7.776,1.8 c 0.144,0.216 0.216,0.432 0.36,0.648 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path18625"
-                   d="m 190.549,40.529 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.776,1.872 c 0.072,0.144 0.216,0.36 0.288,0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path18627"
-                   d="m 190.333,40.241 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.776,1.8 c 0.072,0.216 0.216,0.36 0.288,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path18629"
-                   d="m 190.189,39.953 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.776,1.8 c 0.072,0.216 0.144,0.36 0.288,0.576 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path18631"
-                   d="m 190.045,39.737 c -0.144,-0.216 -0.288,-0.432 -0.36,-0.648 l -7.776,1.872 c 0.072,0.144 0.216,0.36 0.36,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path18633"
-                   d="m 189.901,39.449 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.576 l -7.704,1.8 c 0.072,0.216 0.216,0.432 0.36,0.576 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path18635"
-                   d="m 189.685,39.089 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.504 l -7.776,1.8 c 0.144,0.216 0.216,0.36 0.36,0.576 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path18637"
-                   d="m 189.469,38.873 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.776,1.872 c 0.144,0.144 0.216,0.36 0.36,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path18639"
-                   d="m 189.325,38.585 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.704,1.8 c 0.072,0.144 0.216,0.36 0.288,0.504 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path18641"
-                   d="m 189.181,38.297 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.576 l -7.704,1.8 c 0.144,0.216 0.216,0.432 0.36,0.648 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path18643"
-                   d="m 188.965,38.081 c -0.144,-0.216 -0.288,-0.432 -0.432,-0.576 l -7.631,1.8 c 0.071,0.144 0.215,0.36 0.359,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path18645"
-                   d="m 188.749,37.721 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.704,1.8 c 0.144,0.144 0.288,0.36 0.36,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path18647"
-                   d="m 188.533,37.505 c -0.072,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.632,1.8 c 0.144,0.216 0.216,0.36 0.361,0.576 l 7.631,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path18649"
-                   d="m 188.389,37.217 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.632,1.8 c 0.072,0.144 0.216,0.36 0.288,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path18651"
-                   d="m 188.173,36.929 c -0.072,-0.144 -0.216,-0.36 -0.36,-0.576 l -7.632,1.8 c 0.144,0.216 0.216,0.432 0.36,0.576 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path18653"
-                   d="m 188.029,36.713 c -0.144,-0.216 -0.288,-0.432 -0.432,-0.576 l -7.632,1.728 c 0.144,0.216 0.288,0.432 0.432,0.648 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path18655"
-                   d="m 187.813,36.353 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -7.56,1.8 c 0.144,0.144 0.216,0.36 0.36,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path18657"
-                   d="m 187.597,36.137 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.576 l -7.632,1.8 c 0.144,0.216 0.288,0.36 0.36,0.504 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path18659"
-                   d="m 187.381,35.849 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.56,1.728 c 0.144,0.216 0.216,0.36 0.36,0.576 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path18661"
-                   d="m 187.237,35.561 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.56,1.8 c 0.145,0.144 0.288,0.36 0.36,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path18663"
-                   d="m 187.021,35.345 c -0.143,-0.216 -0.288,-0.36 -0.432,-0.576 l -7.56,1.728 c 0.144,0.216 0.288,0.432 0.432,0.576 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path18665"
-                   d="m 186.805,35.057 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.576 l -7.488,1.8 c 0.144,0.144 0.288,0.36 0.36,0.576 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path18667"
-                   d="m 186.589,34.769 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.488,1.728 c 0.144,0.144 0.288,0.36 0.36,0.504 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path18669"
-                   d="m 186.373,34.481 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.488,1.728 c 0.144,0.216 0.288,0.36 0.432,0.576 l 7.488,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path18671"
-                   d="m 186.157,34.265 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.416,1.728 c 0.144,0.144 0.216,0.36 0.36,0.504 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path18673"
-                   d="m 185.941,33.977 c -0.144,-0.144 -0.36,-0.36 -0.504,-0.576 l -7.416,1.728 c 0.144,0.216 0.288,0.432 0.432,0.576 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path18675"
-                   d="m 185.725,33.761 c -0.144,-0.216 -0.36,-0.432 -0.504,-0.576 l -7.343,1.728 c 0.143,0.144 0.287,0.36 0.431,0.576 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path18677"
-                   d="m 185.437,33.401 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.344,1.728 c 0.144,0.216 0.288,0.36 0.36,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path18679"
-                   d="m 185.221,33.185 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.344,1.728 c 0.144,0.144 0.288,0.288 0.433,0.504 l 7.343,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path18681"
-                   d="m 185.005,32.897 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.344,1.728 c 0.144,0.216 0.288,0.36 0.432,0.504 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path18683"
-                   d="m 184.789,32.681 c -0.144,-0.216 -0.36,-0.36 -0.504,-0.576 l -7.272,1.728 c 0.144,0.144 0.288,0.36 0.432,0.576 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path18685"
-                   d="m 184.573,32.393 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -7.2,1.656 c 0.144,0.216 0.288,0.432 0.432,0.576 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path18687"
-                   d="m 184.285,32.105 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.504 l -7.2,1.728 c 0.144,0.144 0.288,0.288 0.432,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path18689"
-                   d="m 183.997,31.889 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.2,1.656 c 0.144,0.216 0.288,0.36 0.432,0.504 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path18691"
-                   d="m 183.781,31.601 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.504 l -7.2,1.728 c 0.216,0.144 0.36,0.288 0.504,0.504 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path18693"
-                   d="m 183.565,31.385 c -0.216,-0.216 -0.432,-0.36 -0.576,-0.576 l -7.128,1.656 c 0.144,0.216 0.288,0.432 0.504,0.576 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path18695"
-                   d="m 183.277,31.097 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -7.128,1.656 c 0.216,0.144 0.36,0.36 0.504,0.576 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path18697"
-                   d="m 182.989,30.809 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -7.056,1.656 c 0.144,0.216 0.288,0.36 0.504,0.504 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path18699"
-                   d="m 182.701,30.593 c -0.144,-0.144 -0.36,-0.36 -0.504,-0.504 l -7.056,1.656 c 0.144,0.144 0.288,0.36 0.432,0.504 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path18701"
-                   d="m 182.413,30.305 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -7.056,1.656 c 0.144,0.144 0.36,0.288 0.504,0.432 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path18703"
-                   d="m 182.197,30.089 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.504 l -7.056,1.656 c 0.216,0.144 0.36,0.36 0.576,0.504 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path18705"
-                   d="m 181.909,29.873 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.576 l -6.984,1.656 c 0.216,0.216 0.36,0.36 0.576,0.576 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path18707"
-                   d="m 181.621,29.585 c -0.216,-0.144 -0.432,-0.288 -0.719,-0.504 l -6.913,1.656 c 0.216,0.144 0.432,0.36 0.576,0.504 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path18709"
-                   d="m 181.261,29.297 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -6.912,1.584 c 0.216,0.216 0.36,0.36 0.576,0.504 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path18711"
-                   d="m 180.902,29.081 c -0.145,-0.144 -0.361,-0.288 -0.577,-0.432 l -6.911,1.584 c 0.215,0.144 0.431,0.288 0.575,0.504 l 6.913,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path18713"
-                   d="m 180.613,28.865 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -6.84,1.584 c 0.216,0.144 0.36,0.288 0.576,0.432 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path18715"
-                   d="m 180.325,28.649 c -0.288,-0.216 -0.504,-0.36 -0.792,-0.504 l -6.768,1.584 c 0.216,0.144 0.432,0.36 0.649,0.504 l 6.911,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path18717"
-                   d="m 179.965,28.433 c -0.216,-0.216 -0.504,-0.36 -0.72,-0.504 l -6.84,1.584 c 0.216,0.144 0.504,0.288 0.72,0.504 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path18719"
-                   d="m 179.533,28.145 c -0.216,-0.144 -0.432,-0.288 -0.72,-0.432 l -6.768,1.584 c 0.216,0.144 0.504,0.288 0.72,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path18721"
-                   d="m 179.245,27.929 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -6.768,1.584 c 0.288,0.144 0.504,0.288 0.72,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path18723"
-                   d="m 178.813,27.713 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.432 l -6.768,1.584 c 0.216,0.144 0.504,0.288 0.72,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path18725"
-                   d="m 178.453,27.497 c -0.288,-0.216 -0.575,-0.36 -0.936,-0.504 l -6.696,1.584 c 0.288,0.144 0.576,0.288 0.864,0.504 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path18727"
-                   d="m 178.093,27.281 c -0.36,-0.216 -0.648,-0.36 -1.008,-0.504 l -6.768,1.584 c 0.36,0.144 0.648,0.288 1.008,0.504 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path18729"
-                   d="m 177.517,26.993 c -0.288,-0.144 -0.576,-0.288 -0.936,-0.36 l -6.768,1.584 c 0.36,0.072 0.648,0.216 1.008,0.36 l 6.696,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path18731"
-                   d="m 177.085,26.777 c -0.288,-0.072 -0.648,-0.216 -1.008,-0.36 l -6.84,1.656 c 0.36,0.072 0.72,0.144 1.08,0.288 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path18733"
-                   d="m 176.581,26.633 c -0.36,-0.144 -0.72,-0.288 -1.08,-0.36 l -6.984,1.656 c 0.432,0.072 0.864,0.144 1.296,0.288 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path18735"
-                   d="m 176.077,26.417 c -0.432,-0.144 -0.864,-0.288 -1.368,-0.36 l -7.632,1.8 c 0.72,-0.072 1.44,0 2.16,0.216 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path18737"
-                   d="m 166.933,27.569 c -0.144,0.144 -0.36,0.288 -0.504,0.36 0.648,-0.072 1.368,-0.144 2.088,0 l 6.984,-1.656 c -0.504,-0.144 -1.008,-0.288 -1.512,-0.36 l -7.056,1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path18739"
-                   d="m 167.869,27.065 c -0.504,0.288 -1.008,0.576 -1.44,0.864 0.216,0 0.432,-0.072 0.648,-0.072 l 7.632,-1.8 c -0.504,-0.072 -1.08,-0.144 -1.656,-0.216 l -5.184,1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path18741"
-                   d="m 169.453,26.417 c -0.792,0.288 -1.656,0.648 -2.52,1.152 l 7.056,-1.656 c -0.864,-0.072 -1.728,-0.072 -2.664,0.072 l -1.872,0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path18743"
-                   d="m 166.429,27.929 2.664,-1.44 2.592,-0.648 2.592,0.072 2.448,0.72 2.376,1.152 2.304,1.656 2.16,1.944 2.016,2.16 1.872,2.304 1.656,2.376 1.512,2.304 1.224,2.232 1.008,1.944 0.792,1.656 0.432,1.224 0.216,0.72 -1.08,0.216 -0.936,0.216 -0.936,0.216 -0.936,0.216 -0.936,0.216 -0.864,0.144 -0.936,0.144 -0.936,0.144 -0.648,-1.224 -0.72,-1.512 -0.864,-1.656 -1.008,-1.728 -1.08,-1.944 -1.152,-1.944 -1.224,-1.872 -1.296,-1.944 -1.368,-1.8 -1.44,-1.656 -1.512,-1.512 -1.512,-1.224 -1.584,-1.008 -1.584,-0.648 -1.656,-0.288 -1.656,0.072 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g18745">
-                <path
-                   id="path18747"
-                   d="m 185.653,48.449 c 0.216,0.576 0.504,1.008 0.72,1.44 -2.376,0.432 -3.456,1.224 -5.256,1.512 -0.215,-0.576 -0.432,-1.152 -0.72,-1.728 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18749"
-                   d="m 185.653,48.449 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.184,1.224 c 0.072,0.216 0.144,0.36 0.216,0.576 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18751"
-                   d="m 185.509,48.161 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -5.112,1.152 c 0.072,0.216 0.144,0.36 0.216,0.576 l 5.184,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path18753"
-                   d="m 185.365,47.873 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -5.112,1.152 c 0.072,0.216 0.144,0.432 0.216,0.576 l 5.184,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path18755"
-                   d="m 185.221,47.657 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.576 l -5.112,1.224 c 0.072,0.144 0.216,0.36 0.288,0.504 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path18757"
-                   d="m 185.077,47.369 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -5.112,1.224 c 0.072,0.144 0.144,0.36 0.216,0.504 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path18759"
-                   d="m 184.933,47.081 c -0.072,-0.216 -0.144,-0.432 -0.288,-0.648 l -5.04,1.224 c 0.072,0.216 0.144,0.432 0.216,0.648 l 5.112,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path18761"
-                   d="m 184.861,46.793 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.112,1.152 c 0.072,0.216 0.144,0.432 0.288,0.648 l 5.112,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path18763"
-                   d="m 184.645,46.433 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -5.112,1.152 c 0.073,0.216 0.216,0.36 0.288,0.576 l 5.04,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path18765"
-                   d="m 184.573,46.217 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.112,1.152 c 0.144,0.216 0.217,0.432 0.288,0.576 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path18767"
-                   d="m 184.429,45.929 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.04,1.224 c 0.072,0.144 0.144,0.36 0.216,0.504 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path18769"
-                   d="m 184.285,45.641 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.576 l -5.04,1.224 c 0.072,0.144 0.144,0.36 0.216,0.504 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path18771"
-                   d="m 184.141,45.353 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -5.04,1.152 c 0.072,0.216 0.144,0.36 0.288,0.576 l 5.04,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path18773"
-                   d="m 183.997,45.065 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.576 l -5.04,1.152 c 0.072,0.216 0.144,0.432 0.288,0.648 l 5.04,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path18775"
-                   d="m 183.853,44.849 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.648 l -5.04,1.224 c 0.072,0.144 0.216,0.36 0.288,0.576 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path18777"
-                   d="m 183.709,44.489 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.04,1.224 c 0.072,0.144 0.144,0.36 0.288,0.504 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path18779"
-                   d="m 183.565,44.201 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -5.04,1.152 c 0.072,0.216 0.144,0.36 0.288,0.576 l 5.04,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path18781"
-                   d="m 183.421,43.913 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -5.04,1.152 c 0.072,0.216 0.144,0.36 0.288,0.576 l 5.04,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path18783"
-                   d="m 183.277,43.697 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.04,1.152 c 0.072,0.216 0.216,0.36 0.288,0.576 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path18785"
-                   d="m 183.133,43.409 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.648 l -5.112,1.224 c 0.145,0.216 0.216,0.36 0.36,0.576 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path18787"
-                   d="m 182.989,43.121 c -0.072,-0.216 -0.216,-0.432 -0.288,-0.576 l -5.112,1.152 c 0.144,0.216 0.216,0.432 0.36,0.576 l 5.04,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path18789"
-                   d="m 182.845,42.761 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -5.112,1.152 c 0.072,0.216 0.216,0.36 0.288,0.576 l 5.112,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path18791"
-                   d="m 182.701,42.545 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.112,1.224 c 0.072,0.144 0.216,0.36 0.288,0.504 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path18793"
-                   d="m 182.557,42.257 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.112,1.224 c 0.072,0.144 0.216,0.36 0.288,0.504 l 5.112,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path18795"
-                   d="m 182.413,41.969 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -5.184,1.152 c 0.144,0.216 0.216,0.36 0.36,0.576 l 5.112,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path18797"
-                   d="m 182.269,41.681 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -5.184,1.224 c 0.144,0.144 0.216,0.288 0.36,0.504 l 5.112,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path18799"
-                   d="m 182.125,41.465 c -0.144,-0.216 -0.216,-0.432 -0.36,-0.648 l -5.184,1.224 c 0.144,0.216 0.288,0.36 0.36,0.576 l 5.184,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path18801"
-                   d="m 181.981,41.177 c -0.144,-0.216 -0.216,-0.432 -0.36,-0.576 l -5.184,1.152 c 0.144,0.216 0.288,0.432 0.36,0.648 l 5.184,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path18803"
-                   d="m 181.765,40.817 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -5.184,1.224 c 0.072,0.144 0.216,0.36 0.288,0.504 l 5.184,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path18805"
-                   d="m 181.621,40.601 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.256,1.224 c 0.144,0.216 0.288,0.36 0.36,0.504 l 5.184,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path18807"
-                   d="m 181.477,40.313 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.256,1.224 c 0.072,0.216 0.216,0.36 0.36,0.576 l 5.184,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path18809"
-                   d="m 181.333,40.025 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -5.256,1.224 c 0.144,0.144 0.288,0.36 0.36,0.504 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path18811"
-                   d="m 181.189,39.737 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -5.256,1.224 c 0.072,0.216 0.216,0.36 0.36,0.504 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path18813"
-                   d="m 180.973,39.521 c -0.071,-0.216 -0.216,-0.432 -0.36,-0.648 l -5.256,1.296 c 0.144,0.144 0.216,0.36 0.36,0.576 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path18815"
-                   d="m 180.829,39.233 c -0.072,-0.216 -0.216,-0.432 -0.36,-0.576 l -5.328,1.224 c 0.144,0.216 0.288,0.36 0.432,0.576 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path18817"
-                   d="m 180.613,38.873 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -5.4,1.224 c 0.144,0.216 0.288,0.36 0.432,0.576 l 5.256,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path18819"
-                   d="m 180.469,38.657 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -5.472,1.296 c 0.144,0.144 0.288,0.36 0.432,0.504 l 5.328,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path18821"
-                   d="m 180.325,38.369 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -5.4,1.224 c 0.144,0.216 0.216,0.36 0.36,0.504 l 5.4,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path18823"
-                   d="m 180.181,38.081 c -0.144,-0.144 -0.288,-0.36 -0.36,-0.504 l -5.472,1.296 c 0.144,0.144 0.288,0.288 0.36,0.504 l 5.472,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path18825"
-                   d="m 179.965,37.865 c -0.072,-0.216 -0.216,-0.432 -0.36,-0.648 l -5.544,1.296 c 0.144,0.216 0.36,0.432 0.504,0.576 l 5.4,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path18827"
-                   d="m 179.821,37.577 c -0.144,-0.216 -0.288,-0.432 -0.36,-0.576 l -5.616,1.296 c 0.216,0.144 0.36,0.36 0.504,0.576 l 5.472,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path18829"
-                   d="m 179.605,37.217 c -0.144,-0.144 -0.215,-0.36 -0.36,-0.504 l -5.616,1.296 c 0.144,0.216 0.288,0.36 0.432,0.504 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path18831"
-                   d="m 179.461,37.001 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.576 l -5.687,1.368 c 0.143,0.144 0.287,0.288 0.431,0.504 l 5.616,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path18833"
-                   d="m 179.245,36.713 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -5.688,1.296 c 0.144,0.216 0.288,0.36 0.432,0.504 l 5.616,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path18835"
-                   d="m 179.101,36.425 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.504 l -5.76,1.368 c 0.144,0.144 0.288,0.288 0.433,0.504 l 5.687,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path18837"
-                   d="m 178.885,36.209 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -5.76,1.368 c 0.144,0.216 0.288,0.36 0.432,0.504 l 5.688,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path18839"
-                   d="m 178.741,35.921 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.576 l -5.832,1.368 c 0.144,0.144 0.36,0.36 0.504,0.576 l 5.76,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path18841"
-                   d="m 178.525,35.633 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.576 l -5.904,1.44 c 0.216,0.144 0.36,0.36 0.576,0.504 l 5.76,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path18843"
-                   d="m 178.309,35.345 c -0.144,-0.144 -0.288,-0.36 -0.431,-0.504 l -5.905,1.368 c 0.144,0.144 0.288,0.36 0.504,0.504 l 5.832,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path18845"
-                   d="m 178.093,35.057 c -0.144,-0.144 -0.215,-0.288 -0.36,-0.504 l -6.048,1.44 c 0.144,0.144 0.36,0.288 0.504,0.504 l 5.904,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path18847"
-                   d="m 177.878,34.841 c -0.073,-0.216 -0.217,-0.36 -0.361,-0.504 l -6.048,1.368 c 0.144,0.216 0.288,0.36 0.504,0.504 l 5.905,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path18849"
-                   d="m 177.733,34.553 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -6.12,1.44 c 0.144,0.144 0.36,0.288 0.504,0.504 l 6.048,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path18851"
-                   d="m 177.517,34.337 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -6.192,1.44 c 0.216,0.144 0.36,0.288 0.576,0.432 l 6.048,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path18853"
-                   d="m 177.301,34.049 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.576 l -6.336,1.512 c 0.216,0.144 0.432,0.36 0.648,0.504 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path18855"
-                   d="m 177.085,33.833 c -0.144,-0.216 -0.288,-0.432 -0.432,-0.576 l -6.408,1.44 c 0.216,0.216 0.432,0.36 0.648,0.576 l 6.192,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path18857"
-                   d="m 176.869,33.473 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -6.48,1.512 c 0.216,0.144 0.433,0.288 0.576,0.504 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path18859"
-                   d="m 176.653,33.257 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -6.552,1.512 c 0.216,0.144 0.432,0.288 0.576,0.432 l 6.408,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path18861"
-                   d="m 176.437,32.969 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -6.624,1.584 c 0.216,0.144 0.36,0.288 0.576,0.432 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path18863"
-                   d="m 176.221,32.753 c -0.144,-0.216 -0.36,-0.36 -0.504,-0.504 l -6.696,1.512 c 0.216,0.216 0.432,0.36 0.648,0.504 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path18865"
-                   d="m 176.005,32.465 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.576 l -6.768,1.656 c 0.217,0.144 0.432,0.288 0.72,0.504 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path18867"
-                   d="m 175.717,32.249 c -0.144,-0.216 -0.36,-0.432 -0.504,-0.576 l -6.912,1.584 c 0.216,0.216 0.504,0.36 0.72,0.504 l 6.696,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path18869"
-                   d="m 175.429,31.889 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -6.984,1.584 c 0.216,0.144 0.432,0.288 0.72,0.504 l 6.768,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path18871"
-                   d="m 175.213,31.673 c -0.144,-0.144 -0.36,-0.36 -0.504,-0.504 l -7.128,1.656 c 0.216,0.144 0.504,0.288 0.72,0.432 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path18873"
-                   d="m 174.925,31.457 c -0.144,-0.216 -0.288,-0.36 -0.504,-0.504 l -7.2,1.656 c 0.216,0.144 0.432,0.288 0.72,0.432 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path18875"
-                   d="m 174.709,31.169 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -7.344,1.728 c 0.288,0.144 0.504,0.288 0.792,0.432 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path18877"
-                   d="m 174.421,30.953 c -0.144,-0.216 -0.36,-0.36 -0.504,-0.504 l -7.488,1.728 c 0.216,0.144 0.504,0.288 0.792,0.432 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path18879"
-                   d="m 174.133,30.665 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -7.704,1.8 c 0.36,0.144 0.648,0.288 0.936,0.432 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path18881"
-                   d="m 173.917,30.449 c -0.216,-0.144 -0.503,-0.36 -0.72,-0.504 l -7.776,1.8 c 0.36,0.144 0.648,0.288 1.008,0.432 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path18883"
-                   d="m 173.557,30.161 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -7.92,1.8 c 0.288,0.144 0.576,0.288 0.864,0.432 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path18885"
-                   d="m 173.197,29.945 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -8.064,1.944 c 0.36,0.072 0.648,0.216 0.936,0.36 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path18887"
-                   d="m 172.909,29.729 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.504 l -8.28,1.944 c 0.36,0.144 0.648,0.216 1.008,0.36 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path18889"
-                   d="m 172.549,29.441 c -0.216,-0.144 -0.432,-0.288 -0.647,-0.432 l -8.425,1.944 c 0.36,0.144 0.648,0.288 1.008,0.432 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path18891"
-                   d="m 172.261,29.225 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -8.567,2.016 c 0.359,0.144 0.719,0.216 1.079,0.36 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path18893"
-                   d="m 171.902,29.009 c -0.289,-0.144 -0.577,-0.288 -0.865,-0.432 l -8.856,2.016 c 0.432,0.144 0.864,0.288 1.296,0.36 l 8.425,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path18895"
-                   d="m 171.541,28.793 c -0.36,-0.144 -0.648,-0.288 -0.936,-0.432 l -9.072,2.088 c 0.432,0.144 0.936,0.216 1.369,0.36 l 8.639,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path18897"
-                   d="m 171.037,28.577 c -0.288,-0.144 -0.647,-0.288 -0.936,-0.432 l -9.288,2.16 c 0.504,0.072 0.936,0.216 1.368,0.288 l 8.856,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path18899"
-                   d="m 160.813,30.017 c -0.144,0.072 -0.216,0.144 -0.288,0.216 0.288,0.072 0.648,0.144 1.008,0.216 l 9,-2.088 c -0.288,-0.144 -0.648,-0.288 -0.936,-0.36 l -8.784,2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path18901"
-                   d="m 161.39,29.585 c -0.289,0.216 -0.577,0.432 -0.865,0.648 0.072,0.072 0.216,0.072 0.288,0.072 l 9.288,-2.16 c -0.36,-0.144 -0.72,-0.216 -1.08,-0.36 l -7.631,1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path18903"
-                   d="m 162.109,29.153 c -0.432,0.216 -0.864,0.504 -1.296,0.864 l 8.784,-2.016 c -0.432,-0.144 -0.864,-0.288 -1.368,-0.288 l -6.12,1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path18905"
-                   d="m 163.333,28.433 c -0.648,0.288 -1.296,0.72 -1.943,1.152 l 7.559,-1.8 c -0.576,-0.144 -1.224,-0.216 -1.872,-0.216 l -3.744,0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path18907"
-                   d="m 160.525,30.233 2.377,-1.584 2.303,-0.864 2.16,-0.216 2.16,0.36 2.016,0.864 1.944,1.296 1.8,1.584 1.728,1.944 1.584,2.088 1.512,2.232 1.368,2.304 1.296,2.304 1.08,2.16 1.008,2.016 0.792,1.728 0.72,1.44 -0.864,0.144 -0.72,0.216 -0.648,0.216 -0.576,0.216 -0.648,0.216 -0.576,0.216 -0.576,0.144 -0.648,0.144 -0.648,-1.8 -0.792,-1.8 -0.792,-1.728 -0.864,-1.728 -1.008,-1.728 -1.008,-1.584 -1.152,-1.584 -1.224,-1.512 -1.296,-1.44 -1.44,-1.296 -1.44,-1.152 -1.584,-1.08 -1.728,-0.936 -1.727,-0.792 -1.873,-0.576 -2.016,-0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g18909">
-                <path
-                   id="path18911"
-                   d="m 180.902,50.537 c 0.143,0.288 0.215,0.576 0.359,0.864 -2.52,0.216 -5.04,1.296 -7.488,1.656 -0.144,-0.216 -0.216,-0.504 -0.359,-0.792 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18913"
-                   d="m 180.902,50.537 c -0.073,-0.144 -0.145,-0.288 -0.217,-0.432 l -7.416,1.728 c 0,0.144 0.072,0.288 0.145,0.432 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path18915"
-                   d="m 180.829,50.321 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.488,1.728 c 0.072,0.144 0.144,0.288 0.216,0.504 l 7.488,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path18917"
-                   d="m 180.685,50.105 c 0,-0.216 -0.072,-0.36 -0.144,-0.504 l -7.488,1.728 c 0.072,0.144 0.144,0.288 0.216,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path18919"
-                   d="m 180.613,49.889 c -0.072,-0.216 -0.144,-0.432 -0.216,-0.576 l -7.488,1.728 c 0.072,0.144 0.144,0.36 0.216,0.576 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path18921"
-                   d="m 180.541,49.601 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -7.488,1.728 c 0.072,0.144 0.144,0.288 0.216,0.504 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path18923"
-                   d="m 180.397,49.313 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.416,1.728 c 0.072,0.144 0.144,0.36 0.144,0.504 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path18925"
-                   d="m 180.325,49.097 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.488,1.728 c 0.072,0.216 0.144,0.36 0.216,0.576 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path18927"
-                   d="m 180.181,48.809 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.504 l -7.416,1.728 c 0.072,0.216 0.144,0.36 0.216,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path18929"
-                   d="m 180.109,48.521 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.416,1.728 c 0,0.144 0.072,0.288 0.144,0.432 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path18931"
-                   d="m 179.965,48.305 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.416,1.728 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path18933"
-                   d="m 179.893,48.089 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -7.416,1.728 c 0.072,0.144 0.144,0.288 0.216,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path18935"
-                   d="m 179.749,47.873 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.416,1.728 c 0.072,0.144 0.144,0.36 0.216,0.576 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path18937"
-                   d="m 179.677,47.585 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.416,1.728 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path18939"
-                   d="m 179.533,47.297 c -0.072,-0.144 -0.143,-0.288 -0.216,-0.432 l -7.344,1.656 c 0.072,0.144 0.072,0.36 0.144,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path18941"
-                   d="m 179.461,47.081 c -0.071,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.344,1.656 c 0.073,0.216 0.144,0.432 0.216,0.576 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path18943"
-                   d="m 179.317,46.865 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -7.344,1.656 c 0.072,0.216 0.145,0.36 0.216,0.504 l 7.344,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path18945"
-                   d="m 179.173,46.577 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -7.344,1.728 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.344,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path18947"
-                   d="m 179.101,46.361 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.272,1.728 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.344,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path18949"
-                   d="m 178.957,46.073 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.504 l -7.272,1.728 c 0.072,0.144 0.144,0.288 0.216,0.504 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path18951"
-                   d="m 178.813,45.857 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.272,1.656 c 0.072,0.216 0.144,0.36 0.216,0.576 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path18953"
-                   d="m 178.669,45.569 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.272,1.656 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path18955"
-                   d="m 178.597,45.353 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.2,1.656 c 0.072,0.216 0.144,0.36 0.216,0.504 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path18957"
-                   d="m 178.453,45.137 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.2,1.728 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path18959"
-                   d="m 178.309,44.849 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.504 l -7.128,1.728 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path18961"
-                   d="m 178.165,44.561 c -0.072,-0.144 -0.216,-0.288 -0.287,-0.432 l -7.129,1.656 c 0.072,0.144 0.144,0.288 0.216,0.504 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path18963"
-                   d="m 178.021,44.345 c -0.072,-0.144 -0.143,-0.288 -0.288,-0.504 l -7.128,1.656 c 0.072,0.216 0.144,0.36 0.288,0.576 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path18965"
-                   d="m 177.878,44.129 c -0.073,-0.144 -0.145,-0.36 -0.217,-0.504 l -7.128,1.656 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.129,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path18967"
-                   d="m 177.733,43.841 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.432 l -7.055,1.656 c 0.071,0.144 0.143,0.288 0.215,0.432 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path18969"
-                   d="m 177.661,43.625 c -0.144,-0.144 -0.216,-0.288 -0.288,-0.432 l -7.128,1.656 c 0.072,0.144 0.216,0.288 0.288,0.432 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path18971"
-                   d="m 177.445,43.409 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.504 l -7.056,1.656 c 0.144,0.144 0.216,0.288 0.289,0.504 l 7.055,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path18973"
-                   d="m 177.373,43.193 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.056,1.656 c 0.144,0.216 0.216,0.36 0.288,0.576 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path18975"
-                   d="m 177.157,42.905 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.432 l -6.984,1.584 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path18977"
-                   d="m 177.013,42.617 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.432 l -6.984,1.656 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path18979"
-                   d="m 176.869,42.473 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -6.984,1.656 c 0.072,0.144 0.216,0.36 0.288,0.504 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path18981"
-                   d="m 176.725,42.185 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -6.984,1.584 c 0.072,0.144 0.216,0.288 0.288,0.504 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path18983"
-                   d="m 176.581,41.897 c -0.144,-0.144 -0.216,-0.288 -0.288,-0.432 l -6.984,1.584 c 0.072,0.144 0.216,0.36 0.288,0.504 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path18985"
-                   d="m 176.437,41.753 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.504 l -6.984,1.584 c 0.144,0.216 0.216,0.36 0.288,0.504 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path18987"
-                   d="m 176.293,41.465 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.504 l -6.912,1.656 c 0.072,0.144 0.216,0.288 0.288,0.432 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path18989"
-                   d="m 176.149,41.249 c -0.144,-0.144 -0.288,-0.36 -0.36,-0.504 l -6.911,1.584 c 0.071,0.216 0.215,0.36 0.287,0.504 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path18991"
-                   d="m 175.933,40.961 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -6.912,1.584 c 0.072,0.216 0.216,0.36 0.288,0.504 l 6.912,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path18993"
-                   d="m 175.789,40.745 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -6.84,1.584 c 0.072,0.144 0.144,0.288 0.289,0.432 l 6.911,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path18995"
-                   d="m 175.645,40.529 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -6.84,1.584 c 0.144,0.216 0.288,0.36 0.36,0.504 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path18997"
-                   d="m 175.429,40.313 c -0.072,-0.144 -0.216,-0.36 -0.36,-0.504 l -6.84,1.584 c 0.144,0.144 0.216,0.36 0.36,0.504 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path18999"
-                   d="m 175.213,40.025 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -6.84,1.584 c 0.072,0.144 0.216,0.288 0.288,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path19001"
-                   d="m 175.069,39.809 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -6.768,1.584 c 0.072,0.144 0.216,0.288 0.288,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path19003"
-                   d="m 174.925,39.593 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -6.84,1.512 c 0.144,0.216 0.216,0.36 0.36,0.504 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path19005"
-                   d="m 174.709,39.377 c -0.072,-0.144 -0.216,-0.36 -0.36,-0.504 l -6.768,1.584 c 0.072,0.144 0.216,0.36 0.36,0.504 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path19007"
-                   d="m 174.565,39.161 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.504 l -6.84,1.584 c 0.144,0.144 0.288,0.288 0.36,0.432 l 6.84,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path19009"
-                   d="m 174.349,38.873 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -6.768,1.584 c 0.072,0.144 0.216,0.288 0.36,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path19011"
-                   d="m 174.205,38.657 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -6.768,1.584 c 0.144,0.144 0.288,0.36 0.36,0.504 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path19013"
-                   d="m 173.989,38.441 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.768,1.512 c 0.144,0.144 0.288,0.288 0.432,0.504 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path19015"
-                   d="m 173.773,38.153 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.768,1.584 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path19017"
-                   d="m 173.557,38.009 c -0.143,-0.216 -0.288,-0.36 -0.432,-0.504 l -6.768,1.512 c 0.144,0.216 0.288,0.36 0.432,0.504 l 6.768,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path19019"
-                   d="m 173.341,37.721 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -6.768,1.584 c 0.144,0.144 0.288,0.288 0.36,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path19021"
-                   d="m 173.125,37.505 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.696,1.512 c 0.144,0.144 0.288,0.288 0.36,0.432 l 6.768,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path19023"
-                   d="m 172.981,37.289 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.768,1.584 c 0.145,0.144 0.288,0.288 0.432,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path19025"
-                   d="m 172.693,37.073 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -6.768,1.512 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.696,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path19027"
-                   d="m 172.549,36.857 c -0.144,-0.144 -0.36,-0.36 -0.504,-0.504 l -6.768,1.584 c 0.144,0.144 0.36,0.288 0.504,0.504 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path19029"
-                   d="m 172.333,36.641 c -0.216,-0.216 -0.36,-0.36 -0.504,-0.504 l -6.768,1.584 c 0.144,0.144 0.36,0.288 0.504,0.432 l 6.768,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path19031"
-                   d="m 172.045,36.353 c -0.143,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.768,1.584 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path19033"
-                   d="m 171.829,36.137 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -6.768,1.584 c 0.144,0.144 0.36,0.288 0.504,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path19035"
-                   d="m 171.613,35.921 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -6.768,1.584 c 0.144,0.144 0.36,0.288 0.504,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path19037"
-                   d="m 171.325,35.705 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.84,1.584 c 0.144,0.144 0.361,0.288 0.504,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path19039"
-                   d="m 171.109,35.489 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.84,1.584 c 0.144,0.144 0.36,0.288 0.504,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path19041"
-                   d="m 170.893,35.273 c -0.216,-0.144 -0.36,-0.288 -0.503,-0.432 l -6.913,1.584 c 0.216,0.144 0.36,0.288 0.576,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path19043"
-                   d="m 170.677,35.057 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.432 l -6.912,1.584 c 0.216,0.144 0.432,0.288 0.648,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path19045"
-                   d="m 170.39,34.841 c -0.217,-0.144 -0.361,-0.288 -0.505,-0.36 l -6.912,1.584 c 0.144,0.144 0.36,0.216 0.504,0.36 l 6.913,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path19047"
-                   d="m 170.101,34.625 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -6.912,1.656 c 0.216,0.072 0.432,0.216 0.576,0.36 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path19049"
-                   d="m 169.885,34.481 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.504 l -6.984,1.584 c 0.288,0.144 0.504,0.36 0.72,0.504 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path19051"
-                   d="m 169.525,34.193 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.36 l -6.984,1.584 c 0.216,0.144 0.36,0.288 0.576,0.432 l 6.912,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path19053"
-                   d="m 169.237,33.977 c -0.216,-0.144 -0.359,-0.288 -0.576,-0.432 l -6.984,1.656 c 0.216,0.144 0.432,0.288 0.576,0.36 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path19055"
-                   d="m 169.021,33.833 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -6.983,1.656 c 0.215,0.072 0.431,0.216 0.647,0.36 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path19057"
-                   d="m 168.661,33.545 c -0.216,-0.072 -0.432,-0.216 -0.576,-0.36 l -7.056,1.656 c 0.216,0.144 0.432,0.216 0.648,0.36 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path19059"
-                   d="m 168.373,33.401 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -7.128,1.656 c 0.288,0.144 0.504,0.288 0.793,0.432 l 6.983,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path19061"
-                   d="m 168.085,33.185 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.36 l -7.128,1.656 c 0.216,0.072 0.504,0.216 0.72,0.36 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path19063"
-                   d="m 167.725,32.969 c -0.216,-0.144 -0.432,-0.288 -0.72,-0.36 l -7.127,1.656 c 0.287,0.072 0.503,0.216 0.719,0.36 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path19065"
-                   d="m 167.437,32.825 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -7.2,1.656 c 0.288,0.144 0.576,0.288 0.864,0.432 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path19067"
-                   d="m 167.005,32.609 c -0.216,-0.144 -0.432,-0.288 -0.72,-0.36 l -7.2,1.656 c 0.288,0.072 0.576,0.216 0.793,0.36 l 7.127,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path19069"
-                   d="m 166.645,32.393 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.36 l -7.2,1.656 c 0.288,0.144 0.504,0.216 0.792,0.36 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path19071"
-                   d="m 166.285,32.249 c -0.216,-0.144 -0.504,-0.288 -0.792,-0.432 l -7.272,1.728 c 0.288,0.072 0.576,0.216 0.864,0.36 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path19073"
-                   d="m 165.926,32.033 c -0.289,-0.144 -0.577,-0.216 -0.793,-0.36 l -7.344,1.728 c 0.288,0.072 0.576,0.216 0.864,0.288 l 7.273,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path19075"
-                   d="m 165.493,31.817 c -0.288,-0.144 -0.576,-0.216 -0.864,-0.36 l -7.344,1.728 c 0.288,0.072 0.648,0.216 0.936,0.36 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path19077"
-                   d="m 165.133,31.673 c -0.36,-0.144 -0.648,-0.216 -0.936,-0.36 l -7.271,1.728 c 0.287,0.072 0.575,0.216 0.863,0.36 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path19079"
-                   d="m 164.629,31.457 c -0.36,-0.072 -0.648,-0.216 -1.008,-0.288 l -7.272,1.728 c 0.36,0.072 0.648,0.144 0.936,0.288 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path19081"
-                   d="m 164.197,31.313 c -0.36,-0.072 -0.792,-0.216 -1.152,-0.288 l -7.272,1.656 c 0.432,0.144 0.792,0.216 1.153,0.36 l 7.271,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path19083"
-                   d="m 163.621,31.169 c -0.288,-0.072 -0.648,-0.216 -1.008,-0.288 l -7.199,1.656 c 0.287,0.144 0.647,0.216 0.935,0.36 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path19085"
-                   d="m 163.045,31.025 c -0.36,-0.144 -0.792,-0.216 -1.152,-0.288 l -7.128,1.656 c 0.36,0.072 0.72,0.216 1.008,0.288 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path19087"
-                   d="m 162.613,30.881 c -0.504,-0.072 -1.008,-0.216 -1.512,-0.216 l -6.984,1.584 c 0.432,0.072 0.864,0.216 1.297,0.288 l 7.199,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path19089"
-                   d="m 161.893,30.737 c -0.503,-0.072 -1.008,-0.144 -1.512,-0.144 l -6.768,1.512 c 0.432,0.144 0.792,0.216 1.152,0.288 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffab00" />
-                <path
-                   id="path19091"
-                   d="m 153.109,31.961 c -0.072,0 -0.072,0 -0.072,0 0.36,0.144 0.72,0.216 1.08,0.288 l 6.984,-1.584 c -0.648,-0.072 -1.296,-0.144 -1.944,-0.144 l -6.048,1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path19093"
-                   d="m 154.477,31.385 c -0.504,0.216 -1.008,0.36 -1.44,0.576 0.216,0.072 0.36,0.144 0.576,0.144 l 6.768,-1.512 c -0.864,-0.072 -1.728,-0.072 -2.592,0.072 l -3.312,0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffb800" />
-                <path
-                   id="path19095"
-                   d="m 153.037,31.961 2.088,-0.792 2.088,-0.504 2.16,-0.144 2.017,0.144 2.087,0.432 1.944,0.648 1.944,1.008 1.944,1.224 1.8,1.44 1.728,1.728 1.656,1.872 1.584,2.088 1.512,2.304 1.296,2.52 1.296,2.664 1.08,2.808 -0.936,0.144 -0.935,0.144 -0.937,0.216 -0.936,0.288 -0.936,0.216 -0.936,0.288 -0.936,0.216 -0.936,0.144 -0.648,-1.584 -0.648,-1.656 -0.648,-1.584 -0.648,-1.656 -0.791,-1.584 -0.793,-1.512 -0.936,-1.584 -1.008,-1.44 -1.224,-1.368 -1.296,-1.368 -1.512,-1.224 -1.656,-1.152 -1.872,-1.008 -2.088,-0.936 -2.376,-0.792 -2.592,-0.648 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g19097">
-                <path
-                   id="path19099"
-                   d="m 173.053,51.545 c 0.216,0.432 0.361,0.936 0.576,1.44 -2.16,0.288 -5.112,0.864 -7.703,1.152 -0.073,-0.288 -0.145,-0.576 -0.289,-0.864 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path19101"
-                   d="m 173.053,51.545 c 0,-0.216 -0.072,-0.36 -0.144,-0.504 l -7.344,1.728 c 0,0.144 0.072,0.288 0.072,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path19103"
-                   d="m 172.981,51.329 c -0.072,-0.216 -0.144,-0.36 -0.144,-0.576 l -7.416,1.728 c 0.072,0.216 0.144,0.36 0.216,0.576 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path19105"
-                   d="m 172.909,51.041 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.344,1.728 c 0.072,0.216 0.144,0.36 0.216,0.576 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path19107"
-                   d="m 172.837,50.753 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.344,1.728 c 0.072,0.144 0.144,0.36 0.144,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path19109"
-                   d="m 172.693,50.465 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.504 l -7.272,1.728 c 0.072,0.144 0.072,0.36 0.144,0.504 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path19111"
-                   d="m 172.621,50.249 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.576 l -7.272,1.728 c 0.072,0.216 0.072,0.36 0.144,0.576 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path19113"
-                   d="m 172.477,49.961 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.272,1.656 c 0.072,0.216 0.144,0.36 0.216,0.576 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path19115"
-                   d="m 172.405,49.673 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.272,1.656 c 0.072,0.216 0.144,0.36 0.216,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path19117"
-                   d="m 172.261,49.457 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -7.2,1.728 c 0.072,0.144 0.072,0.288 0.144,0.432 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path19119"
-                   d="m 172.189,49.241 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.576 l -7.272,1.728 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path19121"
-                   d="m 172.045,48.953 c -0.072,-0.216 -0.143,-0.36 -0.216,-0.576 l -7.2,1.728 c 0.072,0.144 0.144,0.36 0.216,0.576 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path19123"
-                   d="m 171.973,48.665 c -0.071,-0.144 -0.144,-0.288 -0.216,-0.504 l -7.272,1.728 c 0.072,0.144 0.144,0.288 0.216,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path19125"
-                   d="m 171.829,48.377 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.199,1.656 c 0.071,0.144 0.143,0.36 0.215,0.504 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path19127"
-                   d="m 171.757,48.161 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.2,1.656 c 0.072,0.216 0.145,0.36 0.216,0.576 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path19129"
-                   d="m 171.613,47.945 c -0.072,-0.216 -0.144,-0.432 -0.288,-0.576 l -7.128,1.656 c 0.072,0.216 0.144,0.36 0.217,0.576 l 7.199,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path19131"
-                   d="m 171.469,47.657 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -7.2,1.656 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path19133"
-                   d="m 171.325,47.369 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.2,1.728 c 0.072,0.144 0.216,0.288 0.288,0.432 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path19135"
-                   d="m 171.253,47.153 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.504 l -7.128,1.656 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path19137"
-                   d="m 171.109,46.865 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.2,1.656 c 0.072,0.216 0.144,0.36 0.216,0.576 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path19139"
-                   d="m 170.965,46.649 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -7.2,1.656 c 0.072,0.144 0.144,0.36 0.288,0.504 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path19141"
-                   d="m 170.893,46.361 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.2,1.728 c 0.072,0.144 0.216,0.288 0.288,0.432 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path19143"
-                   d="m 170.749,46.145 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.576 l -7.2,1.728 c 0.144,0.144 0.216,0.36 0.288,0.504 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path19145"
-                   d="m 170.605,45.857 c -0.072,-0.144 -0.215,-0.36 -0.288,-0.504 l -7.2,1.656 c 0.144,0.216 0.216,0.36 0.288,0.576 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path19147"
-                   d="m 170.461,45.569 c -0.071,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.2,1.656 c 0.072,0.216 0.216,0.36 0.288,0.576 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path19149"
-                   d="m 170.317,45.353 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.504 l -7.2,1.656 c 0.073,0.216 0.216,0.36 0.288,0.504 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path19151"
-                   d="m 170.173,45.065 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.2,1.728 c 0.072,0.144 0.217,0.288 0.288,0.432 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path19153"
-                   d="m 170.029,44.849 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -7.2,1.656 c 0.072,0.216 0.216,0.36 0.288,0.504 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path19155"
-                   d="m 169.885,44.561 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.2,1.728 c 0.072,0.144 0.216,0.288 0.288,0.504 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path19157"
-                   d="m 169.741,44.345 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.272,1.728 c 0.144,0.144 0.216,0.288 0.36,0.432 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path19159"
-                   d="m 169.597,44.057 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -7.272,1.656 c 0.144,0.144 0.216,0.288 0.36,0.504 l 7.2,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path19161"
-                   d="m 169.453,43.841 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.272,1.728 c 0.072,0.144 0.216,0.288 0.288,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path19163"
-                   d="m 169.309,43.625 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -7.272,1.728 c 0.144,0.144 0.288,0.36 0.36,0.504 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path19165"
-                   d="m 169.165,43.337 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.272,1.728 c 0.144,0.144 0.216,0.288 0.36,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path19167"
-                   d="m 168.949,43.049 c -0.071,-0.144 -0.216,-0.288 -0.288,-0.432 l -7.344,1.728 c 0.144,0.144 0.288,0.288 0.36,0.432 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path19169"
-                   d="m 168.805,42.833 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.344,1.728 c 0.144,0.144 0.217,0.288 0.36,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path19171"
-                   d="m 168.661,42.617 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.504 l -7.344,1.728 c 0.144,0.144 0.288,0.288 0.433,0.504 l 7.271,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path19173"
-                   d="m 168.517,42.329 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -7.344,1.656 c 0.072,0.216 0.216,0.36 0.36,0.504 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path19175"
-                   d="m 168.301,42.113 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.504 l -7.416,1.728 c 0.144,0.144 0.216,0.288 0.36,0.504 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path19177"
-                   d="m 168.157,41.897 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.504 l -7.416,1.728 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.344,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path19179"
-                   d="m 168.013,41.609 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -7.416,1.728 c 0.144,0.144 0.288,0.36 0.432,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path19181"
-                   d="m 167.797,41.393 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.504 l -7.488,1.728 c 0.144,0.144 0.288,0.36 0.432,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path19183"
-                   d="m 167.581,41.105 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -7.488,1.728 c 0.145,0.144 0.288,0.288 0.432,0.432 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path19185"
-                   d="m 167.437,40.889 c -0.144,-0.144 -0.288,-0.36 -0.36,-0.504 l -7.56,1.8 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path19187"
-                   d="m 167.221,40.673 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.504 l -7.56,1.728 c 0.144,0.144 0.288,0.288 0.432,0.504 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path19189"
-                   d="m 167.077,40.385 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -7.632,1.728 c 0.144,0.144 0.288,0.288 0.432,0.504 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path19191"
-                   d="m 166.861,40.169 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.504 l -7.632,1.8 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path19193"
-                   d="m 166.717,39.953 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -7.632,1.8 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path19195"
-                   d="m 166.501,39.665 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.704,1.8 c 0.144,0.216 0.36,0.36 0.504,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path19197"
-                   d="m 166.285,39.449 c -0.144,-0.144 -0.359,-0.36 -0.504,-0.504 l -7.704,1.8 c 0.216,0.144 0.361,0.36 0.576,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path19199"
-                   d="m 166.069,39.161 c -0.143,-0.144 -0.288,-0.288 -0.432,-0.432 l -7.776,1.8 c 0.144,0.144 0.36,0.288 0.504,0.432 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path19201"
-                   d="m 165.781,38.945 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -7.776,1.8 c 0.216,0.144 0.36,0.288 0.504,0.432 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path19203"
-                   d="m 165.637,38.729 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.504 l -7.776,1.872 c 0.144,0.144 0.36,0.288 0.504,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path19205"
-                   d="m 165.349,38.513 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.848,1.872 c 0.144,0.144 0.36,0.288 0.504,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path19207"
-                   d="m 165.133,38.225 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -7.92,1.872 c 0.216,0.144 0.36,0.288 0.576,0.432 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path19209"
-                   d="m 164.917,38.009 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -7.992,1.872 c 0.216,0.144 0.36,0.288 0.576,0.432 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path19211"
-                   d="m 164.701,37.793 c -0.144,-0.144 -0.287,-0.288 -0.504,-0.432 l -7.992,1.872 c 0.216,0.144 0.432,0.288 0.576,0.432 l 7.92,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path19213"
-                   d="m 164.485,37.577 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -7.992,1.944 c 0.144,0.144 0.36,0.288 0.576,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path19215"
-                   d="m 164.197,37.361 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -8.064,1.872 c 0.216,0.144 0.36,0.288 0.576,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path19217"
-                   d="m 163.909,37.073 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -8.136,1.944 c 0.216,0.144 0.432,0.288 0.648,0.432 l 7.992,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path19219"
-                   d="m 163.693,36.929 c -0.144,-0.216 -0.36,-0.36 -0.504,-0.504 l -8.208,1.944 c 0.216,0.144 0.433,0.288 0.648,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path19221"
-                   d="m 163.405,36.641 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.432 l -8.208,1.944 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path19223"
-                   d="m 163.189,36.425 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -8.352,1.944 c 0.288,0.144 0.504,0.288 0.72,0.432 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path19225"
-                   d="m 162.829,36.209 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -8.423,1.944 c 0.287,0.144 0.503,0.288 0.719,0.432 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path19227"
-                   d="m 162.613,35.993 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.424,1.944 c 0.288,0.144 0.504,0.288 0.72,0.432 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path19229"
-                   d="m 162.325,35.777 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.496,2.016 c 0.288,0.144 0.504,0.216 0.721,0.36 l 8.423,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path19231"
-                   d="m 161.965,35.561 c -0.144,-0.144 -0.36,-0.288 -0.575,-0.432 l -8.569,2.016 c 0.288,0.144 0.504,0.216 0.72,0.36 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path19233"
-                   d="m 161.677,35.345 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.639,2.016 c 0.287,0.144 0.575,0.288 0.791,0.432 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path19235"
-                   d="m 161.39,35.129 c -0.217,-0.144 -0.433,-0.288 -0.721,-0.432 l -8.712,2.016 c 0.288,0.144 0.576,0.288 0.864,0.432 l 8.569,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path19237"
-                   d="m 161.029,34.913 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.36 l -8.784,2.016 c 0.288,0.144 0.576,0.216 0.793,0.36 l 8.639,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path19239"
-                   d="m 160.669,34.697 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.36 l -8.856,2.088 c 0.288,0.072 0.576,0.216 0.792,0.288 l 8.712,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path19241"
-                   d="m 160.381,34.553 c -0.288,-0.144 -0.503,-0.288 -0.792,-0.432 l -8.928,2.088 c 0.36,0.072 0.648,0.216 0.936,0.36 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path19243"
-                   d="m 160.021,34.337 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -9,2.088 c 0.288,0.144 0.649,0.288 0.936,0.432 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path19245"
-                   d="m 159.589,34.121 c -0.216,-0.144 -0.504,-0.288 -0.792,-0.36 l -9,2.088 c 0.288,0.144 0.576,0.216 0.864,0.36 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path19247"
-                   d="m 159.229,33.905 c -0.288,-0.144 -0.576,-0.216 -0.864,-0.36 l -9.144,2.16 c 0.36,0.072 0.648,0.216 1.008,0.288 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path19249"
-                   d="m 158.797,33.761 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.36 l -9.216,2.16 c 0.36,0.072 0.721,0.216 1.08,0.288 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path19251"
-                   d="m 158.365,33.545 c -0.288,-0.144 -0.576,-0.216 -0.936,-0.36 l -9.288,2.16 c 0.36,0.144 0.72,0.216 1.08,0.36 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path19253"
-                   d="m 157.933,33.401 c -0.288,-0.144 -0.648,-0.288 -1.007,-0.36 l -9.433,2.16 c 0.433,0.072 0.792,0.216 1.224,0.36 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path19255"
-                   d="m 157.429,33.185 c -0.288,-0.144 -0.648,-0.216 -1.008,-0.36 l -9.504,2.232 c 0.432,0.072 0.792,0.216 1.224,0.288 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path19257"
-                   d="m 156.926,33.041 c -0.361,-0.144 -0.721,-0.216 -1.009,-0.36 l -9.648,2.232 c 0.432,0.072 0.792,0.216 1.224,0.288 l 9.433,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path19259"
-                   d="m 156.421,32.825 c -0.432,-0.072 -0.792,-0.144 -1.224,-0.288 l -9.648,2.304 c 0.432,0.072 0.936,0.144 1.368,0.216 l 9.504,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path19261"
-                   d="m 155.917,32.681 c -0.503,-0.072 -0.936,-0.144 -1.368,-0.216 l -9.792,2.232 c 0.504,0.072 1.008,0.144 1.512,0.216 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path19263"
-                   d="m 155.197,32.537 c -0.432,-0.072 -0.864,-0.144 -1.368,-0.216 l -9.792,2.304 c 0.504,0.072 1.008,0.144 1.512,0.216 l 9.648,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path19265"
-                   d="m 154.549,32.465 c -0.504,-0.144 -1.008,-0.144 -1.512,-0.216 l -9.936,2.304 c 0.576,0 1.08,0.072 1.656,0.144 l 9.792,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path19267"
-                   d="m 142.741,34.337 c -0.144,0.072 -0.288,0.144 -0.36,0.144 0.576,0.072 1.152,0.072 1.656,0.144 l 9.792,-2.304 c -0.648,-0.072 -1.296,-0.144 -1.944,-0.144 l -9.144,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path19269"
-                   d="m 144.325,33.689 c -0.648,0.216 -1.296,0.504 -1.944,0.792 0.216,0.072 0.504,0.072 0.72,0.072 l 9.936,-2.304 c -0.864,-0.072 -1.728,-0.072 -2.664,0 l -6.048,1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path19271"
-                   d="m 142.381,34.481 2.736,-1.152 2.736,-0.72 2.52,-0.36 2.52,-0.072 2.376,0.36 2.304,0.648 2.16,0.936 2.088,1.224 1.872,1.512 1.872,1.728 1.656,1.944 1.584,2.16 1.44,2.376 1.224,2.52 1.152,2.592 1.008,2.808 -0.864,0.144 -0.863,0.144 -1.009,0.144 -0.936,0.144 -1.008,0.144 -1.008,0.144 -1.008,0.144 -1.007,0.144 -0.505,-2.016 -0.72,-1.872 -0.792,-1.872 -1.007,-1.8 -1.081,-1.656 -1.224,-1.584 -1.296,-1.512 -1.44,-1.368 -1.584,-1.296 -1.728,-1.08 -1.8,-1.008 -1.871,-0.864 -2.017,-0.648 -2.088,-0.576 -2.16,-0.36 -2.232,-0.144 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g19273">
-                <path
-                   id="path19275"
-                   d="m 165.709,53.273 c 0.144,0.432 0.217,0.864 0.36,1.224 -2.376,0.072 -3.6,0.648 -6.264,1.08 -0.216,-0.216 -0.36,-0.504 -0.504,-0.792 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path19277"
-                   d="m 165.709,53.273 c 0,-0.144 -0.072,-0.288 -0.072,-0.432 l -6.552,1.584 c 0.072,0.072 0.144,0.216 0.216,0.36 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path19279"
-                   d="m 165.637,53.057 c 0,-0.144 -0.072,-0.288 -0.072,-0.432 l -6.624,1.584 c 0.072,0.144 0.144,0.288 0.216,0.36 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path19281"
-                   d="m 165.637,52.841 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.504 l -6.624,1.584 c 0.072,0.144 0.144,0.288 0.288,0.504 l 6.552,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path19283"
-                   d="m 165.565,52.625 c -0.072,-0.144 -0.144,-0.288 -0.144,-0.432 l -6.768,1.512 c 0.072,0.144 0.216,0.36 0.288,0.504 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path19285"
-                   d="m 165.421,52.337 c 0,-0.144 -0.072,-0.288 -0.072,-0.36 l -6.768,1.584 c 0.072,0.072 0.144,0.216 0.216,0.36 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path19287"
-                   d="m 165.421,52.193 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -6.84,1.584 c 0.144,0.144 0.216,0.288 0.288,0.432 l 6.768,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path19289"
-                   d="m 165.349,51.977 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -6.84,1.584 c 0.072,0.144 0.145,0.288 0.288,0.504 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path19291"
-                   d="m 165.205,51.689 c 0,-0.144 -0.072,-0.288 -0.144,-0.432 l -6.912,1.584 c 0.072,0.144 0.144,0.288 0.216,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path19293"
-                   d="m 165.133,51.473 c 0,-0.216 -0.072,-0.36 -0.144,-0.504 l -6.984,1.656 c 0.072,0.144 0.216,0.288 0.288,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path19295"
-                   d="m 165.061,51.257 c 0,-0.216 -0.072,-0.36 -0.144,-0.504 l -6.984,1.656 c 0.072,0.144 0.144,0.288 0.216,0.432 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path19297"
-                   d="m 164.989,50.969 c -0.072,-0.144 -0.144,-0.288 -0.144,-0.432 l -7.056,1.656 c 0.072,0.144 0.144,0.288 0.216,0.432 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path19299"
-                   d="m 164.917,50.753 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.056,1.656 c 0.072,0.144 0.144,0.288 0.288,0.504 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path19301"
-                   d="m 164.845,50.537 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -7.128,1.656 c 0.144,0.144 0.216,0.36 0.288,0.504 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path19303"
-                   d="m 164.701,50.249 c -0.072,-0.144 -0.072,-0.288 -0.144,-0.432 l -7.128,1.728 c 0.072,0.072 0.144,0.216 0.216,0.36 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path19305"
-                   d="m 164.629,50.033 c -0.072,-0.144 -0.144,-0.288 -0.215,-0.432 l -7.129,1.656 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path19307"
-                   d="m 164.557,49.817 c -0.072,-0.144 -0.143,-0.288 -0.216,-0.432 l -7.2,1.656 c 0.072,0.144 0.216,0.288 0.288,0.504 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path19309"
-                   d="m 164.414,49.601 c 0,-0.144 -0.073,-0.288 -0.145,-0.432 l -7.2,1.656 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.129,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path19311"
-                   d="m 164.341,49.385 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -7.199,1.656 c 0.071,0.216 0.143,0.36 0.215,0.504 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path19313"
-                   d="m 164.269,49.169 c -0.072,-0.216 -0.144,-0.36 -0.216,-0.504 l -7.272,1.728 c 0.072,0.144 0.145,0.288 0.288,0.432 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path19315"
-                   d="m 164.125,48.881 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.272,1.728 c 0.072,0.144 0.216,0.216 0.289,0.36 l 7.199,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path19317"
-                   d="m 164.053,48.665 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.504 l -7.344,1.728 c 0.144,0.144 0.216,0.288 0.288,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path19319"
-                   d="m 163.909,48.449 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.504 l -7.272,1.729 c 0.072,0.144 0.144,0.36 0.216,0.504 l 7.272,-1.729 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path19321"
-                   d="m 163.837,48.161 c -0.072,-0.144 -0.144,-0.216 -0.216,-0.36 l -7.344,1.728 c 0.072,0.072 0.144,0.216 0.216,0.36 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path19323"
-                   d="m 163.693,47.945 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.344,1.728 c 0.072,0.144 0.216,0.288 0.288,0.432 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path19325"
-                   d="m 163.621,47.801 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -7.272,1.728 c 0.072,0.144 0.144,0.288 0.216,0.504 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path19327"
-                   d="m 163.477,47.513 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.344,1.728 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path19329"
-                   d="m 163.333,47.297 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.344,1.728 c 0.144,0.144 0.216,0.288 0.288,0.432 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path19331"
-                   d="m 163.261,47.081 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -7.272,1.728 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path19333"
-                   d="m 163.117,46.865 c -0.072,-0.144 -0.144,-0.288 -0.215,-0.432 l -7.345,1.728 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path19335"
-                   d="m 162.973,46.649 c -0.071,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.343,1.728 c 0.071,0.144 0.143,0.288 0.287,0.432 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path19337"
-                   d="m 162.902,46.433 c -0.145,-0.144 -0.217,-0.288 -0.289,-0.504 l -7.344,1.728 c 0.072,0.144 0.216,0.36 0.288,0.504 l 7.345,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path19339"
-                   d="m 162.757,46.217 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -7.272,1.656 c 0.072,0.216 0.144,0.36 0.217,0.504 l 7.343,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path19341"
-                   d="m 162.613,45.929 c -0.072,-0.072 -0.216,-0.216 -0.288,-0.36 l -7.272,1.728 c 0.072,0.144 0.144,0.216 0.216,0.36 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path19343"
-                   d="m 162.469,45.785 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.272,1.728 c 0.072,0.144 0.144,0.288 0.288,0.432 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path19345"
-                   d="m 162.325,45.569 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -7.272,1.656 c 0.072,0.144 0.216,0.36 0.288,0.504 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path19347"
-                   d="m 162.181,45.281 c -0.072,-0.144 -0.216,-0.216 -0.288,-0.36 l -7.272,1.656 c 0.144,0.144 0.216,0.288 0.288,0.432 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path19349"
-                   d="m 162.037,45.137 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.504 l -7.272,1.728 c 0.144,0.144 0.216,0.288 0.288,0.432 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path19351"
-                   d="m 161.893,44.921 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -7.2,1.656 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path19353"
-                   d="m 161.749,44.633 c -0.144,-0.144 -0.216,-0.216 -0.288,-0.36 l -7.2,1.656 c 0.072,0.144 0.144,0.288 0.216,0.432 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path19355"
-                   d="m 161.605,44.489 c -0.144,-0.216 -0.215,-0.36 -0.36,-0.504 l -7.128,1.656 c 0.072,0.216 0.144,0.36 0.288,0.504 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path19357"
-                   d="m 161.461,44.273 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.504 l -7.128,1.728 c 0.072,0.144 0.216,0.288 0.288,0.432 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path19359"
-                   d="m 161.245,43.985 c -0.072,-0.144 -0.216,-0.216 -0.288,-0.36 l -7.128,1.656 c 0.073,0.144 0.144,0.288 0.288,0.36 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path19361"
-                   d="m 161.101,43.769 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -7.056,1.656 c 0.072,0.144 0.217,0.36 0.288,0.504 l 7.128,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path19363"
-                   d="m 160.957,43.625 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -7.056,1.656 c 0.072,0.144 0.216,0.288 0.288,0.432 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path19365"
-                   d="m 160.741,43.337 c -0.072,-0.144 -0.216,-0.216 -0.288,-0.36 l -7.056,1.656 c 0.072,0.144 0.216,0.216 0.288,0.36 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path19367"
-                   d="m 160.597,43.193 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.504 l -6.984,1.656 c 0.072,0.144 0.216,0.288 0.288,0.504 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path19369"
-                   d="m 160.453,42.977 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -6.984,1.584 c 0.072,0.216 0.216,0.36 0.288,0.504 l 7.056,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path19371"
-                   d="m 160.237,42.689 c -0.144,-0.072 -0.216,-0.216 -0.359,-0.36 l -6.913,1.656 c 0.072,0.072 0.144,0.216 0.288,0.36 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path19373"
-                   d="m 160.093,42.545 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.912,1.584 c 0.144,0.144 0.216,0.288 0.36,0.432 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path19375"
-                   d="m 159.878,42.329 c -0.145,-0.144 -0.217,-0.288 -0.361,-0.432 l -6.912,1.584 c 0.144,0.144 0.216,0.36 0.36,0.504 l 6.913,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path19377"
-                   d="m 159.661,42.113 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -6.84,1.656 c 0.144,0.072 0.216,0.216 0.288,0.36 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path19379"
-                   d="m 159.517,41.897 c -0.144,-0.144 -0.288,-0.216 -0.36,-0.36 l -6.84,1.584 c 0.144,0.144 0.216,0.288 0.288,0.36 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path19381"
-                   d="m 159.301,41.681 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.36 l -6.696,1.512 c 0.072,0.144 0.217,0.36 0.288,0.504 l 6.84,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path19383"
-                   d="m 159.157,41.537 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -6.768,1.584 c 0.144,0.144 0.288,0.288 0.36,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path19385"
-                   d="m 158.869,41.321 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -6.696,1.584 c 0.144,0.144 0.216,0.288 0.36,0.36 l 6.696,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path19387"
-                   d="m 158.725,41.105 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -6.624,1.512 c 0.144,0.216 0.288,0.36 0.36,0.504 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path19389"
-                   d="m 158.509,40.889 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.36 l -6.624,1.512 c 0.144,0.144 0.216,0.288 0.36,0.432 l 6.696,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path19391"
-                   d="m 158.221,40.673 c -0.144,-0.144 -0.216,-0.216 -0.36,-0.36 l -6.552,1.512 c 0.072,0.144 0.216,0.288 0.288,0.36 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path19393"
-                   d="m 158.077,40.529 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.432 l -6.552,1.512 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path19395"
-                   d="m 157.861,40.313 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -6.479,1.512 c 0.143,0.144 0.287,0.288 0.431,0.432 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path19397"
-                   d="m 157.573,40.097 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.36 l -6.48,1.512 c 0.144,0.072 0.289,0.216 0.36,0.36 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path19399"
-                   d="m 157.357,39.881 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.36 l -6.408,1.44 c 0.144,0.144 0.288,0.288 0.433,0.432 l 6.479,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path19401"
-                   d="m 157.141,39.737 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -6.408,1.512 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path19403"
-                   d="m 156.853,39.521 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.36 l -6.336,1.44 c 0.144,0.144 0.288,0.288 0.432,0.36 l 6.408,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path19405"
-                   d="m 156.637,39.305 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -6.264,1.512 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path19407"
-                   d="m 156.349,39.161 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -6.264,1.44 c 0.144,0.144 0.288,0.288 0.432,0.432 l 6.336,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path19409"
-                   d="m 156.061,38.873 c -0.144,-0.072 -0.288,-0.216 -0.504,-0.288 l -6.192,1.44 c 0.144,0.144 0.288,0.216 0.432,0.36 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path19411"
-                   d="m 155.845,38.729 c -0.216,-0.144 -0.431,-0.288 -0.576,-0.36 l -6.192,1.44 c 0.144,0.144 0.361,0.216 0.504,0.36 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path19413"
-                   d="m 155.557,38.585 c -0.143,-0.144 -0.36,-0.288 -0.576,-0.432 l -6.12,1.44 c 0.144,0.144 0.36,0.288 0.504,0.432 l 6.192,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path19415"
-                   d="m 155.269,38.369 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.36 l -6.12,1.44 c 0.216,0.072 0.36,0.216 0.504,0.36 l 6.192,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path19417"
-                   d="m 154.981,38.153 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.36 l -6.048,1.44 c 0.216,0.072 0.36,0.216 0.576,0.36 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path19419"
-                   d="m 154.693,38.009 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.36 l -6.048,1.368 c 0.144,0.144 0.36,0.288 0.504,0.432 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path19421"
-                   d="m 154.333,37.793 c -0.144,-0.144 -0.36,-0.216 -0.576,-0.36 l -5.976,1.44 c 0.145,0.072 0.36,0.216 0.504,0.36 l 6.048,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path19423"
-                   d="m 154.117,37.649 c -0.288,-0.144 -0.504,-0.288 -0.72,-0.432 l -5.976,1.44 c 0.216,0.144 0.432,0.216 0.648,0.36 l 6.048,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path19425"
-                   d="m 153.757,37.433 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.36 l -5.976,1.368 c 0.216,0.144 0.432,0.288 0.648,0.432 l 5.976,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path19427"
-                   d="m 153.397,37.217 c -0.216,-0.072 -0.432,-0.216 -0.576,-0.288 l -5.976,1.368 c 0.216,0.144 0.432,0.216 0.576,0.36 l 5.976,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path19429"
-                   d="m 153.109,37.073 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.288 l -5.904,1.368 c 0.216,0.144 0.432,0.216 0.576,0.288 l 5.976,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path19431"
-                   d="m 152.821,36.929 c -0.288,-0.144 -0.504,-0.216 -0.792,-0.36 l -5.832,1.368 c 0.217,0.144 0.432,0.288 0.648,0.36 l 5.976,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path19433"
-                   d="m 152.461,36.785 c -0.216,-0.144 -0.504,-0.216 -0.792,-0.36 l -5.832,1.368 c 0.288,0.144 0.504,0.216 0.72,0.36 l 5.904,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path19435"
-                   d="m 152.029,36.569 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.288 l -5.832,1.368 c 0.216,0.072 0.432,0.216 0.648,0.288 l 5.832,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path19437"
-                   d="m 151.669,36.425 c -0.216,-0.144 -0.504,-0.216 -0.791,-0.36 l -5.761,1.368 c 0.288,0.144 0.504,0.216 0.72,0.36 l 5.832,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path19439"
-                   d="m 151.381,36.281 c -0.288,-0.144 -0.576,-0.216 -0.864,-0.36 l -5.76,1.368 c 0.288,0.144 0.576,0.216 0.792,0.36 l 5.832,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path19441"
-                   d="m 150.878,36.065 c -0.289,-0.072 -0.505,-0.144 -0.793,-0.288 l -5.688,1.368 c 0.288,0.072 0.505,0.216 0.72,0.288 l 5.761,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path19443"
-                   d="m 150.517,35.921 c -0.36,-0.072 -0.648,-0.216 -0.936,-0.288 l -5.616,1.296 c 0.288,0.144 0.576,0.216 0.792,0.36 l 5.76,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path19445"
-                   d="m 150.085,35.777 c -0.288,-0.072 -0.647,-0.144 -0.936,-0.288 l -5.544,1.296 c 0.288,0.144 0.576,0.216 0.792,0.36 l 5.688,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path19447"
-                   d="m 149.581,35.633 c -0.288,-0.072 -0.576,-0.144 -0.864,-0.216 l -5.544,1.224 c 0.289,0.144 0.504,0.216 0.792,0.288 l 5.616,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path19449"
-                   d="m 149.149,35.489 c -0.36,-0.072 -0.72,-0.144 -1.08,-0.288 l -5.4,1.296 c 0.288,0.072 0.648,0.216 0.936,0.288 l 5.544,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path19451"
-                   d="m 148.717,35.417 c -0.36,-0.144 -0.72,-0.216 -1.152,-0.288 l -5.328,1.224 c 0.36,0.072 0.648,0.216 0.936,0.288 l 5.544,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path19453"
-                   d="m 148.069,35.201 c -0.288,-0.072 -0.648,-0.144 -1.008,-0.216 l -5.256,1.224 c 0.288,0.072 0.576,0.216 0.864,0.288 l 5.4,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffab00" />
-                <path
-                   id="path19455"
-                   d="m 147.565,35.129 c -0.36,-0.144 -0.792,-0.216 -1.151,-0.288 l -5.113,1.224 c 0.288,0.072 0.649,0.216 0.936,0.288 l 5.328,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path19457"
-                   d="m 147.061,34.985 c -0.432,-0.072 -0.864,-0.144 -1.296,-0.216 l -4.968,1.152 c 0.36,0.072 0.72,0.216 1.008,0.288 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffb800" />
-                <path
-                   id="path19459"
-                   d="m 146.414,34.841 c -0.433,-0.072 -0.865,-0.072 -1.297,-0.144 l -4.752,1.08 c 0.288,0.144 0.648,0.216 0.936,0.288 l 5.113,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffbf00" />
-                <path
-                   id="path19461"
-                   d="m 145.765,34.769 c -0.504,-0.072 -1.008,-0.144 -1.512,-0.144 l -4.536,1.008 c 0.36,0.144 0.792,0.216 1.08,0.288 l 4.968,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffc700" />
-                <path
-                   id="path19463"
-                   d="m 145.117,34.697 c -0.576,-0.072 -1.08,-0.144 -1.655,-0.144 l -4.249,1.008 c 0.432,0.072 0.792,0.144 1.152,0.216 l 4.752,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd100" />
-                <path
-                   id="path19465"
-                   d="m 144.253,34.625 c -0.576,-0.072 -1.08,-0.072 -1.656,-0.072 l -3.816,0.864 c 0.288,0.072 0.648,0.144 0.936,0.216 l 4.536,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path19467"
-                   d="m 143.39,34.553 c -0.721,0 -1.44,0 -2.233,0 l -3.096,0.72 c 0.432,0.072 0.792,0.144 1.152,0.288 l 4.177,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path19469"
-                   d="m 142.597,34.553 c -0.936,0 -1.944,0 -2.88,0.144 l -2.16,0.504 c 0.432,0.072 0.792,0.144 1.224,0.216 l 3.816,-0.864 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe600" />
-                <path
-                   id="path19471"
-                   d="m 141.157,34.553 c -1.296,0.072 -2.664,0.216 -4.032,0.504 0.289,0.072 0.648,0.144 0.936,0.216 l 3.096,-0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffed00" />
-                <path
-                   id="path19473"
-                   d="m 139.717,34.697 c -0.864,0.072 -1.728,0.216 -2.592,0.36 0.144,0.072 0.289,0.072 0.432,0.144 l 2.16,-0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fff700" />
-                <path
-                   id="path19475"
-                   d="m 137.125,35.057 2.448,-0.36 2.377,-0.216 2.375,0.072 2.304,0.288 2.304,0.576 2.16,0.72 2.088,0.936 2.016,1.152 1.872,1.368 1.8,1.584 1.584,1.728 1.512,1.944 1.296,2.16 1.153,2.304 0.935,2.52 0.72,2.664 -0.864,0.072 -0.72,0.072 -0.72,0.144 -0.72,0.144 -0.72,0.144 -0.72,0.144 -0.864,0.216 -0.936,0.144 -1.224,-2.088 -1.152,-2.016 -1.008,-1.8 -0.936,-1.8 -1.008,-1.584 -0.936,-1.512 -0.936,-1.44 -1.08,-1.296 -1.152,-1.224 -1.296,-1.08 -1.44,-1.008 -1.584,-0.936 -1.872,-0.792 -2.016,-0.72 -2.376,-0.648 -2.664,-0.576 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g19477">
-                <path
-                   id="path19479"
-                   d="m 158.941,54.353 c 0.288,0.504 0.504,1.008 0.792,1.512 -1.368,0 -4.968,1.08 -6.408,1.08 -0.216,-0.36 -0.432,-0.792 -0.576,-1.152 l 6.192,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path19481"
-                   d="m 158.941,54.353 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -6.264,1.44 c 0.144,0.144 0.216,0.288 0.288,0.432 l 6.192,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path19483"
-                   d="m 158.869,54.137 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -6.264,1.44 c 0.144,0.144 0.216,0.36 0.288,0.504 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path19485"
-                   d="m 158.725,53.921 c -0.072,-0.216 -0.144,-0.432 -0.287,-0.576 l -6.265,1.44 c 0.144,0.216 0.217,0.36 0.288,0.576 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path19487"
-                   d="m 158.581,53.633 c -0.072,-0.216 -0.143,-0.36 -0.216,-0.504 l -6.264,1.44 c 0.072,0.144 0.144,0.36 0.216,0.504 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path19489"
-                   d="m 158.438,53.345 c -0.073,-0.144 -0.145,-0.36 -0.217,-0.504 l -6.264,1.512 c 0.072,0.144 0.144,0.288 0.216,0.432 l 6.265,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path19491"
-                   d="m 158.365,53.129 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.576 l -6.264,1.512 c 0.072,0.144 0.144,0.36 0.288,0.504 l 6.264,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path19493"
-                   d="m 158.221,52.841 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -6.336,1.44 c 0.144,0.216 0.216,0.36 0.36,0.576 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path19495"
-                   d="m 158.077,52.553 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -6.336,1.44 c 0.072,0.144 0.144,0.36 0.288,0.504 l 6.264,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path19497"
-                   d="m 157.933,52.337 c -0.072,-0.144 -0.144,-0.36 -0.216,-0.504 l -6.336,1.512 c 0.072,0.144 0.144,0.288 0.216,0.432 l 6.336,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path19499"
-                   d="m 157.861,52.121 c -0.144,-0.216 -0.216,-0.36 -0.288,-0.576 l -6.408,1.512 c 0.144,0.144 0.216,0.36 0.36,0.504 l 6.336,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path19501"
-                   d="m 157.717,51.833 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.408,1.44 c 0.144,0.216 0.216,0.36 0.36,0.576 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path19503"
-                   d="m 157.573,51.545 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.407,1.512 c 0.072,0.144 0.215,0.36 0.287,0.504 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path19505"
-                   d="m 157.429,51.329 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.504 l -6.408,1.512 c 0.072,0.144 0.217,0.288 0.288,0.432 l 6.408,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path19507"
-                   d="m 157.285,51.041 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.504 l -6.48,1.512 c 0.144,0.144 0.216,0.288 0.361,0.504 l 6.407,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path19509"
-                   d="m 157.141,50.825 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -6.48,1.512 c 0.144,0.144 0.216,0.288 0.36,0.504 l 6.408,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path19511"
-                   d="m 156.997,50.537 c -0.071,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.552,1.512 c 0.144,0.144 0.288,0.36 0.36,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path19513"
-                   d="m 156.853,50.321 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.504 l -6.552,1.512 c 0.144,0.144 0.216,0.288 0.36,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path19515"
-                   d="m 156.709,50.033 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.504 l -6.552,1.584 c 0.072,0.144 0.216,0.288 0.288,0.432 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path19517"
-                   d="m 156.565,49.817 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -6.624,1.512 c 0.144,0.144 0.288,0.36 0.36,0.504 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path19519"
-                   d="m 156.421,49.529 c -0.072,-0.144 -0.144,-0.36 -0.288,-0.504 l -6.624,1.512 c 0.072,0.216 0.216,0.36 0.36,0.576 l 6.552,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path19521"
-                   d="m 156.277,49.313 c -0.072,-0.216 -0.144,-0.36 -0.288,-0.504 l -6.624,1.584 c 0.073,0.144 0.216,0.288 0.288,0.432 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path19523"
-                   d="m 156.133,49.025 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.504 l -6.696,1.584 c 0.072,0.144 0.216,0.288 0.36,0.432 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path19525"
-                   d="m 155.989,48.809 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.768,1.584 c 0.144,0.144 0.288,0.288 0.432,0.504 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path19527"
-                   d="m 155.845,48.521 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -6.84,1.584 c 0.144,0.144 0.288,0.36 0.432,0.504 l 6.696,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path19529"
-                   d="m 155.701,48.305 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.576 l -6.84,1.584 c 0.144,0.216 0.288,0.36 0.432,0.576 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path19531"
-                   d="m 155.557,48.017 c -0.143,-0.144 -0.216,-0.288 -0.288,-0.504 l -6.912,1.656 c 0.144,0.144 0.216,0.288 0.36,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path19533"
-                   d="m 155.341,47.729 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.432 l -6.912,1.584 c 0.144,0.144 0.216,0.288 0.36,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path19535"
-                   d="m 155.269,47.513 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.504 l -6.983,1.656 c 0.143,0.144 0.287,0.288 0.431,0.504 l 6.912,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path19537"
-                   d="m 155.053,47.297 c -0.072,-0.144 -0.216,-0.36 -0.288,-0.504 l -7.056,1.584 c 0.144,0.216 0.288,0.36 0.432,0.504 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path19539"
-                   d="m 154.909,47.009 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -7.128,1.656 c 0.144,0.144 0.288,0.288 0.433,0.432 l 6.983,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path19541"
-                   d="m 154.765,46.793 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.504 l -7.128,1.656 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.056,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path19543"
-                   d="m 154.621,46.577 c -0.144,-0.216 -0.288,-0.36 -0.36,-0.504 l -7.2,1.656 c 0.144,0.144 0.288,0.288 0.432,0.504 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path19545"
-                   d="m 154.405,46.289 c -0.072,-0.144 -0.216,-0.36 -0.36,-0.504 l -7.272,1.656 c 0.216,0.216 0.36,0.36 0.504,0.504 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path19547"
-                   d="m 154.261,46.073 c -0.144,-0.216 -0.216,-0.36 -0.359,-0.504 l -7.273,1.728 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path19549"
-                   d="m 154.045,45.785 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.504 l -7.416,1.728 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.272,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path19551"
-                   d="m 153.902,45.569 c -0.073,-0.144 -0.217,-0.36 -0.361,-0.504 l -7.416,1.728 c 0.144,0.144 0.36,0.288 0.504,0.504 l 7.273,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path19553"
-                   d="m 153.757,45.281 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -7.488,1.8 c 0.216,0.144 0.36,0.288 0.504,0.432 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path19555"
-                   d="m 153.541,45.065 c -0.144,-0.144 -0.288,-0.36 -0.36,-0.504 l -7.56,1.728 c 0.144,0.144 0.36,0.36 0.504,0.504 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path19557"
-                   d="m 153.325,44.777 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -7.632,1.8 c 0.144,0.144 0.288,0.288 0.432,0.432 l 7.488,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path19559"
-                   d="m 153.181,44.561 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -7.704,1.728 c 0.144,0.144 0.36,0.288 0.504,0.432 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path19561"
-                   d="m 153.037,44.345 c -0.144,-0.144 -0.288,-0.36 -0.432,-0.504 l -7.776,1.8 c 0.216,0.144 0.36,0.288 0.576,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path19563"
-                   d="m 152.821,44.129 c -0.144,-0.216 -0.288,-0.36 -0.431,-0.576 l -7.849,1.872 c 0.216,0.144 0.433,0.288 0.576,0.432 l 7.704,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path19565"
-                   d="m 152.605,43.841 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -7.92,1.8 c 0.216,0.144 0.36,0.288 0.504,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path19567"
-                   d="m 152.39,43.553 c -0.145,-0.144 -0.289,-0.288 -0.361,-0.432 l -7.992,1.872 c 0.216,0.144 0.36,0.288 0.576,0.432 l 7.777,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path19569"
-                   d="m 152.245,43.409 c -0.144,-0.216 -0.288,-0.36 -0.432,-0.504 l -7.992,1.872 c 0.144,0.144 0.36,0.288 0.504,0.432 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path19571"
-                   d="m 152.029,43.121 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.504 l -8.135,1.872 c 0.215,0.216 0.431,0.36 0.575,0.504 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path19573"
-                   d="m 151.813,42.905 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.136,1.872 c 0.217,0.144 0.36,0.288 0.576,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path19575"
-                   d="m 151.597,42.617 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.208,1.944 c 0.144,0.144 0.36,0.216 0.505,0.36 l 8.135,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path19577"
-                   d="m 151.381,42.473 c -0.144,-0.216 -0.288,-0.36 -0.431,-0.504 l -8.281,1.872 c 0.144,0.216 0.36,0.36 0.576,0.504 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path19579"
-                   d="m 151.165,42.185 c -0.144,-0.144 -0.287,-0.288 -0.504,-0.504 l -8.352,1.944 c 0.216,0.144 0.432,0.36 0.648,0.504 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path19581"
-                   d="m 150.95,41.969 c -0.145,-0.216 -0.361,-0.36 -0.505,-0.504 l -8.424,1.944 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.281,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path19583"
-                   d="m 150.661,41.681 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.496,2.016 c 0.217,0.144 0.36,0.216 0.576,0.36 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path19585"
-                   d="m 150.445,41.465 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.64,2.016 c 0.216,0.072 0.432,0.216 0.648,0.36 l 8.424,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path19587"
-                   d="m 150.229,41.249 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -8.64,2.016 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.496,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path19589"
-                   d="m 150.013,41.033 c -0.216,-0.144 -0.36,-0.36 -0.504,-0.504 l -8.784,2.016 c 0.216,0.144 0.432,0.36 0.648,0.504 l 8.64,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path19591"
-                   d="m 149.725,40.817 c -0.144,-0.144 -0.287,-0.288 -0.432,-0.432 l -8.855,2.016 c 0.215,0.144 0.431,0.288 0.647,0.432 l 8.64,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path19593"
-                   d="m 149.509,40.529 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.432 l -8.928,2.088 c 0.216,0.144 0.432,0.288 0.648,0.36 l 8.784,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path19595"
-                   d="m 149.293,40.385 c -0.216,-0.216 -0.36,-0.36 -0.576,-0.504 l -9,2.088 c 0.216,0.144 0.504,0.288 0.721,0.432 l 8.855,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path19597"
-                   d="m 149.005,40.097 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -9.072,2.088 c 0.216,0.144 0.504,0.288 0.72,0.432 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path19599"
-                   d="m 148.717,39.881 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -9.144,2.16 c 0.216,0.072 0.432,0.216 0.648,0.36 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path19601"
-                   d="m 148.429,39.665 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -9.216,2.16 c 0.289,0.072 0.504,0.216 0.72,0.36 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path19603"
-                   d="m 148.213,39.449 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -9.288,2.16 c 0.288,0.144 0.504,0.288 0.792,0.432 l 9.144,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path19605"
-                   d="m 147.853,39.233 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.432 l -9.36,2.16 c 0.216,0.144 0.504,0.288 0.72,0.432 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path19607"
-                   d="m 147.565,39.017 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -9.431,2.16 c 0.287,0.144 0.503,0.288 0.791,0.432 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path19609"
-                   d="m 147.277,38.801 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.432 l -9.504,2.232 c 0.217,0.144 0.432,0.216 0.72,0.36 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path19611"
-                   d="m 146.917,38.585 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -9.576,2.232 c 0.216,0.144 0.504,0.216 0.721,0.36 l 9.431,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path19613"
-                   d="m 146.701,38.369 c -0.287,-0.144 -0.504,-0.288 -0.72,-0.432 l -9.648,2.232 c 0.288,0.144 0.576,0.288 0.792,0.432 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path19615"
-                   d="m 146.341,38.153 c -0.288,-0.144 -0.504,-0.288 -0.792,-0.432 l -9.72,2.232 c 0.36,0.144 0.648,0.288 0.936,0.432 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path19617"
-                   d="m 145.981,37.937 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.36 l -9.72,2.232 c 0.216,0.144 0.504,0.288 0.792,0.36 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path19619"
-                   d="m 145.549,37.721 c -0.216,-0.144 -0.432,-0.216 -0.647,-0.36 l -9.865,2.232 c 0.288,0.144 0.576,0.288 0.792,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path19621"
-                   d="m 145.261,37.577 c -0.216,-0.144 -0.504,-0.288 -0.792,-0.432 l -9.864,2.304 c 0.288,0.144 0.576,0.216 0.936,0.36 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path19623"
-                   d="m 144.902,37.361 c -0.289,-0.144 -0.577,-0.288 -0.865,-0.432 l -9.864,2.304 c 0.289,0.144 0.576,0.288 0.864,0.36 l 9.865,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path19625"
-                   d="m 144.469,37.145 c -0.288,-0.144 -0.504,-0.216 -0.792,-0.36 l -9.864,2.304 c 0.216,0.144 0.504,0.216 0.792,0.36 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path19627"
-                   d="m 144.037,36.929 c -0.288,-0.072 -0.504,-0.216 -0.792,-0.36 l -9.936,2.376 c 0.288,0.072 0.576,0.216 0.864,0.288 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path19629"
-                   d="m 143.677,36.785 c -0.287,-0.144 -0.576,-0.288 -0.936,-0.36 l -9.936,2.304 c 0.288,0.144 0.648,0.216 1.008,0.36 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path19631"
-                   d="m 143.245,36.569 c -0.36,-0.072 -0.648,-0.216 -1.008,-0.36 l -9.936,2.304 c 0.288,0.144 0.649,0.288 1.008,0.432 l 9.936,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path19633"
-                   d="m 142.741,36.425 c -0.36,-0.144 -0.72,-0.288 -1.08,-0.36 l -9.936,2.304 c 0.36,0.072 0.72,0.216 1.08,0.36 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path19635"
-                   d="m 142.237,36.209 c -0.359,-0.072 -0.648,-0.216 -1.008,-0.288 l -9.864,2.304 c 0.288,0.072 0.576,0.216 0.936,0.288 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path19637"
-                   d="m 141.661,36.065 c -0.36,-0.144 -0.648,-0.216 -1.008,-0.288 l -9.864,2.232 c 0.36,0.144 0.649,0.216 0.936,0.36 l 9.936,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path19639"
-                   d="m 141.229,35.921 c -0.432,-0.144 -0.791,-0.216 -1.224,-0.288 l -9.72,2.232 c 0.36,0.144 0.72,0.216 1.08,0.36 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path19641"
-                   d="m 140.653,35.777 c -0.432,-0.144 -0.864,-0.216 -1.368,-0.288 l -9.576,2.232 c 0.36,0.072 0.72,0.216 1.08,0.288 l 9.864,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path19643"
-                   d="m 140.005,35.633 c -0.432,-0.144 -0.864,-0.216 -1.296,-0.288 l -9.432,2.232 c 0.36,0.072 0.649,0.144 1.008,0.288 l 9.72,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path19645"
-                   d="m 139.285,35.489 c -0.432,-0.072 -0.936,-0.144 -1.368,-0.216 l -9.216,2.088 c 0.36,0.144 0.72,0.216 1.008,0.36 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path19647"
-                   d="m 138.709,35.345 c -0.576,-0.072 -1.152,-0.144 -1.728,-0.144 l -8.856,2.016 c 0.361,0.144 0.792,0.216 1.152,0.36 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path19649"
-                   d="m 137.917,35.273 c -0.648,-0.072 -1.368,-0.144 -2.015,-0.144 l -8.425,1.944 c 0.432,0.072 0.864,0.216 1.224,0.288 l 9.216,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path19651"
-                   d="m 136.981,35.201 c -0.648,-0.072 -1.368,-0.072 -2.016,-0.072 l -7.92,1.8 c 0.36,0.072 0.72,0.216 1.08,0.288 l 8.856,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path19653"
-                   d="m 135.902,35.129 c -0.793,-0.072 -1.657,0 -2.521,0 l -6.984,1.656 c 0.36,0.072 0.72,0.216 1.08,0.288 l 8.425,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path19655"
-                   d="m 134.965,35.129 c -1.296,0 -2.592,0.072 -3.96,0.288 l -5.256,1.224 c 0.432,0.072 0.864,0.216 1.296,0.288 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path19657"
-                   d="m 133.381,35.129 c -2.376,0.216 -4.895,0.648 -7.704,1.44 0.216,0.072 0.504,0.144 0.72,0.216 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffab00" />
-                <path
-                   id="path19659"
-                   d="m 131.005,35.417 c -1.728,0.216 -3.456,0.648 -5.328,1.152 0,0.072 0.072,0.072 0.072,0.072 l 5.256,-1.224 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path19661"
-                   d="m 125.677,36.569 3.6,-0.864 3.384,-0.504 3.096,-0.144 2.88,0.288 2.664,0.576 2.448,0.864 2.232,1.08 2.016,1.44 1.944,1.584 1.728,1.8 1.584,1.944 1.512,2.088 1.368,2.16 1.296,2.304 1.152,2.304 1.152,2.376 -0.576,0.072 -0.792,0.072 -0.864,0.216 -0.936,0.144 -0.936,0.216 -0.864,0.216 -0.792,0.072 -0.648,0.072 -1.08,-2.16 -1.152,-1.944 -1.296,-1.872 -1.368,-1.728 -1.44,-1.656 -1.512,-1.512 -1.656,-1.368 -1.728,-1.296 -1.8,-1.152 -1.872,-1.08 -1.944,-0.936 -2.015,-0.936 -2.089,-0.792 -2.16,-0.72 -2.232,-0.648 -2.304,-0.576 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g19663">
-                <path
-                   id="path19665"
-                   d="m 152.677,56.009 c 0.216,0.36 0.36,0.648 0.504,0.936 -2.664,0 -5.832,1.44 -6.552,1.08 -0.288,-0.072 -0.504,-0.288 -0.792,-0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path19667"
-                   d="m 152.677,56.009 c 0,-0.144 -0.072,-0.216 -0.144,-0.36 l -7.2,1.656 c 0.144,0.072 0.36,0.216 0.504,0.288 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path19669"
-                   d="m 152.605,55.865 c -0.072,-0.216 -0.144,-0.36 -0.215,-0.504 l -7.416,1.728 c 0.215,0.072 0.431,0.216 0.647,0.36 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path19671"
-                   d="m 152.533,55.649 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.504 l -7.488,1.728 c 0.217,0.144 0.36,0.288 0.576,0.432 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path19673"
-                   d="m 152.39,55.361 c -0.073,-0.144 -0.217,-0.36 -0.289,-0.504 l -7.704,1.8 c 0.216,0.144 0.432,0.288 0.577,0.432 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path19675"
-                   d="m 152.245,55.145 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.848,1.8 c 0.216,0.144 0.36,0.216 0.576,0.36 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path19677"
-                   d="m 152.101,54.857 c -0.072,-0.144 -0.144,-0.288 -0.216,-0.432 l -7.992,1.872 c 0.144,0.072 0.36,0.216 0.504,0.36 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path19679"
-                   d="m 152.029,54.713 c -0.072,-0.216 -0.216,-0.36 -0.288,-0.504 l -8.136,1.872 c 0.216,0.144 0.36,0.288 0.576,0.432 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path19681"
-                   d="m 151.885,54.425 c -0.144,-0.144 -0.216,-0.36 -0.288,-0.504 l -8.28,1.944 c 0.145,0.144 0.36,0.288 0.576,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path19683"
-                   d="m 151.741,54.209 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.504 l -8.352,1.944 c 0.144,0.144 0.361,0.288 0.504,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path19685"
-                   d="m 151.597,53.921 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -8.496,1.944 c 0.144,0.144 0.288,0.288 0.504,0.432 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path19687"
-                   d="m 151.453,53.705 c -0.072,-0.144 -0.144,-0.288 -0.288,-0.432 l -8.64,2.016 c 0.216,0.144 0.36,0.288 0.576,0.36 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path19689"
-                   d="m 151.309,53.489 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.504 l -8.784,2.088 c 0.216,0.144 0.36,0.216 0.576,0.36 l 8.496,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path19691"
-                   d="m 151.165,53.273 c -0.072,-0.144 -0.144,-0.288 -0.287,-0.432 l -8.857,2.016 c 0.144,0.144 0.36,0.288 0.504,0.432 l 8.64,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path19693"
-                   d="m 151.021,52.985 c -0.071,-0.144 -0.216,-0.288 -0.288,-0.432 l -9,2.088 c 0.145,0.144 0.36,0.288 0.504,0.432 l 8.784,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path19695"
-                   d="m 150.878,52.841 c -0.073,-0.216 -0.145,-0.36 -0.289,-0.504 l -9.072,2.088 c 0.144,0.144 0.361,0.288 0.504,0.432 l 8.857,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path19697"
-                   d="m 150.733,52.553 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -9.216,2.088 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path19699"
-                   d="m 150.589,52.337 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -9.288,2.16 c 0.144,0.144 0.36,0.288 0.504,0.36 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path19701"
-                   d="m 150.445,52.121 c -0.144,-0.216 -0.216,-0.36 -0.36,-0.504 l -9.36,2.16 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.216,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path19703"
-                   d="m 150.301,51.905 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.504 l -9.432,2.232 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path19705"
-                   d="m 150.085,51.617 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -9.576,2.16 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.36,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path19707"
-                   d="m 149.941,51.401 c -0.072,-0.144 -0.216,-0.288 -0.288,-0.432 l -9.648,2.232 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.432,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path19709"
-                   d="m 149.797,51.185 c -0.144,-0.144 -0.216,-0.288 -0.359,-0.432 l -9.721,2.232 c 0.144,0.144 0.36,0.288 0.504,0.36 l 9.576,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path19711"
-                   d="m 149.653,50.969 c -0.144,-0.144 -0.215,-0.288 -0.36,-0.432 l -9.792,2.232 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path19713"
-                   d="m 149.438,50.753 c -0.145,-0.144 -0.217,-0.36 -0.361,-0.504 l -9.864,2.304 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.721,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path19715"
-                   d="m 149.293,50.537 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -9.936,2.232 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.792,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path19717"
-                   d="m 149.077,50.249 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -9.936,2.376 c 0.145,0.072 0.288,0.216 0.432,0.36 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path19719"
-                   d="m 148.933,50.105 c -0.144,-0.144 -0.216,-0.36 -0.36,-0.504 l -10.008,2.376 c 0.144,0.144 0.288,0.288 0.432,0.36 l 9.936,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path19721"
-                   d="m 148.717,49.817 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -10.08,2.376 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.936,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path19723"
-                   d="m 148.573,49.601 c -0.144,-0.144 -0.288,-0.288 -0.36,-0.432 l -10.152,2.376 c 0.144,0.144 0.288,0.288 0.504,0.432 l 10.008,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path19725"
-                   d="m 148.357,49.385 c -0.144,-0.144 -0.216,-0.288 -0.36,-0.432 l -10.224,2.376 c 0.216,0.144 0.36,0.288 0.504,0.432 l 10.08,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path19727"
-                   d="m 148.213,49.169 c -0.144,-0.144 -0.287,-0.288 -0.432,-0.432 l -10.224,2.376 c 0.144,0.144 0.36,0.288 0.504,0.432 l 10.152,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path19729"
-                   d="m 147.997,48.953 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.224,2.376 c 0.145,0.144 0.288,0.288 0.432,0.432 l 10.224,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path19731"
-                   d="m 147.781,48.737 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -10.368,2.376 c 0.216,0.144 0.361,0.288 0.504,0.432 l 10.224,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path19733"
-                   d="m 147.565,48.521 c -0.072,-0.144 -0.216,-0.288 -0.36,-0.432 l -10.368,2.376 c 0.144,0.144 0.288,0.288 0.504,0.432 l 10.224,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path19735"
-                   d="m 147.421,48.305 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.368,2.376 c 0.144,0.144 0.288,0.288 0.432,0.432 l 10.368,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path19737"
-                   d="m 147.205,48.089 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.44,2.448 c 0.216,0.072 0.36,0.216 0.504,0.36 l 10.368,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path19739"
-                   d="m 146.989,47.873 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.44,2.448 c 0.144,0.144 0.288,0.216 0.504,0.36 l 10.368,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path19741"
-                   d="m 146.773,47.657 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.439,2.448 c 0.143,0.144 0.287,0.288 0.431,0.432 l 10.44,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path19743"
-                   d="m 146.557,47.441 c -0.143,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.512,2.448 c 0.144,0.144 0.361,0.288 0.504,0.432 l 10.44,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path19745"
-                   d="m 146.341,47.225 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.512,2.448 c 0.144,0.144 0.288,0.288 0.505,0.432 l 10.439,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path19747"
-                   d="m 146.125,47.009 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.584,2.448 c 0.216,0.144 0.36,0.288 0.504,0.432 l 10.512,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path19749"
-                   d="m 145.909,46.793 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.584,2.448 c 0.144,0.144 0.36,0.288 0.504,0.432 l 10.512,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path19751"
-                   d="m 145.693,46.577 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.584,2.448 c 0.144,0.144 0.288,0.288 0.432,0.432 l 10.584,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path19753"
-                   d="m 145.477,46.361 c -0.144,-0.144 -0.36,-0.288 -0.503,-0.432 l -10.584,2.448 c 0.215,0.144 0.359,0.288 0.503,0.432 l 10.584,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path19755"
-                   d="m 145.261,46.145 c -0.144,-0.144 -0.359,-0.288 -0.504,-0.432 l -10.584,2.448 c 0.144,0.144 0.36,0.288 0.504,0.432 l 10.584,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path19757"
-                   d="m 144.974,45.929 c -0.145,-0.144 -0.289,-0.288 -0.505,-0.432 l -10.512,2.448 c 0.144,0.144 0.288,0.288 0.433,0.432 l 10.584,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path19759"
-                   d="m 144.757,45.713 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.36 l -10.584,2.448 c 0.216,0.072 0.36,0.216 0.504,0.36 l 10.584,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path19761"
-                   d="m 144.469,45.497 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -10.584,2.52 c 0.144,0.144 0.288,0.216 0.504,0.36 l 10.512,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path19763"
-                   d="m 144.325,45.353 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -10.584,2.448 c 0.216,0.144 0.36,0.288 0.504,0.432 l 10.656,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path19765"
-                   d="m 144.037,45.065 c -0.144,-0.072 -0.36,-0.216 -0.504,-0.36 l -10.512,2.448 c 0.144,0.144 0.288,0.288 0.432,0.432 l 10.584,-2.52 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path19767"
-                   d="m 143.749,44.921 c -0.144,-0.144 -0.287,-0.288 -0.504,-0.432 l -10.512,2.448 c 0.145,0.144 0.288,0.288 0.432,0.432 l 10.584,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path19769"
-                   d="m 143.533,44.705 c -0.143,-0.144 -0.288,-0.288 -0.504,-0.36 l -10.512,2.376 c 0.144,0.144 0.288,0.288 0.504,0.432 l 10.512,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path19771"
-                   d="m 143.245,44.489 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.36 l -10.512,2.448 c 0.216,0.072 0.36,0.216 0.504,0.36 l 10.512,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path19773"
-                   d="m 143.029,44.345 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -10.512,2.448 c 0.144,0.144 0.36,0.216 0.504,0.36 l 10.512,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path19775"
-                   d="m 142.741,44.129 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -10.44,2.448 c 0.144,0.144 0.288,0.288 0.432,0.432 l 10.512,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path19777"
-                   d="m 142.525,43.913 c -0.216,-0.144 -0.36,-0.288 -0.575,-0.432 l -10.441,2.448 c 0.144,0.144 0.36,0.288 0.504,0.432 l 10.512,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path19779"
-                   d="m 142.237,43.697 c -0.216,-0.144 -0.359,-0.288 -0.576,-0.432 l -10.368,2.448 c 0.145,0.144 0.288,0.288 0.504,0.432 l 10.44,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path19781"
-                   d="m 141.95,43.481 c -0.217,-0.144 -0.361,-0.216 -0.577,-0.36 l -10.368,2.376 c 0.144,0.144 0.36,0.288 0.504,0.432 l 10.441,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path19783"
-                   d="m 141.661,43.265 c -0.216,-0.072 -0.36,-0.216 -0.576,-0.36 l -10.296,2.376 c 0.144,0.144 0.288,0.288 0.504,0.432 l 10.368,-2.448 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path19785"
-                   d="m 141.373,43.121 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -10.296,2.376 c 0.144,0.144 0.36,0.288 0.504,0.432 l 10.368,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path19787"
-                   d="m 141.085,42.905 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.432 l -10.224,2.376 c 0.144,0.144 0.288,0.288 0.504,0.432 l 10.296,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path19789"
-                   d="m 140.797,42.689 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.36 l -10.151,2.304 c 0.143,0.144 0.359,0.288 0.503,0.432 l 10.296,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path19791"
-                   d="m 140.509,42.473 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.36 l -10.08,2.376 c 0.145,0.144 0.288,0.288 0.504,0.36 l 10.224,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path19793"
-                   d="m 140.149,42.329 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.432 l -10.08,2.376 c 0.144,0.144 0.36,0.288 0.505,0.36 l 10.151,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path19795"
-                   d="m 139.861,42.113 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.36 l -10.008,2.304 c 0.216,0.144 0.36,0.288 0.576,0.432 l 10.08,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path19797"
-                   d="m 139.573,41.897 c -0.216,-0.072 -0.432,-0.216 -0.647,-0.36 l -9.937,2.304 c 0.144,0.144 0.288,0.288 0.504,0.432 l 10.08,-2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path19799"
-                   d="m 139.213,41.753 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -9.864,2.304 c 0.216,0.144 0.36,0.288 0.504,0.432 l 10.008,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path19801"
-                   d="m 138.926,41.537 c -0.217,-0.144 -0.433,-0.216 -0.649,-0.36 l -9.863,2.232 c 0.215,0.144 0.359,0.288 0.575,0.432 l 9.937,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path19803"
-                   d="m 138.565,41.321 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.36 l -9.72,2.304 c 0.144,0.144 0.36,0.216 0.504,0.36 l 9.864,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path19805"
-                   d="m 138.277,41.177 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.36 l -9.648,2.232 c 0.144,0.144 0.36,0.288 0.505,0.36 l 9.863,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path19807"
-                   d="m 137.917,40.961 c -0.216,-0.144 -0.503,-0.216 -0.72,-0.36 l -9.576,2.232 c 0.216,0.144 0.36,0.288 0.576,0.432 l 9.72,-2.304 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path19809"
-                   d="m 137.557,40.817 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.36 l -9.504,2.16 c 0.216,0.144 0.36,0.288 0.576,0.432 l 9.648,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path19811"
-                   d="m 137.197,40.601 c -0.216,-0.144 -0.432,-0.216 -0.72,-0.36 l -9.36,2.232 c 0.216,0.072 0.36,0.216 0.504,0.36 l 9.576,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path19813"
-                   d="m 136.837,40.457 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.36 l -9.288,2.16 c 0.145,0.072 0.36,0.216 0.504,0.36 l 9.504,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path19815"
-                   d="m 136.477,40.241 c -0.216,-0.144 -0.503,-0.216 -0.72,-0.36 l -9.216,2.16 c 0.216,0.144 0.433,0.288 0.576,0.432 l 9.36,-2.232 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path19817"
-                   d="m 136.117,40.097 c -0.215,-0.144 -0.504,-0.216 -0.72,-0.36 l -9.072,2.088 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.288,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path19819"
-                   d="m 135.757,39.881 c -0.288,-0.144 -0.576,-0.216 -0.792,-0.36 l -8.928,2.088 c 0.144,0.144 0.36,0.288 0.504,0.432 l 9.216,-2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path19821"
-                   d="m 135.397,39.737 c -0.288,-0.144 -0.504,-0.216 -0.792,-0.36 l -8.856,2.088 c 0.216,0.144 0.36,0.288 0.576,0.36 l 9.072,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path19823"
-                   d="m 134.965,39.521 c -0.288,-0.072 -0.575,-0.216 -0.864,-0.288 l -8.639,2.016 c 0.143,0.144 0.359,0.216 0.575,0.36 l 8.928,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path19825"
-                   d="m 134.605,39.377 c -0.288,-0.072 -0.576,-0.216 -0.864,-0.288 l -8.568,1.944 c 0.217,0.144 0.432,0.288 0.576,0.432 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path19827"
-                   d="m 134.101,39.233 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.36 l -8.352,1.944 c 0.216,0.144 0.36,0.288 0.577,0.432 l 8.639,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path19829"
-                   d="m 133.741,39.089 c -0.288,-0.144 -0.576,-0.288 -0.863,-0.36 l -8.281,1.944 c 0.216,0.144 0.432,0.216 0.576,0.36 l 8.568,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path19831"
-                   d="m 133.237,38.873 c -0.287,-0.144 -0.576,-0.216 -0.864,-0.36 l -8.064,1.944 c 0.144,0.072 0.36,0.216 0.576,0.36 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path19833"
-                   d="m 132.878,38.729 c -0.289,-0.144 -0.577,-0.216 -0.865,-0.288 l -7.992,1.8 c 0.216,0.144 0.432,0.288 0.576,0.432 l 8.281,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path19835"
-                   d="m 132.373,38.513 c -0.36,-0.072 -0.648,-0.144 -0.935,-0.288 l -7.777,1.8 c 0.217,0.144 0.432,0.288 0.648,0.432 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path19837"
-                   d="m 131.941,38.441 c -0.288,-0.144 -0.648,-0.216 -0.936,-0.36 l -7.56,1.8 c 0.216,0.144 0.36,0.288 0.576,0.36 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path19839"
-                   d="m 131.438,38.225 c -0.361,-0.072 -0.721,-0.216 -1.009,-0.288 l -7.344,1.728 c 0.216,0.144 0.432,0.216 0.576,0.36 l 7.777,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path19841"
-                   d="m 131.005,38.081 c -0.36,-0.072 -0.72,-0.144 -1.079,-0.288 l -7.129,1.728 c 0.216,0.072 0.432,0.216 0.648,0.36 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path19843"
-                   d="m 130.429,37.937 c -0.36,-0.072 -0.72,-0.216 -1.08,-0.288 l -6.911,1.656 c 0.215,0.072 0.431,0.216 0.647,0.36 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffab00" />
-                <path
-                   id="path19845"
-                   d="m 129.926,37.793 c -0.361,-0.072 -0.721,-0.144 -1.081,-0.216 l -6.696,1.512 c 0.216,0.144 0.432,0.288 0.648,0.432 l 7.129,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path19847"
-                   d="m 129.349,37.649 c -0.432,-0.072 -0.792,-0.144 -1.152,-0.216 l -6.408,1.44 c 0.216,0.144 0.432,0.288 0.649,0.432 l 6.911,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffb800" />
-                <path
-                   id="path19849"
-                   d="m 128.845,37.577 c -0.431,-0.144 -0.792,-0.216 -1.224,-0.288 l -6.12,1.44 c 0.216,0.144 0.432,0.216 0.648,0.36 l 6.696,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffbf00" />
-                <path
-                   id="path19851"
-                   d="m 128.197,37.433 c -0.504,-0.144 -0.936,-0.216 -1.368,-0.288 l -5.688,1.368 c 0.216,0.144 0.432,0.216 0.648,0.36 l 6.408,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffc700" />
-                <path
-                   id="path19853"
-                   d="m 127.621,37.289 c -0.432,-0.072 -0.936,-0.144 -1.368,-0.216 l -5.4,1.296 c 0.216,0.144 0.432,0.216 0.648,0.36 l 6.12,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd100" />
-                <path
-                   id="path19855"
-                   d="m 126.829,37.145 c -0.432,-0.072 -0.936,-0.072 -1.439,-0.144 l -4.897,1.152 c 0.216,0.144 0.433,0.216 0.648,0.36 l 5.688,-1.368 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffd600" />
-                <path
-                   id="path19857"
-                   d="m 126.253,37.073 c -0.504,-0.072 -1.08,-0.072 -1.584,-0.144 l -4.536,1.08 c 0.288,0.072 0.504,0.216 0.72,0.36 l 5.4,-1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffde00" />
-                <path
-                   id="path19859"
-                   d="m 125.39,37.001 c -0.577,-0.072 -1.225,-0.072 -1.801,-0.144 l -3.816,0.936 c 0.216,0.072 0.432,0.216 0.72,0.36 l 4.897,-1.152 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffe600" />
-                <path
-                   id="path19861"
-                   d="m 124.669,36.929 c -0.719,-0.072 -1.368,-0.072 -2.016,-0.072 l -3.239,0.792 c 0.287,0.072 0.503,0.216 0.719,0.36 l 4.536,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffed00" />
-                <path
-                   id="path19863"
-                   d="m 123.589,36.857 c -0.936,0 -1.872,0 -2.736,0.144 l -1.872,0.432 c 0.288,0.072 0.505,0.216 0.792,0.36 l 3.816,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fff700" />
-                <path
-                   id="path19865"
-                   d="m 122.581,36.857 c -1.296,0.072 -2.592,0.216 -3.744,0.432 0.144,0.144 0.36,0.216 0.577,0.36 l 3.167,-0.792 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffff00" />
-                <path
-                   id="path19867"
-                   d="m 120.853,37.001 c -0.72,0.072 -1.367,0.144 -2.016,0.288 0,0.072 0.072,0.072 0.144,0.144 l 1.872,-0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffff00" />
-                <path
-                   id="path19869"
-                   d="m 118.837,37.289 2.016,-0.36 2.088,-0.072 2.304,0.072 2.376,0.36 2.377,0.504 2.447,0.72 2.448,0.936 2.448,1.152 2.448,1.368 2.304,1.584 2.232,1.728 2.16,1.944 1.944,2.16 1.8,2.304 1.584,2.52 1.368,2.736 -1.008,0.072 -1.008,0.144 -1.008,0.216 -1.008,0.216 -0.864,0.216 -0.72,0.216 -0.576,0.072 -0.36,-0.072 -1.44,-0.864 -1.44,-1.008 -1.512,-1.152 -1.584,-1.296 -1.584,-1.368 -1.655,-1.44 -1.729,-1.44 -1.728,-1.512 -1.8,-1.512 -1.8,-1.512 -1.871,-1.512 -1.873,-1.368 -1.944,-1.368 -1.872,-1.224 -2.016,-1.152 -1.944,-1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g19871">
-                <path
-                   id="path19873"
-                   d="m 143.605,56.153 c 1.008,0.72 2.016,1.44 3.096,2.016 -1.799,0.36 -6.192,0.504 -8.496,0.432 -0.504,-0.288 -0.936,-0.576 -1.368,-0.936 l 6.768,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path19875"
-                   d="m 143.605,56.153 c -0.215,-0.144 -0.432,-0.36 -0.648,-0.504 l -6.696,1.584 c 0.216,0.144 0.432,0.288 0.576,0.432 l 6.768,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path19877"
-                   d="m 143.317,55.937 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.504 l -6.695,1.584 c 0.215,0.144 0.431,0.288 0.575,0.432 l 6.768,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path19879"
-                   d="m 142.957,55.649 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -6.696,1.512 c 0.217,0.216 0.36,0.36 0.576,0.504 l 6.696,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path19881"
-                   d="m 142.669,55.433 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -6.696,1.512 c 0.216,0.216 0.432,0.36 0.649,0.576 l 6.695,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path19883"
-                   d="m 142.381,55.217 c -0.216,-0.216 -0.431,-0.36 -0.72,-0.504 l -6.624,1.512 c 0.216,0.216 0.432,0.36 0.648,0.504 l 6.696,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path19885"
-                   d="m 142.021,54.929 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.504 l -6.624,1.584 c 0.144,0.144 0.36,0.288 0.576,0.432 l 6.696,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path19887"
-                   d="m 141.661,54.713 c -0.144,-0.216 -0.36,-0.36 -0.576,-0.504 l -6.623,1.584 c 0.143,0.144 0.359,0.288 0.575,0.432 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path19889"
-                   d="m 141.373,54.425 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -6.624,1.512 c 0.216,0.216 0.432,0.36 0.648,0.576 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path19891"
-                   d="m 141.085,54.209 c -0.216,-0.144 -0.432,-0.36 -0.647,-0.504 l -6.625,1.512 c 0.216,0.216 0.432,0.36 0.577,0.576 l 6.695,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path19893"
-                   d="m 140.725,53.921 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -6.624,1.584 c 0.144,0.144 0.36,0.288 0.576,0.432 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path19895"
-                   d="m 140.438,53.705 c -0.217,-0.144 -0.361,-0.36 -0.577,-0.504 l -6.624,1.512 c 0.144,0.216 0.36,0.36 0.576,0.504 l 6.625,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path19897"
-                   d="m 140.149,53.417 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.504 l -6.623,1.512 c 0.215,0.216 0.431,0.36 0.647,0.576 l 6.624,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path19899"
-                   d="m 139.861,53.201 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -6.624,1.512 c 0.216,0.216 0.432,0.36 0.648,0.504 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path19901"
-                   d="m 139.501,52.913 c -0.216,-0.144 -0.36,-0.288 -0.575,-0.504 l -6.625,1.584 c 0.216,0.144 0.36,0.288 0.577,0.432 l 6.623,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path19903"
-                   d="m 139.213,52.697 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -6.624,1.512 c 0.216,0.216 0.36,0.36 0.576,0.504 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path19905"
-                   d="m 138.926,52.409 c -0.217,-0.144 -0.433,-0.36 -0.649,-0.504 l -6.552,1.512 c 0.216,0.216 0.36,0.36 0.576,0.576 l 6.625,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path19907"
-                   d="m 138.637,52.193 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -6.551,1.512 c 0.215,0.144 0.431,0.36 0.575,0.504 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path19909"
-                   d="m 138.277,51.905 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.504 l -6.552,1.584 c 0.216,0.144 0.36,0.288 0.576,0.432 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path19911"
-                   d="m 137.989,51.689 c -0.144,-0.216 -0.36,-0.36 -0.503,-0.504 l -6.625,1.512 c 0.216,0.144 0.36,0.36 0.577,0.504 l 6.551,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path19913"
-                   d="m 137.701,51.401 c -0.144,-0.144 -0.36,-0.36 -0.576,-0.504 l -6.552,1.512 c 0.144,0.216 0.36,0.36 0.576,0.576 l 6.552,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path19915"
-                   d="m 137.486,51.185 c -0.217,-0.144 -0.433,-0.36 -0.649,-0.504 l -6.552,1.512 c 0.216,0.144 0.432,0.36 0.576,0.504 l 6.625,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path19917"
-                   d="m 137.125,50.897 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -6.551,1.512 c 0.215,0.216 0.359,0.36 0.575,0.504 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path19919"
-                   d="m 136.837,50.681 c -0.216,-0.216 -0.36,-0.36 -0.576,-0.504 l -6.552,1.512 c 0.217,0.144 0.36,0.288 0.576,0.504 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path19921"
-                   d="m 136.549,50.393 c -0.216,-0.144 -0.432,-0.36 -0.575,-0.504 l -6.553,1.512 c 0.216,0.144 0.36,0.36 0.577,0.504 l 6.551,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path19923"
-                   d="m 136.261,50.177 c -0.216,-0.216 -0.359,-0.36 -0.576,-0.576 l -6.552,1.512 c 0.216,0.216 0.432,0.36 0.576,0.576 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path19925"
-                   d="m 135.974,49.889 c -0.217,-0.216 -0.433,-0.36 -0.577,-0.504 l -6.552,1.512 c 0.216,0.144 0.36,0.288 0.576,0.504 l 6.553,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path19927"
-                   d="m 135.685,49.601 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -6.48,1.512 c 0.144,0.144 0.36,0.288 0.504,0.432 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path19929"
-                   d="m 135.397,49.385 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -6.48,1.512 c 0.145,0.216 0.36,0.36 0.504,0.504 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path19931"
-                   d="m 135.109,49.169 c -0.216,-0.216 -0.432,-0.36 -0.576,-0.576 l -6.552,1.512 c 0.216,0.216 0.433,0.36 0.648,0.576 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path19933"
-                   d="m 134.821,48.881 c -0.216,-0.144 -0.359,-0.36 -0.576,-0.504 l -6.48,1.512 c 0.144,0.144 0.36,0.36 0.576,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path19935"
-                   d="m 134.533,48.593 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -6.48,1.512 c 0.144,0.216 0.36,0.36 0.504,0.504 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path19937"
-                   d="m 134.245,48.377 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -6.48,1.512 c 0.216,0.144 0.36,0.288 0.576,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path19939"
-                   d="m 133.957,48.089 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -6.48,1.512 c 0.216,0.144 0.432,0.36 0.648,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path19941"
-                   d="m 133.669,47.873 c -0.216,-0.144 -0.432,-0.36 -0.576,-0.504 l -6.48,1.512 c 0.216,0.144 0.361,0.288 0.576,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path19943"
-                   d="m 133.309,47.585 c -0.144,-0.144 -0.359,-0.288 -0.504,-0.504 l -6.48,1.512 c 0.144,0.144 0.36,0.36 0.504,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path19945"
-                   d="m 133.093,47.369 c -0.215,-0.216 -0.36,-0.36 -0.576,-0.504 l -6.48,1.512 c 0.216,0.144 0.36,0.288 0.576,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path19947"
-                   d="m 132.805,47.081 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -6.48,1.512 c 0.216,0.144 0.432,0.36 0.648,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path19949"
-                   d="m 132.517,46.865 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.576 l -6.407,1.512 c 0.143,0.216 0.359,0.36 0.575,0.576 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path19951"
-                   d="m 132.157,46.577 c -0.144,-0.144 -0.36,-0.36 -0.504,-0.504 l -6.48,1.512 c 0.144,0.144 0.36,0.288 0.504,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path19953"
-                   d="m 131.869,46.289 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -6.48,1.512 c 0.144,0.144 0.36,0.288 0.577,0.432 l 6.407,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path19955"
-                   d="m 131.653,46.073 c -0.215,-0.144 -0.432,-0.36 -0.648,-0.504 l -6.48,1.512 c 0.216,0.144 0.432,0.36 0.648,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path19957"
-                   d="m 131.365,45.857 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.576 l -6.48,1.512 c 0.216,0.216 0.432,0.36 0.648,0.576 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path19959"
-                   d="m 131.005,45.569 c -0.216,-0.216 -0.36,-0.36 -0.576,-0.504 l -6.479,1.512 c 0.215,0.144 0.359,0.288 0.575,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path19961"
-                   d="m 130.717,45.281 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.432 l -6.48,1.512 c 0.217,0.144 0.36,0.288 0.576,0.432 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path19963"
-                   d="m 130.429,45.065 c -0.216,-0.144 -0.431,-0.36 -0.648,-0.504 l -6.48,1.512 c 0.216,0.144 0.432,0.288 0.649,0.504 l 6.479,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path19965"
-                   d="m 130.141,44.849 c -0.215,-0.216 -0.432,-0.36 -0.576,-0.576 l -6.552,1.512 c 0.216,0.216 0.432,0.36 0.648,0.576 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path19967"
-                   d="m 129.781,44.561 c -0.144,-0.216 -0.36,-0.36 -0.504,-0.504 l -6.624,1.512 c 0.216,0.144 0.432,0.288 0.648,0.504 l 6.48,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path19969"
-                   d="m 129.565,44.273 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.432 l -6.624,1.512 c 0.216,0.144 0.432,0.288 0.648,0.432 l 6.552,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path19971"
-                   d="m 129.277,44.057 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.504 l -6.624,1.512 c 0.216,0.144 0.433,0.36 0.648,0.504 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path19973"
-                   d="m 128.989,43.841 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.576 l -6.696,1.584 c 0.288,0.144 0.504,0.288 0.72,0.504 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path19975"
-                   d="m 128.629,43.553 c -0.215,-0.216 -0.432,-0.36 -0.576,-0.504 l -6.696,1.512 c 0.216,0.216 0.432,0.36 0.648,0.504 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path19977"
-                   d="m 128.341,43.265 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -6.624,1.512 c 0.216,0.144 0.432,0.288 0.576,0.504 l 6.696,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path19979"
-                   d="m 128.053,43.049 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.504 l -6.696,1.584 c 0.217,0.144 0.432,0.288 0.648,0.432 l 6.696,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path19981"
-                   d="m 127.693,42.833 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.576 l -6.768,1.584 c 0.288,0.144 0.504,0.36 0.792,0.504 l 6.624,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path19983"
-                   d="m 127.405,42.545 c -0.216,-0.144 -0.431,-0.36 -0.648,-0.504 l -6.84,1.584 c 0.288,0.144 0.504,0.36 0.792,0.504 l 6.696,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path19985"
-                   d="m 127.045,42.257 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -6.912,1.584 c 0.288,0.144 0.504,0.288 0.72,0.432 l 6.768,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path19987"
-                   d="m 126.757,42.041 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.432 l -6.984,1.584 c 0.289,0.144 0.504,0.288 0.72,0.432 l 6.84,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path19989"
-                   d="m 126.469,41.825 c -0.216,-0.216 -0.504,-0.36 -0.72,-0.504 l -6.984,1.584 c 0.288,0.144 0.576,0.36 0.792,0.504 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path19991"
-                   d="m 126.181,41.609 c -0.288,-0.216 -0.504,-0.36 -0.719,-0.576 l -7.057,1.656 c 0.288,0.144 0.576,0.36 0.792,0.504 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path19993"
-                   d="m 125.749,41.321 c -0.216,-0.216 -0.432,-0.36 -0.648,-0.504 l -7.127,1.656 c 0.287,0.144 0.503,0.288 0.791,0.432 l 6.984,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path19995"
-                   d="m 125.462,41.033 c -0.217,-0.144 -0.433,-0.288 -0.649,-0.432 l -7.2,1.656 c 0.216,0.144 0.504,0.288 0.792,0.432 l 7.057,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path19997"
-                   d="m 125.101,40.817 c -0.216,-0.144 -0.432,-0.36 -0.72,-0.504 l -7.344,1.728 c 0.36,0.144 0.648,0.288 0.937,0.432 l 7.127,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path19999"
-                   d="m 124.813,40.601 c -0.288,-0.144 -0.504,-0.36 -0.72,-0.504 l -7.488,1.728 c 0.36,0.144 0.648,0.288 1.008,0.432 l 7.2,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path20001"
-                   d="m 124.381,40.313 c -0.216,-0.144 -0.431,-0.288 -0.648,-0.432 l -7.56,1.728 c 0.289,0.144 0.576,0.288 0.864,0.432 l 7.344,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path20003"
-                   d="m 124.093,40.097 c -0.288,-0.144 -0.504,-0.288 -0.72,-0.432 l -7.632,1.728 c 0.288,0.144 0.576,0.288 0.864,0.432 l 7.488,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path20005"
-                   d="m 123.733,39.881 c -0.288,-0.216 -0.504,-0.36 -0.792,-0.504 l -7.848,1.8 c 0.36,0.144 0.72,0.288 1.08,0.432 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path20007"
-                   d="m 123.373,39.665 c -0.288,-0.216 -0.504,-0.36 -0.792,-0.504 l -7.992,1.872 c 0.361,0.072 0.72,0.216 1.152,0.36 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path20009"
-                   d="m 122.941,39.377 c -0.216,-0.144 -0.503,-0.288 -0.72,-0.432 l -8.208,1.872 c 0.36,0.144 0.72,0.216 1.08,0.36 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path20011"
-                   d="m 122.581,39.161 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.432 l -8.423,1.944 c 0.359,0.072 0.719,0.216 1.151,0.36 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path20013"
-                   d="m 122.221,38.945 c -0.288,-0.216 -0.576,-0.36 -0.864,-0.504 l -8.712,2.016 c 0.432,0.144 0.936,0.216 1.368,0.36 l 8.208,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path20015"
-                   d="m 121.861,38.729 c -0.36,-0.216 -0.648,-0.36 -0.935,-0.504 l -9,2.088 c 0.503,0.144 1.007,0.216 1.512,0.36 l 8.423,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path20017"
-                   d="m 121.357,38.441 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.432 l -9.36,2.232 c 0.504,0.072 1.008,0.144 1.512,0.216 l 8.712,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path20019"
-                   d="m 120.926,38.225 c -0.289,-0.144 -0.577,-0.288 -0.865,-0.432 l -9.864,2.304 c 0.576,0.072 1.152,0.144 1.729,0.216 l 9,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path20021"
-                   d="m 109.333,39.953 c -0.072,0 -0.072,0.072 -0.072,0.072 0.576,0.072 1.225,0.072 1.872,0.216 l 9.36,-2.232 c -0.36,-0.144 -0.648,-0.288 -1.007,-0.432 l -10.153,2.376 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path20023"
-                   d="m 109.621,39.593 c -0.144,0.144 -0.216,0.288 -0.36,0.432 0.288,0.072 0.648,0.072 0.936,0.072 l 9.864,-2.304 c -0.36,-0.144 -0.72,-0.288 -1.08,-0.36 l -9.36,2.16 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path20025"
-                   d="m 110.053,39.161 c -0.288,0.216 -0.504,0.504 -0.72,0.792 l 10.153,-2.376 c -0.361,-0.144 -0.721,-0.216 -1.081,-0.36 l -8.352,1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path20027"
-                   d="m 110.414,38.801 c -0.217,0.216 -0.505,0.504 -0.793,0.792 l 9.36,-2.16 c -0.36,-0.144 -0.792,-0.288 -1.152,-0.36 l -7.415,1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path20029"
-                   d="m 110.917,38.369 c -0.288,0.216 -0.576,0.504 -0.864,0.792 l 8.352,-1.944 c -0.36,-0.144 -0.792,-0.216 -1.224,-0.288 l -6.264,1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path20031"
-                   d="m 111.781,37.793 c -0.432,0.288 -0.864,0.576 -1.367,1.008 l 7.415,-1.728 c -0.576,-0.144 -1.152,-0.288 -1.656,-0.288 l -4.392,1.008 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path20033"
-                   d="m 113.005,37.217 c -0.72,0.216 -1.368,0.648 -2.088,1.152 l 6.264,-1.44 c -0.864,-0.144 -1.656,-0.216 -2.448,-0.144 l -1.728,0.432 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path20035"
-                   d="m 109.261,40.025 1.8,-1.8 1.944,-1.08 2.017,-0.432 2.087,0.144 2.16,0.576 2.304,1.08 2.305,1.44 2.447,1.656 2.448,2.016 2.52,2.088 2.52,2.232 2.52,2.232 2.593,2.232 2.591,2.088 2.592,1.944 2.592,1.728 -0.792,0.144 -0.935,0.072 -1.153,0.072 -1.152,0.072 -1.224,0.072 -1.224,0 -1.08,0 -0.936,0 -1.944,-1.44 -1.871,-1.512 -1.873,-1.512 -1.728,-1.584 -1.728,-1.512 -1.656,-1.512 -1.656,-1.512 -1.656,-1.44 -1.728,-1.296 -1.656,-1.224 -1.728,-1.08 -1.8,-0.936 -1.872,-0.792 -1.944,-0.648 -2.016,-0.36 -2.088,-0.216 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g20037">
-                <path
-                   id="path20039"
-                   d="m 138.133,58.673 c 0.288,0.216 0.576,0.432 0.936,0.576 -1.512,0.216 -6.408,0.72 -6.984,0.864 -0.144,0.072 -0.216,0.072 -0.288,0.072 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path20041"
-                   d="m 138.133,58.673 c -0.216,-0.072 -0.432,-0.216 -0.576,-0.36 l -7.416,1.728 c 0.576,0.144 1.08,0.216 1.656,0.144 l 6.336,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path20043"
-                   d="m 137.845,58.529 c -0.216,-0.144 -0.431,-0.288 -0.648,-0.432 l -7.56,1.728 c 0.432,0.216 0.864,0.288 1.224,0.36 l 6.984,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path20045"
-                   d="m 137.557,58.313 c -0.216,-0.144 -0.504,-0.288 -0.72,-0.432 l -7.704,1.8 c 0.36,0.144 0.72,0.288 1.008,0.36 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path20047"
-                   d="m 137.197,58.097 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.848,1.872 c 0.288,0.144 0.576,0.216 0.864,0.288 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path20049"
-                   d="m 136.837,57.881 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -7.919,1.872 c 0.215,0.144 0.431,0.216 0.719,0.36 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path20051"
-                   d="m 136.621,57.665 c -0.216,-0.144 -0.432,-0.288 -0.647,-0.432 l -7.993,1.872 c 0.288,0.144 0.576,0.288 0.792,0.432 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path20053"
-                   d="m 136.333,57.449 c -0.216,-0.144 -0.431,-0.288 -0.648,-0.432 l -8.064,1.872 c 0.288,0.144 0.504,0.288 0.793,0.432 l 7.919,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path20055"
-                   d="m 135.974,57.233 c -0.145,-0.144 -0.361,-0.288 -0.505,-0.432 l -8.064,1.872 c 0.216,0.144 0.36,0.288 0.576,0.432 l 7.993,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path20057"
-                   d="m 135.685,57.017 c -0.216,-0.144 -0.36,-0.288 -0.504,-0.432 l -8.136,1.872 c 0.216,0.144 0.432,0.288 0.576,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path20059"
-                   d="m 135.469,56.801 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.064,1.872 c 0.217,0.144 0.432,0.288 0.648,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path20061"
-                   d="m 135.181,56.585 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.136,1.872 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path20063"
-                   d="m 134.821,56.369 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -8.136,1.872 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path20065"
-                   d="m 134.533,56.153 c -0.143,-0.144 -0.36,-0.288 -0.504,-0.432 l -8.136,1.872 c 0.144,0.144 0.36,0.288 0.504,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path20067"
-                   d="m 134.317,55.937 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -8.136,1.944 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path20069"
-                   d="m 134.029,55.721 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -8.136,1.944 c 0.145,0.144 0.36,0.288 0.576,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path20071"
-                   d="m 133.741,55.433 c -0.144,-0.072 -0.36,-0.216 -0.504,-0.36 l -8.136,1.872 c 0.144,0.144 0.289,0.288 0.504,0.432 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path20073"
-                   d="m 133.453,55.217 c -0.144,-0.144 -0.36,-0.288 -0.503,-0.432 l -8.137,1.944 c 0.144,0.144 0.288,0.288 0.504,0.432 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path20075"
-                   d="m 133.237,55.073 c -0.216,-0.144 -0.359,-0.36 -0.576,-0.504 l -8.136,1.944 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path20077"
-                   d="m 132.95,54.785 c -0.145,-0.144 -0.361,-0.288 -0.577,-0.432 l -8.136,1.872 c 0.216,0.144 0.36,0.36 0.576,0.504 l 8.137,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path20079"
-                   d="m 132.661,54.569 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.208,1.944 c 0.216,0.144 0.36,0.288 0.504,0.432 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path20081"
-                   d="m 132.373,54.353 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.136,1.872 c 0.145,0.144 0.288,0.288 0.432,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path20083"
-                   d="m 132.229,54.137 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.432 l -8.136,1.872 c 0.144,0.144 0.361,0.36 0.504,0.504 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path20085"
-                   d="m 131.941,53.921 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -8.136,1.944 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path20087"
-                   d="m 131.653,53.705 c -0.215,-0.216 -0.36,-0.36 -0.576,-0.504 l -8.136,1.872 c 0.216,0.216 0.36,0.36 0.576,0.504 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path20089"
-                   d="m 131.365,53.417 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -8.064,1.944 c 0.144,0.144 0.288,0.288 0.432,0.432 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path20091"
-                   d="m 131.077,53.201 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.135,1.872 c 0.143,0.144 0.287,0.288 0.431,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path20093"
-                   d="m 130.861,52.985 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -8.136,1.872 c 0.217,0.144 0.36,0.36 0.576,0.504 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path20095"
-                   d="m 130.645,52.769 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -8.064,1.872 c 0.144,0.144 0.36,0.288 0.505,0.432 l 8.135,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path20097"
-                   d="m 130.357,52.553 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -8.064,1.872 c 0.144,0.144 0.288,0.288 0.432,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path20099"
-                   d="m 130.069,52.337 c -0.143,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.136,1.872 c 0.216,0.144 0.36,0.288 0.504,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path20101"
-                   d="m 129.853,52.121 c -0.144,-0.144 -0.36,-0.36 -0.504,-0.504 l -8.064,1.872 c 0.144,0.216 0.36,0.36 0.504,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path20103"
-                   d="m 129.637,51.905 c -0.216,-0.216 -0.36,-0.36 -0.576,-0.504 l -8.063,1.872 c 0.215,0.144 0.359,0.36 0.503,0.504 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path20105"
-                   d="m 129.349,51.617 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -8.064,1.872 c 0.145,0.144 0.36,0.288 0.504,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path20107"
-                   d="m 129.061,51.401 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.064,1.872 c 0.144,0.144 0.288,0.288 0.433,0.432 l 8.063,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path20109"
-                   d="m 128.845,51.185 c -0.144,-0.144 -0.359,-0.288 -0.504,-0.432 l -8.064,1.872 c 0.144,0.144 0.36,0.288 0.504,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path20111"
-                   d="m 128.629,50.969 c -0.215,-0.144 -0.36,-0.288 -0.576,-0.504 l -8.064,1.944 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path20113"
-                   d="m 128.341,50.753 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.064,1.872 c 0.144,0.144 0.288,0.288 0.432,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path20115"
-                   d="m 128.053,50.465 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.064,1.944 c 0.144,0.144 0.288,0.288 0.432,0.432 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path20117"
-                   d="m 127.909,50.321 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -8.064,1.872 c 0.217,0.144 0.36,0.36 0.576,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path20119"
-                   d="m 127.621,50.033 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.992,1.872 c 0.144,0.144 0.361,0.288 0.504,0.504 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path20121"
-                   d="m 127.333,49.817 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -7.992,1.872 c 0.144,0.144 0.288,0.288 0.432,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path20123"
-                   d="m 127.045,49.601 c -0.143,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.064,1.872 c 0.144,0.144 0.288,0.288 0.504,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path20125"
-                   d="m 126.829,49.385 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.504 l -8.064,1.944 c 0.216,0.144 0.36,0.288 0.576,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path20127"
-                   d="m 126.613,49.169 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -8.063,1.872 c 0.215,0.144 0.431,0.36 0.575,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path20129"
-                   d="m 126.325,48.881 c -0.144,-0.072 -0.288,-0.216 -0.504,-0.36 l -7.992,1.872 c 0.145,0.144 0.288,0.288 0.432,0.432 l 8.064,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path20131"
-                   d="m 126.037,48.665 c -0.144,-0.144 -0.288,-0.288 -0.432,-0.432 l -8.064,1.872 c 0.144,0.144 0.288,0.288 0.433,0.432 l 8.063,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path20133"
-                   d="m 125.821,48.521 c -0.144,-0.144 -0.359,-0.36 -0.504,-0.504 l -8.064,1.872 c 0.216,0.144 0.36,0.36 0.576,0.504 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path20135"
-                   d="m 125.605,48.233 c -0.215,-0.144 -0.432,-0.288 -0.576,-0.432 l -8.064,1.872 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path20137"
-                   d="m 125.317,48.017 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -8.064,1.872 c 0.216,0.216 0.432,0.36 0.576,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path20139"
-                   d="m 125.029,47.801 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -8.063,1.872 c 0.215,0.144 0.359,0.288 0.503,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path20141"
-                   d="m 124.741,47.513 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.36 l -8.064,1.872 c 0.217,0.144 0.36,0.288 0.504,0.36 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path20143"
-                   d="m 124.525,47.369 c -0.216,-0.144 -0.36,-0.36 -0.575,-0.504 l -7.993,1.872 c 0.144,0.144 0.36,0.36 0.505,0.504 l 8.063,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path20145"
-                   d="m 124.237,47.153 c -0.216,-0.216 -0.359,-0.36 -0.576,-0.504 l -8.064,1.872 c 0.216,0.144 0.432,0.288 0.576,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path20147"
-                   d="m 123.95,46.865 c -0.145,-0.144 -0.289,-0.288 -0.505,-0.36 l -7.992,1.872 c 0.144,0.144 0.288,0.216 0.504,0.36 l 7.993,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path20149"
-                   d="m 123.661,46.649 c -0.144,-0.144 -0.288,-0.288 -0.504,-0.432 l -7.992,1.872 c 0.144,0.144 0.288,0.288 0.432,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path20151"
-                   d="m 123.445,46.505 c -0.144,-0.216 -0.36,-0.36 -0.576,-0.504 l -8.064,1.872 c 0.217,0.144 0.432,0.288 0.648,0.504 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path20153"
-                   d="m 123.157,46.217 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -8.064,1.872 c 0.216,0.144 0.433,0.288 0.648,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path20155"
-                   d="m 122.869,46.001 c -0.144,-0.144 -0.359,-0.288 -0.504,-0.432 l -8.064,1.872 c 0.216,0.144 0.36,0.288 0.504,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path20157"
-                   d="m 122.581,45.785 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.992,1.872 c 0.144,0.144 0.36,0.288 0.504,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path20159"
-                   d="m 122.365,45.569 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -7.992,1.872 c 0.144,0.144 0.36,0.288 0.576,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path20161"
-                   d="m 122.005,45.353 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.432 l -8.064,1.872 c 0.216,0.144 0.432,0.288 0.648,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path20163"
-                   d="m 121.717,45.137 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.992,1.872 c 0.216,0.144 0.361,0.288 0.576,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path20165"
-                   d="m 121.429,44.921 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.992,1.872 c 0.144,0.144 0.36,0.288 0.504,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path20167"
-                   d="m 121.141,44.705 c -0.143,-0.144 -0.36,-0.288 -0.576,-0.432 l -8.064,1.872 c 0.216,0.144 0.432,0.288 0.648,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path20169"
-                   d="m 120.853,44.489 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -7.992,1.872 c 0.216,0.144 0.432,0.288 0.648,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path20171"
-                   d="m 120.565,44.273 c -0.216,-0.144 -0.432,-0.288 -0.576,-0.432 l -8.063,1.872 c 0.215,0.144 0.431,0.288 0.575,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path20173"
-                   d="m 120.205,44.057 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.992,1.872 c 0.144,0.144 0.361,0.288 0.576,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path20175"
-                   d="m 119.989,43.841 c -0.288,-0.144 -0.503,-0.288 -0.72,-0.432 l -7.992,1.872 c 0.216,0.144 0.432,0.288 0.649,0.432 l 8.063,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path20177"
-                   d="m 119.629,43.625 c -0.288,-0.144 -0.504,-0.288 -0.72,-0.432 l -7.992,1.872 c 0.216,0.144 0.504,0.288 0.72,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path20179"
-                   d="m 119.269,43.409 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.36 l -7.992,1.872 c 0.216,0.072 0.432,0.216 0.648,0.36 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path20181"
-                   d="m 118.909,43.193 c -0.216,-0.144 -0.432,-0.216 -0.648,-0.36 l -7.92,1.872 c 0.145,0.072 0.36,0.216 0.576,0.36 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path20183"
-                   d="m 118.621,43.049 c -0.216,-0.144 -0.504,-0.288 -0.719,-0.432 l -7.921,1.872 c 0.216,0.144 0.433,0.288 0.648,0.432 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path20185"
-                   d="m 118.261,42.833 c -0.287,-0.144 -0.504,-0.288 -0.792,-0.432 l -7.848,1.872 c 0.216,0.144 0.432,0.288 0.72,0.432 l 7.92,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path20187"
-                   d="m 117.902,42.617 c -0.289,-0.144 -0.505,-0.288 -0.793,-0.432 l -7.848,1.872 c 0.216,0.144 0.432,0.288 0.72,0.432 l 7.921,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path20189"
-                   d="m 117.469,42.401 c -0.216,-0.144 -0.432,-0.216 -0.72,-0.36 l -7.847,1.8 c 0.287,0.144 0.503,0.288 0.719,0.432 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path20191"
-                   d="m 117.109,42.185 c -0.288,-0.144 -0.504,-0.216 -0.792,-0.36 l -7.776,1.8 c 0.216,0.144 0.433,0.288 0.72,0.432 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path20193"
-                   d="m 116.749,42.041 c -0.287,-0.144 -0.576,-0.288 -0.864,-0.432 l -7.704,1.8 c 0.216,0.144 0.504,0.288 0.721,0.432 l 7.847,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path20195"
-                   d="m 116.317,41.825 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.432 l -7.704,1.8 c 0.288,0.144 0.576,0.288 0.792,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path20197"
-                   d="m 115.885,41.609 c -0.216,-0.072 -0.504,-0.216 -0.792,-0.36 l -7.631,1.8 c 0.215,0.144 0.431,0.288 0.719,0.36 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path20199"
-                   d="m 115.453,41.393 c -0.288,-0.072 -0.575,-0.216 -0.864,-0.288 l -7.56,1.728 c 0.216,0.144 0.505,0.288 0.72,0.36 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6100" />
-                <path
-                   id="path20201"
-                   d="m 115.093,41.249 c -0.36,-0.072 -0.648,-0.216 -1.008,-0.36 l -7.488,1.8 c 0.288,0.072 0.576,0.216 0.865,0.36 l 7.631,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff6b00" />
-                <path
-                   id="path20203"
-                   d="m 114.589,41.105 c -0.36,-0.144 -0.72,-0.288 -1.008,-0.36 l -7.416,1.728 c 0.288,0.144 0.576,0.216 0.864,0.36 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7300" />
-                <path
-                   id="path20205"
-                   d="m 114.085,40.889 c -0.288,-0.072 -0.647,-0.216 -1.008,-0.288 l -7.272,1.728 c 0.288,0.072 0.576,0.216 0.792,0.36 l 7.488,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff7a00" />
-                <path
-                   id="path20207"
-                   d="m 113.581,40.745 c -0.36,-0.144 -0.72,-0.216 -1.08,-0.288 l -7.128,1.656 c 0.288,0.072 0.577,0.216 0.792,0.36 l 7.416,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8000" />
-                <path
-                   id="path20209"
-                   d="m 113.077,40.601 c -0.36,-0.144 -0.792,-0.216 -1.224,-0.288 l -6.912,1.584 c 0.288,0.144 0.576,0.288 0.864,0.432 l 7.272,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff8700" />
-                <path
-                   id="path20211"
-                   d="m 112.501,40.457 c -0.503,-0.144 -0.936,-0.216 -1.44,-0.288 l -6.623,1.584 c 0.287,0.072 0.647,0.216 0.935,0.36 l 7.128,-1.656 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9100" />
-                <path
-                   id="path20213"
-                   d="m 111.853,40.313 c -0.504,-0.072 -0.936,-0.144 -1.367,-0.216 l -6.481,1.512 c 0.36,0.072 0.648,0.216 0.936,0.288 l 6.912,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff9900" />
-                <path
-                   id="path20215"
-                   d="m 111.061,40.169 c -0.504,-0.072 -1.008,-0.144 -1.512,-0.216 l -6.048,1.44 c 0.288,0.072 0.648,0.216 0.937,0.36 l 6.623,-1.584 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffa100" />
-                <path
-                   id="path20217"
-                   d="m 110.486,40.097 c -0.649,-0.072 -1.369,-0.144 -2.017,-0.144 l -5.471,1.296 c 0.359,0.072 0.719,0.216 1.007,0.36 l 6.481,-1.512 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffab00" />
-                <path
-                   id="path20219"
-                   d="m 109.549,39.953 c -0.792,0 -1.584,0 -2.448,0 l -4.608,1.08 c 0.36,0.144 0.648,0.216 1.008,0.36 l 6.048,-1.44 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffad00" />
-                <path
-                   id="path20221"
-                   d="m 102.061,40.889 c 0.288,0.144 0.576,0.216 0.937,0.36 l 5.471,-1.296 c -1.079,0 -2.16,0.072 -3.24,0.216 l -3.168,0.72 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffb800" />
-                <path
-                   id="path20223"
-                   d="m 107.101,39.953 c -1.584,0.144 -3.312,0.432 -5.04,0.936 0.144,0.072 0.288,0.144 0.432,0.144 l 4.608,-1.08 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ffbf00" />
-                <path
-                   id="path20225"
-                   d="m 102.061,40.889 3.024,-0.72 2.808,-0.288 2.664,0.144 2.52,0.504 2.376,0.864 2.304,1.08 2.232,1.368 2.16,1.512 2.088,1.728 2.088,1.728 2.016,1.872 2.088,1.872 2.088,1.8 2.088,1.8 2.232,1.584 2.232,1.512 -0.72,0.072 -0.935,0.144 -1.081,0.144 -1.08,0.072 -1.08,0.144 -0.936,0.144 -0.72,0.072 -0.432,0.072 -1.296,0 -1.296,-0.36 -1.368,-0.648 -1.44,-0.936 -1.44,-1.152 -1.584,-1.368 -1.656,-1.512 -1.728,-1.584 -1.8,-1.656 -1.944,-1.728 -2.088,-1.656 -2.16,-1.584 -2.376,-1.512 -2.447,-1.368 -2.593,-1.224 -2.808,-0.936 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g20227">
-                <path
-                   id="path20229"
-                   d="m 128.125,59.105 c 1.224,0.72 2.232,1.152 3.096,1.008 -2.735,0.432 -7.56,1.224 -10.656,1.296 -0.216,-0.072 -0.432,-0.216 -0.576,-0.36 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path20231"
-                   d="m 128.125,59.105 c -0.216,-0.072 -0.432,-0.216 -0.648,-0.432 l -8.136,1.872 c 0.216,0.144 0.432,0.36 0.648,0.504 l 8.136,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#13007c" />
-                <path
-                   id="path20233"
-                   d="m 127.837,58.961 c -0.288,-0.144 -0.504,-0.36 -0.72,-0.504 l -8.064,1.872 c 0.216,0.144 0.361,0.288 0.576,0.504 l 8.208,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#18007c" />
-                <path
-                   id="path20235"
-                   d="m 127.477,58.673 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.064,1.872 c 0.144,0.144 0.36,0.288 0.576,0.432 l 8.136,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#20007c" />
-                <path
-                   id="path20237"
-                   d="m 127.117,58.457 c -0.215,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.064,1.872 c 0.216,0.144 0.432,0.288 0.648,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#25007c" />
-                <path
-                   id="path20239"
-                   d="m 126.829,58.241 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -8.064,1.8 c 0.216,0.216 0.432,0.36 0.648,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#2e007c" />
-                <path
-                   id="path20241"
-                   d="m 126.469,58.025 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.504 l -8.064,1.872 c 0.216,0.144 0.36,0.288 0.576,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#34007c" />
-                <path
-                   id="path20243"
-                   d="m 126.181,57.809 c -0.216,-0.216 -0.36,-0.36 -0.576,-0.504 l -8.064,1.872 c 0.216,0.144 0.361,0.288 0.576,0.432 l 8.064,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#37007d" />
-                <path
-                   id="path20245"
-                   d="m 125.893,57.521 c -0.216,-0.144 -0.431,-0.288 -0.576,-0.432 l -8.064,1.872 c 0.216,0.144 0.36,0.288 0.576,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#3f007d" />
-                <path
-                   id="path20247"
-                   d="m 125.605,57.305 c -0.215,-0.144 -0.432,-0.288 -0.576,-0.504 l -8.064,1.872 c 0.216,0.144 0.36,0.36 0.576,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#48007d" />
-                <path
-                   id="path20249"
-                   d="m 125.317,57.089 c -0.216,-0.144 -0.432,-0.36 -0.576,-0.504 l -8.064,1.872 c 0.216,0.144 0.36,0.288 0.576,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#4f007d" />
-                <path
-                   id="path20251"
-                   d="m 125.029,56.801 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.504 l -8.064,1.872 c 0.216,0.144 0.432,0.36 0.648,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#56017d" />
-                <path
-                   id="path20253"
-                   d="m 124.741,56.585 c -0.216,-0.144 -0.432,-0.36 -0.648,-0.504 l -8.064,1.8 c 0.216,0.216 0.433,0.36 0.648,0.576 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#5c007d" />
-                <path
-                   id="path20255"
-                   d="m 124.381,56.297 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -8.064,1.872 c 0.216,0.144 0.432,0.36 0.576,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#60007d" />
-                <path
-                   id="path20257"
-                   d="m 124.093,56.081 c -0.215,-0.144 -0.36,-0.36 -0.576,-0.504 l -8.064,1.872 c 0.216,0.144 0.432,0.288 0.576,0.432 l 8.064,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#67017d" />
-                <path
-                   id="path20259"
-                   d="m 123.805,55.793 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.992,1.8 c 0.144,0.216 0.36,0.36 0.504,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#70017d" />
-                <path
-                   id="path20261"
-                   d="m 123.517,55.577 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.504 l -7.991,1.872 c 0.143,0.144 0.359,0.36 0.503,0.504 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#77017d" />
-                <path
-                   id="path20263"
-                   d="m 123.229,55.361 c -0.144,-0.216 -0.36,-0.36 -0.576,-0.504 l -7.992,1.872 c 0.217,0.144 0.361,0.288 0.576,0.432 l 7.992,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#7d017d" />
-                <path
-                   id="path20265"
-                   d="m 122.941,55.073 c -0.144,-0.144 -0.36,-0.288 -0.503,-0.432 l -8.065,1.8 c 0.216,0.216 0.36,0.36 0.577,0.504 l 7.991,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#82017e" />
-                <path
-                   id="path20267"
-                   d="m 122.653,54.857 c -0.143,-0.144 -0.36,-0.288 -0.504,-0.504 l -7.992,1.872 c 0.144,0.144 0.36,0.288 0.504,0.504 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#88017e" />
-                <path
-                   id="path20269"
-                   d="m 122.438,54.641 c -0.217,-0.216 -0.361,-0.36 -0.577,-0.504 l -7.992,1.872 c 0.144,0.144 0.36,0.288 0.504,0.432 l 8.065,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#91017e" />
-                <path
-                   id="path20271"
-                   d="m 122.149,54.353 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.992,1.8 c 0.216,0.144 0.36,0.36 0.576,0.504 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#98017e" />
-                <path
-                   id="path20273"
-                   d="m 121.861,54.137 c -0.216,-0.144 -0.432,-0.36 -0.576,-0.504 l -7.992,1.8 c 0.217,0.216 0.36,0.36 0.576,0.576 l 7.992,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#9f017e" />
-                <path
-                   id="path20275"
-                   d="m 121.573,53.921 c -0.216,-0.216 -0.36,-0.36 -0.575,-0.576 l -7.921,1.872 c 0.144,0.144 0.361,0.36 0.504,0.504 l 7.992,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a7017e" />
-                <path
-                   id="path20277"
-                   d="m 121.285,53.633 c -0.216,-0.216 -0.359,-0.36 -0.576,-0.504 l -7.92,1.8 c 0.144,0.216 0.36,0.36 0.504,0.504 l 7.992,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#a9017e" />
-                <path
-                   id="path20279"
-                   d="m 120.998,53.345 c -0.217,-0.144 -0.361,-0.288 -0.577,-0.432 l -7.92,1.8 c 0.216,0.144 0.36,0.36 0.576,0.504 l 7.921,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b2017e" />
-                <path
-                   id="path20281"
-                   d="m 120.709,53.129 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -7.848,1.872 c 0.144,0.144 0.288,0.288 0.504,0.432 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#b8017e" />
-                <path
-                   id="path20283"
-                   d="m 120.421,52.913 c -0.144,-0.216 -0.36,-0.36 -0.504,-0.504 l -7.919,1.8 c 0.143,0.144 0.359,0.36 0.503,0.504 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#bf017e" />
-                <path
-                   id="path20285"
-                   d="m 120.133,52.625 c -0.144,-0.144 -0.36,-0.288 -0.504,-0.432 l -7.92,1.8 c 0.217,0.144 0.36,0.288 0.576,0.504 l 7.848,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#c8027f" />
-                <path
-                   id="path20287"
-                   d="m 119.917,52.409 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -7.848,1.8 c 0.144,0.216 0.36,0.36 0.505,0.504 l 7.919,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#cc027f" />
-                <path
-                   id="path20289"
-                   d="m 119.629,52.193 c -0.215,-0.216 -0.36,-0.36 -0.576,-0.504 l -7.848,1.8 c 0.216,0.144 0.36,0.36 0.504,0.504 l 7.92,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#d3027f" />
-                <path
-                   id="path20291"
-                   d="m 119.341,51.905 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.504 l -7.776,1.872 c 0.144,0.144 0.288,0.288 0.504,0.432 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#da027f" />
-                <path
-                   id="path20293"
-                   d="m 119.053,51.689 c -0.144,-0.144 -0.36,-0.36 -0.504,-0.504 l -7.848,1.8 c 0.144,0.144 0.36,0.36 0.504,0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e0027f" />
-                <path
-                   id="path20295"
-                   d="m 118.765,51.401 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.504 l -7.775,1.8 c 0.143,0.216 0.359,0.36 0.575,0.576 l 7.776,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#e9027f" />
-                <path
-                   id="path20297"
-                   d="m 118.549,51.185 c -0.216,-0.144 -0.432,-0.36 -0.647,-0.504 l -7.777,1.8 c 0.216,0.144 0.361,0.36 0.576,0.504 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027f" />
-                <path
-                   id="path20299"
-                   d="m 118.189,50.897 c -0.215,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.704,1.8 c 0.144,0.144 0.36,0.288 0.505,0.432 l 7.775,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f0027d" />
-                <path
-                   id="path20301"
-                   d="m 117.902,50.681 c -0.145,-0.144 -0.361,-0.36 -0.577,-0.504 l -7.704,1.8 c 0.144,0.216 0.36,0.36 0.504,0.504 l 7.777,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10279" />
-                <path
-                   id="path20303"
-                   d="m 117.613,50.465 c -0.144,-0.216 -0.36,-0.36 -0.576,-0.504 l -7.704,1.728 c 0.144,0.216 0.36,0.36 0.576,0.576 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f10275" />
-                <path
-                   id="path20305"
-                   d="m 117.325,50.177 c -0.144,-0.144 -0.36,-0.288 -0.576,-0.504 l -7.703,1.8 c 0.215,0.144 0.359,0.36 0.575,0.504 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f20270" />
-                <path
-                   id="path20307"
-                   d="m 117.037,49.961 c -0.144,-0.216 -0.36,-0.36 -0.575,-0.504 l -7.705,1.8 c 0.217,0.144 0.36,0.288 0.576,0.432 l 7.704,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016c" />
-                <path
-                   id="path20309"
-                   d="m 116.749,49.673 c -0.144,-0.144 -0.359,-0.288 -0.576,-0.432 l -7.632,1.728 c 0.144,0.216 0.361,0.36 0.505,0.504 l 7.703,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f2016b" />
-                <path
-                   id="path20311"
-                   d="m 116.462,49.457 c -0.145,-0.144 -0.361,-0.288 -0.577,-0.504 l -7.632,1.8 c 0.144,0.144 0.36,0.288 0.504,0.504 l 7.705,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f30166" />
-                <path
-                   id="path20313"
-                   d="m 116.173,49.241 c -0.144,-0.144 -0.36,-0.36 -0.576,-0.504 l -7.632,1.8 c 0.216,0.144 0.36,0.288 0.576,0.432 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40162" />
-                <path
-                   id="path20315"
-                   d="m 115.885,48.953 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.632,1.728 c 0.216,0.216 0.36,0.36 0.576,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f4015d" />
-                <path
-                   id="path20317"
-                   d="m 115.597,48.737 c -0.216,-0.144 -0.432,-0.36 -0.647,-0.504 l -7.56,1.8 c 0.144,0.144 0.359,0.288 0.575,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f40159" />
-                <path
-                   id="path20319"
-                   d="m 115.309,48.521 c -0.216,-0.144 -0.431,-0.36 -0.648,-0.504 l -7.56,1.728 c 0.216,0.216 0.361,0.36 0.576,0.504 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50155" />
-                <path
-                   id="path20321"
-                   d="m 114.95,48.233 c -0.145,-0.144 -0.361,-0.288 -0.577,-0.432 l -7.56,1.728 c 0.144,0.144 0.36,0.36 0.577,0.504 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f50153" />
-                <path
-                   id="path20323"
-                   d="m 114.661,48.017 c -0.216,-0.144 -0.36,-0.36 -0.576,-0.504 l -7.56,1.8 c 0.144,0.144 0.36,0.288 0.576,0.432 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014f" />
-                <path
-                   id="path20325"
-                   d="m 114.373,47.801 c -0.216,-0.216 -0.432,-0.36 -0.576,-0.504 l -7.632,1.8 c 0.216,0.144 0.432,0.288 0.648,0.432 l 7.56,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f6014a" />
-                <path
-                   id="path20327"
-                   d="m 114.085,47.513 c -0.216,-0.144 -0.432,-0.288 -0.647,-0.432 l -7.633,1.728 c 0.217,0.144 0.432,0.36 0.72,0.504 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70046" />
-                <path
-                   id="path20329"
-                   d="m 113.797,47.297 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.504 l -7.632,1.8 c 0.216,0.144 0.433,0.288 0.648,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70042" />
-                <path
-                   id="path20331"
-                   d="m 113.438,47.081 c -0.217,-0.216 -0.433,-0.36 -0.649,-0.504 l -7.56,1.8 c 0.216,0.144 0.432,0.288 0.576,0.432 l 7.633,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f70040" />
-                <path
-                   id="path20333"
-                   d="m 113.149,46.793 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -7.632,1.728 c 0.216,0.216 0.432,0.36 0.648,0.504 l 7.632,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f8003c" />
-                <path
-                   id="path20335"
-                   d="m 112.789,46.577 c -0.216,-0.144 -0.36,-0.288 -0.576,-0.432 l -7.703,1.728 c 0.287,0.144 0.503,0.36 0.719,0.504 l 7.56,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f80038" />
-                <path
-                   id="path20337"
-                   d="m 112.501,46.361 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -7.632,1.728 c 0.217,0.144 0.432,0.288 0.648,0.432 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#f90033" />
-                <path
-                   id="path20339"
-                   d="m 112.213,46.145 c -0.287,-0.144 -0.504,-0.36 -0.72,-0.504 l -7.704,1.8 c 0.288,0.144 0.504,0.288 0.721,0.432 l 7.703,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002f" />
-                <path
-                   id="path20341"
-                   d="m 111.853,45.929 c -0.216,-0.216 -0.504,-0.36 -0.72,-0.504 l -7.704,1.8 c 0.288,0.144 0.504,0.288 0.792,0.432 l 7.632,-1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa002a" />
-                <path
-                   id="path20343"
-                   d="m 111.493,45.641 c -0.216,-0.144 -0.432,-0.288 -0.72,-0.432 l -7.704,1.8 c 0.288,0.144 0.504,0.288 0.72,0.432 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fa0029" />
-                <path
-                   id="path20345"
-                   d="m 111.133,45.425 c -0.216,-0.144 -0.432,-0.288 -0.647,-0.432 l -7.777,1.8 c 0.289,0.144 0.504,0.288 0.72,0.432 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0024" />
-                <path
-                   id="path20347"
-                   d="m 110.773,45.209 c -0.216,-0.144 -0.432,-0.288 -0.648,-0.432 l -7.776,1.8 c 0.216,0.144 0.504,0.288 0.72,0.432 l 7.704,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fb0020" />
-                <path
-                   id="path20349"
-                   d="m 110.486,44.993 c -0.289,-0.144 -0.505,-0.288 -0.721,-0.432 l -7.848,1.8 c 0.288,0.144 0.504,0.288 0.792,0.432 l 7.777,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc001c" />
-                <path
-                   id="path20351"
-                   d="m 110.125,44.777 c -0.288,-0.144 -0.504,-0.36 -0.72,-0.504 l -7.919,1.872 c 0.287,0.144 0.575,0.288 0.863,0.432 l 7.776,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0017" />
-                <path
-                   id="path20353"
-                   d="m 109.765,44.561 c -0.288,-0.216 -0.504,-0.36 -0.791,-0.504 l -7.993,1.872 c 0.36,0.144 0.648,0.288 0.936,0.432 l 7.848,-1.8 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fc0016" />
-                <path
-                   id="path20355"
-                   d="m 109.405,44.273 c -0.288,-0.144 -0.576,-0.288 -0.792,-0.432 l -8.064,1.872 c 0.36,0.144 0.648,0.288 0.937,0.432 l 7.919,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd0011" />
-                <path
-                   id="path20357"
-                   d="m 108.974,44.057 c -0.289,-0.144 -0.505,-0.288 -0.793,-0.432 l -8.064,1.872 c 0.288,0.144 0.576,0.288 0.864,0.432 l 7.993,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fd000d" />
-                <path
-                   id="path20359"
-                   d="m 108.613,43.841 c -0.288,-0.144 -0.576,-0.288 -0.792,-0.432 l -8.208,1.872 c 0.289,0.144 0.648,0.288 0.936,0.432 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe000a" />
-                <path
-                   id="path20361"
-                   d="m 108.181,43.625 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.432 l -8.208,1.944 c 0.36,0.072 0.648,0.216 1.008,0.36 l 8.064,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#fe0007" />
-                <path
-                   id="path20363"
-                   d="m 107.821,43.409 c -0.287,-0.144 -0.648,-0.288 -0.936,-0.432 l -8.28,1.944 c 0.36,0.144 0.648,0.288 1.008,0.36 l 8.208,-1.872 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0000" />
-                <path
-                   id="path20365"
-                   d="m 107.317,43.193 c -0.288,-0.144 -0.576,-0.288 -0.864,-0.432 l -8.352,1.944 c 0.289,0.144 0.648,0.288 1.008,0.432 l 8.208,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff0a00" />
-                <path
-                   id="path20367"
-                   d="m 106.885,42.977 c -0.288,-0.144 -0.576,-0.288 -0.863,-0.432 l -8.497,2.016 c 0.36,0.144 0.72,0.216 1.08,0.36 l 8.28,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1100" />
-                <path
-                   id="path20369"
-                   d="m 106.453,42.761 c -0.288,-0.144 -0.575,-0.216 -0.936,-0.36 l -8.567,2.016 c 0.359,0.072 0.791,0.216 1.151,0.288 l 8.352,-1.944 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff1600" />
-                <path
-                   id="path20371"
-                   d="m 106.022,42.545 c -0.289,-0.072 -0.649,-0.216 -0.937,-0.36 l -8.712,2.016 c 0.432,0.144 0.792,0.216 1.152,0.36 l 8.497,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2000" />
-                <path
-                   id="path20373"
-                   d="m 105.517,42.401 c -0.288,-0.144 -0.648,-0.288 -1.007,-0.36 l -8.713,2.016 c 0.36,0.072 0.792,0.216 1.153,0.36 l 8.567,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2700" />
-                <path
-                   id="path20375"
-                   d="m 105.085,42.185 c -0.36,-0.144 -0.72,-0.216 -1.08,-0.36 l -8.856,2.088 c 0.432,0.072 0.792,0.216 1.224,0.288 l 8.712,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff2a00" />
-                <path
-                   id="path20377"
-                   d="m 104.51,42.041 c -0.361,-0.144 -0.793,-0.288 -1.225,-0.432 l -8.928,2.088 c 0.432,0.144 0.936,0.216 1.44,0.36 l 8.713,-2.016 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3300" />
-                <path
-                   id="path20379"
-                   d="m 104.005,41.825 c -0.432,-0.144 -0.864,-0.216 -1.296,-0.36 l -9,2.088 c 0.432,0.144 0.936,0.216 1.44,0.36 l 8.856,-2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff3e00" />
-                <path
-                   id="path20381"
-                   d="m 92.989,43.409 c 0.432,0.144 0.864,0.216 1.368,0.288 l 8.928,-2.088 c -0.432,-0.072 -0.864,-0.144 -1.296,-0.288 l -9,2.088 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4600" />
-                <path
-                   id="path20383"
-                   d="m 93.637,42.977 c -0.216,0.144 -0.432,0.288 -0.648,0.432 0.216,0.072 0.432,0.144 0.648,0.144 l 9.072,-2.088 c -0.576,-0.072 -1.08,-0.144 -1.584,-0.216 l -7.488,1.728 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff4d00" />
-                <path
-                   id="path20385"
-                   d="m 94.573,42.473 c -0.575,0.216 -1.08,0.576 -1.584,0.936 l 9,-2.016 c -0.648,-0.144 -1.296,-0.216 -1.943,-0.216 l -5.473,1.296 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5400" />
-                <path
-                   id="path20387"
-                   d="m 96.085,41.753 c -0.792,0.288 -1.584,0.72 -2.448,1.224 l 7.416,-1.728 c -0.864,-0.072 -1.8,-0.072 -2.736,0 l -2.232,0.504 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:#ff5900" />
-                <path
-                   id="path20389"
-                   d="m 92.989,43.409 2.664,-1.512 2.809,-0.648 2.735,0 2.808,0.576 2.808,1.08 2.808,1.512 2.736,1.8 2.665,1.944 2.519,2.16 2.448,2.16 2.376,2.016 2.16,1.872 1.944,1.584 1.8,1.224 1.584,0.72 1.368,0.216 -1.152,0.144 -1.224,0.216 -1.368,0.216 -1.44,0.216 -1.44,0.144 -1.44,0.216 -1.368,0.072 -1.224,0.072 -2.016,-1.512 -1.8,-1.44 -1.656,-1.44 -1.583,-1.368 -1.441,-1.368 -1.368,-1.368 -1.44,-1.296 -1.368,-1.224 -1.368,-1.152 -1.512,-1.08 -1.584,-1.008 -1.728,-0.936 -1.872,-0.864 -2.016,-0.72 -2.303,-0.648 -2.521,-0.576 z"
-                   i:knockout="Off"
-                   inkscape:connector-curvature="0"
-                   style="fill:none;stroke:#000000;stroke-width:0.215" />
-              </g>
-              <g
-                 id="g20391">
-                <g
-                   id="g20393">
-                  <path
-                     id="path20395"
-                     d="m 266.221,26.057 0,0.072 c 0,0 0,0 0,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#666666" />
-                  <path
-                     id="path20397"
-                     d="m 266.221,26.057 c 0.36,-0.864 0.792,-1.728 1.152,-2.592 l -0.864,0.144 c 0,1.152 -0.071,2.016 -0.288,2.448 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#666666" />
-                  <path
-                     id="path20399"
-                     d="m 266.797,24.833 c 0.36,-0.864 0.721,-1.728 1.151,-2.664 l -1.367,0.36 c -0.072,0.864 -0.072,1.728 -0.144,2.376 l 0.36,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20401"
-                     d="m 267.373,23.465 c 0.36,-0.864 0.792,-1.728 1.152,-2.664 l -1.944,0.504 c 0,0.792 0,1.656 -0.072,2.304 l 0.864,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20403"
-                     d="m 267.948,22.169 c 0.36,-0.864 0.793,-1.8 1.152,-2.664 l -2.52,0.576 c 0,0.792 0,1.656 0,2.448 l 1.368,-0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7a7a7a" />
-                  <path
-                     id="path20405"
-                     d="m 268.525,20.801 c 0.359,-0.792 0.72,-1.728 1.079,-2.592 l -2.951,0.72 c -0.072,0.792 -0.072,1.584 -0.072,2.376 l 1.944,-0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#808080" />
-                  <path
-                     id="path20407"
-                     d="m 269.101,19.505 c 0.36,-0.864 0.721,-1.728 1.008,-2.592 l -3.383,0.792 c -0.072,0.792 -0.145,1.584 -0.145,2.376 l 2.52,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#878787" />
-                  <path
-                     id="path20409"
-                     d="m 269.604,18.209 c 0.36,-0.864 0.648,-1.728 0.937,-2.664 l -3.744,0.864 c -0.071,0.792 -0.144,1.656 -0.144,2.52 l 2.951,-0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8f8f8f" />
-                  <path
-                     id="path20411"
-                     d="m 270.108,16.913 c 0.288,-0.864 0.576,-1.728 0.792,-2.592 l -3.959,0.936 c -0.072,0.792 -0.216,1.584 -0.216,2.448 l 3.383,-0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20413"
-                     d="m 270.541,15.545 c 0.288,-0.792 0.504,-1.656 0.72,-2.448 l -3.96,0.864 c -0.216,0.72 -0.359,1.584 -0.504,2.448 l 3.744,-0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20415"
-                     d="m 267.877,12.593 c -0.216,0.432 -0.359,0.792 -0.504,1.152 -0.216,0.504 -0.288,1.008 -0.432,1.512 l 3.959,-0.936 c 0.217,-0.792 0.433,-1.656 0.577,-2.52 l -3.6,0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20417"
-                     d="m 268.309,11.369 c -0.287,0.864 -0.575,1.656 -0.936,2.376 -0.072,0.072 -0.072,0.144 -0.072,0.216 l 3.96,-0.864 c 0.144,-0.864 0.288,-1.656 0.36,-2.448 l -3.312,0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a8a8a8" />
-                  <path
-                     id="path20419"
-                     d="m 268.669,10.073 c -0.216,0.936 -0.504,1.728 -0.792,2.52 l 3.601,-0.792 c 0.144,-0.792 0.215,-1.656 0.215,-2.448 l -3.024,0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b0b0b0" />
-                  <path
-                     id="path20421"
-                     d="m 268.957,8.777 c -0.216,0.936 -0.432,1.8 -0.648,2.592 l 3.312,-0.72 c 0.071,-0.864 0.144,-1.656 0.071,-2.52 l -2.735,0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20423"
-                     d="m 269.101,7.625 c -0.071,0.864 -0.216,1.656 -0.432,2.448 l 3.023,-0.72 c 0.072,-0.72 0.072,-1.512 -0.071,-2.304 l -2.52,0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20425"
-                     d="m 269.245,6.401 c -0.072,0.792 -0.145,1.584 -0.288,2.376 l 2.808,-0.648 c -0.072,-0.72 -0.144,-1.512 -0.287,-2.232 l -2.233,0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c2c2c2" />
-                  <path
-                     id="path20427"
-                     d="m 269.245,5.177 c 0,0.792 0,1.656 -0.145,2.448 l 2.521,-0.576 c -0.072,-0.792 -0.217,-1.584 -0.433,-2.304 l -1.943,0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c9c9c9" />
-                  <path
-                     id="path20429"
-                     d="m 269.245,4.025 c 0.072,0.792 0,1.584 0,2.376 l 2.232,-0.504 c -0.145,-0.792 -0.36,-1.512 -0.721,-2.232 l -1.511,0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d1d1d1" />
-                  <path
-                     id="path20431"
-                     d="m 269.173,2.873 c 0.072,0.72 0.072,1.512 0.072,2.304 l 1.943,-0.432 c -0.215,-0.72 -0.575,-1.44 -0.936,-2.16 l -1.079,0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d6d6d6" />
-                  <path
-                     id="path20433"
-                     d="m 268.957,1.649 c 0.144,0.792 0.288,1.584 0.288,2.376 l 1.512,-0.36 c -0.288,-0.72 -0.648,-1.44 -1.152,-2.16 l -0.648,0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#dedede" />
-                  <path
-                     id="path20435"
-                     d="m 268.741,0.569 c 0.144,0.72 0.288,1.512 0.432,2.304 l 1.08,-0.288 c -0.36,-0.72 -0.792,-1.368 -1.296,-2.016 l -0.216,0 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20437"
-                     d="m 268.957,1.649 c -0.072,-0.504 -0.216,-1.08 -0.36,-1.584 0.36,0.504 0.721,0.936 1.008,1.44 l -0.648,0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20439"
-                     d="m 267.373,13.745 0.36,-0.72 0.288,-0.792 0.287,-0.792 0.217,-0.792 0.216,-0.864 0.216,-0.936 0.144,-0.864 0.072,-0.936 0.072,-0.864 0.072,-0.936 0,-0.936 -0.072,-0.864 -0.072,-0.864 -0.144,-0.864 -0.217,-0.864 -0.216,-0.792 1.152,1.512 0.864,1.656 0.647,1.584 0.36,1.656 0.144,1.728 0,1.728 -0.216,1.728 -0.36,1.728 -0.432,1.728 -0.576,1.656 -0.647,1.656 -0.648,1.656 -0.72,1.584 -0.647,1.584 -0.648,1.44 -0.648,1.44 0.144,-0.288 0.073,-0.504 0.071,-0.504 0,-0.648 0.072,-0.792 0,-0.792 0,-0.864 0,-0.936 0.072,-0.936 0,-0.936 0.072,-1.008 0.071,-0.936 0.072,-0.864 0.144,-0.864 0.145,-0.792 0.216,-0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20441">
-                  <path
-                     id="path20443"
-                     d="m 269.749,31.745 c -0.072,0 -0.145,-0.072 -0.216,-0.144 0,0.072 0.071,0.144 0.144,0.216 l 0.072,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#4d4d4d" />
-                  <path
-                     id="path20445"
-                     d="m 269.749,31.745 c 0.72,0.432 1.439,0.792 2.088,1.152 l -0.863,0.216 c -0.433,-0.432 -0.865,-0.864 -1.297,-1.296 l 0.072,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#4d4d4d" />
-                  <path
-                     id="path20447"
-                     d="m 270.829,32.321 c 0.72,0.432 1.439,0.864 2.159,1.224 l -1.224,0.36 c -0.504,-0.504 -1.008,-1.008 -1.439,-1.44 l 0.504,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#545454" />
-                  <path
-                     id="path20449"
-                     d="m 271.837,32.897 c 0.721,0.432 1.439,0.864 2.16,1.296 l -1.584,0.36 c -0.504,-0.504 -0.936,-0.936 -1.439,-1.44 l 0.863,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#5c5c5c" />
-                  <path
-                     id="path20451"
-                     d="m 272.988,33.545 c 0.721,0.432 1.368,0.864 2.089,1.296 l -1.872,0.432 c -0.504,-0.432 -1.009,-0.936 -1.44,-1.368 l 1.223,-0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#636363" />
-                  <path
-                     id="path20453"
-                     d="m 273.997,34.193 c 0.648,0.36 1.367,0.792 2.016,1.224 l -2.16,0.504 c -0.432,-0.432 -0.936,-0.864 -1.439,-1.368 l 1.583,-0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20455"
-                     d="m 275.077,34.841 c 0.648,0.36 1.367,0.792 2.016,1.224 l -2.447,0.576 c -0.504,-0.432 -1.009,-0.864 -1.44,-1.368 l 1.871,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20457"
-                     d="m 276.013,35.417 c 0.721,0.432 1.368,0.864 2.017,1.224 l -2.665,0.72 c -0.504,-0.504 -1.008,-0.936 -1.512,-1.44 l 2.16,-0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7d7d7d" />
-                  <path
-                     id="path20459"
-                     d="m 277.093,36.065 c 0.648,0.432 1.296,0.864 2.016,1.296 l -2.879,0.648 c -0.576,-0.432 -1.08,-0.864 -1.584,-1.368 l 2.447,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#858585" />
-                  <path
-                     id="path20461"
-                     d="m 278.029,36.641 c 0.647,0.432 1.367,0.864 2.016,1.296 l -3.023,0.72 c -0.577,-0.432 -1.08,-0.864 -1.657,-1.296 l 2.664,-0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8c8c8c" />
-                  <path
-                     id="path20463"
-                     d="m 279.108,37.361 c 0.576,0.36 1.225,0.792 1.872,1.224 l -3.168,0.72 c -0.575,-0.36 -1.079,-0.792 -1.583,-1.296 l 2.879,-0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20465"
-                     d="m 280.045,37.937 c 0.647,0.432 1.296,0.864 1.943,1.296 l -3.239,0.792 c -0.576,-0.432 -1.152,-0.864 -1.728,-1.368 l 3.024,-0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20467"
-                     d="m 280.98,38.585 c 0.648,0.36 1.296,0.792 2.017,1.224 l -3.384,0.864 c -0.576,-0.432 -1.225,-0.864 -1.801,-1.368 l 3.168,-0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20469"
-                     d="m 281.988,39.233 c 0.648,0.36 1.368,0.792 2.017,1.224 l -3.384,0.864 c -0.647,-0.432 -1.296,-0.864 -1.872,-1.296 l 3.239,-0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#ababab" />
-                  <path
-                     id="path20471"
-                     d="m 282.997,39.809 c 0.648,0.432 1.296,0.864 2.016,1.296 l -3.384,0.792 c -0.648,-0.36 -1.368,-0.792 -2.016,-1.224 l 3.384,-0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20473"
-                     d="m 284.005,40.457 c 0.648,0.432 1.368,0.864 2.017,1.296 l -3.169,0.792 c -0.72,-0.36 -1.512,-0.792 -2.231,-1.224 l 3.383,-0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20475"
-                     d="m 285.013,41.105 c 0.648,0.36 1.296,0.792 2.017,1.224 l -2.88,0.72 c -0.793,-0.288 -1.656,-0.72 -2.521,-1.152 l 3.384,-0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c4c4c4" />
-                  <path
-                     id="path20477"
-                     d="m 286.021,41.753 c 0.72,0.36 1.367,0.792 2.087,1.224 l -2.231,0.576 c -1.008,-0.216 -2.017,-0.576 -3.024,-1.008 l 3.168,-0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#cccccc" />
-                  <path
-                     id="path20479"
-                     d="m 287.029,42.329 c 0.72,0.432 1.367,0.792 2.088,1.224 l -0.648,0.144 c -1.439,0.072 -2.88,-0.144 -4.319,-0.648 l 2.879,-0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d4d4d4" />
-                  <path
-                     id="path20481"
-                     d="m 288.108,42.977 c 0.433,0.216 0.792,0.432 1.225,0.648 -1.152,0.216 -2.304,0.144 -3.385,-0.072 l 2.16,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#dbdbdb" />
-                  <path
-                     id="path20483"
-                     d="m 289.117,43.553 c 0.071,0.072 0.144,0.072 0.216,0.072 -0.288,0.072 -0.576,0.072 -0.864,0.072 l 0.648,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20485"
-                     d="m 289.333,43.625 -1.368,-0.792 -1.368,-0.864 -1.296,-0.792 -1.296,-0.792 -1.225,-0.72 -1.223,-0.792 -1.153,-0.72 -1.151,-0.792 -1.224,-0.72 -1.152,-0.72 -1.151,-0.792 -1.225,-0.72 -1.151,-0.72 -1.225,-0.648 -1.296,-0.72 -1.296,-0.72 1.151,1.152 1.152,1.152 1.151,1.152 1.153,1.08 1.223,1.152 1.225,1.008 1.224,1.008 1.296,0.936 1.225,0.864 1.296,0.72 1.224,0.648 1.297,0.504 1.295,0.432 1.297,0.216 1.296,0.072 1.295,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20487">
-                  <path
-                     id="path20489"
-                     d="m 266.581,26.273 c -0.144,0.216 -0.288,0.432 -0.432,0.576 0,-0.144 0.071,-0.288 0.144,-0.504 l 0.288,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20491"
-                     d="m 267.229,25.481 c -0.36,0.432 -0.721,0.936 -1.08,1.368 0.071,-0.36 0.215,-0.792 0.359,-1.224 l 0.721,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7a7a7a" />
-                  <path
-                     id="path20493"
-                     d="m 266.581,26.273 c 0.432,-0.576 0.863,-1.08 1.296,-1.656 l -1.08,0.288 c -0.216,0.432 -0.359,0.936 -0.504,1.44 l 0.288,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#808080" />
-                  <path
-                     id="path20495"
-                     d="m 267.229,25.481 c 0.359,-0.576 0.792,-1.08 1.224,-1.584 l -1.44,0.288 c -0.144,0.504 -0.287,0.936 -0.504,1.44 l 0.72,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#878787" />
-                  <path
-                     id="path20497"
-                     d="m 267.877,24.617 c 0.36,-0.504 0.792,-1.08 1.224,-1.584 l -1.8,0.432 c -0.144,0.432 -0.359,0.936 -0.504,1.44 l 1.08,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8f8f8f" />
-                  <path
-                     id="path20499"
-                     d="m 268.453,23.897 c 0.432,-0.576 0.936,-1.152 1.368,-1.728 l -2.16,0.504 c -0.217,0.504 -0.432,1.008 -0.648,1.512 l 1.44,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20501"
-                     d="m 269.101,23.033 c 0.504,-0.576 1.008,-1.152 1.513,-1.728 l -2.592,0.648 c -0.217,0.504 -0.504,1.008 -0.721,1.512 l 1.8,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20503"
-                     d="m 269.821,22.169 c 0.504,-0.576 1.008,-1.08 1.512,-1.656 l -2.952,0.72 c -0.288,0.504 -0.504,0.936 -0.72,1.44 l 2.16,-0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20505"
-                     d="m 270.613,21.305 c 0.504,-0.576 1.079,-1.152 1.583,-1.656 l -3.312,0.792 c -0.359,0.504 -0.576,1.008 -0.863,1.512 l 2.592,-0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a8a8a8" />
-                  <path
-                     id="path20507"
-                     d="m 271.333,20.513 c 0.576,-0.576 1.225,-1.224 1.872,-1.8 l -3.816,0.936 c -0.359,0.504 -0.72,1.008 -1.008,1.584 l 2.952,-0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b0b0b0" />
-                  <path
-                     id="path20509"
-                     d="m 272.196,19.649 c 0.648,-0.576 1.297,-1.152 1.945,-1.728 l -4.177,0.936 c -0.432,0.504 -0.792,1.008 -1.08,1.584 l 3.312,-0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20511"
-                     d="m 273.205,18.713 c 0.647,-0.576 1.368,-1.224 2.159,-1.8 l -4.535,1.08 c -0.576,0.504 -1.008,1.08 -1.44,1.656 l 3.816,-0.936 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20513"
-                     d="m 274.142,17.921 c 0.863,-0.72 1.728,-1.368 2.663,-2.016 l -4.896,1.152 c -0.721,0.576 -1.368,1.152 -1.944,1.8 l 4.177,-0.936 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c2c2c2" />
-                  <path
-                     id="path20515"
-                     d="m 275.364,16.913 c 0.937,-0.72 2.017,-1.368 3.097,-2.016 l -4.896,1.152 c -1.081,0.504 -2.017,1.224 -2.736,1.944 l 4.535,-1.08 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c9c9c9" />
-                  <path
-                     id="path20517"
-                     d="m 276.805,15.905 c 0.576,-0.36 1.152,-0.72 1.8,-1.08 -2.879,0.144 -5.039,1.008 -6.695,2.232 l 4.895,-1.152 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d1d1d1" />
-                  <path
-                     id="path20519"
-                     d="m 278.461,14.897 c 0.072,0 0.072,0 0.144,-0.072 -2.016,0.144 -3.671,0.576 -5.039,1.224 l 4.895,-1.152 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d6d6d6" />
-                  <path
-                     id="path20521"
-                     d="m 278.604,14.825 -1.008,0.576 -0.936,0.648 -0.936,0.648 -0.865,0.648 -0.863,0.648 -0.792,0.72 -0.792,0.792 -0.792,0.72 -0.721,0.792 -0.72,0.792 -0.72,0.792 -0.648,0.864 -0.72,0.792 -0.648,0.864 -0.647,0.864 -0.647,0.864 0.288,-0.936 0.359,-0.936 0.36,-1.008 0.432,-1.008 0.433,-1.008 0.504,-0.936 0.575,-0.936 0.648,-0.936 0.72,-0.864 0.864,-0.72 0.936,-0.72 1.008,-0.648 1.152,-0.504 1.225,-0.432 1.439,-0.288 1.512,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20523">
-                  <path
-                     id="path20525"
-                     d="m 269.029,25.409 c -0.072,0.144 -0.145,0.216 -0.217,0.288 l -0.359,-0.144 0.576,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#666666" />
-                  <path
-                     id="path20527"
-                     d="m 269.533,24.833 c -0.288,0.288 -0.504,0.576 -0.721,0.864 l -0.359,-0.144 c -0.072,-0.144 -0.072,-0.36 -0.072,-0.504 l 1.152,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20529"
-                     d="m 269.029,25.409 c 0.288,-0.36 0.647,-0.792 0.936,-1.224 l -1.584,0.36 c 0,0.36 0,0.648 0.072,1.008 l 0.576,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20531"
-                     d="m 269.533,24.833 c 0.288,-0.432 0.575,-0.792 0.863,-1.224 l -1.943,0.432 c -0.072,0.288 -0.072,0.648 -0.072,1.008 l 1.152,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7a7a7a" />
-                  <path
-                     id="path20533"
-                     d="m 269.965,24.185 c 0.288,-0.36 0.504,-0.72 0.792,-1.152 l -2.231,0.504 c -0.072,0.36 -0.145,0.648 -0.145,1.008 l 1.584,-0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#808080" />
-                  <path
-                     id="path20535"
-                     d="m 270.396,23.609 c 0.217,-0.36 0.504,-0.72 0.721,-1.152 l -2.448,0.576 c -0.072,0.288 -0.216,0.648 -0.216,1.008 l 1.943,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#878787" />
-                  <path
-                     id="path20537"
-                     d="m 270.757,23.033 c 0.217,-0.36 0.504,-0.72 0.721,-1.152 l -2.521,0.576 c -0.216,0.36 -0.36,0.72 -0.432,1.08 l 2.232,-0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8f8f8f" />
-                  <path
-                     id="path20539"
-                     d="m 271.117,22.457 c 0.216,-0.36 0.432,-0.72 0.647,-1.152 l -2.376,0.576 c -0.288,0.36 -0.576,0.72 -0.72,1.152 l 2.449,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20541"
-                     d="m 271.478,21.881 c 0.215,-0.36 0.432,-0.72 0.575,-1.152 l -2.088,0.504 c -0.432,0.432 -0.792,0.792 -1.008,1.224 l 2.521,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20543"
-                     d="m 271.765,21.305 c 0.216,-0.36 0.432,-0.72 0.576,-1.08 l -1.8,0.432 c -0.504,0.432 -0.864,0.864 -1.152,1.224 l 2.376,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20545"
-                     d="m 272.053,20.729 c 0.216,-0.36 0.432,-0.72 0.576,-1.08 l -1.512,0.36 c -0.433,0.504 -0.864,0.864 -1.152,1.224 l 2.088,-0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a8a8a8" />
-                  <path
-                     id="path20547"
-                     d="m 272.341,20.225 c 0.217,-0.36 0.36,-0.72 0.504,-1.08 l -1.224,0.288 c -0.433,0.504 -0.792,0.864 -1.08,1.224 l 1.8,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b0b0b0" />
-                  <path
-                     id="path20549"
-                     d="m 272.629,19.649 c 0.144,-0.36 0.288,-0.72 0.433,-1.08 l -0.937,0.216 c -0.36,0.432 -0.721,0.864 -1.008,1.224 l 1.512,-0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20551"
-                     d="m 272.845,19.145 c 0.144,-0.36 0.288,-0.72 0.432,-1.08 l -0.792,0.144 c -0.288,0.432 -0.575,0.864 -0.863,1.224 l 1.223,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20553"
-                     d="m 273.062,18.569 c 0.144,-0.36 0.288,-0.72 0.359,-1.08 l -0.504,0.072 c -0.288,0.504 -0.576,0.864 -0.792,1.224 l 0.937,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c2c2c2" />
-                  <path
-                     id="path20555"
-                     d="m 273.276,18.065 c 0.073,-0.36 0.217,-0.72 0.289,-1.08 l -0.289,0.072 c -0.288,0.432 -0.504,0.792 -0.792,1.152 l 0.792,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c9c9c9" />
-                  <path
-                     id="path20557"
-                     d="m 273.421,17.489 c 0.145,-0.36 0.216,-0.72 0.288,-1.08 l -0.072,0 c -0.216,0.432 -0.504,0.864 -0.72,1.152 l 0.504,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d1d1d1" />
-                  <path
-                     id="path20559"
-                     d="m 273.565,16.985 c 0.071,-0.288 0.144,-0.504 0.215,-0.792 -0.215,0.288 -0.359,0.576 -0.504,0.864 l 0.289,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d6d6d6" />
-                  <path
-                     id="path20561"
-                     d="m 273.709,16.409 c 0,-0.072 0,-0.144 0.071,-0.216 -0.071,0.072 -0.144,0.144 -0.144,0.216 l 0.073,0 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#dedede" />
-                  <path
-                     id="path20563"
-                     d="m 273.78,16.193 -0.287,1.224 -0.432,1.296 -0.577,1.296 -0.647,1.224 -0.72,1.224 -0.721,1.152 -0.792,1.08 -0.792,1.008 -0.359,-0.144 0,-1.44 0.216,-1.08 0.432,-0.792 0.648,-0.792 0.792,-0.792 0.937,-1.08 1.08,-1.44 1.222,-1.944 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20565">
-                  <path
-                     id="path20567"
-                     d="m 264.565,26.633 c -0.072,0.288 -0.145,0.576 -0.145,0.792 -0.071,-0.216 -0.071,-0.504 -0.145,-0.72 l 0.29,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#666666" />
-                  <path
-                     id="path20569"
-                     d="m 264.565,26.633 c 0.144,-0.648 0.287,-1.368 0.432,-2.016 l -0.864,0.216 c 0,0.648 0.072,1.224 0.144,1.872 l 0.288,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#666666" />
-                  <path
-                     id="path20571"
-                     d="m 264.78,25.697 c 0.145,-0.72 0.289,-1.44 0.361,-2.088 l -1.153,0.288 c 0.073,0.648 0.145,1.296 0.217,1.944 l 0.575,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20573"
-                     d="m 264.997,24.617 c 0.145,-0.648 0.216,-1.368 0.359,-2.016 l -1.439,0.36 c 0.071,0.576 0.145,1.224 0.216,1.872 l 0.864,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20575"
-                     d="m 265.142,23.609 c 0.144,-0.648 0.287,-1.296 0.359,-2.016 l -1.656,0.432 c 0,0.648 0.072,1.224 0.144,1.872 l 1.153,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7a7a7a" />
-                  <path
-                     id="path20577"
-                     d="m 265.356,22.601 c 0.072,-0.648 0.217,-1.368 0.289,-2.016 l -1.873,0.432 c 0,0.648 0.072,1.296 0.145,1.944 l 1.439,-0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#808080" />
-                  <path
-                     id="path20579"
-                     d="m 265.501,21.593 c 0.072,-0.648 0.216,-1.296 0.288,-2.016 l -2.088,0.504 c 0,0.648 0.071,1.296 0.144,1.944 l 1.656,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#878787" />
-                  <path
-                     id="path20581"
-                     d="m 265.646,20.585 c 0.144,-0.648 0.215,-1.296 0.288,-2.016 l -2.305,0.576 c 0.072,0.576 0.072,1.224 0.144,1.872 l 1.873,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8f8f8f" />
-                  <path
-                     id="path20583"
-                     d="m 265.789,19.577 c 0.071,-0.648 0.216,-1.296 0.288,-1.944 l -2.448,0.576 c 0,0.576 0,1.224 0.072,1.872 l 2.088,-0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20585"
-                     d="m 265.934,18.569 c 0.071,-0.648 0.216,-1.296 0.287,-1.944 l -2.592,0.576 c 0,0.648 0,1.296 0,1.944 l 2.305,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20587"
-                     d="m 266.077,17.633 c 0.072,-0.648 0.144,-1.368 0.287,-2.016 l -2.735,0.648 c 0,0.576 0,1.296 0,1.944 l 2.448,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20589"
-                     d="m 266.221,16.625 c 0.072,-0.72 0.144,-1.368 0.288,-2.016 l -2.808,0.648 c -0.072,0.648 -0.072,1.296 -0.072,1.944 l 2.592,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a8a8a8" />
-                  <path
-                     id="path20591"
-                     d="m 266.364,15.617 c 0.073,-0.648 0.145,-1.368 0.289,-2.016 l -2.881,0.648 c -0.071,0.648 -0.071,1.296 -0.144,2.016 l 2.736,-0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b0b0b0" />
-                  <path
-                     id="path20593"
-                     d="m 266.509,14.609 c 0.072,-0.648 0.145,-1.296 0.217,-1.944 l -2.809,0.648 c -0.072,0.576 -0.145,1.224 -0.216,1.944 l 2.808,-0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20595"
-                     d="m 266.653,13.601 c 0.072,-0.648 0.144,-1.296 0.288,-2.016 l -2.809,0.648 c -0.145,0.648 -0.216,1.368 -0.36,2.016 l 2.881,-0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20597"
-                     d="m 266.726,12.665 c 0.144,-0.72 0.216,-1.368 0.359,-2.088 l -2.664,0.648 c -0.216,0.648 -0.359,1.296 -0.504,2.088 l 2.809,-0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c2c2c2" />
-                  <path
-                     id="path20599"
-                     d="m 266.941,11.585 c 0.071,-0.648 0.144,-1.296 0.288,-1.944 l -2.449,0.576 c -0.287,0.648 -0.504,1.296 -0.647,2.016 l 2.808,-0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c9c9c9" />
-                  <path
-                     id="path20601"
-                     d="m 267.085,10.577 c 0.072,-0.648 0.216,-1.296 0.288,-1.944 l -2.088,0.432 c -0.36,0.72 -0.648,1.368 -0.864,2.16 l 2.664,-0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d1d1d1" />
-                  <path
-                     id="path20603"
-                     d="m 267.229,9.641 c 0.071,-0.648 0.215,-1.368 0.359,-2.016 l -1.512,0.288 c -0.576,0.72 -0.936,1.44 -1.297,2.304 l 2.45,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d6d6d6" />
-                  <path
-                     id="path20605"
-                     d="m 267.373,8.633 c 0.145,-0.72 0.288,-1.368 0.432,-2.088 l -0.575,0.144 c -0.792,0.648 -1.44,1.512 -1.944,2.376 l 2.087,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#dedede" />
-                  <path
-                     id="path20607"
-                     d="m 267.589,7.625 c 0.072,-0.504 0.145,-0.936 0.288,-1.44 -0.72,0.504 -1.296,1.08 -1.8,1.728 l 1.512,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20609"
-                     d="m 267.805,6.545 c 0,-0.072 0,-0.216 0.072,-0.36 -0.216,0.144 -0.433,0.36 -0.647,0.504 l 0.575,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20611"
-                     d="m 267.877,6.185 -0.288,1.44 -0.216,1.44 -0.288,1.44 -0.216,1.296 -0.144,1.368 -0.217,1.296 -0.145,1.296 -0.215,1.296 -0.145,1.296 -0.216,1.296 -0.144,1.224 -0.217,1.296 -0.216,1.296 -0.216,1.296 -0.288,1.296 -0.288,1.368 -0.145,-1.584 -0.215,-1.512 -0.145,-1.584 -0.145,-1.584 -0.071,-1.512 -0.072,-1.512 0.072,-1.512 0.071,-1.44 0.145,-1.44 0.216,-1.296 0.36,-1.296 0.432,-1.224 0.504,-1.08 0.721,-1.008 0.792,-0.864 0.939,-0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20613">
-                  <path
-                     id="path20615"
-                     d="m 268.453,23.969 c -0.576,0.648 -1.009,1.152 -1.368,1.584 0,-0.432 0,-0.864 0,-1.296 l 1.368,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20617"
-                     d="m 267.229,25.409 c 0.575,-0.72 1.512,-1.728 2.52,-2.808 l -2.52,0.576 c -0.072,0.72 -0.145,1.44 -0.145,2.232 l 0.145,0 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20619"
-                     d="m 268.453,23.969 c 0.792,-0.792 1.655,-1.728 2.521,-2.736 l -3.601,0.864 c -0.144,0.648 -0.216,1.368 -0.288,2.16 l 1.368,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7a7a7a" />
-                  <path
-                     id="path20621"
-                     d="m 269.749,22.601 c 0.792,-0.864 1.655,-1.8 2.52,-2.808 l -4.68,1.08 c -0.145,0.72 -0.288,1.512 -0.359,2.304 l 2.519,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#808080" />
-                  <path
-                     id="path20623"
-                     d="m 270.974,21.233 c 0.791,-0.864 1.655,-1.8 2.447,-2.736 l -5.473,1.224 c -0.215,0.72 -0.431,1.512 -0.575,2.376 l 3.601,-0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#878787" />
-                  <path
-                     id="path20625"
-                     d="m 272.269,19.793 c 0.72,-0.792 1.44,-1.728 2.16,-2.592 l -6.048,1.368 c -0.288,0.72 -0.576,1.44 -0.792,2.304 l 4.68,-1.08 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8f8f8f" />
-                  <path
-                     id="path20627"
-                     d="m 273.421,18.497 c 0.648,-0.864 1.296,-1.728 1.943,-2.664 l -6.335,1.44 c -0.433,0.72 -0.792,1.584 -1.081,2.448 l 5.473,-1.224 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20629"
-                     d="m 274.429,17.201 c 0.648,-0.864 1.225,-1.8 1.729,-2.664 l -6.336,1.512 c -0.504,0.72 -1.009,1.584 -1.44,2.52 l 6.047,-1.368 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20631"
-                     d="m 275.364,15.833 c 0.505,-0.792 1.009,-1.656 1.44,-2.52 l -5.976,1.44 c -0.648,0.792 -1.225,1.584 -1.8,2.52 l 6.336,-1.44 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20633"
-                     d="m 276.157,14.537 c 0.504,-0.792 0.864,-1.656 1.224,-2.448 l -5.4,1.296 c -0.72,0.864 -1.439,1.728 -2.159,2.664 l 6.335,-1.512 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a8a8a8" />
-                  <path
-                     id="path20635"
-                     d="m 276.805,13.313 c 0.433,-0.792 0.721,-1.584 0.937,-2.376 l -4.753,1.152 c -0.72,0.936 -1.439,1.8 -2.159,2.664 l 5.975,-1.44 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b0b0b0" />
-                  <path
-                     id="path20637"
-                     d="m 277.381,12.089 c 0.288,-0.792 0.504,-1.512 0.648,-2.304 l -4.249,1.008 c -0.575,0.936 -1.151,1.8 -1.8,2.592 l 5.401,-1.296 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20639"
-                     d="m 277.741,10.937 c 0.216,-0.792 0.359,-1.512 0.359,-2.232 l -3.672,0.792 c -0.432,1.008 -0.936,1.8 -1.44,2.592 l 4.753,-1.152 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20641"
-                     d="m 278.029,9.785 c 0.071,-0.72 0.071,-1.44 -0.072,-2.16 l -3.168,0.72 c -0.288,0.936 -0.576,1.728 -1.009,2.448 l 4.249,-1.008 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c2c2c2" />
-                  <path
-                     id="path20643"
-                     d="m 278.101,8.705 c 0,-0.72 -0.144,-1.44 -0.432,-2.088 l -2.52,0.576 c -0.216,0.864 -0.433,1.656 -0.721,2.304 l 3.673,-0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c9c9c9" />
-                  <path
-                     id="path20645"
-                     d="m 277.957,7.625 c -0.072,-0.72 -0.36,-1.368 -0.792,-2.016 l -1.801,0.432 c -0.144,0.864 -0.287,1.656 -0.575,2.304 l 3.168,-0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d1d1d1" />
-                  <path
-                     id="path20647"
-                     d="m 277.669,6.617 c -0.216,-0.648 -0.647,-1.296 -1.151,-1.872 l -1.009,0.216 c -0.071,0.792 -0.216,1.584 -0.359,2.232 l 2.519,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d6d6d6" />
-                  <path
-                     id="path20649"
-                     d="m 277.165,5.609 c -0.36,-0.648 -0.936,-1.224 -1.584,-1.8 -0.072,0.864 -0.144,1.584 -0.217,2.232 l 1.801,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#dedede" />
-                  <path
-                     id="path20651"
-                     d="m 276.518,4.745 c -0.288,-0.36 -0.576,-0.648 -0.937,-0.936 -0.072,0.432 -0.072,0.792 -0.072,1.152 l 1.009,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20653"
-                     d="m 275.581,3.809 1.296,1.224 0.792,1.368 0.36,1.44 0.071,1.512 -0.288,1.512 -0.575,1.584 -0.793,1.584 -0.936,1.584 -1.08,1.512 -1.152,1.512 -1.224,1.44 -1.224,1.296 -1.152,1.296 -1.008,1.08 -0.864,1.008 -0.72,0.792 0.145,-2.16 0.288,-1.872 0.359,-1.584 0.576,-1.44 0.576,-1.224 0.72,-1.08 0.72,-1.008 0.792,-0.936 0.72,-0.936 0.792,-0.936 0.721,-1.008 0.576,-1.152 0.576,-1.296 0.432,-1.44 0.36,-1.728 0.144,-1.944 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20655">
-                  <path
-                     id="path20657"
-                     d="m 266.293,25.049 c 0,0.576 0,1.224 0.071,1.8 0,-0.576 0.289,-1.224 0.577,-1.944 l -0.648,0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#666666" />
-                  <path
-                     id="path20659"
-                     d="m 266.293,24.041 c 0,0.648 0,1.368 0,2.088 l 0.216,-0.072 c 0.217,-0.648 0.576,-1.44 1.009,-2.304 l -1.225,0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20661"
-                     d="m 266.221,22.961 c 0,0.72 0.072,1.368 0.072,2.088 l 0.648,-0.144 c 0.359,-0.72 0.72,-1.512 1.151,-2.376 l -1.871,0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20663"
-                     d="m 266.149,21.953 c 0.071,0.648 0.071,1.368 0.144,2.088 l 1.225,-0.288 c 0.359,-0.72 0.72,-1.512 1.079,-2.376 l -2.448,0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7a7a7a" />
-                  <path
-                     id="path20665"
-                     d="m 266.149,20.945 c 0,0.648 0.071,1.296 0.071,2.016 l 1.872,-0.432 c 0.288,-0.72 0.648,-1.44 0.864,-2.232 l -2.807,0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#808080" />
-                  <path
-                     id="path20667"
-                     d="m 266.077,19.865 c 0,0.72 0.072,1.368 0.072,2.088 l 2.447,-0.576 c 0.216,-0.72 0.504,-1.44 0.648,-2.232 l -3.167,0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#878787" />
-                  <path
-                     id="path20669"
-                     d="m 266.005,18.857 c 0,0.648 0.072,1.368 0.145,2.088 l 2.808,-0.648 c 0.216,-0.72 0.36,-1.44 0.504,-2.232 l -3.457,0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8f8f8f" />
-                  <path
-                     id="path20671"
-                     d="m 265.86,17.849 c 0.073,0.648 0.145,1.368 0.217,2.016 l 3.168,-0.72 c 0.144,-0.648 0.216,-1.368 0.216,-2.16 l -3.601,0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20673"
-                     d="m 265.789,16.841 c 0.071,0.648 0.145,1.296 0.216,2.016 l 3.456,-0.792 c 0.072,-0.72 0.072,-1.368 0,-2.088 l -3.672,0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20675"
-                     d="m 265.646,15.833 c 0.071,0.648 0.144,1.368 0.215,2.016 l 3.601,-0.864 c 0,-0.648 0,-1.296 -0.144,-2.016 l -3.672,0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20677"
-                     d="m 265.501,14.753 c 0.072,0.72 0.145,1.368 0.288,2.088 l 3.672,-0.864 c -0.072,-0.648 -0.216,-1.368 -0.432,-2.016 l -3.528,0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a8a8a8" />
-                  <path
-                     id="path20679"
-                     d="m 265.285,13.817 c 0.144,0.648 0.216,1.296 0.36,2.016 l 3.672,-0.864 c -0.145,-0.648 -0.36,-1.296 -0.576,-1.944 l -3.456,0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b0b0b0" />
-                  <path
-                     id="path20681"
-                     d="m 265.069,12.809 c 0.144,0.648 0.287,1.296 0.432,1.944 l 3.528,-0.792 c -0.145,-0.648 -0.433,-1.224 -0.721,-1.872 l -3.239,0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20683"
-                     d="m 264.853,11.801 c 0.217,0.648 0.36,1.368 0.433,2.016 l 3.456,-0.792 c -0.288,-0.648 -0.576,-1.296 -0.937,-1.944 l -2.952,0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20685"
-                     d="m 264.637,10.793 c 0.144,0.648 0.36,1.368 0.433,2.016 l 3.239,-0.72 c -0.287,-0.648 -0.647,-1.224 -1.079,-1.872 l -2.593,0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c2c2c2" />
-                  <path
-                     id="path20687"
-                     d="m 264.35,9.857 c 0.216,0.648 0.359,1.296 0.503,1.944 l 2.952,-0.72 c -0.36,-0.576 -0.792,-1.152 -1.224,-1.728 l -2.231,0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c9c9c9" />
-                  <path
-                     id="path20689"
-                     d="m 264.062,8.849 c 0.215,0.648 0.432,1.296 0.575,1.944 l 2.593,-0.576 c -0.433,-0.576 -0.865,-1.152 -1.369,-1.8 l -1.799,0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d1d1d1" />
-                  <path
-                     id="path20691"
-                     d="m 263.701,7.913 c 0.287,0.648 0.504,1.296 0.648,1.944 l 2.231,-0.504 c -0.432,-0.576 -0.936,-1.152 -1.512,-1.8 l -1.367,0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d6d6d6" />
-                  <path
-                     id="path20693"
-                     d="m 263.341,6.905 c 0.288,0.648 0.504,1.296 0.721,1.944 l 1.799,-0.432 c -0.432,-0.576 -1.008,-1.152 -1.584,-1.728 l -0.936,0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#dedede" />
-                  <path
-                     id="path20695"
-                     d="m 262.98,5.969 c 0.288,0.648 0.504,1.296 0.721,1.944 l 1.368,-0.36 c -0.504,-0.504 -1.008,-1.08 -1.656,-1.656 l -0.433,0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20697"
-                     d="m 263.341,6.905 c -0.216,-0.576 -0.432,-1.152 -0.648,-1.728 0.576,0.504 1.08,1.008 1.584,1.512 l -0.936,0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20699"
-                     d="m 266.364,26.849 0,-1.512 -0.071,-1.44 -0.072,-1.44 -0.071,-1.44 -0.072,-1.368 -0.144,-1.368 -0.145,-1.368 -0.144,-1.296 -0.217,-1.296 -0.216,-1.368 -0.36,-1.296 -0.287,-1.296 -0.36,-1.296 -0.504,-1.296 -0.433,-1.296 -0.576,-1.296 2.088,2.016 1.729,1.944 1.225,1.8 0.863,1.728 0.576,1.656 0.288,1.512 0.072,1.512 -0.145,1.368 -0.359,1.296 -0.36,1.224 -0.504,1.152 -0.504,1.008 -0.432,1.008 -0.433,0.864 -0.288,0.864 -0.144,0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20701">
-                  <path
-                     id="path20703"
-                     d="m 271.261,32.177 c -0.647,-0.072 -1.296,-0.144 -1.872,-0.288 0.288,0.216 0.648,0.36 1.008,0.504 l 0.864,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#4d4d4d" />
-                  <path
-                     id="path20705"
-                     d="m 269.821,31.961 c 0.936,0.144 1.8,0.216 2.663,0.36 l -1.367,0.36 c -0.504,-0.216 -1.009,-0.432 -1.513,-0.648 l 0.217,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#545454" />
-                  <path
-                     id="path20707"
-                     d="m 271.261,32.177 c 0.936,0.072 1.872,0.216 2.809,0.288 l -2.16,0.504 c -0.505,-0.144 -1.009,-0.36 -1.513,-0.576 l 0.864,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#5c5c5c" />
-                  <path
-                     id="path20709"
-                     d="m 272.484,32.321 c 1.009,0.072 2.017,0.216 3.024,0.216 l -2.88,0.72 c -0.504,-0.144 -1.08,-0.36 -1.512,-0.576 l 1.368,-0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#636363" />
-                  <path
-                     id="path20711"
-                     d="m 274.069,32.465 c 1.008,0.072 2.088,0.144 3.168,0.216 l -3.744,0.936 c -0.505,-0.216 -1.08,-0.432 -1.584,-0.648 l 2.16,-0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20713"
-                     d="m 275.509,32.537 c 1.08,0.144 2.232,0.144 3.384,0.144 l -4.607,1.152 c -0.576,-0.144 -1.08,-0.36 -1.656,-0.576 l 2.879,-0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20715"
-                     d="m 277.237,32.681 c 1.296,0 2.663,0.072 4.031,0 l -5.904,1.44 c -0.647,-0.144 -1.295,-0.36 -1.871,-0.504 l 3.744,-0.936 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7d7d7d" />
-                  <path
-                     id="path20717"
-                     d="m 278.893,32.681 c 1.729,0 3.457,-0.072 5.185,-0.288 l -7.776,1.944 c -0.72,-0.144 -1.367,-0.288 -2.016,-0.504 l 4.607,-1.152 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#858585" />
-                  <path
-                     id="path20719"
-                     d="m 281.269,32.681 c 2.017,-0.144 4.104,-0.36 6.192,-0.864 -3.384,2.592 -6.696,3.168 -9.864,2.736 -0.792,-0.072 -1.512,-0.216 -2.232,-0.432 l 5.904,-1.44 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8c8c8c" />
-                  <path
-                     id="path20721"
-                     d="m 284.077,32.393 c 1.08,-0.144 2.231,-0.288 3.384,-0.576 -2.808,2.232 -5.616,2.952 -8.353,2.88 -0.936,0 -1.871,-0.144 -2.808,-0.36 l 7.777,-1.944 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20723"
-                     d="m 286.885,32.249 c -3.168,2.232 -6.336,2.664 -9.288,2.304 l 9.288,-2.304 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20725"
-                     d="m 285.518,33.113 c -2.161,1.224 -4.321,1.584 -6.409,1.584 l 6.409,-1.584 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20727"
-                     d="m 287.461,31.817 -1.152,0.216 -1.151,0.216 -1.152,0.144 -1.152,0.144 -1.151,0.072 -1.152,0.072 -1.152,0 -1.079,0 -1.152,-0.072 -1.08,0 -1.151,-0.144 -1.081,-0.072 -1.151,-0.072 -1.08,-0.144 -1.152,-0.144 -1.08,-0.144 0.937,0.432 0.936,0.36 1.008,0.432 1.008,0.36 1.08,0.36 1.081,0.288 1.151,0.288 1.152,0.144 1.151,0.072 1.225,0 1.224,-0.072 1.225,-0.288 1.224,-0.36 1.224,-0.504 1.225,-0.72 1.217,-0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20729">
-                  <path
-                     id="path20731"
-                     d="m 269.317,32.249 c -0.145,-0.072 -0.36,-0.144 -0.505,-0.288 l -0.287,0.216 c 0,0.144 0,0.216 0.071,0.288 l 0.721,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#4d4d4d" />
-                  <path
-                     id="path20733"
-                     d="m 269.893,32.537 c -0.359,-0.216 -0.72,-0.36 -1.08,-0.576 l -0.287,0.216 c 0,0.288 0.071,0.432 0.144,0.648 l 1.223,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#545454" />
-                  <path
-                     id="path20735"
-                     d="m 269.317,32.249 c 0.432,0.216 0.791,0.36 1.151,0.576 l -1.584,0.432 c -0.144,-0.288 -0.216,-0.504 -0.288,-0.792 l 0.721,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#5c5c5c" />
-                  <path
-                     id="path20737"
-                     d="m 269.893,32.537 c 0.36,0.144 0.721,0.36 1.008,0.576 l -1.871,0.432 c -0.145,-0.216 -0.217,-0.432 -0.36,-0.72 l 1.223,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#636363" />
-                  <path
-                     id="path20739"
-                     d="m 270.469,32.825 c 0.288,0.216 0.648,0.432 1.009,0.576 l -2.16,0.576 c -0.217,-0.216 -0.36,-0.432 -0.505,-0.72 l 1.656,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20741"
-                     d="m 270.9,33.113 c 0.36,0.216 0.648,0.36 1.009,0.576 l -2.305,0.576 c -0.216,-0.144 -0.432,-0.432 -0.575,-0.72 l 1.871,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20743"
-                     d="m 271.478,33.401 c 0.287,0.216 0.575,0.432 0.863,0.648 l -2.304,0.576 c -0.288,-0.144 -0.504,-0.36 -0.72,-0.648 l 2.161,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7d7d7d" />
-                  <path
-                     id="path20745"
-                     d="m 271.909,33.689 c 0.287,0.216 0.575,0.432 0.863,0.648 l -2.231,0.576 c -0.36,-0.216 -0.72,-0.36 -0.937,-0.648 l 2.305,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#858585" />
-                  <path
-                     id="path20747"
-                     d="m 272.341,34.049 c 0.288,0.216 0.576,0.432 0.864,0.648 l -2.017,0.504 c -0.432,-0.216 -0.863,-0.36 -1.151,-0.576 l 2.304,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8c8c8c" />
-                  <path
-                     id="path20749"
-                     d="m 272.772,34.337 c 0.289,0.216 0.577,0.432 0.793,0.648 l -1.729,0.432 c -0.504,-0.144 -0.937,-0.36 -1.296,-0.504 l 2.232,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20751"
-                     d="m 273.205,34.697 c 0.288,0.216 0.504,0.432 0.792,0.648 l -1.513,0.36 c -0.504,-0.216 -0.936,-0.36 -1.296,-0.504 l 2.017,-0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20753"
-                     d="m 273.565,34.985 c 0.287,0.216 0.504,0.432 0.791,0.648 l -1.295,0.36 c -0.433,-0.216 -0.865,-0.36 -1.225,-0.576 l 1.729,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20755"
-                     d="m 273.997,35.345 c 0.216,0.216 0.504,0.432 0.72,0.648 l -1.08,0.288 c -0.432,-0.216 -0.792,-0.432 -1.152,-0.576 l 1.512,-0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#ababab" />
-                  <path
-                     id="path20757"
-                     d="m 274.356,35.633 c 0.217,0.216 0.433,0.504 0.648,0.72 l -0.863,0.216 c -0.361,-0.216 -0.721,-0.432 -1.08,-0.576 l 1.295,-0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20759"
-                     d="m 274.717,35.993 c 0.217,0.216 0.433,0.504 0.576,0.72 l -0.647,0.144 c -0.36,-0.216 -0.648,-0.432 -1.009,-0.576 l 1.08,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20761"
-                     d="m 275.005,36.353 c 0.216,0.216 0.359,0.432 0.576,0.648 l -0.432,0.144 c -0.36,-0.216 -0.721,-0.432 -1.008,-0.576 l 0.864,-0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c4c4c4" />
-                  <path
-                     id="path20763"
-                     d="m 275.293,36.713 c 0.216,0.216 0.433,0.432 0.576,0.72 l -0.216,0.072 c -0.36,-0.216 -0.648,-0.432 -1.008,-0.648 l 0.648,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#cccccc" />
-                  <path
-                     id="path20765"
-                     d="m 275.581,37.001 c 0.216,0.288 0.36,0.504 0.504,0.72 l -0.072,0.072 c -0.287,-0.216 -0.575,-0.432 -0.863,-0.648 l 0.431,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d4d4d4" />
-                  <path
-                     id="path20767"
-                     d="m 275.869,37.433 c 0.144,0.144 0.216,0.288 0.36,0.432 -0.217,-0.144 -0.433,-0.288 -0.648,-0.36 l 0.288,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#dbdbdb" />
-                  <path
-                     id="path20769"
-                     d="m 276.085,37.721 c 0.072,0.072 0.072,0.144 0.145,0.144 -0.072,0 -0.145,-0.072 -0.217,-0.072 l 0.072,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20771"
-                     d="m 276.229,37.865 -0.648,-0.936 -0.792,-0.864 -0.864,-0.864 -0.937,-0.792 -1.079,-0.72 -1.009,-0.648 -1.079,-0.576 -1.009,-0.504 -0.287,0.216 0.432,1.152 0.504,0.792 0.647,0.504 0.792,0.36 1.009,0.432 1.152,0.504 1.439,0.792 1.729,1.152 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20773">
-                  <path
-                     id="path20775"
-                     d="m 269.965,31.673 c -0.072,0 -0.144,0 -0.216,-0.072 0.072,0.072 0.144,0.072 0.216,0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#4d4d4d" />
-                  <path
-                     id="path20777"
-                     d="m 269.965,31.673 c 1.224,0.288 2.52,0.576 3.888,0.792 l -1.656,0.432 c -0.936,-0.576 -1.728,-1.008 -2.232,-1.224 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#4d4d4d" />
-                  <path
-                     id="path20779"
-                     d="m 271.765,32.105 c 1.297,0.216 2.664,0.504 4.104,0.792 l -2.593,0.648 c -0.863,-0.504 -1.584,-0.936 -2.159,-1.296 l 0.648,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#545454" />
-                  <path
-                     id="path20781"
-                     d="m 273.853,32.465 c 1.225,0.288 2.592,0.576 3.889,0.864 l -3.456,0.864 c -0.72,-0.432 -1.44,-0.936 -2.089,-1.296 l 1.656,-0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#5c5c5c" />
-                  <path
-                     id="path20783"
-                     d="m 275.869,32.897 c 1.224,0.288 2.448,0.576 3.672,0.864 l -4.248,1.08 c -0.72,-0.432 -1.368,-0.864 -2.017,-1.296 l 2.593,-0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#636363" />
-                  <path
-                     id="path20785"
-                     d="m 277.741,33.329 c 1.224,0.288 2.376,0.576 3.527,0.936 l -4.896,1.224 c -0.72,-0.432 -1.439,-0.864 -2.088,-1.296 l 3.457,-0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20787"
-                     d="m 279.541,33.761 c 1.08,0.288 2.231,0.648 3.239,1.008 l -5.327,1.368 c -0.72,-0.432 -1.44,-0.864 -2.16,-1.296 l 4.248,-1.08 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20789"
-                     d="m 281.269,34.265 c 1.008,0.288 2.017,0.648 3.024,1.08 l -5.688,1.368 c -0.72,-0.36 -1.512,-0.792 -2.231,-1.224 l 4.895,-1.224 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7d7d7d" />
-                  <path
-                     id="path20791"
-                     d="m 282.78,34.769 c 1.009,0.36 1.873,0.72 2.809,1.152 l -5.832,1.368 c -0.72,-0.288 -1.512,-0.72 -2.304,-1.152 l 5.327,-1.368 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#858585" />
-                  <path
-                     id="path20793"
-                     d="m 281.558,37.793 c -0.289,-0.072 -0.577,-0.072 -0.793,-0.144 -0.72,-0.216 -1.439,-0.504 -2.16,-0.936 l 5.688,-1.368 c 0.864,0.36 1.655,0.72 2.448,1.152 l -5.183,1.296 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8c8c8c" />
-                  <path
-                     id="path20795"
-                     d="m 283.356,38.225 c -0.863,-0.288 -1.799,-0.432 -2.592,-0.576 -0.36,-0.072 -0.647,-0.216 -1.008,-0.36 l 5.832,-1.368 c 0.72,0.36 1.44,0.72 2.16,1.224 l -4.392,1.08 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20797"
-                     d="m 284.941,38.729 c -1.081,-0.432 -2.305,-0.72 -3.384,-0.936 l 5.184,-1.296 c 0.72,0.432 1.367,0.864 1.943,1.296 l -3.743,0.936 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20799"
-                     d="m 286.309,39.305 c -0.936,-0.432 -1.944,-0.792 -2.952,-1.08 l 4.393,-1.08 c 0.647,0.36 1.225,0.864 1.8,1.368 l -3.241,0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20801"
-                     d="m 287.533,39.881 c -0.864,-0.432 -1.729,-0.864 -2.592,-1.152 l 3.743,-0.936 c 0.576,0.432 1.08,0.864 1.512,1.368 l -2.663,0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#ababab" />
-                  <path
-                     id="path20803"
-                     d="m 288.613,40.529 c -0.721,-0.504 -1.513,-0.864 -2.305,-1.224 l 3.24,-0.792 c 0.504,0.432 0.936,0.936 1.296,1.44 l -2.231,0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20805"
-                     d="m 289.621,41.177 c -0.647,-0.504 -1.368,-0.936 -2.088,-1.296 l 2.663,-0.72 c 0.505,0.504 0.865,1.008 1.225,1.584 l -1.8,0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20807"
-                     d="m 290.484,41.825 c -0.575,-0.504 -1.224,-0.936 -1.871,-1.296 l 2.231,-0.576 c 0.36,0.432 0.721,0.936 1.008,1.512 l -1.368,0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c4c4c4" />
-                  <path
-                     id="path20809"
-                     d="m 291.35,42.473 c -0.505,-0.432 -1.081,-0.864 -1.729,-1.296 l 1.8,-0.432 c 0.288,0.432 0.576,1.008 0.792,1.512 l -0.863,0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#cccccc" />
-                  <path
-                     id="path20811"
-                     d="m 292.069,43.265 c -0.504,-0.504 -1.008,-1.008 -1.585,-1.44 l 1.368,-0.36 c 0.289,0.504 0.504,1.08 0.721,1.656 l -0.504,0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d4d4d4" />
-                  <path
-                     id="path20813"
-                     d="m 292.717,43.985 c -0.432,-0.504 -0.864,-1.008 -1.367,-1.512 l 0.863,-0.216 c 0.216,0.576 0.433,1.152 0.576,1.728 l -0.072,0 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#dbdbdb" />
-                  <path
-                     id="path20815"
-                     d="m 292.069,43.265 c 0.287,0.288 0.504,0.576 0.791,0.864 -0.144,-0.36 -0.215,-0.648 -0.287,-1.008 l -0.504,0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20817"
-                     d="m 292.717,43.985 c 0,0.072 0.072,0.144 0.144,0.144 -0.071,0 -0.071,-0.072 -0.071,-0.144 l -0.073,0 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20819"
-                     d="m 280.765,37.649 0.864,0.144 0.792,0.144 0.864,0.216 0.864,0.216 0.863,0.36 0.864,0.288 0.792,0.36 0.864,0.432 0.792,0.432 0.792,0.504 0.72,0.504 0.721,0.504 0.647,0.576 0.575,0.576 0.576,0.576 0.504,0.648 -0.504,-1.728 -0.791,-1.512 -0.937,-1.296 -1.151,-1.224 -1.297,-1.008 -1.439,-0.936 -1.584,-0.792 -1.656,-0.648 -1.729,-0.576 -1.728,-0.576 -1.8,-0.432 -1.801,-0.432 -1.799,-0.36 -1.729,-0.36 -1.584,-0.288 -1.584,-0.36 0.792,0.288 1.08,0.576 1.296,0.864 1.584,0.936 1.584,1.008 1.656,0.936 1.584,0.864 1.443,0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20821">
-                  <path
-                     id="path20823"
-                     d="m 268.093,32.681 c -0.216,-0.072 -0.432,-0.216 -0.575,-0.36 0.071,0.216 0.071,0.36 0.144,0.504 l 0.431,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#4d4d4d" />
-                  <path
-                     id="path20825"
-                     d="m 268.093,32.681 c 0.792,0.432 1.729,0.936 2.881,1.512 l -2.305,0.576 c -0.288,-0.576 -0.647,-1.224 -1.008,-1.944 l 0.432,-0.144 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#4d4d4d" />
-                  <path
-                     id="path20827"
-                     d="m 269.461,33.473 c 0.864,0.432 1.872,0.936 2.952,1.512 l -3.168,0.792 c -0.36,-0.648 -0.72,-1.296 -1.08,-2.016 l 1.296,-0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#545454" />
-                  <path
-                     id="path20829"
-                     d="m 270.974,34.193 c 0.863,0.504 1.871,1.008 2.879,1.584 l -3.888,1.008 c -0.432,-0.648 -0.864,-1.296 -1.296,-2.016 l 2.305,-0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#5c5c5c" />
-                  <path
-                     id="path20831"
-                     d="m 272.413,34.985 c 0.937,0.504 1.872,1.008 2.808,1.512 l -4.607,1.152 c -0.433,-0.576 -0.864,-1.152 -1.368,-1.872 l 3.167,-0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#636363" />
-                  <path
-                     id="path20833"
-                     d="m 273.853,35.777 c 0.937,0.504 1.801,1.008 2.736,1.512 l -5.111,1.296 c -0.504,-0.504 -1.009,-1.152 -1.513,-1.8 l 3.888,-1.008 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20835"
-                     d="m 275.221,36.497 c 0.864,0.504 1.801,1.08 2.664,1.656 l -5.472,1.368 c -0.576,-0.576 -1.225,-1.152 -1.8,-1.872 l 4.608,-1.152 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20837"
-                     d="m 276.589,37.289 c 0.864,0.576 1.656,1.152 2.52,1.728 l -5.543,1.368 c -0.721,-0.504 -1.44,-1.08 -2.088,-1.8 l 5.111,-1.296 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7d7d7d" />
-                  <path
-                     id="path20839"
-                     d="m 277.885,38.153 c 0.792,0.504 1.512,1.08 2.232,1.656 l -5.4,1.368 c -0.792,-0.504 -1.512,-1.008 -2.304,-1.656 l 5.472,-1.368 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#858585" />
-                  <path
-                     id="path20841"
-                     d="m 279.108,39.017 c 0.721,0.504 1.44,1.08 2.088,1.656 l -5.184,1.296 c -0.792,-0.504 -1.656,-1.008 -2.447,-1.584 l 5.543,-1.368 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8c8c8c" />
-                  <path
-                     id="path20843"
-                     d="m 280.117,39.809 c 0.72,0.576 1.44,1.152 2.016,1.8 l -4.752,1.152 c -0.863,-0.576 -1.8,-1.008 -2.664,-1.584 l 5.4,-1.368 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20845"
-                     d="m 281.196,40.673 c 0.648,0.576 1.225,1.224 1.801,1.872 l -4.32,1.08 c -0.864,-0.648 -1.729,-1.152 -2.664,-1.656 l 5.183,-1.296 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20847"
-                     d="m 282.133,41.609 c 0.576,0.576 1.08,1.224 1.513,1.872 l -3.961,0.936 c -0.72,-0.648 -1.512,-1.152 -2.304,-1.656 l 4.752,-1.152 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20849"
-                     d="m 282.997,42.545 c 0.504,0.576 0.863,1.224 1.224,1.944 l -3.528,0.864 c -0.647,-0.72 -1.367,-1.296 -2.016,-1.728 l 4.32,-1.08 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#ababab" />
-                  <path
-                     id="path20851"
-                     d="m 283.646,43.481 c 0.432,0.648 0.792,1.296 1.008,2.016 l -3.169,0.792 c -0.575,-0.72 -1.151,-1.368 -1.8,-1.872 l 3.961,-0.936 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20853"
-                     d="m 284.221,44.489 c 0.288,0.648 0.576,1.368 0.648,2.088 l -2.664,0.648 c -0.504,-0.72 -1.009,-1.368 -1.513,-1.872 l 3.529,-0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20855"
-                     d="m 284.653,45.497 c 0.216,0.72 0.288,1.44 0.288,2.16 l -2.161,0.504 c -0.431,-0.72 -0.863,-1.368 -1.296,-1.872 l 3.169,-0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c4c4c4" />
-                  <path
-                     id="path20857"
-                     d="m 284.869,46.577 c 0.072,0.72 0.072,1.44 -0.144,2.232 l -1.369,0.36 c -0.359,-0.72 -0.72,-1.368 -1.151,-1.944 l 2.664,-0.648 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#cccccc" />
-                  <path
-                     id="path20859"
-                     d="m 284.941,47.657 c -0.072,0.792 -0.288,1.584 -0.648,2.448 l -0.433,0.072 c -0.359,-0.72 -0.719,-1.44 -1.08,-2.016 l 2.161,-0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d4d4d4" />
-                  <path
-                     id="path20861"
-                     d="m 284.726,48.809 c -0.145,0.576 -0.361,1.152 -0.648,1.728 -0.288,-0.504 -0.504,-0.936 -0.721,-1.368 l 1.369,-0.36 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#dbdbdb" />
-                  <path
-                     id="path20863"
-                     d="m 284.293,50.105 c -0.072,0.144 -0.144,0.288 -0.216,0.432 -0.072,-0.072 -0.144,-0.216 -0.217,-0.36 l 0.433,-0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20865"
-                     d="m 284.077,50.537 0.648,-1.656 0.216,-1.584 -0.216,-1.584 -0.576,-1.44 -0.864,-1.368 -1.152,-1.368 -1.368,-1.296 -1.512,-1.152 -1.584,-1.152 -1.656,-1.008 -1.728,-1.008 -1.656,-0.864 -1.512,-0.792 -1.44,-0.72 -1.224,-0.648 -0.936,-0.576 1.008,2.088 1.008,1.728 1.08,1.368 1.008,1.224 1.08,0.936 1.079,0.864 1.08,0.648 1.081,0.648 1.08,0.648 1.079,0.72 1.08,0.72 1.008,0.864 1.008,1.08 1.009,1.296 0.937,1.512 0.935,1.872 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-                <g
-                   id="g20867">
-                  <path
-                     id="path20869"
-                     d="m 266.149,33.185 c -0.072,-0.072 -0.145,-0.216 -0.216,-0.36 0.071,0.144 0.144,0.216 0.287,0.36 l -0.071,0 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#4d4d4d" />
-                  <path
-                     id="path20871"
-                     d="m 267.301,35.057 c -0.359,-0.648 -0.792,-1.224 -1.151,-1.872 l 0.071,0 c 0.576,0.504 1.368,1.008 2.305,1.584 l -1.225,0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#4d4d4d" />
-                  <path
-                     id="path20873"
-                     d="m 267.948,35.993 c -0.359,-0.576 -0.791,-1.224 -1.223,-1.872 l 0.575,-0.144 c 0.721,0.504 1.656,1.008 2.592,1.584 l -1.944,0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#545454" />
-                  <path
-                     id="path20875"
-                     d="m 268.525,36.929 c -0.36,-0.576 -0.792,-1.224 -1.225,-1.872 l 1.225,-0.288 c 0.792,0.432 1.728,0.936 2.592,1.584 l -2.592,0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#5c5c5c" />
-                  <path
-                     id="path20877"
-                     d="m 269.101,37.937 c -0.359,-0.648 -0.72,-1.296 -1.152,-1.944 l 1.944,-0.432 c 0.792,0.432 1.585,1.008 2.304,1.656 l -3.096,0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#636363" />
-                  <path
-                     id="path20879"
-                     d="m 269.677,38.873 c -0.359,-0.648 -0.72,-1.296 -1.151,-1.944 l 2.592,-0.576 c 0.647,0.432 1.367,1.008 2.016,1.656 l -3.457,0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#6b6b6b" />
-                  <path
-                     id="path20881"
-                     d="m 270.181,39.881 c -0.288,-0.648 -0.647,-1.296 -1.08,-1.944 l 3.096,-0.72 c 0.648,0.504 1.153,1.08 1.656,1.728 l -3.672,0.936 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#737373" />
-                  <path
-                     id="path20883"
-                     d="m 270.757,40.817 c -0.36,-0.648 -0.72,-1.296 -1.08,-1.944 l 3.456,-0.864 c 0.504,0.576 1.009,1.224 1.368,1.872 l -3.744,0.936 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#7d7d7d" />
-                  <path
-                     id="path20885"
-                     d="m 271.261,41.825 c -0.36,-0.648 -0.72,-1.296 -1.08,-1.944 l 3.672,-0.936 c 0.433,0.576 0.864,1.224 1.152,1.944 l -3.744,0.936 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#858585" />
-                  <path
-                     id="path20887"
-                     d="m 271.692,42.833 c -0.288,-0.648 -0.575,-1.296 -0.936,-2.016 l 3.744,-0.936 c 0.359,0.648 0.648,1.296 0.937,2.016 l -3.745,0.936 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#8c8c8c" />
-                  <path
-                     id="path20889"
-                     d="m 272.196,43.769 c -0.287,-0.648 -0.647,-1.296 -0.936,-1.944 l 3.744,-0.936 c 0.288,0.648 0.504,1.296 0.648,2.016 l -3.456,0.864 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#949494" />
-                  <path
-                     id="path20891"
-                     d="m 272.558,44.777 c -0.217,-0.648 -0.505,-1.296 -0.865,-1.944 l 3.745,-0.936 c 0.144,0.648 0.359,1.296 0.432,2.088 l -3.312,0.792 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#9c9c9c" />
-                  <path
-                     id="path20893"
-                     d="m 272.988,45.785 c -0.216,-0.648 -0.504,-1.296 -0.792,-2.016 l 3.457,-0.864 c 0.144,0.648 0.288,1.368 0.288,2.16 l -2.953,0.72 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#a3a3a3" />
-                  <path
-                     id="path20895"
-                     d="m 273.35,46.793 c -0.217,-0.648 -0.505,-1.368 -0.792,-2.016 l 3.312,-0.792 c 0.072,0.648 0.072,1.44 0.072,2.232 l -2.592,0.576 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#ababab" />
-                  <path
-                     id="path20897"
-                     d="m 273.709,47.801 c -0.216,-0.648 -0.433,-1.368 -0.721,-2.016 l 2.953,-0.72 c 0,0.72 0,1.44 -0.072,2.232 l -2.16,0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#b5b5b5" />
-                  <path
-                     id="path20899"
-                     d="m 273.997,48.881 c -0.145,-0.72 -0.36,-1.368 -0.647,-2.088 l 2.592,-0.576 c 0,0.648 -0.072,1.44 -0.216,2.232 l -1.729,0.432 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#bdbdbd" />
-                  <path
-                     id="path20901"
-                     d="m 274.285,49.889 c -0.144,-0.72 -0.36,-1.368 -0.576,-2.088 l 2.16,-0.504 c -0.072,0.72 -0.144,1.44 -0.36,2.304 l -1.224,0.288 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#c4c4c4" />
-                  <path
-                     id="path20903"
-                     d="m 274.573,50.969 c -0.217,-0.72 -0.36,-1.44 -0.576,-2.088 l 1.729,-0.432 c -0.072,0.72 -0.217,1.512 -0.433,2.304 l -0.72,0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#cccccc" />
-                  <path
-                     id="path20905"
-                     d="m 274.789,51.977 c -0.144,-0.72 -0.36,-1.44 -0.504,-2.088 l 1.224,-0.288 c -0.145,0.72 -0.288,1.512 -0.575,2.304 l -0.145,0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#d4d4d4" />
-                  <path
-                     id="path20907"
-                     d="m 274.573,50.969 c 0.072,0.432 0.144,0.936 0.287,1.368 0.145,-0.504 0.289,-1.08 0.433,-1.584 l -0.72,0.216 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#dbdbdb" />
-                  <path
-                     id="path20909"
-                     d="m 274.789,51.977 c 0,0.144 0,0.288 0.071,0.36 0,-0.144 0.073,-0.288 0.073,-0.432 l -0.144,0.072 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:#e6e6e6" />
-                  <path
-                     id="path20911"
-                     d="m 265.934,32.825 0.792,1.224 0.792,1.224 0.791,1.224 0.721,1.152 0.647,1.152 0.648,1.224 0.648,1.152 0.575,1.152 0.576,1.224 0.504,1.224 0.504,1.152 0.433,1.224 0.359,1.296 0.36,1.224 0.288,1.296 0.287,1.368 0.721,-2.736 0.36,-2.376 0.071,-2.16 -0.216,-1.872 -0.433,-1.584 -0.647,-1.44 -0.792,-1.224 -0.863,-1.008 -1.009,-0.936 -1.008,-0.792 -1.08,-0.648 -1.008,-0.576 -0.936,-0.576 -0.864,-0.504 -0.648,-0.576 -0.573,-0.504 z"
-                     i:knockout="Off"
-                     inkscape:connector-curvature="0"
-                     style="fill:none;stroke:#000000;stroke-width:0.215" />
-                </g>
-              </g>
-            </g>
-          </g>
-        </g>
-      </g>
-    </switch>
-  </g>
-  <g
-     inkscape:groupmode="layer"
-     id="layer4"
-     inkscape:label="Egg"
-     style="display:inline"
-     sodipodi:insensitive="true">
-    <path
-       style="fill:url(#radialGradient4161);fill-opacity:1"
-       d="M 42.078269,36.770674 C 38.908774,48.599427 30.575929,52.367337 22.147407,50.108907 13.718888,47.850475 8.386401,40.420989 11.555898,28.592235 14.725392,16.763562 25.196644,5.014978 33.625159,7.2733935 42.05368,9.5318087 45.247755,24.942 42.078269,36.770674 Z"
-       id="path2985"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="sssss" />
-    <path
-       style="fill:url(#radialGradient4159);fill-opacity:1"
-       d="M 33.770606,7.9010446 C 25.469913,5.6768899 15.154679,17.245378 12.033257,28.894714 11.41528,31.201027 11.127978,33.336015 11.125062,35.296787 11.19098,35.027208 11.262288,34.75413 11.335544,34.480733 14.728418,21.818327 24.949156,9.2306577 34.365457,8.084898 34.170693,8.0161466 33.971475,7.9548735 33.770613,7.9010463 Z"
-       id="path4068"
-       inkscape:connector-curvature="0" />
-  </g>
-  <g
-     inkscape:groupmode="layer"
-     id="layer5"
-     inkscape:label="Border"
-     style="display:inline"
-     sodipodi:insensitive="true">
-    <rect
-       style="fill:none;stroke:#000000;stroke-width:1.9779644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       id="rect4164"
-       width="227.02205"
-       height="55.022038"
-       x="0.9889822"
-       y="0.98898143" />
-  </g>
-  <g
-     inkscape:label="Text"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(0,-995.36218)"
-     style="display:inline">
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14px;line-height:125%;font-family:Verdana;-inkscape-font-specification:'Verdana Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
-       x="53.601555"
-       y="1015.5289"
-       id="text4052"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan4054"
-         x="53.601555"
-         y="1015.5289"
-         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14px;line-height:125%;font-family:Verdana;-inkscape-font-specification:'Verdana Bold';text-align:start;writing-mode:lr-tb;text-anchor:start">Apache</tspan></text>
-    <text
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:BlippoBlaD;-inkscape-font-specification:BlippoBlaD;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
-       x="53.133232"
-       y="1040.8754"
-       id="text4166"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan4168"
-         x="53.133232"
-         y="1040.8754"
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:BlippoBlaD;-inkscape-font-specification:BlippoBlaD;text-align:start;writing-mode:lr-tb;text-anchor:start">incubator</tspan></text>
-  </g>
-  <g
-     inkscape:groupmode="layer"
-     id="layer6"
-     inkscape:label="TM"
-     style="display:none"
-     sodipodi:insensitive="true">
-    <text
-       transform="translate(0,-995.36218)"
-       xml:space="preserve"
-       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:125%;font-family:Verdana;-inkscape-font-specification:Verdana;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
-       x="191.13977"
-       y="1046.2269"
-       id="text7512"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan7514"
-         x="191.13977"
-         y="1046.2269"
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14px;line-height:125%;font-family:Verdana;-inkscape-font-specification:Verdana;text-align:start;writing-mode:lr-tb;text-anchor:start">™</tspan></text>
-  </g>
-  <g
-     inkscape:groupmode="layer"
-     id="layer3"
-     inkscape:label="feather-vert"
-     sodipodi:insensitive="true">
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:url(#SVGID_1_)"
-       d="m 212.72037,5.396729 c -0.74966,0.4421132 -1.99458,1.6949495 -3.48148,3.509744 l 1.36591,2.578045 c 0.95885,-1.371563 1.9324,-2.605181 2.91499,-3.659001 0.0758,-0.08368 0.11531,-0.123251 0.11531,-0.123251 -0.0384,0.04075 -0.0769,0.08259 -0.11531,0.123251 -0.31773,0.350523 -1.28223,1.475584 -2.73746,3.70988 1.40096,-0.07006 3.55384,-0.356179 5.30984,-0.656954 0.52239,-2.926293 -0.51221,-4.2661948 -0.51221,-4.2661948 0,0 -1.31503,-2.1280009 -2.85959,-1.2155192 z"
-       id="path12537-9" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:none"
-       d="m 210.40806,20.102842 c 0.01,-0.0024 0.0203,-0.0036 0.0305,-0.0061 l -0.19674,0.02153 c -0.0124,0.0061 -0.0226,0.01095 -0.035,0.01581 0.0679,-0.0097 0.13455,-0.02153 0.20126,-0.03162 z"
-       id="path12539" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:none"
-       d="m 209.01388,24.720691 c -0.1119,0.02481 -0.22614,0.04403 -0.34147,0.06106 0.11531,-0.01691 0.22954,-0.03734 0.34147,-0.06106 z"
-       id="path12541" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:none"
-       d="m 199.53847,35.079187 c 0.0147,-0.03844 0.0294,-0.07687 0.0429,-0.115308 0.30077,-0.793768 0.59814,-1.564911 0.89326,-2.316849 0.33131,-0.843516 0.65807,-1.659883 0.98146,-2.451388 0.34036,-0.834466 0.67617,-1.640677 1.00748,-2.419739 0.34713,-0.81751 0.68973,-1.604478 1.02555,-2.36206 0.27364,-0.616243 0.54275,-1.213269 0.80846,-1.791064 0.0882,-0.192217 0.17639,-0.383303 0.26459,-0.572139 0.17413,-0.374266 0.34713,-0.741745 0.51674,-1.100187 0.15717,-0.331305 0.31321,-0.654679 0.46811,-0.972422 0.0509,-0.106308 0.10291,-0.210305 0.15379,-0.315469 0.009,-0.01691 0.0169,-0.03394 0.0248,-0.05084 l -0.16734,0.01812 -0.13342,-0.262315 c -0.0124,0.02603 -0.026,0.05084 -0.0395,0.07687 -0.23972,0.476025 -0.47717,0.956586 -0.71236,1.441661 -0.13568,0.280425 -0.27137,0.56197 -0.40593,0.844646 -0.37313,0.783587 -0.74061,1.573961 -1.10132,2.369979 -0.36521,0.803948 -0.72252,1.612409 -1.07305,2.422001 -0.34486,0.794899 -0.68181,1.590916 -1.01312,2.384684 -0.33016,0.792636 -0.65242,1.582998 -0.96788,2.367716 -0.32905,0.819773 -0.64904,1.631627 -0.95885,2.434432 -0.0701,0.180918 -0.14022,0.361835 -0.20919,0.542753 -0.24876,0.647892 -0.49073,1.286747 -0.72705,1.917696 l 0.21032,0.414965 0.18769,-0.02031 c 0.007,-0.01922 0.0136,-0.03844 0.0203,-0.05656 0.30417,-0.831073 0.60495,-1.640677 0.90345,-2.428776 z"
-       id="path12543-0" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:none"
-       d="m 208.58535,24.795313 0,0 c 0.001,0 0.001,-0.0011 0.002,-0.0011 0,0 -10e-4,0 -0.002,0.0011 z"
-       id="path12545" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:#be202e"
-       d="m 208.13305,27.046565 c -0.17413,0.03162 -0.35391,0.06216 -0.53821,0.0939 -0.001,0 -0.002,0.0011 -0.004,0.0011 0.0927,-0.0135 0.18431,-0.02712 0.27476,-0.04294 0.0905,-0.01581 0.17865,-0.03284 0.26685,-0.05206 z"
-       id="path12547" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:0.35;fill:#be202e"
-       d="m 208.13305,27.046565 c -0.17413,0.03162 -0.35391,0.06216 -0.53821,0.0939 -0.001,0 -0.002,0.0011 -0.004,0.0011 0.0927,-0.0135 0.18431,-0.02712 0.27476,-0.04294 0.0905,-0.01581 0.17865,-0.03284 0.26685,-0.05206 z"
-       id="path12549-8" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:#be202e"
-       d="m 208.58987,24.793051 c 0,0 -0.001,0 -0.001,0.0011 -10e-4,0 -10e-4,0.0011 -0.002,0.0011 0.0294,-0.0036 0.0576,-0.0085 0.086,-0.01241 0.11653,-0.01691 0.23067,-0.03734 0.34148,-0.06106 -0.13908,0.02262 -0.28042,0.04744 -0.42402,0.07128 l 0,0 0,0 z"
-       id="path12551" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:0.35;fill:#be202e"
-       d="m 208.58987,24.793051 c 0,0 -0.001,0 -0.001,0.0011 -10e-4,0 -10e-4,0.0011 -0.002,0.0011 0.0294,-0.0036 0.0576,-0.0085 0.086,-0.01241 0.11653,-0.01691 0.23067,-0.03734 0.34148,-0.06106 -0.13908,0.02262 -0.28042,0.04744 -0.42402,0.07128 l 0,0 0,0 z"
-       id="path12553" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:url(#SVGID_2_)"
-       d="m 206.57832,18.145565 c 0.41498,-0.775668 0.8356,-1.534381 1.26074,-2.272744 0.44099,-0.766619 0.88762,-1.510639 1.33877,-2.22751 0.026,-0.04184 0.0532,-0.08478 0.0792,-0.127763 0.44549,-0.705571 0.89552,-1.384006 1.34894,-2.03303 l -1.36591,-2.578045 c -0.1029,0.125514 -0.20579,0.25329 -0.31094,0.383316 -0.3935,0.49073 -0.80282,1.018777 -1.22231,1.578485 -0.47264,0.630937 -0.95885,1.304847 -1.45297,2.011537 -0.45568,0.653561 -0.91814,1.33764 -1.3806,2.045473 -0.3935,0.602669 -0.78924,1.223438 -1.18161,1.860031 -0.0147,0.02372 -0.0294,0.04744 -0.044,0.07128 l 1.77749,3.510887 c 0.37991,-0.751937 0.76436,-1.493682 1.15333,-2.221865 z"
-       id="path12564" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:url(#SVGID_3_)"
-       d="m 198.48239,37.927465 c -0.23519,0.646761 -0.47151,1.304847 -0.70897,1.977613 -0.004,0.0097 -0.007,0.01922 -0.01,0.02944 -0.0339,0.09499 -0.0667,0.189967 -0.10059,0.28495 -0.15943,0.453413 -0.29851,0.861603 -0.61624,1.789921 0.52352,0.238584 0.94415,0.867258 1.34216,1.580736 -0.0418,-0.738352 -0.34826,-1.432611 -0.92831,-1.969707 2.58142,0.116524 4.80554,-0.535954 5.95548,-2.423121 0.10291,-0.168474 0.19675,-0.344867 0.28155,-0.533703 -0.52239,0.662598 -1.1703,0.944155 -2.39034,0.875177 -0.002,0.0011 -0.006,0.0024 -0.009,0.0036 0.002,-0.0011 0.006,-0.0024 0.009,-0.0036 1.79559,-0.803936 2.69677,-1.575092 3.49279,-2.853933 0.18883,-0.303026 0.372,-0.634331 0.55971,-1.00181 -1.57057,1.612397 -3.38989,2.071466 -5.30646,1.723205 l -1.43714,0.157175 c -0.0452,0.121025 -0.0893,0.241977 -0.13342,0.364097 z"
-       id="path12575" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:url(#SVGID_4_)"
-       d="m 199.15291,34.708303 c 0.31094,-0.802805 0.63093,-1.61466 0.95884,-2.434432 0.31434,-0.784718 0.63773,-1.573949 0.96789,-2.367716 0.33017,-0.793768 0.66825,-1.588655 1.01312,-2.384684 0.35052,-0.809592 0.70897,-1.618053 1.07305,-2.422002 0.3607,-0.794886 0.72818,-1.586391 1.10132,-2.369978 0.13456,-0.282676 0.27024,-0.564221 0.40593,-0.844647 0.23519,-0.485074 0.47264,-0.965635 0.71235,-1.44166 0.0124,-0.02603 0.026,-0.05084 0.0395,-0.07687 l -1.77749,-3.510876 c -0.0294,0.04744 -0.0577,0.095 -0.0871,0.142469 -0.41385,0.676161 -0.82656,1.368157 -1.23136,2.07486 -0.40932,0.713489 -0.81072,1.440529 -1.20308,2.177761 -0.3313,0.621899 -0.65469,1.249443 -0.96903,1.882642 -0.0634,0.128907 -0.12551,0.25554 -0.18769,0.383316 -0.38784,0.797161 -0.73723,1.567173 -1.05383,2.307787 -0.35844,0.839003 -0.67391,1.640677 -0.9498,2.40052 -0.18205,0.49978 -0.34713,0.982592 -0.49865,1.446185 -0.12438,0.395747 -0.24311,0.792637 -0.35505,1.187252 -0.26572,0.930581 -0.49412,1.858899 -0.68182,2.783824 l 1.78654,3.526712 c 0.23632,-0.630949 0.47828,-1.269804 0.72705,-1.917697 0.069,-0.179786 0.13907,-0.361835 0.20918,-0.542752 z"
-       id="path12586" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:url(#SVGID_5_)"
-       d="m 196.40639,33.767553 c -0.22388,1.128454 -0.38332,2.252384 -0.4636,3.369538 -0.002,0.03953 -0.007,0.07797 -0.009,0.117619 -0.55745,-0.893275 -2.05,-1.765059 -2.04661,-1.75714 1.06853,1.549086 1.87925,3.086861 2.00024,4.596368 -0.57214,0.11762 -1.35572,-0.05206 -2.26143,-0.385577 0.94415,0.867258 1.65311,1.106973 1.92901,1.171427 -0.86727,0.05425 -1.7707,0.650155 -2.68094,1.336508 1.33086,-0.542753 2.40617,-0.757582 3.17619,-0.583452 -1.22117,3.457734 -2.44574,7.275029 -3.67031,11.327526 0.3754,-0.110808 0.59928,-0.362966 0.72479,-0.70444 0.21823,-0.733839 1.66668,-5.54843 3.93602,-11.877053 0.0645,-0.179786 0.13004,-0.360704 0.19562,-0.542741 0.0181,-0.05084 0.0373,-0.101807 0.0554,-0.151518 0.23971,-0.66373 0.48846,-1.341033 0.74513,-2.031899 0.0588,-0.157174 0.11762,-0.314337 0.1764,-0.472643 0.001,-0.0036 0.002,-0.0073 0.004,-0.0085 l -1.78428,-3.525581 c -0.009,0.03953 -0.0181,0.08028 -0.026,0.12212 z"
-       id="path12597-3" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:url(#SVGID_6_)"
-       d="m 205.70088,20.663669 c -0.0508,0.103997 -0.1018,0.209185 -0.15378,0.315468 -0.15377,0.317731 -0.30981,0.641118 -0.46812,0.972423 -0.17073,0.358442 -0.3426,0.724789 -0.51673,1.100187 -0.0882,0.188835 -0.17526,0.37879 -0.26459,0.572139 -0.26571,0.577795 -0.53482,1.174821 -0.80846,1.791064 -0.33582,0.757569 -0.67842,1.54455 -1.02555,2.36206 -0.33131,0.779062 -0.66713,1.585273 -1.00748,2.419739 -0.32339,0.791505 -0.65016,1.609003 -0.98146,2.451388 -0.29512,0.751925 -0.59249,1.523081 -0.89327,2.316849 -0.0147,0.03844 -0.0294,0.07687 -0.0429,0.115308 -0.2985,0.7881 -0.59928,1.597704 -0.90232,2.427645 -0.007,0.01922 -0.0135,0.03844 -0.0203,0.05656 l 1.43715,-0.157175 c -0.0282,-0.0061 -0.0576,-0.0085 -0.086,-0.01472 1.71868,-0.21371 4.00274,-1.498195 5.47946,-3.083468 0.68068,-0.730445 1.29806,-1.592047 1.86906,-2.600644 0.42516,-0.750794 0.8243,-1.58301 1.20422,-2.504541 0.33243,-0.805068 0.65129,-1.676851 0.95885,-2.622137 -0.39463,0.208054 -0.84691,0.360704 -1.34556,0.466987 -0.0871,0.01812 -0.17639,0.03613 -0.26685,0.05206 -0.0905,0.01581 -0.18203,0.03053 -0.27475,0.04294 l 0,0 0,0 c 0.001,0 0.002,-0.0011 0.004,-0.0011 1.60223,-0.616244 2.61309,-1.806889 3.34805,-3.264374 -0.42175,0.287201 -1.10696,0.66373 -1.92787,0.844635 -0.1119,0.02493 -0.22614,0.04415 -0.34147,0.06106 -0.0294,0.0049 -0.0576,0.0085 -0.086,0.01241 l 0,0 0,0 c 0.001,0 0.001,-0.0011 0.002,-0.0011 0,0 10e-4,0 10e-4,-0.0011 l 0,0 c 0.55631,-0.232928 1.02556,-0.492992 1.43262,-0.800542 0.0871,-0.06556 0.17187,-0.133432 0.25328,-0.204661 0.12438,-0.107402 0.24197,-0.220497 0.35504,-0.339223 0.0724,-0.07578 0.14247,-0.153769 0.21032,-0.235191 0.15943,-0.189955 0.30868,-0.394615 0.44889,-0.617362 0.0429,-0.06787 0.0848,-0.136826 0.12664,-0.208054 0.0532,-0.102902 0.104,-0.203529 0.15379,-0.303038 0.22387,-0.450019 0.40253,-0.851421 0.545,-1.204207 0.0713,-0.176393 0.13342,-0.339223 0.18657,-0.49073 0.0215,-0.05996 0.0418,-0.118714 0.0611,-0.175262 0.0566,-0.169605 0.1029,-0.319993 0.13909,-0.452293 0.0542,-0.197874 0.0871,-0.355036 0.10521,-0.46925 l 0,0 0,0 c -0.0542,0.04294 -0.11652,0.086 -0.18657,0.127776 -0.48394,0.289463 -1.31389,0.55179 -1.98327,0.675041 l 1.31954,-0.144732 -1.31954,0.144732 c -0.01,0.0024 -0.0203,0.0036 -0.0305,0.0061 -0.0667,0.01095 -0.13455,0.02153 -0.2024,0.03272 0.0124,-0.0061 0.0226,-0.01095 0.035,-0.01581 l -4.51496,0.495255 c -0.009,0.01581 -0.0158,0.03162 -0.0248,0.04865 z"
-       id="path12608" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:url(#SVGID_7_)"
-       d="m 210.78346,11.536528 c -0.40141,0.616244 -0.84013,1.316147 -1.31164,2.108783 -0.0248,0.04075 -0.0498,0.08368 -0.0747,0.125514 -0.40706,0.686341 -0.84012,1.439398 -1.29468,2.264826 -0.39348,0.712346 -0.8028,1.476715 -1.22795,2.29875 -0.37088,0.71574 -0.75419,1.475584 -1.14768,2.27952 l 4.51496,-0.495255 c 1.31501,-0.604931 1.90299,-1.152197 2.474,-1.943702 0.15151,-0.218222 0.30416,-0.446638 0.45568,-0.682947 0.4636,-0.723658 0.91814,-1.520819 1.3252,-2.313456 0.39235,-0.765487 0.73836,-1.5242 1.00407,-2.208291 0.16849,-0.435326 0.30417,-0.840122 0.39802,-1.195158 0.0826,-0.313218 0.147,-0.610587 0.19674,-0.894407 -1.75827,0.299644 -3.91114,0.586845 -5.3121,0.655823 z"
-       id="path12619-6" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:#be202e"
-       d="m 207.8662,27.098588 c -0.0905,0.01581 -0.18204,0.03053 -0.27476,0.04294 l 0,0 c 0.0927,-0.01241 0.18431,-0.02712 0.27476,-0.04294 z"
-       id="path12621-2" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:0.35;fill:#be202e"
-       d="m 207.8662,27.098588 c -0.0905,0.01581 -0.18204,0.03053 -0.27476,0.04294 l 0,0 c 0.0927,-0.01241 0.18431,-0.02712 0.27476,-0.04294 z"
-       id="path12623-2" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:url(#SVGID_8_)"
-       d="m 207.8662,27.098588 c -0.0905,0.01581 -0.18204,0.03053 -0.27476,0.04294 l 0,0 c 0.0927,-0.01241 0.18431,-0.02712 0.27476,-0.04294 z"
-       id="path12634" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:#be202e"
-       d="m 208.58535,24.795313 c 0.0294,-0.0036 0.0576,-0.0085 0.086,-0.01241 -0.0282,0.0036 -0.0566,0.0085 -0.086,0.01241 l 0,0 z"
-       id="path12636" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:0.35;fill:#be202e"
-       d="m 208.58535,24.795313 c 0.0294,-0.0036 0.0576,-0.0085 0.086,-0.01241 -0.0282,0.0036 -0.0566,0.0085 -0.086,0.01241 l 0,0 z"
-       id="path12638" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:url(#SVGID_9_)"
-       d="m 208.58535,24.795313 c 0.0294,-0.0036 0.0576,-0.0085 0.086,-0.01241 -0.0282,0.0036 -0.0566,0.0085 -0.086,0.01241 l 0,0 z"
-       id="path12649-9" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:#be202e"
-       d="m 208.58874,24.794182 c 0,0 0.001,0 0.001,-0.0011 l 0,0 0,0 0,0 c 0,0 -0.001,0 -0.001,0.0011 z"
-       id="path12651-8" />
-    <path
-       inkscape:connector-curvature="0"
-       style="opacity:0.35;fill:#be202e"
-       d="m 208.58874,24.794182 c 0,0 0.001,0 0.001,-0.0011 l 0,0 0,0 0,0 c 0,0 -0.001,0 -0.001,0.0011 z"
-       id="path12653-8" />
-    <path
-       inkscape:connector-curvature="0"
-       style="fill:url(#SVGID_10_)"
-       d="m 208.58874,24.794182 c 0,0 0.001,0 0.001,-0.0011 l 0,0 0,0 0,0 c 0,0 -0.001,0 -0.001,0.0011 z"
-       id="path12664" />
-  </g>
-</svg>
diff --git a/assets/images/egg-logo.png b/assets/images/egg-logo.png
deleted file mode 100644
index c04e70d..0000000
--- a/assets/images/egg-logo.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/egg-logo2.png b/assets/images/egg-logo2.png
deleted file mode 100644
index 9d25899..0000000
--- a/assets/images/egg-logo2.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/graduation-timeline.png b/assets/images/graduation-timeline.png
deleted file mode 100644
index 9ba02d5..0000000
--- a/assets/images/graduation-timeline.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/howtoincubateaproject-thumb.png b/assets/images/howtoincubateaproject-thumb.png
deleted file mode 100644
index 4cb3ee8..0000000
--- a/assets/images/howtoincubateaproject-thumb.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/howtoincubateaproject.key b/assets/images/howtoincubateaproject.key
deleted file mode 100644
index f937b73..0000000
--- a/assets/images/howtoincubateaproject.key
+++ /dev/null
Binary files differ
diff --git a/assets/images/howtoincubateaproject.png b/assets/images/howtoincubateaproject.png
deleted file mode 100644
index f0e0303..0000000
--- a/assets/images/howtoincubateaproject.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incbuator_feather_egg_logo.jpg b/assets/images/incbuator_feather_egg_logo.jpg
deleted file mode 100644
index b695b10..0000000
--- a/assets/images/incbuator_feather_egg_logo.jpg
+++ /dev/null
Binary files differ
diff --git a/assets/images/incbuator_feather_egg_logo_crop.png b/assets/images/incbuator_feather_egg_logo_crop.png
deleted file mode 100644
index 3ad7e45..0000000
--- a/assets/images/incbuator_feather_egg_logo_crop.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubation-process.aart b/assets/images/incubation-process.aart
deleted file mode 100644
index 2e7f938..0000000
--- a/assets/images/incubation-process.aart
+++ /dev/null
@@ -1,12 +0,0 @@
-
-               +---------+            +-------+           +-------+
--------------- |         +----------- |       +-----------|       |
-establishment\ |Candidate|acceptance\ |Podling|engagement\|Project|
--------------/ |         +----------/ |       +----------/|       |
-               +--+-+----+            +-+-+---+----+      +-------+
-                  | |                   | |  ^     |
-                  | |                   | |  |     | continuation
-                  | |                   | |  +-----+
-                  | |                   | |
-                  \/                    \/
-                 rejection             termination
diff --git a/assets/images/incubation-process.png b/assets/images/incubation-process.png
deleted file mode 100644
index d2b132b..0000000
--- a/assets/images/incubation-process.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_feather_egg_logo.png b/assets/images/incubator_feather_egg_logo.png
deleted file mode 100644
index 338169e..0000000
--- a/assets/images/incubator_feather_egg_logo.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_feather_egg_logo_bw.png b/assets/images/incubator_feather_egg_logo_bw.png
deleted file mode 100644
index 0f647ed..0000000
--- a/assets/images/incubator_feather_egg_logo_bw.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_feather_egg_logo_bw_crop.png b/assets/images/incubator_feather_egg_logo_bw_crop.png
deleted file mode 100644
index 377e4e3..0000000
--- a/assets/images/incubator_feather_egg_logo_bw_crop.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_feather_egg_logo_red.png b/assets/images/incubator_feather_egg_logo_red.png
deleted file mode 100644
index 33dabdf..0000000
--- a/assets/images/incubator_feather_egg_logo_red.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_feather_egg_logo_red_crop.png b/assets/images/incubator_feather_egg_logo_red_crop.png
deleted file mode 100644
index e7bc1a7..0000000
--- a/assets/images/incubator_feather_egg_logo_red_crop.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_feather_egg_logo_sm.png b/assets/images/incubator_feather_egg_logo_sm.png
deleted file mode 100644
index 759252f..0000000
--- a/assets/images/incubator_feather_egg_logo_sm.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_feather_egg_logo_wb.png b/assets/images/incubator_feather_egg_logo_wb.png
deleted file mode 100644
index 144742a..0000000
--- a/assets/images/incubator_feather_egg_logo_wb.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_feather_egg_logo_wb_crop.png b/assets/images/incubator_feather_egg_logo_wb_crop.png
deleted file mode 100644
index 3ec9f6d..0000000
--- a/assets/images/incubator_feather_egg_logo_wb_crop.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_power_ring.jpg b/assets/images/incubator_power_ring.jpg
deleted file mode 100644
index 340fc68..0000000
--- a/assets/images/incubator_power_ring.jpg
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_ring_airflow.jpg b/assets/images/incubator_ring_airflow.jpg
deleted file mode 100644
index a64fe30..0000000
--- a/assets/images/incubator_ring_airflow.jpg
+++ /dev/null
Binary files differ
diff --git a/assets/images/incubator_ring_logo.png b/assets/images/incubator_ring_logo.png
deleted file mode 100644
index 43a9815..0000000
--- a/assets/images/incubator_ring_logo.png
+++ /dev/null
Binary files differ
diff --git a/assets/images/redarrow.gif b/assets/images/redarrow.gif
deleted file mode 100644
index 41ad0bd..0000000
--- a/assets/images/redarrow.gif
+++ /dev/null
Binary files differ
diff --git a/assets/images/template_airflow.jpg b/assets/images/template_airflow.jpg
deleted file mode 100644
index aed34aa..0000000
--- a/assets/images/template_airflow.jpg
+++ /dev/null
Binary files differ
diff --git a/assets/images/template_hawq.jpg b/assets/images/template_hawq.jpg
deleted file mode 100644
index 9d88182..0000000
--- a/assets/images/template_hawq.jpg
+++ /dev/null
Binary files differ
diff --git a/assets/images/template_spot.jpg b/assets/images/template_spot.jpg
deleted file mode 100644
index 83cfd2b..0000000
--- a/assets/images/template_spot.jpg
+++ /dev/null
Binary files differ
diff --git a/assets/js/bootstrap.min.js b/assets/js/bootstrap.min.js
deleted file mode 100644
index b04a0e8..0000000
--- a/assets/js/bootstrap.min.js
+++ /dev/null
@@ -1,6 +0,0 @@
-/*!
- * Bootstrap v3.1.1 (http://getbootstrap.com)
- * Copyright 2011-2014 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(a.support.transition.end,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b()})}(jQuery),+function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function c(){f.trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one(a.support.transition.end,c).emulateTransitionEnd(150):c())};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("bs.alert");e||d.data("bs.alert",e=new c(this)),"string"==typeof b&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.bs.alert.data-api",b,c.prototype.close)}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.isLoading=!1};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",f.resetText||d.data("resetText",d[e]()),d[e](f[b]||this.options[b]),setTimeout(a.proxy(function(){"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},b.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}a&&this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof c&&c;e||d.data("bs.button",e=new b(this,f)),"toggle"==c?e.toggle():c&&e.setState(c)})},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.bs.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle"),b.preventDefault()})}(jQuery),+function(a){"use strict";var b=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},b.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},b.prototype.getActiveIndex=function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},b.prototype.to=function(b){var c=this,d=this.getActiveIndex();return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}if(e.hasClass("active"))return this.sliding=!1;var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});return this.$element.trigger(j),j.isDefaultPrevented()?void 0:(this.sliding=!0,f&&this.pause(),this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid.bs.carousel",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")?(e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid.bs.carousel")},0)}).emulateTransitionEnd(1e3*d.css("transition-duration").slice(0,-1))):(d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid.bs.carousel")),f&&this.cycle(),this)};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("collapse in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?void this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);!e&&f.toggle&&"show"==c&&(c=!c),e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(jQuery),+function(a){"use strict";function b(b){a(d).remove(),a(e).each(function(){var d=c(a(this)),e={relatedTarget:this};d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown",e)),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown",e))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;f.toggleClass("open").trigger("shown.bs.dropdown",h),e.focus()}return!1}},f.prototype.keydown=function(b){if(/(38|40|27)/.test(b.keyCode)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var f=c(d),g=f.hasClass("open");if(!g||g&&27==b.keyCode)return 27==b.which&&f.find(e).focus(),d.click();var h=" li:not(.divider):visible a",i=f.find("[role=menu]"+h+", [role=listbox]"+h);if(i.length){var j=i.index(i.filter(":focus"));38==b.keyCode&&j>0&&j--,40==b.keyCode&&j<i.length-1&&j++,~j||(j=0),i.eq(j).focus()}}}};var g=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new f(this)),"string"==typeof b&&d[b].call(c)})},a.fn.dropdown.Constructor=f,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=g,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",e,f.prototype.toggle).on("keydown.bs.dropdown.data-api",e+", [role=menu], [role=listbox]",f.prototype.keydown)}(jQuery),+function(a){"use strict";var b=function(b,c){this.options=c,this.$element=a(b),this.$backdrop=this.isShown=null,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};b.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},b.prototype.toggle=function(a){return this[this.isShown?"hide":"show"](a)},b.prototype.show=function(b){var c=this,d=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(d),this.isShown||d.isDefaultPrevented()||(this.isShown=!0,this.escape(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.backdrop(function(){var d=a.support.transition&&c.$element.hasClass("fade");c.$element.parent().length||c.$element.appendTo(document.body),c.$element.show().scrollTop(0),d&&c.$element[0].offsetWidth,c.$element.addClass("in").attr("aria-hidden",!1),c.enforceFocus();var e=a.Event("shown.bs.modal",{relatedTarget:b});d?c.$element.find(".modal-dialog").one(a.support.transition.end,function(){c.$element.focus().trigger(e)}).emulateTransitionEnd(300):c.$element.focus().trigger(e)}))},b.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one(a.support.transition.end,a.proxy(this.hideModal,this)).emulateTransitionEnd(300):this.hideModal())},b.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.focus()},this))},b.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keyup.dismiss.bs.modal")},b.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.removeBackdrop(),a.$element.trigger("hidden.bs.modal")})},b.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},b.prototype.backdrop=function(b){var c=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var d=a.support.transition&&c;if(this.$backdrop=a('<div class="modal-backdrop '+c+'" />').appendTo(document.body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus.call(this.$element[0]):this.hide.call(this))},this)),d&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;d?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()):b&&b()};var c=a.fn.modal;a.fn.modal=function(c,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},b.DEFAULTS,e.data(),"object"==typeof c&&c);f||e.data("bs.modal",f=new b(this,g)),"string"==typeof c?f[c](d):g.show&&f.show(d)})},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());c.is("a")&&b.preventDefault(),e.modal(f,this).one("hide",function(){c.is(":visible")&&c.focus()})}),a(document).on("show.bs.modal",".modal",function(){a(document.body).addClass("modal-open")}).on("hidden.bs.modal",".modal",function(){a(document.body).removeClass("modal-open")})}(jQuery),+function(a){"use strict";var b=function(a,b){this.type=this.options=this.enabled=this.timeout=this.hoverState=this.$element=null,this.init("tooltip",a,b)};b.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},b.prototype.init=function(b,c,d){this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d);for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},b.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},b.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show()},b.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},b.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){if(this.$element.trigger(b),b.isDefaultPrevented())return;var c=this,d=this.tip();this.setContent(),this.options.animation&&d.addClass("fade");var e="function"==typeof this.options.placement?this.options.placement.call(this,d[0],this.$element[0]):this.options.placement,f=/\s?auto?\s?/i,g=f.test(e);g&&(e=e.replace(f,"")||"top"),d.detach().css({top:0,left:0,display:"block"}).addClass(e),this.options.container?d.appendTo(this.options.container):d.insertAfter(this.$element);var h=this.getPosition(),i=d[0].offsetWidth,j=d[0].offsetHeight;if(g){var k=this.$element.parent(),l=e,m=document.documentElement.scrollTop||document.body.scrollTop,n="body"==this.options.container?window.innerWidth:k.outerWidth(),o="body"==this.options.container?window.innerHeight:k.outerHeight(),p="body"==this.options.container?0:k.offset().left;e="bottom"==e&&h.top+h.height+j-m>o?"top":"top"==e&&h.top-m-j<0?"bottom":"right"==e&&h.right+i>n?"left":"left"==e&&h.left-i<p?"right":e,d.removeClass(l).addClass(e)}var q=this.getCalculatedOffset(e,h,i,j);this.applyPlacement(q,e),this.hoverState=null;var r=function(){c.$element.trigger("shown.bs."+c.type)};a.support.transition&&this.$tip.hasClass("fade")?d.one(a.support.transition.end,r).emulateTransitionEnd(150):r()}},b.prototype.applyPlacement=function(b,c){var d,e=this.tip(),f=e[0].offsetWidth,g=e[0].offsetHeight,h=parseInt(e.css("margin-top"),10),i=parseInt(e.css("margin-left"),10);isNaN(h)&&(h=0),isNaN(i)&&(i=0),b.top=b.top+h,b.left=b.left+i,a.offset.setOffset(e[0],a.extend({using:function(a){e.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),e.addClass("in");var j=e[0].offsetWidth,k=e[0].offsetHeight;if("top"==c&&k!=g&&(d=!0,b.top=b.top+g-k),/bottom|top/.test(c)){var l=0;b.left<0&&(l=-2*b.left,b.left=0,e.offset(b),j=e[0].offsetWidth,k=e[0].offsetHeight),this.replaceArrow(l-f+j,j,"left")}else this.replaceArrow(k-g,k,"top");d&&e.offset(b)},b.prototype.replaceArrow=function(a,b,c){this.arrow().css(c,a?50*(1-a/b)+"%":"")},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},b.prototype.hide=function(){function b(){"in"!=c.hoverState&&d.detach(),c.$element.trigger("hidden.bs."+c.type)}var c=this,d=this.tip(),e=a.Event("hide.bs."+this.type);return this.$element.trigger(e),e.isDefaultPrevented()?void 0:(d.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d.one(a.support.transition.end,b).emulateTransitionEnd(150):b(),this.hoverState=null,this)},b.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},b.prototype.hasContent=function(){return this.getTitle()},b.prototype.getPosition=function(){var b=this.$element[0];return a.extend({},"function"==typeof b.getBoundingClientRect?b.getBoundingClientRect():{width:b.offsetWidth,height:b.offsetHeight},this.$element.offset())},b.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},b.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},b.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},b.prototype.validate=function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},b.prototype.enable=function(){this.enabled=!0},b.prototype.disable=function(){this.enabled=!1},b.prototype.toggleEnabled=function(){this.enabled=!this.enabled},b.prototype.toggle=function(b){var c=b?a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type):this;c.tip().hasClass("in")?c.leave(c):c.enter(c)},b.prototype.destroy=function(){clearTimeout(this.timeout),this.hide().$element.off("."+this.type).removeData("bs."+this.type)};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof c&&c;(e||"destroy"!=c)&&(e||d.data("bs.tooltip",e=new b(this,f)),"string"==typeof c&&e[c]())})},a.fn.tooltip.Constructor=b,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(jQuery),+function(a){"use strict";var b=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");b.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;(e||"destroy"!=c)&&(e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]())})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(a(c).is("body")?window:c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);{var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})}},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);if(g&&b<=e[0])return g!=(a=f[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parentsUntil(this.options.target,".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=this.pinnedOffset=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(b.RESET).addClass("affix");var a=this.$window.scrollTop(),c=this.$element.offset();return this.pinnedOffset=c.top-a},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"top"==this.affixed&&(e.top+=d),"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top(this.$element)),"function"==typeof h&&(h=f.bottom(this.$element));var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;if(this.affixed!==i){this.unpin&&this.$element.css("top","");var j="affix"+(i?"-"+i:""),k=a.Event(j+".bs.affix");this.$element.trigger(k),k.isDefaultPrevented()||(this.affixed=i,this.unpin="bottom"==i?this.getPinnedOffset():null,this.$element.removeClass(b.RESET).addClass(j).trigger(a.Event(j.replace("affix","affixed"))),"bottom"==i&&this.$element.offset({top:c-h-this.$element.height()}))}}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(jQuery);
\ No newline at end of file
diff --git a/assets/js/html5shiv.min.js b/assets/js/html5shiv.min.js
deleted file mode 100644
index d4c731a..0000000
--- a/assets/js/html5shiv.min.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/**
-* @preserve HTML5 Shiv 3.7.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
-*/
-!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.2",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b)}(this,document);
\ No newline at end of file
diff --git a/assets/js/incubator.js b/assets/js/incubator.js
deleted file mode 100644
index cab1020..0000000
--- a/assets/js/incubator.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- *  Licensed to the Apache Software Foundation (ASF) under one
- *  or more contributor license agreements.  See the NOTICE file
- *  distributed with this work for additional information
- *  regarding copyright ownership.  The ASF licenses this file
- *  to you under the Apache License, Version 2.0 (the
- *  "License"); you may not use this file except in compliance
- *  with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- *  Unless required by applicable law or agreed to in writing,
- *  software distributed under the License is distributed on an
- *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- *  KIND, either express or implied.  See the License for the
- *  specific language governing permissions and limitations
- *  under the License.
- */
-
-$('.article-body').readingTime();
\ No newline at end of file
diff --git a/assets/js/jquery-1.11.1.min.js b/assets/js/jquery-1.11.1.min.js
deleted file mode 100644
index ab28a24..0000000
--- a/assets/js/jquery-1.11.1.min.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="<select msallowclip=''><option selected=''></option></select>",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;
-if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?m.queue(this[0],a):void 0===b?this:this.each(function(){var c=m.queue(this,a,b);m._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&m.dequeue(this,a)})},dequeue:function(a){return this.each(function(){m.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=m.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=m._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=["Top","Right","Bottom","Left"],U=function(a,b){return a=b||a,"none"===m.css(a,"display")||!m.contains(a.ownerDocument,a)},V=m.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===m.type(c)){e=!0;for(h in c)m.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,m.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(m(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav></:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[m.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=Z.test(e)?this.mouseHooks:Y.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new m.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||y),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||y,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==cb()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===cb()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return m.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return m.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=m.extend(new m.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?m.event.trigger(e,null,b):m.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},m.removeEvent=y.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===K&&(a[d]=null),a.detachEvent(d,c))},m.Event=function(a,b){return this instanceof m.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?ab:bb):this.type=a,b&&m.extend(this,b),this.timeStamp=a&&a.timeStamp||m.now(),void(this[m.expando]=!0)):new m.Event(a,b)},m.Event.prototype={isDefaultPrevented:bb,isPropagationStopped:bb,isImmediatePropagationStopped:bb,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=ab,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=ab,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=ab,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},m.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){m.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!m.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.submitBubbles||(m.event.special.submit={setup:function(){return m.nodeName(this,"form")?!1:void m.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=m.nodeName(b,"input")||m.nodeName(b,"button")?b.form:void 0;c&&!m._data(c,"submitBubbles")&&(m.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),m._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&m.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return m.nodeName(this,"form")?!1:void m.event.remove(this,"._submit")}}),k.changeBubbles||(m.event.special.change={setup:function(){return X.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(m.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),m.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),m.event.simulate("change",this,a,!0)})),!1):void m.event.add(this,"beforeactivate._change",function(a){var b=a.target;X.test(b.nodeName)&&!m._data(b,"changeBubbles")&&(m.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||m.event.simulate("change",this.parentNode,a,!0)}),m._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return m.event.remove(this,"._change"),!X.test(this.nodeName)}}),k.focusinBubbles||m.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){m.event.simulate(b,a.target,m.event.fix(a),!0)};m.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=m._data(d,b);e||d.addEventListener(a,c,!0),m._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=m._data(d,b)-1;e?m._data(d,b,e):(d.removeEventListener(a,c,!0),m._removeData(d,b))}}}),m.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=bb;else if(!d)return this;return 1===e&&(g=d,d=function(a){return m().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=m.guid++)),this.each(function(){m.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,m(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=bb),this.each(function(){m.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){m.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?m.event.trigger(a,b,c,!0):void 0}});function db(a){var b=eb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var eb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",fb=/ jQuery\d+="(?:null|\d+)"/g,gb=new RegExp("<(?:"+eb+")[\\s/>]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/<tbody/i,lb=/<|&#?\w+;/,mb=/<(?:script|style|link)/i,nb=/checked\s*(?:[^=]|=\s*.checked.)/i,ob=/^$|\/(?:java|ecma)script/i,pb=/^true\/(.*)/,qb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,rb={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:k.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1></$2>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?"<table>"!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Cb[0].contentWindow||Cb[0].contentDocument).document,b.write(),b.close(),c=Eb(a,b),Cb.detach()),Db[a]=c),c}!function(){var a;k.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,d;return c=y.getElementsByTagName("body")[0],c&&c.style?(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(y.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(d),a):void 0}}();var Gb=/^margin/,Hb=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ib,Jb,Kb=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ib=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||m.contains(a.ownerDocument,a)||(g=m.style(a,b)),Hb.test(g)&&Gb.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):y.documentElement.currentStyle&&(Ib=function(a){return a.currentStyle},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Hb.test(g)&&!Kb.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Lb(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h;if(b=y.createElement("div"),b.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=d&&d.style){c.cssText="float:left;opacity:.5",k.opacity="0.5"===c.opacity,k.cssFloat=!!c.cssFloat,b.style.backgroundClip="content-box",b.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===b.style.backgroundClip,k.boxSizing=""===c.boxSizing||""===c.MozBoxSizing||""===c.WebkitBoxSizing,m.extend(k,{reliableHiddenOffsets:function(){return null==g&&i(),g},boxSizingReliable:function(){return null==f&&i(),f},pixelPosition:function(){return null==e&&i(),e},reliableMarginRight:function(){return null==h&&i(),h}});function i(){var b,c,d,i;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),b.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",e=f=!1,h=!0,a.getComputedStyle&&(e="1%"!==(a.getComputedStyle(b,null)||{}).top,f="4px"===(a.getComputedStyle(b,null)||{width:"4px"}).width,i=b.appendChild(y.createElement("div")),i.style.cssText=b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",b.style.width="1px",h=!parseFloat((a.getComputedStyle(i,null)||{}).marginRight)),b.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=b.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",g=0===i[0].offsetHeight,g&&(i[0].style.display="",i[1].style.display="none",g=0===i[0].offsetHeight),c.removeChild(d))}}}(),m.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var Mb=/alpha\([^)]*\)/i,Nb=/opacity\s*=\s*([^)]*)/,Ob=/^(none|table(?!-c[ea]).+)/,Pb=new RegExp("^("+S+")(.*)$","i"),Qb=new RegExp("^([+-])=("+S+")","i"),Rb={position:"absolute",visibility:"hidden",display:"block"},Sb={letterSpacing:"0",fontWeight:"400"},Tb=["Webkit","O","Moz","ms"];function Ub(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=Tb.length;while(e--)if(b=Tb[e]+c,b in a)return b;return d}function Vb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=m._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&U(d)&&(f[g]=m._data(d,"olddisplay",Fb(d.nodeName)))):(e=U(d),(c&&"none"!==c||!e)&&m._data(d,"olddisplay",e?c:m.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function Wb(a,b,c){var d=Pb.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Xb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=m.css(a,c+T[f],!0,e)),d?("content"===c&&(g-=m.css(a,"padding"+T[f],!0,e)),"margin"!==c&&(g-=m.css(a,"border"+T[f]+"Width",!0,e))):(g+=m.css(a,"padding"+T[f],!0,e),"padding"!==c&&(g+=m.css(a,"border"+T[f]+"Width",!0,e)));return g}function Yb(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Ib(a),g=k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Jb(a,b,f),(0>e||null==e)&&(e=a.style[b]),Hb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Xb(a,b,c||(g?"border":"content"),d,f)+"px"}m.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Jb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":k.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=m.camelCase(b),i=a.style;if(b=m.cssProps[h]||(m.cssProps[h]=Ub(i,h)),g=m.cssHooks[b]||m.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=Qb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(m.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||m.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=m.camelCase(b);return b=m.cssProps[h]||(m.cssProps[h]=Ub(a.style,h)),g=m.cssHooks[b]||m.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Jb(a,b,d)),"normal"===f&&b in Sb&&(f=Sb[b]),""===c||c?(e=parseFloat(f),c===!0||m.isNumeric(e)?e||0:f):f}}),m.each(["height","width"],function(a,b){m.cssHooks[b]={get:function(a,c,d){return c?Ob.test(m.css(a,"display"))&&0===a.offsetWidth?m.swap(a,Rb,function(){return Yb(a,b,d)}):Yb(a,b,d):void 0},set:function(a,c,d){var e=d&&Ib(a);return Wb(a,c,d?Xb(a,b,d,k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,e),e):0)}}}),k.opacity||(m.cssHooks.opacity={get:function(a,b){return Nb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=m.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===m.trim(f.replace(Mb,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Mb.test(f)?f.replace(Mb,e):f+" "+e)}}),m.cssHooks.marginRight=Lb(k.reliableMarginRight,function(a,b){return b?m.swap(a,{display:"inline-block"},Jb,[a,"marginRight"]):void 0}),m.each({margin:"",padding:"",border:"Width"},function(a,b){m.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+T[d]+b]=f[d]||f[d-2]||f[0];return e}},Gb.test(a)||(m.cssHooks[a+b].set=Wb)}),m.fn.extend({css:function(a,b){return V(this,function(a,b,c){var d,e,f={},g=0;if(m.isArray(b)){for(d=Ib(a),e=b.length;e>g;g++)f[b[g]]=m.css(a,b[g],!1,d);return f}return void 0!==c?m.style(a,b,c):m.css(a,b)},a,b,arguments.length>1)},show:function(){return Vb(this,!0)},hide:function(){return Vb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){U(this)?m(this).show():m(this).hide()})}});function Zb(a,b,c,d,e){return new Zb.prototype.init(a,b,c,d,e)}m.Tween=Zb,Zb.prototype={constructor:Zb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px")
-},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function(a){var b,c=Zb.propHooks[this.prop];return this.pos=b=this.options.duration?m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Zb.propHooks._default.set(this),this}},Zb.prototype.init.prototype=Zb.prototype,Zb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=m.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){m.fx.step[a.prop]?m.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[m.cssProps[a.prop]]||m.cssHooks[a.prop])?m.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Zb.propHooks.scrollTop=Zb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},m.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},m.fx=Zb.prototype.init,m.fx.step={};var $b,_b,ac=/^(?:toggle|show|hide)$/,bc=new RegExp("^(?:([+-])=|)("+S+")([a-z%]*)$","i"),cc=/queueHooks$/,dc=[ic],ec={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=bc.exec(b),f=e&&e[3]||(m.cssNumber[a]?"":"px"),g=(m.cssNumber[a]||"px"!==f&&+d)&&bc.exec(m.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,m.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function fc(){return setTimeout(function(){$b=void 0}),$b=m.now()}function gc(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=T[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function hc(a,b,c){for(var d,e=(ec[b]||[]).concat(ec["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function ic(a,b,c){var d,e,f,g,h,i,j,l,n=this,o={},p=a.style,q=a.nodeType&&U(a),r=m._data(a,"fxshow");c.queue||(h=m._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,n.always(function(){n.always(function(){h.unqueued--,m.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=m.css(a,"display"),l="none"===j?m._data(a,"olddisplay")||Fb(a.nodeName):j,"inline"===l&&"none"===m.css(a,"float")&&(k.inlineBlockNeedsLayout&&"inline"!==Fb(a.nodeName)?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",k.shrinkWrapBlocks()||n.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],ac.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||m.style(a,d)}else j=void 0;if(m.isEmptyObject(o))"inline"===("none"===j?Fb(a.nodeName):j)&&(p.display=j);else{r?"hidden"in r&&(q=r.hidden):r=m._data(a,"fxshow",{}),f&&(r.hidden=!q),q?m(a).show():n.done(function(){m(a).hide()}),n.done(function(){var b;m._removeData(a,"fxshow");for(b in o)m.style(a,b,o[b])});for(d in o)g=hc(q?r[d]:0,d,n),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function jc(a,b){var c,d,e,f,g;for(c in a)if(d=m.camelCase(c),e=b[d],f=a[c],m.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=m.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function kc(a,b,c){var d,e,f=0,g=dc.length,h=m.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=$b||fc(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:m.extend({},b),opts:m.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:$b||fc(),duration:c.duration,tweens:[],createTween:function(b,c){var d=m.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(jc(k,j.opts.specialEasing);g>f;f++)if(d=dc[f].call(j,a,k,j.opts))return d;return m.map(k,hc,j),m.isFunction(j.opts.start)&&j.opts.start.call(a,j),m.fx.timer(m.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}m.Animation=m.extend(kc,{tweener:function(a,b){m.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],ec[c]=ec[c]||[],ec[c].unshift(b)},prefilter:function(a,b){b?dc.unshift(a):dc.push(a)}}),m.speed=function(a,b,c){var d=a&&"object"==typeof a?m.extend({},a):{complete:c||!c&&b||m.isFunction(a)&&a,duration:a,easing:c&&b||b&&!m.isFunction(b)&&b};return d.duration=m.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in m.fx.speeds?m.fx.speeds[d.duration]:m.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){m.isFunction(d.old)&&d.old.call(this),d.queue&&m.dequeue(this,d.queue)},d},m.fn.extend({fadeTo:function(a,b,c,d){return this.filter(U).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=m.isEmptyObject(a),f=m.speed(b,c,d),g=function(){var b=kc(this,m.extend({},a),f);(e||m._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=m.timers,g=m._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&cc.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&m.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=m._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=m.timers,g=d?d.length:0;for(c.finish=!0,m.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),m.each(["toggle","show","hide"],function(a,b){var c=m.fn[b];m.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(gc(b,!0),a,d,e)}}),m.each({slideDown:gc("show"),slideUp:gc("hide"),slideToggle:gc("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){m.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),m.timers=[],m.fx.tick=function(){var a,b=m.timers,c=0;for($b=m.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||m.fx.stop(),$b=void 0},m.fx.timer=function(a){m.timers.push(a),a()?m.fx.start():m.timers.pop()},m.fx.interval=13,m.fx.start=function(){_b||(_b=setInterval(m.fx.tick,m.fx.interval))},m.fx.stop=function(){clearInterval(_b),_b=null},m.fx.speeds={slow:600,fast:200,_default:400},m.fn.delay=function(a,b){return a=m.fx?m.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a,b,c,d,e;b=y.createElement("div"),b.setAttribute("className","t"),b.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=y.createElement("select"),e=c.appendChild(y.createElement("option")),a=b.getElementsByTagName("input")[0],d.style.cssText="top:1px",k.getSetAttribute="t"!==b.className,k.style=/top/.test(d.getAttribute("style")),k.hrefNormalized="/a"===d.getAttribute("href"),k.checkOn=!!a.value,k.optSelected=e.selected,k.enctype=!!y.createElement("form").enctype,c.disabled=!0,k.optDisabled=!e.disabled,a=y.createElement("input"),a.setAttribute("value",""),k.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),k.radioValue="t"===a.value}();var lc=/\r/g;m.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=m.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,m(this).val()):a,null==e?e="":"number"==typeof e?e+="":m.isArray(e)&&(e=m.map(e,function(a){return null==a?"":a+""})),b=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=m.valHooks[e.type]||m.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(lc,""):null==c?"":c)}}}),m.extend({valHooks:{option:{get:function(a){var b=m.find.attr(a,"value");return null!=b?b:m.trim(m.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&m.nodeName(c.parentNode,"optgroup"))){if(b=m(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=m.makeArray(b),g=e.length;while(g--)if(d=e[g],m.inArray(m.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(a,b){return m.isArray(b)?a.checked=m.inArray(m(a).val(),b)>=0:void 0}},k.checkOn||(m.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var mc,nc,oc=m.expr.attrHandle,pc=/^(?:checked|selected)$/i,qc=k.getSetAttribute,rc=k.input;m.fn.extend({attr:function(a,b){return V(this,m.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){m.removeAttr(this,a)})}}),m.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===K?m.prop(a,b,c):(1===f&&m.isXMLDoc(a)||(b=b.toLowerCase(),d=m.attrHooks[b]||(m.expr.match.bool.test(b)?nc:mc)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=m.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void m.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=m.propFix[c]||c,m.expr.match.bool.test(c)?rc&&qc||!pc.test(c)?a[d]=!1:a[m.camelCase("default-"+c)]=a[d]=!1:m.attr(a,c,""),a.removeAttribute(qc?c:d)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&m.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),nc={set:function(a,b,c){return b===!1?m.removeAttr(a,c):rc&&qc||!pc.test(c)?a.setAttribute(!qc&&m.propFix[c]||c,c):a[m.camelCase("default-"+c)]=a[c]=!0,c}},m.each(m.expr.match.bool.source.match(/\w+/g),function(a,b){var c=oc[b]||m.find.attr;oc[b]=rc&&qc||!pc.test(b)?function(a,b,d){var e,f;return d||(f=oc[b],oc[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,oc[b]=f),e}:function(a,b,c){return c?void 0:a[m.camelCase("default-"+b)]?b.toLowerCase():null}}),rc&&qc||(m.attrHooks.value={set:function(a,b,c){return m.nodeName(a,"input")?void(a.defaultValue=b):mc&&mc.set(a,b,c)}}),qc||(mc={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},oc.id=oc.name=oc.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},m.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:mc.set},m.attrHooks.contenteditable={set:function(a,b,c){mc.set(a,""===b?!1:b,c)}},m.each(["width","height"],function(a,b){m.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),k.style||(m.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var sc=/^(?:input|select|textarea|button|object)$/i,tc=/^(?:a|area)$/i;m.fn.extend({prop:function(a,b){return V(this,m.prop,a,b,arguments.length>1)},removeProp:function(a){return a=m.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),m.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!m.isXMLDoc(a),f&&(b=m.propFix[b]||b,e=m.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=m.find.attr(a,"tabindex");return b?parseInt(b,10):sc.test(a.nodeName)||tc.test(a.nodeName)&&a.href?0:-1}}}}),k.hrefNormalized||m.each(["href","src"],function(a,b){m.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),k.optSelected||(m.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this}),k.enctype||(m.propFix.enctype="encoding");var uc=/[\t\r\n\f]/g;m.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j="string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).addClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=m.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j=0===arguments.length||"string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).removeClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?m.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(m.isFunction(a)?function(c){m(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=m(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===K||"boolean"===c)&&(this.className&&m._data(this,"__className__",this.className),this.className=this.className||a===!1?"":m._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(uc," ").indexOf(b)>=0)return!0;return!1}}),m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){m.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),m.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var vc=m.now(),wc=/\?/,xc=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;m.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=m.trim(b+"");return e&&!m.trim(e.replace(xc,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():m.error("Invalid JSON: "+b)},m.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||m.error("Invalid XML: "+b),c};var yc,zc,Ac=/#.*$/,Bc=/([?&])_=[^&]*/,Cc=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Dc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ec=/^(?:GET|HEAD)$/,Fc=/^\/\//,Gc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Hc={},Ic={},Jc="*/".concat("*");try{zc=location.href}catch(Kc){zc=y.createElement("a"),zc.href="",zc=zc.href}yc=Gc.exec(zc.toLowerCase())||[];function Lc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(m.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Mc(a,b,c,d){var e={},f=a===Ic;function g(h){var i;return e[h]=!0,m.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Nc(a,b){var c,d,e=m.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&m.extend(!0,a,c),a}function Oc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Pc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:zc,type:"GET",isLocal:Dc.test(yc[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":m.parseJSON,"text xml":m.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Nc(Nc(a,m.ajaxSettings),b):Nc(m.ajaxSettings,a)},ajaxPrefilter:Lc(Hc),ajaxTransport:Lc(Ic),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=m.ajaxSetup({},b),l=k.context||k,n=k.context&&(l.nodeType||l.jquery)?m(l):m.event,o=m.Deferred(),p=m.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!j){j={};while(b=Cc.exec(f))j[b[1].toLowerCase()]=b[2]}b=j[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?f:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return i&&i.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||zc)+"").replace(Ac,"").replace(Fc,yc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=m.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(c=Gc.exec(k.url.toLowerCase()),k.crossDomain=!(!c||c[1]===yc[1]&&c[2]===yc[2]&&(c[3]||("http:"===c[1]?"80":"443"))===(yc[3]||("http:"===yc[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=m.param(k.data,k.traditional)),Mc(Hc,k,b,v),2===t)return v;h=k.global,h&&0===m.active++&&m.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!Ec.test(k.type),e=k.url,k.hasContent||(k.data&&(e=k.url+=(wc.test(e)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=Bc.test(e)?e.replace(Bc,"$1_="+vc++):e+(wc.test(e)?"&":"?")+"_="+vc++)),k.ifModified&&(m.lastModified[e]&&v.setRequestHeader("If-Modified-Since",m.lastModified[e]),m.etag[e]&&v.setRequestHeader("If-None-Match",m.etag[e])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+Jc+"; q=0.01":""):k.accepts["*"]);for(d in k.headers)v.setRequestHeader(d,k.headers[d]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(d in{success:1,error:1,complete:1})v[d](k[d]);if(i=Mc(Ic,k,b,v)){v.readyState=1,h&&n.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,i.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,c,d){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),i=void 0,f=d||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,c&&(u=Oc(k,v,c)),u=Pc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(m.lastModified[e]=w),w=v.getResponseHeader("etag"),w&&(m.etag[e]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,h&&n.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),h&&(n.trigger("ajaxComplete",[v,k]),--m.active||m.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return m.get(a,b,c,"json")},getScript:function(a,b){return m.get(a,void 0,b,"script")}}),m.each(["get","post"],function(a,b){m[b]=function(a,c,d,e){return m.isFunction(c)&&(e=e||d,d=c,c=void 0),m.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),m.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){m.fn[b]=function(a){return this.on(b,a)}}),m._evalUrl=function(a){return m.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},m.fn.extend({wrapAll:function(a){if(m.isFunction(a))return this.each(function(b){m(this).wrapAll(a.call(this,b))});if(this[0]){var b=m(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return this.each(m.isFunction(a)?function(b){m(this).wrapInner(a.call(this,b))}:function(){var b=m(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=m.isFunction(a);return this.each(function(c){m(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){m.nodeName(this,"body")||m(this).replaceWith(this.childNodes)}).end()}}),m.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!k.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||m.css(a,"display"))},m.expr.filters.visible=function(a){return!m.expr.filters.hidden(a)};var Qc=/%20/g,Rc=/\[\]$/,Sc=/\r?\n/g,Tc=/^(?:submit|button|image|reset|file)$/i,Uc=/^(?:input|select|textarea|keygen)/i;function Vc(a,b,c,d){var e;if(m.isArray(b))m.each(b,function(b,e){c||Rc.test(a)?d(a,e):Vc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==m.type(b))d(a,b);else for(e in b)Vc(a+"["+e+"]",b[e],c,d)}m.param=function(a,b){var c,d=[],e=function(a,b){b=m.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=m.ajaxSettings&&m.ajaxSettings.traditional),m.isArray(a)||a.jquery&&!m.isPlainObject(a))m.each(a,function(){e(this.name,this.value)});else for(c in a)Vc(c,a[c],b,e);return d.join("&").replace(Qc,"+")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=m.prop(this,"elements");return a?m.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!m(this).is(":disabled")&&Uc.test(this.nodeName)&&!Tc.test(a)&&(this.checked||!W.test(a))}).map(function(a,b){var c=m(this).val();return null==c?null:m.isArray(c)?m.map(c,function(a){return{name:b.name,value:a.replace(Sc,"\r\n")}}):{name:b.name,value:c.replace(Sc,"\r\n")}}).get()}}),m.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&Zc()||$c()}:Zc;var Wc=0,Xc={},Yc=m.ajaxSettings.xhr();a.ActiveXObject&&m(a).on("unload",function(){for(var a in Xc)Xc[a](void 0,!0)}),k.cors=!!Yc&&"withCredentials"in Yc,Yc=k.ajax=!!Yc,Yc&&m.ajaxTransport(function(a){if(!a.crossDomain||k.cors){var b;return{send:function(c,d){var e,f=a.xhr(),g=++Wc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&f.setRequestHeader(e,c[e]+"");f.send(a.hasContent&&a.data||null),b=function(c,e){var h,i,j;if(b&&(e||4===f.readyState))if(delete Xc[g],b=void 0,f.onreadystatechange=m.noop,e)4!==f.readyState&&f.abort();else{j={},h=f.status,"string"==typeof f.responseText&&(j.text=f.responseText);try{i=f.statusText}catch(k){i=""}h||!a.isLocal||a.crossDomain?1223===h&&(h=204):h=j.text?200:404}j&&d(h,i,j,f.getAllResponseHeaders())},a.async?4===f.readyState?setTimeout(b):f.onreadystatechange=Xc[g]=b:b()},abort:function(){b&&b(void 0,!0)}}}});function Zc(){try{return new a.XMLHttpRequest}catch(b){}}function $c(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return m.globalEval(a),a}}}),m.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),m.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=y.head||m("head")[0]||y.documentElement;return{send:function(d,e){b=y.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||e(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var _c=[],ad=/(=)\?(?=&|$)|\?\?/;m.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=_c.pop()||m.expando+"_"+vc++;return this[a]=!0,a}}),m.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(ad.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&ad.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=m.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(ad,"$1"+e):b.jsonp!==!1&&(b.url+=(wc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||m.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,_c.push(e)),g&&m.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),m.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||y;var d=u.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=m.buildFragment([a],b,e),e&&e.length&&m(e).remove(),m.merge([],d.childNodes))};var bd=m.fn.load;m.fn.load=function(a,b,c){if("string"!=typeof a&&bd)return bd.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=m.trim(a.slice(h,a.length)),a=a.slice(0,h)),m.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(f="POST"),g.length>0&&m.ajax({url:a,type:f,dataType:"html",data:b}).done(function(a){e=arguments,g.html(d?m("<div>").append(m.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,e||[a.responseText,b,a])}),this},m.expr.filters.animated=function(a){return m.grep(m.timers,function(b){return a===b.elem}).length};var cd=a.document.documentElement;function dd(a){return m.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}m.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=m.css(a,"position"),l=m(a),n={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=m.css(a,"top"),i=m.css(a,"left"),j=("absolute"===k||"fixed"===k)&&m.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),m.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(n.top=b.top-h.top+g),null!=b.left&&(n.left=b.left-h.left+e),"using"in b?b.using.call(a,n):l.css(n)}},m.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){m.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,m.contains(b,e)?(typeof e.getBoundingClientRect!==K&&(d=e.getBoundingClientRect()),c=dd(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===m.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),m.nodeName(a[0],"html")||(c=a.offset()),c.top+=m.css(a[0],"borderTopWidth",!0),c.left+=m.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-m.css(d,"marginTop",!0),left:b.left-c.left-m.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||cd;while(a&&!m.nodeName(a,"html")&&"static"===m.css(a,"position"))a=a.offsetParent;return a||cd})}}),m.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);m.fn[a]=function(d){return V(this,function(a,d,e){var f=dd(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?m(f).scrollLeft():e,c?e:m(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),m.each(["top","left"],function(a,b){m.cssHooks[b]=Lb(k.pixelPosition,function(a,c){return c?(c=Jb(a,b),Hb.test(c)?m(a).position()[b]+"px":c):void 0})}),m.each({Height:"height",Width:"width"},function(a,b){m.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){m.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return V(this,function(b,c,d){var e;return m.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?m.css(b,c,g):m.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),m.fn.size=function(){return this.length},m.fn.andSelf=m.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return m});var ed=a.jQuery,fd=a.$;return m.noConflict=function(b){return a.$===m&&(a.$=fd),b&&a.jQuery===m&&(a.jQuery=ed),m},typeof b===K&&(a.jQuery=a.$=m),m});
diff --git a/assets/js/prettify.js b/assets/js/prettify.js
deleted file mode 100644
index 7b99049..0000000
--- a/assets/js/prettify.js
+++ /dev/null
@@ -1,30 +0,0 @@
-!function(){var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
-(function(){function S(a){function d(e){var b=e.charCodeAt(0);if(b!==92)return b;var a=e.charAt(1);return(b=r[a])?b:"0"<=a&&a<="7"?parseInt(e.substring(1),8):a==="u"||a==="x"?parseInt(e.substring(2),16):e.charCodeAt(1)}function g(e){if(e<32)return(e<16?"\\x0":"\\x")+e.toString(16);e=String.fromCharCode(e);return e==="\\"||e==="-"||e==="]"||e==="^"?"\\"+e:e}function b(e){var b=e.substring(1,e.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),e=[],a=
-b[0]==="^",c=["["];a&&c.push("^");for(var a=a?1:0,f=b.length;a<f;++a){var h=b[a];if(/\\[bdsw]/i.test(h))c.push(h);else{var h=d(h),l;a+2<f&&"-"===b[a+1]?(l=d(b[a+2]),a+=2):l=h;e.push([h,l]);l<65||h>122||(l<65||h>90||e.push([Math.max(65,h)|32,Math.min(l,90)|32]),l<97||h>122||e.push([Math.max(97,h)&-33,Math.min(l,122)&-33]))}}e.sort(function(e,a){return e[0]-a[0]||a[1]-e[1]});b=[];f=[];for(a=0;a<e.length;++a)h=e[a],h[0]<=f[1]+1?f[1]=Math.max(f[1],h[1]):b.push(f=h);for(a=0;a<b.length;++a)h=b[a],c.push(g(h[0])),
-h[1]>h[0]&&(h[1]+1>h[0]&&c.push("-"),c.push(g(h[1])));c.push("]");return c.join("")}function s(e){for(var a=e.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),c=a.length,d=[],f=0,h=0;f<c;++f){var l=a[f];l==="("?++h:"\\"===l.charAt(0)&&(l=+l.substring(1))&&(l<=h?d[l]=-1:a[f]=g(l))}for(f=1;f<d.length;++f)-1===d[f]&&(d[f]=++x);for(h=f=0;f<c;++f)l=a[f],l==="("?(++h,d[h]||(a[f]="(?:")):"\\"===l.charAt(0)&&(l=+l.substring(1))&&l<=h&&
-(a[f]="\\"+d[l]);for(f=0;f<c;++f)"^"===a[f]&&"^"!==a[f+1]&&(a[f]="");if(e.ignoreCase&&m)for(f=0;f<c;++f)l=a[f],e=l.charAt(0),l.length>=2&&e==="["?a[f]=b(l):e!=="\\"&&(a[f]=l.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return a.join("")}for(var x=0,m=!1,j=!1,k=0,c=a.length;k<c;++k){var i=a[k];if(i.ignoreCase)j=!0;else if(/[a-z]/i.test(i.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){m=!0;j=!1;break}}for(var r={b:8,t:9,n:10,v:11,
-f:12,r:13},n=[],k=0,c=a.length;k<c;++k){i=a[k];if(i.global||i.multiline)throw Error(""+i);n.push("(?:"+s(i)+")")}return RegExp(n.join("|"),j?"gi":"g")}function T(a,d){function g(a){var c=a.nodeType;if(c==1){if(!b.test(a.className)){for(c=a.firstChild;c;c=c.nextSibling)g(c);c=a.nodeName.toLowerCase();if("br"===c||"li"===c)s[j]="\n",m[j<<1]=x++,m[j++<<1|1]=a}}else if(c==3||c==4)c=a.nodeValue,c.length&&(c=d?c.replace(/\r\n?/g,"\n"):c.replace(/[\t\n\r ]+/g," "),s[j]=c,m[j<<1]=x,x+=c.length,m[j++<<1|1]=
-a)}var b=/(?:^|\s)nocode(?:\s|$)/,s=[],x=0,m=[],j=0;g(a);return{a:s.join("").replace(/\n$/,""),d:m}}function H(a,d,g,b){d&&(a={a:d,e:a},g(a),b.push.apply(b,a.g))}function U(a){for(var d=void 0,g=a.firstChild;g;g=g.nextSibling)var b=g.nodeType,d=b===1?d?a:g:b===3?V.test(g.nodeValue)?a:d:d;return d===a?void 0:d}function C(a,d){function g(a){for(var j=a.e,k=[j,"pln"],c=0,i=a.a.match(s)||[],r={},n=0,e=i.length;n<e;++n){var z=i[n],w=r[z],t=void 0,f;if(typeof w==="string")f=!1;else{var h=b[z.charAt(0)];
-if(h)t=z.match(h[1]),w=h[0];else{for(f=0;f<x;++f)if(h=d[f],t=z.match(h[1])){w=h[0];break}t||(w="pln")}if((f=w.length>=5&&"lang-"===w.substring(0,5))&&!(t&&typeof t[1]==="string"))f=!1,w="src";f||(r[z]=w)}h=c;c+=z.length;if(f){f=t[1];var l=z.indexOf(f),B=l+f.length;t[2]&&(B=z.length-t[2].length,l=B-f.length);w=w.substring(5);H(j+h,z.substring(0,l),g,k);H(j+h+l,f,I(w,f),k);H(j+h+B,z.substring(B),g,k)}else k.push(j+h,w)}a.g=k}var b={},s;(function(){for(var g=a.concat(d),j=[],k={},c=0,i=g.length;c<i;++c){var r=
-g[c],n=r[3];if(n)for(var e=n.length;--e>=0;)b[n.charAt(e)]=r;r=r[1];n=""+r;k.hasOwnProperty(n)||(j.push(r),k[n]=q)}j.push(/[\S\s]/);s=S(j)})();var x=d.length;return g}function v(a){var d=[],g=[];a.tripleQuotedStrings?d.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?d.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
-q,"'\"`"]):d.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&g.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var b=a.hashComments;b&&(a.cStyleComments?(b>1?d.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):d.push(["com",/^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),g.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,q])):d.push(["com",
-/^#[^\n\r]*/,q,"#"]));a.cStyleComments&&(g.push(["com",/^\/\/[^\n\r]*/,q]),g.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));if(b=a.regexLiterals){var s=(b=b>1?"":"\n\r")?".":"[\\S\\s]";g.push(["lang-regex",RegExp("^(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*("+("/(?=[^/*"+b+"])(?:[^/\\x5B\\x5C"+b+"]|\\x5C"+s+"|\\x5B(?:[^\\x5C\\x5D"+b+"]|\\x5C"+
-s+")*(?:\\x5D|$))+/")+")")])}(b=a.types)&&g.push(["typ",b]);b=(""+a.keywords).replace(/^ | $/g,"");b.length&&g.push(["kwd",RegExp("^(?:"+b.replace(/[\s,]+/g,"|")+")\\b"),q]);d.push(["pln",/^\s+/,q," \r\n\t\u00a0"]);b="^.[^\\s\\w.$@'\"`/\\\\]*";a.regexLiterals&&(b+="(?!s*/)");g.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,
-q],["pun",RegExp(b),q]);return C(d,g)}function J(a,d,g){function b(a){var c=a.nodeType;if(c==1&&!x.test(a.className))if("br"===a.nodeName)s(a),a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)b(a);else if((c==3||c==4)&&g){var d=a.nodeValue,i=d.match(m);if(i)c=d.substring(0,i.index),a.nodeValue=c,(d=d.substring(i.index+i[0].length))&&a.parentNode.insertBefore(j.createTextNode(d),a.nextSibling),s(a),c||a.parentNode.removeChild(a)}}function s(a){function b(a,c){var d=
-c?a.cloneNode(!1):a,e=a.parentNode;if(e){var e=b(e,1),g=a.nextSibling;e.appendChild(d);for(var i=g;i;i=g)g=i.nextSibling,e.appendChild(i)}return d}for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),d;(d=a.parentNode)&&d.nodeType===1;)a=d;c.push(a)}for(var x=/(?:^|\s)nocode(?:\s|$)/,m=/\r\n?|\n/,j=a.ownerDocument,k=j.createElement("li");a.firstChild;)k.appendChild(a.firstChild);for(var c=[k],i=0;i<c.length;++i)b(c[i]);d===(d|0)&&c[0].setAttribute("value",d);var r=j.createElement("ol");
-r.className="linenums";for(var d=Math.max(0,d-1|0)||0,i=0,n=c.length;i<n;++i)k=c[i],k.className="L"+(i+d)%10,k.firstChild||k.appendChild(j.createTextNode("\u00a0")),r.appendChild(k);a.appendChild(r)}function p(a,d){for(var g=d.length;--g>=0;){var b=d[g];F.hasOwnProperty(b)?D.console&&console.warn("cannot override language handler %s",b):F[b]=a}}function I(a,d){if(!a||!F.hasOwnProperty(a))a=/^\s*</.test(d)?"default-markup":"default-code";return F[a]}function K(a){var d=a.h;try{var g=T(a.c,a.i),b=g.a;
-a.a=b;a.d=g.d;a.e=0;I(d,b)(a);var s=/\bMSIE\s(\d+)/.exec(navigator.userAgent),s=s&&+s[1]<=8,d=/\n/g,x=a.a,m=x.length,g=0,j=a.d,k=j.length,b=0,c=a.g,i=c.length,r=0;c[i]=m;var n,e;for(e=n=0;e<i;)c[e]!==c[e+2]?(c[n++]=c[e++],c[n++]=c[e++]):e+=2;i=n;for(e=n=0;e<i;){for(var p=c[e],w=c[e+1],t=e+2;t+2<=i&&c[t+1]===w;)t+=2;c[n++]=p;c[n++]=w;e=t}c.length=n;var f=a.c,h;if(f)h=f.style.display,f.style.display="none";try{for(;b<k;){var l=j[b+2]||m,B=c[r+2]||m,t=Math.min(l,B),A=j[b+1],G;if(A.nodeType!==1&&(G=x.substring(g,
-t))){s&&(G=G.replace(d,"\r"));A.nodeValue=G;var L=A.ownerDocument,o=L.createElement("span");o.className=c[r+1];var v=A.parentNode;v.replaceChild(o,A);o.appendChild(A);g<l&&(j[b+1]=A=L.createTextNode(x.substring(t,l)),v.insertBefore(A,o.nextSibling))}g=t;g>=l&&(b+=2);g>=B&&(r+=2)}}finally{if(f)f.style.display=h}}catch(u){D.console&&console.log(u&&u.stack||u)}}var D=window,y=["break,continue,do,else,for,if,return,while"],E=[[y,"auto,case,char,const,default,double,enum,extern,float,goto,inline,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
-"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],M=[E,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,delegate,dynamic_cast,explicit,export,friend,generic,late_check,mutable,namespace,nullptr,property,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],N=[E,"abstract,assert,boolean,byte,extends,final,finally,implements,import,instanceof,interface,null,native,package,strictfp,super,synchronized,throws,transient"],
-O=[N,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,internal,into,is,let,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var,virtual,where"],E=[E,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],P=[y,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
-Q=[y,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],W=[y,"as,assert,const,copy,drop,enum,extern,fail,false,fn,impl,let,log,loop,match,mod,move,mut,priv,pub,pure,ref,self,static,struct,true,trait,type,unsafe,use"],y=[y,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],R=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/,
-V=/\S/,X=v({keywords:[M,O,E,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",P,Q,y],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),F={};p(X,["default-code"]);p(C([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",
-/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);p(C([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],
-["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);p(C([],[["atv",/^[\S\s]+/]]),["uq.val"]);p(v({keywords:M,hashComments:!0,cStyleComments:!0,types:R}),["c","cc","cpp","cxx","cyc","m"]);p(v({keywords:"null,true,false"}),["json"]);p(v({keywords:O,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:R}),
-["cs"]);p(v({keywords:N,cStyleComments:!0}),["java"]);p(v({keywords:y,hashComments:!0,multiLineStrings:!0}),["bash","bsh","csh","sh"]);p(v({keywords:P,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),["cv","py","python"]);p(v({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:2}),["perl","pl","pm"]);p(v({keywords:Q,
-hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb","ruby"]);p(v({keywords:E,cStyleComments:!0,regexLiterals:!0}),["javascript","js"]);p(v({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,throw,true,try,unless,until,when,while,yes",hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);p(v({keywords:W,cStyleComments:!0,multilineStrings:!0}),["rc","rs","rust"]);
-p(C([],[["str",/^[\S\s]+/]]),["regex"]);var Y=D.PR={createSimpleLexer:C,registerLangHandler:p,sourceDecorator:v,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ",prettyPrintOne:D.prettyPrintOne=function(a,d,g){var b=document.createElement("div");b.innerHTML="<pre>"+a+"</pre>";b=b.firstChild;g&&J(b,g,!0);K({h:d,j:g,c:b,i:1});
-return b.innerHTML},prettyPrint:D.prettyPrint=function(a,d){function g(){for(var b=D.PR_SHOULD_USE_CONTINUATION?c.now()+250:Infinity;i<p.length&&c.now()<b;i++){for(var d=p[i],j=h,k=d;k=k.previousSibling;){var m=k.nodeType,o=(m===7||m===8)&&k.nodeValue;if(o?!/^\??prettify\b/.test(o):m!==3||/\S/.test(k.nodeValue))break;if(o){j={};o.replace(/\b(\w+)=([\w%+\-.:]+)/g,function(a,b,c){j[b]=c});break}}k=d.className;if((j!==h||e.test(k))&&!v.test(k)){m=!1;for(o=d.parentNode;o;o=o.parentNode)if(f.test(o.tagName)&&
-o.className&&e.test(o.className)){m=!0;break}if(!m){d.className+=" prettyprinted";m=j.lang;if(!m){var m=k.match(n),y;if(!m&&(y=U(d))&&t.test(y.tagName))m=y.className.match(n);m&&(m=m[1])}if(w.test(d.tagName))o=1;else var o=d.currentStyle,u=s.defaultView,o=(o=o?o.whiteSpace:u&&u.getComputedStyle?u.getComputedStyle(d,q).getPropertyValue("white-space"):0)&&"pre"===o.substring(0,3);u=j.linenums;if(!(u=u==="true"||+u))u=(u=k.match(/\blinenums\b(?::(\d+))?/))?u[1]&&u[1].length?+u[1]:!0:!1;u&&J(d,u,o);r=
-{h:m,c:d,j:u,i:o};K(r)}}}i<p.length?setTimeout(g,250):"function"===typeof a&&a()}for(var b=d||document.body,s=b.ownerDocument||document,b=[b.getElementsByTagName("pre"),b.getElementsByTagName("code"),b.getElementsByTagName("xmp")],p=[],m=0;m<b.length;++m)for(var j=0,k=b[m].length;j<k;++j)p.push(b[m][j]);var b=q,c=Date;c.now||(c={now:function(){return+new Date}});var i=0,r,n=/\blang(?:uage)?-([\w.]+)(?!\S)/,e=/\bprettyprint\b/,v=/\bprettyprinted\b/,w=/pre|xmp/i,t=/^code$/i,f=/^(?:pre|code|xmp)$/i,
-h={};g()}};typeof define==="function"&&define.amd&&define("google-code-prettify",[],function(){return Y})})();}()
diff --git a/assets/js/readingTime.js b/assets/js/readingTime.js
deleted file mode 100644
index 5e44b7e..0000000
--- a/assets/js/readingTime.js
+++ /dev/null
@@ -1,266 +0,0 @@
-/*!
- Name: Reading Time
- Dependencies: jQuery
- Author: Michael Lynch
- Author URL: http://michaelynch.com
- Date Created: August 14, 2013
- Date Updated: July 11, 2016
- Licensed under the MIT license
- */
-
-;(function($) {
-
-    var totalReadingTimeSeconds;
-
-    $.fn.readingTime = function(options) {
-
-        //define default parameters
-        var defaults = {
-                readingTimeTarget: '.eta',
-                readingTimeAsNumber: false,
-                wordCountTarget: null,
-                wordsPerMinute: 270,
-                round: true,
-                lang: 'en',
-                lessThanAMinuteString: '',
-                prependTimeString: '',
-                prependWordString: '',
-                remotePath: null,
-                remoteTarget: null,
-                success: function() {},
-                error: function() {}
-            },
-            plugin = this,
-            el = $(this);
-
-        //merge defaults and options
-        plugin.settings = $.extend({}, defaults, options);
-
-        //define vars
-        var s = plugin.settings;
-
-        //if no element was bound
-        if(!this.length) {
-
-            //run error callback
-            s.error.call(this);
-
-            //return so chained events can continue
-            return this;
-        }
-
-        //if s.lang is set to italian
-        if(s.lang == 'it') {
-
-            var lessThanAMinute = s.lessThanAMinuteString || "Meno di un minuto";
-
-            var minShortForm = 'min';
-
-            //if s.lang is set to french
-        } else if(s.lang == 'fr') {
-
-            var lessThanAMinute = s.lessThanAMinuteString || "Moins d'une minute";
-
-            var minShortForm = 'min';
-
-            //if s.lang is set to german
-        } else if(s.lang == 'de') {
-
-            var lessThanAMinute = s.lessThanAMinuteString || "Weniger als eine Minute";
-
-            var minShortForm = 'min';
-
-            //if s.lang is set to spanish
-        } else if(s.lang == 'es') {
-
-            var lessThanAMinute = s.lessThanAMinuteString || "Menos de un minuto";
-
-            var minShortForm = 'min';
-
-            //if s.lang is set to dutch
-        } else if(s.lang == 'nl') {
-
-            var lessThanAMinute = s.lessThanAMinuteString || "Minder dan een minuut";
-
-            var minShortForm = 'min';
-
-            //if s.lang is set to slovak
-        } else if(s.lang == 'sk') {
-
-            var lessThanAMinute = s.lessThanAMinuteString || "Menej než minútu";
-
-            var minShortForm = 'min';
-
-            //if s.lang is set to czech
-        } else if(s.lang == 'cz') {
-
-            var lessThanAMinute = s.lessThanAMinuteString || "MénÄ› než minutu";
-
-            var minShortForm = 'min';
-
-            //if s.lang is set to Hungarian
-        } else if(s.lang == 'hu') {
-
-            var lessThanAMinute = s.lessThanAMinuteString || "Kevesebb mint egy perc";
-
-            var minShortForm = 'perc';
-
-            // if s.lang is set to Russian
-        } else if (s.lang == 'ru') {
-
-            var lessThanAMinute = s.lessThanAMinuteString || "Меньше минуты";
-
-            var minShortForm = 'мин';
-
-            //if s.lang is set to Arabic
-        } else if (s.lang == 'ar') {
-
-            var lessThanAMinute = s.lessThanAMinuteString || "أقل من دقيقة";
-
-            var minShortForm = 'دقيقة';
-
-            //if s.lang is set to Danish
-        } else if(s.lang == 'da') {
-            var lessThanAMinute = s.lessThanAMinuteString || "Mindre end et minut";
-            var minShortForm = 'min';
-
-            //if s.lang is set to Icelandic
-        } else if(s.lang == 'is') {
-            var lessThanAMinute = s.lessThanAMinuteString || "Minna en eina mínútu";
-            var minShortForm = 'min';
-
-            //if s.lang is set to Norwegian
-        } else if(s.lang == 'no') {
-            var lessThanAMinute = s.lessThanAMinuteString || "Mindre enn ett minutt";
-            var minShortForm = 'min';
-
-            //if s.lang is set to Polish
-        } else if(s.lang == 'pl') {
-            var lessThanAMinute = s.lessThanAMinuteString || "Mniej niż minutę";
-            var minShortForm = 'min';
-
-            //if s.lang is set to Russian
-        } else if(s.lang == 'ru') {
-            var lessThanAMinute = s.lessThanAMinuteString || "Меньше минуты";
-            var minShortForm = 'мой';
-
-            //if s.lang is set to Swedish
-        } else if(s.lang == 'sv') {
-            var lessThanAMinute = s.lessThanAMinuteString || "Mindre än en minut";
-            var minShortForm = 'min';
-
-            //if s.lang is set to Turkish
-        } else if(s.lang == 'tr') {
-            var lessThanAMinute = s.lessThanAMinuteString || "Bir dakikadan az";
-            var minShortForm = 'dk';
-
-            //default s.lang is english
-        } else {
-
-            var lessThanAMinute = s.lessThanAMinuteString || 'Less than a minute';
-
-            var minShortForm = 'min';
-
-        }
-
-        var setTime = function(text) {
-
-            if(text !== '') {
-
-                //split text by spaces to define total words
-                var totalWords = text.trim().split(/\s+/g).length;
-
-                //define words per second based on words per minute (s.wordsPerMinute)
-                var wordsPerSecond = s.wordsPerMinute / 60;
-
-                //define total reading time in seconds
-                totalReadingTimeSeconds = totalWords / wordsPerSecond;
-
-                //define reading time in minutes
-                //if s.round is set to true
-                if(s.round === true) {
-
-                    var readingTimeMinutes = Math.round(totalReadingTimeSeconds / 60);
-
-                    //if s.round is set to false
-                } else {
-
-                    var readingTimeMinutes = Math.floor(totalReadingTimeSeconds / 60);
-
-                }
-
-                //define remaining reading time seconds
-                var readingTimeSeconds = Math.round(totalReadingTimeSeconds - readingTimeMinutes * 60);
-
-                //if s.round is set to true
-                if(s.round === true) {
-
-                    //if minutes are greater than 0
-                    if(readingTimeMinutes > 0) {
-
-                        //set reading time by the minute
-                        $(s.readingTimeTarget).text(s.prependTimeString + readingTimeMinutes + ((!s.readingTimeAsNumber) ? ' ' + minShortForm : ''));
-
-                    } else {
-
-                        //set reading time as less than a minute
-                        $(s.readingTimeTarget).text((!s.readingTimeAsNumber) ? s.prependTimeString + lessThanAMinute : readingTimeMinutes);
-
-                    }
-
-                    //if s.round is set to false
-                } else {
-
-                    //format reading time
-                    var readingTime = readingTimeMinutes + ':' + readingTimeSeconds;
-
-                    //set reading time in minutes and seconds
-                    $(s.readingTimeTarget).text(s.prependTimeString + readingTime);
-
-                }
-
-                //if word count container isn't blank or undefined
-                if(s.wordCountTarget !== '' && s.wordCountTarget !== undefined) {
-
-                    //set word count
-                    $(s.wordCountTarget).text(s.prependWordString + totalWords);
-
-                }
-
-                //run success callback
-                s.success.call(this);
-
-            } else {
-
-                //run error callback
-                s.error.call(this, 'The element is empty.');
-            }
-
-        };
-
-        //for each element
-        el.each(function() {
-
-            //if s.remotePath and s.remoteTarget aren't null
-            if(s.remotePath != null && s.remoteTarget != null) {
-
-                //get contents of remote file
-                $.get(s.remotePath, function(data) {
-
-                    //set time using the remote target found in the remote file
-                    setTime($('<div>').html(data).find(s.remoteTarget).text());
-
-                });
-
-            } else {
-
-                //set time using the targeted element
-                setTime(el.text());
-            }
-        });
-
-        return totalReadingTimeSeconds;
-    }
-
-
-})(jQuery);
\ No newline at end of file
diff --git a/assets/retired/README.md b/assets/retired/README.md
deleted file mode 100644
index 55dc7dd..0000000
--- a/assets/retired/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-Retired podlings markers for website redirects
----
-
-This directory is used to enable website redirects for retired podlings (see also [INFRA-21451](https://issues.apache.org/jira/browse/INFRA-21451)).
-
-When a podling retires, create a directory with the host name of the podling.
-e.g. if the podling website is abcd.apache.org, then create directory abcd/
-
-Empty directories are ignored when checking out Git repos, so there needs to be a file in it,
-so create a bare index.html file. (There's nothing to see, so no point in generating a listing)
-
-Once the Incubator website has been deployed, the website
-http://abcd.apache.org/
-will redirect to 
-https://incubator.apache.org/projects/abcd.html which is the standard status page for podling "abcd" and
-should mention the "retired" status of the podling.
-
-Note: older podlings with websites of the form 
-http://abcd.incubator.apache.org/
-or
-http://incubator.apache.org/abcd/
-are handled by the .htaccess file here:
-https://github.com/apache/incubator/blob/master/assets/.htaccess
diff --git a/assets/retired/amaterasu/index.html b/assets/retired/amaterasu/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/amaterasu/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/ariatosca/index.html b/assets/retired/ariatosca/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/ariatosca/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/blur/index.html b/assets/retired/blur/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/blur/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/cmda/index.html b/assets/retired/cmda/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/cmda/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/droids/index.html b/assets/retired/droids/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/droids/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/edgent/index.html b/assets/retired/edgent/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/edgent/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/hdt/index.html b/assets/retired/hdt/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/hdt/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/index.html b/assets/retired/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/kalumet/index.html b/assets/retired/kalumet/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/kalumet/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/myriad/index.html b/assets/retired/myriad/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/myriad/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/odftoolkit/index.html b/assets/retired/odftoolkit/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/odftoolkit/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/provisionr/index.html b/assets/retired/provisionr/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/provisionr/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/quarks/index.html b/assets/retired/quarks/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/quarks/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/s2graph/index.html b/assets/retired/s2graph/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/s2graph/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/slider/index.html b/assets/retired/slider/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/slider/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/tamaya/index.html b/assets/retired/tamaya/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/tamaya/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/taverna/index.html b/assets/retired/taverna/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/taverna/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/warble/index.html b/assets/retired/warble/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/warble/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/wave/index.html b/assets/retired/wave/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/wave/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/retired/weex/index.html b/assets/retired/weex/index.html
deleted file mode 100644
index 30e84fd..0000000
--- a/assets/retired/weex/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<html><head></head><body></body></html>
diff --git a/assets/style/bootstrap-1-3-0-min.css b/assets/style/bootstrap-1-3-0-min.css
deleted file mode 100644
index fbf9c21..0000000
--- a/assets/style/bootstrap-1-3-0-min.css
+++ /dev/null
@@ -1,331 +0,0 @@
-html,body{margin:0;padding:0;}
-h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,cite,code,del,dfn,em,img,q,s,samp,small,strike,strong,sub,sup,tt,var,dd,dl,dt,li,ol,ul,fieldset,form,label,legend,button,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;font-weight:normal;font-style:normal;font-size:100%;line-height:1;font-family:inherit;}
-table{border-collapse:collapse;border-spacing:0;}
-ol,ul{list-style:none;}
-q:before,q:after,blockquote:before,blockquote:after{content:"";}
-html{overflow-y:scroll;font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
-a:focus{outline:thin dotted;}
-a:hover,a:active{outline:0;}
-article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
-audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
-audio:not([controls]){display:none;}
-sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
-sup{top:-0.5em;}
-sub{bottom:-0.25em;}
-img{border:0;-ms-interpolation-mode:bicubic;}
-button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;}
-button,input{line-height:normal;*overflow:visible;}
-button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}
-button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;}
-input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
-input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}
-textarea{overflow:auto;vertical-align:top;}
-html,body{background-color:#ffffff;}
-body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:18px;color:#404040;}
-.container{width:940px;margin-left:auto;margin-right:auto;zoom:1;}.container:before,.container:after{display:table;content:"";zoom:1;*display:inline;}
-.container:after{clear:both;}
-.container-fluid{position:relative;min-width:940px;padding-left:20px;padding-right:20px;zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";zoom:1;*display:inline;}
-.container-fluid:after{clear:both;}
-.container-fluid>.sidebar{float:left;width:220px;}
-.container-fluid>.content{margin-left:240px;}
-a{line-height:inherit;font-weight:inherit;}
-a[href]{color:#0069d6;text-decoration:none;line-height:inherit;font-weight:inherit;}a[href]:hover{color:#00438a;text-decoration:underline;}
-.pull-right{float:right;}
-.pull-left{float:left;}
-.hide{display:none;}
-.show{display:block;}
-.row{zoom:1;margin-left:-20px;}.row:before,.row:after{display:table;content:"";zoom:1;*display:inline;}
-.row:after{clear:both;}
-[class*="span"]{display:inline;float:left;margin-left:20px;}
-.span1{width:40px;}
-.span2{width:100px;}
-.span3{width:160px;}
-.span4{width:220px;}
-.span5{width:280px;}
-.span6{width:340px;}
-.span7{width:400px;}
-.span8{width:460px;}
-.span9{width:520px;}
-.span10{width:580px;}
-.span11{width:640px;}
-.span12{width:700px;}
-.span13{width:760px;}
-.span14{width:820px;}
-.span15{width:880px;}
-.span16{width:940px;}
-.span17{width:1000px;}
-.span18{width:1060px;}
-.span19{width:1120px;}
-.span20{width:1180px;}
-.span21{width:1240px;}
-.span22{width:1300px;}
-.span23{width:1360px;}
-.span24{width:1420px;}
-.offset1{margin-left:80px;}
-.offset2{margin-left:140px;}
-.offset3{margin-left:200px;}
-.offset4{margin-left:260px;}
-.offset5{margin-left:320px;}
-.offset6{margin-left:380px;}
-.offset7{margin-left:440px;}
-.offset8{margin-left:500px;}
-.offset9{margin-left:560px;}
-.offset10{margin-left:620px;}
-.offset11{margin-left:680px;}
-.offset12{margin-left:740px;}
-.span-one-third{width:300px;}
-.span-two-thirds{width:620px;}
-.offset-one-third{margin-left:340px;}
-.offset-two-thirds{margin-left:660px;}
-p{font-size:13px;font-weight:normal;line-height:18px;margin-bottom:9px;}p small{font-size:11px;color:#bfbfbf;}
-h1,h2,h3,h4,h5,h6{font-weight:bold;color:#404040;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{color:#bfbfbf;}
-h1{margin-bottom:18px;font-size:30px;line-height:36px;}h1 small{font-size:18px;}
-h2{font-size:24px;line-height:36px;}h2 small{font-size:14px;}
-h3,h4,h5,h6{line-height:36px;}
-h3{font-size:18px;}h3 small{font-size:14px;}
-h4{font-size:16px;}h4 small{font-size:12px;}
-h5{font-size:14px;}
-h6{font-size:13px;color:#bfbfbf;text-transform:uppercase;}
-ul,ol{margin:0 0 18px 25px;}
-ul ul,ul ol,ol ol,ol ul{margin-bottom:0;}
-ul{list-style:disc;}
-ol{list-style:decimal;}
-li{line-height:18px;color:#808080;}
-ul.unstyled{list-style:none;margin-left:0;}
-dl{margin-bottom:18px;}dl dt,dl dd{line-height:18px;}
-dl dt{font-weight:bold;}
-dl dd{margin-left:9px;}
-hr{margin:20px 0 19px;border:0;border-bottom:1px solid #eee;}
-strong{font-style:inherit;font-weight:bold;}
-em{font-style:italic;font-weight:inherit;line-height:inherit;}
-.muted{color:#bfbfbf;}
-blockquote{margin-bottom:18px;border-left:5px solid #eee;padding-left:15px;}blockquote p{font-size:14px;font-weight:300;line-height:18px;margin-bottom:0;}
-blockquote small{display:block;font-size:12px;font-weight:300;line-height:18px;color:#bfbfbf;}blockquote small:before{content:'\2014 \00A0';}
-address{display:block;line-height:18px;margin-bottom:18px;}
-code,pre{padding:0 3px 2px;font-family:Monaco, Andale Mono, Courier New, monospace;font-size:12px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
-code{background-color:#fee9cc;color:rgba(0, 0, 0, 0.75);padding:1px 3px;}
-pre{background-color:#f5f5f5;display:block;padding:8.5px;margin:0 0 18px;line-height:18px;font-size:12px;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;white-space:pre;white-space:pre-wrap;word-wrap:break-word;}
-form{margin-bottom:18px;}
-fieldset{margin-bottom:18px;padding-top:18px;}fieldset legend{display:block;padding-left:150px;font-size:19.5px;line-height:1;color:#404040;*padding:0 0 5px 145px;*line-height:1.5;}
-form .clearfix{margin-bottom:18px;zoom:1;}form .clearfix:before,form .clearfix:after{display:table;content:"";zoom:1;*display:inline;}
-form .clearfix:after{clear:both;}
-label,input,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:normal;}
-label{padding-top:6px;font-size:13px;line-height:18px;float:left;width:130px;text-align:right;color:#404040;}
-form .input{margin-left:150px;}
-input[type=checkbox],input[type=radio]{cursor:pointer;}
-input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;font-size:13px;line-height:18px;color:#808080;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
-input[type=checkbox],input[type=radio]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;border:none;}
-input[type=file]{background-color:#ffffff;padding:initial;border:initial;line-height:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
-input[type=button],input[type=reset],input[type=submit]{width:auto;height:auto;}
-select,input[type=file]{height:27px;line-height:27px;*margin-top:4px;}
-select[multiple]{height:inherit;}
-textarea{height:auto;}
-.uneditable-input{background-color:#ffffff;display:block;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;}
-:-moz-placeholder{color:#bfbfbf;}
-::-webkit-input-placeholder{color:#bfbfbf;}
-input,textarea{-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;-webkit-box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1);}
-input:focus,textarea:focus{outline:0;border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1),0 0 8px rgba(82, 168, 236, 0.6);}
-input[type=file]:focus,input[type=checkbox]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:1px dotted #666;}
-form div.clearfix.error{background:#fae5e3;padding:10px 0;margin:-10px 0 10px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}form div.clearfix.error>label,form div.clearfix.error span.help-inline,form div.clearfix.error span.help-block{color:#9d261d;}
-form div.clearfix.error input,form div.clearfix.error textarea{border-color:#c87872;-webkit-box-shadow:0 0 3px rgba(171, 41, 32, 0.25);-moz-box-shadow:0 0 3px rgba(171, 41, 32, 0.25);box-shadow:0 0 3px rgba(171, 41, 32, 0.25);}form div.clearfix.error input:focus,form div.clearfix.error textarea:focus{border-color:#b9554d;-webkit-box-shadow:0 0 6px rgba(171, 41, 32, 0.5);-moz-box-shadow:0 0 6px rgba(171, 41, 32, 0.5);box-shadow:0 0 6px rgba(171, 41, 32, 0.5);}
-form div.clearfix.error .input-prepend span.add-on,form div.clearfix.error .input-append span.add-on{background:#f4c8c5;border-color:#c87872;color:#b9554d;}
-.input-mini,input.mini,textarea.mini,select.mini{width:60px;}
-.input-small,input.small,textarea.small,select.small{width:90px;}
-.input-medium,input.medium,textarea.medium,select.medium{width:150px;}
-.input-large,input.large,textarea.large,select.large{width:210px;}
-.input-xlarge,input.xlarge,textarea.xlarge,select.xlarge{width:270px;}
-.input-xxlarge,input.xxlarge,textarea.xxlarge,select.xxlarge{width:530px;}
-textarea.xxlarge{overflow-y:auto;}
-input.span1,textarea.span1,select.span1{display:inline-block;float:none;width:30px;margin-left:0;}
-input.span2,textarea.span2,select.span2{display:inline-block;float:none;width:90px;margin-left:0;}
-input.span3,textarea.span3,select.span3{display:inline-block;float:none;width:150px;margin-left:0;}
-input.span4,textarea.span4,select.span4{display:inline-block;float:none;width:210px;margin-left:0;}
-input.span5,textarea.span5,select.span5{display:inline-block;float:none;width:270px;margin-left:0;}
-input.span6,textarea.span6,select.span6{display:inline-block;float:none;width:330px;margin-left:0;}
-input.span7,textarea.span7,select.span7{display:inline-block;float:none;width:390px;margin-left:0;}
-input.span8,textarea.span8,select.span8{display:inline-block;float:none;width:450px;margin-left:0;}
-input.span9,textarea.span9,select.span9{display:inline-block;float:none;width:510px;margin-left:0;}
-input.span10,textarea.span10,select.span10{display:inline-block;float:none;width:570px;margin-left:0;}
-input.span11,textarea.span11,select.span11{display:inline-block;float:none;width:630px;margin-left:0;}
-input.span12,textarea.span12,select.span12{display:inline-block;float:none;width:690px;margin-left:0;}
-input.span13,textarea.span13,select.span13{display:inline-block;float:none;width:750px;margin-left:0;}
-input.span14,textarea.span14,select.span14{display:inline-block;float:none;width:810px;margin-left:0;}
-input.span15,textarea.span15,select.span15{display:inline-block;float:none;width:870px;margin-left:0;}
-input.span16,textarea.span16,select.span16{display:inline-block;float:none;width:930px;margin-left:0;}
-input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{background-color:#f5f5f5;border-color:#ddd;cursor:not-allowed;}
-.actions{background:#f5f5f5;margin-top:18px;margin-bottom:18px;padding:17px 20px 18px 150px;border-top:1px solid #ddd;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;}.actions .secondary-action{float:right;}.actions .secondary-action a{line-height:30px;}.actions .secondary-action a:hover{text-decoration:underline;}
-.help-inline,.help-block{font-size:11px;line-height:18px;color:#bfbfbf;}
-.help-inline{padding-left:5px;*position:relative;*top:-5px;}
-.help-block{display:block;max-width:600px;}
-.inline-inputs{color:#808080;}.inline-inputs span,.inline-inputs input{display:inline-block;}
-.inline-inputs input.mini{width:60px;}
-.inline-inputs input.small{width:90px;}
-.inline-inputs span{padding:0 2px 0 1px;}
-.input-prepend input,.input-append input{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}
-.input-prepend .add-on,.input-append .add-on{position:relative;background:#f5f5f5;border:1px solid #ccc;z-index:2;float:left;display:block;width:auto;min-width:16px;height:18px;padding:4px 4px 4px 5px;margin-right:-1px;font-weight:normal;line-height:18px;color:#bfbfbf;text-align:center;text-shadow:0 1px 0 #ffffff;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
-.input-prepend .active,.input-append .active{background:#a9dba9;border-color:#46a546;}
-.input-prepend .add-on{*margin-top:1px;}
-.input-append input{float:left;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
-.input-append .add-on{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;margin-right:0;margin-left:-1px;}
-.inputs-list{margin:0 0 5px;width:100%;}.inputs-list li{display:block;padding:0;width:100%;}
-.inputs-list label{display:block;float:none;width:auto;padding:0;line-height:18px;text-align:left;white-space:normal;}.inputs-list label strong{color:#808080;}
-.inputs-list label small{font-size:11px;font-weight:normal;}
-.inputs-list .inputs-list{margin-left:25px;margin-bottom:10px;padding-top:0;}
-.inputs-list:first-child{padding-top:6px;}
-.inputs-list li+li{padding-top:2px;}
-.inputs-list input[type=radio],.inputs-list input[type=checkbox]{margin-bottom:0;}
-.form-stacked{padding-left:20px;}.form-stacked fieldset{padding-top:9px;}
-.form-stacked legend{padding-left:0;}
-.form-stacked label{display:block;float:none;width:auto;font-weight:bold;text-align:left;line-height:20px;padding-top:0;}
-.form-stacked .clearfix{margin-bottom:9px;}.form-stacked .clearfix div.input{margin-left:0;}
-.form-stacked .inputs-list{margin-bottom:0;}.form-stacked .inputs-list li{padding-top:0;}.form-stacked .inputs-list li label{font-weight:normal;padding-top:0;}
-.form-stacked div.clearfix.error{padding-top:10px;padding-bottom:10px;padding-left:10px;margin-top:0;margin-left:-10px;}
-.form-stacked .actions{margin-left:-20px;padding-left:20px;}
-table{width:100%;margin-bottom:18px;padding:0;border-collapse:separate;*border-collapse:collapse;font-size:13px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}table th,table td{padding:10px 10px 9px;line-height:18px;text-align:left;}
-table th{padding-top:9px;font-weight:bold;vertical-align:middle;border-bottom:1px solid #ddd;}
-table td{vertical-align:top;}
-table th+th,table td+td{border-left:1px solid #ddd;}
-table tr+tr td{border-top:1px solid #ddd;}
-table tbody tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;}
-table tbody tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;}
-table tbody tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;}
-table tbody tr:last-child td:last-child{-webkit-border-radius:0 0 4px 0;-moz-border-radius:0 0 4px 0;border-radius:0 0 4px 0;}
-.zebra-striped tbody tr:nth-child(odd) td{background-color:#f9f9f9;}
-.zebra-striped tbody tr:hover td{background-color:#f5f5f5;}
-table .header{cursor:pointer;}table .header:after{content:"";float:right;margin-top:7px;border-width:0 4px 4px;border-style:solid;border-color:#000 transparent;visibility:hidden;}
-table .headerSortUp,table .headerSortDown{background-color:rgba(141, 192, 219, 0.25);text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);}
-table .header:hover:after{visibility:visible;}
-table .headerSortDown:after,table .headerSortDown:hover:after{visibility:visible;filter:alpha(opacity=60);-khtml-opacity:0.6;-moz-opacity:0.6;opacity:0.6;}
-table .headerSortUp:after{border-bottom:none;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #000;visibility:visible;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;filter:alpha(opacity=60);-khtml-opacity:0.6;-moz-opacity:0.6;opacity:0.6;}
-table .blue{color:#049cdb;border-bottom-color:#049cdb;}
-table .headerSortUp.blue,table .headerSortDown.blue{background-color:#ade6fe;}
-table .green{color:#46a546;border-bottom-color:#46a546;}
-table .headerSortUp.green,table .headerSortDown.green{background-color:#cdeacd;}
-table .red{color:#9d261d;border-bottom-color:#9d261d;}
-table .headerSortUp.red,table .headerSortDown.red{background-color:#f4c8c5;}
-table .yellow{color:#ffc40d;border-bottom-color:#ffc40d;}
-table .headerSortUp.yellow,table .headerSortDown.yellow{background-color:#fff6d9;}
-table .orange{color:#f89406;border-bottom-color:#f89406;}
-table .headerSortUp.orange,table .headerSortDown.orange{background-color:#fee9cc;}
-table .purple{color:#7a43b6;border-bottom-color:#7a43b6;}
-table .headerSortUp.purple,table .headerSortDown.purple{background-color:#e2d5f0;}
-.topbar{height:40px;position:fixed;top:0;left:0;right:0;z-index:10000;overflow:visible;}.topbar a{color:#bfbfbf;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}
-.topbar h3 a:hover,.topbar .brand a:hover,.topbar ul .active>a{background-color:#333;background-color:rgba(255, 255, 255, 0.05);color:#ffffff;text-decoration:none;}
-.topbar h3{position:relative;}
-.topbar h3 a,.topbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;color:#ffffff;font-size:20px;font-weight:200;line-height:1;}
-.topbar p{margin:0;line-height:40px;}.topbar p a:hover{background-color:transparent;color:#ffffff;}
-.topbar form{float:left;margin:5px 0 0 0;position:relative;filter:alpha(opacity=100);-khtml-opacity:1;-moz-opacity:1;opacity:1;}
-.topbar form.pull-right{float:right;}
-.topbar input{background-color:#444;background-color:rgba(255, 255, 255, 0.3);font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:normal;font-weight:13px;line-height:1;padding:4px 9px;color:#ffffff;color:rgba(255, 255, 255, 0.75);border:1px solid #111;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.25);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.25);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.25);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;}.topbar input:-moz-placeholder{color:#e6e6e6;}
-.topbar input::-webkit-input-placeholder{color:#e6e6e6;}
-.topbar input:hover{background-color:#bfbfbf;background-color:rgba(255, 255, 255, 0.5);color:#ffffff;}
-.topbar input:focus,.topbar input.focused{outline:0;background-color:#ffffff;color:#404040;text-shadow:0 1px 0 #ffffff;border:0;padding:5px 10px;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);}
-.topbar-inner,.topbar .fill{background-color:#222;background-color:#222222;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);}
-.topbar div>ul,.nav{display:block;float:left;margin:0 10px 0 0;position:relative;left:0;}.topbar div>ul>li,.nav>li{display:block;float:left;}
-.topbar div>ul a,.nav a{display:block;float:none;padding:10px 10px 11px;line-height:19px;text-decoration:none;}.topbar div>ul a:hover,.nav a:hover{color:#ffffff;text-decoration:none;}
-.topbar div>ul .active>a,.nav .active>a{background-color:#222;background-color:rgba(0, 0, 0, 0.5);}
-.topbar div>ul.secondary-nav,.nav.secondary-nav{float:right;margin-left:10px;margin-right:0;}.topbar div>ul.secondary-nav .menu-dropdown,.nav.secondary-nav .menu-dropdown,.topbar div>ul.secondary-nav .dropdown-menu,.nav.secondary-nav .dropdown-menu{right:0;border:0;}
-.topbar div>ul a.menu:hover,.nav a.menu:hover,.topbar div>ul li.open .menu,.nav li.open .menu,.topbar div>ul .dropdown-toggle:hover,.nav .dropdown-toggle:hover,.topbar div>ul .dropdown.open .dropdown-toggle,.nav .dropdown.open .dropdown-toggle{background:#444;background:rgba(255, 255, 255, 0.05);}
-.topbar div>ul .menu-dropdown,.nav .menu-dropdown,.topbar div>ul .dropdown-menu,.nav .dropdown-menu{background-color:#333;}.topbar div>ul .menu-dropdown a.menu,.nav .menu-dropdown a.menu,.topbar div>ul .dropdown-menu a.menu,.nav .dropdown-menu a.menu,.topbar div>ul .menu-dropdown .dropdown-toggle,.nav .menu-dropdown .dropdown-toggle,.topbar div>ul .dropdown-menu .dropdown-toggle,.nav .dropdown-menu .dropdown-toggle{color:#ffffff;}.topbar div>ul .menu-dropdown a.menu.open,.nav .menu-dropdown a.menu.open,.topbar div>ul .dropdown-menu a.menu.open,.nav .dropdown-menu a.menu.open,.topbar div>ul .menu-dropdown .dropdown-toggle.open,.nav .menu-dropdown .dropdown-toggle.open,.topbar div>ul .dropdown-menu .dropdown-toggle.open,.nav .dropdown-menu .dropdown-toggle.open{background:#444;background:rgba(255, 255, 255, 0.05);}
-.topbar div>ul .menu-dropdown li a,.nav .menu-dropdown li a,.topbar div>ul .dropdown-menu li a,.nav .dropdown-menu li a{color:#999;text-shadow:0 1px 0 rgba(0, 0, 0, 0.5);}.topbar div>ul .menu-dropdown li a:hover,.nav .menu-dropdown li a:hover,.topbar div>ul .dropdown-menu li a:hover,.nav .dropdown-menu li a:hover{background-color:#191919;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919));background-image:-moz-linear-gradient(top, #292929, #191919);background-image:-ms-linear-gradient(top, #292929, #191919);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919));background-image:-webkit-linear-gradient(top, #292929, #191919);background-image:-o-linear-gradient(top, #292929, #191919);background-image:linear-gradient(top, #292929, #191919);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0);color:#ffffff;}
-.topbar div>ul .menu-dropdown .active a,.nav .menu-dropdown .active a,.topbar div>ul .dropdown-menu .active a,.nav .dropdown-menu .active a{color:#ffffff;}
-.topbar div>ul .menu-dropdown .divider,.nav .menu-dropdown .divider,.topbar div>ul .dropdown-menu .divider,.nav .dropdown-menu .divider{background-color:#222;border-color:#444;}
-.topbar ul .menu-dropdown li a,.topbar ul .dropdown-menu li a{padding:4px 15px;}
-li.menu,.dropdown{position:relative;}
-a.menu:after,.dropdown-toggle:after{width:0;height:0;display:inline-block;content:"&darr;";text-indent:-99999px;vertical-align:top;margin-top:8px;margin-left:4px;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #ffffff;filter:alpha(opacity=50);-khtml-opacity:0.5;-moz-opacity:0.5;opacity:0.5;}
-.menu-dropdown,.dropdown-menu{background-color:#ffffff;float:left;display:none;position:absolute;top:40px;z-index:900;min-width:160px;max-width:220px;_width:160px;margin-left:0;margin-right:0;padding:6px 0;zoom:1;border-color:#999;border-color:rgba(0, 0, 0, 0.2);border-style:solid;border-width:0 1px 1px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:0 2px 4px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 2px 4px rgba(0, 0, 0, 0.2);box-shadow:0 2px 4px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.menu-dropdown li,.dropdown-menu li{float:none;display:block;background-color:none;}
-.menu-dropdown .divider,.dropdown-menu .divider{height:1px;margin:5px 0;overflow:hidden;background-color:#eee;border-bottom:1px solid #ffffff;}
-.topbar .dropdown-menu a,.dropdown-menu a{display:block;padding:4px 15px;clear:both;font-weight:normal;line-height:18px;color:#808080;text-shadow:0 1px 0 #ffffff;}.topbar .dropdown-menu a:hover,.dropdown-menu a:hover{background-color:#dddddd;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));background-image:-moz-linear-gradient(top, #eeeeee, #dddddd);background-image:-ms-linear-gradient(top, #eeeeee, #dddddd);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd));background-image:-webkit-linear-gradient(top, #eeeeee, #dddddd);background-image:-o-linear-gradient(top, #eeeeee, #dddddd);background-image:linear-gradient(top, #eeeeee, #dddddd);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0);color:#404040;text-decoration:none;-webkit-box-shadow:inset 0 1px 0 rgba(0, 0, 0, 0.025),inset 0 -1px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 0 rgba(0, 0, 0, 0.025),inset 0 -1px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 0 rgba(0, 0, 0, 0.025),inset 0 -1px rgba(0, 0, 0, 0.025);}
-.open .menu,.dropdown.open .menu,.open .dropdown-toggle,.dropdown.open .dropdown-toggle{color:#ffffff;background:#ccc;background:rgba(0, 0, 0, 0.3);}
-.open .menu-dropdown,.dropdown.open .menu-dropdown,.open .dropdown-menu,.dropdown.open .dropdown-menu{display:block;}
-.tabs,.pills{margin:0 0 20px;padding:0;list-style:none;zoom:1;}.tabs:before,.pills:before,.tabs:after,.pills:after{display:table;content:"";zoom:1;*display:inline;}
-.tabs:after,.pills:after{clear:both;}
-.tabs>li,.pills>li{float:left;}.tabs>li>a,.pills>li>a{display:block;}
-.tabs{float:left;width:100%;border-bottom:1px solid #ddd;}.tabs>li{position:relative;top:1px;}.tabs>li>a{padding:0 15px;margin-right:2px;line-height:36px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.tabs>li>a:hover{text-decoration:none;background-color:#eee;border-color:#eee #eee #ddd;}
-.tabs>li.active>a{color:#808080;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;}
-.tabs .menu-dropdown,.tabs .dropdown-menu{top:35px;border-width:1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
-.tabs a.menu:after,.tabs .dropdown-toggle:after{border-top-color:#999;margin-top:15px;margin-left:5px;}
-.tabs li.open.menu .menu,.tabs .open.dropdown .dropdown-toggle{border-color:#999;}
-.tabs li.open a.menu:after,.tabs .dropdown.open .dropdown-toggle:after{border-top-color:#555;}
-.tab-content{clear:both;}
-.pills a{margin:5px 3px 5px 0;padding:0 15px;text-shadow:0 1px 1px #ffffff;line-height:30px;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;}.pills a:hover{background:#00438a;color:#ffffff;text-decoration:none;text-shadow:0 1px 1px rgba(0, 0, 0, 0.25);}
-.pills .active a{background:#0069d6;color:#ffffff;text-shadow:0 1px 1px rgba(0, 0, 0, 0.25);}
-.tab-content>*,.pill-content>*{display:none;}
-.tab-content>.active,.pill-content>.active{display:block;}
-.breadcrumb{margin:0 0 18px;padding:7px 14px;background-color:#f5f5f5;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));background-image:-moz-linear-gradient(top, #ffffff, #f5f5f5);background-image:-ms-linear-gradient(top, #ffffff, #f5f5f5);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));background-image:-webkit-linear-gradient(top, #ffffff, #f5f5f5);background-image:-o-linear-gradient(top, #ffffff, #f5f5f5);background-image:linear-gradient(top, #ffffff, #f5f5f5);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;}.breadcrumb li{display:inline;text-shadow:0 1px 0 #ffffff;}
-.breadcrumb .divider{padding:0 5px;color:#bfbfbf;}
-.breadcrumb .active a{color:#404040;}
-.hero-unit{background-color:#f5f5f5;margin-bottom:30px;padding:60px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;}
-.hero-unit p{font-size:18px;font-weight:200;line-height:27px;}
-footer{margin-top:17px;padding-top:17px;border-top:1px solid #eee;}
-.page-header{margin-bottom:17px;border-bottom:1px solid #ddd;-webkit-box-shadow:0 1px 0 rgba(255, 255, 255, 0.5);-moz-box-shadow:0 1px 0 rgba(255, 255, 255, 0.5);box-shadow:0 1px 0 rgba(255, 255, 255, 0.5);}.page-header h1{margin-bottom:8px;}
-.btn.danger,.alert-message.danger,.btn.danger:hover,.alert-message.danger:hover,.btn.error,.alert-message.error,.btn.error:hover,.alert-message.error:hover,.btn.success,.alert-message.success,.btn.success:hover,.alert-message.success:hover,.btn.info,.alert-message.info,.btn.info:hover,.alert-message.info:hover{color:#ffffff;}
-.btn.danger,.alert-message.danger,.btn.error,.alert-message.error{background-color:#c43c35;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-ms-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(top, #ee5f5b, #c43c35);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#c43c35 #c43c35 #882a25;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);}
-.btn.success,.alert-message.success{background-color:#57a957;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-ms-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(top, #62c462, #57a957);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#57a957 #57a957 #3d773d;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);}
-.btn.info,.alert-message.info{background-color:#339bb9;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-ms-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(top, #5bc0de, #339bb9);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#339bb9 #339bb9 #22697d;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);}
-.btn{cursor:pointer;display:inline-block;background-color:#e6e6e6;background-repeat:no-repeat;background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);background-image:-moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);background-image:-ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);background-image:-o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);background-image:linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);padding:5px 14px 6px;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);color:#333;font-size:13px;line-height:normal;border:1px solid #ccc;border-bottom-color:#bbb;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-webkit-transition:0.1s linear all;-moz-transition:0.1s linear all;-ms-transition:0.1s linear all;-o-transition:0.1s linear all;transition:0.1s linear all;}.btn:hover{background-position:0 -15px;color:#333;text-decoration:none;}
-.btn:focus{outline:1px dotted #666;}
-.btn.primary{color:#ffffff;background-color:#0064cd;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));background-image:-moz-linear-gradient(top, #049cdb, #0064cd);background-image:-ms-linear-gradient(top, #049cdb, #0064cd);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));background-image:-webkit-linear-gradient(top, #049cdb, #0064cd);background-image:-o-linear-gradient(top, #049cdb, #0064cd);background-image:linear-gradient(top, #049cdb, #0064cd);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#0064cd #0064cd #003f81;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);}
-.btn:active{-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.25),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.25),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.25),0 1px 2px rgba(0, 0, 0, 0.05);}
-.btn.disabled{cursor:default;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=65);-khtml-opacity:0.65;-moz-opacity:0.65;opacity:0.65;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
-.btn[disabled]{cursor:default;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=65);-khtml-opacity:0.65;-moz-opacity:0.65;opacity:0.65;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
-.btn.large{font-size:15px;line-height:normal;padding:9px 14px 9px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
-.btn.small{padding:7px 9px 7px;font-size:11px;}
-:root .alert-message,:root .btn{border-radius:0 \0;}
-button.btn::-moz-focus-inner,input[type=submit].btn::-moz-focus-inner{padding:0;border:0;}
-.close{float:right;color:#000000;font-size:20px;font-weight:bold;line-height:13.5px;text-shadow:0 1px 0 #ffffff;filter:alpha(opacity=20);-khtml-opacity:0.2;-moz-opacity:0.2;opacity:0.2;}.close:hover{color:#000000;text-decoration:none;filter:alpha(opacity=40);-khtml-opacity:0.4;-moz-opacity:0.4;opacity:0.4;}
-.alert-message{position:relative;padding:7px 15px;margin-bottom:18px;color:#404040;background-color:#eedc94;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));background-image:-moz-linear-gradient(top, #fceec1, #eedc94);background-image:-ms-linear-gradient(top, #fceec1, #eedc94);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));background-image:-webkit-linear-gradient(top, #fceec1, #eedc94);background-image:-o-linear-gradient(top, #fceec1, #eedc94);background-image:linear-gradient(top, #fceec1, #eedc94);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#eedc94 #eedc94 #e4c652;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);border-width:1px;border-style:solid;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);}.alert-message .close{*margin-top:3px;}
-.alert-message h5{line-height:18px;}
-.alert-message p{margin-bottom:0;}
-.alert-message div{margin-top:5px;margin-bottom:2px;line-height:28px;}
-.alert-message .btn{-webkit-box-shadow:0 1px 0 rgba(255, 255, 255, 0.25);-moz-box-shadow:0 1px 0 rgba(255, 255, 255, 0.25);box-shadow:0 1px 0 rgba(255, 255, 255, 0.25);}
-.alert-message.block-message{background-image:none;background-color:#fdf5d9;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);padding:14px;border-color:#fceec1;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}.alert-message.block-message ul,.alert-message.block-message p{margin-right:30px;}
-.alert-message.block-message ul{margin-bottom:0;}
-.alert-message.block-message li{color:#404040;}
-.alert-message.block-message .alert-actions{margin-top:5px;}
-.alert-message.block-message.error,.alert-message.block-message.success,.alert-message.block-message.info{color:#404040;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);}
-.alert-message.block-message.error{background-color:#fddfde;border-color:#fbc7c6;}
-.alert-message.block-message.success{background-color:#d1eed1;border-color:#bfe7bf;}
-.alert-message.block-message.info{background-color:#ddf4fb;border-color:#c6edf9;}
-.pagination{height:36px;margin:18px 0;}.pagination ul{float:left;margin:0;border:1px solid #ddd;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);}
-.pagination li{display:inline;}
-.pagination a{float:left;padding:0 14px;line-height:34px;border-right:1px solid;border-right-color:#ddd;border-right-color:rgba(0, 0, 0, 0.15);*border-right-color:#ddd;text-decoration:none;}
-.pagination a:hover,.pagination .active a{background-color:#c7eefe;}
-.pagination .disabled a,.pagination .disabled a:hover{background-color:transparent;color:#bfbfbf;}
-.pagination .next a{border:0;}
-.well{background-color:#f5f5f5;margin-bottom:20px;padding:19px;min-height:20px;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);}
-.modal-backdrop{background-color:#000000;position:fixed;top:0;left:0;right:0;bottom:0;z-index:10000;}.modal-backdrop.fade{opacity:0;}
-.modal-backdrop,.modal-backdrop.fade.in{filter:alpha(opacity=80);-khtml-opacity:0.8;-moz-opacity:0.8;opacity:0.8;}
-.modal{position:fixed;top:50%;left:50%;z-index:11000;width:560px;margin:-250px 0 0 -250px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.modal .close{margin-top:7px;}
-.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-ms-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;}
-.modal.fade.in{top:50%;}
-.modal-header{border-bottom:1px solid #eee;padding:5px 15px;}
-.modal-body{padding:15px;}
-.modal-footer{background-color:#f5f5f5;padding:14px 15px 15px;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;zoom:1;margin-bottom:0;}.modal-footer:before,.modal-footer:after{display:table;content:"";zoom:1;*display:inline;}
-.modal-footer:after{clear:both;}
-.modal-footer .btn{float:right;margin-left:5px;}
-.twipsy{display:block;position:absolute;visibility:visible;padding:5px;font-size:11px;z-index:1000;filter:alpha(opacity=80);-khtml-opacity:0.8;-moz-opacity:0.8;opacity:0.8;}.twipsy.fade.in{filter:alpha(opacity=80);-khtml-opacity:0.8;-moz-opacity:0.8;opacity:0.8;}
-.twipsy.above .twipsy-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;}
-.twipsy.left .twipsy-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;}
-.twipsy.below .twipsy-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;}
-.twipsy.right .twipsy-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;}
-.twipsy-inner{padding:3px 8px;background-color:#000000;color:white;text-align:center;max-width:200px;text-decoration:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
-.twipsy-arrow{position:absolute;width:0;height:0;}
-.popover{position:absolute;top:0;left:0;z-index:1000;padding:5px;display:none;}.popover.above .arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;}
-.popover.right .arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;}
-.popover.below .arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;}
-.popover.left .arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;}
-.popover .arrow{position:absolute;width:0;height:0;}
-.popover .inner{background-color:#000000;background-color:rgba(0, 0, 0, 0.8);padding:3px;overflow:hidden;width:280px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);}
-.popover .title{background-color:#f5f5f5;padding:9px 15px;line-height:1;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;border-bottom:1px solid #eee;}
-.popover .content{background-color:#ffffff;padding:14px;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.popover .content p,.popover .content ul,.popover .content ol{margin-bottom:0;}
-.fade{-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;opacity:0;}.fade.in{opacity:1;}
-.label{padding:1px 3px 2px;background-color:#bfbfbf;font-size:9.75px;font-weight:bold;color:#ffffff;text-transform:uppercase;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}.label.important{background-color:#c43c35;}
-.label.warning{background-color:#f89406;}
-.label.success{background-color:#46a546;}
-.label.notice{background-color:#62cffc;}
-.media-grid{margin-left:-20px;margin-bottom:0;zoom:1;}.media-grid:before,.media-grid:after{display:table;content:"";zoom:1;*display:inline;}
-.media-grid:after{clear:both;}
-.media-grid li{display:inline;}
-.media-grid a{float:left;padding:4px;margin:0 0 20px 20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);}.media-grid a img{display:block;}
-.media-grid a:hover{border-color:#0069d6;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);}
\ No newline at end of file
diff --git a/assets/style/style.css b/assets/style/style.css
deleted file mode 100644
index 8453d32..0000000
--- a/assets/style/style.css
+++ /dev/null
@@ -1,154 +0,0 @@
-body, td, th {
-    font-size: 95%;
-    font-family: Arial, Geneva, Helvetica, sans-serif;
-    color: black;
-    background-color: white;
-}
-
-#query {
-    width: 160px;
-}
-
-li {
-    color: #000000 !important;
-}
-
-menu {
-    margin-left: 1em;
-    padding-left: 1em;
-    white-space: nowrap;
-}
-
-.menuheader {
-    font-weight: bold;
-}
-
-.navleft {
-    padding-right: 5px;
-    border: 1px solid #cccccc;
-    border-width: 0px 1px 0px 0px;
-}
-
-.navright {
-    padding-left: 5px;
-    border: 1px solid #cccccc;
-    border-width: 0px 0px 0px 1px;
-}
-
-.section-content {
-    padding-left: 1em;
-    padding-right: 1em;
-}
-
-a:visited {color: #00438a;}
-
-.footer {
-    text-align: center;
-    font-size: 80%;
-}
-
-.note {
-    margin: 1em;
-    padding: 0em 1em 0em 1em;
-    border: 2px solid #000090;
-    background-color: #F3F3FF;
-}
-
-.source {
-    margin: 0em 1em 0em 1em;
-    padding: 0em 1em 0em 1em;
-    border: 2px solid #bbbbbb;
-    white-space: pre;
-}
-
-#clutch th {
-  background-color: #cccccc;
-}
-#clutch td {
-  padding: 0.2em;
-}
-#clutch td.grad {
-  border: 2px solid #d55e00;
-}
-#clutch td.number {
-  text-align: right;
-}
-#clutch td.issue {
-  background-color: #d55e00;
-}
-#clutch td.care {
-  background-color: #e69f00;
-}
-#clutch td.cool1 {
-  background-color: #009e73;
-}
-#clutch td.cool2 {
-  background-color: #f0e442;
-}
-#clutch td.cool3 {
-  background-color: #e69f00;
-}
-#clutch td.cool4 {
-  background-color: #d55e00;
-}
-span.issue {
-  background-color: #d55e00;
-  color: black;
-  padding: 0em 0.1em 0em 0.1em;
-}
-span.grad {
-  border: 2px solid #d55e00;
-  padding: 0em 0.1em 0em 0.1em;
-}
-span.care {
-  background-color: #e69f00;
-  color: black;
-  padding: 0em 0.1em 0em 0.1em;
-}
-span.cool1 {
-  background-color: #009e73;
-  color: black;
-  padding: 0em 0.1em 0em 0.1em;
-}
-span.cool2 {
-  background-color: #f0e442;
-  color: black;
-  padding: 0em 0.1em 0em 0.1em;
-}
-span.cool3 {
-  background-color: #e69f00;
-  color: black;
-  padding: 0em 0.1em 0em 0.1em;
-}
-span.cool4 {
-  background-color: #d55e00;
-  color: black;
-  padding: 0em 0.1em 0em 0.1em;
-}
-#clutch a:link {
-  color: blue;
-}
-#clutch a:visited {
-  color: purple;
-}
-#clutch-bottom-spacer {
-  padding-bottom: 100em;
-}
-p.attribution {
-	text-align:right;
-	font-style:oblique
-}
-
-/* INCUBATOR-117 - note, this will 'hide' any href links in headers */
-h2 a, h3 a, h4 a, h5 a {
- text-decoration: none;
- color: black;
-}
-
-span.graduated {
-    background-color: lawngreen;
-}
-
-span.retired {
-    background-color: orange;
-}
\ No newline at end of file
diff --git a/bake.sh b/bake.sh
deleted file mode 100755
index 2199ca6..0000000
--- a/bake.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-SUCCESS_FILE=$WORKDIR/.htaccess
-if [ -z ${JBAKE_HOME} ]
-then
-  echo "Missing JBAKE_HOME variable" >&2
-  exit 1
-fi
-
-export JBAKE_OPTS="-Djavax.xml.accessExternalDTD=http"
-${JBAKE_HOME}/bin/jbake $@
-
-if [ ! -f $SUCCESS_FILE ]
-then
-    echo "Missing $SUCCESS_FILE , JBake build failed?" >&2
-    exit 1
-fi
\ No newline at end of file
diff --git a/build_clutch.sh b/build_clutch.sh
deleted file mode 100755
index 2400e21..0000000
--- a/build_clutch.sh
+++ /dev/null
@@ -1,65 +0,0 @@
-#!/bin/bash
-CURRENTDIR=`pwd`
-SVN_CO_DIR=/tmp/incubator-site-content
-SVN_BUILD_DIR=/tmp/incubator-site-build
-SVN_REPO=http://svn.apache.org/repos/asf/incubator/public/trunk/
-WORKDIR=/tmp/incubator-site
-ME=`basename $0`
-
-rm -rf $WORKDIR
-mkdir -p $WORKDIR
-# download the svn bits
-rm -rf $SVN_CO_DIR
-rm -rf $SVN_BUILD_DIR
-svn co $SVN_REPO $SVN_CO_DIR
-if [ $? -gt 0 ]; then
-    echo ABORT: svn checkout error
-    exit 4
-fi
-cd $SVN_CO_DIR
-# build pages the old way
-ant docs -Ddocs.dest=$SVN_BUILD_DIR
-if [ $? -gt 0 ]; then
-    echo ABORT: ant docs error
-    exit 4
-fi
-# run clutch2 analysis
-./clutch2.sh
-if [ $? -gt 0 ]; then
-    echo ABORT: clutch2.sh error
-    exit 4
-fi
-# prepare the git master with updates from svn build and clutch analysis
-cd "$CURRENTDIR"
-pwd
-# move in files built using ant in the old style
-# ip clearance as assets
-rm -rf assets/ip-clearance
-mkdir assets/ip-clearance
-cp $SVN_BUILD_DIR/ip-clearance/*.html assets/ip-clearance/.
-# podling status files as assets
-rm -rf assets/projects
-mkdir assets/projects
-cp $SVN_BUILD_DIR/projects/*.html assets/projects/.
-# move in files from the clutch analysis
-# these txt files are moved to assets
-cp $SVN_CO_DIR/content/clutch/*.txt assets/.
-cp $SVN_CO_DIR/content/clutch/*.json assets/.
-# the following asciidoc clutch files go to be baked
-cp $SVN_CO_DIR/content/clutch/_includes/*.ad pages/clutch/_includes/.
-cp $SVN_CO_DIR/content/clutch/*.ad pages/clutch/.
-
-# now bake the site
-./bake.sh -b . $WORKDIR
-
-# push all of the results to asf-site
-git checkout asf-site
-git clean -f -d
-git pull origin asf-site
-
-rm -rf reserve
-mkdir reserve
-cp -a $WORKDIR/* reserve
-git add reserve
-git commit -m "git-site-role commit from $ME"
-git push origin asf-site
diff --git a/build_local.sh b/build_local.sh
deleted file mode 100755
index 9de8fee..0000000
--- a/build_local.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-CURRENTDIR=`pwd`
-export WORKDIR=/tmp/incubator-site
-
-function fatal() {
-    echo $* >&2
-    exit 1
-}
-
-rm -rf $WORKDIR
-mkdir -p $WORKDIR
-
-# just bake and serve the site
-./bake.sh -b -s . $WORKDIR || fatal "Build failed, exiting"
-
diff --git a/build_local_clutch.sh b/build_local_clutch.sh
deleted file mode 100644
index 958138e..0000000
--- a/build_local_clutch.sh
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/bin/bash
-CURRENTDIR=`pwd`
-SVN_CO_DIR=/tmp/incubator-site-content
-SVN_BUILD_DIR=/tmp/incubator-site-build
-SVN_REPO=http://svn.apache.org/repos/asf/incubator/public/trunk/
-WORKDIR=/tmp/incubator-site
-
-rm -rf $WORKDIR
-mkdir -p $WORKDIR
-# download the svn bits
-rm -rf $SVN_CO_DIR
-rm -rf $SVN_BUILD_DIR
-svn co $SVN_REPO $SVN_CO_DIR
-if [ $? -gt 0 ]; then
-    echo ABORT: svn checkout error
-    exit 4
-fi
-cd $SVN_CO_DIR
-# build pages the old way
-ant docs -Ddocs.dest=$SVN_BUILD_DIR
-if [ $? -gt 0 ]; then
-    echo ABORT: ant docs error
-    exit 4
-fi
-# run clutch2 analysis
-./clutch2.sh
-if [ $? -gt 0 ]; then
-    echo ABORT: clutch2.sh error
-    exit 4
-fi
-# prepare the git master with updates from svn build and clutch analysis
-cd "$CURRENTDIR"
-pwd
-# move in files built using ant in the old style
-# ip clearance as assets
-rm -rf assets/ip-clearance
-mkdir assets/ip-clearance
-cp $SVN_BUILD_DIR/ip-clearance/*.html assets/ip-clearance/.
-# podling status files as assets
-rm -rf assets/projects
-mkdir assets/projects
-cp $SVN_BUILD_DIR/projects/*.html assets/projects/.
-# move in files from the clutch analysis
-# these txt files are moved to assets
-cp $SVN_CO_DIR/content/clutch/*.txt assets/.
-cp $SVN_CO_DIR/content/clutch/*.json assets/.
-# the following asciidoc clutch files go to be baked
-cp $SVN_CO_DIR/content/clutch/_includes/*.ad pages/clutch/_includes/.
-cp $SVN_CO_DIR/content/clutch/*.ad pages/clutch/.
-
-# now bake the site
-./bake.sh -b -s . $WORKDIR
diff --git a/build_site.sh b/build_site.sh
deleted file mode 100755
index 725aae4..0000000
--- a/build_site.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-
-CURRENTDIR=`pwd`
-export WORKDIR=/tmp/incubator-site
-ME=`basename $0`
-
-function fatal() {
-    echo $* >&2
-    exit 1
-}
-
-rm -rf $WORKDIR
-mkdir -p $WORKDIR
-
-# now bake the site
-./bake.sh -b . $WORKDIR || fatal "Build failed, exiting"
-
-# push all of the results to asf-site
-git checkout asf-site
-git clean -f -d
-git pull origin asf-site
-rm -rf content
-mkdir content
-cp -a $WORKDIR/* content
-cp -a $WORKDIR/.htaccess content
-cp -a reserve/*.txt content/.
-cp -a reserve/*.json content/.
-cp -a reserve/clutch content/.
-cp -a reserve/projects content/.
-cp -a reserve/ip-clearance content/.
-git add content
-git commit -m "git-site-role commit from $ME"
-git push origin asf-site
\ No newline at end of file
diff --git a/incubator-site-groovy.iml b/incubator-site-groovy.iml
deleted file mode 100644
index 8021953..0000000
--- a/incubator-site-groovy.iml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module type="WEB_MODULE" version="4">
-  <component name="NewModuleRootManager" inherit-compiler-output="true">
-    <exclude-output />
-    <content url="file://$MODULE_DIR$" />
-    <orderEntry type="inheritedJdk" />
-    <orderEntry type="sourceFolder" forTests="false" />
-  </component>
-</module>
\ No newline at end of file
diff --git a/jbake-local.properties b/jbake-local.properties
deleted file mode 100644
index 1d4cf75..0000000
--- a/jbake-local.properties
+++ /dev/null
@@ -1,22 +0,0 @@
-#site.host=https://incubator.apache.org
-site.host=http://localhost:8820
-render.tags=false
-render.sitemap=true
-template.homepage.file=homepage.gsp
-template.projectspage.file=projectspage.gsp
-template.simplepage.file=simplepage.gsp
-template.retired.file=retired.gsp
-template.archive.file=archive.gsp
-template.tag.file=tags.gsp
-template.sitemap.file=sitemap.gsp
-template.post.file=post.gsp
-template.page.file=page.gsp
-template.feed.file=feed.gsp
-template.guide.file=guide.gsp
-template.proposalGuide.file=guide.gsp
-template.pmcGuide.file=guide.gsp
-template.policy.file=policy.gsp
-render.index=false
-index.file=index.html
-content.folder=pages
-destination.folder=content
\ No newline at end of file
diff --git a/jbake.properties b/jbake.properties
deleted file mode 100644
index e0837c0..0000000
--- a/jbake.properties
+++ /dev/null
@@ -1,22 +0,0 @@
-site.host=https://incubator.apache.org
-#site.host=http://localhost:8820
-render.tags=false
-render.sitemap=true
-template.homepage.file=homepage.gsp
-template.projectspage.file=projectspage.gsp
-template.simplepage.file=simplepage.gsp
-template.retired.file=retired.gsp
-template.archive.file=archive.gsp
-template.tag.file=tags.gsp
-template.sitemap.file=sitemap.gsp
-template.post.file=post.gsp
-template.page.file=page.gsp
-template.feed.file=feed.gsp
-template.guide.file=guide.gsp
-template.proposalGuide.file=guide.gsp
-template.pmcGuide.file=guide.gsp
-template.policy.file=policy.gsp
-render.index=false
-index.file=index.html
-content.folder=pages
-destination.folder=content
diff --git a/pages/clutch/README.txt b/pages/clutch/README.txt
deleted file mode 100644
index c6fe95f..0000000
--- a/pages/clutch/README.txt
+++ /dev/null
@@ -1 +0,0 @@
-Everything from this directory is generated in the build_clutch.sh - be careful with edits of index.ad
diff --git a/pages/clutch/_includes/.jbakeignore b/pages/clutch/_includes/.jbakeignore
deleted file mode 100644
index 39090e6..0000000
--- a/pages/clutch/_includes/.jbakeignore
+++ /dev/null
@@ -1 +0,0 @@
-This directory is for includes that are not baked.
diff --git a/pages/clutch/index.ad b/pages/clutch/index.ad
deleted file mode 100644
index 8849ea5..0000000
--- a/pages/clutch/index.ad
+++ /dev/null
@@ -1,410 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Incubator Clutch Status
-Apache Incubator PMC
-:jbake-type: simplepage
-:jbake-status: published
-:idprefix:
-:imagesdir: /images/
-
-[[current]]
-Clutch is a tool which gathers details about the projects (podlings) currently in incubation and generates the table below. Clutch also generates an analysis page
-for each podling, along with several data files. Its aim is to encourage and nurture podlings; and to provide an overview of the state of establishment of various resources,
-and quick access to thems. See link:#definitions[definitions] and link:#notes[notes] below regarding purpose, interpretation, and how-to.
-
-[[clutch]]
-== Clutch
-
-include::_includes/clutcht.ad[]
-
-Current Board Report:
-include::_includes/clutchmy.ad[]
-
-=== Quick Notes
-
-* The [.care]#orange# items indicate where the podling needs to take more care and attention.
-* Anything [.issue]#vermilion# is an issue that the podling should address ASAP. Admittedly nothing can be done about elapsed time.
-* The [.cool1]#bluish-green# items indicate success.
-* The [.cool2]#yellow# items are okay.
-* Click the column header link for link:#definitions[definitions].
-* Click cells to go to available related resources.
-* Click the podling name in the first column to go to the podling's clutch analysis page, which has deeper and more detailed information.
-
-[cols="2*<,18*^",options="header"]
-[%autowidth]
-|===
-|link:#h-project[Podling]
-|link:#h-sponsor[Sponsor]
-|link:#h-startdate[A,title=Start Date]
-|link:#h-elapseddays[B,title=Elapsed Days]
-|link:#h-reportingmonthly[C,title=Reporting Monthly?]
-|link:#h-reportinggroup[D,title=Reporting Group]
-|link:#h-hasstatusfile[E,title=Has status file]
-|link:#h-statusupdatedate[F,title=Status updated]
-|link:#h-statusage[G,title=Status Age]
-|link:#h-statusupdatecounts[H,title=Status Update Counts]
-|link:#h-numbercommitters[I,title=Number of Committers]
-|link:#h-numbernewcommitters[J,title=Number of New Committers]
-|link:#h-hasrepos[K,title=Has a Code Repository]
-|link:#h-hastracker[L,title=Has Issue Tracker]
-|link:#h-hasdevlist[M,title=Has dev@ List]
-|link:#h-hascommitslist[N,title=Has commits@ list]
-|link:#h-haswebsite[O,title=Has Website]
-|link:#h-hasdistributionarea[P,title=Has a Distribution Area]
-|link:#h-hassigningkeys[Q,title=Has Release Signing Keys]
-|link:#h-hasrelease[R,title=Has a Release in the Distribution Area]
-
-include::_includes/clutchr.ad[]
-
-|link:#h-project[Podling]
-|link:#h-sponsor[Sponsor]
-|link:#h-startdate[A,title=Start Date]
-|link:#h-elapseddays[B,title=Elapsed Days]
-|link:#h-reportingmonthly[C,title=Reporting Monthly?]
-|link:#h-reportinggroup[D,title=Reporting Group]
-|link:#h-hasstatusfile[E,title=Has status file]
-|link:#h-statusupdatedate[F,title=Status updated]
-|link:#h-statusage[G,title=Status Age]
-|link:#h-statusupdatecounts[H,title=Status Update Counts]
-|link:#h-numbercommitters[I,title=Number of Committers]
-|link:#h-numbernewcommitters[J,title=Number of New Committers]
-|link:#h-hasrepos[K,title=Has a Code Repository]
-|link:#h-hastracker[L,title=Has Issue Tracker]
-|link:#h-hasdevlist[M,title=Has dev@ List]
-|link:#h-hascommitslist[N,title=Has commits@ list]
-|link:#h-haswebsite[O,title=Has Website]
-|link:#h-hasdistributionarea[P,title=Has a Distribution Area]
-|link:#h-hassigningkeys[Q,title=Has Release Signing Keys]
-|link:#h-hasrelease[R,title=Has a Release in the Distribution Area]
-
-|===
-
-[[definitions]]
-=== Definitions, Notes, and References
-
-The [.care]#orange# and [.issue]#vermilion# items indicate where more care and attention is needed. The following
-notes for each column provide definitions and attempt to link directly to the relevant process documentation:
-
-[[h-project]]
-==== Podling
-
-The name of each podling is linked to a link:#podling_analysis_page[podling clutch analysis page].
-If your podling is in incubation, but is missing from the Clutch table, then it still needs to be added to the [.code]#content/podlings.xml# file.
-See the link:/guides/mentor.html#add_to_incubation_summary_file[mentor's guide]. Clutch also generates the link:/projects/[Projects page] from [.code]#content/podlings.xml#.
-
-[[h-sponsor]]
-==== Sponsor
-
-Usually the Incubator sponsors podlings. Occasionally Apache Top Level Projects (TLPs) sponsor podlings. The sponsor is chosen on the link:/guides/proposal.html[proposal].
-Set the value in the [.code]#content/podlings.xml# entry for the podling.
-
-[[h-startdate]]
-==== A: Start Date
-
-This is the date the podling started. Usually this is the date the podling proposal vote passed on the Incubator mailing list.
-Set this in the [.code]#content/podlings.xml# entry for the podling.
-
-[[h-elapseddays]]
-==== B: Elapsed Days
-
-This is the number of days since the start date. This is color coded according to the normal timeline of a podling.
-[.cool3]#<3#, [.cool2]#<12#, [.cool1]#<18#, [.cool3]#<24#, [.cool4]#>24# months. We may adjust these levels to better fit currently-observed cycles.
-
-[[h-reportingmonthly]]
-==== C: Reporting Monthly
-
-For the first three months podlings report monthly. If the podling misses a report, it returns to the monthly-reporting requirement until it reports again.
-
-[[h-reportinggroup]]
-==== D: Reporting Group
-
-Which months the podling reports: 1 = January, April, July, October; 2 = February, May, August, November; 3 = March, June, September, December.
-Note that the report process for a month begins at the end of the prior month. The IPMC chair sends out the reporting schedule on a monthly basis, and reminders to each podling's dev list.
-
-[h-hasstatusfile]]
-==== E: Has Status File
-
-Each podling maintains a status file in [.code]#content/projects/(podling).xml# which Clutch converts to a status page.
-Your mentor sets up the file and then the podling maintains it. The key part to maintain is the "News" section, where you announce New Committers, PPMC Members, and Releases. For greater detail, please see: 
-
-* link:/guides/mentor.html#initialize_podling_status_page[Initializing Status]
-* link:/policy/incubation.html#ongoing_activities[Ongoing Activities]
-* link:/guides/website.html#maintaining_status_files[Status Maintenance]
-* link:/guides/ppmc.html#project_status_page[Podling Status Page]
-
-Click the link in the cell to view the current status page.
-
-[[h-statusupdatedate]]
-==== F: Status Update Date
-
-The date the status page was last updated. Keep the Status Page up to date with frequent news about:
-
-* New Committers
-* New PPMC Members
-* New Releases
-* New Repositories
-* New Resources
-
-[[h-statusage]]
-==== G: Status Age
-
-Days since the status page was last updated. The text color indicates when a podling is not keeping its status up to date.
-[.cool1]#<2#, [.cool2]#<4#, [.cool3]#<9#, [.cool4]#>9# months.
-
-[[h-statusupdatecounts]]
-==== H: Status Update Counts
-
-Cumulative number of commits to the podling status file in the previous 2, 4, and 9 months
-
-[[h-numbercommitters]]
-==== I: Number of Committers
-
-The number of committers who have been approved to date. Taken from Whimsy via
-https://whimsy.apache.org/public/public_ldap_projects.json[public project ldap].
-Maintained in Whimsy through https://whimsy.apache.org/roster/ppmc/[the roster pages].
-Click the cell to view https://people.apache.org/phonebook.html[the public phone book].
-
-[[h-numbernewcommitters]]
-==== J: Number of New Committers
-
-The number of committers added since establishment. This count comes from the Status page "News" section.
-See guides on voting in link:/guides/ppmc.html#adding_new_committers[new committers] and link:/guides/ppmc.html#voting_in_a_new_ppmc_member[new ppmc members].
-
-[[h-hasrepos]]
-==== K: Has a Code Repository
-
-Indicates whether the podling has created a Gitbox or Subversion code repository. Projects may have multiple Gitbox repositories.
-Click the podling name in the first column to view all of the podling's repositories. A podling coming to the ASF may need to request a
-link:/guides/mentor.html#git_migrations[migration] or a link:/guides/mentor.html#gitbox_requests[new repository].
-The list of Gitbox repositories comes from https://gitbox.apache.org/repositories.json[Gitbox json].
-
-[[h-hastracker]]
-==== L: Has Issue Tracker
-
-Indicates whether the podling has an Issue Tracker. If the status file has an issue tracker link and the link is valid, there
-is a link to the tracker in the cell.
-
-[[h-hasdevlist]]
-==== M: Has a Dev Mailing List
-
-Indicates whether the podling has established a dev email list and archives. This comes from the status page, and Clutch confirms that it matches the usual naming pattern.
-If the list is available, the cell has a link to the http://mail-archives.apache.org/mod_mbox/[mailbox archive] podling dev list.
-
-[[h-hascommitslist]]
-==== N: Has a Commits Mailing List
-
-Indicates whether the podling has established a commits email list and archives. This comes from the status page, and Clutch confirms that it matches the usual naming pattern.
-If the list is available, the cell has a link to the http://mail-archives.apache.org/mod_mbox/[mailbox archive] podling commits list.
-Sometimes a podling will start by directing code repository and issue tracker notification emails to their dev list. This will often obscur meaningful conversation.
-
-[[h-haswebsite]]
-==== O: Has a Web Site
-
-Podlings should maintain a website so the user community can find out information about the podling and The Apache Software Foundation.
-Here is the incubator's link:/guides/sites.html[website guide]. If the website is not provided in the status file, Clutch tries to find it using the usual naming patterns.
-
-If the website exists, the cell provides a link to it. Whimsy provides a periodic scan of podling websites which you can view
-https://whimsy.apache.org/pods/[here]. The clutch process uses https://whimsy.apache.org/public/pods-scan.json[json] data to add notes about website issues
-to the podling's clutch analysis page under "Errata".
-
-[h-hasdistributionarea]]
-==== P: Has a Distribution Area
-
-Indicates whether the podling has a directory in the incubator's https://dist.apache.org/repos/dist/release/incubator/[release distribution directory].
-If this exists, the cell provides a link.
-
-[[h-hassigningkeys]]
-==== Q: Has Release Signing Keys
-
-Indicates whether the podling has a PGP "[.code]#Signing KEYS#" file in its distribution area. If this is present, the cell provides a link.
-There is a facility that performs periodic checks on Apache releases and signatures - https://checker.apache.org/projs/incubator.html["release checker"].
-
-[[h-hasrelease]]
-==== R: Has a Release in the Distribution Area
-
-Indicates whether the podling has a release in their distribution area. Podlings must comply with Apache release and release distribution policies as modified by the Incubator.
-
-* link:/guides/releasemanagement.html[Incubator Release Management]
-* http://www.apache.org/dev/#releases[Software Product Releases]
-* http://www.apache.org/legal/release-policy.html[Apache Release Policy (legal)]
-* https://www.apache.org/dev/release-distribution.html[Apache Release Distribution Policy (infra)]
-
-If there is a podling release, the cell provides a link to the podling's clutch analysis page's release section.
-
-[[h-graduate]]
-==== Graduating
-
-Once the Board has approved the podling's graduation resolution, update your podling metadata in the [.code]#content/podlings.xml#
-file as you progress through graduation. Complete the tasks listed in the documentation, such as a final tidy of the status page.
-See https://infra.apache.org/infra-contact#requesting-graduation[Infrastructure steps for graduation].
-
-[[h-retire]]
-==== Retirement
-
-Once the Incubator PMC has agreed to a podling's retirement, update the podling metadata and tidy the status page. If the podling is continuing development
-elsewhere, make sure to provide the new location. When this occurs chances are someone on the IPMC will handle these duties ad hoc.
-
-include::_includes/clutcho1.ad[]
-
-[[steps]]
-== Assist with Incubation Steps
-
-Clutch helps us all follow the process from the "Acceptance" phase onwards.
-Any committer to a podling can help with these steps. Don't leave it all to your mentors, although there are some steps that only they can do.
-
-[[mentors]]
-== Mentors
-
-This list comes from the link:/projects/[Projects in incubation] summary table.
-The link:/incubation/Roles_and_Responsibilities.html#Mentor[Mentors] are ASF members or individuals recognized by the IPMC who have chosen to assist these projects.
-The best way to find mentors for a new project is during your Discuss and Proposal phases on the general@ mail list.
-
-include::_includes/clutchm.ad[]
-
-[[notes]]
-== Notes
-
-Any Incubator committer can run 'clutch'. In the top-level of the SVN repos [.code]#incubator/public/trunk# SVN, do: '[.code]#./clutch2.sh#' to
-re-generate the link:#data[data files] and Asciidoctor files for the clutch. This is all a part of the normal build in GIT: https://github.com/apache/incubator[Incubator Git].
-See the Readme.
-
-Clutch reads the source file for the link:/projects/[projects currently in incubation] table (i.e. [.code]#content/podlings.xml#),
-ensures that each new project has an entry, and adds some more attributes. Clutch then gathers some data from each project's Status page and
-validates that certain resources are established and steps have been achieved.
-
-Clutch output includes link:#data[data files] 
-
-[[podling_analysis_page]]
-=== Podling Clutch Analysis Page
-
-The clutch analysis fills the data included on this page and creates an analysis for each podling that can be linked to from the podling name in the clutch table.
-
-==== Description
-
-* The podling description from [.code]#content/podlings.xml#
-* The podling start date.
-* The date of the last update of project/status.xml.
-* The reporting cycle.
-* The number of committers and ppmc members. Indication if these are equal.
-* Mentor list including apache ids.
-
-==== News
-
-Copies the news from the podling status page
-
-==== Resources
-
-Listing of various podling resources
-
-===== Project Website
-
-Link to podling's public website
-
-===== Mailing lists
-
-* Developer mailing list archive
-* Commits mailing list archive
-
-===== Issue Tracker
-
-Link to issue tracker
-
-===== Wiki
-
-Link to wiki
-
-===== Repositories
-
-* Detailed list of gitbox repos from infra's ground truth for the podling.
-* Link to any subversion repository.
-* For each gitbox repos:
-** Gitbox link
-** Github link
-** Description
-** Number of commits
-** Date of last commit
-
-==== Releases
-
-Information about the podling's release, harvested from the distribution area's svn repository.
-
-===== Current
-
-Current releases:
-
-* Link to the signing key, if it exists.
-* Link to instructions on how to verify a release.
-* Release list is suppressed if there are no signing keys
-* For each release:
-** Download link using [.code]#closer.lua#
-** Signature link
-** Hash link
-** Size of the download file
-** Date that the release was added to the distribution area.
-** User who moved the release.
-** Revision in the svn repository.
-
-==== Errata
-
-Issues which may require further work.
-
-* Errata has a list of potential issues identified for the podling.
-* Critical issues are in bold.
-* Links to pages on how to resolve the issue.
-* Link to the https://whimsy.apache.org/pods/project[whimsy podling site scan]/
-
-[[data]]
-== Data files
-
-Data files are also generated so that other tools can easily re-use the  metadata for the set of projects currently in incubation: 
-
-* link:/clutch/clutch.txt[[.code]#clutch.txt#] - list of projects, one per line. Comma-separated values (CSV).
-* [.code]#clutch.pkl# - a Python "pickle" file with various attributes (it is in the top-level of SVN incubator/public/trunk).
-* One text file for each Reporting group listing the dev mail address of the podlings due to report in that group.
-  (See link:/clutch/report_due_1.txt[[.code]#report_due_1.txt#],  link:/clutch/report_due_2.txt[[.code]#report_due_2.txt#], and
-   link:/clutch/report_due_3.txt[[.code]#report_due_3.txt#]) 
-  These are used by the IPMC to send monthly report alert reminders.
-* link:/clutch/podlings_graduated.txt[[.code]#podlings_graduated.txt#] - list of graduated podlings, one per line with start and end dates.
-* link:/clutch/podlings_retired.txt[[.code]#podlings_retired.txt#] - list of retired podlings, one per line with start and end dates.
-
-[[other]]
-== Other Issues
-
-Occasionally there are other issues, usually regarding podlings not cleaning up after their "graduation".
-
-include::_includes/clutcho2.ad[]
-
-[[notes-2]]
-== Further Notes
-
-The http://en.wikipedia.org/wiki/Clutch_(eggs)[clutch] is the set of eggs which have been laid. The mother hen (our Incubator PMC)
-needs to continually gather them, to ensure that none have rolled from the nest or moved to the outside, being forgotten or becoming cold.
-Clutch also means to grasp eagerly.
-
-So please interpret this table and the detailed pages from the point-of-view of encouragement and nurture.
-
-=== Origin
-
-The nest was becoming full. Some podlings were forgotten, rolled into dark corners. We created a new tool, "clutch", to assist with oversight of all podlings
-(gmane link is now missing). The clutch started 2008-10-19. (missing gmane link) There was prior list discussion. Also see
-https://issues.apache.org/jira/browse/INCUBATOR-78[INCUBATOR-78]
-
-=== Colour Scheme
-
-The colours for the table were specifically chosen to take into account colour-blindness and general accessibility.
-See the email discussion that led to this: http://thread.gmane.org/gmane.comp.apache.incubator.general/20788/focus=20810[Re: Clutch color coding].
-2008-12-04 http://s.apache.org/clutch_colour?action=display[http://s.apache.org/clutch_colour] and see some testing
-http://people.apache.org/~crossley/cud/test.html[notes] and demonstrations.
-
-Thanks again to: "Color Universal Design (CUD) - How to make figures and presentations that are friendly to Colorblind people."
-Masataka Okabe and Kei Ito. (http://jfly.iam.u-tokyo.ac.jp/color/[http://jfly.iam.u-tokyo.ac.jp/color/]
-
diff --git a/pages/cookbook/index.ad b/pages/cookbook/index.ad
deleted file mode 100644
index 66752a3..0000000
--- a/pages/cookbook/index.ad
+++ /dev/null
@@ -1,227 +0,0 @@
-= The Apache Incubator Cookbook
-Apache Incubator PMC
-2019-03-26
-:jbake-type: simplepage
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ./images/
-
-This cookbook, combined with our link:http://incubator.apache.org[homepage], provides the information that you need to incubate a project at the ASF.
-
-It is *the* central point for all questions related to incubation. It provides an overview of the incubation goals and process, and links to more detailed information.
-
-It is organized in chronological order of the steps that lead from incubating project acceptance to graduation as a Top-Level Project (TLP).
-
-We welcome feedback about the cookbook, either through the link:++https://lists.apache.org/list.html?general@incubator.apache.org++[general@incubator.a.o] email list
-or in the link:https://issues.apache.org/jira/browse/INCUBATOR-234[INCUBATOR-234] ticket. You can also submit patches to link:https://github.com/apache/incubator/tree/master/pages/cookbook[this repository].
-
-== Does our project fit the Apache Incubator?
-
-The Apache Software Foundation (ASF) _provides software for the public good_, as explained in our link:https://blogs.apache.org/foundation/entry/the-apache-software-foundation-2018[vision statement] from 2018.
-
-Our projects operate according to link:http://www.apache.org/theapacheway/index.html[The Apache Way], a set of principles and best practices. 
-
-We put a strong emphasis on _Community Over Code_, _fierce independence_ from companies and organizations, and _openness_ in all aspects of our work.
-
-Donating your project to the ASF means giving up control of it, and its trademarks if any. You'll be very welcome to participate in the project, but without a special status beyond being part of its Project Management Committee (PMC). The good news is that your project can then take a life of its own, with potentially a much broader reach, due to the ASF's independence and emphasis on project sustainability.
-
-Assuming your project fits this mindset, we do not link acceptance of your project to what it does, as the ASF on purpose does not have a technical strategy. If it's very similar to link:https://projects.apache.org/[one of our existing projects], we will probably ask you to consider joining that project. Still, some of our projects exist for similar purposes, and that's not necessarily a problem.
-
-To give our "podlings" (incubating projects) the best chances of success, we usually ask them to enter the Incubator with at least the start of a community built around an existing codebase.
-
-== What are the steps to becoming an Apache Software Foundation Top-Level Project?
-
-The goal of incubation is to become an Apache Software Foundation (ASF) Top-Level Project (TLP).
-
-See the link:https://www.apache.org/foundation/how-it-works.html[How the ASF works] page for what this means and what the various roles (committers, PMC members etc.) mean.
-
-To achieve this, an incoming project ("podling") goes through the following steps:
-
- * Find a champion and incubation mentors and discuss and prepare an incubation proposal
- * Decide to incubate at the ASF
- * Discuss the proposal with the Incubator PMC
- * If needed, refine the list of initial committers and mentors in the proposal
- * if needed, refine the proposal based on Incubator PMC feedback
- * Let the Incubator PMC vote on the proposal
- * Set up the podling's infrastructure
- * Start building a community around the podling's code
- * Invite new committers and PPMC members
- * Make podling releases and document and refine both the code and the release process
- * When you feel ready to graduate, assess the podling's readiness with the incubation mentors 
- * If applicable, prepare the transfer of existing trademarks to the ASF
- * Discuss graduation with the Incubator PMC
- * Start the graduation vote with the Incubator PMC, leading to an ASF Board resolution to establish the TLP
- 
-Described above is the "happy case". Things might happen in a slightly different order, but it gives an overview of the typical incubation process.
-
-Here are more details about these steps:
-
-== Communicating with the Incubator
-
-The Incubator PMC manages the Incubator and helps incoming projects in their journey through incubation.
-
-To communicate with the Incubator PMC use the public link:++https://lists.apache.org/list.html?general@incubator.apache.org+ [general@incubator.a.o] mailing list. That page has links to subscribe to the list.
-
-== Finding a champion and mentors
-
-To enter the Incubator, your project needs a _champion_ and at least two or three _mentors_. These people MUST be Incubator PMC members, which ASF Members can join just by asking.
-
-The Champion helps the incoming podling in the process of creating their proposal and acts as a liaison between the podling and the Incubator PMC for the initial steps, at least until the podling's proposal is accepted. They may stay on to act as a mentor after that.
-
-The Mentors accompany the podling through all phases that lead to graduation as a top-level project.
-
-The starting point is usually to find a Champion. For that you might write to the general@incubator.a.o list 
-with a brief description of your project, with relevant links, mentioning that you are looking for a Champion and
-trying to get people interested. Or, if you know any ASF Members or Incubation Mentors, ask them directly if they
-would be willing to help.
-
-== Creating an incubation proposal
-
-The Champion helps the podling prepare an incubation proposal that describes the incoming project for the initial discussions with the Incubator PMC. 
-
-The proposal needs to include several standard sections, see the link:https://cwiki.apache.org/confluence/display/INCUBATOR/New+Podling+Proposal[podling proposal template].
-
-Prior proposals are kept on the link:https://cwiki.apache.org/confluence/display/INCUBATOR/Proposals[Incubator wiki]. They can be consulted as examples, keeping in mind that the proposal template mentioned above is the current reference for new proposals.
-
-== Discussing the Incubation proposal
-
-Once the proposal is ready, the podling representatives send it to the general@incubator.a.o list for discussion, with a subject line like
-
- [DISCUSS] Foo Proposal
- 
-to raise the Incubator PMC's attention.
-
-The discussion often leads to small or large changes to the proposal.
-
-There's no set duration for this discussion phase. It usually lasts for a few days until the discussion dies down and all discussion points have been addressed.
-
-For recent discussions threads see:
-
-* link:https://lists.apache.org/thread.html/7ed194c45460a3941ae6713b20e742ec7af398c5414de7b17d188c3b@%3Cgeneral.incubator.apache.org%3E[Nuttx proposal] (in progress)
-* link:https://lists.apache.org/thread.html/1cf79ef65888f695b4b925fd67ef8a2b845f6b0931c251a0ff1115e1@%3Cgeneral.incubator.apache.org%3E[StreamPipes proposal] (accepted)
-* link:https://lists.apache.org/thread.html/ff9874f5353d319152f09aa9c1aa1a673b84acdaeb9932432d58d5ab@%3Cgeneral.incubator.apache.org%3E[Sparkr proposal] (withdrawn)
-* link:https://lists.apache.org/thread.html/21c5453b40765cf1d5a06540fcf6d76c0d5b6b7df7ade5c29d31aa3e@%3Cgeneral.incubator.apache.org%3E[TubeMQ proposal] (accpeted)
-* link:https://lists.apache.org/thread.html/dbdbc6bd8e238d9dbf16604d5fa13500523d6e812fcd863444f99842@%3Cgeneral.incubator.apache.org%3E[MetaObjects proposal] (on hold)
-
-== Voting on the Incubation Proposal
-
-Once the discussion phase is finished, the Champion or a podling representative starts a [VOTE] thread on the general@incubator.a.o list.
-
-The vote happens according to the link:https://www.apache.org/foundation/voting[ASF voting rules]. In short, it takes place on the Incubator email list, lasts at least 72 hours, and is a majority vote by the Incubator PMC members, with others being welcome to cast votes.
-
-TODO link to recent votes as examples
-
-== Podling Infrastructure Setup
-
-Once the Incubator PMC votes to establish the podling, its infrastructure can be set up. 
-
-Usually, the Champion or incubation mentors drive this process. However, it can also be driven by podling community members if they know how to proceed.
-
-See link:https://infra.apache.org/infra-incubator.html[Infra and the Incubator] for detailed instructions.
-
-== Publicity and Announcements
-
-Project can _not_ issue press releases or other public statements about joining the ASF before the Incubator PMC accepts the podling.
-
-There are also some restrictions about how podlings can advertise themselves and  especially around press releases related to podlings. The link:http://incubator.apache.org/guides/branding.html[Incubator Branding Guide] and https://incubator.apache.org/guides/publicity.html[Apache Podling Publicity/Media Guidelines] have more details.
-
-== Importing the Initial Code
-
-A specific process exists do donate code to the ASF, which podlings also
-need to follow, based on link:https://www.apache.org/licenses/software-grant.txt[Software Grants] and/or link:https://www.apache.org/licenses/cla-corporate.txt[CCLAs].
-
-The link:http://incubator.apache.org/guides/transitioning_asf.html[Initial Code Import] guide has more details about this.
-
-== Community building
-
-During incubation, the podling is expected to build and expand its community, which includes voting in new committers and PPMC members.
-
-Discussions of candidates and votes happen on the podling's private PPMC mailing list. That's one of the few uses of that list as, generally, all discussions happen in the open.
-
-Expanding and especially renewing project communities are essential parts of the ASF's governance, as it fosters project durability.
-
-== Podling Releases
-
-During incubation, we expect a podling to make **several software releases** that gradually progress towards being fully conformant to the link:http://www.apache.org/legal/release-policy.html[ASF Release Policy]. Producing fully-conformant releases is a condition for graduation.
-
-Podling releases must also include the word "incubating" in any release file names and include a DISCLAIMER or DISCLAIMER-WIP as per the
-link:https://incubator.apache.org/guides/releasemanagement.html#choice_of_disclaimers[Incubator Releases Guide],
-to prevent any confusion as to the project’s status. As podlings are not yet "real" ASF projects, it is important to set expectations appropriately.
-
-Note that Apache Releases consist of source code only. However, it is common for our projects to also distribute
-link:http://www.apache.org/legal/release-policy.html#compiled-packages[compiled packages] along with their releases, as a convenience to users of the application. The focus is on the actual
-source code releases, and all distributed compiled packages are based on those "official" releases.
-
-== Two-phase vote on Podling Releases
-
-Voting on podling releases happens in two phases:
-
- * First, the podling votes on the release on their dev mailing list. The main goal of this vote is for the podling community
-   to practice and learn voting on releases. The vote is successful if there are at least three +1 votes from PPMC members,
-   and more +1 than -1 votes from PPMC members.
- * Then, if that first vote is successful, the Incubator PMC holds a vote on the Incubator general mailing list. This is required
-   to make the vote an Act of the Foundation, as for all ASF releases.
-
-Report votes from the podling dev list to the Incubator PMC vote in the Incubator PMC [VOTE] message, by explicitly mentioning the podling vote result
-and including a link:http://lists.apache.org[lists.apache.org] link to the podling vote tally. This
-allows votes from mentors and other Incubator PMC members to be binding in the Incubator PMC vote, without people having to vote twice.
-
-Both the podling and Incubator votes follow the standard link:https://www.apache.org/foundation/voting[ASF voting principles]: they
-are majority votes that last at least 72 hours, and if people vote several times only their last vote counts.
-
-== Podling, Top-level Project: what are the differences?
-
-Top-level projects (TLPs) are full-blown ASF projects, each governed by their own link:http://www.apache.org/foundation/governance/pmcs[PMC] and reporting to the ASF's link:https://www.apache.org/foundation/board/[Board of Directors].
-
-Podling are "TLPs in training". Most of what they do is the same as TLPs, especially as they progress in their incubation journey.
-
-The main differences are:
-
- * As opposed to PMCs, podlings cannot make formal decisions on the ASF's behalf as they are not formally part of the ASF's structure. They are not mentioned in the link:https://www.apache.org/foundation/bylaws[the ASF's bylaws] for example. This means that the Incubator PMC needs to act as a proxy for the podlings to formalize things like ASF releases and make them link:https://blogs.apache.org/foundation/entry/success-at-apache-the-apache1[Acts of the Foundation].
- * As a consequence, a podling has a PPMC (Podling Project Management Committee) which operates like the PMC of a top-level project but needs to delegate a few things, like final votes on ASF Releases, to the Incubator PMC.
- * The decision to elect people as committers or PPMC members, or both, is similar to what TLPs do. A podling can decide that candidates are elected to the PPMC directly, or make them committers first and wait a bit to "promote" them as PPMC members. Committers have no formal decision power, so a two-stage process is often preferred, but it's not a requirement. Read link:https://www.apache.org/foundation/how-it-works.html[How the ASF works] for more information about this.
- * TLPs report to the link:https://www.apache.org/foundation/board/reporting[ASF Board of Directors], whereas podlings report to the  link:https://cwiki.apache.org/confluence/display/INCUBATOR/Reports[Incubator PMC]. Both report monthly initially, then quarterly.
- * Each TLP has a link:https://apache.org/dev/pmc.html[PMC Chair] who acts as a liaison between the TLP and the Board. PMC Chairs are _not_ project leaders. It's an administrative role even though they get a VP title due to the ASF's organizational structure. Podlings do not have this role: incubation mentors are volunteer community members  who act as the liaison between the podling and the Incubator PMC.
- * Podling releases require a two-phase vote as described elsewhere in this cookbook.
- 
-The ASF strongly encourages projects to grow and renew their roster regularly, to foster project sustainability. Both podlings and TLPs should be actively looking to elect new committers and PMC members by keeping an eye on who's active in their communities.
-
-== Graduation Readiness Assessment
-
-Once the podling community starts feeling ready to graduate, they should make a self-assessment of that readiness.
-
-The link:https://community.apache.org/apache-way/apache-project-maturity-model.html[Maturity Model] maintained by the ASF's Community Development PMC is a good canvas for that and can help discover things that might have been overlooked during incubation. The Maturity Model page includes links to examples from graduate podlings.
-
-== Graduation discussion
-
-Once the community and its incubation mentors feel that the podling is ready to graduate, based on their readiness self-assessment, a mentor or a member of the PPMC starts a [DISCUSS] thread on the Incubator general email list, proposing graduation and asking the Incubator PMC to review the podling.
-
-It's best to include the graduation resolution in this discussion, to be ready for the vote that follows.
-
-== Transfering Trademarks to the ASF
-
-If the people or organizations that donated the podling code to the ASF own trademarks that the podling needs, they must transfer the trademarks to the ASF before the podling can graduate.
-
-TODO link to details
-
-== Graduation vote
-
-Once the discussion dies down on the graduation proposal, a mentor or a member of the PPMC starts a [VOTE] thread on the Incubator general mailing list, in which Incubator PMC Members cast their votes whether to recommend graduation to the ASF's Board of Directors.
-
-This vote follows the standard link:https://www.apache.org/foundation/voting[ASF voting principles]. It's a majority vote that lasts at least 72 hours, and if people
-vote several times only their last vote counts.
-
-== ASF Board Resolution
-
-Once the Incubator PMC votes to graduate a podling, the IPMC sends the Board Resolution that was created for the vote to the ASF's Board of Directors.
-
-The Board currently meets every third Wednesday of the month and votes on such resolutions during a regular meeting.
-
-The Board vote is effective immediately, although the link:https://www.apache.org/foundation/board/calendar.html[public minutes] of the Board meeting appear later, usually within a month.
-
-== Post-graduation tasks
-
-Once graduated, the podling needs to reflect its new status on the Incubator status pages and make a few changes to its resources and processes.
-
-The link:http://incubator.apache.org/guides/transferring.html[Life after Graduation] guide lists the corresponding tasks.
diff --git a/pages/cookbook/podlings-xml.ad b/pages/cookbook/podlings-xml.ad
deleted file mode 100644
index 25a4fa1..0000000
--- a/pages/cookbook/podlings-xml.ad
+++ /dev/null
@@ -1,134 +0,0 @@
-= The Apache Incubator Cookbook - podlings.xml
-Apache Incubator PMC
-2019-03-26
-:jbake-type: simplepage
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ./images/
-
-The link:https://svn.apache.org/repos/asf/incubator/public/trunk/content/podlings.xml[podlings.xml] file is the master record
-for the status of Incubator podlings. This page will define different podlings by example. Once a podling is defined in podlings.xml
-there are two ways to edit its record.
-
-- Commit changes to link:https://svn.apache.org/repos/asf/incubator/public/trunk/content/podlings.xml[podlings.xml]
-- Use link:https://whimsy.apache.org/roster/ppmc/[Apache Whimsy Roster tools]
-
-== Current
-
-This is the state of an active podling undergoing incubation.
-
-```
-    <podling name="Crail" status="current" resource="crail" sponsor="Incubator" startdate="2017-11-01">
-        <description>Crail is a storage platform for sharing performance critical data in distributed data processing jobs at very high speed.</description>
-        <reporting group="3"/>
-        <champion availid="lresende">Luciano Resende</champion>
-        <mentors>
-            <mentor username="jhyde">Julian Hyde</mentor>
-            <mentor username="lresende">Luciano Resende</mentor>
-        </mentors>
-    </podling>
-```
-
-== New reporting monthly
-
-This is a new podling that is reporting monthly. When a mentor creates the podling entry in #podlings.xml# this is the desired state.
-Note that the reporting group will vary according the the month started.
-
-```
-    <podling name="DataSketches" status="current" resource="datasketches" sponsor="Incubator" startdate="2019-03-30">
-        <description>DataSketches is an open source, high-performance library of stochastic streaming algorithms commonly called "sketches" in the data sciences. Sketches are small, stateful programs that process massive data as a stream and can provide approximate answers, with mathematical guarantees, to computationally difficult queries orders-of-magnitude faster than traditional, exact methods.</description>
-        <reporting group="2" monthly="true">May, June, July</reporting>
-        <champion availid="jbonofre">Jean-Baptiste Onofré</champion>
-        <mentors>
-            <mentor username="chenliang613">Liang Chen</mentor>
-            <mentor username="kenn">Kenneth Knowles</mentor>
-            <mentor username="kamaci">Furkan Kamaci</mentor>
-        </mentors>
-    </podling>
-```
-
-== Graduated as an Apache TLP
-
-This is a podling that graduated to a TLP in the usual way.
-
-```
-    <podling name="CXF" status="graduated" resource="cxf" sponsor="Incubator" startdate="2006-08-15" enddate="2008-04-16">
-        <description>The CXF project will create a SOA services framework by merges the ObjectWeb Celtix project and the Codehaus XFire project.</description>
-        <resolution tlp="true"/>
-        <mentors>
-            <mentor username="jim">Jim Jagielski</mentor>
-            <mentor username="jstrachan">James Strachan</mentor>
-        </mentors>
-    </podling>
-```
-
-== Graduated into the PMC that sponsored it
-
-Occasionally a PMC other than the Incubator will sponsor incubation. In that case (and others) the podling graduates as a sub-project into an existing PMC.
-
-```
-    <podling name="Derby" status="graduated" resource="derby" sponsor="DB" startdate="2004-08-15" enddate="2005-07-18">
-        <description>Java relational database</description>
-        <resolution link="DB Derby" url="http://db.apache.org/derby/"/>
-        <mentors>
-            <mentor username="coar">Ken Coar</mentor>
-        </mentors>
-    </podling>
-```
-
-== Graduated as an Apache TLP with a name change
-
-Sometimes a project will graduate and change their name as they become a TLP
-
-```
-    <podling name="OpenOffice.org" status="graduated" resource="openofficeorg" resourceAliases="ooo" sponsor="Incubator" startdate="2011-06-13" enddate="2012-10-17">
-        <description>OpenOffice.org is comprised of six personal productivity applications: a word processor (and its web-authoring component), spreadsheet, presentation graphics, drawing, equation editor, and database.</description>
-        <resolution link="OpenOffice" url="https://openoffice.apache.org/"/>
-        <mentors>
-            <mentor username="jim">Jim Jagielski</mentor>
-            <mentor username="rubys">Sam Ruby</mentor>
-            <mentor username="danese">Danese Cooper</mentor>
-            <mentor username="curcuru">Shane Curcuru</mentor>
-            <mentor username="noirin">Noirin Plunkett</mentor>
-            <mentor username="joes">Joe Schaefer</mentor>
-            <mentor username="grobmeier">Christian Grobmeier</mentor>
-            <mentor username="rgardler">Ross Gardler</mentor>
-        </mentors>
-    </podling>
-```
-
-== Retired
-
-When a podling retires it will often mean that there is no longer a community.
-
-```
-    <podling name="Provisionr" status="retired" resource="provisionr" sponsor="Incubator" startdate="2013-03-07" enddate="2013-11-22">
-        <description>Provisionr provides a service to manage pools of virtual machines on multiple clouds.</description>
-        <resolution>Failed to grow a community. Retired at request of PPMC.</resolution>
-        <champion availid="tomwhite">Tom White</champion>
-        <mentors>
-            <mentor username="rvs">Roman Shaposhnik</mentor>
-            <mentor username="tomwhite">Tom White</mentor>
-            <mentor username="mnour">Mohammad Nour El-Din</mentor>
-        </mentors>
-    </podling>
-```
-
-== Retired and moved development
-
-Sometimes a project community will decide that the Apache Software Foundation is not for them and they will move development elsewhere.
-
-```
-    <podling name="Heraldry" status="retired" resource="heraldry" sponsor="Incubator" startdate="2005-07-14" enddate="2007-06-09">
-        <description>Identity for the rest of us.</description>
-        <resolution link="OpenID.net" url="http://openid.net/">Project retired. Some activity moved to OpenID.net</resolution>
-        <mentors>
-            <mentor username="ben">Ben Laurie</mentor>
-            <mentor username="pquerna">Paul Querna</mentor>
-            <mentor username="twl">Ted Leung</mentor>
-            <mentor username="farra">J. Aaron Farr</mentor>
-            <mentor username="wrowe">William Rowe</mentor>
-        </mentors>
-    </podling>
-```
diff --git a/pages/faq.ad b/pages/faq.ad
deleted file mode 100644
index 554491b..0000000
--- a/pages/faq.ad
+++ /dev/null
@@ -1,152 +0,0 @@
-= Frequently Asked Questions
-Apache Incubator PMC
-2002-10-16
-:jbake-type: simplepage
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: /images/
-
-== Questions
-
-=== 1. Incubation
-
-==== 1.1. Does the X Project really have to go in the Incubator to get to Apache?
-Yes.
-Code that has existed outside the ASF can *only*
-enter the ASF through the Incubator. There is no other option.
-The Incubator, among other things, is where the due-diligence of
-making sure the licence is correct, that we have received the link:http://www.apache.org/licenses/#grants[copyright license], and that all of the initial developers submit their link:http://www.apache.org/licenses/#clas[CLAs] takes place.
-The Incubator is also where projects can familiarize
-themselves with how the ASF works under the guidance of Incubator
-PMC (IPMC) members (link:incubation/Roles_and_Responsibilities.html#Mentors[mentors]).
-
-==== 1.2. I'm the mentor of this project, and I think that I'm able to do it by myself. The Incubator doesn't add anything, so can we skip it?
-
-No.
-Do it right, do it well, and add something in the process.
-Incubation is not about handing a project over to some other group and
-seeing what happens. The Incubator is simply the name of the place
-that governs your actions when you process a new project into
-Apache. It moves at the same rate you do, and achieves whatever
-you achieve -- the only difference is that we have a permanent
-record in *one* place that we can go back to if
-there are later IP problems, and there is a gate that the project must
-pass through before it gains the right to release
-software on behalf of the ASF.
-The ASF will not let a project ignore or bypass that gate just because one
-group or another feels they have earned the right to bypass it. Allowing that kind of exception would destroy the potential to build a
-tradition of effective oversight, which is the reason we created
-the Incubator.
-
-==== 1.3. Project XXX makes no mention of the Incubator for accepting new projects, but the Incubator site says that all projects entering Apache must pass the Incubator. What do we need to do to move to the Apache XXX project?
-
-The incubation process, WRT responsibilities, is roughly as
-follows:
-- Any Apache PMC (project management commitee), including the IPMC
-(Incubator PMC) itself, can approve the entrance of a project
-at Apache.  They are the link:incubation/Roles_and_Responsibilities.html#Sponsor[Sponsor].  (In rare cases, the Apache Board of Directors
-will approve the entrance of a project.)
-- The IPMC is from that moment on responsible for the
-project. The assigned link:incubation/Roles_and_Responsibilities.html#Mentors[Mentors] (ASF members who have volunteered to help with
-the incubation process) will have the primary responsibility
-for overseeing the progress of the project.  Each quarter, the
-project will submit an update to the entire IPMC about its progress in Incubation.
-- This will continue until the IPMC approves the
-project to be "graduated". After graduation, if another
-PMC sponsored the podling, it will then be transferred to
-the PMC that asked for incubation.  If the PMC was the
-Incubator itself or the Board, the Board must also approve the project to receive its own PMC.
-- At this point, Incubation is complete.
-
-So, since you would like to have a place under the XXX Project,
-ask that PMC to sponsor you.  After that vote, you will
-automatically be under the Incubator, and incubation will
-start.
-
-==== 1.4. Someone has proposed donating their code/project to project X within the ASF for continued development. What do we need to do to accept the code?
-The Incubator will only accept code for incubation if a PMC
-has voted to accept it. So when a proposal for the donation of
-code occurs, the project in question should discuss the proposal
-(usually on their public mailing lists!), leading to a decision
-by that project's PMC on whether or not to sponsor the code (and,
-potentially, the project surrounding it).
-If the PMC agrees, it should approach the incubator, and the Incubator can accept the
-code for incubation. Record the grant by
-following the procedure outlined in the link:/ip-clearance/[IP Clearance forms].
-
-==== 1.5. The code came from outside the ASF, so it's ours to do with as we like, right?
-
-Wrong.
-Here are some generally-agreed points that you should take
-into consideration:
-- No codebase within the ASF is an exclusive
-location for a general technology within the ASF.
-- All initial codebases are just that: initial. Once the code is
-here, if people feel that the code sucks or the architecture
-sucks, or whatever else someone wants to complain about,
-all parties understand that the future direction of the
-architecture and code is, as with everything at the ASF,
-subject to communal will.
-- Other contributors interested in any ASF codebase, with or
-without existing codebases, are free to contribute code, or to
-propose additional related projects.
-
-=== 2. Participation
-
-==== 2.1. How can I update the site?
-Refer to link:guides/website.html[our guide to updating the website].
-If you are not a committer on the Incubator project,
-you can still submit patches for the source documents.
-
-==== 2.2. How do I update the incubation status of a project?
-
-See link:guides/mentor.html#Overview[notes]
-about maintaining your project entry in the podlings summary file
-and on your project's status page.
-
-
-==== 2.3. Why don't we use an issue tracking system to track incubation process?
-
-Issue trackers do not meet the long-term archival and tracking
-requirements for our legal purposes and they do not authenticate
-that the person entering the status information has the authority
-to do so, which is what we get with our version control system.
-Note that how a project does its actual day-to-day tracking (i.e.
-bugs in code) is not the same as filing the legal forms -
-for those issues, so you can use our normal issue trackers to record bug resolution and development of features.
-Nevertheless, SVN is our only authoritative and formal tracking
-system for incubation status.
-
-==== 2.4. How do I update the site of an incubating project?
-First read our link:/policy/incubation.html[Incubation Policy].
-Refer to the link:guides/sites.html[Website Guide].
-
-==== 2.5 How do I obtain karma for the Infrastructure site?
-
-Direct all requests for karma (whether for a podling web site or for the infrastructure site itself)
-to the incubator general email list.
-
-Please read the link:/guides/website.html[website guide] before editing the website.
-
-==== 2.6 How do I set up the Podling website?
-
-To set up the website for a podling, start by requesting link:#site-karma[karma].
-
-==== 2.7 How do I grant karma to an existing Apache committer?
-
-This link:http://apache.org/dev/pmc.html#karma[document] describes how to grant karma to an
-existing Apache committer.
-
-==== 2.8 What facilities assist with Incubator management, and how are they generated and maintained?
-
-See link:facilities.html[Facilities for Incubator management].
-
-=== 3 Infrastructure
-
-==== 3.1 How does our project request resources?
-
-Co-ordinate via your project's dev list and PPMC. Often someone
-there will know what is necessary.
-Some notes are in the
-link:guides/mentor.html#request-required-resources[Mentor guide] and in the link:https://infra.apache.org/contact.html[Infrastructure instructions].
diff --git a/pages/guides/branding.ad b/pages/guides/branding.ad
deleted file mode 100644
index 86a95c9..0000000
--- a/pages/guides/branding.ad
+++ /dev/null
@@ -1,109 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Incubator Branding Guide
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-Podlings are, by definition, not yet fully accepted as part of the
-Apache Software Foundation. Therefore, they are subject to additional
-branding constraints, on top of the
-link:http://www.apache.org/foundation/marks/responsibility[branding guidelines for top-level projects]
-
-== Publicity throughout the Incubation Process
-
-There are three stages in a podling's life-cycle that have an impact
-on the types of "publicity seeking" (issuing press releases, seeding news stories, or otherwise affirmatively
-seeking publicity) they can engage in:
-
-*Podling is in proposal/or pre-code-drop process*: No publicity
-seeking is permitted.  You cannot refer to the podling as `Apache
-_Podling-Name_` until the podling is officially in
-Incubation, public mailing lists are active, and committers or contributors have submitted code into our repositories.
-
-*Podling has been approved for incubation, podling has launched
-public mailing lists, and podling has dropped code into
-repository*: You now *MUST* refer to the podling as 'Apache
-_Podling-Name_' (see link:#Naming[Naming] below).
-A podling and affiliated persons can issue press releases that
-reference the podling, but cannot issue press releases with the
-specific intent of announcing the podling. The podling can conduct
-informal PR activities such as media outreach, blog publicity, etc.
-The ASF will not issue any press releases for any podling at this
-stage. The
-link:http://www.apache.org/press/index.html#whoweare[Apache Press Team]
-*MUST* review any releases by affiliated
-organizations or groups to ensure they comply with our branding
-guidelines.
-
-*Podling has graduated from the Incubator*: The Apache Public
-Relations Committee is willing to issue formal press releases for all
-podlings that successfully graduate from the Incubator and are
-interested in issuing a press release. The ASF may also enter into a
-joint press release with any other affiliated organizations or groups.
-
-== Naming
-
-After a podling has been approved, the lists are created, and the initial
- code drop has commenced, you *MUST* refer to the podling as `Apache
- _Podling-Name_` *AND* mention that the project is
- under Incubation.  Suitable mentions include:
-
-- Inclusion of the `http://_podling-name_.incubator.apache.org/` URL
-- `Apache _Podling-Name_ is currently undergoing Incubation at the Apache Software Foundation`.
-
-The Incubator PMC (IPMC) must approve other references before you publish them. You only need to make these statements upon the first reference to the podling in a document.
-
-== Disclaimers
-
-Podling web sites MUST include a clear disclaimer on their
-website and in all documentation (including releases) stating that
-they are in incubation. Podlings SHOULD use the following text for
-all disclaimers (replace the underlined phrases as appropriate):
-
-[quote]
-____
-Apache [.underline]#Podling-Name# is an effort
-undergoing incubation at The Apache Software Foundation (ASF),
-sponsored by the [.underline]#name of Apache TLP sponsor#. Incubation is required of all
-newly accepted projects until a further review indicates that the
-infrastructure, communications, and decision making process have
-stabilized in a manner consistent with other successful ASF projects.
-While incubation status is not necessarily a reflection of the
-completeness or stability of the code, it does indicate that the
-project has yet to be fully endorsed by the ASF.
-____
-
-Podlings wishing to use a different disclaimer message MUST have the
-disclaimer approved by the Incubator PMC prior to use.
-
-For releases, the text SHOULD be included in a separate DISCLAIMER file
-stored alongside the NOTICE and LICENSE files.
-
-== Incubator Logo
-Podlings websites should follow the logo description from link:press-kit.html[Press Kit for Podlings].
-
-== Publicity activities
-Podlings *MUST* coordinate with the Apache Public Relations Committee on
-all their publicity activities.
-
-Media activities in the Open Source space can be difficult to negotiate even for experienced professionals. The ASF’s Marketing & Publicity team understands this space and it is in the best interests of all that you consult with them prior to embarking on formal outreach or related publicity. Refer to the https://incubator.apache.org/guides/publicity.html[Apache Podling Publicity/Media Guidelines] or contact ASF Marketing & Publicity at press(at)apache(dot)org for more information.
-
-
-== Response to Unapproved Statements
-The Apache Public Relations Committee SHALL affirmatively and publicly
-respond to any unapproved statements surrounding podlings which are factually
-incorrect.
diff --git a/pages/guides/chair.ad b/pages/guides/chair.ad
deleted file mode 100644
index e908910..0000000
--- a/pages/guides/chair.ad
+++ /dev/null
@@ -1,96 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Incubator Chair Guide
-Apache Incubator PMC
-2002-10-16
-:jbake-type: pmcGuide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-== This guide is for the Incubator Chair and IPMC
-
-This page is guidance for the Incubator Chair and IPMC. Guidance for podlings is at link:/guides/ppmc.html[Podling Guide].
-
-== Adding Incubator PMC Members
-
-For a new PMC member being voted in, follow the link:http://www.apache.org/dev/pmc.html#newpmc[standard procedure].
-
-For an ASF Member exercising their prerogative to join the IPMC by request, the only change in procedure is to alter the text of the NOTICE sent to the Board:
-
-[literal]
---
-To: board at apache.org
-CC: private at incubator.apache.org
-Subject: [NOTICE] *Jane Doe* for Incubator PMC
-Body:
-
-Apache Member *Jane Doe* has requested to join the Incubator PMC.
---
-
-After the NOTICE period expires, send a welcome message to the new IPMC member.
-
-[literal]
---
-Welcome to the Apache Incubator Project.
-
-Here is some information to get you started as an IPMC member.
-
-Please subscribe to the incubator email lists:
-- general-subscribe at incubator.apache.org
-- private-subscribe at incubator.apache.org
-- cvs-subscribe at incubator.apache.org
-
-You may find it useful to use https://whimsy.apache.org/committers/subscribe to manage your subscriptions.
-
-- the base incubator SVN URL is https://svn.apache.org/repos/asf/incubator.
-
-- all public information, rules and policies about the
-Apache Incubator is in https://github.com/apache/incubator,
-and is published on https://incubator.apache.org/.
-
-- https://home.apache.org/phonebook.html?ctte=incubator
-lists all IPMC members.
-
-- We maintain and publish the Incubator website according to the
-instructions at http://incubator.apache.org/guides/website.html.
-
-- All committers on all incubating projects have access to
-the 'incubator/public' repository, so they can
-participate in the general Incubator Project as committers.
-
-- Please read our work documents; we publish them at https://incubator.apache.org/policy/incubation.html
-
-Thanks for helping us!
---
-
-== Board Report
-
-The Incubator PMC link:http://www.apache.org/foundation/board/reporting[reports] monthly to the Apache link:http://www.apache.org/foundation/board[Board of Directors]. The report itself is the collaborative effort of many Incubator contributors, but the Chair is ultimately responsible for submitting it on time.
-
-The Board appreciates receiving the IPMC report:
-- on time
-- in a consistent format
-- as an accurate summary of the state of the reporting podlings
-- with multiple Mentor signoffs on each report
-
-The "runbook" for managing preparation of the report is a script which prints out documentation, instructions, literal commands, due dates, etc. in link:https://svn.apache.org/repos/asf/incubator/public/trunk/report_runbook.py[report_runbook.py].
-
-Either the Chair or a delegated Report Manager can run many of the tasks documented in the runbook. However, the Chair is accountable for overseeing the process.
-
-Work on the report draft on the link:https://cwiki.apache.org/confluence/display/INCUBATOR/Reports[Incubator wiki]. 
-
-Incubator board reports are organised by year and month. To create a new report, copy the MonthYear template and correctly rename it. Add and link the new report to the list of reports on the front page.
-Currently, members of the IPMC and Podling PMCs have permission to edit pages in the Reports section of the wiki. We need to update the permissions for that section when we add or retire podlings. 
-When submitting a final report to the board, make sure to mark the report as read-only and mark it as submitted at the top of the page, so that future accidental edits do not change the submitted report.
-The draft reports may vary a little from the final Board report. The published Incubator Board reports can be found here.
diff --git a/pages/guides/committer.ad b/pages/guides/committer.ad
deleted file mode 100644
index 6d746e0..0000000
--- a/pages/guides/committer.ad
+++ /dev/null
@@ -1,73 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Committers
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-The link:/policy/incubation.html#Committers[Roles and Responsibilities] document describes the general role of a committer on an incubating project. This page provides links to more information to help new committers get started.
-
-== Mailing Lists
-Everything inside the Apache world needs to occur asynchronously and be archived. Email is currently the best platform for this. As some people say, 'If it isn't on the mailing list, it didn't happen.' Decisions only get made on public Apache email lists, not anywhere offlist such as IRC, IM, or private emails. If a PMC or Apache committee makes decisions elsewhere, they need to bring the decision back to the appropriate email list.
-
-Each project has a set of public lists, which are typically called dev@*project*, user@*project* (or users@*project*), issues@*project* and commits@*project*. A few link:http://www.apache.org/foundation/mailinglists.html[Apache-wide lists] cross all boundaries, including:
-
-- *community*: where all Apache committers can discuss things that are about Apache
-- *infrastructure*: where the Infrastructure team (Infra) discuss and work on the Apache infrastructure needs
-- *legal-discuss*: where Apache committers can ask questions that have a legal aspect
-- *builds*: discussions about the Apache continuous integration infrastructure
-
-Email lists are archived and searchable at server places, including link:https://lists.apache.org[Apache Pony Mail].
-
-=== Action items for committers include:
-
-- Become familiar with Apache developer link:http://www.apache.org/dev/contrib-email-tips.html[tips for email contributors].
-- Subscribe to the user, dev, issues and commits lists for your project.
-- Become aware of what else is going on in the Incubator by subscribing to the Incubator's general list.
-- Become aware of what else is going on at the ASF by subscribing to the link:http://www.apache.org/foundation/mailinglists.html#foundation-community[community], link:http://www.apache.org/foundation/mailinglists.html#foundation-infrastructure[infrastructure], and link:http://www.apache.org/foundation/mailinglists.html#foundation-legal[legal-discuss] Apache-wide lists.
-
-Apache also has private lists. For example, your project will probably have a private email list named private@*project*.apache.org, which your Podling PMC will use for sensitive discussions. Never
-mix public and private email lists in the same post -- see the section entitled link:http://www.apache.org/foundation/how-it-works.html#management[Balancing confidentiality and public discussion] in link:http://www.apache.org/foundation/how-it-works.html[How it Works]. For example, never include both your dev and private lists in the same post. Posting to the dev list is sufficient because each member of your Podling PMC will also be on that list.
-
-== Project Web Site
-The Incubator link:sites.html[Podling Websites] documents how to get your project web site going.
-
-== Committer Resources
-
-- The link:https://infra.apache.org/new-committers-guide.html[Guide for New Committers] is a great place to start and points to additional committer-only resources.
-- Browse the pages at link:http://www.apache.org/dev[http://www.apache.org/dev/] often.
-- Subscribe to the link:http://www.apache.org/foundation/mailinglists.html#foundation-infrastructure[infrastructure] list, then raise awareness on your project about what goes on behind the scenes.
-
-Be proactive about responding to infrastructure issues on your project email lists. Does the webserver seem to be down? Is Jira or Git down? Check the link:http://status.apache.org/[ASF status page] and explain the reason to your project list (as you can see, no need to alert the ASF infrastructure people).
-
-
-== Podling PMC (PPMC)
-If you are a member of your PPMC, become familiar with the link:/policy/incubation.html[Incubation Policy] and see the link:ppmc.html[Podling PMC Guide].
-
-== Orienting New Committers: Understanding Apache
-
-When a committer is elected by a Top Level Project (TLP), the nominator and other PMC members educate the new committer about Apache. In the Incubator, Mentors provide this education. This process is one of the most important for the long-term health of a project.
-
-Apache works on the principle that discussions should happen on the most open forum available. Unless the matter is sensitive (such as security or personal issues), it should be raised on an open email list. Typically this will be the podling dev list or the incubator general list. Reserve the private incubator list for sensitive topics only.
-
-Mentors need to take care. During the initial bootstrapping a habit may develop of emailing the private@ list. It is important to break this habit as soon as the public email lists are available.
-
-Netiquette about the correct use of sending copies of emails may also be difficult to impart effectively. During the bootstrap process, there are a number of occasions when *cc*s are required. The typical usage is to copy in a private listing to indicate that the action has the lazy permission of the committee. The commercial world often use *cc*s to create inefficient ad-hoc email lists. Except for a small number of defined processes, we frown on *cc*s at Apache. Mentors need to encourage people to ask questions first  on the public lists of the project, then raise them (if necessary) to the general incubator list.
-
-== Questions?
-If you have any questions, ask on the Incubator's general email list. Don't forget to check the information at:
-- link:http://www.apache.org/dev[http://www.apache.org/dev/]
-
diff --git a/pages/guides/community.ad b/pages/guides/community.ad
deleted file mode 100644
index 66f5be7..0000000
--- a/pages/guides/community.ad
+++ /dev/null
@@ -1,85 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Guide to Successful Community Building
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-== Abstract
-
-This document is to help each podling understand the importance of building an open and diverse community for its project. It gives guidelines on how to accept new committers and PPMC members and how to enable more community involvement.
-
-== What is an open and diverse community?
-
-A major criterion for podling graduation to Top Level Project (TLP) status is to have developed an open and diverse link:http://www.apache.org/foundation/glossary.html#Meritocracy[meritocratic] community. These kinds of communities are more robust and productive than more closed ones are.
-
-=== People
-
-As a project grows, it needs to renew itself by accepting new committers. A project needs to learn how it can recruit new developers and committers into the community. Accepting new committers usually increases the diversity and strength of the project. link:#notes-community[Community building] requires energy which could have been spent on code development, but this cost is an essential investment for the future of the project.
-
-The openness of the community is not only measured by the number of contributors. Open and respectful discussions on the mailing lists are vital. Community members must learn ways to resolve technical conflicts without destroying personal relationships.
-
-=== Communication
-
-Email lists are the lifeblood of Apache communities. They are the primary mode of discourse and constitute a public and historical record of the project. Other forms of communication (P2P, F2F, personal emails, instant messaging platform posts, and so on) are secondary. There are well-founded fears about the use of other forms of project communication. Though some projects successfully blend other forms of communications, projects need to take care since out-of-band communications have led to difficulties in the past. The reason is that conversations on other than the public email list exclude parts of the community. Public instant message communication can be exclusionary due to time zone constraints or conflicting time commitments by community members who would want to participate.
-
-Apache project email lists are public, archived and searchable. This allows anyone to monitor (both in real-time and by browsing the archives) what's happening. Opinions expressed are in the open and poor behavior risks a poster's reputation.
-
-Private communications tend to be more candid but also more likely to be ill-judged. Backchannel communication tends to be divisive, excluding some members of the group. This tends to have a corrosive effect on the collective spirit of the community. Trust erodes when opinions backed by blocks of developers appear from nowhere, fully formed, on the email list.
-
-Communication through other channels also reduces the chance of link:http://en.wikipedia.org/wiki/Serendipity[serendipity]. As with most social networks, most subscribers to a email list never post and most posts come from a tiny minority of subscribers. Some passive subscribers are just interested in where the project is going. But others understand related fields and have a limited intersection of interest. This second group will often post when a topic in which they are interested arises on a list. Using public email lists to develop designs allows the chance encounter of ideas which often results in innovation.
-
-If a project uses alternative forms of communication, it is essential to try to minimize the chances of problems arising. All matters of substance need to move back to the email lists. Projects need to preserve, and post back to the lists, significatn conversation threads in other channels. Project should post regular reminders that other secondary forms of communication exist.
-
-There is a limited number of topics, such as security issues and discussions about people, which it is best to handl in private. As much business of the project as possible should take place on public lists, but the private list is available for matters of a sensitive nature. Good netiquette requires that you seek permission from the poster before making public posts made to a private list. Try to avoid cross-posting between public and private forums. Take care not to post a reply to a private post to a public forum without permission.
-
-Learning to use email lists effectively is very important. If your project community can achieve this, it has a good chance to be lively, active and thriving. The future looks bright.
-
-=== Community Building
-
-Before a podling graduates, it must create a diverse and self-sustaining community. Community-building is tough: it takes time, effort and more than a little magic. There is no secret recipe, just hard work. To address this challenge, committers may need to devote more time to community-building and less to development.
-
-The link:mailto:community@apache.org[community email list] is open to all Apache committers. This is the right list for questions about the Apache community and on community-building. Subscribe using your Apache email address.
-
-==== Raising The Profile
-
-Sometimes a podling is just not well-enough known. There are  not enough users to recruit new developers from. Overcoming this means finding ways to raise the profile of the podling. Some ideas:
-
-- Improve the website
-- Improve the information you provide within each release 
-- Release more often
-- Simplify the build process
-- Improve project documentation
-- Provide getting-started examples and tutorials
-- Use grassroots media
-- Encourage downstream distributions to include a packaged version
-- Submit talks to conferences
-- link:http://www.feathercast.org[Feathercast]
-- Write blogs and articles
-
-==== Building a community by stepping back a little
-
-If the podling's software has lots of users but very few new developers, the community needs to do more work to encourage users to become developers. A common cause of this is that committers are too quick to create code to solve user problems. It's good to respond quickly to requests by users. However, once a project gains momentum, it may be more productive for the long-term health of a project to encourage users to propose solutions to non-critical problems and, thus, become more involved.
-
-Try to encourage expert users to answer questions. This may mean intentionally allowing a time gap before answering user questions. Encourage users to post by taking the time to deal politely and positively with misunderstandings and by replying to threads which have been answered well by a user to confirm that they are right. Avoid engaging in flame wars on user lists. Ignore trolls.
-
-Try to encourage users to become developers. When they give a good answer that the documentation doesn't cover, ask them to submit a patch. When users suggest a good design or extension, ask for volunteers to help implement it rather than just coding it up.
-
-==== Helping Developers Become Committers
-
-If a podling has no trouble attracting developers but difficulty retaining them long enough for them to become committers, this highlights an issue with the recruitment process. To become an Apache committer, a developer needs to hang around long enough to accumulate a track record of contributions. This often requires encouragement and help from existing committers. It may also be that the committer bar is set too high.
-
-Promptly reviewing patches or pull requests is essential. The way the project applies patches is also important. Provide credit in the commit message and when closing the issue. It's also good to encourage developers by suggesting new related work they may like to volunteer to work on.
diff --git a/pages/guides/distribution.ad b/pages/guides/distribution.ad
deleted file mode 100644
index fdf3779..0000000
--- a/pages/guides/distribution.ad
+++ /dev/null
@@ -1,100 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Distribution Guidelines
-Apache Incubator PMC
-2020-5-10
-:jbake-type: pmcGuide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-Guidelines to help you comply with the ASF distribution policies
-
-One of the goals of incubation is to teach podling communities how to build and distribute ASF-compliant releases. A podling community should begin to familiarise themselves with the ASF policies for distribution. Those policies can be found at link:https://infra.apache.org/release-distribution[https://infra.apache.org/release-distribution]. The following will help you comply with current policy.
-
-== Motivation
-The ASF is responsible for providing software which can be used in accordance with our license. Code or artifacts built from code without clean intellectual property can mean that code that doesn't belong to us slips into users projects. This would expose our users and the ASF to the risk of lawsuit. One purpose of the incubating process and its release process is to ensure that our users can trust our projects. Releasing artifacts built from code that hasn't been approved by the IPMC circumvents this process. It robs the PPMC of learning opportunities. It increases the likelihood that we might accidentally betray the trust of our users.
-At the same time binary artifacts on distribution platforms are important to our users for a wide variety of reasons. This document is intended to balance these priorities. If you believe you have a case in which this document is inadequate to your situation please bring this to our attention by mailing either general@incubator.apache.org or private@incubator.apache.org
-
-== Release Platforms
-In addition to the Apache mirror system incubating projects may distribute artifacts on other platforms as long as they follow these general guidelines:
-
-* Source releases must be placed in the Apache mirror system.
-* Apache projects are always released in source form, but additionally can make convenience binaries for end users.
-* Convenience binaries must be made from IPMC approved ASF releases.
-* Convenience binaries need to follow licensing policy and not include any category X licensed software.
-* Convenience binaries should be signed and have hashes to verify their contents.
-* Release candidates, nightlys and snapshots must not be advertised to the general public.
-* Apache project branding and naming needs to be respected.
-* It should be clear that the artifacts are under the ALv2 license.
-* An incubating disclaimer must be clearly displayed where the artifacts are made available.
-* All PPMC members must have access to administer the platform and the credentials recorded where any PPMC member can access them.
-* Where possible these artifacts should not be referred to as releases.
-* Where possible use platforms officially supported by Infra.
-
-All of the above SHOULD be followed. The podling can ask the IPMC for permission to do otherwise.
-
-**Currently only Github, Dockerhub, and Maven are officially supported by Infra.**
-
-== Maven distribution
-To comply with ASF release and distributions please ensure the following:
-
-* The project description should include the incubator disclaimer.
-* Artifacts should be under the groupId of **org.apache.<project>**.
-* The official release artifacts should not contain unapproved code.
-* Release candidates, nightlys or snapshots need to be clearly marked by adding suffix in its version, like **org.apache.<project>.<component>:0.1-SNAPSHOT**
-* The POM file should set the ALv2 license as its license, Apache <project> as its developer name, and proper source control information.
-
-Additional guidelines and process for releasing Maven components can be found link:https://infra.apache.org/publishing-maven-artifacts.html[on this infra page].
-
-== GitHub
-Artifacts show up on **https://github.com/apache/incubator-<project>/releases**.
-To comply with ASF release and distributions please ensure the following:
-
-* Any releases need to include the text of the incubation disclaimer.
-* The release page must not contain release candidates, nightly or snapshots releases that have not been tagged as prereleases. (Ignoring that GitHub also displays tags on the release page.)
-* Any releases that exist before coming into incubation need to be clearly described on the release page and tagged as such on **https://github.com/apache/incubator-<project>/tags**.
-* Release candidates, nightlys or snapshots releases can be tagged and appear on **https://github.com/apache/incubator-<project>/tags**.
-
-== Docker
-Artifacts need to be placed in **https://hub.docker.com/r/apache/<project>** or **https://hub.docker.com/u/apache<project>/<project>**.
-To comply with ASF release and distributions please ensure the following:
-
-* The overview should include the incubator disclaimer.
-* The docker file (if it exists) should include an ASF header.
-* The docker file (if it exists) should include the incubator disclaimer.
-* docker pull apache/<project> should not install an artifact containing unapproved code.
-* Release candidates, nightlys or snapshots need to be clearly tagged.
-* The latest tag should not point to an artifact containing unapproved code e.g. to master or dev branches or to a RC or snapshot.
-
-
-== NPM
-Artifacts show up on **https://www.npmjs.com/package/apache-<project>** version page.
-
-* To comply with ASF release and distributions please ensure the following:
-* The readme tab needs to include the text of the incubation disclaimer.
-* npm install apache<project> should not install an artifact containing unapproved code.
-* The latest release should not point to an artifact containing unapproved code e.g. a release candidate or snapshot.
-* Release candidates, nightlys or snapshots need to be clearly tagged.
-* The license field should display the ALv2 license.
-
-
-== PyPI
-Artifacts need to be placed in **https://pypi.org/project/apache-<project>**.
-To comply with ASF release and distributions please ensure the following:
-
-* The project description should include the incubator disclaimer.
-* pip install apache<project> should not install an artifact containing unapproved code.
-* Release candidates, nightlys or snapshots need to be clearly tagged as pre-release on **https://pypi.org/project/apache-<project>/#history**
-* The latest version should not point to an artifact containing unapproved code e.g. to a release candidate or snapshot
-* The meta license field should display the ALv2 license.
diff --git a/pages/guides/graduation.ad b/pages/guides/graduation.ad
deleted file mode 100644
index 064500c..0000000
--- a/pages/guides/graduation.ad
+++ /dev/null
@@ -1,447 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Guide to Successful Graduation
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-The intent of this document is to help podlings
-understand the process of
-graduation and offer some views about how to approach it.
-It also links to the Incubator
-link:http://incubator.apache.org/incubation/Incubation_Policy.html#Graduating_from_the_Incubator[exit policies].
-It is not an inflexible standard but represents a
-consensus condensed from previous discussions on the
-incubator general list. It also describes some of
-the first steps that should be taken after
-graduation.
-
-*This is just a guide. Policy is stated link:/policy/incubation.html[here].*
-
-Help to improve the system by posting a patch for
-this document to the incubator section of JIRA or a
-comment to the link:lists.html#general_at_incubator.apache.org[general] list at
-incubator.
-
-== What is Graduation?
-
-Graduation is the act of a podling becoming either a
-subproject under an already existing Apache project, or
-becoming a top level Apache project. Graduating is a
-democratic process: in the end, it comes down to a *link:http://www.apache.org/foundation/voting.html[VOTE]*. Note
-that during your stay in the incubator, you are already busy
-with the process of Graduating: by adopting Apache procedures,
-growing and fostering your community, having (civil) fights
-concerning code style (tabs versus spaces), cutting releases
-and so forth. All these acts have an influence on your
-projects graduation.
-
-The road to graduation is pretty clear: depending on whether your
-project wants to become a top level project, or join as a
-subproject under an already existing project the steps are
-fairly simple but do take time and effort. This document
-provides guidelines for making this process run smooth.
-
-This document is offered for guidance and education only.
-Actual policy is documented in the link:../incubation/Incubation_Policy.html[Incubation PolicyGuide] in 
-link:../incubation/Incubation_Policy.html#Graduating_from_the_Incubator[this]
-section. Please post any questions about graduation
-to the link:lists.html#general_at_incubator.apache.org[general incubator list].
-
-== Whether to Graduate to Subproject or to Top Level Project
-
-Each proposal has a link:/incubation/Roles_and_Responsibilities.html#Sponsor[Sponsor].
-The identity of the Sponsor indicates the natural
-destination. For proposals sponsored by the link:/guides/roles_and_responsibilities.html#the_board[Board] or by
-the 
-link:/guides/roles_and_responsibilities.html#incubator_project_management_committee_ipmc[IncubatorPMC (IPMC)], this is a top level project. For others,
-this is as a subproject of the sponsoring project. However, the
-destination is fixed only on graduation, not entry. Projects
-grow and evolve during the graduation process. As
-graduation approaches, this original preference should be
-reviewed based on where the project is now.
-
-Graduation as a subproject is only possible if the
-subproject still falls within the scope of the project and
-requires the consent of the project link:http://www.apache.org/foundation/how-it-works.html#structure[PMC].
-Graduation as a top level project requires the formation of the new
-project by the link:/incubation/Roles_and_Responsibilities.html#board[Board].
-
-The link:/incubation/Roles_and_Responsibilities.html#Incubator_Project_Management_Committee_IPMC[IPMC]
-will also express a democratic opinion. For those seeking
-to graduate to a subproject this *link:http://www.apache.org/foundation/voting.html[VOTE]*
-is to approve the
-transfer. For those seeking to graduation as a top level
-project, this will be a recommendation to the link:/incubation/Roles_and_Responsibilities.html#board[Board].
-Expect IPMC-ers to ask questions about the project
-including about the choice of destination. This is part of
-the normal process.
-
-== Before You Graduate
-
-Before you start thinking about graduation, you need to make
-sure you are ready and meet the requirements imposed on Apache projects.
-This section will provide a shortlist for podlings to
-determine if they meet the criteria for asking graduation.
-
-=== Graduation Check List
-
-The following is a short checklist giving an overview, not
-a substitute for reading the content below.
-
-* Preparations
-** Complete (and sign off) tasks documented in the link:#notes-status[status file]
-** Ensure link:#notes-names[suitable names] for project name and product names
-** Demonstrate ability to link:#releases[create Apache releases]
-** Demonstrate link:#community[community readiness]
-** Ensure link:/incubation/Roles_and_Responsibilities.html#Mentor[Mentors] and link:/incubation/Roles_and_Responsibilities.html#Incubator_Project_Management_Committee_IPMC[IPMC] have no link:#notes-issues[remaining issues]
-* Decide upon link:#subproject-or-top-level[destination]
-* Prepare a link:#tlp-resolution[resolution] *(top level candidates only)*.
-* link:#subproject-acceptance[Subproject acceptance *VOTE*] by destination Project *(subproject candidates only)*
-* link:/incubation/Roles_and_Responsibilities.html#Incubator_Project_Management_Committee_IPMC[Incubator PMC (IPMC)]:
-** For top level candidates, this is a link:#ipmc-top-level-recommendation[recommendation *VOTE*]
-** For subproject candidates, this is a link:#subproject-graduation[graduation approval *VOTE*]
-* Final link:#notes-on-hand-over[hand-over]
-* Consider post graduation link:#project-first-steps[tasks]
-
-=== Checking the Status File
-
-The status file records and summarizes incubation-related
-information on the podling. The 
-link:ppmc.html#Incubator_ASF_Board_Reports[PPMC] is
-responsible for keeping this file current. Before you are
-able to graduate, all tasks need to be completed.
-
-The status file is a great way of keeping tabs on how your
-project is doing and what needs to be done to meet the
-graduation criteria. The link:/incubation/Roles_and_Responsibilities.html#Incubator_Project_Management_Committee_IPMC[Incubator PMC]
-will check this
-file when they vote on the graduation of your project.
-Once all tasks are done and the listed criteria met, your
-project may be ready for graduation.
-
-The status file of the JUDDI project is link:http://incubator.apache.org/projects/juddi.html[one example].
-
-== Ensure suitable project name and product names
-
-Please read link:http://www.apache.org/foundation/marks/naming.html[detailed documentation here].
-The "Process for ensuring suitable project and product names" is mandatory for every podling which wants to
-graduate.
-
-== Creating an Apache Release
-[quote,Eric Steven Raymond, http://catb.org/esr/writings/cathedral-bazaar/cathedral-bazaar/ar01s04.html]
-____
-Release Early, Release Often
-____
-
-There are two distinct parts to making releases:
-
-1. "Preparing a release" is something that is done by a release manager. Some documentation
-refers to this as "cutting" a release. Preparing a release means following the project-specific
-instructions for creating the release artifacts and putting them in a repository that is a
-staging area for voting and subsequent publishing the release.
-
-2. "Publishing a release" is done after the podling and then the IPMC approve the release
-that has been prepared, using a formal [VOTE] process. If the vote fails, the release manager
-can prepare an improved release. Publishing means that the release artifacts are moved to the
-official distribution area where they are picked up by the mirror system.
-
-It is an important step during your stay in the incubator to demonstrate the ability
-to prepare and publish an Apache Release. That means graduating podling:
-
-- Knows the licensing requirements of what code is going into your *source release*
-- Knows where to stage the source release
-- Knows how to conduct votes on the releases
-- Knows how to archive old releases
-
-Please read the link:releasemanagement.html[Incubator Release Management Guide] for hints, tips and guidelines
-for making a release that will get approved by the
-link:/incubation/Roles_and_Responsibilities.html#Incubator_Project_Management_Committee_IPMC[IPMC] without problems.
-
-== Creating an Open and Diverse community
-
-A major criterion for graduation is to have developed an
-open and diverse link:http://www.apache.org/foundation/glossary.html#Meritocracy[meritocratic]
-community. Time has demonstrated that these kinds of
-communities are more robust and productive than more
-closed ones.
-
-Apache projects are self-sustaining and self-governing
-communities. Long term success and health requires that
-these communities understand how to:
-
-- recruit users, developers, committers and PMCers
-- take responsible collective action
-- disagree in public on technical matters without destroying personal relationships
-- create an open, positive and inclusive atmosphere on the mailing lists
-
-Graduation tests whether (in the opinion of the link:/incubation/Roles_and_Responsibilities.html#Incubator_Project_Management_Committee_IPMC[IPMC])
-a podling has learned enough and is responsible enough to
-sustain itself as such a community.
-
-Read more on how to successfully build an open and diverse
-community for your podling in the link:community.html[community guide].
-
-As a project grows, it needs to renew itself by accepting
-new committers. A project needs to learn how it can
-recruit new developers and committers into the community.
-Accepting new committers usually increases the diversity
-of the project. So, this process is very beneficial. link:community.html[Community building] requires
-energy which could have been spent on code development but
-this cost is an important investment for the future of the
-project.
-
-The openness of the community is not only measured by the
-number of contributors. Open and respectful discussions on
-the mailing lists are vital. Ways to resolve technical
-conflict without destroying personal relationships must be
-learned. Learning to use mailing lists effectively is very
-important. If this can be achieved, then you have shown to
-be a lively, active and successful community. The future
-looks bright.
-
-The project is considered to have a diverse community when
-it is not highly dependent on any single contributor
-(there are at least 3 legally independent committers and
-there is no single company or entity that is vital to the
-success of the project). Basically this means that when a
-project mostly consists of contributors from one company,
-this is a sign of not being diverse enough. You can
-mitigate this requirement by admitting more external
-contributors to your project that have no tie to the
-single entity.
-
-Growing an open and diverse meritocratic community is not
-something that just happens: it takes work. Read the link:community.html[building a community guide] for
-guidelines, hints and tips on how you can accomplish this
-for your project.
-
-=== Other Issues
-
-The Incubator relies more on people than rules: rather
-than try to create rules to cover every circumstance,
-rules are developed and codified as required. People
-are trusted to evolve process and policy. This guide
-can only document the most common issues and it is
-possible that there are other concerns that may require
-resolution that are not covered.
-
-Podlings who are unsure if they are ready to graduate may want to consider completing the link:http://community.apache.org/apache-way/apache-project-maturity-model.html[Apache Project Maturity Model].  You may find this to be a useful guide when looking at various factors in your podling's community.
-
-== The Graduation Process
-
-=== Graduating to a Top Level Project
-
-Top level projects are created by the
-link:/incubation/Roles_and_Responsibilities.html#board[Board]. The
-link:/incubation/Roles_and_Responsibilities.html#Incubator_Project_Management_Committee_IPMC[Incubator Project Management Committee (IPMC)] can therefore only
-recommend to the Board that the project is ready to
-graduate to a top level project.
-
-Graduation to a top level project requires:
-
-- a charter for your project
-- a positive community graduation *link:http://www.apache.org/foundation/voting.html[VOTE]*
-- a positive IPMC recommendation *link:http://www.apache.org/foundation/voting.html[VOTE]*
-- the acceptance of the link:#tlp-resolution[resolution] by the Board
-
-This process can take a while, since it typically sparks
-some discussion inside the community and possibly in the
-IPMC.
-
-Here's an estimated timeline for the graduation process.
-It should help you understand when you should start
-ramping up your community to get timely graduation and
-make the process smooth.
-
-image:/images/graduation-timeline.png[Graduation timeline]
-
-For each event we scheduled one or two weeks. Even though
-a *link:http://www.apache.org/foundation/voting.html[VOTE]*
-is usually limited to 72 hours, you should prepare
-for discussion and possibly having to cast a revote with a
-revised proposal.
-
-=== Community Graduation Vote
-
-A community needs to be willing to govern itself
-before it can become a top level project. A good way
-to demonstrate this is through a free *link:http://www.apache.org/foundation/voting.html[VOTE]* (by the
-community) on the graduation proposal.
-
-This *VOTE* is not a requirement but is recommended. It
-is unlikely that link:/incubation/Roles_and_Responsibilities.html#Incubator_Project_Management_Committee_IPMC[IPMC]members 
-will vote to approve graduation unless the link:/incubation/Roles_and_Responsibilities.html#Mentor[Mentors]
-and community positively express their readiness for
-graduation. It is wise to notify the 
-link:lists.html#general_at_incubator.apache.org[incubator general list] that the community vote is starting. Please do not Cc the
-vote to the general list as that creates confusion, instead you can either:
-- FWD the [VOTE] e-mail to the general list, or
-- Send a different copy to the general list indicating that a graduation community [VOTE] is in progress 
-
-=== Preparing a Charter
-
-So, in this case a suitable 
-link:/incubation/Roles_and_Responsibilities.html#board[Board] resolution should be
-drawn up by the community advised by the
-link:/incubation/Roles_and_Responsibilities.html#Mentor[Mentors].
-Committers can access the podling template for
-resolutions in the 
-link:https://svn.apache.org/repos/private/committers/board/templates/podling-tlp-resolution.txt[committers svn repository].  Your link:https://whimsy.apache.org/roster/ppmc/[whimsy roster] also includes a feature to draft a resolution.  Also, resolutions are included in the Board minutes, which are posted publicly
-link:http://www.apache.org/foundation/board/calendar.html[here ] . These contain numerous examples.
-
-The original proposal and the status document should
-be consulted when creating this document. Projects
-evolve over time and some deviation from the original
-proposal may well prove acceptable. The 
-link:/incubation/Roles_and_Responsibilities.html#board[Board]
-resolution is the ultimate definition of the scope of
-an Apache project. So, it is important that it
-reflects the vision for the project as it appears on
-the eve of graduation.
-
-A good resolution is neither too narrow nor too broad.
-If the project's scope is too narrow, then its
-activities will be unnecessarily constrained. If a
-project's scope is too broad then it may lack focus
-and suffer from governance issues.
-
-If you read these resolutions you also see that you
-need to appoint a link:http://www.apache.org/foundation/glossary.html#Chair[Chair]
-for your project. It is up to the
-link:ppmc.html[PPMC] to choose one
-person to act as the chair after graduation.
-
-=== The Recommendation Vote
-
-The link:#tlp-resolution[resolution] should be proposed on the general
-link:mailto:general@incubator.apache.org[incubator list] before a *link:http://www.apache.org/foundation/voting.html[VOTE]*
-is started to allow feedback. Once a consensus has been reached, a *VOTE*
-should be started on the same general incubator list by a member of the link:ppmc.html[PPMC] proposing
-that the
-link:/incubation/Roles_and_Responsibilities.html#Incubator_Project_Management_Committee_IPMC[IPMC]
-recommends the resolution to the link:/incubation/Roles_and_Responsibilities.html#board[Board].
-
-=== Submission of the Resolution to the Board
-
-Top level projects are created by a link:#tlp-resolution[resolution] by the
-link:/guides/roles_and_responsibilities.html#the_board[Board].
-Once the link:#tlp-resolution[resolution] has been
-finalized and consensus reached, it should be
-submitted to the Board. For inclusion in the agenda
-for the next meeting, the resolution should be
-submitted at least 72 hours before that meeting. A
-calendar for meetings is link:http://www.apache.org/foundation/board/calendar.html[available].
-
-Business for the link:/guides/roles_and_responsibilities.html#the_board[Board] should be submitted by a post
-to the *board* mailing list. Posting from
-an Apache address is recommended. Mixing public and
-private lists on a post is not recommended.
-
-The *board* list is private.
-The usual link:http://www.apache.org/foundation/how-it-works.html#management[netiquette]
-for Apache private lists should be observed. So, it is
-recommended that only the podling and
-link:/guides/roles_and_responsibilities.html#incubator_project_management_committee_ipmc[IPMC]
-private lists are CC'd (rather than the general incubator
-list). Please treat responses with appropriate
-confidentiality.
-
-The submission should include:
-- A clear subject (for example *Establish Foo TLP*)
-- A brief introduction
-- The name of proposed VP
-- Links to the *VOTE* threads
-- Summary of the *VOTE* results
-- The link:#tlp-resolution[resolution] text
-
-For example:
-[source]
-----
-From: <you _at_ apache dot org>
-To: <board _at_ apache dot org>
-CC: <<project>-private _at_ incubator dot apache dot org>
-Subject: Proposed Resolution: Establish <project> TLP
-
-Dear Apache Board,
-
-<Project> is ready for graduation out of the incubator. So, please
-consider the draft resolution below at your next meeting.
-
-<thank you, best regards, personal note if you wish, etc etc>
-
-<your name>
-
---
-References:
-
-Home: <project home page>
-Vote by project: <link to vote thread on project list>
-Vote by incubator: <link to vote thread on general list>
-
-Resolution draft:
-
-<<resolution goes here, 72 characters wide,
-indent with 4 spaces>>
-
---
-<your e-mail sig, if you have one>
-----
-
-Please try to keep the *board* list traffic low. Do not
-submit reminders or ask whether messages have been
-received on the list. link:http://www.apache.org/foundation/members.html[Apache Members] have access to the link:/incubation/Roles_and_Responsibilities.html#board[Board]
-archives and may
-observe Board meetings. To follow the progress of a
-resolution, please ask a friendly Mentor, Member or
-link:http://www.apache.org/foundation/board/[Director].
-
-=== Press Releases for new TLPs
-
-Once there is clear consensus that the recommendation will happen,
-a member of the PPMC should contact ASF Marketing &amp; Publicity at
-*press(at)apache(dot)org* if your project is interested in a
-formal press release announcing your graduation.  This should be done
-roughly at the same time that the board resolution is sent.
-
-== Graduating to a Subproject
-
-Subprojects are accepted by a Project Management
-Committee. The link:/incubation/Roles_and_Responsibilities.html#Incubator_Project_Management_Committee_IPMC[Incubator Project Management Committee]
-needs to approve the graduation of the podling to a
-subproject.
-
-=== Community Graduation Vote
-
-Becoming a subproject is a voluntary process, and should be accepted by the community becoming a sub-project.  It should be clear to the PPMC and committers for the podling what the make up of the new sub-project should be, e.g. who belongs on the receiving PMC, who will be a committer.  Due to this nature, it is important that the podling votes to become a sub-project.  This vote should happen on a public dev list.
-
-=== Subproject Acceptance Vote
-
-A formal *link:http://www.apache.org/foundation/voting.html[VOTE]*
-by the Project link:http://www.apache.org/foundation/how-it-works.html#structure[PMC]
-to accept the podling as a subproject is a
-prerequisite. Sometimes, projects may feel that the
-podling has grown too big and would be better as a
-top level project. The Chair of the project is the
-right contact.
-
-=== Graduation Approval Vote
-
-Once the accepting TLP have voted to accept the podling and the podling has voted to become a subproject, noticed should be sent to the IPMC via `general AT incubator.a.o` email list indicating that the podling will become a subproject.  If after 72 hours no issues are raised, the podling may be considered a subproject of the accepting TLP.  Likewise, if any IPMC member raises an issue, that should be discussed.  If the issue is addressed, the member raising the issue should indicate they rescind their concerns or otherwise consider them resolved.
-
-=== Final steps
-
-Please read the link:/guides/transferring.html[Guide to Transferring Resources out of the Incubator]
diff --git a/pages/guides/ip_clearance.ad b/pages/guides/ip_clearance.ad
deleted file mode 100644
index 2bc2756..0000000
--- a/pages/guides/ip_clearance.ad
+++ /dev/null
@@ -1,88 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Podling IP Clearance
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-== Podling IP Clearance
-
-=== Background
-
-Podlings need to import existing codebases through the standard IP clearance
-process. This means that all copyright owners need to submit a Software Grant Agreement
-(link:http://www.apache.org/licenses/#grants[SGA])
-or Contributor License Agreement
-(link:http://www.apache.org/licenses/#clas[CLA]). This process may take a while so it is best to
-start as soon as the Incubator accepts the podling.
-
-The IPMC (Incubator Product Management Committee) approves the initial codebase as part of the acceptance motion. So, no vote is required by the
-PPMC. Otherwise, follow the standard IP clearance process for podlings.
-
-=== Establishing Provenance
-
-The podling needs to submit paperwork to Apache that grants a legal license on the code
-to the Apache Software Foundation.
-Generally, if all the material contributors to the code
-are joining the podling as initial contributors, then CLAs (individual or corporate)
-are all you need. The individuals must submit the 'individual' CLA (ICLA).
-If there are employers involved who might claim
-rights in the code, they need to provide corporate CLAs (CCLAs).
-
-If, on the other hand, there are material contributors who are *not*
-joining the podling as initial contributors, or if there
-are additional corporate entities who can claim rights in the code,
-the podling must obtain SGAs from those individuals or corporations.
-
-The foregoing is only a summary. The mentors of a new project
-will need to consult with general@incubator.apache.org or the Apache legal team
-about the circumstances of a specific podling.
-
-It may take some time to track down all contributors. It is not necessary to
-have paperwork on file for all contributions before importing the code.
-It may be necessary to reverse some patches and rewrite areas of code if you cannot find copyright owners, or they are not happy about giving Apache written
-permission to use their code.
-
-No releases are possible until the podling has clearly established the provenance of all the code to be released and the relevant paperwork ahs been filed with Apache. It is
-therefore important to keep the status updated.
-
-The ASF Secretary records receipt of ICLAs, CCLAs, and SGAs in
-the private foundation repository. Reading is restricted to members and officers
-of the foundation. If there is no officer or member available to check whether the secretary has received all relevant documents, ask for help on the
-general list.
-
-=== IPMC Responsibility around IP Clearance
-
-The board has charged the Incubator project with management of IP clearance for Apache.
-Instructions are link:http://incubator.apache.org/ip-clearance/index.html[here].
-
-These instructions also apply to podlings. The Incubator project is responsible for all podlings
-and so is the receiving PMC. So, when a podling requests IP clearance, the
-IPMC wears link:http://www.apache.org/foundation/how-it-works.html#hats[two hats].
-This may be a little confusing at first.
-
-The Incubator PMC must approve the clearance. This indicates that the project is
-happy to receive the code donated. When a new podling is created, the IPMC approves the clearance of existing codebases identified in the proposal. Otherwise, the
-IPMC delegates this decision to the PPMC.
-
-As usual, three binding votes are required. Mentors need to be involved in
-IP clearance for podlings. If too few binding VOTEs are posted on the list,
-the VOTE will need to be posted to the general list for ratification.
-
-The second hat is technical IP clearance. Here, the IPMC needs to check that the
-paperwork is in order. Once the IPMC approves the acceptance vote, an officer
-or member need to complete the process. For a podling, this will typically
-involve a Mentor.
diff --git a/pages/guides/lists.ad b/pages/guides/lists.ad
deleted file mode 100644
index 7e32945..0000000
--- a/pages/guides/lists.ad
+++ /dev/null
@@ -1,59 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Incubator Mailing Lists Guide
-Apache Incubator PMC
-2002-10-16
-:jbake-type: pmcGuide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-== Incubator Email Lists Guide
-
-=== Archive Policy
-Please read the link:http://www.apache.org/foundation/public-archives.html[Apache Public Forum Archive Policy] before sending email to any list.
-
-=== Incubator-wide Email Lists
-
-==== general at incubator.apache.org
-
-This email list is where general and public discussions related to the Incubator takes place.
-- link:mailto:general-subscribe@incubator.apache.org[Subscribe]
-- link:mailto:general-unsubscribe@incubator.apache.org[Unsubscribe]
-- link:http://mail-archives.apache.org/mod_mbox/incubator-general/[Archives]
-- link:https://lists.apache.org/list.html?general@incubator.apache.org[Searchable Archives]
-
-You can also use link:https://whimsy.apache.org/committers/subscribe[Whimsy] to manage your subscriptions if you are a committer at Apache.
-
-==== cvs at incubator.apache.org
-
-This email list is the Incubator's "commits" list, named "cvs" for historical reasons. Changes to the link:https://svn.apache.org/viewvc/incubator/public/trunk[Incubator codebase], the link:https://github.com/justinmclean/incubator[Incubator website]
-and the link:https://cwiki.apache.org/confluence/display/INCUBATOR[Incubator wiki] trigger automatic notifications to
-this list. Replies go to the link:general+at+incubator.apache.org[general list].
-
-- link:mailto:cvs-subscribe@incubator.apache.org[Subscribe]
-- link:mailto:cvs-unsubscribe@incubator.apache.org[Unsubscribe]
-- link:http://mail-archives.apache.org/mod_mbox/incubator-cvs/[Archives]
-- link:https://lists.apache.org/list.html?cvs@incubator.apache.org[Searchable Archives]
-
-=== podlings at incubator.apache.org
-
-This email alias is for the `dev` lists for all active podlings. We use it for incubator-wide announcements so podling participants don't need to subscribe to `general` to get all information. Send email to `podlings@incubator` as a BCC, sent to general, to avoid spamming all of the podlings.
-
-=== Podling Email Lists
-
-Each podling under incubation has its own email lists, which should be easily discovered via the podling website or via the link:/projects/index.html[podling status pages]. These are the right place to get involved with a particular project or to ask project-specific questions. They form the public record of the development of the project. All lists are link:http://mail-archives.apache.org[archived].
-
-=== Foundation-wide Email Lists
-
-Many link:http://www.apache.org/foundation/mailinglists.html[ASF-wide lists] will be of interest to Incubator participants. The link:http://www.apache.org/foundation/mailinglists.html#foundation-legal[legal discussion], link:http://www.apache.org/foundation/mailinglists.html#foundation-infrastructure[infrastructure], and link:http://www.apache.org/foundation/mailinglists.html#foundation-community[community] lists are especially relevant for PPMC members and release managers trying to develop their knowledge and stay current.
diff --git a/pages/guides/mentor.ad b/pages/guides/mentor.ad
deleted file mode 100644
index 8f8a14c..0000000
--- a/pages/guides/mentor.ad
+++ /dev/null
@@ -1,258 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Mentors' Guide
-Apache Incubator PMC
-2002-10-16
-:jbake-type: pmcGuide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-The Mentors' Guide is the go-to place for information about getting a podling up and running from an Infrastructure point of view.
-
-This document is for any Incubating Project member, but
-especially Mentors, who have to ensure that some things get done.
-For a general description of the role of a mentor on an incubating
-project see the
-link:/guides/roles_and_responsibilities.html#Mentor[Roles and Responsibilities]document.
-
-This guide describes established practices.
-It is informational, not normative. Policy is in the
-link:/incubation/Incubation_Policy.html[Incubation Policy] document.
-
-== Overview
-
-After the Incubator PMC (IPMC) has accepted a podling, one of the mentors
-link:/incubation/Incubation_Policy.html#Setting+Up+a+New+Podling[sets it up]: adds the podling metadata, creates the initial podling status page, and
-either creates
-other resources (such as email lists, Git or Subversion code repository, bug tracker, and wiki) or requests that the others involved with the IPMC or the Infrastructure team create them.
-
-== Add to the Incubation Summary file
-
-Add the podling to the podling summary file in
-the "incubator" SVN at *content/podlings.xml*
-(copy and modify the entry for another podling that has status="current"). See the link:website.html[instructions].
-
-Do this step as soon as possible after Acceptance. Other setup procedures use
-this metadata.
-
-Add a *'reporting'* tag (after *'description'*) with the attribute *'monthly="true"'*
-and the appropriate "group" attribute, based on the month in which the podling
-entered incubation (1 for January, April, July, October, 2 for February, May,
-August, November or 3 for March, June, September, December). The text content
-of the 'reporting' tag must contain the initial list of reporting months,
-starting with the month after the podling entered incubation.  Below is an example of the final XML snippet:
-
-[literal]
-----
-    <podling name="PodlingName" status="current" resource="podlingname" sponsor="Sponsor" startdate="YYYY-MM-DD">
-        <description>A description of the podling, for the status page and reports</description>
-        <reporting group="1|2|3" monthly="true">First,Second,Third</reporting>
-        <champion availid="userid">Champion Name</champion>
-        <mentors>
-            <mentor username="userid">Mentor One</mentor>
-            <mentor username="userid">Mentor Two</mentor>
-            <mentor username="userid">Mentor Three</mentor>
-        </mentors>
-    </podling>
-----
-
-An example reporting block:
-[literal]
-----
-<reporting group="3" monthly="true">June, July, August</reporting>
-----
-Once the first three reports are complete, the monthly attribute should be removed
-and the list of months removed as well.
-
-The first report might be
-very short. However it is better that the Incubator PMC can help to
-guide through the early setup stages.
-For more details see the
-link:ppmc.html#Incubator+ASF+Board+Reports[PPMC Guide].
-
-== Initialize the Podling Status Page
-
-A mentor needs to
-link:website.html#Edit+your+project+status+page[create the web page] to track the project's status.
-A mentor will also need to update it until
-link:ppmc.html#Project+Status+Updates[others in the project's PPMC can update it].
-
-The status
-page is the incubator's record of the progress the project makes.
-The mentor or the PPMC MUST keep it up to date during incubation.
-Some of the information for the page is available from the podling proposal.
-As the startup process continues and the project creates resources the PPMC SHOULD update the web page.
-
-The template contains lists of actions which you be need
-to start up a podling. Delete all actions which do not apply to the podling you are initializing.
-
-The status page is a useful aid to workflow. Volunteers
-can use it to sign up to various tasks and monitor their
-progress. Once the mailing lists are set up and prospective
-committers subscribe, use the dev@ list for task discussion.
-
-== Resources
-
-You need to request resources in a particular order, based on paperwork processed. Do not request source repositories before SGAs are filed, for instance, if the source code is not already Apache licensed or Category A licensed.
-
-The proposal should include a list of required resources. All resources require active set up. The Infra team creates some after an appropriate
-request; IPMC members (typically mentors) can set others up.
-
-Infra has a guide, link:https://infra.apache.org/infra-incubator.html[Infra and the Incubator], to help you understand the flow of resource requests, and to guide you in requesting resources.  
-
-The first resources you need to create are LDAP and DNS.  Request them from Infra via link:https://issues.apache.org/jira/browse/INFRA[Apache Infra Jira -> Create Task].
-
-Once these items are available, create the mailing lists. Other resources typically post information to these lists.
-
-=== Request Email Lists
-
-Apache email lists require volunteer moderators. New moderators can be
-link:http://www.apache.org/dev/committers.html#mailing-list-moderators[added later]
-but at least one volunteer is required before you can set up the email lists.
-Moderation is a reasonably
-link:http://www.apache.org/dev/committers.html#mail-moderate[easy task]
-though moderators may want to set up
-link:http://spamassassin.apache.org/[spam filtering].
-We recommend that each podling have at least three moderators to spread the load.
-
-The proposal should contain the rest of the information that you need to request the email lists. Incubator is the responsible top level project.
-So the domain *MUST* be *incubator.apache.org*.
-For example:
-
-- dev@${podling}.incubator.apache.org
-- commits@${podling}.incubator.apache.org
-- private@${podling}.incubator.apache.org
-
-For initial community building it is usually appropriate to only have a "dev" list, to keep the discussions focussed. Later add a "user" list when community size and activity requires it.  A podling that is already established and using an existing user interaction channel may want to keep those resources around until they feel they have transitioned to the ASF successfully.  Discuss this on your existing development lists.
-
-[NOTE]
-====
-If you are using SVN,
-commits under *http://svn.apache.org/repos/asf/incubator/_${podling}_* will be emailed to *commits@${podling}.incubator.apache.org*.
-Any deviation will require the IPMC to create a special configuration in the *asf-mailer.conf* file.
-====
-
-Email list creation is a task for the link:#who-infra[infrastructure team]. Infra offers a tool, the link:https://selfserve.apache.org/mail.html[Incubator Email List Request Form^], that simplifies the creation of email lists.  A notification will be sent to private@incubator when the lists have been created.
-
-Remember to update the project status file with email list details. Prospective committers
-and mentors will need to subscribe. Email them once the status file has been updated. Inform
-any existing mailing lists or forums previously used by the project.
-
-Once the *commits* list is active, the project MUST review
-the */incubator/${podling}* tree, since any commits made prior
-to the list's creation will have generated no email trail.
-
-==== Mail Archives
-
-Archives at link:http://mail-archives.apache.org/mod_mbox/[http://mail-archives.apache.org/mod_mbox/] for the public
-email lists will be set up as part of the mailing list creation process. Mentors do not need to do anything. The archives will be link:http://mail-archives.apache.org/mod_mbox/[visible]
-as soon as posts have been made (and moderated) to these lists.
-
-You can also leverage link:https://lists.apache.org[lists.apache.org^] for
-email list archives.  There is a login link in the top right corner, which allows you to respond to
-threads from within the web application.
-
-Many project email lists are archived externally (for example, at
-link:http://www.mail-archive.com/[The Mail Archive] and
-link:http://marc.info/?q=about[MARC]).
-Independent archives help
-increase project visibility and preserve an independent historic record.
-We do not create these subscriptions automatically. If the project wants one, subscribe manually.
-
-You must also create subscriptions to news-to-mailing-list bridges (for example, link:http://www.nabble.com[Nabble])
-manually. Subscribing helps accessibility and visibility, but Nabble news
-users may not be aware that they are posting to an email list.
-
-==== Email List Administration
-
-Apache uses link:http://www.ezmlm.org/[ezmlm]. See the
-link:http://www.ezmlm.org/man/ezmlmman.html[manual] and
-committer link:https://infra.apache.org/committers.html#mail[mail FAQ]
-for more details.
-
-==== Email List Transition
-
-Independent email lists and groups are perfectly acceptable but development-related discussions and decisions should
-happen on the official email lists at Apache. If a project has existing email lists,
-forums or groups the community needs to consider their future and plan for the transition
-to the official Apache email lists.
-
-It may be useful to move development first to the official lists, followed gradually
-by the user resources.
-
-Note that subscribers of external email lists will not be automatically subscribed
-to the new Incubator project email lists. Instead, post a note to the
-old external email list asking participants to subscribe to the new list. If possible, add
-a footer to the old email list with some instructions.
-
-=== Self Service Requests
-
-You can request most of the resources you will need via link:https://selfserve.apache.org/[Self Service]. This includes seeting up Git repositories, email lists, a project presence on Jira and project space on the Confluence Wiki.  If you do not have access to Self Serve, use link:https://issues.apache.org/jira/browse/INFRA[JIRA] instead.
-
-==== Jira Issue Tracking
-
-To request access to Jira, visit https://selfserve.apache.org/jira.html.
-
-==== Other Issue Trackers
-
-Request an issue tracker on the link:https://issues.apache.org/jira/browse/INFRA[infra jira].
-
-Remember to post an email announcing that the issue tracker is available.
-
-=== Git Migrations
-
-To request a Git migration, file a link:https://issues.apache.org/jira/browse/INFRA[New Git Repository] infra ticket, requesting to migrate from an existing organization to the Apache organization.
-
-=== Gitbox Requests
-
-To request Gitbox repositories for a new podling, first file a link:https://issues.apache.org/jira/browse/INFRA[GitBox Integration] infra ticket.  Once your podling has been added, you can use link:https://gitbox.apache.org/ to manage your Gitbox repositories and user information.
-
-== Podling Bootstrap
-
-Following podling creation, you need to bootstrap it. Here are some of the tasks:
-
-* Ensure link:#mentors-ipmc[Mentors are on the IPMC]
-* Add the podling to the link:#Sending+in+an+Incubation+Report[reporting schedule]
-* link:#Initialize+Podling+Status+Page[Initialize the project status page]
-* Start link:#orientation[orientation] for link:#who-committers[Prospective committers]
-* Start *CLA* and *CCLA* submissions link:#who-committers[Prospective committers]
-* Request Required Resources  
-** link:#request-mailing-lists[Email Lists]
-*** Consider and plan link:#transition-mailing-lists[transition to official email lists]
-*** Ensure all PPMC members sign up to the private email list
-** link:#request-issue-tracking[Issue Tracking]
-*** Consider and plan link:#issue-tracking-transition[issue tracking transition]
-* link:#create-website[Create a website] with a page for link:#who-committers[prospective committers]
-** Consider and plan link:#web-site-transition[web site transition]
-* Start link:#initial-ip-clearance[IP clearance]
-* Start *SGA* submission
-** link:#Set+Up+Repository[Transfer repositories]
-
-== Mentors MUST be on the IPMC
-
-Mentors link:/policy/incubation.html#Mentor[MUST] be on the IPMC.  Verify this prior to beginning incubation.
-Any prospective Mentors who are not yet on the IPMC should ask to be added (by election).
-Email the application to *private@incubator.apache.org*.
-
-[NOTE]
-====
-This process may take a few days.
-====
-
-== CLA and CCLA Submission
-
-Prospective committers need to submit a Contributor License Agreement
-(link:http://www.apache.org/licenses/#clas[CLA]).
-This process can take a while, so we recommend that committers start to submit
-these as soon as the podling is accepted.
diff --git a/pages/guides/names.ad b/pages/guides/names.ad
deleted file mode 100644
index 6feb0c9..0000000
--- a/pages/guides/names.ad
+++ /dev/null
@@ -1,269 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Podling Name Search Guide
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-== Introduction
-
-This guide is *not* _legal advice_ or _legal opinion_: 
-*do not* use it as a substitute. 
-Its aims are education and information *only*. 
-
-This process filters out unsuitable names for Apache podlings early, 
-reducing the legal resources required and
-limiting the potential disruption to a community of a forced name change 
-later. A smooth path, but not the only one. If there are reasons
-why this road isn't right for your podling, 
-consult link:http://mail-archives.apache.org/mod_mbox/incubator-general/[incubator general].
-
-=== Meet the Apache Branding Team
-
-Names fall within link:http://www.apache.org/foundation/marks/#whoweare[the responsibilities] of the 
-link:http://www.apache.org/foundation/[V.P., Brand Management] (and 
-link:http://www.apache.org/foundation/marks/#whoweare[team]). Please start by reading:
-
-- the link:http://www.apache.org/foundation/marks/[Apache Trademark Policy] (which introduces trademarks and outlines our policy)
-- the link:http://www.apache.org/foundation/marks/faq/[Apache Trademark FAQs] (which answers questions asked by downstream consumers)
-- the link:http://www.apache.org/foundation/marks/pmcs.html[Apache Project Branding Requirements] (which guides PMCs)
-- the link:http://www.apache.org/foundation/marks/naming.html[Suitable Name Search] (which guides podlings and PMCs)
-
-For podlings in the Incubator, the Brand and Incubator communities manage naming issues cooperatively.
-Rules for podlings include all branding requirements for PMCs, plus a few extras. 
-
-=== Trademarks
-
-Trademark law is a complex subject. 
-Distinctive differences from other intellectual property laws (such as patent or copyright) mean that 
-intuition or knowledge you have gained from other areas may not be applicable to trademark issues. 
-The link:http://www.apache.org/foundation[Apache Software Foundation] is 
-a link:http://www.apache.org/foundation/faq.html#is-ASF-a-corporation[US corporation]. 
-Developing some understanding of the basic principles of US trademark law is therefore important.
-
-Please read: 
-
-- link:http://www.apache.org/foundation/marks/#principles[Description of key trademark principles] for Apache projects
-- link:http://www.apache.org/foundation/marks/naming.html#regsearch[Description of how to search for existing trademarks]
-
-==== Trademarks and the Apache License
-
-Like link:http://www.ifosslr.org/ifosslr/article/view/11/37[many] 
-link:http://www.opensource.org[open source] licenses, the
-link:http://www.apache.org/licenses/LICENSE-2.0.html[Apache License, Version 2.0]
-focuses on granting copyright and patent rights to the public. 
-The _trademark_ section permits only very limited trademark rights.
-
-[quote]
-""
-*6. Trademarks.*
-This License does not grant permission to use the trade names, trademarks, 
-service marks, or product names of the Licensor, except as required for 
-reasonable and customary use in describing the origin of the Work and 
-reproducing the content of the NOTICE file."
-""
-- link:http://www.apache.org/licenses/LICENSE-2.0.html#trademarks[Apache License, Version 2.0]
-
-All Apache projects share the Apache License. The license issues standard *copy* 
-and *patent* rights to 
-downstream consumers. *Trademark* rights for Apache products are issued and managed independently, 
-beyond the Apache License. This allows Apache communities to use trademark law to protect their reputation and that of the 
-link:http://www.apache.org/foundation/[Foundation], within the broader
-framework provided by the Brand team.
-
-=== What Makes a Name Good
-Good names for commercial products or _UNIX_ utilities have tended to work less well here at Apache.
-Many successful Apache project names are memorable, unusual and a little 
-link:http://www.sdtimes.com/TOP_FIVE_HEAD_SCRATCHINGEST_NAMES_FOR_APACHE_PROJECTS/By_Victoria_Reitano/About_APACHE_and_HADOOP_and_HARMONY_and_MYSQL_and_OODT_and_YAY/35959[whimsical].
-These qualities also happen to be useful when it comes to securing trademark protection.
-Have fun. Be creative.
-
-=== Podling-Suitable Name Search
-
-The initial link:http://incubator.apache.org/guides/proposal.html[podling proposal] 
-establishes a working name for the new podling.
-Often some discussion and filtering of suitable names happens during the election
-process, but this proposed name is *not* final, only _provisional_. 
-The community may choose to change it. Or the community may discover that the name is unsuitable:
-in which case the community must find a suitable new name. 
-
-A podling needs to discover whether a name is suitable.
-The Incubator community calls this process the _suitable name search_. 
-This avoids any potential confusion with phrases like
-_trademark search_, which has technical meanings in the trademark community. 
-Please be careful with language. In particular:
-
-- Avoid using loaded technical or legal terms
-- Use plain, simple English to describe what you did and what you found
-- Avoid speculation
-- Don't offer _advice_ or _opinions_
-
-The podling must complete a suitable name search successfully before it can graduate to Top Level Project (TLP) status.
-This isn't the only way to do such a search, just a smooth path.
-
-Names are an essential part of building a brand and community. 
-Switching names wastes the efforts put into establishing the original name.
-Therefore complete this task as soon as possible.
-
-== Conducting a Suitable Name Search
-
-The aim: to find a name that is acceptable to the community and is not unsuitable.
-
-See the instructions at link:https://www.apache.org/foundation/marks/naming.html#namesearch[Suitable Name Search]
-about how to perform the name search and interact with the VP, Brand and their committee. Approval of the podling name comes from them.
-
-The following are notes about the suitable name search, based on the experience of many podlings.
-
-A suitable name search has public and private elements. 
-The link:https://issues.apache.org/jira/browse/PODLINGNAMESEARCH[tracker] provides the public record.
-Incubator best practice evolves over time, and documentation lags.
-The public records of past searches are a primary source of guidance. 
-Review now the records of previous searches, beginning with the most recent and working back.
-
-The public record consists of _actions_ (how you searched) and _facts_ (what your search found). In particular,
-in *all* public forums (mailing lists, issue trackers and so on):
-
--*Do not* speculate.
--*Do not* use loaded technical legal language. 
--*Do not* offer 
- -opinions
- -advice
- -interpretation
- -analysis
-
-Use the public lists in the Incubator to ask questions about _how_ to conduct the search. 
-Once you have collected and collated sufficient information, ask the trademark team on the private lists, copying in the PPMC, to help interpret and analyse the results. Finally, discuss the results of your investigation on the private PPMC list. 
-Record whether a candidate name is suitable or unsuitable (or somewhere in between) when you close the issue.
-
-=== Eliminate Unsuitable Names
-To be suitable, a name needs to be
-
-- judged _appropriate_ by the wider community
-- _unique enough_ to avoid confusion
-
-Facts and activities performed are link:https://issues.apache.org/jira/browse/PODLINGNAMESEARCH[recorded] for the public.
-Interpretation and analysis of these facts happens on private mailing lists; the PPMC private@ in the first instance. 
-Record whether the name proved suitable or unsuitable into the public record, but take care to use our categories (_ethically unsuitable_ or 
-_not unique enough_) and to avoid loaded legal terms.
-
-
-==== The Main Sequence
-
-Every podling is unique, but, using a link:http://outreach.atnf.csiro.au/education/senior/astrophysics/stellarevolution_mainsequence.html[cosmic]
-metaphor, most fit into a main sequence. For podlings on the main sequence,
-most of the bugs should have been squashed and rough edges documented away, so expect a smooth journey. 
-Away from the main sequence, you may need to grow process, documentation is likely be sparse
-and progress less smooth. 
-
-We describe the main sequence here. This well-known path is
-appropriate for almost all podlings.
-If there are good reasons to think that your podling is a special case, discuss this with the
-link:http://mail-archives.apache.org/mod_mbox/incubator-general/[Incubator community]
-and reach consensus on the way forward.
-
-==== Appropriateness
-
-Some names are not appropriate for open source projects. 
-Acceptability under 
-link:http://www.law.cornell.edu/uscode/15/1052.shtml[US Trademark Law] is a good base line. 
-This excludes marks that
-
-[quote]
-____
-Consists of or comprises immoral, deceptive, or scandalous matter;
-or matter which may disparage or falsely suggest a connection with persons, 
-living or dead, institutions, beliefs, or national symbols, or bring them into contempt, or disrepute; 
-____
--- link:http://www.law.cornell.edu/uscode/15/1052.shtml[US Code 15:1052]
-
-Proposals with inappropriate names are unlikely to pass the initial review, but spend a few moments considering 
-whether you have missed anything. Check for alternative meanings, perhaps in foreign languages or among distinct communities (such as people on the autism spectrum).
-
-==== Unique-Enough Names
-
-The name needs be unique enough to avoid confusion with software that already exists. 
-For the community to be able to protect its reputation for quality and openness,
-its name needs to unique enough to have potential as a trademark.
-
-But this isn't only about being able to register trademark protection.
-Ethics also plays a role. Even when a name may offer enough protection, existing adoption 
-of the name by an active community may mean that you need to eliminate the choice on ethical grounds. 
-There is some judgment involved in this decision. So, involve the wider Incubator community if a name, or something like it, is already in
-use elsewhere.
-
-==== How to Collect Evidence of Uniqueness
-
-To decide whether a potential name is _unique enough_ to be suitable:
-
-- Collect evidence about current name usage.
-- link:https://issues.apache.org/jira/browse/PODLINGNAMESEARCH[Record] the facts.
-- Analyse and interpret these facts in private, with help from the brand team.
-- Reach consensus about whether the name is unique enough.
-- link:https://issues.apache.org/jira/browse/PODLINGNAMESEARCH[Record] whether the name is suitable.
-- If the candidate name is unsuitable, the community should pick a more unique name and repeat this process.
-
-==== Evidence of Open Source Adoption
-
-Existing adoption in another active open source community may give ethical 
-reasons for eliminating a name. This is an example of a condition with a fractal 
-boundary. You do not need to eliminate as unsuitable every name which has been used before,
-but this is an issue which you need to discuss more widely so you can reach
-a consensus with the broad 
-link:http://mail-archives.apache.org/mod_mbox/incubator-general/[Incubator community]. 
-
-Look for evidence of existing adoption amongst open source communities by searching well-known
-foundries (for example link:http://www.github.com[GitHub] and 
-link:http://www.sourceforge.net[Sourceforge]) 
-and the web (use several search engines, for example link:http://www.bing.com[Bing],
-link:http://www.google.com[Google] and link:http://www.yahoo.com[Yahoo]).
-Review recent link:https://issues.apache.org/jira/browse/PODLINGNAMESEARCH[records]
-for ideas about where to search.
-link:https://issues.apache.org/jira/browse/PODLINGNAMESEARCH[Record] each search and describe the results.  
-
-If the community has used the name before it arrived at Apache, that's fine; but note that in the 
-link:https://issues.apache.org/jira/browse/PODLINGNAMESEARCH[record].
-
-=== Evidence of Registration
-
-A number of online resources may help you discover evidence of 
-competing registered trademarks.
-Not every trademark is registered. These resources do not list every registered trademark.
-Even if you find evidence of existing registrations, 
-this does not necessary eliminate the proposed name. Just 
-link:https://issues.apache.org/jira/browse/PODLINGNAMESEARCH[record] the facts.
-Leave analysis and interpretation to private lists. 
-When a search returns a large number of hits, focus on live registrations related to software.
- 
-The foremost online resource is TESS, run by the US Patent and Trademarks Office (USPTO). Before using
-TESS, browse the documentation links from the 
-link:http://www.uspto.gov/trademarks/index.jsp[USPTO trademark home].
-
-Other resources which allow cheap searches of their databases exist, but are often
-ephemeral. Review the link:https://issues.apache.org/jira/browse/PODLINGNAMESEARCH[records]
-for the state of this art.
-
-==== Evidence of Use on the World Wide Web
-
-Registration of trademark is not required. An organization may also obtain rights by use of a mark in commerce.
-
-Use a variety of web search engines (for example, link:http://www.bing.com[bing], link:http://www.google.com[google]
-and link:http://search.yahoo.com[yahoo]) to survey use of your proposed name on the world wide web.
-
-Search for:
-
-- The name itself (e.g., `Cassandra`).  The results returned by a search for the name itself may provide evidence of well-known usages of the term.
-- The name, plus `software`. The results returned by searching for `Cassandra software` may provide evidence of existing use in trade.
-- The name, plus key functionality the software provides: e.g., `Cassandra "big data"`.
-- The name, plus `open source`: e.g., `Cassandra open source`.
diff --git a/pages/guides/participation.ad b/pages/guides/participation.ad
deleted file mode 100644
index 1177a7b..0000000
--- a/pages/guides/participation.ad
+++ /dev/null
@@ -1,76 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Guide to Participation
-Apache Incubator PMC
-2002-10-16
-:jbake-type: pmcGuide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-This document helps those who are new to the Incubator learn its ways and netiquette.
-
-== General Netiquette
-
-The usual advice applies. If you are not familiar with the way email lists work at Apache, read link:https://apache.org/foundation/mailinglists.html[this].
-
-Please ensure that you have configured your email client correctly. In particular, post only plain-text emails without attachments to these lists. Apache spam filters may reject HTML emails.
-
-The Incubator is a public meeting place with a diverse and ever-changing community. Creating social bonds and establishing a reputation are essential. Please be polite, courteous and diplomatic.
-
-When in doubt, ask for guidance on link:lists.html#general+at+incubator.apache.org[general.AT.incubator.apache.org].
-
-== Ways to Participate
-=== On the General Email List
-
-The *general.AT.incubator.apache.org* email list is public, with an open subscription. We encourage all Incubator participants to subscribe, read and post their opinions in the usual way.
-
-Anyone can, by their words, influence the decision-making process by being involved in discussions, and may vote on link:http://www.apache.org/foundation/voting.html[VOTE threads]. However (as is usual) only the votes of those on the link:/incubation/Roles_and_Responsibilities.html#Incubator+Project+Management+Committee+%28PMC%29[Incubator PMC] are binding.
-
-=== As a User
-
-A link:http://www.apache.org/foundation/how-it-works.html#users[user] is anyone who uses our software. Most Apache projects have active user communities that are willing to provide help. This may not be always the case with incubator podlings.
-
-To gain the maximum benefit from any immature project (as many podlings are), adopt an active attitude. Read link:https://www.apache.org/foundation/getinvolved.html#contribute-back-to-the-community[On Contributing] and link:https://blogs.apache.org/foundation/entry/the-apache-way-to-sustainable[Understanding Open Source]. Become a link:#developer[developer] (in the Apache meaning of the term).
-
-=== As a Developer
-
-At Apache, a link:http://www.apache.org/foundation/how-it-works.html#developers[developer] (or contributor) is anyone who actively helps develop our software. These people include more than just coders and documenters. For example, anyone who joins in discussions on the email lists or answers questions from users is also a contributor.
-
-Apache is a link:http://www.apache.org/foundation/how-it-works.html#decision-making[_DO_-ocracy]. The first step along the road leading to link:#committer[committership] is to become a developer. For more information, start with link:http://www.apache.org/foundation/how-it-works.html[How Apache Works] and the link:http://www.apache.org/dev/[developer documentation].
-
-=== As a Committer
-
-A link:/incubation/Roles_and_Responsibilities.html#Committers[committer] is anyone with write access to the source repository. Election of committers in the Incubator works a little differently from the process that is usual elsewhere at Apache.
-
-Once a podling has been bootstrapped, proposing and adding link:#developer[developers] as committers happens in the link:ppmc.html#Voting+in+a+new+committer[usual way].
-
-When a proposal is just a link:/incubation/Roles_and_Responsibilities.html#Candidate[candidate], there are two possible approaches (for those interested in being a committer).
-
-The proposal typically link:proposal.html#template-initial-committers[contains] a list of initial committers. When a podling is bootstrapped, the mentors use this list to set up initial accounts. Thus one way to become a committer is appear on a podling proposal as an initial committer.
-
-The right way to express interest is by a post to the list with a brief introduction. Adding your name as an initial committer is impolite.
-
-A podling needs to learn how to recruit committers from among its developers. So another way is to show up on the list and start helping with development. This will help the podling more than adding your name to the list of initial committers.
-
-=== As a Mentor
-
-Anyone with knowledge of open source or Apache can participate as an informal mentor for a podling. Development is open, and we encourage anyone with interest to subscribe and participate.
-
-To act as a formal link:/incubation/Roles_and_Responsibilities.html#Mentor[Mentor] is link:/incubation/Incubation_Policy#Mentor[limited] to IPMC members and ASF members. The best way for an eligible individual to become a Mentor is to post a note introducing themselves and volunteering their services to *general.AT.incubator.apache.org* during the development of the link:proposal.html[proposal].
-
-=== On the Incubator PMC
-
-We encourage Apache Members to join the link:/incubation/Roles_and_Responsibilities.html#Incubator+Project+Management+Committee+%28PMC%29[Incubator PMC]. Post a note to the Incubator PMC private list.
-
-The IPMC can elect those who aren't members in the usual Apache way. These elections take place on the IPMC private list.
diff --git a/pages/guides/podling_sourcecontrol.ad b/pages/guides/podling_sourcecontrol.ad
deleted file mode 100644
index 08edd05..0000000
--- a/pages/guides/podling_sourcecontrol.ad
+++ /dev/null
@@ -1,96 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Podling Source Control
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-== Set up a Podling Source Repository
-
-The most important responsibility for mentors is to set up the
-podling source repository. Podlings can choose between Subversion and
-Git for source control.  For Git, podlings may use repositories hosted at Apache, or within GitHub in the Apache organization.
-
-=== Set up a Git Repository
-
-Request a new git repository via link:https://selfserve.apache.org/[selfserve.apache.org].
-This service will initialize a new repository, set up github mirrors and enable integrations for that repository.
-
-Historically, the Foundation's policy
-is to grant access to git repositories broadly to the incubator group,
-not narrowly podling-by-podling. So, once the repository
-exists, incubator group members gain access without further work. Once
-the podling graduates, a dedicated ldap group will be created to manage
-access and only those members will have access.
-
-=== Set up an SVN Repository
-
-If the podling chooses SVN, you must create the
-repository and give read/write access to the repository
-to all the committers for the podling. This involves requesting
-new committer accounts and granting access to mentors and existing
-Apache committers.
-
-Setting up a podling subversion repository has two steps: Creating the SVN space
-and configuring the authorization (in both SVN and Git).
-
-Create the workspace in SVN. This requires commit access to the
-incubator SVN repository. Each podling has its own subdirectory
-of the incubator SVN repository. To create the podling subdirectory,
-the mentor executes the SVN command to create a remote directory: `svn mkdir https://svn.apache.org/repos/asf/incubator/{podling}`.
-
-Raise an INFRA Jira ticket to get the SVN auth file updated.
-
-This is a convenient time to add link:#Authorize+Committers[authorization] for committers
-who have accounts.
-
-link:#who-auth-karma[Authorization] karma is restricted. If no Mentor
-has this karma, post an email to IPMC private list requesting it.
-
-== Authorize Committers
-
-The process to add committers to the podling depends on whether
-the new committer is already an Apache committer and whether
-the new committer is in the list of original committers:
-
-- The committer is in the list of original committers in the
-podling proposal to the incubator and is not already an Apache
-committer:
-** Ask developers to send their ICLAs to `secretary@apache.org` according to
-link:http://apache.org/licenses/#submitting[standard procedure].
-Note that you must sign ICLA forms, either by hand or by digital signature.
-** Developers should choose an Apache ID that is not already listed
-link:http://people.apache.org/committer-index.html[here].
-** Developers should enter their preferred Apache ID on the ICLA
-and enter the podling name in the "notify" field of the ICLA.
-- If the committer is in the list of original committers in the
-podling proposal to the incubator and is already an Apache committer, only
-link:#who-auth-karma[incubator authorization] is required.
-- The committer was voted by the PPMC and approved by the incubator PMC:
-
-Perform one of the above procedures depending on whether the
-committer is already an Apache committer on another project.
-
-== Incubator Access Authorization
-
-Special karma is required to authorize incubator access for committers.
-This karma is limited to:
-
-- IPMC Members
-- Secretary
-- Infrastructure
-
-IPMC Members should use link:https://whimsy.apache.org/roster/committee/incubator[Whimsy's Roster Tool] to add existing commiters.
diff --git a/pages/guides/ppmc.ad b/pages/guides/ppmc.ad
deleted file mode 100644
index 043e924..0000000
--- a/pages/guides/ppmc.ad
+++ /dev/null
@@ -1,134 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Podling Project Management Committee
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-== Podling Project Management Committee (PPMC)
-Each Podling Project Management Committee (PPMC) helps its Podling learn how to govern itself. It works like a PMC but reports to the Incubator PMC instead of to the ASF Board.
-Initially, it is composed of the Podling's mentors and the initial committers. The PPMC is directly responsible for the oversight of the podling, and it also decides who to add as a PPMC member.
-
-For general information about PMCs, see the link:http://www.apache.org/dev/pmc.html[PMC FAQ].
-
-== Private Email List
-
-A private email list named private@*project* lets the PPMC discuss confidential topics. *Most communication should be on the Podling's dev list!*
-The private list is only for confidential discussions that should not be made public, such as the suitability of a particular individual to become a committer or a member of the PPMC. See the ASF *How it Works* section entitled link:http://www.apache.org/foundation/how-it-works.html#confidential[Balancing confidentiality and public discussion].
-
-The mentors should verify that all PPMC members are subscribed to the private list. The link:https://whimsy.apache.org/roster/ppmc/[Whimsy Podling Roster] shows who is subscribed, and any subscriber can send a "ping - please reply" message to check who is actually "listening" to the PPMC list.
-
-*Don't mix private and public lists in posts!*
-
-- Don't post to both the dev and private lists. Each member of the PPMC should be on the dev list, so posting to dev is sufficient.
-- Likewise, don't post to both the Incubator general and Incubator private lists. Each member of the Incubator PMC is on the Incubator general list, so posting to the general list is sufficient.
-
-== Podling Status Reports
-On a monthly basis, the IPMC collects reports from each incubating project and sends them to the ASF Board. Watch the Incubator general email list for when these become due.
-
-The Incubator report includes the status of a subset of the incubating projects. Currently, new Podlings report to the Incubator monthly for the first three months, then quarterly after that.
-
-The PPMC does not have to fill out the report itself; the PPMC is just responsible for making sure that it gets filled out. It is better to discuss the report on the dev list and ask everyone to contribute to it. If Mentors disagree with the posted report, they should say so; otherwise, the Incubator PMC assumes that the report speaks for the community.
-
-Please use the existing format and don't change the subject headers. Note that we update the template from time to time, so be sure to use the one we provide and not a previous report.
-
-Here are the points to address:
-- Is there anything that the Incubator PMC or ASF Board specifically needs to address?
-- Are there any legal, infrastructure, cross-project or personal issues that need to be addressed?
-- Are there any stumbling blocks that impede the podling?
-- What has been done (releases, milestones, etc.) since the last report?
-- What are the plans and expectations for the next period?
-- Are there any recommendations for how incubation could run more smoothly for you?
-- Are your mentors active and providing help?
-- etc. (your own thoughts on what is important would be helpful!)
-
-Mentors must sign off on podling reports.
-- If there is no mentor sign off, the IPMC will not accept the report from that podling; it will have to submit a new report in the following month.
-
-Add your podling reports to the Incubator wiki:
-- Add each podling report to the link:https://cwiki.apache.org/confluence/display/INCUBATOR/Home[Incubator wiki]
-- Follow the instructions in your report reminder, and post on the &lt;Month&gt;&lt;Year&gt; page, with the provided template
-
-== Project Status Page
-In addition to the quarterly status reports, each Podling has a page on the Incubator web site that tracks its status (see the link:http://incubator.apache.org/projects/index.html[complete list] for examples). Instructions for updating the status page are in the link:website.html[Incubator web site guide] under link:website.html#Edit+your+project+status+page[Edit your project status report].
-
-== Maintaining the Podling Roster
-Maintain your podling roster in link:https://whimsy.apache.org/roster/ppmc/[Whimsy Podling Roster]. Going forward, the content in *projects/$podling.xml* is deprecated.
-
-== Adding committers
-
-Adding committers is one of the most important functions of any PMC, including Incubator podlings.
-
-There are no ASF-wide rules on how to decide when to invite someone to become a committer. Each podling needs to adopt an approach that works for it.
-Some ASF projects have a high bar requiring significant contributions before considering someone as a potential committer; other projects grant it more freely to anyone who shows interest in contributing. Experience shows that it's best to keep the bar low.
-
-Most projects use formal [DISCUSS] and [VOTE] threads on the private email list, and others use a more "lazy" consensus approach. For more information, see link:http://www.apache.org/foundation/glossary.html#CommitAccess[commit access] and the ASF *How it Works* document, which explains link:http://www.apache.org/foundation/how-it-works.html#meritocracy[meritocracy] and link:http://www.apache.org/foundation/how-it-works.html#roles[roles].
-
-The podling Incubator reports should document any committers added since the previous report.
-
-If the podling decides in favor of the potential committer, it offers committership to the nominee. If the nominee accepts the responsibility of being a committer for the project, the nominee formally becomes an Apache committer.
-
-The proposer then asks an IPMC member (typically one of the mentors) to follow the link:http://www.apache.org/dev/pmc.html#newcommitter[documentedprocedures] to complete the process. If the nominee is already an Apache committer on another project, the IPMC member can add the nominee as a committer on the podling via the link:https://whimsy.apache.org/roster/ppmc/[Whimsy Podling Roster].
-
-The proposer then directs the new committer to the link:http://www.apache.org/dev/[Apache developer's pages], to the link:http://incubator.apache.org/[Apache Incubator site] and to the Incubator link:committer.html[Committers Guide] for important additional information.
-
-Projects which wish to have all committers also be PPMC members should follow the "Voting in a new PPMC member" guide below. 
-
-== Voting in a new PPMC member
-It should be a goal of a podling to have all committers participate in the PPMC. The PPMC should take an active role in watching committers develop as community participants. They should identify those who are participating at a community level (not just a technical one), and approach them with an offer of PPMC membership.
-
-Any member of the PPMC can propose a new member of the PPMC. The proposal should be discussed in private on the PPMC's private email list, with a subject line of "[DISCUSS] Joe Bob PPMC membership". If there is consensus that the proposed member is suitable, there should be a formal vote with the subject line of "[VOTE] Joe Bob PPMC membership" on the PPMC's private email list.
-
-If the vote is successful, a member of the PPMC sends a message to the PPMC private email list, with the subject line of "[VOTE][RESULT] Joe Bob PPMC membership".
-The nominating PPMC member should send a message to the IPMC (link:mailto:private@incubator.apache.org[private@incubator.apache.org]) with a reference to the vote result in the following form:
-
-[source]
---
-To: private at incubator.apache.org
-CC: private at PODLING.incubator.apache.org
-Subject: [NOTICE] Joe Bob for PODLING PPMC
-Body:
-
-Joe Bob has been voted as a new member of the *PODLING* PPMC. the vote thread is at: *link to the vote thread*
---
-
-*Note that there is a grace period of 72 hours from when the PPMC sends the  NOTICE to the IPMC to when the PPMC should formally invite the proposed member. This is an important part of the overall process. Failure to do this can result in an embarassing situation for people involved.*
-
-In the email you send, replace *PODLING* with your podling's actual name, and replace Joe Bob with the person's actual name.
-
-After 72 hours, the PPMC should invite Joe Bob to join it, using message like link:ppmc-offer.txt[this].
-
-Once the proposed member has accepted, a moderator for the PPMC mail list accepts the new member's subscription request.
-
-Direct the new member to link:ppmc.html[this page] for PPMC membership information.
-
-== Adding mentors
-
-At times, it may be desirable to add a mentor to a podling. A mentor must be an IPMC member. People who are not IPMC members can still help out in an informal capacity.
-
-IPMC members are free to volunteer to mentor a podling. To do so, they should mail the podling stating their intentions. The podling should then decide whether it wants to add the mentor. If the Podling decides to add the mentor, it should do so in the link:https://whimsy.apache.org/roster/ppmc/[Whimsy Podling Roster].
-
-If a podling is in a position where they feel they need a new mentor, they can drop an email on the general incubator email list to try to recruit a one.
-
-== Removing a mentor
-
-Occasionally it may be necessary to remove a mentor who has been too busy to participate or who has gone silent. After discussing it with the PPMC you can have someone with access (another mentor) remove the mentor via link:https://whimsy.apache.org/roster/ppmc/[Whimsy].
-
-== PPMC and Binding Votes
-
-The only time when a PPMC member's vote is binding is for the addition of new PPMC members and committers. Release votes are only binding for IPMC members.
-
-The binding status of a person's vote is not related to the email list that the vote occurs on.
diff --git a/pages/guides/press-kit.ad b/pages/guides/press-kit.ad
deleted file mode 100644
index 5f05e62..0000000
--- a/pages/guides/press-kit.ad
+++ /dev/null
@@ -1,111 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Podling Press Kit
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-== Apache Incubator Graphics
-
-This page contains various graphical assets that Apache Incubator podlings and their communities can use.
-The Apache Software Foundation owns all Apache-related trademarks, service marks, and graphic logos. Our link:http://www.apache.org/foundation/marks/[formal Trademark Policy] addresses allowable uses and how to contact us for permissions.
-
-The Apache Incubator provides two main types of graphic:
-
-- Incubator Graphics - the official Apache Incubator logo
-- “Powered By” Apache Incubator Logos - to be used by Apache Incubator podlings
-
-Please note that each Apache podling provides and maintains their own official project logo on their home page. The best place to ask for a copy of a project logo is on the podling's dev@ mailing list.
-
-== Downloadable Graphics
-
-This section contains downloadable graphics of the Apache Incubator logo.
-
-REMINDER: all graphics/images/logos are trademarks of the ASF. You must not use them without appropriate attribution and permission from the ASF. See our formal Trademark Policy for more details. We are a vendor-neutral public charity that provides independent governance to all Apache projects, so you must use care when displaying the feather, and ensure it's clear that it's referring to the ASF as an independent organization.
-
-=== Official Incubator Logo
-
-This is the latest version of the Apache Incubator logo, as launched in March 2017. Use this logo on ALL podling website pages during the incubation process.
-
-image:/images/incubator_feather_egg_logo.png[]
-
-link:/images/SVG/apache_incubator.svg[SVG] | link:/images/PDF/apache_incubator.pdf[PDF] | link:/images/EPS/apache_incubator_RGB.eps[EPS - RGB] | link:/images/EPS/apache_incubator_CMYK.eps[EPS - CMYK]
-
-=== Red-On-White Version of Logo
-
-The red-on-white version of the Apache Incubator Logo is
-
-image:/images/incubator_feather_egg_logo_red_crop.png[]
-
-link:/images/SVG/apache_incubator_red.svg[SVG] | link:/images/PDF/apache_incubator_red.pdf[PDF] | link:/images/EPS/apache_incubator_red_RGB.eps[EPS - RGB] | link:/images/EPS/apache_incubator_red_CMYK.eps[EPS - CMYK]
-
-=== Black-On-White Version of Logo
-
-The black-on-white version of the Apache Incubator Logo is
-
-image:/images/incubator_feather_egg_logo_wb_crop.png[]
-
-link:/images/SVG/apache_incubator_black.svg[SVG] | link:/images/PDF/apache_incubator_black.pdf[PDF] | link:/images/EPS/apache_incubator_black_RGB.eps[EPS - RGB] | link:/images/EPS/apache_incubator_black_CMYK.eps[EPS - CMYK]
-
-=== White-On-Black Version of Logo
-
-The white-on-black version of the Apache Incubator Logo is
-
-image:/images/incubator_feather_egg_logo_bw_crop.png[]
-
-link:/images/SVG/apache_incubator_white.svg[SVG] | link:/images/PDF/apache_incubator_white.pdf[PDF] | link:/images/EPS/apache_incubator_white_RGB.eps[EPS - RGB] | link:/images/EPS/apache_incubator_white_CMYK.eps[EPS - CMYK]
-
-== "Powered By" Apache Incubator Podling Logos
-
-Inspired by the ASF’s “Powered by Apache” logo [LINK], the “Apache Incubator Podling” logo helps maintain the unique identity of each Apache podling while it undergoes development in the Apache Incubator. We encourage all Apache podlings and their communities to proudly display “Apache Incubator Podling” assets on their websites, documentation, marketing materials, etc.
-
-Guidelines for the appropriate use of the “Powered By Apache” logos include:
-
-- You may use the standalone “Powered By” Apache Incubator and “Apache Incubator Podling” circular banded logos standalone, with just the Apache Incubator logomark (denoting general use of an Apache Incubator podling), or in combination with an official Apache podling logo.
-- You may not alter the official podling logo in any way other than removing/separating the name(s) where applicable, as approved by the associated Podling Project Management Committee (PPMC).
-- You must associate the appropriate trademark symbol(s), such as ® or ™, with the podling's logo, if applicable.
-- You must not alter the “Powered By” logo's circular band format, font, or color in any way.
-- You must not rotate, animate, distorte, or otherwise alter the logo and/or its contents, nor use it as a graphic element, background, or pattern.
-- You must not translate or localize the logo and/or its contents, nor add versioning numbers or other unauthorized words to it.
-- The preferred background color for the logo is white; however, the logo may appear on colored, black, or image/photographic backgrounds providing this does not compromise the logo's legibility.
-- You may resizeb the logo and produced it in multiple file formats as required by the Podling Project Management Committee, with a preferred minimum size of 80 pixels high in web/online applications (where possible) to ensure legibility.
-- You may not under any circumstances, incorporate the logo with a third party's company name, product name, or logo(s), or adopt marks and/or logos that are confusingly similar to or imply improper association with The Apache Software Foundation.
-- Third parties and programs may not use official Apache project or podling logos and/or create alternate logos or identifying marks relating to any Apache project, without written permission from the associated Podling Project Management Committee and/or ASF Brand Management.
-
-We have a link:https://www.apache.org/foundation/marks/faq/#poweredby[trademark use policy for the "Powered By" phrase].
-
-In addition, official Apache Project pages and documentation on apache.org must use the appropriate trademark symbols on the respective Project logo, along with the following footnote: "Apache, Apache [PODLING NAME], and the Apache [PODLING NAME] logo are registered trademarks or trademarks of The Apache Software Foundation in the U.S. and/or other countries."
-
-=== Template and Usage
-
-==== Standalone "Powered By" Apache Incubator Logo
-image:/images/incubator_ring_logo.png[height=200]
-
-==== Per-Project Powered By Logos
-
-Logos for individual podlings, such as the ones below, are available in jpg, psd, and eps format. You can retrieve them by requesting:
-
-image:/images/incubator_power_ring.jpg[height=200]
-image:/images/incubator_ring_airflow.jpg[height=200]
-
-For example, you can create the “Apache Incubator Podling” logo for Apache Airflow by retrieving the Airflow logo from link:http://airflow.incubator.apache.org/_images/pin_large.png[http://airflow.incubator.apache.org/_images/pin_large.png].
-If you are unable to find the logo you are looking for, contact the podling’s mailing list.
-
-==== Template For the Creation of Powered By Logos
-image:/images/template_airflow.jpg[height=200]
-image:/images/template_hawq.jpg[height=200]
-image:/images/template_spot.jpg[height=200]
-
diff --git a/pages/guides/proposal.ad b/pages/guides/proposal.ad
deleted file mode 100644
index 85f24c5..0000000
--- a/pages/guides/proposal.ad
+++ /dev/null
@@ -1,108 +0,0 @@
-= A Guide To Proposal Creation
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-:jbake-type: proposalGuide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-This document provides guidance only. The policy is link:/incubation/Incubation_Policy.html[here].
-
-== Abstract
-
-This document describes approaches to drawing up a proposal for submission to the Incubator. It is not an inflexible standard, but represents a consensus condensed from discussions on the link:lists.html#general+at+incubator.apache.org[general mailing list]. Feel free to modify the template when submitting your proposal.
-
-=== Background
-Entry to the incubator is a process decided by a vote.
-The proposal is the document upon which the link:/incubation/Roles_and_Responsibilities.html#Sponsor[Sponsor] (usually the incubator) votes.
-Having a good proposal increases the chances of a positive outcome.
-
-Proposals to the incubator generate attention. The link:lists.html#general+at+incubator.apache.org[general mailing list] is open, widely discussed, and well indexed. It is a very public space.
-A good proposal should target the wider audience and not just the link:/incubation/Roles_and_Responsibilities.html#Incubator+Project+Management+Committee+%28PMC%29[IPMC].
-Use this time to engage and inform potential link:participation.html#developer[developers] and link:participation.html#user[users]. 
-
-A good proposal should shape the future evolution of the project. Still, each proposal only captures the particular details of the project at its birth. We understand that projects change and evolve. 
-
-=== Continuous Improvement
-The incubation process is continuously evolving.
-We hope this will help newer projects to be even stronger and more successful than existing ones. 
-One consequence of this approach is that what previous podlings have done, even those that are now TLPs,  may not be a reliable guide.
-Another is that documentation may be a little outdated.
-
-=== Help Wanted!
-Help  improve the system by posting a patch for this document to the link:https://issues.apache.org/jira/browse/INCUBATOR[incubator section] of link:http://issues.apache.org/jira[Jira] or a comment to the link:lists.html#general+at+incubator.apache.org[general list], or raise a pull request at the link:https://github.com/apache/incubator[incubator site repository].
-
-== Formulating A Proposal
-=== Preparation
-
-Start with research. The link:/cookbook[Cookbook] is a good place to start.
-Read the link:http://www.apache.org[Apache] link:http://www.apache.org/foundation[documentation].
-
-link:lists.html[Subscribe] to the link:lists.html#general+at+incubator.apache.org[general mailing list]. 
-Spend some time reviewing the link:++https://lists.apache.org/list.html?general@incubator.apache.org++[email lists archives]. 
-The email lists are the standard forum for link:http://www.apache.org/foundation/how-it-works.html#communication[communication] and link:http://www.apache.org/foundation/how-it-works.html#decision-making[decision-making] at Apache.
-
-Before starting on the formal proposal, recruit a link:/incubation/Roles_and_Responsibilities.html#Champion[Champion]. The Champion understands
-Apache and should be able to help you navigate the process and put your proposal together.
-
-Review link:https://cwiki.apache.org/confluence/display/INCUBATOR/Proposals[recent proposals] and how they have been link:++https://lists.apache.org/list.html?general@incubator.apache.org++[received]. Check to see which podlings have become Top Level Projects (TLPs) and which have not. link:https://cwiki.apache.org/confluence/display/INCUBATOR/Incubating+Issues[Read up] on some of the issues a podling may face while in incubation.
-
-The incoming community needs to work together before presenting this proposal to the Incubator. Think about and discuss future goals, and the reasons the project is wants to come to Apache.
-Feel free to ask questions on the link:lists.html#general+at+incubator.apache.org[Incubator general@ list].
-
-Every proposal is different. There will always be some aspects of a project which do not seem to fit well into the link:#proposal-template[template]. 
-Use the template as a guide but do not feel constrained by it. Adopt what works and change what doesn't. It is fine to do that.
-
-Be sure to add your proposal to link:https://cwiki.apache.org/confluence/display/INCUBATOR/Proposals[this list]. You can copy the link:https://cwiki.apache.org/confluence/display/INCUBATOR/New+Podling+Proposal[existing template] for your new proposal.
-
-=== Project Name
-
-You must come up with a link:graduation.html#notes-names[suitable project name] and product names before entering incubation. Be careful not to disrupt your proposal and entry process. But also be aware that changing your name may be required at some point, and that could be disruptive to your community.
-
-=== Presentation
-
-Once you have a draft proposal, present it to the incubator.
-Post the proposal in plain text in an email to the link:lists.html#general+at+incubator.apache.org[email list] with a subject line prefixed with _[PROPOSAL]_. You should be clear that you want to discuss your proposal when submitting this email.
-
-If there is interest in the proposal, expect a lively debate to begin.
-Approval follows a link:http://www.apache.org/foundation/voting.html[vote] to enter the incubator.
-Discussion is an important part of opinion formation. Most proposals require some rework and development to gain the maximum level of support from the
-link:/whoweare.html[Incubator].
-
-=== Developing The Proposal
-
-Expect to work on improving the proposal on the list after presenting it.
-No preparation can cover every question. It is usual for interested parties to pose unexpected and novel questions. So (though it may sometimes feel like an ordeal) approach these questions as a real opportunity to engage with the Incubator.
-
-The link:https://cwiki.apache.org/confluence/display/INCUBATOR/Proposals[wiki] is a useful development tool. Consider creating a wiki page containing the evolving proposal content. Those who are interested should add themselves to the watch list for the page so they can receive change notifications.
-
-Developing the proposal on the wiki allows for easy collaboration. The wiki is just a tool to assist the development of the final proposal (the one that the PPMC will vote on). However, the wiki is not an appropriate forum for debating changes. Gently move discussion onto the appropriate link:lists.html#general+at+incubator.apache.org[email list]. 
-
-Effective management of this development process is a good exercise in community building.
-
-=== The Vote
-
-When the proposal seems finished, and some form of consensus has emerged, you can put the proposal to the vote.
-
-If you use the wiki to develop the proposal, please ensure that the wiki page content matches the content of the final proposal then add a notice on the wiki page that development of the document is now complete. Change the wiki page to be read-only so nobody can make further changes.
-
-Embed the final proposal text or include the final version number of the wiki proposal page in the email which starts the VOTE thread. If a change is required after the vote has been called then you must cancel the vote, make the change, and then start a new vote. Alternatively, Mentors will advise on how to make the change once the proposal has been accepted. Do not edit the wiki proposal page unless you have canceled the vote thread.
-
-== Proposal Template
-
-The aim of presenting a template with examples and comments is educational. Proposals are not required to adopt this format. 
-Every proposal is different. There may be sections which don't seem to be useful. It's fine to miss them out and to add new ones that the proposal appears to need.
-
-The format is less important than the content.
-
-Each section has both commentary/explanation and examples. You can copy the link:https://cwiki.apache.org/confluence/display/INCUBATOR/New+Podling+Proposal[proposal template] to a new page under link:https://cwiki.apache.org/confluence/display/INCUBATOR/Proposals[proposals] on the Incubator Wiki to speed up proposal creation. Please remove commentary and examples sections once your proposal text is complete.
diff --git a/pages/guides/publicity.ad b/pages/guides/publicity.ad
deleted file mode 100644
index 8162e03..0000000
--- a/pages/guides/publicity.ad
+++ /dev/null
@@ -1,80 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Podling Publicity/Media Guidelines
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-Requirements for all podlings relating to publicity in general.
-
-== 1) Prior to Entering the Apache Incubator
-
-Under no circumstances may any individuals or organizations seek publicity related to the proposed podling during this process. Per the Incubator Branding Guidelines, you may not refer to a podling as "Apache _Podling Name_" until the Apache Incubator has officially accepted, its mailing lists are active, and podling participants have submtited code related to the podling into Apache repositories. 
-
-No party can make announcements or statements 1) about their intention to submit a named project to the Apache Incubator or 2) that a specific project has been submitted to the Apache Incubator.
-
-You may not disseminate formal press releases or announcements of any kind on any newswire service during the entire Incubation process. 
-
-
-== 2) During the Incubation Process
-
-We encourage Apache podlings and their communities to actively build awareness of their project through emails, blog posts, tweets, and other means of outreach. Educational opportunities include online meetings, videos, podcasts, articles, and interactions at conferences and related community events.
-
-When speaking with members of the media and analyst community, you must refer to the podling as "Apache _Podling Name_" as per the Branding Guidelines, along with explaining the requisite podling disclaimer(s). Be prepared to answer "who uses you?". As a podling’s known user base grows, PMCs (Project Management Committees) are welcome to promote their users in a "Powered By" page such as https://cwiki.apache.org/hadoop/PoweredBy[Apache Hadoop's Powered By page]. Create and promote podling users to https://incubator.apache.org/guides/press-kit.html[display the "Powered By" logo]. Also, ensure that the podling maintains http://apache.org/press/media.html#interviews[*vendor neutrality*], particularly when referring to project users.
-
-Podlings should prepare news announcements and hone their messaging _privately_ within their PMCs (keeping the content confidential to the PMC, and not on dev@, user@ or any other public list or forum) to ensure that the public or press don’t scoop your story before it’s out or publish inaccurate information. Messaging may change, features may not be available as soon as intended, testimonials may need adjusting, and so on, and it’s best to minimize the chances of your story getting out with incorrect information, or for nobody to cover your news story because it was covered earlier and is therefore no longer considered newsworthy.
-
-We strenuously recommend that podlings refrain from issuing announcements under embargo. Pre-announcing project features or release dates to members of the media is risky, as not all journalists or outlets honor confidentiality requests or adhere to embargo dates/requirements. Furthermore, many journalists are unable or unwilling to fulfill requests for retractions or corrections. Be aware, be careful.
-
-As all Apache PMCs (and Incubator PPMCs) are responsible for the "care and feeding" of a project’s code, community, and communications on a day-to-day basis, we recommend that Podlings:
-
-- Ensure your [project listing and DOAP (Description Of A Project) file](https://projects.apache.org/) accurately reflect what the podling is about. Be succinct, particularly with the short description (note that the project may fall under one category): this helps those unfamiliar with your project find you. Use the longer project description as the official project boilerplate ("About Apache _Project Name_") and, for consistency, include it in official news announcements, media briefings, and other publications (the ASF Boilerplate is for Foundation-originating press releases and is **not** to be used in any project announcements).
-- Upload a high-resolution version of your project’s logo at [apache.org/logos/](http://www.apache.org/logos/).
-- Contact ASF Infrastructure to establish a https://blogs.apache.org/_PROJECTNAME_ project blog directory (and admin/publishing credentials).
-- Request a project interview on [Feathercast, the voice of the ASF](https://feathercast.apache.org/).
-- Gain additional exposure by posting newsworthy podling updates and milestones to [announce(at)apache(dot)org](http://apache.org/foundation/mailinglists.html#foundation-announce). The Apache team adds these to the Apache Weekly News Round-Ups, which it also sends to members of the media and analyst community.
-- Establish a Twitter (and/or other social media) account(s) with a handle that includes "Apache" or "ASF" with the project name and description (example at [https://twitter.com/ApacheAccumulo](https://twitter.com/ApacheAccumulo) ). Share information often, and point to your podling Website and email list archives where possible. 
-- Participate in Media & Analyst Training (held during ApacheCon; complimentary for Apache Committers and Members).
-- Comply with guidelines for "founding" individuals, organizations, and communities of Apache podlings as applicable (details below).
-
-Podling cannot disseminate formal press releases or announcements of any kind on any newswire service during the Incubation process. Furthermore, cannot encourage, allow, or particiapte in any announcement by a third party on behalf of a podling undergoing development in the Apache Incubator. However, interested parties may issue supporting announcements with pointers to official podling-originating news, providing the announcement includes a link to the corresponding mailing list(s) and/or blog post.
-
-
-== 3) Preparing to Graduate
-
-Podlings wishing to issue a press release announcing their graduation as an Apache Top-Level Project (TLP) must contact ASF Marketing & Publicity at least two weeks before submitting the graduation resolution to the ASF Board in order to provide sufficient preparation time.
-
-Podling Project Management Committees (PPMCs) work together with ASF Marketing & Publicity to issue a formal ASF press release, which is also a great opportunity to solicit quotes/testimonials from the Podling’s community to demonstrate the project's robustness and breadth of deployment.
-
-TLP announcements have ranged from having single quotes (VP of the project/PMC chair) to several perspectives from the PMC to multiple endorsements from the community. A great example press release is: https://blogs.apache.org/foundation/date/20180110[The Apache Software Foundation Announces Apache® Trafodion™ as a Top-Level Project].
-
-Organizations supporting/using the Podling are welcome to issue their own, standalone "hurrah, Apache _Podling Name_!" press release (or blog post) to support the podling's graduation. All third parties need to coordinate messaging and timing with both the Podling PMC and ASF Marketing & Publicity. Third party releases must not use Apache boilerplate.
-
-=== PPMC Responsibilities For Announcements
-
-- Determine the primary point-of-contact during the drafting/editing process.
-
-- Help draft the announcement (primarily "what is Podling Name"/features+functionality).
-
-- Determine whether to include supporting testimonials from the community (and solicit them).
-
-- Work with ASF Marketing & Publicity to ensure the announcement timing is in sync (preferable to roll out announcements within a 24-48 hour timeframe, rather than announce the project's graduation on the project’s dev@/user@ lists or on announce@apache.org, followed by a press release several weeks later).
-
-Note that some organizations require legal clearance to participate in any media activities, and may require several weeks to obtain sign-off on proposed participation in the form of testimonials or being listed as a corporate user.
-
-Before announcing anything across media/analyst/news channels, ensure to remove references to "incubating/incubation" on podlingname.apache.org and related properties to ensure that pointers are active and accurate.
-
-Podlings should contact ASF Marketing & Publicity at press(at)apache(dot)org for assistance.
diff --git a/pages/guides/releasemanagement.ad b/pages/guides/releasemanagement.ad
deleted file mode 100644
index 9134d77..0000000
--- a/pages/guides/releasemanagement.ad
+++ /dev/null
@@ -1,122 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Release Management
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-:plusone: +1
-
-== What goes into an ASF release
-
-One of the goals of incubation is to teach podling communities how to
-build ASF-compliant releases.  As part of the learning process, the podling community needs to be
-fully engaged in the review process.  A podling community should begin to familiarize themselves
-with the ASF policies for releases.  Those policies can be found at
-link:http://www.apache.org/dev/#releases[http://www.apache.org/dev/#releases].
-
-Releases are always produced by an Apache PMC, and for podlings, this PMC is the IPMC.  This is
-why it is mandatory to have at least 3 {plusone} votes from
-link:/incubation/roles_and_responsibilities.html#incubator_project_management_committee_ipmc[IPMC members].
-Usually, your link:/incubation/roles_and_responsibilities.html#mentor[mentors] (who are also IPMC members) will 
-vote on your releases, but if needed, other IPMC members will as well.  IPMC members will check for
-compliance with the ASF policies and with link:/incubation/Incubation_Policy.html#Releases[Incubator policies].
-
-Anybody reviewing your releases will explain what they checked and what they found.  They will also
-rate the severity of any issues.  Some issues may be blockers.
-Others issues may be resolved in later releases.  Those voting on the release will base their votes
-on this information.
-
-If you do not understand the feedback you receive, or if you believe that it is misguided,
-please say so! We are all learning, and discussion is an important part of open source development.
-
-== Requesting feedback on interim non-ASF releases
-
-When existing active communities enter the ASF via incubation, they may already have an established
-release rhythm.  It may not be possible to conform to ASF release policies quickly enough to
-maintain that release rhythm.  We want to welcome projects with active communities.  To smooth this process,
-projects may need to make a few non-ASF releases after incubation begins.
-
-A non-ASF release may or may not be staged on ASF infrastructure for a vote, but it
-is distributed via non-ASF infrastructure, *and* is either not linked from a podling's website, or is
-linked but clearly marked as a non-ASF release.
-
-Podlings can use non-ASF releases as an opportunity to find ASF policy violations and begin
-resolving them.  Podlings can request feedback by starting a "[DISCUSS]" thread on general@incubator.apache.org.
-Podlings can decide whether they prefer a "[DISCUSS]" thread or a "[VOTE]" thread.  Only a
-release which passes a vote by members of the IPMC is an official ASF release.
-
-Discussion should give podlings feedback on what they would need to do to
-bring their release in line with the requirements of an official ASF
-release.  Podlings will be responsible for capturing feedback in work items for
-their project.  Feedback provided in a discussion thread will not block a non-ASF release.
-But the ASF will not take on legal liability for these releases.  A podling will need to
-successfully make several ASF releases before it can graduate from the incubator.
-
-Asking for feedback for non-ASF releases is not obligatory.  It is one of the
-services that the Apache Incubator offers our podling communities.
-
-== Podling Constraints
-
-The link:/incubation/Incubation_Policy.html#Releases[Incubator policies] applys two additional constraints 
-to podlings for their releases.  They are repeated here for clarity only.
-- Release artifacts must include #incubating# in the final file name
-- Release artifacts must include one of two link:/guides/branding.html#disclaimers[disclaimers]
-
-For a podling to receive full permission from the IPMC to execute the release, the release
-vote must be held on the link:/guides/lists.html#general+at+incubator.apache.org[incubator general list]
-and pass based on the link:http://apache.org/foundation/voting.html#ReleaseVotes[standard Package Release voting rules].
-Only Incubator PMC votes are binding, but everyone is encouraged to vote.
-
-The Incubator PMC expects the source releases to be staged on
-#https://dist.apache.org/repos/dist/dev/incubator/$podlingName# so that they can easily be moved
-to the release location via #svn mv#.
-
-== Choice of Disclaimers
-
-When making a release, a podling has a choice of using one of two link:/policy/incubation.html#disclaimers[disclaimers],
-the standard disclaimer or the work in progress disclaimer.
-
-If it is your first release, it is recommended that you use the work in progress DISCLAIMER. This disclaimer
-allows you to list any non-compliance with ASF policy and IPMC members are still be able to give your release
-a {plusone} vote. Think of it as training wheels for your release.
-
-Here is a minimal set of requirements, when using the work in progress disclaimer, a podlings release must abide by:
-
-* Include the word incubating in the release file name.
-* Include an ASF LICENSE and NOTICE file.
-* Have valid checksums or signatures.
-* Be placed in the correct place on the ASF's infrastructure.
-* Have a KEYS file to validate the release.
-
-Other issues, such as:
-
-* Missing ASF headers.
-* Missing license information.
-* Included unexpected binary code.
-* Including code of unknown origin.
-
-Will be allowed if the issue is listed in the disclaimer or added to the disclaimer shortly after the release is made.
-
-Any releases using the work in progress disclaimer must still be legal and follow the terms of any 3rd party licenses,
-even if they are not compatible with the Apache license. 
-
-Please carefully read this link:https://issues.apache.org/jira/browse/LEGAL-469[Legal JIRA] for more details on 
-what the IPMC and legal expectations are.
-
-By the time you graduate all issues listed in the disclaimer need to have been corrected,
-and you must use the standard disclaimer text.
-
-If a podling chooses uses the standards disclaimer, then the release must comply with all ASF policies.
\ No newline at end of file
diff --git a/pages/guides/retirement.ad b/pages/guides/retirement.ad
deleted file mode 100644
index a86c529..0000000
--- a/pages/guides/retirement.ad
+++ /dev/null
@@ -1,102 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Guide to Retirement
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-The intent of this document is to help Mentors and other
-community members understand retirement, both as a
-concept and a process.
-
-== What is Retirement?
-
-A retired podling is one which has been closed down on the
-initiative of the PPMC or the IPMC for various reasons.  It is
-no longer developed at the Apache Incubator and does not have
-any other duties.
-
-It's important to view this process as being the retirement of
-the podling community, not the code. It should not be implied
-that the code is not for use - just that it has no community.
-So long as the Incubator's copyright requirements are
-fulfilled by the podling prior to retirement, its source code
-will continue to be made available through version control.
-
-Retiring a podling is analogous to moving a top-level Apache
-project to the link:http://attic.apache.org[Attic],
-but podlings receive a lower level of ongoing support -- for
-example, podling websites are deleted outright rather than
-munged to indicate retired status.
-
-== Deciding to retire
-
-In the vast majority of cases, a podling decides to retire on
-its own and that decision is later formally ratified by the
-Incubator PMC; very rarely, the IPMC may act unilaterally.
-(This is deliberate mimicry of Board oversight of TLPs --
-the language and role titles change but in general the Board
-and the IMPC merely implement the wishes of the community.)
-
-Before the IPMC gets involved, a public discussion and
-community vote SHOULD be held on the podling's dev list.  This
-ensures that all podling stakeholders are properly informed and
-have the opportunity to participate in the decision.
-
-The final decision to retire the podling takes the form of a
-vote by the IPMC on general@incubator. The vote should be by LAZY consensus.
-
-== Steps to retirement
-
-Once the IPMC vote to retire the podling has closed, a Mentor or other volunteer needs to perform the following steps.
-
-- Update #content/podlings.xml#:
-** Update podling status to "retired".
-** Add an "enddate" attribute set to the date that the IPMC vote concluded.
-** Remove the "reporting" element.
-** Add the "resolution" element. (Follow the example of other recently retired podlings.)
-- Update the podling's status page with a prominent message indicating when the podling retired: &lt;p&gt;&lt;span class="retired"&gt;The ${podling} podling retired on XXXX-XX-XX&lt;/span&gt;&lt;/p&gt;.
-- Has the copyright checkbox of the podling's incubation
-status page been checked off? If not, try to resolve it.
-If it cannot be resolved, the podling's source code must
-be removed from version control.
-- It may be that the podling is moving or returning development elsewhere. If so, then modify the resolution attributes appropriately.
-- Delete the podling's dist dir, so that its releases will no
-longer be mirrored:
-#svn remove https://dist.apache.org/repos/dist/release/incubator/${podling}#
-Any incubating releases will still be available via
-link:http://archive.apache.org/dist/incubator[archive.apache.org/dist/incubator].
-- Create a file RETIRED.txt at the top-level of each podling
-source repository.  This should contain something like the following:
-** This podling has been retired, please see: http://incubator.apache.org/projects/index.html##{podling-name}
-- If the podling has a DOAP referenced in the link:https://svn.apache.org/repos/asf/comdev/projects.apache.org/trunk/data/projects.xml[projects.xml] file used for generating link:http://projects.apache.org[projects.apache.org], remove the entry.
-- Open a "task" INFRA JIRA ticket entitled "Retire the ${podling} Incubator podling".  Open sub-tickets using "Create Sub-Task" as applicable:
-** Close ${podling} mailing lists
-** Make ${podling} version control read-only
-** Move ${podling} JIRA to "retired" and set read-only
-** Make ${podling} wiki read-only
-** Turn off ${podling} automatic builds
-** Remove LDAP entry of ${podling}
-** Update ${podling} Incubator SVN if the podling uses SVN repo.
-*** Add entries to asf-mailer.conf and send mail to cvs at incubator.apache.org
-*** Remove entries from asf-authorization - this makes the directory rw to the Incubator PMC.
-- Adding an empty index.html into the ${podling} directory as the other retired project does in https://github.com/apache/incubator/tree/master/assets/retired.
-The web server that hosts all the podling websites checks for a directory matching the host name, and redirects to the podling status file if it is present.
-- When all steps towards retirement are done, announce completeness on general@incubator.
-- Indicate that the podling is closed down in the next board report.
-
-The user accounts of the projects committers do not need
-to be removed.
diff --git a/pages/guides/roles_and_responsibilities.ad b/pages/guides/roles_and_responsibilities.ad
deleted file mode 100644
index f913b69..0000000
--- a/pages/guides/roles_and_responsibilities.ad
+++ /dev/null
@@ -1,141 +0,0 @@
-= Roles and Responsibilities
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-This document describes the roles (including Sponsor, Contributor, Mentor) of the parties involved in the incubation process, and provides an overview of their responsibilities.
-
-== The Board
-
-The link:http://www.apache.org/foundation/board/[Board Of Directors] of the link:http://www.apache.org/foundation/[Apache Software Foundation] manages the organizational affairs of the Foundation.
-
-link:http://www.apache.org/foundation/members.html[Apache Members] elect the Board.
-
-The Board delegates responsibility for incubation to the link:#Incubator+Project+Management+Committee+%28PMC%29[Incubator Project Management Committee (IPMC)].
-
-Apache link:http://www.apache.org/foundation/board/[Directors] are sometimes active in the Incubator. link:http://www.apache.org/foundation/how-it-works.html#hats[Conventionally], unless indicated otherwise, individuals speak personally. So, a Director speaking without their Board hat on is not stating policy but expressing a personal opinion.
-
-See also: link:http://www.apache.org/foundation/how-it-works.html#management[How Apache Works].
-
-== Incubator Project Management Committee (IPMC)
-The Incubator PMC [link:https://whimsy.apache.org/board/minutes/Incubator.html#minutes_2002_10_16[resolution]] is responsible for:
-
-* acceptance and oversight of candidate projects submitted or proposed to become part of the Foundation
-* providing guidance and ensuring that podlings under its purview develop products according to the Foundation's philosophy and guidelines for collaborative development
-* providing a repository for storage of incubation history and information
-* assisting a Podling's Mentor in discharging her/his duties
-* regularly evaluating projects under its purview for the purposes of recommending to the Sponsor whether the project should:
-** graduate from incubation
-** continue to receive guidance and support within the Incubator
-** be terminated
-
-To enable effective management of the process of incubation, described below, is the role and responsibility of all participants throughout the incubation lifecycle.
-
-A project going through the Incubator must report to the IPMC regularly. This helps the IPMC in its role of reviewing the status of projects under incubation.
-
-Finally, the IPMC is the ASF body with the greatest level of expertise, knowledge and experience in the Incubation process. Mentors or a Podling can call on the IPMC as a resource during (or even after) the incubation process.
-
-Individuals may be nominated to join the IPMC after a vote which passes. Individuals may choose to bring themselves or others to the attention of the IPMC. Additionally, any Member of the Apache Software Foundation may join the IPMC by request.
-
-Again unless indicated otherwise, individuals speak personally.
-
-See also: link:http://www.apache.org/foundation/how-it-works.html#management[How Apache Works].
-
-== Chair of the Incubator PMC
-The person appointed by the link:#board[Board] to have primary responsibility for oversight of the Incubator Project, its policies, and policy implementation.
-
-== Candidate
-A Candidate is a project proposed for incubation. A Candidate project needs:
-
-* to have a link:#Champion[Champion].
-
-A candidate project may also:
-
-* declare an existing Apache Project as its *Sponsor* rather than the Incubator
-* specify extra requirements that may be needed during incubation 
-* provide a summary of relationships with existing or planned Apache projects and products
-
-Naturally, projects need more than this in order to graduate from incubation status.
-
-A Champion (see below) may propose their candidate project for acceptance as an incubating Podling. Approval of a project is subject to a vote of the Sponsor. Should the vote pass, the Sponsor requests that the IPMC accept the Candidate as a Podling under incubation. The Sponsor assigns several Mentors, who must be Incubator PMC members.
-
-== Champion
-
-A Champion is an link:http://www.apache.org/foundation/index.html[Officer] or link:http://www.apache.org/foundation/members.html[Member] of the Foundation who sponsors a candidate project as it applies for Incubation.
-The Champion assists the candidate project on its initial submission. While the Apache community does not generally encourage private conversations, they are allowed at this point as the Chamption educates the Candidate about the Apache Way and prepares the project for the questions and issues the wider community may raise.
-
-Before incubation begins, the Champion is expected to:
-
-* help with any process/ASF related hurdles before the Candidate enters incubation
-* help identify any issues that may stop the Candidate from graduation or cause difficulty in the incubation process
-* help find the right people in the ASF to speak with
-* help to find Mentors
-* drive the process of entering the Incubator, leading to a vote to accept the proposed podling
-
-After the Candidate's acceptance the Champion role may end, or they may continue to help the Candidate as as a Mentor. 
-
-== Sponsor
-
-The Sponsor is the entity within the ASF that makes the determination that a candidate would make a worthy addition to the ASF.  They agree to take on the Candidate (or in the case of the IPMC, assist it in finding a home) should it complete the incubation process.
-
-A Sponsor will be one of:
-
-* A TLP within the ASF. In this case, the project has agreed that the Candidate is a good fit for their project, and will take on the Candidate as a sub-project upon successful completion of incubation.
-* The IPMC. In this case, the IPMC agrees that the project will make a good addition to the ASF, and should become a TLP when it successfully completes Incubation. In most cases, the IPMC is the appropriate Sponsor (Candidates should discuss this with their Champion).
-
-[NOTE]
-====
-Note that a Sponsor is more than just a final resting place for a candidate that successfully completes incubation. The Sponsor is indicating that they believe the Candidate will make a worthy addition to the ASF, and takes responsibility for assisting the podling through the Incubation process. The Sponsor is therefore expected to be actively involved in the incubation process and to assist where necessary, giving the podling the best possible chance of success.
-
-However, while we expect the Sponsor to be actively involved, it is formally represented by the Mentors. The Mentors are the individuals accountable to the IPMC for ensuring the podling follows the incubation process correctly. If Mentors are not fulfilling their responsibilities, we expect the Sponsor (in particular its Chair) to remedy the situation.
-
-====
-
-== Responsibilities of the Sponsor
-- to provide initial approval for a Candidate to be accepted as a Podling
-- to nominate Mentors for the incubation process
-
-== Mentor
-The Sponsor chooses Mentors to actively monitor the podling, guide the podling in link:http://apache.org/foundation/how-it-works.html[the Apache Way], and report its status to the Sponsor and the IPMC. All Mentors must be members of the IPMC. A Mentor has the following responsibilities toward the IPMC, the Sponsor, and the community of the assigned Podling.
-
-=== Responsibilities toward the Podling Community
-- to ensure that Incubator PMC decisions and issues are dealt with in a timely manner
-- to  ensure that decisions or resolutions affecting the Podling are communicated promptly
-- to represent the interests of the Podling on the Incubator PMC
-- to liaise between the ASF Secretary and the Podling concerning CLA submission and acknowledgements
-- to liaise between the ASF Infrastructure team and the Podling concerning infrastructure support (email lists, version control establishment, account establishment, etc.)
-- to assist the Podling on issues concerning the resolution of license transfers, copyright assignments, and/or software grants where applicable
-- to provide guidance on Apache policies and practices
-
-=== Responsibilities toward the IPMC
-
-- monitoring the Podling through the incubation process
-- evaluating Podling compliance with Incubator and ASF policies and procedures
-- assessing whether the Podling should continue, retire or graduate
-- providing updates to the IPMC and Sponsor on the status of license grants
-
-=== Responsibilities toward the Sponsor
-- provide status reports to the Sponsor on the progress of the Podling
-
-== Committers
-
-All committers on podlings should be familiar with link:http://www.apache.org/dev/#committers[Developer Information for Committers].
-
-The Candidate shall provide an initial set of committers.
-
-With the help of its Mentors, a Podling community is largely free to get on with the stuff they want to do (code, architecture, documentation, product development, solutions, etc.) with minimal disruption related to the Incubator process.
-
-However, they need to make sure of several things:
-
-- Keep your Mentors informed. They are reporting to the IPMC and, generally speaking, "no news is bad news". Conducting business on the project's mailing lists is one vital way to do this.
-- Actively seek and recruit committers to your project.
-- Make sure your decision-making process is visible and accountable.
-- Work towards operating like other Apache projects and complying with ASF policy and procedures.
-
-These activities are not unique to projects in the Incubator. For example, the PMCs of existing Apache TLPs make regular reports to the link:#board[Board].
-
-During Incubation, we expect committers to show how, as a group, they are upholding the ideals of the Apache community. In particular, as the Podling evolves, we expect the Podling to establish documentation for the introduction of new committers in a process consistent with established Apache practices.
diff --git a/pages/guides/sites.ad b/pages/guides/sites.ad
deleted file mode 100644
index 7d4ab78..0000000
--- a/pages/guides/sites.ad
+++ /dev/null
@@ -1,96 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Podling Websites
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-Podlings need to build a community in Apache in order to be accepted
-as part of the Apache Software Foundation. The podling website is one of the tools you use to build
-that community.
-
-== Podling Website Requirements
-
-Podlings are, by definition, not yet fully accepted as part of the
-Apache Software Foundation. Therefore, they are subject to additional
-constraints on their websites. You MUST adhere to these policies before we can consider the podling for
-Graduation, unless you obtain prior approval from the Incubator PMC.
-
-- The published site for each podling must conform to the guidelines in link:/guides/branding.html[Podling Branding/Publicity].
-- Podlings should review link:https://www.apache.org/foundation/marks/linking[Corporate Recognition Best Practices], link:https://www.apache.org/foundation/marks/resources[Apache trademark information], and must aim to comply with the link:https://www.apache.org/foundation/marks/pmcs[Apache Project Website Branding Policy].
-- You should maintain the sources for the podling website in the podling's SVN or Git repository.
-- The published site for each podling should conform to this URL space: #http://podlingname.incubator.apache.org/# or #http://podlingname.apache.org/#
-- Every podling should maintain an incubation status file under: #http://incubator.apache.org/projects/podlingname.html# (this is generated).
-
-== Creating the Podling Website
-=== Creating a Good Podling Site
-
-Apache Project Web Sites typically include several standard pages.
-Each page has a navigation bar and a project standard header that includes the Incubator graphic.
-
-You can establish the website during incubation, and migrate it
-after incubation to a permanent place in the TLP (Top Level Project) home.
-
-- Project Home Page: the primary entry point to the site; contains project description, news, invitation to join the project.
-- License Page: link to the Apache License 2.0.
-- Downloads: many projects in incubation release code, and this page describes the releases and has links to the download pages that redirect to Apache Mirror sites.
-- Documentation: this page presents the project documentation, including javadoc for Java projects, guides and tutorials, and links to external documentation.
-- Committers: a list of current committers on the project.
-- Mailing Lists: there are several mailing lists that the site visitors might be interested in, and this page contains `mailto:` links that allow easy subscription (and unsubscription) to any of them.
-- FAQ: answers to frequently asked questions.
-- Source Code: links to the browsable source repository and git or svn commands to check out the source code.
-- Issue Tracking: links to the Jira or other issue tracking tool, possibly including frequently-used filters for issue lists.
-- Dependencies: other projects that this project depends on.
-- favicon: the project's icon in a format suitable for a browser's address bar. If the favicon is absent, an Apache Feather displays.
-
-=== Website Generation Tool
-
-The podling can choose the tool it wishes to use to generate the website. The Infrastructure team provides link:https://infra.apache.org/website-guidelines.html[guidance] concerning tools that work best with Apache's infrastructure, and what podlings and projects must avoid. If you already have a tool that you are comfortable
-with, you can probably continue to use it. If you do not, consider using
-the Jekyll based link:https://github.com/apache/apache-website-template[Apache website template].
-
-Regardless of which tool you use, maintain the web site in the podling's svn/git repository, and include instructions for using the site generation tool.
-This simplifies the process of site generation and lets any podling committer make changes to the site. Check the generated site into svn/git.
-
-=== Publishing Your Website
-
-Managing a podling's website is the same as for a TLP (Top-Level Project).
-Review the link:https://infra.apache.org/project-site.html[Infra Documentation on Project Websites].
-
-=== Using a Wiki to Create Documentation
-
-Podlings may use a wiki to create documentation (including the website), providing that they follow the link:http://cwiki.apache.org/[guidelines].
-
-=== Web Site Transition
-
-Projects may arrive with existing web sites that they host outside Apache. We strongly encourage contributing as much
-documentation as possible to the project from these sites.
-Offshore sites related to projects are fine, but you must host official websites for Apache
-projects with Apache (unless you obtain an explicit waiver).
-
-Some projects elect to maintain previous releases outside Apache. In this case, they retain existing site
-is typically as a hub for this maintenance work. Otherwise, sites should link
-or redirect to the official Apache site.
-
-Apache may accept donations of domains related to projects moving here.
-Infrastructure will then arrange for renewal of the domains and redirection
-of traffic to the official site. link:https://infra.apache.org/contact.html[Contact infrastructure] for more details.
-
-Apache needs to deal with all commercial entities equitably. Linking to
-useful information on commercial sites is fine, but unfair discrimination between
-commercial sites is not. Most Apache projects find it better to simply link only
-to relevant articles on commercial sites rather than having to vet every request
-for links to commercial activity.
diff --git a/pages/guides/transferring.ad b/pages/guides/transferring.ad
deleted file mode 100644
index ff5e774..0000000
--- a/pages/guides/transferring.ad
+++ /dev/null
@@ -1,262 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Transferring Resources out of the Incubator
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-:icons: font 
-
-== Life After Graduation
-
-Once a project has been established by the board, or a sub-project consumed by a TLP, this guide should be followed to migrate
-the podling from the Incubator to their own TLP.
-
-=== Handover
-
-This is the transfer of virtual resources from the care of
-the link:/guides/roles_and_responsibilities.html#incubator_project_management_committee_ipmc[IPMC]
-to the care of either the new or existing top
-level project taking charge of the graduating community.
-
-==== Graduating as Subproject
-
-This is the simple case. The
-link:/guides/roles_and_responsibilities.html#chair_of_the_incubator_pmc[IPMC Chair] and the Chair of the project accepting the
-graduating community organize the handover between
-themselves.
-
-You do need to update the Incubator's podlings file. See link:/cookbook/podlings-xml.html#graduated_into_the_pmc_that_sponsored_it[Podling XML Examples].
-
-==== Graduating as New Top Level Project
-
-===== Board resolution and roster appointment
-
-When graduating to a new project, the process is more
-complex. Creating a new project requires a
-link:graduation.html#preparing_a_charter[resolution]
-to be passed by the link:http://www.apache.org/foundation/board/[Board].
-You may look at older minutes from the link:http://www.apache.org/foundation/board/calendar.html[calendar] and check for "Establish ProjectName".
-link:https://whimsy.apache.org/board/agenda/[Board Agenda Tool] has an "Add Item" button that can be used to add the Graduation Resolution to the Board Agenda.
-
-The Board votes on graduation resolutions at their monthly meeting.  If the Board votes to pass the resolution, that then appoints
-the listed Project Management Committee including:
-
-- a Chair for the new project aka PMC Chair. The Chair will also be appointed an
-  link:http://www.apache.org/foundation/[Officer]
-  of the Apache Software Foundation. This allows them
-access to official resources of the foundation as well
-as granting power to act on behalf of Apache within the scope of their project's activities.
-
-WARNING: Usually once this happens, the secretary will
-inform the new chair.
-Occasionally, this will be missed: if more than 72
-hours has passed since the Board meeting, it may be
-worth pinging the board to request confirmation.
-
-- the initial members of Project Management Committee aka PMC members.
-
-===== PMC Chair Todo List
-
-Once appointed, the new Chair needs to:
-
-- Subscribe to the *board* mailing list
-- Ensure that they have been added to
-link:https://people.apache.org/phonebook.html?service=pmc-chairs[the PMC chairs group (pmc-chairs) in LDAP].
-
-WARNING: The ASF Secretary should do this without any action on the part
-of the new chair. As with above, if it has not happened within
-72 hours of the resolution passing, contact the secretary to remind them.
-
-- Check out the link:https://svn.apache.org/repos/private/foundation/officers[*foundation/officers*] folder from the private repository.
-Users with member or pmc-chairs karma can do this.
-- Add yourself to the #foundation/officers/affiliations.txt# file with the appropriate information.
-- Add your details to the foundation web site Officer list at link:http://www.apache.org/foundation/index.html[http://www.apache.org/foundation/index.html]
-(in SVN at link:https://svn.apache.org/repos/asf/infrastructure/site/trunk/content/foundation/[https://svn.apache.org/repos/asf/infrastructure/site/trunk/content/foundation/])
-- Review appropriate documentation:
-** link:http://www.apache.org/dev/pmc.html#chair[PMC Chair Duties]
-** PMC link:http://www.apache.org/dev/#pmc[documentation]
-** Incubator link:http://incubator.apache.org/guides/chair.html[Chair guide]
-** Reporting link:http://www.apache.org/foundation/board/calendar.html[calendar]
-- Understand the reporting schedule with the link:/guides/roles_and_responsibilities.html#board[Board]. For
-the first three months after graduation this will
-be monthly. After that, the project should slot
-into a quarterly reporting schedule. Now is a good time to remove
-the project from the Incubator reporting schedule by updating the podlings.xml file. See link:/cookbook/podlings-xml.html#graduated_as_an_apache_tlp[Podling XML Examples].
-- Ensure the PMC is added to the committee-info.txt file at https://svn.apache.org/repos/private/committers/board/committee-info.txt
-There are 3 sections which need to be updated; see instructions in the file, otherwise update it in link:https://whimsy.apache.org/roster/[Whimsy's Roster Tool]
-You may need to get a member to help with this, such as your mentors.
-- They should then be able to start assembling the new
-link:http://www.apache.org/foundation/how-it-works.html#structure[PMC].
-The starting membership is listed in the
-link:graduation.html#preparing_a_charter[resolution]. However, the Chair of the new project
-needs to ensure that private list is created and the
-membership subscribed.
-
-===== PMC Todo List
-
-Once appointed, Members of the new PMC need to:
-
-- Subscribe to the private mailing list for the project, if they aren't already subscribed from their PPMC membership.
-- Review appropriate documentation:
-** Apache link:http://www.apache.org/dev/pmc.html[PMC Guide]
-** Related link:http://www.apache.org/dev/#pmc[documentation]
-
-Once all this is in place, resources can start to be
-handed over to the new project. See next section.
-
-IMPORTANT: Please continue to hang around the Incubator and help
-new podlings have an easier time than you did!
-
-=== First Steps Outside the Incubator
-
-Graduation is the first step in what is hopefully a long road.
-There are some issues which incubation may not cover.
-
-==== Transferring Resources
-
-IMPORTANT: Starting the following steps require that the resolution was passed by the board.
-
-When a project graduates, then the infrastructure
-resources (mailing lists, websites, source, etc.) need to
-be transferred from the Incubator to a project's new home.
-
-Although the below checklist is still generally useful, *the infrastructure process has been streamlined*, see
-link:http://www.apache.org/dev/infra-contact#requesting-graduation[requesting graduation].
-You might also want to check JIRA checklist tickets for projects that graduated in the last month or two.  This process is known as "TLP Parent Request"
-
-Checklist:
-
-- Update the Incubator status records
-** Like the rest of incubation, graduation is a process. Updating your status records as you progress will enable others to assist.
-** Update the podling status page.  All sections should now be filled in
-including *EXIT*. Take some
-time to read carefully since this page
-forms the final public record for
-graduation.
-
-- Source
-** Git repositories will be renamed to drop the `incubator-` prefix, please ensure that developers change their remotes.
-After you've created the TLP request, request the rename.
-** SVN repositories will be moved from the incubator to other locations, if you need the move done please raise an infra ticket after the TLP Parent Request.
-** Post an announcement to the development list telling everyone that the repository is about to be moved
-** Post an announcement containing instructions for developers describing how to #svn switch# their workspaces
-** Update site, jenkins, wikis, *pom.xml* and other resources to point to the new repository location.
-
-- Websites
-** Since podlings receive standard domains, no changes are required
-** Once graduated, your website will automatically redirect to remove the *incubator* subdomain
-** If you have any fully qualified links to your *podling.incubator.apache.org* on your website change them
-
-- Mailing lists
-** Mailing lists no longer need to get moved, since podlings are given standard domains.
-** If you use *podling.incubator.apache.org* format email addresses, please start using *podling.apache.org*
-** When using Maven: update *pom.xml* for
-the new mailing list address(es). Also update any
-documents on your website that show how to
-subscribe to the lists and/or find archives.
-** Check project-private mailing list membership.  Mentors should be allowed to remain if they wish to do so.
-The subscriber list should otherwise match that on the resolution. See link:http://www.apache.org/dev/committers.html#mail-moderate[this] and the link:http://www.ezmlm.org/[EZMLM] "Moderator's and Administrator's Manual".
-** Update mail addresses including:
-*** confluence commit messages (see adminstration documentation)
-*** issue tracking messages (see administration documentation)
-*** The chair should have karma to perform these tasks.
-** Double-check that all of your lists have sufficient active link:http://www.apache.org/dev/committers.html#mailing-list-moderators[moderators].
-
-- Issue Tracking
-** Ask infra to move the podling to its own top level category in JIRA, if using JIRA
-
-- Distribution mirrors
-** Dist area (dist.apache.org) *release/${project}* and *dev/${project}* folders can be created by PMC members. 
-*** Do not forget to copy KEYS file from *release/incubator/${project}* location.
-*** You have two major options then:
-**** you can *keep* incubating released artifacts at *release/incubator/${project}* and remove artifacts once your TLP project does their first release.
-+
-NOTE: File a JIRA under your newly JIRA *${project}* space to remind to remove */dist/incubator/${project}/* after the first release in */dist/${project}/*
-+
-**** you can *move* the last incubating released artifacts to your *release/${project}*, taking care that incubating stay in path (you will need to
-change website and mail for the new location)
-
-=== Final Revision of Podling Incubation Records
-
-When a project has finished its graduation steps, then the incubator resources
-need to be updated to indicate that the project is no
-longer incubating. Here are a few of the items that need
-to be done:
-
-- Update the svn *incubator/trunk/content/projects/${project}.xml* file to show the project's status.
-
-- Update the podling summary metadata file, *incubator/trunk/content/podlings.xml* svn file.  See the content/podlings.dtd and follow 
-link:/cookbook/podlings-xml.html#graduated_as_an_apache_tlp[Podling XML Examples]:
-** Change the podling status to "graduated"; (The only acceptable status are "current", "graduated", and "retired". "graduating" will make your podling disappear from several incubator pages.)
-** add the "enddate" attribute to document when the project graduated;
-** add the "resolution" element (see other project examples);
-** remove the "reporting" element.
-
-- After your project has finished reporting to the Incubator, then remove the "reporting" element from that *podlings.xml* file.
-- Ensure that other svn resources for your project have moved to your new home.
-- Review this whole graduation guide.
-
-*NOTE: Please edit this guide to add missing steps and clarifications.*
-
-=== New Responsibilities
-==== Oversight
-
-During the stay in the Incubator, the
-link:/guides/roles_and_responsibilities.html#incubator_project_management_committee_ipmc[Incubator PMC (IPMC)]
-was responsible to the
-link:/guides/roles_and_responsibilities.html#the_board[Board]
-for oversight. A graduated project must now take
-responsibility for its own oversight.
-
-A project needs to ensure that its code base is
-clean from an IP perspective. New committers need to
-recruited, educated and mentored. Quality releases
-need to be cut. Community spirit needs to be maintained
-and conflicts resolved positively. Board reports need
-to be accurate and prompt.
-
-Help is still available but the
-appropriate bodies (infrastructure, community, legal
-and so on) should now be approached directly.
-
-==== Security
-
-Each project needs to be able to manage security issues
-discovered in their code. By their nature, these issues
-need to be dealt with in private. These issues may either
-be dealt with on a separate security list or on the
-private list. Which list is suitable for security issues
-should be noted.
-
-Volunteers need to be found from the
-link:http://www.apache.org/foundation/how-it-works.html#structure[PMC]
-to work with the link:https://www.apache.org/security/committers.html[Apache security team] and act as
-first contacts on security matters. The new project
-should make contact with the team soon after graduation
-and not wait for the first issue to be raised.
-
-Projects should adopt a positive attitude towards
-security issues. It is easy to gain a poor reputation
-by mishandling of these issues. There are many people
-at Apache with considerable experience in this area
-so ask first.
-
-==== Stay In Touch
-
-Passing through the incubation process gives a very
-valuable perspective. Please help to improve the process
-by guiding new podlings and by developing improved policy
-and documentation on the link:lists.html#general+at+incubator.apache.org[general] list.
diff --git a/pages/guides/transitioning_asf.ad b/pages/guides/transitioning_asf.ad
deleted file mode 100644
index 6e8e4c2..0000000
--- a/pages/guides/transitioning_asf.ad
+++ /dev/null
@@ -1,142 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Initial Code Import
-Apache Incubator PMC
-2002-10-16
-:jbake-type: guide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-For corporate contributions, you MUST complete and submit the SGA or CCLA, and Apache must receive it, before you import code.
-
-For contributions composed of patches from individual contributors,
-it is safe to import the code once the major contributors (by volume)
-have completed ICLAs or SGAs.
-
-In either case, attach the code to be imported to a JIRA ticket and then import it. We recommend that you tag the previous version
-control system so we know the precise version you are importing.
-
-You MUST make a public record of the code you import. If you do not attach the import to a JIRA ticket, you MUST committed it to version control.
-
-== Importing History
-
-You can commit the incoming code as a snapshot or as a complete version
-control export, including history (provided that the import is available in a format
-readable by Github or Subversion, depending on where the new repository is).
-Importing with history allows existing open source projects that want to maintain
-older versions at Apache to easily perform source diffs and so on. Importing just the
-latest code allows a clean break to be made with the past. The choice is left to
-the community of the incoming project.
-
-== Audit Cryptography
-
-Before you commit the code base into an Apache repository, the contribution
-link:http://www.apache.org/dev/crypto.html[MUST] be checked
-and any restricted cryptography reported appropriately. Read and follow
-link:http://www.apache.org/dev/crypto.html[this guide].
-
-== Initial Clean Up
-
-Once you have created a JIRA ticket, it is time to clean up the source code.
-
-- Ensure source files use the standard Apache boilerplate headers. This may mean replacing existing license headers. The tools in link:https://svn.apache.org/repos/private/committers/tools[private/committers/tools] and link:https://svn.apache.org/repos/private/committers/relicense[private/committers/relicense] may be useful.
-- Ensure that NOTICE and LICENSE documents are present and correct.  Mentors should assist with this.
-- Add any required notices. Consider moving copyright attributions from source documents to the NOTICE file. Read the link:http://www.apache.org/legal/src-headers.html[Apache policy on headers].
-- Audit the source for any potential licensing issues. Resolve any issues you find immediately or note them in the status document for later attention.
-
-
-We recommend that you start the initial cleanup before you commit the code. You MUST complete it before creating any
-releases.
-
-== Clean Up Best Practice
-
-We recommend that you use version control to create a
-public record of the cleanup process. This will assist anyone
-auditing code provenance (now or in the future) to
-easily perform due diligence without having to contact the people
-who performed the cleanup. The cleanup process should
-therefore clearly document (using version control) the
-evolution of the IP licensing.
-
-Take particular care with commit messages
-during cleanup. The intended audience needs to include
-lawyers and code auditors. Members of the public need to be
-able to follow and understand the process from these
-messages alone.
-
-We therefore recommend that, after you expand the initial source from the archive) you check it into a special directory (we suggest *${project}/trunk/import*) as is. This will preserve the original packaging, copyright statements
-and license notices. Add the standard Apache
-LICENSE and an appropriate NOTICE at the top
-for the copyright for the collective work (see link:http://www.apache.org/legal/src-headers.html[policy]). Take particular care with this commit message. As with
-any patch that contains code which is not the original work
-of the committer, you need to include the url of the Jira ticket (for the artifact imported), together with notes about the original
-copyright owner and any associated paperwork. Note that this is an exact import including original headers, to stop any queries about these foreign headers.
-
-The cleanup should then proceed in a number of commits. If
-the source provenance is complex, break the process into
-a number of logical steps, committing each in turn with a
-good message.
-
-In particular, take care when relocating copyright
-statements and license notices into the NOTICE in the root
-directory: consider moving each copyright owner individually
-so that it is easier to audit. (See link:http://www.apache.org/legal/src-headers.html#notice[policy].)
-
-Once you have cleaned up (and link:#repackaging[repackaged], if necessary) a section of code, normal development on it can begin.
-
-== On Repackaging
-
-We recommend - but do not require - that you repackage source code
-under the Apache namespace. There is no need to use the incubator
-namespace. For example, you might repackage Java source code to
-*org.apache.foo.Bar* or a DTD to *http://podling.apache.org/foo/bar*.
-
-Existing open source projects moving to Apache may need to consider
-carefully how they will approach this transition.
-
-== Update Documents
-
-Check the documentation for references to the old home of the project and update them
-with references to Apache.
-
-Read the Apache link:http://incubator.apache.org/guides/branding.html[Branding Guide].
-Add appropriate disclaimers to the appropriate documentation.
-Consider adding a *DISCLAIMER* text document.
-
-=== Update Build
-
-If the project uses link:http://maven.apache.org[Apache Maven], you need to update the pom to reflect that the project is now at Apache. In particular:
-
-- Update *mailingLists*
-- Update *organization*
-- Update *url*
-- Update *issueManagement*
-- Check *licenses*
-- Update *scm*
-- Update *groupId*
-- Update *manifestEntries*. We recommend that you use the standard Apache settings
-- Update *developers* to use apache IDs (when known)
-- Update *distributionManagement*
-- Consider specifying a link:http://maven.apache.org/pom.html#relocation[relocation]
-
-If the project uses link:http://ant.apache.org[Apache Ant], the build script
-will probably need to be updated. In particular:
-- Ensure any MANIFESTs generated refer to Apache. We recommend that you use the standard Apache settings.
-- Check that *LICENSE*, *NOTICE* and - if appropriate - *DISCLAIMER* documents are copied into binary artifacts
-
-== Issue Tracking Transition
-
-We track issues for Apache projects on Apache hardware. Some projects arrive
-with existing issue tracking systems. The project needs to move, for new development
-at least, to an Apache issue tracker. Discuss options and reach a consensus on the public dev@ email list about the best transition strategy.
diff --git a/pages/guides/website.ad b/pages/guides/website.ad
deleted file mode 100644
index 7a4d7a3..0000000
--- a/pages/guides/website.ad
+++ /dev/null
@@ -1,57 +0,0 @@
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-= Updating the top-level Incubator website
-Apache Incubator PMC
-2002-10-16
-:jbake-type: pmcGuide
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-== Repository
-
-The Incubator website is generated from the content link:https://github.com/apache/incubator[here]. See instructions
-there for how to edit and publish the website.
-
-The system reports website build failures to *cvs AT incubator.apache.org*.
-
-== Maintaining Status files
-
-Podling status files are in SVN, and you should continue to maintain them at https://svn.apache.org/repos/asf/incubator/public/trunk/content/projects/ .
-
-Podling status files are in a particular XML format which the Clutch Analysis expects.
-
-Extra podling yaml files that communicate with Whimsy are also in SVN, and you should maintain them at https://svn.apache.org/repos/asf/incubator/public/trunk/content/podlings/ .
-
-== IP Clearance
-
-IP Clearance is in SVN, and you should continue to maintain it at https://svn.apache.org/repos/asf/incubator/public/trunk/content/ip-clearance/ .
-
-== Building
-
-The website metadata is built by this link:https://ci-builds.apache.org/job/Incubator/job/Incubator-SVN-Clutch-Analysis-part-1/[Clutch Jenkins job],
-and the website is built by this link:https://ci-builds.apache.org/job/Incubator/job/Incubator-GIT-Site-part-2/[Website Jenkins job].
-If you have karma you can trigger a build yourself.
-Commits to the git repo trigger builds automatically, and the website builds daily for other changes after midnight UTC.
-Commits to the svn repo trigger builds automatically as well using this link:https://ci-builds.apache.org/job/Incubator/job/Trigger-Clutch-Analysis-on-SVN-Change/[SVN Trigger Jenkins job].
-
-== Help Wanted!
-People with commit access to the "incubator" git repository (any ASF Member and
-any committer to a current podling in incubation) can edit the source
-documents in the "content" directory. So you can all help to
-keep your project's Status page up-to-date. If you find problems with
-the "guidelines" docs, you can immediately fix them.
-If you are unsure, discuss your proposed changes on the general mailing list.
-Note that the "policy" documents need special treatment and discussion on the general mailing list.
-
-Anyone else can send patches to those documents to the link:https://issues.apache.org/jira/projects/INCUBATOR[INCUBATOR issue tracker].
diff --git a/pages/improvement_plans.ad b/pages/improvement_plans.ad
deleted file mode 100644
index d0d5116..0000000
--- a/pages/improvement_plans.ad
+++ /dev/null
@@ -1,204 +0,0 @@
-= Improvement Plans (PROPOSED / DRAFT)
-Apache Incubator PMC
-2019-03-26
-:jbake-type: simplepage
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: /images/
-
-PROPOSAL / DRAFT / PROPOSAL / DRAFT / PROPOSAL / DRAFT / PROPOSAL / DRAFT / PROPOSAL
-
-This page is for gathering together various improvement plans and prospective implementations for the Incubator.
-We will gather improvements by category, date, name, JIRA issue, email threads, and coordination required.
-
-== 1. Policies
-
-Edits to policy documents on the site. Changes to properly follow Foundation policy. Improvements to Incubator Policy.
-These are changes that will require discussion on general@ and be resolved by Consensus.
-
-[cols="5*<",options="header"]
-[%autowidth]
-|===
-|link:#h-date[Date,title=Date Entered]
-|link:#h-name[Name,title=Name of the Improvement]
-|link:#h-jira[JIRA Issue,title=Incubator JIRA issue link]
-|link:#h-date[Email Threads,title=Links to any email discussion threads. Use lists.apache.org]
-|link:#h-notes[Notes,title=Quick notes about this topic]
-
-|03/25/19
-|Clean Up Retired Podling Repositories
-|https://issues.apache.org/jira/browse/INCUBATOR-233[INCUBATOR-233]
-|https://lists.apache.org/thread.html/4a6980ee6ae55207b776c9c8cdab6afd7c64727fa4b8ce3638a9b1f0@%3Cgeneral.incubator.apache.org%3E[policy discussion]
-|Infra request. We should define when we should remove a retired repository and then make that change. Same rule needs to apply to distributions and archives.
-
-|02/03/15
-|Clarify whether incubator release announcement should include an incubation disclaimer
-|https://issues.apache.org/jira/browse/INCUBATOR-129[INCUBATOR-129]
-|
-|If we want to make this policy then we'll need to update the press policy and communicate the change.
-
-|02/10/07
-|Define roles and procedures for Incubator PPMC
-|https://issues.apache.org/jira/browse/INCUBATOR-54[INCUBATOR-54]
-|
-|Check if there is anything useful to learn from the topic.
-
-|07/19/06
-|Clarify Role of Champion And Consolidate Policy
-|https://issues.apache.org/jira/browse/INCUBATOR-33[INCUBATOR-33]
-|
-|There has been some discussion around this role and it might be worth focusing on this in the future.
-
-|01/07/06
-|Incubation_Policy.html should specify to use the Incubator PMC
-|https://issues.apache.org/jira/browse/INCUBATOR-10[INCUBATOR-10]
-|
-|This is about the Sponsor role. It will be worth discussing in the future the best way to rewrite the Sponsor role.
-
-|===
-
-== 2. Guides
-
-Guides that are missing. Guidance that is unclear. Leave a clear trail and we can review the completed change.
-
-[cols="5*<",options="header"]
-[%autowidth]
-|===
-|link:#h-date[Date,title=Date Entered]
-|link:#h-name[Name,title=Name of the Improvement]
-|link:#h-jira[JIRA Issue,title=Incubator JIRA issue link]
-|link:#h-date[Email Threads,title=Links to any email discussion threads. Use lists.apache.org]
-|link:#h-notes[Notes,title=Quick notes about this topic]
-
-|03/27/19
-|Incubator Cookbook
-|https://issues.apache.org/jira/browse/INCUBATOR-234[INCUBATOR-234]
-|https://lists.apache.org/thread.html/51fe5d659778bed5b6385c7c39bbdf688d02f1b1dbe02d595d514cbb@%3Cgeneral.incubator.apache.org%3E[Thread 03/26]
-|This effort is to rewrite the Incubator site as a friendly cookbook.
-
-|11/17/17
-|Transferring guide needs an editing pass
-|https://issues.apache.org/jira/browse/INCUBATOR-208[INCUBATOR-208]
-|
-|
-
-|06/26/17
-|Graduation steps guide enhancements
-|https://issues.apache.org/jira/browse/INCUBATOR-202[INCUBATOR-202]
-|
-|Discuss instructions with Infra
-
-|05/27/13
-|Sometimes its not clear that the who vets the podling name
-|https://issues.apache.org/jira/browse/INCUBATOR-126[INCUBATOR-126]
-|
-|Make only clarifying adjustments so it is clear that the podling does the search.
-
-|04/07/12
-|Instructions for updating main Incubator site post-graduation
-|https://issues.apache.org/jira/browse/INCUBATOR-124[INCUBATOR-124]
-|
-|Discuss instructions with Infra
-
-|11/18/07
-|Communication Guide
-|https://issues.apache.org/jira/browse/INCUBATOR-70[INCUBATOR-70]
-|
-|Some of these ideas are outdated, but some of these might be useful community building advice.
-
-|===
-
-== 3. Workflow
-
-This category is for more structural improvements like changing the build and updating IP record keeping.
-
-[cols="5*<",options="header"]
-[%autowidth]
-|===
-|link:#h-date[Date,title=Date Entered]
-|link:#h-name[Name,title=Name of the Improvement]
-|link:#h-jira[JIRA Issue,title=Incubator JIRA issue link]
-|link:#h-date[Email Threads,title=Links to any email discussion threads. Use lists.apache.org]
-|link:#h-notes[Notes,title=Quick notes about this topic]
-
-|03/05/19
-|Cleanup Git-generated Incubator website
-|https://issues.apache.org/jira/browse/INCUBATOR-231[INCUBATOR-231]
-|https://lists.apache.org/thread.html/2b12f80a960510985ef00f65fb3a7f007255be6c02733e86bf21cdc2@%3Cgeneral.incubator.apache.org%3E[Clutch2 Announce]
-|We now have new projects and clutch pages. The podling status pages are still in the old style. There are some open questions about the yml content that is managed from the podling roster page.
-
-|05/22/17
-|Extend podlings.xml to include old names and TLP parent
-|https://issues.apache.org/jira/browse/INCUBATOR-199[INCUBATOR-199]
-|
-|This is a proxy issue. The topic here is to improve the maintenance of our podling roster. I think we should work with the Whimsy PMC to improve maintenance of the podling roster.
-
-|04/23/08
-|IP Clearance Template is rubbish
-|https://issues.apache.org/jira/browse/INCUBATOR-74[INCUBATOR-74]
-|
-|This is meant to be provocative. I think we can work with the Whimsy PMC to improve how we keep and manage IP Clearances for TLPs.
-
-|===
-
-== 4. Operations
-
-This category is for cosmetic improvements, minor issues, and operational issues.
-
-[cols="5*<",options="header"]
-[%autowidth]
-|===
-|link:#h-date[Date,title=Date Entered]
-|link:#h-name[Name,title=Name of the Improvement]
-|link:#h-jira[JIRA Issue,title=Incubator JIRA issue link]
-|link:#h-email[Email Threads,title=Links to any email discussion threads. Use lists.apache.org]
-|link:#h-notes[Notes,title=Quick notes about this topic]
-
-|06/18/18
-|Incorrect bounce message for retired podling mailing lists
-|https://issues.apache.org/jira/browse/INFRA-18132[INFRA-18132]
-|
-|For example the link should be https://incubator.apache.org/projects/#slider - moved the issue to INFRA.
-
-|09/16/16
-|Missing archiver/archives for dev@incubator - is it needed?
-|https://issues.apache.org/jira/browse/INCUBATOR-201[INCUBATOR-201]
-|https://lists.apache.org/thread.html/f32f24c141a0f9aedaa660a5b6306280d6430089b00ac468b05e7c5e@%3Cgeneral.incubator.apache.org%3E[Thread 03/25/19]
-|Once we agree to remove these accidental mailing lists work with Infra.
-
-|04/04/17
-|clean up archive.a.o
-|https://issues.apache.org/jira/browse/INCUBATOR-198[INCUBATOR-198]
-|
-|Once we decide which retired podlings need cleanup then apply the same with the archive. Work with Infra if necessary.
-
-|===
-
-=== Column Notes
-
-[[h-date]]
-==== Date
-
-The date the JIRA issue was created or a thread was started about the improvement.
-
-[[h-name]]
-==== Name
-
-A descriptive name for the improvement. Should be similar to the original subject whether JIRA or Email.
-
-[[h-jira]]
-==== JIRA Issue
-
-A link to the JIRA issue. `https\://issues.apache.org/jira/projects/INCUBATOR/issues/INCUBATOR-231[INCUBATOR-231]`
-
-[[h-email]]
-==== Email Threads
-
-Permalinks to discussions. Please use lists.apache.org. Don't use nabble or gmane, we have guarantees about apache.org uris and none about third parties.
-There are a number of ten or more year old discussions that will be difficult to single out due to gmane changes.
-
-[[h-notes]]
-==== Topic Notes
-
-Questions for the team. Information about the change. There may be dependencies. Some changes will require working with others in the organization including INFRA, Whimsy, Legal, ...
diff --git a/pages/index.ad b/pages/index.ad
deleted file mode 100644
index a25d8bd..0000000
--- a/pages/index.ad
+++ /dev/null
@@ -1,45 +0,0 @@
-= The Apache Incubator
-Apache Incubator PMC
-2002-10-16
-:jbake-type: homepage
-:jbake-status: published
-:idprefix:
-:imagesdir: ./images/
-
-== About The Incubator
-
-The Apache Incubator provides services to projects which want to enter the Apache Software Foundation (ASF).
-
-It helps those incoming projects (called "podlings") adopt the Apache link:http://apache.org/theapacheway/[style of governance and operation] and guides them to the ASF services available to our projects so they can become top-level ASF projects ("TLPs").
-
-The Incubator delegates a few mentors for each podling to act as liaisons with the various ASF teams: link:http://incubator.apache.org/whoweare.html#the_incubator_project_management_commitee_pmc[Incubator PMC], link:https://selfserve.apache.org/[Infrastructure team], etc., and facilitate the podling's growth and operations.
-
-=== Incubator History
-
-The Incubator was created link:https://www.apache.org/foundation/records/minutes/2002/board_minutes_2002_10_16.txt[ in 2002].  As of November 2019 it has helped 315 podlings, of which more than 200 have graduated. More than 300 mentors have guided and supported podlings. There are around 45 or 50 podlings in incubation at any one time, and incubation typically takes 1 1/2 years.
-
-
-=== Incubator Cookbook
-
-Our link:http://incubator.apache.org/cookbook/[cookbook] helps potential podlings decide whether the ASF is a good fit for them and guides them through the steps required to become an ASF podling.
-
-=== Incubator Talks
-
-There have been many Incubator talks at many conferences over the years. Here are a few of them.
-
-  * See a keynote link:https://www.youtube.com/watch?v=TQwrH0PlpZg[The Apache Way], by Rich Bowen at MesosCon Europe in 2017 for a  good background of how the ASF operates and what its values are.
-  * For guidance on releases see link:https://www.youtube.com/watch?v=I0-lp1t9ee0[How to get your release through the Incubator] presented at ApacheCon North America 2017 and this link:http://training.apache.org/topics/ApacheWay/NavigatingASFIncubator/index.html[slide deck], presented at ApacheCon North America 2019.
-  * A more general talk on link:https://www.youtube.com/watch?v=hpAv54KIgK8[Effective open source management] by Shane Curcuru, from ApacheCon North America 2017.
-  * For how to get out of the Incubator and become a successful TLP see John D. Ament talk link:https://www.youtube.com/watch?v=yWurOHvm5WM[Navigating the Incubator Trenches] from ApacheCon North America 2017.
-  * link:https://www.youtube.com/watch?v=SCDv2hUgOjU[Apache Incubator: the gateway into the Apache Way] by Roman Shaposhnik and Suresh Marru at ApacheCon North America 2014.
-  * See also the link:http://www.youtube.com/watch?v=KopPbWS87fw[Life In The Apache Incubator video], in which former Incubator PMC chair Jukka Zitting presents the Incubator, from ApacheCon Europe 2012.
-
-== About The Apache Software Foundation
-
-The Apache Software Foundation provides organizational, legal, and financial support for a broad range of open source software projects.
-
-The Foundation provides an established framework for intellectual property and financial contributions that simultaneously limits potential legal exposure for the contributors.
-
-Through a collaborative and meritocratic development process known as "link:http://apache.org/theapacheway/[the Apache Way]", Apache projects deliver enterprise-grade, freely-available software products that attract large communities of users.
-
-The pragmatic and business-friendly link:http://apache.org/licenses/LICENSE-2.0[Apache License] makes it easy for all users, commercial and individual, to deploy Apache products. link:http://www.apache.org/foundation/[Learn more about the ASF] as a whole, or engage with the link:https://community.apache.org/[Apache Community Development] project with your general questions about the ASF.
diff --git a/pages/past_podlings.ad b/pages/past_podlings.ad
deleted file mode 100644
index 8b1be45..0000000
--- a/pages/past_podlings.ad
+++ /dev/null
@@ -1,7 +0,0 @@
-= Apache Incubator
-Apache Incubator PMC
-2002-10-16
-:jbake-type: retired
-:jbake-status: published
-:idprefix:
-:imagesdir: ./images/
diff --git a/pages/policy/incubation.ad b/pages/policy/incubation.ad
deleted file mode 100644
index 3f84266..0000000
--- a/pages/policy/incubation.ad
+++ /dev/null
@@ -1,164 +0,0 @@
-= Incubation Policy
-Apache Incubator PMC
-2002-10-16
-:jbake-type: policy
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: ../images/
-
-In October 2002 the Board of Directors of the Apache Software Foundation passed 
-a resolution to establish the Apache Incubator PMC. Quoting the 
-link:https://www.apache.org/foundation/records/minutes/2002/board_minutes_2002_10_16.txt[October 16th, 2002 Board Minutes]:
-
-[quote, ASF Board Meeting, October 16th 2002]
-...establish a Project Management Committee charged with
-       accepting **new products** into the Foundation, providing **guidance
-       and support** to help each new product engender their own
-       collaborative community, **educating new developers in the
-       philosophy and guidelines** for collaborative development as
-       defined by the members of the Foundation, and proposing to the
-       board **the promotion of such products to independent PMC
-       status** once their community has reached maturity.
-
-See the October 2002 link:https://www.apache.org/foundation/board/calendar-1999-2004.html#2002 [Board report] for the resolution.
-
-The Incubator has the following responsibilities:
-
-- Welcoming new Podlings to become part of the Apache Software Foundation (ASF).
-- Guiding Podlings to govern and grow their communities according to *link:https://www.apache.org/theapacheway/[the Apache Way]*, the ASF's philosophy and guidelines for collaborative development.
-- Reporting monthly to the board on the progress of Podlings.
-- Graduating Podlings to top level Apache Software Foundation projects.
-- Retiring Podlings when needed.
-- Accepting IP donations.
-
-== About this Document
-
-This document is the reference for the policies and procedures put in place by the Incubator PMC for the incubation process. 
-
-The document makes use of the terms MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, SHOULD, SHOULD NOT, RECOMMENDED, MAY and OPTIONAL. Where capitalized, we use these terms as defined in link:http://www.ietf.org/rfc/rfc2119.txt[RFC 2119].
-
-Like many policy documents, this is not the most fun thing to read. Our link:/cookbook[Cookbook] 
-provides more concrete information on the incubation process.
-
-== Scope
-This document contains the minimum requirements and processes that Podlings undergoing incubation MUST meet.
-
-This document does not apply outside the process of incubation.
-
-== Relationship to Other Documents
-This document is the set of requirements for incubation. Where other documents say something different, this document is correct.
-
-== Changing this Document
-The Incubator PMC MUST approve changes to the content of this document.
-
-== Podling Reporting
-Each Podling in Incubation MUST report to the Incubator PMC. Podlings SHALL report monthly for their first three months, after that quarterly. The Incubator PMC MAY, at their discretion, ask a Podlings to report more frequently. The PPMC with the mentor(s) help, MUST produce a report for the Incubator PMC detailing overall progress toward graduation and any issues the Podling has encountered.
-
-== Podling Constraints
-While in Incubation, Podlings are constrained in the actions they can undertake.
-
-=== Website
-There are restrictions on where Podlings can host their websites and what branding they can use on them.
-
-Consult the link:/guides/sites.html[Podling Websites Guide] for the current policies on Podling websites.
-
-=== Branding
-There are restrictions about how Podlings can use their own and other ASF brands and names.
-
-Consult the link:/guides/branding.html[Podling Branding Guide] for details.
-
-=== Publicity
-There are some restrictions about how Podlings can advertise themselves, especially in press releases related to Podlings.
-
-Consult the link:/guides/publicity.html[Podling Publicity Guide] for details.
-
-== Disclaimers
-
-Podling web sites MUST include a clear disclaimer on their
-website and in all documentation, releases and release announcements
-stating that they are in incubation.
-
-A Podling has a choice of two disclaimers: a standard disclaimer or a work-in-progress disclaimer.
-
-Podlings wishing to use a different disclaimer message MUST have the Incubator PMC approve it before use.
-
-==== Standard Disclaimer
-
-Podlings wanting to follow all ASF policy on releases SHOULD use the following 
-text for all disclaimers (replace the underlined text as appropriate):
-
-[quote]
-____
-Apache [.underline]#Podling-Name# is an effort
-undergoing incubation at The Apache Software Foundation (ASF),
-sponsored by the [.underline]#name of Apache TLP sponsor#. Incubation is required of all
-newly accepted projects until a further review indicates that the
-infrastructure, communications, and decision making process have
-stabilized in a manner consistent with other successful ASF projects.
-While incubation status is not necessarily a reflection of the
-completeness or stability of the code, it does indicate that the
-project has yet to be fully endorsed by the ASF.
-____
-
-For releases, the text SHOULD be included in a separate DISCLAIMER file
-stored alongside the NOTICE and LICENSE files.
-
-==== Work In Progress Disclaimer
-
-Podling wishing to make releases that may not follow all ASF policy SHOULD use the
-following disclaimer (replace the underlined text where needed):
-
-____
-Apache [.underline]#Podling-Name# is an effort
-undergoing incubation at The Apache Software Foundation (ASF),
-sponsored by the [.underline]#name of Apache TLP sponsor#. Incubation is required of all
-newly accepted projects until a further review indicates that the
-infrastructure, communications, and decision-making process have
-stabilized in a manner consistent with other successful ASF projects.
-While incubation status is not necessarily a reflection of the
-completeness or stability of the code, it does indicate that the
-project has yet to be fully endorsed by the ASF.
-
-Some of the incubating project's releases may not be fully compliant
-with ASF policy. For example, releases may have incomplete or
-un-reviewed licensing conditions. What follows is a list of
-issues the project is currently aware of (this list is likely to be incomplete): 
-[.underline]#List of known issues goes here#
-
-If you are planning to incorporate this work into your
-product/project, please be aware that you will need to conduct a
-thorough licensing review to determine the overall implications of
-including this work. For the current status of this project through the Apache
-Incubator, visit: 
-https://incubator.apache.org/projects/[.underline]#Apache Podling-Name#.html
-____
-
-For releases, the text SHOULD be included in a separate DISCLAIMER-WIP file
-stored alongside the NOTICE and LICENSE files.
-
-== Releases
-
-See the guidelines for link:/guides/releasemanagement.html[Podling releases] for good practices for making releases. The Podling can make
-link:guides/releasemanagement.html#requesting_feedback_on_interim_non_asf_releases[non-ASF releases] while incubating as long as it is moving towards making ASF releases.
-
-Podlings are not yet fully accepted as official projects within the Apache Software Foundation. Podlings MUST NOT perform any ASF releases of software without the approval of the Incubator PMC. When a Podling decides it wants to make an ASF release, the Podling MUST hold a vote on their public dev list. At least three +1 PPMC votes are required (see the http://www.apache.org/foundation/voting.html[Apache Voting Process] page) and more +1 votes than -1 votes. If the vote passes, the Podling MUST send a summary of that vote to the Incubator's link:/howtoparticipate.html#Mailing+lists[general] list and request that the Incubator PMC approve the release. Three +1 Incubator PMC votes are required to approve a release. Below is an example showing how an incubating project managed this process:
-
-- link:++https://lists.apache.org/thread.html/7e9c475d07c0e12f813226aa123f54969ebb21a2277b32e9bd366d96@%3Cdev.plc4x.apache.org%3E++[Post to the Podling dev list calling the vote.]
-- link:++https://lists.apache.org/thread.html/06655226ba08c16a8cb273f9b45e0b0a15ebaed0d06783fdd06a03f6@%3Cgeneral.incubator.apache.org%3E++[Post to the Incubator's general list requesting approval from the Incubator PMC.]
-
-Should the Incubator PMC vote to approve a release, the Podling MAY make that release available to the public under these conditions:
-
-- The release archive(s) MUST include the word "incubating" in the filename.
-- The release archive(s) MUST contain a disclaimer (see above), which SHOULD be placed in a DISCLAIMER or DISCLAIMER-WIP file.
-
-Releases for the *Podling* MUST be distributed through *++http://www.apache.org/dist/incubator/++_Podling_* The Podling MAY choose to distribute approved releases through other channels by following the link:https://incubator.apache.org/guides/distribution.html[guidelines here].
-
-== Adding PPMC members
-After voting someone into the PPMC on the PPMC private list, the Podling MUST send a NOTICE email to the private@incubator list. The PPMC MUST wait for 72 hours before inviting the new PPMC member to join the PPMC. See link:https://incubator.apache.org/guides/ppmc.html#voting_in_a_new_ppmc_member[Voting in a new PPMC member].
-
-== Joining the IPMC
-As with all PMCs, new the IPMC votes on proposed members on the private@incubator list. After a vote has finished, the IPMC MUST send a NOTICE email to the board and then wait for 72 hours before inviting the proposed member. Any ASF member can ask to be an IPMC member, without a vote, but the IPMC MUST still give notice to the board.
-
-== Termination
-The Incubator PMC SHOULD notify a Podling of any policy violations. It MAY consider termination of a Podling that does not correct such violations. 
diff --git a/pages/projects/index.ad b/pages/projects/index.ad
deleted file mode 100644
index f7d746c..0000000
--- a/pages/projects/index.ad
+++ /dev/null
@@ -1,8 +0,0 @@
-= All Incubator Projects By Status
-Apache Incubator PMC
-2002-10-16
-:jbake-type: projectspage
-:jbake-status: published
-:idprefix:
-:imagesdir: ./images/
-
diff --git a/pages/whoweare.ad b/pages/whoweare.ad
deleted file mode 100644
index 58939d9..0000000
--- a/pages/whoweare.ad
+++ /dev/null
@@ -1,43 +0,0 @@
-= Who We Are
-Apache Incubator PMC
-2002-10-16
-:jbake-type: simplepage
-:jbake-status: published
-:idprefix:
-:toc:
-:imagesdir: /images/
-
-[NOTE]
-====
-We ask that you please do not send us emails privately asking for
-support. We are non-paid volunteers who help out with the project and
-we do not necessarily have the time or energy to help people on an
-individual basis. Instead, we have setup mailing lists which often
-contain hundreds of individuals who will help answer detailed
-requests for help. The benefit of using mailing lists over private
-communication is that it is a shared resource where others can also
-learn from common mistakes and as a community we all grow together.
-====
-
-== The Incubator Project Management Commitee (PMC)
-The Incubator PMC is responsible to the link:http://www.apache.org/foundation/board/[Board]
-for the management of the Incubator Project. Only votes cast by members of the incubator PMC
-are binding upon Apache incubator releases. The work that this project is charged with overseeing differs from 
-other projects and so functions a little differently. 
-
-The list of Incubator PMC members can be found at link:http://people.apache.org/phonebook.html?pmc=incubator[people.apache.org].
-
-== Mentors
-
-Each podling status page lists its mentors.  Please see the link:/projects/index.html[summary of Incubator projects].
-
-== Incubator Committers
-
-Each podling status page lists its committers.
-Please see the link:/projects/index.html[summary of Incubator projects].
-
-The list of all Incubator committers can be found on
-link:https://people.apache.org/phonebook.html?unix=incubator[people.apache.org].
-
-There is also a
-link:http://people.apache.org/committer-index.html[list of all Apache committers].
diff --git a/template.md b/template.md
deleted file mode 100644
index a370670..0000000
--- a/template.md
+++ /dev/null
@@ -1,372 +0,0 @@
-## Abstract
-
-Commentary:
-A short descriptive summary of the project. A short paragraph, ideally one sentence in length.
-The abstract should be suitable for reuse in the board resolution used to create the official project upon graduation, as the first paragraph on the podling web site and in the DOAP document.
-
-Examples:
-> Geronimo will be a J2EE compliant container.
-
-> Heraldry will develop technologies around the emerging user-centric identity space.
-
-> Yoko will be a CORBA server.
-
-## Proposal
-
-Commentary:
-A lengthier description of the proposal. Should be reasonably declarative. More discursive material should be included in the rationale (or other later sections).
-
-Example:
-> XAP is to provide an XML-based declarative framework for building, deploying and maintaining rich, interactive, Ajax-powered web applications. A basic principle of XAP is to leverage existing Ajax...
-
-
-### Background
-
-Commentary:
-Provides context for those unfamiliar with the problem space and the history of the project.
-Explain terms whose meanings may be misunderstood (for example, where there is not a single widely adopted definition).
-This content should be capable of being safely ignored by domain experts. It should probably find an eventual home on the Podling website.
-
-Example (Heraldry):
-> To provide some background, the Higgins Project is being actively developed within Eclipse and is a framework that will enable users and enterprises to integrate identity, profile, and relationship information across multiple systems. Using context providers, existing and new systems such as directories, collaboration spaces
-
-
-### Rationale
-
-Commentary:
-Explains why this project needs to exist and why should it be adopted by Apache. This is the right place for discursive material.
-
-Example (Beehive):
->There is a strong need for a cohesive, easy-to-use programming model for building J2EE applications. Developers new to Java are forced to learn a myriad of APIs just to build simple applications; advanced J2EE developers are forced to write tedious plumbing code; and tools authors are limited in what they can do to simplify the experience due to the underlying complexity.
-
-### Initial Goals
-
-Commentary:
-A complex proposal (involving multiple existing code bases, for example) may cause concerns about its practicality. A good way to address these concerns is to create a plan that demonstrates the proposal is feasible and has been carefully thought through.
-
-Many projects will not need this section.
-
-Example (Heraldry):
-> Expansion of Yadis and OpenID libraries into additional languages beyond the existing Python, Ruby, Perl, and PHP libraries
-> OpenID authentication specification revision to fix known security considerations, investigate compatibility with the DIX IETF proposal, describe Yadis integration, and allow either an URL or XRI be used as the End User's Identifier
-
-### Current Status
-
-Commentary:
-This section (and the contained topics) describes the candidate's current status and development practices. This should be an honest assessment balancing these against Apache's principles and development ideals.
-
-For some proposals, this is a chance to demonstrate an understanding of the issues that will need to addressed before graduation. For others, this is a chance to highlight the close match with Apache that already exists. Proposals without an initial code base should just simply state that.
-
-Some proposals name this section criteria (though the term is a little misleading).
-
-#### Meritocracy:
-
-Commentary:
-Apache is a meritocracy.
-
-Once a developer has submitted enough good patches, then it should be natural that they are elected to committer. It should be natural that active committers are elected to the project management committee (PMC).
-
-This process of renewal is vital to the long term health of Apache projects. This is the right place to demonstrate that this process is understood by the proposers.
-
-Example (OFBiz):
-
-> OFBiz was originally created by David E. Jones and Andy Zeneski in May 2001. The project now has committers and users from around the world. The newer committers of the project joined in subsequent years by initially submitting patches, then having commit privileges for some of the applications, and then privileges over a larger range of applications.
-
-Example (Beehive):
-
->We plan to do everything possible to encourage an environment that supports a meritocracy. One of the
-lessons that the XMLBeans committers have learned is that meritocracies don't just evolve from good intentions; they require actively asking the community for help, listing/specifying the work that needs to be done, and keeping track of and encouraging members of the community who make any contributions...
-
-#### Community:
-
-Commentary:
-Apache is interested only in communities.
-
-Candidates should start with a community and have the potential to grow and renew this community by attracting new users and developers. Explain how the proposal fits this vision.
-
-Example (Beehive):
-> BEA has been building a community around predecessors to this framework for the last two years. There is currently an active newsgroup that should help us build a new community at Apache.
-
-Example (WebWork2):
-> The WebWork 2 community has a strong following with active mailing lists and forums.
-
-Example (WADI):
-> The need for a full service clustering and caching component in the open source is tremendous as its use can be applied in many areas, thus providing the potential for an incredibly large community.
-
-#### Core Developers:
-
-Apache is composed of individuals.
-
-It is useful to provide a brief introduction to the developers on the initial committers list. This is best done here (and not in that
-section). This section may be used to discuss the diversity of the core development team.
-
-Example (ServiceMix)
-> The core developers are a diverse group of developers many of which are already very experienced open source developers. There is at least one Apache Member together with a number of other existing Apache Committers along with folks from various companies. http://servicemix.org/Team
-
-Example (WADI)
-> WADI was founded by Jules Gosnell in 2004, it now has a strong base of developers from Geronimo, Castor, OpenEJB, Mojo, Jetty, ActiveCluster, ActiveMQ, and ServiceMix.
-
-#### Alignment:
-
-Describe why Apache is a good match for the proposal. An opportunity to highlight links with Apache projects and development
-philosophy.
-
-Example (Beehive):
-> The initial code base is targeted to run within Tomcat, but the goal is to allow the framework to run on any compliant Servlet or J2EE container. The Web services component, based on JSR-181, will leverage Axis. The NetUI component builds on top of Struts. The underlying Controls component framework uses Velocity. There are other projects that we will need to work with, such as the Portals and Maven projects.
-
-### Known Risks
-
-An exercise in self-knowledge. Risks don't mean that a project is unacceptable. If they are recognized and noted, then they can be addressed during incubation.
-
-### Orphaned products
-
-A public commitment to future development.
-
-Recruiting a diverse development community and a strong user base takes time. Apache needs to be confident that the proposers are committed.
-
-Example (Yoko):
-> The contributors are leading vendors in this space. There is no risk of any of the usual warning signs of orphaned or abandoned code.
-
-Example (Ivy):
-> Due to its small number of committers, there is a risk of being orphaned. The main knowledge of the codebase is still mainly owned by Xavier Hanin. Even if Xavier has no plan to leave Ivy development, this is a problem we are aware of and know that need to be worked on so that the project become less dependent on an individual.
-
-Example (Tika):
-> There are a number of projects at various stages of maturity that implement a subset of the proposed features in Tika. For many potential users the existing tools are already enough, which reduces the demand for a more generic toolkit. This can also be seen in the slow progress of this proposal over the past year.
-> However, once the project gets started we can quickly reach the feature level of existing tools based on seed code from sources mentioned below. After that we believe to be able to quickly grow the developer and user communities based on the benefits of a generic toolkit over custom alternatives.
-
-#### Inexperience with Open Source:
-
-If the proposal is based on an existing open source project with a history of open development, then highlight this here.
-
-If the list of initial committers contains developers with strong open source backgrounds, then highlight this here.
-
-Inexperience with open source is one reason why closed projects choose to apply for incubation. Apache has developed over the years a store of experience in this area. Successfully opening up a closed project means an investment of energy by all involved. It requires a willingness to learn and to give back to the community. If the proposal is based around a closed project and comes with very little understanding of the open source space, then acknowledge this and demonstrate a willingness to learn.
-
-Example (Cayenne):
-> Cayenne was started as an open source project in 2001 and has remained so for 5 years.
-
-Example (Beehive):
-> Many of the committers have experience working on open source projects. Five of them have experience as committers on other Apache projects.
-
-Example (Ivy):
-> While distributed under an open source license, access to Ivy was initially limited with no public access to the issue tracking system or svn repository. While things have changed since then - the svn repository is publicly accessible, a JIRA instance has been setup since june 2005, many new features are first discussed on the forum or JIRA - experience with a true open source development model is currently limited.
-> However, Maarten has already a good experience with true open development process, and bring his experience to the project.
-
-Example
-(River):
-> The initial committers have varying degrees of experience with open source projects. All have been involved with source code that has been released under an open source license, but there is limited experience developing code with an open source development process. We do not, however, expect any difficulty in executing under normal meritocracy rules.
-
-#### Length of Incubation:
-Commentary:
-This section describes how long the project is expected to be in incubation before it's graduation as a top level project and the reasons for that.
-
-This shows the project has thought about the steps required to graduate and that there are not any unrealistic expectations.
-
- #### Homogenous Developers:
-
-Healthy projects need a mix of developers. Open development requires a commitment to encouraging a diverse mixture. This includes the art of working as part of a geographically scattered group in a distributed environment.
-
-Starting with a homogenous community does not prevent a project from entering incubation. But for those projects, a commitment to creating a diverse mix of developers is useful. Those projects who already have a mix should take this chance to highlight that they do.
-
-
-Example (Beehive):
-> The current list of committers includes developers from several different companies plus many independent volunteers. The committers are geographically distributed across the U.S., Europe, and Asia. They are experienced with working in a distributed environment.
-
-Example (River)
-> Since the Jini Technology Starter Kit has been mainly developed to date by Sun Microsystems, the vast majority of initial committers to the
-project are from Sun. Over the years, Sun has received bug fixes and enhancements from other developers which have been incorporated into the code. Our plan is to work with these other developers and add them as committers as we progress.
-> There are three other initial committers (non-Sun): Bill Venners, Dan Creswell, and Mark Brouwer.
-> Bill is the lead of the Service UI API work, Dan has been involved with much Jini-based development, including an implementation of the JavaSpaces service called Blitz <http://www.dancres.org/blitz/>, and Mark is veteran of much Jini-based development, including commercial work at Virgil <http://www.virgil.nl> as well as leading the open source Cheiron <http://www.cheiron.org> project.
-
-Example (Ivy):
-> With only two core developers, at least they are not homogenous! Xavier and Maarten knew each other only due to their common interest in Ivy.
-
-#### Reliance on Salaried Developers:
-
-A project dominated by salaried developers who are interested in the code only whilst they are employed to do so risks its long term health.
-
-Apache is about people, not corporations. We hope that developers continue to be involved with Apache no matter who their current employer happens to be.
-
-This is the right place to indicate the initial balance between salaried developers and volunteers. It's also good to talk about the level of commitment of the developers.
-
-Example (OpenJPA):
-> Most of the developers are paid by their employer to contribute to this project, but given the anticipation from the Java community for the a JPA implementation and the committers' sense of ownership for the code, the project would continue without issue if no salaried developers contributed to the project.
-
-Example (River):
-> It is expected that Jini development will occur on both salaried time and on volunteer time, after hours. While there is reliance on salaried developers (currently from Sun, but it's expected that other company's salaried developers will also be involved), the Jini Community is very active and things should balance out fairly quickly. In the meantime, Sun will support the project in the future by dedicating 'work time' to Jini, so that there is a smooth transition.
-
-Example (Wicket):
-> None of the developers rely on Wicket for consulting work, though two - Martijn and Eelco - are writing Wicket In Action (publisher Manning) in their spare time. Most of the developers use Wicket for their day jobs, some for multiple projects, and will do so for a considerable while as their companies (specifically Topicus, Cemron and Teachscape) choose Wicket as their development framework of choice.
-
-#### Relationships with Other Apache Products:
-
-Apache projects should be open to collaboration with other open source projects both within Apache and without. Candidates should be willing to reach outside their own little bubbles.
-
-This is an opportunity to talk about existing links. It is also the right place to talk about potential future links and plans.
-
-Apache allows different projects to have competing or overlapping goals. However, this should mean friendly competition between codebases and cordial cooperation between communities.
-
-It is not always obvious whether a candidate is a direct competitor to an existing project, an indirect competitor (same problem space, different ecological niche) or are just peers with some overlap. In the case of indirect competition, it is important that the abstract describes the niche accurately. Direct competitors should expect to be asked to summarize architectural differences and similarities to existing projects.
-
-
-Example (OpenJPA):
-> Open JPA will likely be used by Geronimo, requires some Apache products (regexp, commons collections, commons lang, commons pool), and supports Apache commons logging.
-
-Example (River)
-> Currently the only tie to Apache projects is the starter kit's use of the Ant build tool. There are potential future ties (http server, database backend, etc) that will be explored.
-
- #### A Excessive Fascination with the Apache Brand:
-
-Concerns have been raised in the past that some projects appear to have been proposed just to generate positive publicity for the proposers. This is the right place to convince everyone that is not the case.
-
-This is also the right place to build bridges with the community after past misdemeanors (for example, if any of those associated with the proposal have - in the past - sort to associate themselves with the Apache brand in factually incorrect ways) and promise good conduct for the future.
-
-Example (CeltiXfire):
-> While we expect the Apache brand may help attract more contributors, our interests in starting this project is based on the factors mentioned in the Rationale section. However, we will be sensitive to inadvertent abuse of the Apache brand and will work with the Incubator PMC and the PRC to ensure the brand policies are respected.
-
-Example (Wicket):
-> The ASF has a strong brand, and that brand is in itself attractive. However, the developers of Wicket have been quite successful on their own and could continue on that path with no problems at all. We are interested in joining the ASF in order to increase our contacts and visibility in the open source world. Furthermore, we have been enthusiastic users of Apache from the earliest hour (remember JServ anyone?), and feel honored at getting the opportunity to join the club.
-
-Example (OpenJPA):
-> We think that Open JPA is something that will benefit from wide collaboration, being able to build a community of developers and committers that outlive the founders, and that will be embraced by other Apache efforts, such as the Geronimo project.
-
-### Documentation
-
-References to further reading material.
-
-Examples (Heraldry):
-> - Information on Yadis can be found at:
-> http://yadis.org
-> http://www.openidenabled.com
-> - Information on OpenID can be found at:
-> http://www.openid.net
-> http://www.openidenabled.com
-> The mailing list for both OpenID and Yadis is located at:
-> http://lists.danga.com/mailman/listinfo/yadis
-
-### Initial Source
-
-Describes the origin of the proposed code base. If the initial code arrives from more than one source, this is the right place to outline the different histories.
-
-If there is no initial source, note that here.
-
-Example (Heraldry):
-> OpenID has been in development since the summer of 2005. It currently has an active community (over 15 million enabled accounts) and libraries in a variety of languages. Additionally, it is supported by LiveJournal.com and is continuing to gain traction in the Open Source Community.
-> Yadis has been in development since late 2005, and the specification has not changed since early 2006. Like OpenID, it has libraries in various languages, and there is a large overlap between the two communities.
-
-### Source and Intellectual Property Submission Plan
-
-Complex proposals (typically involving multiple code bases) may find it useful to draw up an initial plan for the submission of the code here. Demonstrate that the proposal is practical.
-
-Example (Heraldry):
-> * The OpenID specification and content on openid.net from Brad Fitzpatrick of Six Apart, Ltd. and David Recordon of VeriSign, Inc.
-> * The domains openid.net and yadis.org from Brad Fitzpatrick of Six Apart, Ltd. and Johannes Ernst of NetMesh, Inc.
-> * OpenID libraries in Python, Ruby, Perl, PHP, and C# from JanRain, Inc.
-> * Yadis conformance test suite from NetMesh and VeriSign, Inc.
->
-> We will also be soliciting contributions of further plugins and patches to various pieces of Open Source software.
-
-#### External Dependencies:
-
-External dependencies for the initial source is important. Only some external dependencies are allowed by Apache policy. These restrictions are (to some extent) initially relaxed for projects under incubation.
-
-If the initial source has dependencies which would prevent graduation, then this is the right place to indicate how these issues will be resolved.
-
-Example (CeltiXfire):
-> The dependencies all have Apache compatible licenses. These include BSD, CDDL, CPL, MPL and MIT licensed dependencies.
-
-#### Cryptography:
-
-If the proposal involves cryptographic code either directly or indirectly, Apache needs to know so that the relevant paperwork can be obtained.
-
-### Required Resources
-
-#### Mailing lists:
-
-The minimum required lists are private@{podling}.incubator.apache.org (for confidential PPMC discussions) and dev@{podling}.incubator.apache.org lists. Note that projects historically misnamed the private list PMC. To avoid confusion over appropriate usage, it was resolved that all such lists be renamed.
-
-If this project is new to open source, then starting with these minimum lists is the best approach. The initial focus needs to be on recruiting new developers. Early adopters are potential developers. As momentum is gained, the community may decide to create commit and user lists as they become necessary.
-
-Existing open source projects moving to Apache will probably want to adopt the same mailing list set up here as they have already. However, there is no necessity that all mailing lists be created during bootstrapping. New mailing lists can be added by a VOTE on the Podling list.
-
-By default, commits for {podling} will be emailed to commits@{podling}.incubator.apache.org. It is therefore recommended that this naming convention is adopted.
-
-Mailing list options are described at greater length elsewhere.
-
-Example (Beehive):
-> * private@beehive.incubator.apache.org (with moderated subscriptions)
-> * dev@beehive.incubator.apache.org
-> * commits@beehive.incubator.apache.org
-
- #### Subversion Directory:
-
-It is conventional to use all lower case, dash-separated (-) directory names. The directory should be within the incubator directory space (http://svn.apache.org/repos/asf/incubator).
-
-Example (OpenJPA):
-> https://svn.apache.org/repos/asf/incubator/openjpa
-
-#### Git Repositories:
-It is conventional to use all lower case, dash-separated (-) repository names. The repository should be prefixed with incubator and later renamed assuming the project is promoted to a TLP.
-
-Example (BlueMarlin):
-> https://gitbox.apache.org/repos/asf/incubator-bluemarlin.git
-
-#### Issue Tracking:
-
-Apache runs JIRA and Bugzilla. Choose one. Indicate the name by which project should be known in the issue tracking system.
-
-Example (OpenJPA):
-> JIRA Open-JPA (OPEN-JPA)
-
-#### Other Resources:
-
-Describe here any other special infrastructure requirements necessary for the proposal. Note that the infrastructure team usually requires a compelling argument before new services are allowed on core hardware. Most proposals should not require this section.
-
-Most standard resources not covered above (such as continuous integration) should be added after bootstrapping. The infrastructure documentation explains the process.
-
-### Initial Committers
-
-List of committers (stating name and an email address) used to bootstrap the community. Mark each which has submitted a contributor license agreement (CLA). Existing committers should use their apache.org email address (since they require only appropriate karma). Others should use the email address that is (or will be) on the CLA. That makes it easy to match CLAs with proposed committers to the project.
-
-It is a good idea to submit CLAs at the same time as the proposal. Nothing is lost by having a CLA on file at Apache but processing may take some time.
-
-Note this and this. Consider creating a separate section where interested developers can express an interest (and possibly leave a brief introduction) or ask them to post to the general list.
-
-
-Example (OpenJPA):
-> Abe White (awhite at bea dot com) 
-> Marc Prud'hommeaux (mprudhom at bea dot com) 
-> Patrick Linskey (plinskey at bea dot com) 
-> ... 
-> Geir Magnusson Jr (geirm at apache dot org) * 
-> Craig Russell (clr at apache dot org) * 
-
-### Sponsors
-
-A little bit of a controversial subject. Committers at Apache are individuals and work here on their own behalf. They are judged on their merits, not their affiliations. However, in the spirit of full disclosure, it is useful for any current affiliations which may affect the perceived independence of the initial committers to be listed openly at the start.
-
-For example, those in salaried positions whose job is to work on the project should list their affiliation. Having this list helps to judge how much diversity exists in the initial list and so how much work there is to do.
-
-This is best done in a separate section away from the committers list.
-
-Only the affiliations of committers on the initial bootstrap list are relevant. These committers have not been added by the usual meritocratic process. It is strongly recommended that once a project is bootstrapped, developers are judged by their contributions and not by their background. This list should not be maintained after the bootstrap has been completed.
-
-#### Champion:
-The Champion is a person already associated with Apache who leads the proposal process. It is common - but not necessary - for the Champion to also be proposed as a Mentor.
-
-A Champion should be found while the proposal is still being formulated. Their role is to help formulate the proposal and work with you to resolve comments and questions put forth by the IPMC while reviewing the proposal.
-
-#### Nominated Mentors:
-
-Lists eligible (and willing) individuals nominated as Mentors [definition] for the candidate.
-
-Three Mentors gives a quorum and allows a Podling more autonomy from the Incubator PMC, so the current consensus is that three Mentors is a good number. Any experienced Apache community member can provide informal mentorship anyway, what's important is to make sure the podling has enough regularly available mentors to progress smoothly. There is no restriction on the number of mentors, formal or informal that a Podling may have.
-
-#### Sponsoring Entity:
-The Sponsor is the organizational unit within Apache taking responsibility for this proposal. The sponsoring entity can be:
- - The Apache Board
- - The Incubator
- - Another Apache project
-The PMC for the appropriate project will decide whether to sponsor (by a vote). Unless there are strong links to an existing Apache project, it is recommended that the proposal asks that the Incubator for sponsorship.
-
-Note that the final destination within the Apache organizational structure will be decided upon graduation.
\ No newline at end of file
diff --git a/templates/archive.gsp b/templates/archive.gsp
deleted file mode 100644
index 59fe96f..0000000
--- a/templates/archive.gsp
+++ /dev/null
@@ -1,28 +0,0 @@
-<%include 'header.gsp'%>
-
-	<%include 'menu.gsp'%>
-	
-	<div class="page-header">
-		<h1>Blog Archive</h1>
-	</div>
-	
-	<!--<ul>-->
-		<%def last_month=null;%>
-		<%published_posts.each {post ->%>
-			<%if (last_month) {%>
-				<%if (new java.text.SimpleDateFormat("MMMM yyyy", Locale.ENGLISH).format(post.date) != last_month) {%>
-					</ul>
-					<h4>${new java.text.SimpleDateFormat("MMMM yyyy", Locale.ENGLISH).format(post.date)}</h4>
-					<ul>
-				<%}%>
-			<% } else { %>
-				<h4>${new java.text.SimpleDateFormat("MMMM yyyy", Locale.ENGLISH).format(post.date)}</h4>
-				<ul>
-			<% }%>
-			
-			<li>${post.date.format("dd")} - <a href="${content.rootpath}${post.uri}">${post.title}</a></li>
-			<%last_month = new java.text.SimpleDateFormat("MMMM yyyy", Locale.ENGLISH).format(post.date)%>
-		<%}%>
-	</ul>
-	
-<%include "footer.gsp"%>
\ No newline at end of file
diff --git a/templates/feed.gsp b/templates/feed.gsp
deleted file mode 100644
index d587ac3..0000000
--- a/templates/feed.gsp
+++ /dev/null
@@ -1,25 +0,0 @@
-<% import static groovy.xml.XmlUtil.escapeXml %><?xml version="1.0"?>
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
-  <channel>
-    <title>JBake</title>
-    <link>${config.site_host}</link>
-    <atom:link href="${config.site_host}/${config.feed_file}" rel="self" type="application/rss+xml" />
-    <description>JBake Bootstrap Template</description>
-    <language>en-gb</language>
-    <pubDate>${new java.text.SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss Z", Locale.ENGLISH).format(published_date)}</pubDate>
-    <lastBuildDate>${new java.text.SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss Z", Locale.ENGLISH).format(published_date)}</lastBuildDate>
-
-    <%published_posts.each {post -> %>
-    <item>
-      <title>${post.title}</title>
-      <link>${config.site_host}/${post.uri}</link>
-      <pubDate>${new java.text.SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss Z", Locale.ENGLISH).format(post.date)}</pubDate>
-      <guid isPermaLink="false">${post.uri}</guid>
-      <description>
-      ${escapeXml(post.body)}
-	  </description>
-    </item>
-    <%}%>
-
-  </channel> 
-</rss>
diff --git a/templates/footer.gsp b/templates/footer.gsp
deleted file mode 100644
index abcf1c2..0000000
--- a/templates/footer.gsp
+++ /dev/null
@@ -1,21 +0,0 @@
-		</div>
-		<div id="push"></div>
-    </div>
-<%
-    import java.text.SimpleDateFormat
-    def date = new Date()
-    sdf = new SimpleDateFormat("yyyy")
-%>
-    <div id="footer">
-      <div class="container">
-          <p class="muted credit">&copy; ${sdf.format(date)} The Apache Software Foundation | Licensed under the Apache License, Version 2.0.<br/>
-          Apache Incubator, Apache, the Apache feather logo, and the Apache Incubator project logo are trademarks or registered trademarks of The Apache Software Foundation.</p>
-      </div>
-    </div>
-    <script src="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>js/jquery-1.11.1.min.js"></script>
-    <script src="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>js/bootstrap.min.js"></script>
-    <script src="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>js/prettify.js"></script>
-    <script src="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>js/readingTime.js"></script>
-    <script src="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>js/incubator.js"></script>
-  </body>
-</html>
\ No newline at end of file
diff --git a/templates/guide.gsp b/templates/guide.gsp
deleted file mode 100644
index e0182b9..0000000
--- a/templates/guide.gsp
+++ /dev/null
@@ -1,17 +0,0 @@
-<%include "header.gsp"%>
-
-<%include "menu.gsp"%>
-
-<div class="page-header">
-    <h1>Guide :: ${content.title}</h1>
-</div>
-
-<div class="article-body">
-
-Estimated Reading Time: <span class="eta"></span>
-
-<p>${content.body}</p>
-
-</div>
-
-<%include "footer.gsp"%>
diff --git a/templates/header.gsp b/templates/header.gsp
deleted file mode 100644
index d12d865..0000000
--- a/templates/header.gsp
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8"/>
-    <title><%if (content.title) {%>${content.title}<% } else { %>Apache Incubator<% }%></title>
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <meta name="description" content="">
-    <meta name="author" content="">
-    <meta name="keywords" content="">
-    <meta name="generator" content="JBake">
-
-    <!-- Le styles -->
-    <link href="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>css/incubator.css" rel="stylesheet">
-    <link href="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>css/bootstrap.css" rel="stylesheet">
-    <link href="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>css/asciidoctor.css" rel="stylesheet">
-    <link href="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>css/base.css" rel="stylesheet">
-    <link href="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>css/prettify.css" rel="stylesheet">
-
-    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
-    <!--[if lt IE 9]>
-      <script src="<%if (content.rootpath) {%>${content.rootpath}<% } else { %><% }%>js/html5shiv.min.js"></script>
-    <![endif]-->
-
-    <!-- Fav and touch icons -->
-    <!--<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
-    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
-    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
-    <link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">-->
-    <link rel="shortcut icon" href="https://www.apache.org/favicon.ico">
-    <script src="https://www.apachecon.com/event-images/snippet.js"></script>
-  </head>
-  <body onload="prettyPrint()">
-    <div id="wrap">
-   
diff --git a/templates/homepage.gsp b/templates/homepage.gsp
deleted file mode 100644
index b52c0dc..0000000
--- a/templates/homepage.gsp
+++ /dev/null
@@ -1,37 +0,0 @@
-<% include "header.gsp" %>
-
-<% include "menu.gsp" %>
-
-<div class="incubator-page-header">
-    <h1>${content.title}</h1>
-</div>
-
-${content.body}
-
-<b>Our Current Podlings:</b>
-<%
-    def source = new java.net.URL("http://svn.apache.org/repos/asf/incubator/public/trunk/content/podlings.xml")
-    def rootNode = new groovy.util.XmlSlurper(false, false, true).parseText(source.text)
-%>
-<div class="container-fluid">
-    <div class="row">
-        <% rootNode.children().each { podling ->
-            if (podling.@status == 'current') {
-        %>
-        <div class="col-md-2"><a href="/projects/${podling.@resource}.html">${podling.@name}</a></div>
-        <%
-                    }
-            } %>
-    </div>
-</div>
-<br/><br/>
-<div class="container-fluid">
-    <div class="row">
-        <div class="col-lg-3 text-center"><a href="/projects/#current">List of Current Podlings</a></div>
-        <div class="col-lg-3 text-center"><a href="/projects/#graduated">Graduated Projects</a></div>
-        <div class="col-lg-3 text-center"><a href="/projects/#retired">Retired Podlings</a></div>
-        <div class="col-lg-3 text-center"><a href="/clutch/">Current Clutch Analysis</a></div>
-    </div>
-</div>
-<br/><br/>
-<% include "footer.gsp" %>
diff --git a/templates/menu.gsp b/templates/menu.gsp
deleted file mode 100644
index 66babff..0000000
--- a/templates/menu.gsp
+++ /dev/null
@@ -1,102 +0,0 @@
-	<!-- Fixed navbar -->
-    <div class="navbar navbar-default navbar-fixed-top" role="navigation">
-      <div class="container">
-        <div class="navbar-header">
-          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
-            <span class="sr-only">Toggle navigation</span>
-            <span class="icon-bar"></span>
-            <span class="icon-bar"></span>
-            <span class="icon-bar"></span>
-          </button>
-          <a class="navbar-brand" href="/"><i class="icon-home"></i>Apache Incubator</a>
-        </div>
-        <div class="navbar-collapse collapse">
-          <ul class="nav navbar-nav">
-            <li class="dropdown">
-              <a href="#" class="dropdown-toggle" data-toggle="dropdown">Policies <b class="caret"></b></a>
-              <ul class="dropdown-menu">
-                <li><a href="/policy/incubation.html">Incubation Policy</a></li>
-                <li><a href="/ip-clearance/">Intellectual Property Clearance</a></li>
-              </ul>
-            </li>
-            <li class="dropdown">
-              <a href="#" class="dropdown-toggle" data-toggle="dropdown">Proposals <b class="caret"></b></a>
-              <ul class="dropdown-menu">
-                <li><a href="/guides/proposal.html">A Guide To Proposal Creation</a></li>
-              </ul>
-            </li>
-            <li class="dropdown">
-              <a href="#" class="dropdown-toggle" data-toggle="dropdown">Podling Guides <b class="caret"></b></a>
-              <ul class="dropdown-menu">
-                <li><a href="/cookbook">Cookbook</a></li>
-              
-                <li><hr><a href="/guides/roles_and_responsibilities.html">Roles and Responsibilities</a></li>
-                <li><a href="/guides/committer.html">Committers</a></li>
-                <li><a href="/guides/ppmc.html">Podling Project Management Committee</a></li>
-                <li><a href="/guides/community.html">Guide to Successful Community Building</a></li>
-
-                <li><hr><a href="/guides/branding.html">Incubator Branding Guide</a></li>
-                <li><a href="/guides/publicity.html">Podling Publicity/Media Guidelines</a></li>
-                <li><a href="/guides/press-kit.html">Podling Press Kit</a></li>
-              
-                <li><hr><a href="/guides/transitioning_asf.html">Initial Code Import</a></li>
-                <li><a href="/guides/names.html">Podling Name Search Guide</a></li>
-                <li><a href="/guides/ip_clearance.html">Podling IP Clearance</a></li>
-
-                <li><hr><a href="/guides/sites.html">Podling Websites</a></li>
-                <li><a href="/guides/podling_sourcecontrol.html">Podling Source Control</a></li>
-
-                <li><hr><a href="/guides/releasemanagement.html">Release Management</a></li>
-                <li><a href="/guides/distribution.html">Release Distribution</a></li>
-              
-                <li><hr><a href="/guides/graduation.html">Guide to Successful Graduation</a></li>
-                <li><a href="/guides/retirement.html">Guide to Retirement</a></li>
-                <li><a href="/guides/transferring.html">Transferring Resources out of the Incubator</a></li>
-
-                <li><hr><a href="/projects/#current">Current Podlings</a></li>
-                <li><a href="/clutch/">Clutch Report</a></li>
-              </ul>
-            </li>
-            <li class="dropdown">
-              <a href="#" class="dropdown-toggle" data-toggle="dropdown">PMC Guides <b class="caret"></b></a>
-              <ul class="dropdown-menu">     
-                <li><a href="/guides/participation.html">Guide to Participation</a></li>
-                <li><a href="/guides/lists.html">Incubator Mailing Lists Guide</a></li>
-
-                <li><a href="/guides/chair.html">Incubator Chair Guide</a></li>  
-                <li><a href="/guides/mentor.html">Mentors' Guide</a></li>
-
-                <li><hr><a href="/guides/website.html">Updating the top-level Incubator website</a></li>
-              </ul>
-            </li>
-            <li class="dropdown">
-              <a href="#" class="dropdown-toggle" data-toggle="dropdown">ASF <b class="caret"></b></a>
-              <ul class="dropdown-menu">
-                <li><a href="https://www.apache.org/foundation/how-it-works.html">How Apache Works</a></li>
-                <li><a href="https://www.apache.org/dev/">Developer Documentation</a></li>
-                <li><a href="https://www.apache.org/foundation/">Foundation</a></li>
-                <li><a href="https://www.apache.org/legal/">Legal</a></li>
-		            <li><hr><a href="https://www.apache.org/licenses/">License</a></li>
-		            <li><a href="https://www.apache.org/security/">Security</a></li>
-                <li><a href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a></li>
-                <li><a href="https://www.apache.org/foundation/thanks.html">Thanks</a></li>
-		            <li><a href="https://www.apache.org/events/current-event">Current Events</a></li>
-              </ul>
-            </li>
-            <li><a href="/faq.html">FAQs</a></li>
-          </ul>
-        </div><!--/.nav-collapse -->
-      </div>
-    </div>
-    <div class="container">
-      <div class="row">
-        <div class="col-md-4 vcenter"><a href="https://www.apache.org/"><img src="https://www.apache.org/img/asf_logo.png" alt="The Apache Software Foundation" border="0" style="margin-top: 2px" width="200"></a></div>
-        <div class="col-md-4 vcenter"><a href="/"><img src="https://incubator.apache.org/images/incubator_feather_egg_logo_sm.png" alt="The Apache Software Foundation Incubator" border="0" style="margin-top: 2px" width="256"></a></div>
-        <div class="col-md-4 vcenter">
-	    <a href="https://www.apache.org/foundation/contributing.html"><img src="https://www.apache.org/images/SupportApache-small.png" height="64" width="64"></a>
-	    &nbsp;&nbsp;&nbsp;&nbsp;
-	    <a class="acevent" data-format="square" data-width="100" data-mode="light" data-event="random"></a>
-	</div>
-      </div>
-    </div>
-    <div class="top-container container">
diff --git a/templates/page.gsp b/templates/page.gsp
deleted file mode 100644
index 44936a8..0000000
--- a/templates/page.gsp
+++ /dev/null
@@ -1,15 +0,0 @@
-<%include "header.gsp"%>
-
-	<%include "menu.gsp"%>
-	
-	<div class="page-header">
-		<h1>${content.title}</h1>
-	</div>
-
-	<p><em>${new java.text.SimpleDateFormat("dd MMMM yyyy", Locale.ENGLISH).format(content.date)}</em></p>
-
-	<p>${content.body}</p>
-
-	<hr />
-
-<%include "footer.gsp"%>
\ No newline at end of file
diff --git a/templates/policy.gsp b/templates/policy.gsp
deleted file mode 100644
index 3608589..0000000
--- a/templates/policy.gsp
+++ /dev/null
@@ -1,11 +0,0 @@
-<%include "header.gsp"%>
-
-<%include "menu.gsp"%>
-
-<div class="page-header">
-    <h1>${content.title}</h1>
-</div>
-
-<p>${content.body}</p>
-
-<%include "footer.gsp"%>
\ No newline at end of file
diff --git a/templates/projectspage.gsp b/templates/projectspage.gsp
deleted file mode 100644
index d52f2e4..0000000
--- a/templates/projectspage.gsp
+++ /dev/null
@@ -1,176 +0,0 @@
-<% include "header.gsp" %>
-
-<% include "menu.gsp" %>
-
-<div class="incubator-page-header">
-    <h2>${content.title}</h2>
-    <p>These tables are generated from the <span class="code">podlings.xml</span> file.
-       Please keep your project metadata up-to-date
-       (see <a href="https://incubator.apache.org/guides/mentor.html#initialize_podling_status_page">here</a> and
-       <a href="https://incubator.apache.org/guides/website.html#maintaining_status_files">here</a>).
-</div>
-
-<div class="container-fluid">
-    <div class="row">
-        <div class="col-lg-3 text-center"><a href="#current">List of Current Podlings</a></div>
-        <div class="col-lg-3 text-center"><a href="#graduated">Graduated Projects</a></div>
-        <div class="col-lg-3 text-center"><a href="#retired">Retired Podlings</a></div>
-        <div class="col-lg-3 text-center"><a href="/clutch/">Current Clutch Analysis</a></div>
-    </div>
-</div>
-<br/><br/>
-<%
-    def source = new java.net.URL("http://svn.apache.org/repos/asf/incubator/public/trunk/content/podlings.xml")
-    def podlings = new groovy.util.XmlSlurper(false, false, true).parseText(source.text).children()
-    def sortedName = { it.@name.text().toLowerCase() } 
-%>
-<h3 id="current"><img src="/images/redarrow.gif">Current Podlings</h3>
-<div class="container-fluid">
-    <div class="row">
-      <table class="colortable">
-	<tr>
-	   <th>Project</th>
-	   <th>Aliases</th>
-	   <th>Description</th>
-	   <th>Sponsor (Champion)</th>
-	   <th>Mentors</th>
-	   <th>Start&nbsp;Date&nbsp;</th>
-	</tr>
-        <% podlings.toSorted(sortedName).each { podling ->
-            if (podling.@status == 'current') {
-        %>
-        <tr id="${podling.@resource}">
-	   <td><a href="/projects/${podling.@resource}.html">${podling.@name}</a></td>
-	   <td>${podling.@resourceAliases}</td>
-	   <td>${podling.description}</td>
-	   <td>${podling.@sponsor}
-		<% if ( podling.champion != "" ) { %>
-		<br/>(${podling.champion})
-		<% } %> 
-	   </td>
-	   <td><%
-		def sep=""
-		podling.mentors.children().each { mentor ->
-		%>${sep}${mentor}<%
-		     	sep=", "
-		} %>
-	   </td>
-	   <td>${podling.@startdate}</td>
-	</tr>
-        <%
-           }
-      } %>
-      </table>
-    </div>
-</div>
-<h3 id="graduated"><img src="/images/redarrow.gif">Graduated Projects</h3>
-<div class="container-fluid">
-    <div class="row">
-      <table class="colortable">
-	<tr>
-	   <th>Project</th>
-	   <th>Aliases</th>
-	   <th>Description</th>
-	   <th>Apache Sponsor</th>
-	   <th>Mentors</th>
-	   <th>Start&nbsp;Date&nbsp;</th>
-	   <th>End&nbsp;Date&nbsp;&nbsp;&nbsp;</th>
-	</tr>
-        <% podlings.toSorted(sortedName).each { podling ->
-            if (podling.@status == 'graduated') {
-        %>
-        <tr id="${podling.@resource}">
-	   <td><a href=/projects/${podling.@resource}.html>${podling.@name}</a>
-		<% if ( podling.resolution.@tlp == "true" ) { %>
-		   <hr>
-		   <img src="/images/redarrow.gif"><a href="https://${podling.@resource}.apache.org/">${podling.@name}</a>
-		<% } else if ( podling.resolution.@url != "" ) { %>
-		   <hr>
-		   <img src="/images/redarrow.gif"><a href="${podling.resolution.@url}"><%
-		   	if ( podling.resolution.@link != "" ) {
-			%>${podling.resolution.@link}</a><% } else { %>${podling.@name} <% }
-		} %>
-	   </td>
-	   <td>${podling.@resourceAliases}</td>
-	   <td>${podling.description}
-		<% if ( podling.resolution != "" ) { %>
-		<hr>
-		${podling.resolution}
-		<% } %> 
-	   </td>
-	   <td>${podling.@sponsor}
-		<% if ( podling.champion != "" ) { %>
-		<br/>(${podling.champion})
-		<% } %> 
-	   </td>
-	   <td><%
-		sep=""
-		podling.mentors.children().each { mentor ->
-		%>${sep}${mentor}<%
-		     	sep=", "
-		} %>
-	   </td>
-	   <td>${podling.@startdate}</td>
-	   <td>${podling.@enddate}</td>
-	</tr>
-        <%
-           }
-      } %>
-      </table>
-    </div>
-</div>
-<h3 id="retired"><img src="/images/redarrow.gif">Retired Podlings</h3>
-<div class="container-fluid">
-    <div class="row">
-      <table class="colortable">
-	<tr>
-	   <th>Project</th>
-	   <th>Aliases</th>
-	   <th>Description</th>
-	   <th>Apache Sponsor</th>
-	   <th>Mentors</th>
-	   <th>Start&nbsp;Date&nbsp;</th>
-	   <th>End&nbsp;Date&nbsp;&nbsp;&nbsp;</th>
-	</tr>
-        <% podlings.toSorted(sortedName).each { podling ->
-            if (podling.@status == 'retired') {
-        %>
-        <tr id="${podling.@resource}">
-	   <td><a href=/projects/${podling.@resource}.html>${podling.@name}</a>
-		<% if ( podling.resolution.@url != "" ) { %>
-		   <hr>
-		   <img src="/images/redarrow.gif"><a href="${podling.resolution.@url}"><%
-		   	if ( podling.resolution.@link != "" ) {
-			%>${podling.resolution.@link}</a><% } else { %>${podling.@name} <% }
-		} %>
-	   </td>
-	   <td>${podling.@resourceAliases}</td>
-	   <td>${podling.description}
-		<% if ( podling.resolution != "" ) { %>
-		<hr>
-		${podling.resolution}
-		<% } %> 
-	   </td>
-	   <td>${podling.@sponsor}
-		<% if ( podling.champion != "" ) { %>
-		<br/>(${podling.champion})
-		<% } %> 
-	   </td>
-	   <td><%
-		sep=""
-		podling.mentors.children().each { mentor ->
-		%>${sep}${mentor}<%
-		     	sep=", "
-		} %>
-	   </td>
-	   <td>${podling.@startdate}</td>
-	   <td>${podling.@enddate}</td>
-	</tr>
-        <%
-           }
-      } %>
-      </table>
-    </div>
-</div>
-<br/><br/>
-<% include "footer.gsp" %>
diff --git a/templates/retired.gsp b/templates/retired.gsp
deleted file mode 100644
index d695b75..0000000
--- a/templates/retired.gsp
+++ /dev/null
@@ -1,27 +0,0 @@
-<% include "header.gsp" %>
-
-<% include "menu.gsp" %>
-
-<div class="incubator-page-header">
-    <h1>${content.title}</h1>
-</div>
-
-${content.body}
-
-Our Past Podlings:
-<%
-    def source = new java.net.URL("http://svn.apache.org/repos/asf/incubator/public/trunk/content/podlings.xml")
-    def rootNode = new groovy.util.XmlSlurper(false, false, true).parseText(source.text)
-%>
-<div class="container-fluid">
-    <div class="row">
-        <% rootNode.children().each { podling ->
-            if (podling.@status != 'current') {
-        %>
-        <div class="col-md-3"><a href="/projects/${podling.@resource}.html">${podling.@name}</a></div>
-        <%
-                    }
-            } %>
-    </div>
-</div>
-<% include "footer.gsp" %>
diff --git a/templates/simplepage.gsp b/templates/simplepage.gsp
deleted file mode 100644
index 792f661..0000000
--- a/templates/simplepage.gsp
+++ /dev/null
@@ -1,11 +0,0 @@
-<% include "header.gsp" %>
-
-<% include "menu.gsp" %>
-
-<div class="incubator-page-header">
-    <h1>${content.title}</h1>
-</div>
-
-${content.body}
-
-<% include "footer.gsp" %>
diff --git a/templates/sitemap.gsp b/templates/sitemap.gsp
deleted file mode 100644
index 31ff6b6..0000000
--- a/templates/sitemap.gsp
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
-<!-- sort by uri to avoid generating spurious changes -->
-<%published_content.toSorted{ it.uri }.each {content -> %>
-    <url>
-    	<loc>${config.site_host}/${content.uri}</loc>
-    	<lastmod>${content.date.format("yyyy-MM-dd")}</lastmod>
-    </url>
-<%}%>
-</urlset>
\ No newline at end of file
diff --git a/templates/tags.gsp b/templates/tags.gsp
deleted file mode 100644
index cdec2e6..0000000
--- a/templates/tags.gsp
+++ /dev/null
@@ -1,28 +0,0 @@
-<%include "header.gsp"%>
-
-	<%include "menu.gsp"%>
-	
-	<div class="page-header">
-		<h1>Tag: ${tag}</h1>
-	</div>
-	
-	<!--<ul>-->
-		<%def last_month=null;%>
-		<%tag_posts.each {post ->%>
-		<%if (last_month) {%>
-			<%if (new java.text.SimpleDateFormat("MMMM yyyy", Locale.ENGLISH).format(post.date) != last_month) {%>
-				</ul>
-				<h4>${new java.text.SimpleDateFormat("MMMM yyyy", Locale.ENGLISH).format(post.date)}</h4>
-				<ul>
-			<%}%>
-		<%} else {%>
-			<h4>${new java.text.SimpleDateFormat("MMMM yyyy", Locale.ENGLISH).format(post.date)}</h4>
-			<ul>
-		<%}%>
-		
-		<li>${post.date.format("dd")} - <a href="${content.rootpath}${post.uri}">${post.title}</a></li>
-		<% last_month = new java.text.SimpleDateFormat("MMMM yyyy", Locale.ENGLISH).format(post.date)%>
-		<%}%>
-	</ul>
-	
-<%include "footer.gsp"%>
\ No newline at end of file
diff --git a/tools/README.md b/tools/README.md
deleted file mode 100644
index bea6e90..0000000
--- a/tools/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Please put scripts to share in this directory