You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by vg...@apache.org on 2003/05/07 21:15:04 UTC

cvs commit: cocoon-2.1/src/blocks/batik/samples anne.svg batikLogo.svg samples.xml sitemap.xmap

vgritsenko    2003/05/07 12:15:03

  Modified:    src/blocks/batik/conf svg.xsamples
               src/blocks/batik/java/org/apache/cocoon/serialization
                        SVGSerializer.java
               src/blocks/batik/java/org/apache/cocoon/xml/dom
                        SVGBuilder.java
               src/blocks/batik/samples samples.xml sitemap.xmap
  Added:       src/blocks/batik/samples anne.svg batikLogo.svg
  Log:
  Hack the hack; set SVG DOM object URL to the SystemID from SAX Locator.
  Links work now, at least partially as seen in anne.svg.
  Add anne.svg and batikLogo samples.
  Unwrap TranscoderException.
  
  Revision  Changes    Path
  1.3       +3 -1      cocoon-2.1/src/blocks/batik/conf/svg.xsamples
  
  Index: svg.xsamples
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/blocks/batik/conf/svg.xsamples,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- svg.xsamples	3 May 2003 16:19:38 -0000	1.2
  +++ svg.xsamples	7 May 2003 19:15:02 -0000	1.3
  @@ -1,9 +1,11 @@
   <?xml version="1.0"?>
  +
   <xsamples xpath="/samples" unless="group[@name='Batik']">
   
     <group name="Batik">
       <sample name="Batik" href="batik/">
         Examples of rasterized SVG images.
  -   </sample>
  +    </sample>
     </group>
  +
   </xsamples>
  
  
  
  1.6       +15 -2     cocoon-2.1/src/blocks/batik/java/org/apache/cocoon/serialization/SVGSerializer.java
  
  Index: SVGSerializer.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/blocks/batik/java/org/apache/cocoon/serialization/SVGSerializer.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SVGSerializer.java	7 May 2003 11:36:30 -0000	1.5
  +++ SVGSerializer.java	7 May 2003 19:15:02 -0000	1.6
  @@ -66,6 +66,7 @@
   import org.apache.batik.transcoder.TranscoderInput;
   import org.apache.batik.transcoder.TranscoderOutput;
   import org.apache.batik.transcoder.TranscodingHints;
  +import org.apache.batik.transcoder.TranscoderException;
   import org.apache.batik.util.ParsedURL;
   import org.apache.cocoon.Constants;
   import org.apache.cocoon.caching.CacheableProcessingComponent;
  @@ -225,10 +226,22 @@
       public void notify(Document doc) throws SAXException {
           try {
               TranscoderInput transInput = new TranscoderInput(doc);
  - 
  +
               // Buffering is done by the pipeline (See shouldSetContentLength)
               TranscoderOutput transOutput = new TranscoderOutput(this.output);
               transcoder.transcode(transInput, transOutput);
  +        } catch (TranscoderException ex) {
  +            if (ex.getException() != null) {
  +                if (getLogger().isDebugEnabled()) {
  +                    getLogger().debug("Got transcoder exception writing image, rethrowing nested exception", ex);
  +                }
  +                throw new SAXException("Exception writing image", ex.getException());
  +            }
  +
  +            if (getLogger().isDebugEnabled()) {
  +                getLogger().debug("Got transcoder exception writing image, rethrowing", ex);
  +            }
  +            throw new SAXException("Exception writing image", ex);
           } catch (Exception ex) {
               if (getLogger().isDebugEnabled()) {
                   getLogger().debug("Got exception writing image, rethrowing", ex);
  
  
  
  1.4       +27 -8     cocoon-2.1/src/blocks/batik/java/org/apache/cocoon/xml/dom/SVGBuilder.java
  
  Index: SVGBuilder.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/blocks/batik/java/org/apache/cocoon/xml/dom/SVGBuilder.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SVGBuilder.java	6 May 2003 23:42:21 -0000	1.3
  +++ SVGBuilder.java	7 May 2003 19:15:02 -0000	1.4
  @@ -60,6 +60,10 @@
   
   import org.w3c.dom.Document;
   import org.xml.sax.SAXException;
  +import org.xml.sax.Locator;
  +
  +import java.net.MalformedURLException;
  +import java.net.URL;
   
   /**
    * The <code>SVGBuilder</code> is a utility class that will generate a
  @@ -71,6 +75,8 @@
   public class SVGBuilder extends SAXSVGDocumentFactory implements XMLConsumer, LogEnabled {
       protected Logger log;
   
  +    protected Locator locator;
  +
       private static final String SAX_PARSER
           = "org.apache.xerces.parsers.SAXParser";
   
  @@ -100,7 +106,7 @@
        * Return the newly built Document.
        */
       public Document getDocument() {
  -        return this.document;
  +        return super.document;
       }
   
       /**
  @@ -112,11 +118,10 @@
           try {
               // Create SVG Document
               String namespaceURI = SVGDOMImplementation.SVG_NAMESPACE_URI;
  -            this.document = implementation.createDocument(namespaceURI, "svg", null);
  +            super.document = implementation.createDocument(namespaceURI, "svg", null);
               super.startDocument();
  -            // add svg, and SVG_NAMESPACE to SAXDocumentFactory namespace handling
  -            // this is a fix only ties svg to svg namespace uri
  -            // it is not as general as tieing any prefix to svg namespace uri
  +            // Add svg, and SVG_NAMESPACE to SAXDocumentFactory namespace handling.
  +            // This ties 'svg' prefix used above to the svg namespace uri.
               namespaces.put("svg", SVGDOMImplementation.SVG_NAMESPACE_URI);
           } catch (SAXException se) {
               throw se;
  @@ -128,6 +133,11 @@
           }
       }
   
  +    public void setDocumentLocator(Locator locator) {
  +        this.locator = locator;
  +        super.setDocumentLocator(locator);
  +    }
  +
       /**
        * Receive notification of the beginning of a document.
        *
  @@ -138,9 +148,18 @@
               super.endDocument();
   
               // FIXME: Hack.
  -            ((org.apache.batik.dom.svg.SVGOMDocument)this.document).setURLObject(new java.net.URL("http://xml.apache.org"));
  +            try {
  +                if (this.locator != null) {
  +                    ((org.apache.batik.dom.svg.SVGOMDocument)super.document).setURLObject(new URL(this.locator.getSystemId()));
  +                } else {
  +                    getLogger().warn("setDocumentLocator was not called, URI resolution will not work");
  +                }
  +            } catch (MalformedURLException e) {
  +                getLogger().warn("Unable to set document base URI to " + this.locator.getSystemId(), e);
  +                ((org.apache.batik.dom.svg.SVGOMDocument)super.document).setURLObject(new URL("http://xml.apache.org/"));
  +            }
   
  -            this.notify(this.document);
  +            notify(super.document);
           } catch (SAXException se) {
               throw se;
           } catch (Exception ex){
  
  
  
  1.3       +34 -3     cocoon-2.1/src/blocks/batik/samples/samples.xml
  
  Index: samples.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/blocks/batik/samples/samples.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- samples.xml	3 May 2003 16:19:39 -0000	1.2
  +++ samples.xml	7 May 2003 19:15:02 -0000	1.3
  @@ -1,13 +1,28 @@
   <?xml version="1.0" encoding="iso-8859-1"?>
  -<samples xmlns:xlink="http://www.w3.org/1999/xlink">
  +
  +<!-- CVS $Id$ -->
  +
  +<samples name="Batik Samples" xmlns:xlink="http://www.w3.org/1999/xlink">
   
     <group name="Main examples page.">
       <sample name="Back" href="..">to Cocoon examples main page</sample>
     </group>
   
  +  <group name="Batik Logo">
  +    <sample name="Batik Logo in SVG" href="batikLogo.svg">
  +      Batik logo as it is in SVG (SVG browser, plugin, viewer needed).
  +    </sample>
  +    <sample name="Batik Logo in JPEG" href="batikLogo.jpeg">
  +      Batik logo rasterized with Batik to JPEG.
  +    </sample>
  +    <sample name="Batik Logo in PNG" href="batikLogo.png">
  +      Batik logo rasterized with Batik to PNG.
  +    </sample>
  +  </group>
  +
     <group name="Henry V">
       <sample name="Henry V in SVG" href="henryV.svg">
  -  	  Henry V as it is in SVG (SVG browser, plugin, viewer needed).
  +      Henry V as it is in SVG (SVG browser, plugin, viewer needed).
       </sample>
       <sample name="Henry V in JPEG" href="henryV.jpeg">
         Henry V rasterized with Batik to JPEG.
  @@ -17,7 +32,24 @@
       </sample>
     </group>
   
  +  <group name="Anne's Portrait">
  +    <note>Note: You can refer to other SVG files. anne.svg refers to
  +      batikLogo.svg to draw batik 'stamp' in the lower right corner.</note>
  +    <sample name="Anne in SVG" href="anne.svg">
  +      Portrait as it is in SVG (SVG browser, plugin, viewer needed).
  +    </sample>
  +    <sample name="Anne in JPEG" href="anne.jpeg">
  +      Portrait rasterized with Batik to JPEG.
  +    </sample>
  +    <sample name="Anne in PNG" href="anne.png">
  +      Portrait rasterized with Batik to PNG.
  +    </sample>
  +  </group>
  +
     <group name="Resources">
  +    <sample name="SVG Specification" href="http://www.w3.org/TR/SVG/">
  +      Scalable Vector Graphics (SVG) 1.0 Specification
  +    </sample>
       <sample name="Batik web site" href="http://xml.apache.org/batik">
         Links and reference information, SVG browser
       </sample>
  @@ -27,4 +59,3 @@
     </group>
   
   </samples>
  -
  
  
  
  1.3       +7 -4      cocoon-2.1/src/blocks/batik/samples/sitemap.xmap
  
  Index: sitemap.xmap
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/blocks/batik/samples/sitemap.xmap,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- sitemap.xmap	3 May 2003 16:19:39 -0000	1.2
  +++ sitemap.xmap	7 May 2003 19:15:02 -0000	1.3
  @@ -1,6 +1,12 @@
   <?xml version="1.0"?>
  +
  +<!--+
  +    | Batik block samples sitemap
  +    |
  +    | CVS $Id$
  +    +-->
  +
   <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
  -<!-- batik block samples sitemap -->
   
   <!-- =========================== Components ================================ -->
   
  @@ -34,13 +40,11 @@
     <map:view from-position="last" name="links">
      <map:serialize type="links"/>
     </map:view>
  -
    </map:views>
   
   <!-- =========================== Pipelines ================================= -->
   
    <map:pipelines>
  -
     <map:pipeline type="caching">  
      <map:match pattern="">
       <map:redirect-to uri="welcome"/>
  @@ -72,7 +76,6 @@
      </map:match>
   
     </map:pipeline>
  -
    </map:pipelines>
   
   </map:sitemap>
  
  
  
  1.1                  cocoon-2.1/src/blocks/batik/samples/anne.svg
  
  Index: anne.svg
  ===================================================================
  <?xml version="1.0" standalone="no"?>
  <!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.                                                         -->
  <!-- ========================================================================= -->
  
  <!-- ========================================================================= -->
  <!-- Anne's portrait, Hommage a Andy Wahrol                                    -->
  <!--                                                                           -->
  <!-- @author vincent.hardy@eng.sun.com                                         -->
  <!-- @version $Id: anne.svg,v 1.1 2003/05/07 19:15:02 vgritsenko Exp $                                                             -->
  <!-- ========================================================================= -->
  
  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="500" viewBox="0 0 450 500">
      <!-- ============================================================= -->
      <!-- Test content                                                  -->
      <!-- ============================================================= -->
      <svg  x="95" y="55" width="260.8" height="386.4" xml:space="preserve" viewBox="0 0 217.325 322.0105" >
      <g transform="scale(.5, .5)">
  	<g id="Layer_x0020_3" style="fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
          <rect x="0" y="0" width="434.65" height="644.021" style="fill:#92cacc; stroke:none;" />
  	</g>
  	<g id="Layer_x0020_2" style="fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
  		<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#3398C3;stroke:none;" d="M204.707,76.849c-22.905-0.454-49.539,18.906-67.914,31.164c-20.364,13.585-36.661,24.707-51.752,44.126c-12.731,16.382-25.785,43.279-25.974,64.202
  			c-0.201,22.224,15.014,47.022,20.852,67.903c5.755,20.584,12.057,41.07,17.959,61.056c3.993,13.52,0.808,18.634-2.405,31.872c-3.621,14.919-2.348,23.878,2.816,37.194c12.581,32.445-0.7,104.96,46.831,109.204c17.512,1.563,54.708,6.939,70.492-0.838
  			c16.895-8.324,28.268-50.207,31.088-67.825c4.064-25.402,0.883-44.321,17.926-65.775c8.02-10.094,17.768-18.147,25.277-28.87c7.195-10.272,10.475-22.41,17.922-32.246c-2.342,2.225-4.652,4.372-6.781,6.812c9.965-5.222,18.066-21.033,25.156-29.985
  			c9.076-11.457,18.66-18.24,30-27.004c30.158-23.309,25.908-54.55,9.027-85.495c-9.188-16.844-22.373-28.952-36.438-42.444c-13.357-12.813-21.271-28.466-34.135-41.475C282.432,96.064,264.1,82.28,246.788,78.281c-11.227-2.593-39.372-7.319-49.581-2.933"/>
  	</g>
  	<g id="Layer_x0020_1" style="fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M375.875,54.692c3.1-2.4,4.801-1.101,5,4.1c2.885,5.943,2.848,12.888-0.1,18.8c-1.199-5.5-3-10.1-6-13.8c-0.4-3.3-0.199-5.3,0.1-7l1-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M379.776,88.092c1.018,5.238,0.352,10.663-1.9,15.5c0-4.2,0-8.5,0.1-12.8l1.801-2.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M236.776,76.092c0.6,0.2-0.9,1.9-4.699,4.8c-3.801,2.9-3.801,4.4-0.201,4.4c3.701,0,5,0.5,4,1.5c-3,0.1-5,0.5-7,0.9c-2.1,0.5-3.6,1.699-4.6,3.399c-1,1.8-0.6,2.9,1.4,3.3
  				c1.9,0.301,3.8,0.9,5.5,1.801c1.699,0.899,1.5,2.199-0.6,3.899c-2,1.7-2,2.7,0.1,3s4.1,0,5.9-0.899c1.899-0.9,3.699-1,5.6-0.301c1.9,0.601,3.8,1,5.8,1.101c2,0.2,3.601,0.5,4.601,1c1.1,0.5,2.6,1.3,4.6,2.3s3.9,1.8,5.699,2.2c1.9,0.5,3.5,1.2,5.101,2
  				c1.5,0.899,2.8,1.7,3.8,2.6c1.1,0.9,2.801,2.101,5.1,3.7c3.9,3.8,1.9,4.1-5,1.7c-6.899-2.4-5.899,0,3,7.3l21,14c2.5,0.9,4.301,2,5.4,3.2c1.1,1.3,2.9,2.5,5.301,3.7c2.399,1.199,4.5,3.5,6.299,7.1c9.201,10.8,16.201,19.5,22,27c0.6,3.1,1.6,4.9,3.1,6.4
  				s2.301,3.6,2.5,6.199c0.102,2.601,0.4,5.101,0.9,7.4c0.5,2.2,1.201,4.6,2.201,7c1,2.5,1,4.9,0,7.1c-0.9,2.301-1.102,4.5-0.602,6.5s1.301,1.7,2.301-1c1-2.6,1.301-5,0.9-7c-0.5-2.1-0.6-4.699-0.5-7.8c0.199-3.1,0.6-3.5,1.4-1.1c0.699,2.399,1.1,4.8,1,7.3
  				c-0.102,2.4,0.398,4.7,1.199,7.1c0.9,2.4,1.5,4.7,1.6,7.101c0.201,2.399,0.5,4.8,1,7.2c0.5,2.3,0.9,4.899,1,7.6c2.336-8.849,2.336-18.151,0-27c-0.299-3.7-1.1-6.7-2.4-9.9c-1.299-3.199-2-5.699-2.1-7.6s0.701-0.8,2.5,3.1c1.701,4,2.701,6.801,2.9,8.4
  				c4.301,9.8,6.6,19.4,7,30l-0.9,28.7c1.6-11,2.6-18.9,3.1-23.7c-0.1-1.9-0.1-4.6-0.199-7.3c0-2.7-0.199-6-0.6-9.8c-0.301-3.9-0.201-4.4,0.5-1.601c0.6,2.9,1.299,6,2,9.3c0.699,3.4,1.4,3.5,2.199,0.4c0.6-6.1,1.201-7,1.801-3.7s0.799,6.5,0.5,9.601
  				c-0.301,3.1-0.5,6.8-0.4,11.1c0.801,1.8,1.199,1.1,1.301-1.2c0.199-2.3,0.699-3.8,1.699-4.6c0.9-0.8,1,0.1,0.4,2.8c-0.6,2.6-0.301,3.4,1.1,2.4s1.801-0.301,1.4,2.1c-0.301,2.3-0.6,4.2-0.801,5.5c1.9,1.8,2.4,3.3,1.6,5.6c-0.799,2.2-1.199,4.2-1.199,5.7
  				c0,1.601,0.699,1.2,2-1c1.301-2.3,1.6-1.7,0.801,1.8c-0.801,3.5-1.801,5.101-3.201,4.9c-0.5,2.6-0.799,4.4-1.1,6.4c-0.199,2-0.9,3.6-2,4.8c-1.199,1.2-2.199,3.399-3.199,6.6c-0.9,3.101-0.5,3.8,1.1,2s2.5-1.899,2.6-0.5c0,1.5-0.4,3.101-1.4,4.9
  				c-0.9,1.7-1.9,3.6-2.799,5.5c-0.9,2-1.701,3.899-2.602,5.899c-0.799,2-1,4.101-0.6,6.4c-7.898,8.809-7.941,22.141-0.1,31c-0.9,3.9-2.9,5.6-6,6.1c-3.199,0.601-3.4,2-0.801,4.301c2.602,2.199,1.9,4.399-2.1,6.6c-3.799,2.1-4.799,4-3.799,5.7s1.699,4,2.299,6.7
  				c0.6,2.8-0.6,4.6-3.5,5.5c-2.799,1-5.5,3.3-8,7.1c-3.699,2-6.299,2.8-9,3.5c-2.699,0.6-4.199-0.4-4.4-3.1c-0.199-2.601-0.5-1.4-0.699,3.8c-2.4,1.2-4.699,1.399-7,1.2c-2.301-0.301-2.6-1.801-0.801-4.601c1.701-2.8,2.4-5.3,2-7.399c-0.398-2,0-4.2,1-6.4
  				c2.5-4.3,2.102-5.7-0.299-5.1c-2.5,0.5-3.5-0.301-3.1-2.5c0.5-2.2,0.398-4.601-0.301-7.4c-0.801-2.8-0.4-3.8,1-3.2c1.5,0.601,3.1,1.601,5,3.2s1.699,0.9-0.5-1.9c-2.301-2.8-3.6-5.1-4-6.699c-0.5-1.7-1.1-3.7-2-6.2c-0.9-2.4-1.801-3.601-2.6-3.5
  				c-0.9,0.1-0.9,1.6-0.201,4.3c0.801,2.8,1.201,5.1,1.301,6.9c0.1,1.899,0,3.899-0.4,6c-0.299,2.1-0.1,4.3,0.701,6.6c0.898,2.2,0.5,4.1-1.201,5.5c-1.6,1.5-2.5,3.5-2.6,6.2s0.699,3.2,2.301,1.5c1.699-1.601,2.6-3.5,3-5.601c0.543,7.843-0.938,15.694-4.301,22.801
  				c-2,0.8-3.4,1.3-5,1.6c-1.5,0.2-3.4,0.5-5.5,0.8c-2.1,0.4-4.8,1.9-8,4.601c-3.199,2.699-3.699,4-1.5,3.899c2.2-0.1,2.9,0.601,2.1,2.101c-2.899,0.1-4.5-0.2-5.799-0.5c-1.4-0.4-3-0.2-4.701,0.6c-1.799,0.8-3.199,0.7-4.199-0.3s-0.7-1.8,1-2.5
  				c1.699-0.7,3.3-1.4,4.8-2c1.5-0.7,2.101-1.601,1.8-2.7c-0.4-1.2-1.4-2-3.199-2.6c-1.801-0.5-3.4-0.101-5,1.3c-1.5,1.399-2.801,2.3-3.801,2.6s-2.1,0.2-3.4-0.2c-1.199-0.5-2.6-1.3-3.899-2.6c-1.399-1.4-2-0.8-1.8,1.6c0.1,2.5,0.9,4.2,2.199,5.301l25,24
  				c8.867,4.33,16.973,10.072,24,17c8.201,3,16.5,6.399,26,10.199c11.396,2.678,22.23,7.35,32,13.801c9.811,3.25,18.719,8.766,26,16.1c1.701,3.6,1.1,3.8-0.9,1.6c-2-2.199-4-4.199-6-5.8c-1.898-1.7-4.1-3.1-6.5-4.3c-2.398-1.1-3.6-1-3.5,0.3
  				c0.102,1.4,1.602,2.5,4.5,3.5c2.9,1.101,4.5,2.7,4.701,4.9c0.299,2.2,1.4,3.2,3.6,2.899c2.199-0.399,3.6,0.601,4.4,2.801c0.799,2.199,2,4,3.5,5.399c1.6,1.4,3.1,3,4.5,4.8c1.4,1.801,1.799,1.601,1.299-0.6c-0.6-2.2-1.6-4-3.1-5.5s-2.699-3.2-3.5-5
  				c7.268,5.313,12.855,12.603,16.1,21c2.602,0,3.4,2,3,6.7c-0.299,4.7-0.299,8.8-0.1,12.3v65v26c2.4,9.8,0.1,15.1-7,16h-151h-25h-175h-30l-31.8-0.2l-0.2-137.8v-25v-25l1-25.9c11.1-5.6,21.8-11,32.2-16.1l26.8-19l31-21.1c4.9-1.801,6.9-3.801,6-6
  				c-0.9-2.301-2.6-2.101-5.1,0.399c-2.4,2.601-4.5,4.101-6.1,4.7c-1.3-2.1-2.8-2.5-5.2-0.4c-2.5,2.101-4.7,3.5-6.6,4.2c-2,0.8-4.7,0.8-8,0.101c-3.3,0.1-5-0.601-6-1.9c-1.1-1.3-2.2-1.8-3.4-1.4c-1.2,0.301-2.2-0.6-2.9-2.6c-0.6-2.1-1.5-3.5-2.4-4.3
  				c-1-0.7-2-1.4-3.3-2c-1.2-0.5-2-1.5-2.5-2.8c-0.6-1.301-1.8-2.2-3.9-2.801c-2.1-0.6-3.8-1.3-5.3-2.1c-1.4-0.9-3.2-1.3-5.5-1.3c-2.3-0.101-4-1-5.3-2.8c-1.2-1.801-2.7-2.601-4.4-2.4c-1.8,0.1-3.5-0.2-5.2-0.9c-1.6-0.8-3-1.6-4.1-2.5c-1-0.899-2.7-1.8-5-2.6
  				c-2.4-0.9-4.3-1.3-5.8-1.4l-1-32.1v-30c-1.3-3.6-0.5-4.9,2.4-3.9c3,1,4.3,0.4,4.1-1.6s0.2-2.3,1.2-0.8c1.1,1.5,2.8,2.6,5.3,3.3c0.6,2.3,1.6,3,3.8,2.3c2.2-0.8,4.1-1,5.7-0.7c1.7,0.4,3.2,0.2,4.6-0.8c1.5-1,2.7-0.2,3.9,2.2c0.7,3.4,1.4,5.7,2.1,7.8
  				c0.7,2.101,0.4,5.2-1,9.2s-1.4,3-0.3-3c-4.1-0.2-5.4,1.2-4.8,3.5c0.7,2.2,1.8,4.9,3.4,8.1c1.7,3.2,2.5,3.101,2.4,0c-0.1-3.199,1-3.399,3.2-0.6c6.4-2.5,9.9-5.8,11.5-10.1c1.6-4.301,1.1-8.5-1.5-12.7c1.1-1.8,0.5-3.8-0.7-5.5c-1.2-1.8-1.5-3.601-0.7-5.4
  				c0.7-1.8,0.4-3.8-1-6s-1.9-1.7-1.3,1.5c0.5,3.101,0.7,5.5,0.5,7.2c-0.4,2.6-0.2,4.1-0.1,5.5c0.1,1.4-0.7,1.9-2.5,1.5c-1.7-0.4-3.1-0.2-4.3,0.6c-1.1,0.7-2.4,0-3.8-2.1s-1.8-3.7-1.3-4.6c0.6-0.9,0.6-1.7,0-2.4c-0.6-0.6-1.1-1.6-1.7-2.9c-0.6-1.3-1.2-1.6-2-0.899
  				c-0.9,0.6,0.1-0.601,2.8-3.7c1.2-3,1.5-2.6,1,0.2c-0.4,2.899,0.2,4.399,2,4.8c1.8,0.4,2-0.1,0.4-1.3c-1.5-1.3-1.6-2.7-0.3-4.2c1.4-1.5,2.9-2.2,4.6-2.3c1.6,0,3.2-1.101,4.6-3.2c-1.456-8.635-1.184-17.472,0.8-26c2.1-3.9,2.2-4.1,1.2-1.6s-0.5,3.699,1.5,3.5
  				c1.9-0.2,2.7-1.301,2.4-3.301c-0.4-2,0.3-3.6,2.1-5c1.8-1.3,2.4-2.199,1.8-2.6c2.1-5.8,4.5-10.9,7.5-16.4c3-5.6,3.2-3.699,0.6,5.4c3.5,3.6,5.5,2.7,6.8-1.6c1.3-4.2,2.3-5.4,3.1-3.601c0.7,1.8-0.1,4.2-2.3,7.101c-2.3,2.899-1.8,3.899,1.5,3.1
  				c2.2-4,3.2-6.1,3.8-7.1s1.8-3.101,3.5-6.4c1.6-3.3,2.8-4.1,3.4-2.3s1.5,1.399,2.6-1.3c1.2-2.601,2-4.801,2.5-6.601c0.5-1.7,1.3-2.899,2.4-3.5c1.1-0.6,2.3-2.2,3.6-4.8c0.5-3.2,1.3-5,2.6-6.3c1.2-1.3,2.3-2.4,3.2-3.101c0.9-0.8,2.1-2.399,3.6-4.8
  				c1.5-2.399,2.2-2.6,1.8-0.6c-0.3,2.1,0.6,2.6,2.6,1.8c-0.1-3.8,0.7-6.8,2.7-10c2-3.1,3.4-5,4.3-5.7c0.9-0.8,1.9-2.6,3-5.5c3.9-4.399,5-3.399,3.5,2.4c-1.5,5.7-3.6,8.899-6.4,9.6c-2.2,2.101-2.5,3.3-1.8,3.8c0.7,0.5,0.3,1.4-1.3,2.7c-1.6,1.4-2.7,2.601-3.4,3.9
  				c-0.6,1.2-1.5,2.8-2.5,4.899c-1.1,2.101-2.1,4.4-3.1,6.9c-1.5,3-2.8,5.6-4.7,8.6c-1.9,3.101-2.9,5.601-3,7.5c-0.2,2,1,0.9,3.3-3.199c2.4-4.101,4.2-6.7,5.4-7.9c2.7-3.2,3.7-4.9,3.3-6.1c-0.4-1.2,0.4-3.301,2.4-6.4s3.9-6.1,5.7-9c1.8-2.9,3.9-5.9,6.4-9.1
  				c2.6-3.2,4.7-5.601,6.6-7.2c1.8-2.8,2.8-4.601,4-5.7c1.3-1,3-2.8,5.4-5.4c2.3-2.699,4.3-4.899,5.9-6.699c1.6-1.801,3.6-3.7,6.2-5.9c2.6-2.1,3.6-1.8,3.2,0.8c-0.5,2.601-0.3,4.101,0.5,4.601c0.8,0.5,0.3,2-1.5,4.3c-1.7,2.399-3.5,4.7-5.4,6.899
  				c-1.8,2.2-3.4,4.2-4.6,6c-1.3,1.7-2.4,3.801-3.4,6.101c-0.9,2.3-1.2,3.6-0.6,4c-6.054,9.716-10.164,20.517-12.1,31.8l-4.8,25c0.8,1,1.1,2.7,0.8,5.2c-0.2,2.5,0.1,3.8,1.1,4s1.3-1.101,1-3.7c-0.2-2.7-0.3-4.5-0.3-5.5c0.1-1,0.4-2.6,0.9-4.9
  				c0.5-2.399,0.8-3.6,1-3.699c0.2-0.101,0.8-0.601,1.7-1.4c2.2-9,4.4-16.7,6.7-24c2.616-11.143,7.371-21.67,14-31c2.2-1.3,3.8-2.4,4.9-4.2c1.2-1.8,2.4-3.6,3.7-5.2c1.3-1.6,2.8-2.8,4.4-3.3c1.7-0.6,3.2-1.899,4.4-3.8c1.3-2,2.2-2,2.6-0.1c0.4,2-0.5,3.5-2.8,4.5
  				c-2.2,1-3,2.199-2.2,3.6c0.8,1.4,0.2,3.2-1.7,5.4c-1.9,2.199-2.7,4-2.3,5.3c0.3,1.399,0,3.3-0.9,5.8c-4.76,8.673-7.815,18.178-9,28c-0.7,3.1-1.3,5.9-2.7,9.4c-1.3,3.399-1.5,5.899-0.7,7.399c0.9,1.5,2-0.5,3.4-5.8c0.962-10.939,4.344-21.528,9.9-31
  				c3.6-8.7,8-16.1,13.2-23c2.6-3.3,5.1-5.8,8.3-8.4c3.3-2.6,3.7-2,1.4,1.801c-2.3,3.8-4.2,6.699-5.7,8.6c-1.5,4.6-0.6,8.4,2.7,12.6c3.3,4.2,3.6,8,1.1,11.2c-5.5,7.7-8.8,15.601-11,24.2c-2-2.1-2.7-1.8-3,0.1c-0.3,1.9-1.8,2.9-4.6,3c-2.7,0.101-4,1.601-3.7,4.601
  				c0.3,3,1.6,3.899,3.9,2.899s4.4-1.6,6.4-1.6c0.1-1.6,1.9-0.7,5.6,1.5c3.7,2.3,7.4,3.3,10.9,3.1c3.5-0.199,6.7,0.9,9.6,3.4c3,0.3,5.2,1,7.5,2c2.4,1,4.1,2,5.2,3c1.2,1.1,2.2,2.7,3,4.9c0.8,2.199,0.8,4.3-0.2,6.1c-0.9,1.9-0.4,3.3,1.6,4.3s2.9,2.9,2.7,5.601
  				c-0.3,2.8-0.2,5.1,0.2,7.1c0.4,2.9-0.3,4.3-2,5c-1.7,0.8-3.1,0.9-4.3,0.3c-1.1-0.5-2.3-1.5-3.5-2.899c-1.3-1.5-2.9-2.2-5-2.301c-2.1,0-3.6-0.6-4.6-1.8c-1-1.1-2.2-2.3-3.5-3.5c-2.4-5.2-4.2-6.2-5.5-3.8c-1.4,2.5-3,3.6-4.8,3.3c-1.8-0.2-3.8-0.7-5.9-1.399
  				c-2.1-0.7-4.1-1.301-6-1.7c-1.9-0.4-2.5,0.399-1.8,2.6c0.7,2.2,1,4.4,0.9,6.7c-0.1,2.4-0.5,3.6-1.2,3.7c-0.6,0.1-2.2-0.8-4.8-2.601c-2.5-1.899-4.5-3.1-6-3.8c-1.6-0.8-3.5-1.5-5.8-2.399c-2.2-0.801-4.5-1-6.6-0.4c-2.2,0.5-3.9,0.8-5.2,0.7c-1.3,0-2.2,1-2.8,2.899
  				c-0.6,1.9-1.7,3.101-3.3,3.7c-1.7,0.601-3.5,1.8-5.5,3.7c-2,1.8-3.6,3.5-4.9,5.2c-1.3,1.7-2.9,3.7-4.9,5.8c0.881,10.76-0.134,21.591-3,32l-2.9,28c0.125,8.963,2.064,17.807,5.7,26c-0.347,9.161-2.958,18.094-7.6,26c-1.592,9.02-0.94,18.292,1.9,27
  				c2.801,10.72,7.509,20.849,13.9,29.9c3.2-0.7,4.3-0.5,4.3,0.8c0.1,1.3,0.7,2.2,1.8,2.7c1,0.399,1.5,1.399,1.4,3c-0.2,1.6,0.9,1.899,3.2,0.899c2.2-1,2.9,0.2,2.2,3.7c3.1,9.8,5.4,19.8,7.1,31c-1.2,10.5-4.2,16.5-9,19l2.9,25.9c-0.2,8.1,4.3,12.899,13.2,14.1
  				c4.9,0.2,8.6,1,12.1,3.4c3.5,2.3,7.1,3.699,10.7,4.199c3.7,0.5,7.4,0.301,11.1-0.6c6-0.2,10.3-1.4,14-3.4c3.8-2,7.5-4.5,11.1-7.5c3.7-1.899,5.3-4.5,5.7-7.8c0.4-3.399-0.6-3.899-2.9-1.6c-2.4,2.2-4.4,3.899-6.1,5c-1.7,1.1-1-0.2,2.1-3.7c2.3-3.5,3.5-6,4.1-8.5
  				c0.5-2.5,1.6-3.8,3.3-4c1.6-0.1,2.6-2.1,2.9-5.9c0.299-3.8,0.1-4.8-0.701-3.1c-0.699,1.6-1.399,3.7-2,6c-0.699,2.4-1.1,1.8-1.5-1.7c-0.299-3.6,0-5.899,0.801-6.8c0.3-11.8,4.199-21.5,11.199-30l12.101-24c4.868-8.712,8.247-18.176,10-28
  				c0.872-8.532,2.892-16.907,6-24.9c9.2-6.699,16.101-13.6,21.8-21.1c6.172-8.771,10.68-18.601,13.301-29c0.6-0.7,1.1,0.3,2.399,2.2c1.399,1.899,2.8,1.8,4.399-0.2c1.5-1.9,2.601-3.3,3.201-4.2c0.6-0.8,0.199-2.7-1.101-5.7c-1.399-2.899-2.3-3-3-0.1
  				c1.8,1.9,1.8,3.5,1,5.6c-0.8,2.2-1.2,2.2-1.2,0.2c-0.1-2.1-0.8-2.5-2.3-1.2c-1.399,1.4-1.899,1-1.5-1.199c0.399-2.101,1-3.9,1.899-5.301c0.9-1.399,1.5-3,1.9-4.699c0.4-1.801,1.1-3.2,2.2-4.4c4.432-10.75,6.116-22.436,4.899-34c-0.199-4-1.6-6-4.299-6.9
  				c-2.601-1-5.101-2.6-7.4-5c-2.2-2.399-4.301-3.899-6.4-4.699c-2-0.7-3.8-2.7-5.4-6.101c-1.6-3.399-3-3.7-4-0.8c-1.1,2.9-2.799,4.1-4.899,3.6c-2.2-0.6-4.5-1.3-7-2.3s-5.101-1.6-7.8-1.7c-2.6-0.1-4.7-0.899-6.2-2.199c-1.5-1.4-3.3-2.9-5.3-4.4
  				c-2.1-1.5-2.2-3.6-0.301-6.2c1.9-2.7,3.9-3.7,6.101-3.1c2.101,0.6,4,1.3,5.8,1.899c1.801,0.7,4.2,0.7,7.1-0.1c9.753,1.132,18.893,5.334,26.101,12c2.2,3.5,3.399,6,4.7,8.1c1.3,2.2,2.8,1.301,4.699-2.6c1.801-4,2.701-6.5,2.5-7.6c-0.399-2.2-1.6-4.5-2.799-7.9
  				c-1.301-3.4-0.801-4.7,1.399-3.9c2.3,0.9,3.399-0.199,3.601-3.1c0.1-2.9-0.301-5.3-1.101-7c0.7-2.4,1-4.7,1.101-7.8c0.1-3-0.9-3.7-3.101-2c-2.101,1.8-3.3,2-3.601,0.6c-0.299-1.3-0.399-3.1-0.5-5.399c-0.1-2.301-0.399-3.7-1-4.301c-0.5,2.2-0.699,3.9-1.6,5.9
  				c-0.8,2.1-1.3,1.7-1.6-1.2c-0.2-2.8-0.801-3-1.7-0.399c-1,2.5-1.2,4.199-0.7,5c0.5,0.899,1.1,1.3,1.801,1.399c0.699,0.101,0,1.5-2.101,4.2c-0.101-9.2,0.3-19.4,0.899-29.7c-1.699,3.4-2.6,5.2-3.6,5.9s-1.9,1.7-2.699,2.899c-0.701,1.2-1,0.4-0.801-2.399
  				c0.2-2.8,0.2-5.2,0.1-7.101c-0.1-1.8-0.1-3.899,0-6.199c0.201-2.2,0.101-4.4-0.199-6.5c-0.301-2.101-0.6-4-0.9-5.9c-6.3-9.5-10-17.8-11.9-26c-0.899-2.5-1.799-4.1-2.799-5.9c-1-1.8-1.701-2-2.101-0.5c-0.399,1.601-0.399,3.601,0.101,6.301
  				c0.5,2.6,0.399,3.8-0.101,3.6c-0.5-0.3-1.2-1.6-2-3.9c-0.7-2.3-1.3-4.5-1.7-6.5c-0.3-2-1-3.399-1.9-4.199c-1-0.801-2-2-3.199-3.601c-1.2-1.5-2.301-3.6-3.5-6.2c-1.1-2.6-2.301-3.399-3.6-2.5c-1.301,0.9-2,0.2-2-2.3c-0.101-2.399-0.601-4.2-1.701-5.3
  				c-1.1-1-1.5-2.1-1.199-3.2c0.3-1-1-1.3-3.801-1c-2.799,0.4-3.299,2.101-1.399,5c2.601,3.5,3.7,6.3,4.5,8.7c0.7,2.4,0.3,5.4-1.3,9c-1.5,3.6-2.301,4.4-2.301,2.5c-0.6-3.4-0.699-5.8-0.299-8c0.399-2.3-0.201-2.1-1.701,0.5c-1.6,2.6-2.799,4.5-3.5,5.7
  				c-0.699,1.3-0.6,0.2,0.301-3s1.9-5,3.199-5.3c0.601-2.9,0.201-4.5-0.299-5.801c-0.4-1.199-1-2.6-1.701-4.1c-0.699-1.5-1.5-0.8-2.299,2c-0.801,2.9-1.4,3.8-1.601,2.9c-0.3-1-0.3-2.7,0-5.101c0.2-2.399-0.101-3.399-1.101-3c-1.1,0.4-2.399,0.3-4.1-0.3
  				c-1.699-0.6-2.699-0.4-2.9,0.5c0.101-3.2,0.201-5.2,0.201-6.9c0.1-1.8-1-2.399-3.301-1.8c-2.3,0.601-4.199,0.9-5.699,1c-1.5,0-1.101-1.1,1.199-3.5c2.2-2.399,2.5-4,0.7-5c-1.8-1.1-2.899-0.6-3.399,1.2c-0.401,1.8-1.301,0.9-2.701-2.8c0.2-2.4,0.1-3.4-1-3.4
  				c-1.2,0-2.5-0.7-4-1.899c-1.5-1.2-2-2.801-1.6-4.9s1.5-3.1,3.2-3.1c1.7,0,1.9-1.101,0.5-3.301c-1.4-2.3-0.6-2.5,2.3-0.6s4.5,1.6,4.7-1c1.8-6,2.8-7.7,3.899-6.1c1.101,1.6,2.5,1.5,4.301-0.2c1.8-1.8,4-3.4,6.699-4.7l2.9-1.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M49.876,101.692c-0.7-1.7-0.5-2,0.7-0.801c1.3,1.101,2.3,1.301,3,0.7c0.7-0.6,1.1-0.2,1.3,1.101c0.1,1.399,0.1,2.399-0.1,3.1c0.5,1.5,1.2,2.9,1.3,5.2c0.1,2.399-0.8,3.7-2.7,3.899
  				c-2,0.101-2.8-1.199-2.5-3.899c-1.4-1.4-1-2.4,0.3-3.4c1.3-1,1.3-1.7-0.1-2.1c-1.3-0.4-1.7-1-1.2-1.7v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M174.776,113.092c0.5,1.101-1.1,2.8-4.9,4.9c-5.3,0.899-4.3-0.4,2-3.4l2.9-1.5z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M208.176,119.892c3.6-2.6,3.9-1.699,0.8,2.801l-0.8-2.801z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M139.876,122.692c4.6-1.9,5.5-0.4,2.8,4.399c-2.7,4.7-1.7,5.4,3.1,1.8l-9.9,14.9c-1.8-0.6-2.9-0.3-3.4,0.8c-0.4,1.101-1.6,2.9-3.3,5.4c-1.8,2.6-2.9,3.3-3.3,2.3s0-2.6,1.1-4.8
  				c1.2-2.3,1.2-2.9-0.1-1.9c0.5-4.3,2.5-5.2,5-2.8c1.9-3.9,1.6-4.7,0-3.3c-1.7,1.3-2.1,1.1-1.2-0.7c1.4-4.5,3-6.8,5.2-8c1-2.9,2-4.6,3-6l1-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M162.776,122.092c5.2-1.1,5,0.5-0.6,4.7c0,2.8-0.6,3.1-1.2,1.8c-0.7-1.3-1.3-1.5-2.1-0.6c-0.7,0.899-1.4,0.399-1.9-1.5c-0.6-1.8-0.2-2.5,1.2-2.101c1.5,0.4,2.6,0.5,3.6,0.4l1-2.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M126.776,131.092c0.7,0.2,0,1.5-2.1,3.8c-2.1,2.4-2.3,2.101-0.7-1.1l2.8-2.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M209.876,135.692c1.4-1.301,1.9-0.801,1.4,1.399c-0.6,2.3-1,3.8-1.4,4.5c0.1,1-0.6,1.601-1.2,2.101c-0.6,0.5-1.4,1.199-2.5,2c-1,0.899-1.5,0.8-1.4-0.301c0-1.1,0.1-2.1,0.4-3.1
  				c0.2-0.9,0.8-2,1.7-3.1c0.9-1.101,1.9-1.601,2.9-1.4l0.1-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M231.875,138.692c0.5-1.5,0.801-1.101,0.801,0.899c0,2.101-0.5,3.8-1.7,5.2c-0.8,3.9-1.399,4.2-1.899,1.7c-0.4-2.4,0.299-4.3,2-5.7l0.799-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M249.875,143.692c2-1.5,3.301,0.5,4,5.899c3.258,4.392,4.98,9.733,4.9,15.2c-2.8-0.9-3.8-3.1-3.9-5.8c-2.121,3.194-3.204,6.966-3.1,10.8c-1.9,4.3-3.199,5-4.9,3l2-21
  				c1.701-2.3,2.301-4.3,1.801-6l-0.801-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M214.876,147.692c1.3-1.301,1.8-0.801,1.4,1.399c-0.4,2.3-1.3,3.601-2.9,3.9c-1.5,0.399-2.1,1.2-1.7,2.6c0.4,1.4,0.1,2.9-0.9,4.7c-1,1.7-1.6,3.4-1.8,5c-0.1,1.6-0.6,3.5-1.2,5.5
  				c1,1.4,2,0.9,2.4-0.6c0.4-1.4,0.8-2.801,1-4.2c0.2-1.5,0.7-2.8,1.5-4c0.7-1.2,1.4-2.7,1.9-4.601c0.6-1.899,1.2-2.3,1.7-1.199c0.6,1,0.6,2.3,0,3.8c-0.5,1.5-0.8,3-0.7,4.3c0,1.4-0.8,2.5-2.4,3.2c-1.6,0.7-1.6,1.5,0.1,2.399c1.6,0.801,2.2,1.4,1.7,1.601
  				c-0.5,0.3-1,1-1.3,2.3c-0.4,1.3-0.8,2.7-1.3,4.2s-1.1,2.7-1.9,3.5c-0.8,0.899-1.7,1.6-2.7,2.3c-0.9,0.7-1.8,1.8-2.6,3.4c-0.8,1.6-1.3,3.1-1.5,4.3c-0.3,1.3-1,2.6-2.1,4.1c-1.1,1.5-2.2,2.9-3.2,4c-1,1.2-1.1,0.5-0.2-1.899c0.9-2.5,0.9-3.2,0-2.4
  				c-0.9,0.9-1.9,2.1-3.1,3.8c-1.2,1.7-1.9,2.9-2.1,3.601l10.9-31.9c1.5-2,1.8-3.5,0.8-4.4c-1-0.8-2-0.3-3,1.601c-1,1.899-1.9,3.7-2.7,5.399c-0.9,1.601-1.8,3.4-2.6,5.2c-0.9,1.9-2,3.101-3.2,3.601c-1.2,0.5-2.5,2.1-4.2,4.6c-0.7,1.8-1.1,2.9-1.4,4.2
  				c-0.3,1.3-0.9,1.5-2,0.7c-1-0.7-1.3-1.801-0.8-3.101c0.4-1.399,1.1-2.2,1.9-2.399c0.8-0.301,1.4-1.101,1.8-2.5c0.4-1.5,0.8-2.7,1.1-3.801c0.3-1.1,0.9-1.6,1.8-1.5c0.9,0.2,1.7-0.699,2.5-2.399c0.8-1.8,1.5-2.9,2.2-3.2c1.9-2.5,3.1-4.3,4.3-6.4
  				c1.3-2.199,2.4-4.1,3.3-5.699c0.9-1.601,2.2-2.801,3.9-3.601c1.6-0.8,2.2-2.3,1.8-4.5c-0.5-2.2,0.7-3.399,3.6-3.6l1.9-1.3z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M239.875,148.692c0.701-1.5,0.801-1.101,0.201,0.899c-0.5,2.101-0.201,3.8,0.799,5.2c-0.699,1.6-1.299,2.4-1.699,3.3c-0.5,0.9-0.6,1.9-0.2,2.9c0.3,1,0.101,1.399-0.7,1.1
  				c-0.8-0.2-1.6-0.3-2.3-0.1c-0.7,0.1-0.7-0.601-0.101-2.2c-0.1-1.9,0-2.9,0.301-4.1c0.3-1.2,0.9-1.5,1.699-1.101c0.801,0.4,1.101,0.3,1-0.399c-0.199-0.7-0.5-1.2-1-1.5c-0.399-0.4-0.399-1,0.101-1.9l1.899-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M228.875,158.692c0.701-1.301,1-0.4,0.9,2.699c0,3,0.7,3.601,2.301,1.601c-0.291,6.797-1.746,13.494-4.301,19.8l-6.9,14c-0.799,0.9-1.399,0.7-1.699-0.4c-0.4-1-1.1-0.899-2,0.601
  				c-1,1.5-1.9,2.6-2.9,3.399c-1,0.9-1.4,1-1.3,0.4c2-2.5,2.6-4.4,2.6-6.5s-0.7-1.9-2,0.4c-1.4,2.3-1.9,2.3-1.5,0.1c2.3-2.8,4.1-5.1,5.9-8c0.899-4.5,1.7-6.8,3.101-8l4.699-16.8c0.9,3.399,2,3,3.1-1.2v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M103.776,159.092c2.1,0.5,1.4,2.7-2.1,6.7c-3.702,3.571-6.928,7.604-9.6,12c-4.425,3.826-7.914,8.615-10.2,14c-4.947,6.396-9.016,13.425-12.1,20.9c0.006-4.509,1.141-8.943,3.3-12.9
  				c3.8-3.7,5.2-5.7,4.8-7l24-32l1.9-1.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M310.176,164.892c0.4-1.6,1.3-0.899,2.699,2c1.301,2.801,1,3.2-1,0.9l-1.699-2.9z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M270.176,166.892c0.5-1.699,1-1.399,1.5,0.801c0.5,2.3,0.199,3-0.801,2.1l-0.699-2.9z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M237.875,168.692c0.89-2.321,3.492-3.481,5.813-2.593c2.32,0.89,3.481,3.492,2.592,5.813c-0.707,1.845-2.533,3.013-4.504,2.88c0,1.5,0.2,3.3,0.5,5.3c0.4,2,0,3.9-1.199,5.7
  				c-1.201,1.8-1.9,3.8-2.101,6c-0.3,2.2-0.899,4.5-2.101,6.8c-1.1-1.399-0.899-2.5-0.299-3.399c0.6-0.9,0.799-2,0.699-3.5s-0.699-1.5-1.9,0.199c-1.199,1.7-1.799,1.9-1.799,0.601s-0.5-1.5-1.5-0.4c-1.101,1-1.701,1.9-2.101,2.5c3.667-7.552,6.323-15.554,7.899-23.8
  				v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M262.176,170.892c1.199-0.699,1.9,0.801,2.1,4.7c0.2,3.8,1.1,6.8,2.6,9l0.101-13.6c4.651,8.63,4.576,19.038-0.2,27.6c-4.5,3.8-7.8,7-10.8,10.101c-2.101-5.2-0.8-8.2,3.7-9.9
  				c2.586-8.067,3.67-16.541,3.199-25l-0.699-2.9z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M186.776,173.092c1-0.2,0.8,0.7-0.6,2.8c-1.4,2.101-1.8,2.101-1.3-0.1l1.9-2.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M183.876,179.692c1.4-0.801,1,1.199-1,6.1c-0.7,2.1-1.5,2.8-2.4,3.2c-1,0.399-0.9-0.101,0-1.5c1-1.4,1.4-2.4,1.4-3.2s0.3-1.6,1-2.5l1-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M294.875,184.692c0.301-1.601,1-1,2.201,1.699c1.1,2.601,0.699,2.801-1.301,0.4l-0.9-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M248.776,191.092c0.7-0.2,0.4,0.7-0.9,2.8c-1.199,2.101-1.6,2.101-1-0.1l1.9-2.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M185.876,194.692c0.7-1.601,1-1,0.8,1.699c-0.1,2.601-0.4,2.801-0.8,0.4v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#141414;stroke:none;" d="M340.875,197.692c0.701-1.601,1-1,0.801,1.699c-0.1,2.601-0.4,2.801-0.801,0.4v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M368.875,201.692c0.9-0.801,1.801,0.199,2.701,3.1c0.799,2.8,1.898,5,3.199,6.6c1.4,1.5,2.1,2.7,2.1,3.5c4.053,3.823,5.959,9.396,5.1,14.9l-1.1,13c-1.248,3.506-1.957,7.182-2.1,10.9
  				c-0.213-8.1-1.49-16.135-3.801-23.9l-4.1-20c0.1-2.3-0.6-4.3-2-6v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M56.876,213.692c1.2-0.9,0.8,0.399-1.3,3.699c-2,3.301-2.2,2.801-0.5-1.6l1.8-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M361.875,216.692c1.201-2,1.801-1.601,1.801,1.199c0.1,2.801-0.301,3.101-1,0.9l-0.801-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M52.776,221.092c0.8,0.2,0.7,1.5-0.5,3.8c-1.1,2.4-1.2,2.101-0.4-1.1l0.9-2.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M25.876,231.692c0.6-1.301,1.5-1.801,2.6-1.5c1,0.3,0.9,0.8-0.4,1.399c-1.3,0.7-2.3,1.4-3.1,2.101l0.9-2z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M263.776,233.092c3.801-0.5,7.2,0.4,10.1,2.7c2.101-0.8,3.201-0.8,4.201,0c1.1,0.8,2.199,1.4,3.399,1.8c1.2,0.4,2.101,0.8,2.899,1.101c0.801,0.399,1.4,0.1,1.801-0.801
  				c0.4-0.899,0.699-0.399,0.9,1.4c0.1,1.8,0.1,2.9,0.1,3.3c-0.1,0.4-0.7,0.9-1.7,1.601c-1.101,0.699-0.3,1.3,2.3,1.8c-7.569,1.365-15.318,1.399-22.9,0.1c-3.799,1.2-4.6,0.5-3.5-1.399c1.101-2,1.601-3.2,1.5-3.801c-6.1-1.5-6.399-3.199-2-5.3l2.9-2.5z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M5.876,237.692c0.4-1.2,1.1-0.7,2.1,1.3c1,2.1,1.4,3.899,1,5.3c-0.4,1.5-0.1,3.2,0.9,5.2c1-0.9,0.8-0.2,0.6,1.7c-0.3,1.8-1.2,2.699-2.8,2.699c-1.5,0-1.8-0.6-0.9-1.699
  				c0.9-1.2,1.1-2.101,0.7-2.601c-0.5-0.6-0.4-1.5,0.2-2.8c-2-2.4-2.4-4.4-1.8-7v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#262626;stroke:none;" d="M46.876,240.692c0.5-1.2,0.8-0.7,1,1.3c0.1,2.1,0.1,3.899,0,5.3c-0.1,1.5-0.1,3.3-0.2,5.4l-0.8-10.9v-1.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M172.876,243.692c0.6-1.9,1-1.9,1.2,0.1c0.2,1.9,1.5,2.9,3.8,2.9c8.9,3.399,9.2,4.399,2,3.1c-2.9,1.3-3.9,1.1-4-0.7s-0.8-2.399-2.2-2c-1.3,0.5-1.9,0.101-1.6-1.3l0.8-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M290.776,243.092c1.4,0.601,1.9,1.8,1.4,3.4c-0.4,1.7-1.5,1.1-3.2-1.9l1.8-1.5z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M7.776,268.092c5.2,0.7,5,1.5-0.7,2.5l0.7-2.5z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M49.776,284.092c2,1.601,1.5,2.5-1.5,2.7s-3.5-0.2-1.4-1.2l2.9-1.5z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M195.776,284.092c4.4,0.601,4.7,1.5,1.1,2.7c-5.617,2.455-8.18,9-5.725,14.617c0.209,0.478,0.451,0.939,0.725,1.383c5.7,0,10.3,1.4,14.9,5c1.6,6,4.6,9,8.9,10c0.2,5-1.4,5.7-5.7,3
  				c-1.6,2.4-3.6,2.1-6.1,0.1c-5.4,2.7-7.1,3.4-6.1,2.9c-4.4,0.1-6.2-0.9-6-4c-1.2-3.1-2.5-5.6-4.8-8.1c-1-4.4-0.6-6.4,0.9-7c0.5-4.9-0.1-8.2-1-10.9c-4-1.5-4-3.1-0.8-4.8c3.2-1.7,5.5-3.101,6.8-4.2l2.9-0.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#111110;stroke:none;" d="M305.875,285.692c0.701-1.601,1-1,0.801,1.699c-0.1,2.601-0.4,2.801-0.801,0.4v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M42.776,288.792c-0.8-1.3-0.1-1.6,2.1-1c2.3,0.6,2.9,1.3,2,2c-1.5,1.9-2.9,2.8-5.3,3.1c-2.4,0.301-1.9-0.399,1.3-2.1l-0.1-2z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M46.876,292.692c2.7-1.2,3.3,0.8,1.8,6c-1.6,1.1-2.4,1.5-3.2,1.399c-0.7-0.1-1.6,0.3-2.5,1c-1,0.8-1.3,0.4-1.1-1.2c0.2-1.5,0-1.8-0.6-0.699c-0.6,1-1.2,1.3-1.9,0.699
  				c-0.8-0.5-0.7-1.1,0.2-1.699c0.8-0.5,1.2-1.2,1.2-2c-0.1-0.801,0.1-1.301,0.5-1.5c0.4-0.2,1.1-0.2,2.2-0.101c1,0.101,1.8,0.101,2.4,0l1-1.899z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M34.876,298.692c0.6-1.601,1.4-1,2.2,1.699c0.9,2.601,0.4,2.801-1.3,0.4l-0.9-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M173.776,300.092c1.3,0,1.2,1-0.3,2.9c-1.5,1.899-2.8,3.6-3.9,5.3c-1.2,1.7-2.4,2.8-3.9,3.3c-1.4,0.5-3.4,0.601-5.8,0.3c-2.6,0.9-3.3,1.801-3,2.9s0,1.6-0.9,1.4c-0.9-0.101-0.6,0.3,0.9,1.3
  				c1.4,1,1.5,1.7,0.2,2.1c-1.4,0.4-1.8,1.2-1.2,2.5c0.6,1.2,1.3,1.3,2.1,0.2c0.8-1.1,1.6-1.1,2.2,0.1c0.6,1.2,1.5,2.101,2.7,2.601c1.2,0.6,2.3,1.1,3.5,1.6c1.2,0.4,2.3,0.7,3.5,0.7s2.3,0,3.5,0s2.3,0.1,3.5,0.5c1.2,0.1,2.5,0,4-0.3c1.4-0.3,2.5,0.1,3.2,1.1
  				c0.8,1,1.9,1.2,3.5,0.8c1.6-0.5,2.7-0.399,3.4,0.4c0.6,0.7,1.6,0.8,2.7,0.3c1.2-0.5,2.3-0.5,3.3,0s2.1,1.3,3.3,2.3c1.2,1,2.5,1.4,3.9,1.4c1.4-0.1,2.4,0.3,3.2,1.2c0.8,0.8,2,1.3,3.5,1.3c1.6,0.1,2.9,0.2,4,0.5l33,11.1c1,0.5,1.9,0.2,2.801-0.699
  				c0.9-1,1.5-1.101,1.8-0.301c0.399,0.7,0.899,1,1.7,1c0.8-0.1,1,0.2,0.699,0.9c-0.399,0.7-1.199,1.2-2.399,1.3c-1.3,0.101-2.2,0.4-2.8,0.8c-0.6,0.5-1.6,0.601-2.9,0.5c-1.4-0.199-2.3,0.101-2.8,0.801c-0.399,0.8-1.399,1.1-2.8,1.199c-1.4,0.101-2.4,0.4-2.9,1.101
  				c-0.5,0.6-1.199,0.7-2,0.399c-0.8-0.399-0.8-1.1,0.1-2.1c0.9-1,1.4-2.1,1.4-3.4c0-1.199-0.6-1.6-1.8-1.3s-1.601,0-1.101-0.899c0.601-1,0.201-1.7-1-2.301c-10.234-3.77-21.098-5.535-32-5.199c-2.3-1.7-3.9-2.101-5.8-1.801c-1.9,0.301-3.2,0.101-3.9-0.399
  				c-0.7-0.5-1.7-1.3-3.1-2.4c-1.3-1-2.7-1.2-4.2-0.6c-1.6,0.7-2.7,0.399-3.5-0.9s-1.7-2.2-2.6-2.7s-1.7,0.2-2.4,2.101c-0.6,1.8-1.1,3.399-1.4,4.7c-0.3,1.3-0.2,2.699,0.3,4.399c0.6,1.7,1.4,2.8,2.5,3.3c1.1,0.601,2.3,1.601,3.7,3.2c1.4,1.601,2.8,2.4,4.4,2.3
  				c2.3,0.601,3,1.101,3,2.301c0.1,1.199-0.8,1.1-2.5-0.101c-1.7-1.3-3.3-2-4.8-2.1c-1.5-0.2-2.6-0.7-3.4-1.601c-0.7-0.899-1.8-1.199-3.3-0.8c-1.5,0.4-3-0.399-4.3-2.3c-1.4-2-2.8-3.5-4.3-4.6c-1.4-1.2-2.8-2.601-4.1-4.301c-1.4-1.699-2.1-2.6-2.3-2.6
  				c-0.7-2.3-1.7-3.1-3.2-3.3c-1.4-0.2-2.3-0.8-2.7-1.9c-0.3-1.2-0.9-1.5-1.9-1.1c-0.9,0.5-1.7,0-2.2-1.3c-0.6-1.4-1.2-1.601-1.9-0.7c-0.7,0.899-1.2,0.8-1.6-0.2s-0.5-2.1-0.5-3.1c0.1-1,0.1-2.101-0.1-3.301c-0.2-1.199,0-2.199,0.8-2.8c0.7-0.7,1.4-1.5,1.9-2.5
  				c0.6-1,1.1-2,1.5-3c0.5-0.899,1.4-0.899,2.9,0.101c0.9-2.5,1.4-3.5,2.5-4c1-0.5,2.2-0.601,3.6-0.4c1.3,0.2,2.4-0.4,3.1-1.9c0.8-1.399,1.7-2,2.8-1.699c1.1,0.3,2,0,2.7-1c0.6-1,1.7-1.301,3.3-0.9l2.9-1.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#10100F;stroke:none;" d="M114.876,301.692c0.7-1.601,1-1,0.8,1.699c-0.1,2.601-0.4,2.801-0.8,0.4v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M227.776,311.092c2-1.1,3.5-0.899,4.5,0.4c0.9,1.2,0.5,2.399-1.4,3.6c-1.799,1.101-3.1,0.7-3.899-1.399l0.8-2.601z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M248.176,312.892c1.6-1,2.8-0.3,3.6,2.2c0.801,2.5,1.5,4.2,2.1,5.2c0.601,0.9,1.4,2.8,2.5,5.5c1,2.7,2.201,3.4,3.5,2c-0.1,1.5-0.1,2.5,0.101,3.9c0.2,1.399,0.601,1.8,1.399,1.1
  				c0.701-0.6,1.201-0.3,1.4,0.9c0.2,1.199,0.1,1.899-0.4,2.1c-0.5,0.3-0.799,1-0.699,2.4c0.1,1.399,0.5,2.6,1.4,3.5c0.799,0.899,1.399,2,1.799,3.1c0.301,1.2,0.5,2.2,0.4,3.3c-0.1,1-0.6,2.2-1.5,3.601c-1.6-2.9-2.4-5.601-2.9-7.9c-4.466-5.28-7.832-11.4-9.899-18
  				c-0.222-3.407-0.894-6.77-2-10l-0.8-2.9z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#0D0D0D;stroke:none;" d="M168.776,327.792c-0.6-1.2,0-1.7,2-1.6c1.9,0.1,1.9,0.6,0.1,1.6h-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#303030;stroke:none;" d="M357.875,328.692c0.6-1.5,0.9-0.801,1,1.899s-0.1,4.101-0.799,4.2c-0.602,0.1-0.602-1.2-0.201-4v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#10100F;stroke:none;" d="M114.876,329.692c0.7-1.601,1-1,0.8,1.699c-0.1,2.601-0.4,2.801-0.8,0.4v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M70.876,331.692c1.7-1.4,1.7-0.7,0,2.1v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M77.876,336.692c1.5-1.5,3.2,0.5,5,6.1c-1.3,2.8-2.3,3.2-3,2c-0.7-1.1-0.8-2.1-0.4-2.9c0.5-0.8-0.4-1.899-2.6-3.1l1-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M70.876,340.692c0.9-0.9,1.4,0.3,1.5,3.699c0.1,3.301-0.6,2.801-2.3-1.6l0.8-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M368.776,343.092c1.301,0.4,1.301,0.9-0.301,1.601c-1.5,0.699-2.6,1.5-3.299,2.3c-0.6,0.8-0.4,0.1,0.699-2.2l2.9-1.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M87.876,373.692c-0.8-1.301-0.5-1.7,0.8-1.2c1.4,0.399,2.1,0.5,2.2,0.1c0.1-0.399,0.1,0.101,0,1.4c0,1.399-0.7,1.7-2,0.8l-1-1.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M319.875,382.692c0.4-1.5,0.701-1.101,1,1.1c0.201,2.3,0,3.7-0.699,4.1c-0.701,0.5-0.801-0.5-0.301-3.1v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#515151;stroke:none;" d="M320.875,383.692c0.9-1.301,1.201-0.4,0.801,2.699c-0.4,3.101-0.701,2.9-0.801-0.6v-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M285.176,402.892c0.5-1.399,1.4-1.3,2.8,0.301c1.399,1.6,1,2.1-1.101,1.699l-1.699-2z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M281.776,403.092c0.4-0.3,1.1,0,2,0.9c0.801,0.899,1,1.5,0.301,1.899c-0.701,0.301-1.5,0.801-2.5,1.301s-1.201,0.1-0.701-1.4l0.9-2.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M306.776,404.092c1.1,0.101,0.4,1-2.3,2.601c-2.601,1.6-4.101,1.899-4.5,0.8c-0.399-1,0.899-1.601,3.899-1.8l2.9-1.601z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#262626;stroke:none;" d="M287.776,411.792c-0.4-1.3,0.6-1.8,3-1.5c2.301,0.3,2,0.8-0.9,1.5h-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M140.876,412.692c-0.2-1.301,0.2-1.7,1.1-1.2c1,0.399,1.6,0.399,2,0.1s0.5,0,0.3,1.101c-0.1,1-0.5,1.199-1.2,0.6c-0.6-0.6-1.3-0.1-2,1.4l-0.2-2z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M145.876,414.692c3-1.9,5.6-0.5,7.8,4.3c0.1,1.8,0.2,2.7,0.5,3.6c0.3,0.9,0,1.9-0.9,2.8c-0.8,1-1.8,1-2.9,0s-1.8-0.899-2.3,0.4s0.4,2.6,2.8,3.9c1.1,0.5,1.4,1.199,1.7,2.6c0.2,1.3,0,1.9-0.6,1.7
  				s-1.5-0.101-2.6,0.2c-1.1,0.399-1.6,0.1-1.5-1c0-1.101,0.1-1.9,0.1-2.301c0.5-2.1-0.4-2.6-2-1.699c-1.6,0.899-3,0.699-4.1-0.4c-2.1-2.5-1.7-3.6,0.3-3.3s1.5-0.2-1.3-1.601c0.1-4.1-0.9-6-3.8-6c1.5-2.5,2.6-2.899,4.1-1.6c1.5,1.4,2.4,0.9,2.7-1.4l2-0.199z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M162.876,425.692c3.8-2.101,4.1-1.7,1,1.199l-1-1.199z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;stroke:none;" d="M161.176,527.892c6.527-0.989,13.164-1.022,19.7-0.1h12l10.9,0.9c-2.7,2-5.3,3-7.9,3.1c-1.3,0.5-2.3,0.3-4.1,0.1c-1.7-0.199-2.7,0.2-3,1c-0.3,0.801-1.2,0.9-2.8,0.2c-1.6-0.6-2.5-0.6-2.7,0.2
  				c-0.2,0.7-1.4,1-3.5,0.7c-2-0.2-2.7-0.601-1.9-1.101c-2.5,0.801-3.5,0.101-4.2-1.199c-0.6-1.4-1.7-1.9-3.3-1.5c-1.6,0.3-2.7-0.301-3.3-2c-0.6-1.801-1.7-1.801-3.2-0.301h-2.7z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M142.876,536.692c0.2-1.4,1-0.5,2.6,2.6s2,4.5,1.1,4.3c-0.8-0.3-2-1.899-3.5-4.8l-0.2-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M149.876,547.692c-0.2-1.301,0.5-0.801,2.1,1.399c1.5,2.3,2.9,4.2,3.9,5.7c4.5,5.8,7.2,10.1,8.8,13.9c-5.835-5.514-10.792-11.888-14.7-18.9l-0.1-2.1z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M165.176,570.892c0.2-2,1-1.899,2.4,0.4c1.3,2.2,2.4,3.8,3.5,4.5c2.3,2.6,3.5,4.3,4.5,6.2c0.9,1.899,2.4,3.5,4.5,4.7c2.1,1.199,1.7,1.899-1.2,2.1l-12.1-16l-1.6-1.9z"/>
  		</g>
  		<g>
  			<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:none;" d="M184.776,585.092c2.3,0.9,5,1.8,8,2.7c-0.3,1.9-1.1,2-2.5,1.4c-1.3-0.601-1.9-0.2-1.6,1.1c0.3,1.4-0.3,1.4-1.8,0.1c-1.4-1.199-2.4-1.399-2.9-0.399c-0.5,0.899-1,1.3-1.7,1.3
  				c-0.6-0.1-0.6-0.8,0-2.1c0.5-1.301,0.8-2.101,0.7-2.4l1.8-1.7z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M110.117,367.483c-7.499,28.498,4.5,62.996,25.499,83.996"/>
  			<path style="fill:#DD192A;stroke:none;" d="M108.45,365.721c-7.732,30.791,4.995,64.737,26.764,86.891c2.384,2.427,2.336-0.705,0.804-2.264c-20.342-20.702-31.422-52.475-24.234-81.102c0.375-1.495-3.013-4.804-3.334-3.525z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M139.851,455.03c2.944,9.323,1.472,14.721-1.472,24.534c-2.453,10.304,0.491,21.59-2.944,31.403"/>
  			<path style="fill:#DD192A;stroke:none;" d="M137.399,455.237c2.787,9.479,0.065,16.534-1.865,25.765c-2.018,9.648,0.545,19.658-2.438,29.202c-0.794,2.542,3.988,3.729,4.677,1.527c3.079-9.85,1.15-20.092,2.728-30.152c0.753-4.804,2.71-9.306,3.305-14.177
  				c0.519-4.251-0.311-8.52-1.504-12.579c-0.663-2.253-5.639-2.094-4.902,0.414z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M106.975,426.571c0.491,6.379,3.926,12.758,7.851,17.174c3.925,5.888,13.248,9.322,15.702,15.701c2.944,7.851-3.925,19.627-5.888,27.479c-1.963,6.378-9.323,24.043-4.907,29.44"/>
  			<path style="fill:#DD192A;stroke:none;" d="M104.585,427.304c1.119,9.767,7.151,18.045,14.783,23.903c3.666,2.814,7.692,5.493,9.125,10.119c1.398,4.515-0.734,10.079-2.198,14.312c-2.59,7.489-5.307,14.921-7.695,22.483c-1.744,5.526-4.752,13.969-1.064,19.304
  				c1.013,1.466,5.627-0.334,4.394-2.119c-3.763-5.443,0.803-15.891,2.627-21.372c2.577-7.745,5.59-15.384,7.92-23.201c2.575-8.639,0.45-14.471-6.502-19.958c-8.269-6.526-15.347-13.914-16.61-24.936c-0.203-1.771-5.009-0.527-4.78,1.465z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M259.085,390.752c-6.379,23.062-8.832,42.688-23.553,62.807c-11.776,16.192-13.739,39.254-14.721,58.881"/>
  			<path style="fill:#DD192A;stroke:none;" d="M256.725,390.811c-2.824,10.32-5.111,20.783-8.19,31.033c-3.498,11.642-8.741,22.112-15.729,32.035c-11.909,16.909-13.367,39.165-14.389,59.137c-0.134,2.612,4.666,1.244,4.789-1.152
  				c0.56-10.939,1.442-21.846,3.784-32.566c2.455-11.24,7.407-20.126,13.686-29.588c11.743-17.7,15.267-38.905,20.77-59.016c0.762-2.784-4.096-2.167-4.721,0.117z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M259.085,416.758c-4.416,11.776-7.852,23.062-11.776,34.838c-3.435,9.813-9.813,16.683-12.267,27.478"/>
  			<path style="fill:#DD192A;stroke:none;" d="M257.628,416.909c-4.271,11.496-7.914,23.202-11.776,34.838c-3.19,9.613-9.775,17.532-12.267,27.478c-0.306,1.22,2.637,0.804,2.914-0.303c2.477-9.891,8.755-18.005,12.267-27.478
  				c4.259-11.487,7.506-23.343,11.776-34.838c0.414-1.115-2.518-0.765-2.914,0.303z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M88.82,383.392c-2.944,7.36-4.907,15.701-5.888,23.553c2.944-4.907,4.416-10.305,7.851-15.211c0.981,9.322-3.435,20.608-4.416,29.931c1.472-5.397,3.435-10.795,6.379-15.701c-0.491,9.813-3.925,19.627-4.907,29.44
  				c0.981-4.907,3.435-9.813,4.907-15.211c-1.963,9.323-4.907,18.155-6.379,27.478c0.981-4.416,2.454-9.322,5.888-12.757c1.963,6.869-2.453,17.664-1.962,25.515c2.944-5.397,4.907-11.776,9.323-16.683c1.962,6.869-3.435,16.192-2.944,23.552
  				c1.963-3.435,4.416-7.851,7.36-9.813c-0.491,8.342-2.454,16.684-1.963,25.024c1.472-7.359,2.944-15.701,9.323-20.117c0.49,8.342-2.944,17.174-3.926,25.515c1.472-5.888,3.435-13.248,6.379-18.154c-1.472,11.285-2.944,23.062-4.907,34.347"/>
  			<path style="fill:#66BD61;stroke:none;" d="M87.431,383.211c-2.977,7.693-4.879,15.664-5.969,23.836c-0.21,1.573,2.373,0.936,2.859,0.078c2.771-4.887,4.587-10.23,7.68-14.943c-0.889-0.02-1.778-0.04-2.667-0.06c0.754,10.077-3.226,19.754-4.437,29.645
  				c-0.197,1.607,2.603,0.99,2.939-0.205c1.526-5.405,3.496-10.542,6.298-15.418c-0.953-0.025-1.906-0.052-2.859-0.078c-0.679,9.969-3.769,19.534-4.907,29.44c-0.181,1.576,2.651,1.047,2.94-0.205c1.181-5.11,3.349-9.904,4.826-14.928
  				c-0.953-0.026-1.906-0.052-2.859-0.078c-2.003,9.192-4.813,18.189-6.379,27.478c-0.258,1.529,2.643,1.066,2.939-0.205c1.068-4.574,2.45-8.655,5.637-12.206c-0.889-0.02-1.778-0.04-2.667-0.06c1.902,8.314-2.224,16.842-1.983,25.229
  				c0.043,1.525,2.34,1.068,2.859,0.078c2.931-5.589,5.043-11.523,9.152-16.415c-0.889-0.02-1.778-0.04-2.667-0.06c1.727,7.836-3.133,15.414-2.966,23.266c0.034,1.557,2.319,1.023,2.859,0.078c1.939-3.391,3.808-6.861,6.939-9.307
  				c-0.813-0.195-1.625-0.391-2.438-0.585c-0.598,8.363-2.275,16.61-1.963,25.024c0.06,1.594,2.683,1.087,2.94-0.205c1.413-7.088,2.74-14.671,8.821-19.327c-0.813-0.195-1.625-0.39-2.438-0.585c0.248,8.71-2.766,16.965-3.926,25.515
  				c-0.213,1.574,2.628,1.03,2.94-0.205c1.549-6.142,3.179-12.313,6.298-17.871c-0.953-0.026-1.906-0.052-2.859-0.078c-1.493,11.47-2.955,22.943-4.906,34.347c-0.255,1.491,2.711,1.132,2.939-0.205c1.952-11.403,3.414-22.877,4.907-34.347
  				c0.204-1.57-2.375-0.942-2.859-0.078c-3.212,5.723-4.865,12.116-6.46,18.438c0.98-0.068,1.96-0.137,2.94-0.205c1.16-8.55,4.173-16.805,3.926-25.515c-0.036-1.239-1.704-1.146-2.438-0.585c-6.656,5.097-8.269,13.104-9.826,20.907c0.98-0.068,1.96-0.137,2.94-0.205
  				c-0.313-8.414,1.365-16.661,1.963-25.024c0.09-1.27-1.783-1.097-2.438-0.585c-3.486,2.723-5.619,6.538-7.782,10.32c0.953,0.025,1.906,0.052,2.859,0.078c-0.173-8.085,4.708-15.737,2.923-23.838c-0.258-1.171-2.139-0.688-2.667-0.06
  				c-4.249,5.058-6.46,11.164-9.494,16.95c0.953,0.025,1.906,0.052,2.859,0.078c-0.247-8.611,3.9-17.24,1.941-25.801c-0.271-1.187-2.122-0.667-2.667-0.06c-3.428,3.818-4.99,8.383-6.14,13.308c0.979-0.068,1.96-0.137,2.939-0.205
  				c1.566-9.288,4.376-18.285,6.379-27.478c0.301-1.38-2.535-1.182-2.859-0.078c-1.533,5.213-3.762,10.19-4.988,15.494c0.98-0.068,1.96-0.137,2.94-0.205c1.138-9.906,4.228-19.472,4.906-29.44c0.108-1.583-2.353-0.959-2.859-0.078
  				c-2.904,5.051-4.881,10.392-6.459,15.984c0.979-0.068,1.96-0.137,2.939-0.205c1.241-10.127,5.168-19.896,4.395-30.217c-0.086-1.157-2.251-0.694-2.667-0.06c-3.212,4.895-5.144,10.402-8.021,15.479c0.953,0.026,1.906,0.052,2.859,0.078
  				c1.064-7.978,2.9-15.755,5.808-23.27c0.612-1.581-2.299-1.601-2.778-0.361z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M265.464,405.472c0,9.813-1.963,20.118-0.491,29.932c1.473-2.944,2.453-6.869,3.435-10.795c-2.453,11.285-5.397,22.08-6.869,33.366c1.472-4.907,2.944-10.305,3.435-15.211c-3.435,8.832-5.397,18.155-9.322,26.987
  				c0.49-2.454,0.98-5.397,1.472-8.342c-3.435,6.379-3.926,14.229-6.379,21.59c-0.981-4.907,0.49-10.795,0.981-16.192c-3.435,6.379-4.907,12.758-6.379,19.137c0.491-4.416,2.453-10.305,0.981-14.721c-2.944,8.832-2.453,18.646-6.379,26.987
  				c-0.981-2.944-0.49-6.379-0.49-9.813c-4.907,6.869-3.926,17.664-5.397,25.516c-0.981-5.889,0-11.776-0.491-17.174c-1.963,8.832-2.944,18.646-0.981,27.968"/>
  			<path style="fill:#66BD61;stroke:none;" d="M264.015,405.86c-0.117,10-1.773,19.946-0.491,29.932c0.098,0.756,2.649-0.124,2.882-0.632c1.582-3.464,2.509-7.112,3.435-10.795c-0.955,0.162-1.91,0.324-2.865,0.486c-2.442,11.096-5.316,22.096-6.869,33.366
  				c-0.111,0.807,2.659,0.21,2.865-0.486c1.482-5.007,2.811-10.017,3.435-15.211c0.101-0.839-2.618-0.168-2.865,0.486c-3.366,8.913-5.556,18.22-9.322,26.987c0.955-0.162,1.91-0.324,2.865-0.486c0.534-2.773,1.006-5.556,1.472-8.342
  				c0.142-0.85-2.57-0.108-2.865,0.486c-3.37,6.797-4.134,14.41-6.379,21.59c0.961-0.211,1.921-0.421,2.882-0.632c-0.812-5.429,0.408-10.795,0.981-16.192c0.066-0.624-2.616,0.112-2.882,0.632c-3.113,6.089-4.843,12.505-6.379,19.137
  				c0.955-0.162,1.91-0.324,2.865-0.486c0.678-4.965,2.253-9.872,0.998-14.866c-0.184-0.729-2.702,0.051-2.882,0.632c-2.736,8.881-2.647,18.393-6.379,26.987c0.961-0.211,1.921-0.421,2.882-0.632c-0.814-3.261-0.553-6.482-0.49-9.813
  				c0.014-0.756-2.615,0.221-2.882,0.632c-4.909,7.575-3.963,16.967-5.397,25.516c0.961-0.211,1.921-0.421,2.882-0.632c-0.756-5.719-0.132-11.436-0.491-17.174c-0.04-0.639-2.746-0.002-2.882,0.632c-1.988,9.312-2.792,18.696-0.998,28.113
  				c0.13,0.678,3.045-0.005,2.898-0.777c-1.776-9.322-1.008-18.589,0.965-27.822c-0.961,0.211-1.921,0.421-2.882,0.632c0.36,5.737-0.264,11.454,0.491,17.174c0.088,0.662,2.776-0.002,2.882-0.632c1.438-8.567,0.485-17.938,5.397-25.516
  				c-0.961,0.211-1.921,0.421-2.882,0.632c-0.062,3.33-0.323,6.552,0.49,9.813c0.192,0.769,2.65-0.1,2.882-0.632c3.73-8.594,3.642-18.106,6.379-26.987c-0.961,0.211-1.921,0.421-2.882,0.632c1.229,4.888-0.301,9.714-0.965,14.575
  				c-0.108,0.797,2.699,0.231,2.865-0.486c1.535-6.631,3.266-13.048,6.379-19.137c-0.961,0.211-1.921,0.421-2.882,0.632c-0.573,5.402-1.794,10.753-0.981,16.192c0.106,0.711,2.701-0.056,2.882-0.632c2.244-7.18,3.008-14.793,6.379-21.59
  				c-0.955,0.162-1.91,0.324-2.865,0.486c-0.465,2.785-0.938,5.568-1.472,8.342c-0.155,0.807,2.589,0.157,2.865-0.486c3.767-8.768,5.955-18.073,9.322-26.987c-0.955,0.162-1.91,0.324-2.865,0.486c-0.624,5.193-1.952,10.204-3.435,15.211
  				c0.955-0.162,1.91-0.324,2.865-0.486c1.553-11.271,4.427-22.27,6.869-33.366c0.162-0.736-2.678-0.261-2.865,0.486c-0.925,3.683-1.853,7.331-3.435,10.795c0.961-0.211,1.921-0.421,2.882-0.632c-1.282-9.984,0.373-19.931,0.491-29.932
  				c0.006-0.537-2.888-0.111-2.898,0.777z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M286.522,436.394c-13,32-21,65-35,96c-14,32-26,70-30,105"/>
  			<path style="fill:#97BD95;stroke:none;" d="M285.076,435.995c-6.872,17.045-12.491,34.538-18.322,51.956c-5.741,17.149-12.391,33.756-19.404,50.413c-13.288,31.56-23.312,64.96-27.327,99.029c-0.227,1.919,2.776,1.897,3,0
  				c4.105-34.837,14.72-68.883,28.425-101.076c6.673-15.674,12.771-31.413,18.199-47.569c5.852-17.412,11.449-34.909,18.322-51.956c0.724-1.795-2.179-2.567-2.893-0.797z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M297.522,442.394c-2,8-5,17-4,26c7-6,13-16,22-17c0,7-2,14-3,20c6-5,11-10,18-14c-3,9-7,17-8,26c11-3,19-16,32-15c0,12-11,24-10,36c11-7,20-22,34-24c-4,13-11,25-14,38c8-9,16-20,27-24c-1,10-7,20-8,30c6-2,12-7,19-8
  				c0,7-2,14-1,19c3-2,9-2,12-3c-1,3-1,8-2,10"/>
  			<path style="fill:#97BD95;stroke:none;" d="M295.904,440.487c-2.206,8.64-4.758,17.119-4.017,26.132c0.05,0.597,2.826,4.06,3.253,3.681c6.8-6.043,12.355-15.456,22-17c-1.084-1.228-2.169-2.454-3.253-3.681c-0.167,6.762-1.806,13.245-2.983,19.868
  				c-0.122,0.688,2.81,4.172,3.236,3.813c5.841-4.925,11.402-10.077,18-14c-1.079-1.271-2.157-2.542-3.236-3.813c-2.948,8.608-6.785,16.907-8,26c-0.1,0.744,2.459,4.051,3.236,3.813c11.483-3.527,18.988-15.518,31.868-15.006c-1.041-1.225-2.081-2.45-3.121-3.675
  				c-0.455,12.769-10.573,23.063-10,36c0.027,0.616,2.711,4.04,3.253,3.681c11.544-7.652,19.509-21.476,34-24c-1.079-1.271-2.157-2.542-3.236-3.813c-4.103,12.886-10.776,24.822-14,38c-0.186,0.762,2.99,4.092,3.236,3.813c7.942-9.012,15.447-19.448,27-24
  				c-1.079-1.271-2.157-2.542-3.236-3.813c-1.313,10.363-6.687,19.638-8,30c-0.092,0.725,2.492,4.087,3.236,3.813c6.508-2.404,12.075-6.707,19-8c-1.084-1.228-2.169-2.454-3.253-3.681c-0.151,6.307-1.9,12.71-1,19c0.091,0.63,2.608,4.036,3.253,3.681
  				c3.7-2.042,8.007-1.893,12-3c-1.079-1.271-2.157-2.542-3.236-3.813c-0.9,3.28-0.799,6.814-2,10c-0.427,1.134,3.325,3.576,3.236,3.813c1.201-3.187,1.099-6.721,2-10c0.197-0.718-2.499-4.017-3.236-3.813c-3.992,1.108-8.3,0.959-12,3
  				c1.084,1.228,2.169,2.454,3.253,3.681c-0.9-6.289,0.848-12.693,1-19c0.018-0.757-2.458-3.829-3.253-3.681c-6.924,1.294-12.492,5.597-19,8c1.079,1.271,2.157,2.542,3.236,3.813c1.313-10.363,6.687-19.638,8-30c0.091-0.717-2.508-4.1-3.236-3.813
  				c-11.552,4.553-19.057,14.989-27,24c1.079,1.271,2.157,2.542,3.236,3.813c3.224-13.179,9.896-25.115,14-38c0.234-0.737-2.47-3.945-3.236-3.813c-14.49,2.525-22.456,16.348-34,24c1.084,1.228,2.169,2.454,3.253,3.681c-0.573-12.907,9.544-23.226,10-36
  				c0.027-0.776-2.33-3.644-3.121-3.675c-13.056-0.52-20.5,11.422-32.132,14.994c1.079,1.271,2.157,2.542,3.236,3.813c1.215-9.094,5.052-17.393,8-26c0.225-0.657-2.701-4.13-3.236-3.813c-6.597,3.924-12.158,9.076-18,14c1.079,1.271,2.157,2.542,3.236,3.813
  				c1.193-6.714,2.847-13.283,3.017-20.132c0.019-0.77-2.445-3.81-3.253-3.681c-9.645,1.545-15.199,10.958-22,17c1.084,1.228,2.169,2.454,3.253,3.681c-0.734-8.919,1.803-17.328,3.983-25.868c0.326-1.279-3.341-3.4-3.236-3.813z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M6.522,443.394c19-14,40-26,60-39c-3,11-7,23-12,34c3-1,5,0,8,0c-2,7-8,13-10,19c2,0,9,1,13,0c-2,6-6,13-7,20c3-1,7,0,10-1c-2,3-2,11-3,13c3-1,8,1,12-1c-2,3-3,9-6,12c1,0,5,0,7,0c0,2,1,7,0,9c3,0,7,1,10,1"/>
  			<path style="fill:#97BD95;stroke:none;" d="M8.127,444.965c19.084-13.972,39.622-25.766,59.453-38.613c-1.121-0.834-2.241-1.668-3.362-2.501c-3.204,11.607-7.073,23.004-12,34c-0.799,1.784,1.17,3.103,2.74,2.747c2.499-0.566,4.87-0.055,7.368,0.086
  				c-0.703-0.944-1.405-1.889-2.108-2.833c-2.262,6.9-7.44,12.24-10,19c-0.571,1.509,0.634,2.783,2.108,2.833c4.594,0.156,9.064,0.802,13.632-0.086c-0.913-0.916-1.826-1.832-2.74-2.747c-2.433,6.895-5.861,13.313-7.129,20.582c-0.282,1.615,1.551,2.477,2.869,2.165
  				c3.296-0.781,6.688-0.216,10-1c-0.82-1.099-1.64-2.196-2.46-3.294c-2.353,4.272-1.601,9.139-3.28,13.547c-0.688,1.807,1.09,3.104,2.74,2.747c4.06-0.88,7.957,0.563,12-1c-0.82-1.099-1.64-2.196-2.46-3.294c-2.284,3.879-3.006,8.55-6,12
  				c-1.246,1.436,0.199,3.38,1.828,3.38c2.333,0,4.667,0,7,0c-0.746-0.75-1.492-1.501-2.237-2.251c0.127,2.719,0.991,5.78,0.129,8.418c-0.499,1.528,0.581,2.771,2.108,2.833c3.354,0.139,6.644,0.861,10,1c2.974,0.123,3.628-4.447,0.392-4.58
  				c-3.354-0.139-6.644-0.861-10-1c0.703,0.944,1.405,1.889,2.108,2.833c1.033-3.162,0.28-6.345,0.129-9.582c-0.061-1.305-0.857-2.251-2.237-2.251c-2.333,0-4.667,0-7,0c0.609,1.126,1.219,2.253,1.828,3.38c3.043-3.506,3.699-8.092,6-12
  				c0.969-1.646-0.361-4.105-2.46-3.294c-3.931,1.52-7.971,0.127-12,1c0.913,0.916,1.826,1.832,2.74,2.747c1.508-3.962,0.643-8.682,2.72-12.453c1.011-1.836-0.334-3.797-2.46-3.294c-3.296,0.781-6.688,0.216-10,1c0.957,0.722,1.913,1.443,2.869,2.165
  				c1.192-6.835,4.582-12.932,6.871-19.418c0.648-1.836-1.061-3.073-2.74-2.747c-4.099,0.797-8.248,0.054-12.368-0.086c0.703,0.944,1.405,1.889,2.108,2.833c2.555-6.75,7.73-12.076,10-19c0.506-1.545-0.588-2.747-2.108-2.833c-3.038-0.173-5.632-0.593-8.632,0.086
  				c0.913,0.916,1.826,1.832,2.74,2.747c4.926-10.996,8.795-22.392,12-34c0.54-1.956-1.546-3.678-3.362-2.501c-20.209,13.094-41.098,25.147-60.547,39.387c-2.62,1.918,0.771,4.929,3.211,3.143z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M128.522,527.394c16,34,29,70,41,106"/>
  			<path style="fill:#97BD95;stroke:none;" d="M126.734,526.707c16.098,34.348,28.999,70.048,41,106c0.424,1.27,4.426,3.92,3.576,1.373c-12-35.951-24.902-71.651-41-106c-0.553-1.179-4.689-3.749-3.576-1.373z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M382.522,550.394c34-8-16,48-21,54c8-6,16-13,26-14c-1,18-19,33-11,52"/>
  			<path style="fill:#97BD95;stroke:none;" d="M382.92,551.84c4.524-1.012,10.878-1.77,9.664,4.682c-1.184,6.29-5.437,12.236-8.935,17.438c-6.981,10.379-15.172,19.805-23.188,29.374c-1.015,1.21,0.367,3.452,1.817,2.355c7.673-5.797,15.359-12.487,25.243-13.795
  				c-0.5-0.5-1-1-1.5-1.5c-1.453,18.394-18.423,33.196-10.946,52.398c0.693,1.782,3.596,1.008,2.893-0.797c-7.186-18.457,9.64-33.702,11.054-51.602c0.059-0.739-0.731-1.602-1.5-1.5c-10.554,1.396-18.521,7.982-26.757,14.205c0.605,0.785,1.212,1.57,1.817,2.355
  				c9.475-11.31,19.199-22.476,26.949-35.085c3.009-4.896,7.131-11.479,6.065-17.521c-1.071-6.079-9.29-4.837-13.474-3.901c-1.888,0.422-1.087,3.314,0.797,2.893z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M16.522,481.394c30,0-20,52-15,59c8,12,29-1,34,18c6,17-15,36-17,53c11-1,21-7,27,4c3,4-2,12,1,16"/>
  			<path style="fill:#97BD95;stroke:none;" d="M15.585,481.996c15.126,0.245,7.22,16.068,2.904,23.864c-3.422,6.181-7.346,12.075-11.119,18.043c-2.719,4.3-5.919,8.819-7.37,13.754c-1.426,4.852,4.732,7.598,8.54,8.561c7.438,1.882,16.058-0.203,22.029,5.692
  				c8.146,8.042,3.832,21.428-0.37,30.096c-4.679,9.652-11.558,18.784-13.107,29.639c-0.058,0.403,0.533,0.375,0.806,0.345c7.247-0.79,16.429-5.04,22.94-0.283c7.963,5.817,0.323,13.393,4.235,20.076c0.43,0.734,3.146-0.352,2.897-0.777
  				c-2.326-3.973,0.083-8.861-0.032-13.184c-0.113-4.271-4.754-8.007-8.451-9.145c-3.594-1.107-7.838-0.137-11.405,0.562c-0.654,0.128-8.121,1.834-7.961,0.715c0.418-2.931,1.504-5.761,2.623-8.481c4.376-10.644,11.763-19.899,14.591-31.194
  				c2.041-8.149-0.3-18.775-8.571-22.414c-7.183-3.161-15.726-0.558-22.606-4.706c-5.498-3.313-3.047-7.51-0.623-11.955c6.588-12.076,15.745-22.886,20.592-35.879c1.202-3.221,2.262-7.205,0.768-10.501c-1.572-3.467-6.131-3.978-9.438-4.031
  				c-0.622-0.01-3.313,1.182-1.873,1.205z"/>
  		</g>
  		<g>
  			<path style="fill:none;stroke:none;" d="M224.522,532.394c0,23-7,46-9,68"/>
  			<path style="fill:#97BD95;stroke:none;" d="M222.253,532.904c-0.187,23.006-6.794,45.208-9,68c-0.267,2.752,4.331,1.109,4.537-1.021c2.206-22.792,8.813-44.995,9-68c0.022-2.795-4.52-1.126-4.537,1.021z"/>
  		</g>
  	</g>
  	<g id="Layer_x0020_4" style="fill-rule:nonzero;clip-rule:nonzero;fill:none;stroke:#000000;stroke-miterlimit:4;">
  		<g>
  			<path style="stroke:none;" d="M182.95,583.65c0.623,2.493,0.312,4.986,0.312,7.479c1.247-2.181,2.181-5.297,3.428-7.79c-0.312,1.869-0.623,4.051-0.935,5.921c1.247-1.247,2.182-3.428,3.116-4.986c-0.312,2.182-0.623,4.363-0.623,6.232
  				c1.558-2.182,2.493-4.985,3.428-7.479c-0.935,2.805-1.87,5.921-1.247,9.037c1.558-2.493,2.493-5.609,4.363-8.103c0,2.182-0.624,4.362-0.312,6.544"/>
  			<path style="fill:#F2F219;stroke:none;" d="M181.503,584.049c0.493,2.344,0.286,4.705,0.258,7.08c-0.018,1.469,2.081,2.08,2.795,0.757c1.35-2.503,2.2-5.229,3.428-7.79c-0.914-0.385-1.828-0.771-2.742-1.155c-0.322,1.972-0.613,3.948-0.935,5.921
  				c-0.22,1.346,1.408,2.691,2.507,1.459c1.413-1.583,2.301-3.464,3.351-5.29c-0.914-0.385-1.828-0.771-2.742-1.155c-0.313,2.204-0.627,4.402-0.677,6.631c-0.035,1.571,2,1.94,2.795,0.757c1.619-2.408,2.574-5.134,3.579-7.837c-0.964-0.266-1.928-0.531-2.893-0.797
  				c-1.074,3.267-1.783,6.396-1.247,9.834c0.209,1.346,2.135,1.38,2.742,0.358c1.572-2.646,2.579-5.576,4.363-8.103c-0.932-0.252-1.864-0.505-2.795-0.757c-0.07,2.195-0.517,4.344-0.312,6.544c0.178,1.909,3.179,1.927,3,0c-0.205-2.2,0.241-4.349,0.312-6.544
  				c0.051-1.602-1.989-1.898-2.795-0.757c-1.784,2.525-2.791,5.455-4.363,8.103c0.914,0.119,1.828,0.238,2.742,0.358c-0.444-2.85,0.366-5.56,1.247-8.24c0.611-1.859-2.229-2.582-2.893-0.797c-0.918,2.47-1.797,4.92-3.277,7.12c0.932,0.252,1.864,0.505,2.795,0.757
  				c0.043-1.962,0.294-3.892,0.569-5.834c0.225-1.583-1.828-2.744-2.742-1.155c-0.912,1.585-1.654,3.307-2.881,4.683c0.835,0.486,1.671,0.973,2.507,1.459c0.322-1.972,0.613-3.948,0.935-5.921c0.253-1.551-1.95-2.808-2.742-1.155c-1.227,2.56-2.079,5.289-3.428,7.79
  				c0.932,0.252,1.864,0.505,2.795,0.757c0.031-2.662,0.187-5.253-0.365-7.877c-0.398-1.893-3.29-1.09-2.893,0.797z"/>
  		</g>
  		<g>
  			<path style="fill:#3398C3;stroke:none;" d="M141.816,532.234c2.493,11.529,12.153,19.008,17.762,28.356c3.428,5.298,7.167,9.972,10.906,14.958c2.493,3.116,5.609,9.972,8.414,10.906"/>
  			<g>
  				<path style="stroke:none;" d="M141.816,532.234c2.493,11.529,12.153,19.008,17.762,28.356c3.428,5.298,7.167,9.972,10.906,14.958c2.493,3.116,5.609,9.972,8.414,10.906"/>
  				<path style="fill:#3398BE;stroke:none;" d="M140.37,532.633c2.825,11.468,11.874,19.024,17.913,28.715c3.666,5.883,8.326,11.055,12.201,16.783c2.181,3.226,3.98,7.792,7.657,9.619c1.727,0.858,3.247-1.729,1.515-2.59c-3.662-1.82-5.509-7.199-7.875-10.368
  					c-3.978-5.327-8.139-10.518-11.66-16.168c-5.674-9.104-14.194-15.979-16.857-26.788c-0.462-1.878-3.355-1.081-2.893,0.797z"/>
  			</g>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M142.345,521.713"/>
  			<path style="fill:#F2F219;stroke:none;" d="M142.345,526.713c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M146.593,527.448"/>
  			<path style="fill:#F2F219;stroke:none;" d="M146.593,532.448c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M151.69,528.723"/>
  			<path style="fill:#F2F219;stroke:none;" d="M151.69,533.723c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M156.576,528.298"/>
  			<path style="fill:#F2F219;stroke:none;" d="M156.576,533.298c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M161.674,529.997"/>
  			<path style="fill:#F2F219;stroke:none;" d="M161.674,534.997c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M168.258,532.333"/>
  			<path style="fill:#F2F219;stroke:none;" d="M168.258,537.333c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M174.206,535.731h0.212"/>
  			<path style="fill:#F2F219;stroke:none;" d="M174.206,540.731c0.071,0,0.142,0,0.212,0c2.726,0,5-2.274,5-5s-2.274-5-5-5c-0.071,0-0.142,0-0.212,0c-2.726,0-5,2.274-5,5s2.274,5,5,5z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M181.002,536.369"/>
  			<path style="fill:#F2F219;stroke:none;" d="M181.002,541.369c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M187.799,535.944"/>
  			<path style="fill:#F2F219;stroke:none;" d="M187.799,540.944c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M193.959,535.307"/>
  			<path style="fill:#F2F219;stroke:none;" d="M193.959,540.307c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M201.181,533.183"/>
  			<path style="fill:#F2F219;stroke:none;" d="M201.181,538.183c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M206.066,529.784"/>
  			<path style="fill:#F2F219;stroke:none;" d="M206.066,534.784c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M212.014,526.599"/>
  			<path style="fill:#F2F219;stroke:none;" d="M212.014,531.599c6.449,0,6.449-10,0-10s-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M217.96,521.713"/>
  			<path style="fill:#F2F219;stroke:none;" d="M217.96,526.713c6.448,0,6.448-10,0-10c-6.449,0-6.449,10,0,10z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M151.522,400.394c12,16,36,24,54,13"/>
  			<path style="fill:#000000;stroke:none;" d="M150.174,400.953c13.087,16.87,37.243,23.92,56.24,12.846c1.691-0.985-0.876-1.341-1.785-0.811c-17.706,10.321-39.874,2.167-51.76-13.154c-0.589-0.759-3.382,0.234-2.695,1.119z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M382.522,304.394c-2,28-19,55-16,83c18-15,24-43,38-60c2,27-8,58-14,85c-2,8-3,19-7,26c-3-7-7-16-12-21c-11-10-59-22-63,2c-9,43,110-24,125-30"/>
  			<path style="fill:#41783E;stroke:none;" d="M381.073,304.782c-2.317,28.25-18.683,54.179-16,83c0.068,0.727,2.492-0.267,2.761-0.497c18.535-15.921,23.068-41.429,38-60c-0.92,0.166-1.84,0.331-2.761,0.497c1.3,20.021-3.14,39.834-7.804,59.176
  				c-2.175,9.016-4.347,18.03-6.501,27.051c-1.979,8.284-2.613,17.002-6.675,24.64c0.959-0.214,1.918-0.429,2.878-0.644c-3.799-8.828-7.677-19.014-16.348-24.09c-6.468-3.787-13.995-5.992-21.278-7.528c-11.737-2.477-29.756-3.903-37.857,7.168
  				c-5.063,6.917-4.035,17.918,5.008,20.176c10.188,2.544,22.397-1.714,31.977-4.791c17.942-5.764,35.193-13.757,52.155-21.901c11.775-5.655,23.286-12.397,35.396-17.314c1.911-0.776,0.095-1.105-1.002-0.66c-8.816,3.58-17.225,8.353-25.747,12.561
  				c-14.304,7.063-28.735,13.906-43.517,19.917c-10.887,4.427-62.454,25.538-53.185-4.923c4.541-14.926,27.332-10.936,38.434-8.181c6.292,1.562,12.586,3.808,18.13,7.21c7.801,4.788,11.486,15.116,14.937,23.135c0.307,0.711,2.607-0.134,2.878-0.644
  				c4.035-7.586,4.852-16.364,6.676-24.641c2.125-9.645,4.609-19.209,6.925-28.81c4.541-18.831,8.684-38.202,7.42-57.683c-0.043-0.661-2.512,0.187-2.761,0.497c-14.921,18.558-19.5,44.11-38,60c0.92-0.165,1.84-0.331,2.761-0.497c-2.682-28.8,13.683-54.755,16-83
  				c0.032-0.402-2.827-0.091-2.898,0.776z"/>
  		</g>
  		<g>
  			<path style="fill:#92CACC;stroke:none;" d="M28.522,25.394c36-7,89-16,124-3c-30,15-74,22-96,49c26,4,55-10,81-10c-31,12-90,20-108,51c16,6,38-4,56-2c-7,20-48,26-62,44c-17,23,6,16,20,23c26,13-15,37-2,49"/>
  			<g>
  				<path style="stroke:none;" d="M28.522,25.394c36-7,89-16,124-3c-30,15-74,22-96,49c26,4,55-10,81-10c-31,12-90,20-108,51c16,6,38-4,56-2c-7,20-48,26-62,44c-17,23,6,16,20,23c26,13-15,37-2,49"/>
  				<path style="fill:#41783E;stroke:none;" d="M28.856,27.372c20.106-3.9,40.316-7.335,60.756-8.886c20.606-1.563,42.314-1.275,61.954,5.826c-0.007-1.239-0.014-2.477-0.021-3.716c-32.09,15.843-72.927,20.792-97.002,49.692c-1.25,1.5,0.059,2.902,1.646,3.124
  					c27.593,3.851,53.646-9.705,81-10c-0.214-1.272-0.429-2.544-0.644-3.816c-19.62,7.503-40.337,11.772-60.125,18.82c-18.511,6.593-38.704,15.801-49.194,33.337c-0.678,1.133,0.329,2.209,1.341,2.558c18.443,6.362,37.836-3.646,56.623-1.9
  					c-0.654-0.886-1.309-1.772-1.963-2.658c-3.117,8.239-11.006,13.093-18.368,17.177c-8.624,4.785-17.773,8.559-26.435,13.281c-8.093,4.412-14.827,9.67-19.882,17.439c-3.339,5.132-5.813,12.165,0.907,15.544c6.201,3.119,13.913,2.703,20.457,4.978
  					c7.874,2.737,11.722,8.75,8.686,16.633c-3.476,9.023-18.638,23.408-9.028,32.945c1.8,1.786,6.04-0.611,3.92-2.716c-4.519-4.484-0.477-10.923,2.112-15.352c3.238-5.54,7.031-10.822,8.744-17.089c4.373-16.006-16.493-19.389-27.349-21.513
  					c-2.282-0.447-5.494-0.929-6.743-3.149c-1.946-3.459,3.562-10.093,5.255-12.435c5.178-7.162,14.271-11.541,21.947-15.383c13.698-6.857,34.41-13.321,40.371-29.082c0.558-1.474-0.52-2.524-1.963-2.658c-18.259-1.697-37.601,8.232-55.377,2.1
  					c0.447,0.853,0.894,1.706,1.341,2.558c10.308-17.23,30.982-25.57,49.06-31.907c18.985-6.655,38.824-10.748,57.621-17.936c2.167-0.829,1.775-3.842-0.644-3.816c-27.314,0.295-53.53,13.834-81,10c0.548,1.041,1.097,2.083,1.646,3.124
  					c23.428-28.122,63.739-32.875,94.998-48.308c1.805-0.891,2.028-2.975-0.021-3.716c-19.46-7.036-40.862-7.494-61.296-6.166c-21.538,1.4-42.827,5-63.994,9.105c-3.074,0.596-2.424,4.557,0.668,3.957z"/>
  			</g>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M302.522,19.394c24-3,55-2,78,6c-27,11-63,9-86,28c10,12,48,4,64,7c-9,13-33,15-45,25c19,8,46,1,63,14c-15,7-34,10-46,20c14,9,32,5,47,13c-11,16-20,23-2,40"/>
  			<path style="fill:#41783E;stroke:none;" d="M302.336,20.243c25.513-3.084,52.797-2.343,77.308,5.972c0.098-0.488,0.195-0.976,0.293-1.464c-28.233,11.227-61.946,8.554-86.586,28.37c-0.246,0.198-0.411,0.584-0.171,0.853c5.031,5.612,13.552,6.453,20.618,6.945
  				c10.37,0.723,20.807-0.209,31.182-0.378c2.19-0.035,4.381-0.011,6.57,0.066c0.982,0.035,1.962,0.109,2.94,0.188c0.689,0.055,2.561-0.3,1.99,0.476c-3.703,5.039-9.985,7.924-15.551,10.332c-9.66,4.179-20.221,6.846-28.579,13.519
  				c-0.318,0.254-0.438,0.813,0.024,0.998c20.133,8.056,44.774,0.705,63,14c0.188-0.456,0.374-0.912,0.562-1.368c-15.375,6.999-33.132,9.58-46.586,20.37c-0.369,0.296-0.381,0.751,0.024,0.998c7.409,4.505,15.713,5.906,24.18,7.08
  				c4.741,0.657,9.45,1.354,14.093,2.539c2.512,0.641,4.911,1.58,7.267,2.645c1.553,0.701-2.408,5.124-2.93,5.848c-3.608,5.013-7.764,10.36-8.158,16.759c-0.443,7.209,5.627,13.41,10.354,17.985c0.77,0.745,3.511-0.36,2.684-1.16
  				c-5.485-5.31-11.414-11.75-9.765-19.964c1.436-7.151,7.748-13.593,11.778-19.401c0.2-0.289,0.098-0.626-0.209-0.781c-14.378-7.26-31.472-4.479-45.633-12.169c-1.048-0.569,8.893-6.145,9.229-6.306c3.704-1.774,7.59-3.174,11.457-4.542
  				c7.841-2.775,15.802-5.162,23.386-8.615c0.557-0.253,1.262-0.857,0.562-1.368c-17.135-12.5-40.042-7.042-59.367-12.686c-4.199-1.226-1.216-2.136,1.008-3.453c2.082-1.233,4.313-2.214,6.526-3.181c4.524-1.976,9.197-3.608,13.782-5.435
  				c7.589-3.023,15.307-6.725,20.26-13.465c0.296-0.402-0.066-0.806-0.478-0.876c-10.474-1.805-21.464-0.441-32.018-0.207c-5.959,0.133-11.96,0.091-17.876-0.705c-2.592-0.349-5.16-0.939-7.616-1.838c-2.072-0.758-6.99-2.599-4.192-4.731
  				c23.574-17.973,56.709-15.438,83.409-26.055c0.741-0.294,1.291-1.125,0.293-1.464c-24.933-8.459-52.745-9.164-78.692-6.028c-1.442,0.174-2.373,1.94-0.371,1.698z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M306.522,31.394c2,23-8,47-8,70c16-21,27-46,43-65c5,28-4,59,4,87c21-21,30-54,48-75c6,37-12,82-17,118"/>
  			<path style="fill:#41783E;stroke:none;" d="M305.073,31.782c1.749,23.723-7.741,46.387-8,70c-0.01,0.883,2.506-0.05,2.782-0.417c15.661-20.783,26.339-44.941,43-65c-0.928,0.139-1.854,0.278-2.782,0.417c4.852,28.85-3.787,58.462,4,87
  				c0.26,0.95,2.407-0.035,2.782-0.417c21.158-21.568,28.733-52.116,48-75c-0.928,0.139-1.854,0.278-2.782,0.417c6.101,39.9-11.413,78.896-16.991,117.825c-0.14,0.972,2.759,0.425,2.881-0.427c5.595-39.05,23.129-78.146,17.009-118.175
  				c-0.143-0.934-2.465,0.041-2.782,0.417c-19.268,22.886-26.846,53.437-48,75c0.928-0.139,1.854-0.278,2.782-0.417c-7.788-28.538,0.852-58.15-4-87c-0.157-0.931-2.461,0.031-2.782,0.417c-16.661,20.059-27.339,44.217-43,65c0.928-0.139,1.854-0.278,2.782-0.417
  				c0.258-23.615,9.749-46.263,8-70c-0.058-0.774-2.97-0.2-2.898,0.776z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M98.522,189.394c-15,29-21,69-23,101c8-28,19-56,28-84c-2,22-8,43-10,65c11-21,17-45,27-67c-6,32-21,70-18,101"/>
  			<path style="fill:#41783E;stroke:none;" d="M97.169,189.348c-15.778,30.966-20.896,66.908-23.098,101.219c-0.082,1.277,2.637,0.57,2.901-0.348c8.173-28.378,18.929-55.912,28-84c-0.967,0.116-1.934,0.232-2.901,0.348c-2.101,21.855-7.899,43.146-10,65
  				c-0.119,1.231,2.444,0.568,2.804-0.128c11.08-21.467,17.126-45.013,27-67c-0.935,0.042-1.869,0.085-2.804,0.128c-6.375,33.312-21.003,66.746-17.998,101.214c0.087,0.996,2.997,0.362,2.897-0.776c-2.988-34.285,11.66-67.648,18.002-100.786
  				c0.224-1.17-2.477-0.6-2.804,0.128c-9.873,21.985-15.924,45.54-27,67c0.935-0.042,1.869-0.085,2.804-0.128c2.101-21.855,7.899-43.146,10-65c0.123-1.279-2.613-0.545-2.901,0.348c-9.071,28.089-19.827,55.622-28,84c0.967-0.116,1.934-0.232,2.901-0.348
  				c2.19-34.113,7.212-69.988,22.902-100.781c0.647-1.27-2.261-0.964-2.706-0.091z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M310.522,191.394c18,36,15,78,14,117"/>
  			<path style="fill:#41783E;stroke:none;" d="M309.073,191.782c17.808,36.312,15.024,77.502,13.991,116.758c-0.036,1.368,2.887,0.835,2.916-0.293c1.036-39.387,3.862-80.801-14.009-117.242c-0.555-1.13-3.397-0.242-2.898,0.776z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M342.522,238.394c14,33,4,81-10,112"/>
  			<path style="fill:#41783E;stroke:none;" d="M341.073,238.782c7.465,18.112,7.796,38.146,5.397,57.337c-2.341,18.727-7.709,37.232-15.398,54.45c-0.414,0.927,2.474,0.604,2.9-0.352c7.938-17.774,13.185-36.738,15.599-56.05c2.34-18.721,1.663-38.537-5.6-56.162
  				c-0.429-1.039-3.285-0.163-2.898,0.776z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M372.522,259.394c-6,36-12,68-30,100"/>
  			<path style="fill:#41783E;stroke:none;" d="M371.058,259.518c-5.771,34.561-12.702,68.799-29.914,99.736c-0.774,1.391,2.169,1.335,2.756,0.279c17.302-31.095,24.284-65.521,30.086-100.264c0.234-1.402-2.721-0.991-2.928,0.248z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M340.522,247.394c2,32-8,67-15,98"/>
  			<path style="fill:#41783E;stroke:none;" d="M339.073,247.782c1.849,33.219-7.722,65.729-15,97.792c-0.247,1.092,2.673,0.63,2.898-0.361c7.313-32.219,16.856-64.83,15-98.208c-0.053-0.942-2.96-0.343-2.898,0.776z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M300.522,359.394c-1,13-6,26-8,39"/>
  			<path style="fill:#41783E;stroke:none;" d="M299.081,359.604c-1.21,13.281-5.843,25.885-8,39c-0.159,0.972,2.74,0.444,2.883-0.422c2.156-13.115,6.789-25.719,8-39c0.093-1.018-2.805-0.426-2.883,0.422z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M317.522,352.394c-2,14-5,28-7,41"/>
  			<path style="fill:#41783E;stroke:none;" d="M316.083,352.615c-2.003,13.723-4.853,27.301-7,41c-0.144,0.915,2.748,0.38,2.877-0.443c2.146-13.699,4.996-27.276,7-41c0.135-0.922-2.757-0.377-2.877,0.443z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M335.522,350.394c2,10,2,21-1,31"/>
  			<path style="fill:#41783E;stroke:none;" d="M334.073,350.782c1.934,10.295,1.841,20.644-1.01,30.754c-0.349,1.235,2.599,0.848,2.918-0.285c2.894-10.262,2.949-20.811,0.99-31.246c-0.224-1.19-3.131-0.46-2.898,0.777z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M111.522,348.394c-2.316-8.887-4.786-10.421-3.505-21.399c-4.01,1.734-7.974,4.031-12.258,3.498c-1.846-10.303,8.353-19.444-2.236-26.099"/>
  			<path style="fill:#41783E;stroke:none;" d="M112.971,348.005c-2.056-7.506-4.33-13.238-3.515-21.227c0.085-0.834-1.6-0.419-1.978-0.251c-1.503,0.671-3.002,1.352-4.511,2.009c-1.907,1.209-3.885,1.287-5.935,0.23c-0.103-1.253-0.062-2.505,0.123-3.754
  				c0.309-2.91,1.342-5.755,2.068-8.577c1.369-5.329,0.251-9.371-4.346-12.573c-0.755-0.526-3.333,0.629-2.71,1.063c9.421,6.563,0.951,16.859,2.143,25.955c0.027,0.207,0.383,0.298,0.537,0.305c5.034,0.234,9.183-1.705,13.708-3.723
  				c-0.659-0.083-1.318-0.167-1.978-0.251c-0.817,8.016,1.42,13.991,3.496,21.571c0.231,0.846,3.128,0.063,2.897-0.777z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M72.522,311.394c13,0,5,14,4,22c2-1,8-2,10-4c-4,14,6,16,8,28"/>
  			<path style="fill:#41783E;stroke:none;" d="M71.043,312.529c11.563,0.447,4.104,14.931,3.127,21.441c-0.185,1.231,2.829,0.144,3.243-0.031c3.706-1.567,7.739-1.97,10.973-4.563c-1.405,0.198-2.81,0.396-4.215,0.594c-1.29,5.035-1.231,9.469,1.233,14.118
  				c2.55,4.81,5.667,8.618,6.755,14.121c0.203,1.028,4.988-0.308,4.727-1.631c-0.928-4.695-3.178-8.415-5.719-12.388c-3.155-4.935-3.755-9.668-2.293-15.373c0.353-1.378-3.802,0.263-4.215,0.594c-2.437,1.954-6.179,2.233-9.027,3.437
  				c1.081-0.01,2.162-0.021,3.243-0.031c1.223-8.152,8.666-22.036-4.873-22.559c-1.096-0.042-5.438,2.174-2.957,2.271z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M171.522,341.394c12,15,38,17,56,12c-12,4-32,2-43-2c15,5,27,7,42,2c-3,2-7,2-11,3"/>
  			<path style="fill:#66BD61;stroke:none;" d="M169.281,342.046c13.904,16.637,39.715,18.226,59.334,12.992c-0.729-1.097-1.457-2.192-2.186-3.289c-12.846,3.992-28.5,2.41-41.065-1.971c-0.561,1.077-1.123,2.153-1.684,3.23c14.712,4.817,28.927,6.78,43.935,2.029
  				c-0.906-1.023-1.812-2.047-2.718-3.069c-3.227,1.785-6.924,2.002-10.468,2.78c-3.197,0.703-0.161,3.805,2.186,3.289c3.976-0.874,7.918-1.221,11.532-3.22c2.579-1.427-0.924-3.637-2.718-3.069c-13.807,4.371-26.556,2.454-40.065-1.971
  				c-2.63-0.861-4.794,2.146-1.684,3.23c13.754,4.795,30.885,6.396,44.935,2.029c3.17-0.985,0.135-3.907-2.186-3.289c-17.128,4.569-40.428,3.636-52.666-11.008c-1.388-1.66-6.235-0.793-4.482,1.305z"/>
  		</g>
  		<g style="fill:#FFFFFF;stroke:none;">
  			<path d="M189.022,237.394c1,0,2,2,2.5-1c-0.5,0-2.5,1-2.5,1c0,0.5,0.5-0.5,0.5-0.5c0,1-0.5,1.5-0.5,2c1,1,2.5,2.5,4,3.5c0-1-1-2.5-1.5-3.5l1.5,0.5c-1.5,0.5-3.5,0.5-5.5,0.5l1.5-1.5c1.5,1.5,4,2.5,5,4"/>
  			<g>
  				<path style="fill:none;" d="M189.022,237.394c1,0,2,2,2.5-1c-0.5,0-2.5,1-2.5,1c0,0.5,0.5-0.5,0.5-0.5c0,1-0.5,1.5-0.5,2c1,1,2.5,2.5,4,3.5c0-1-1-2.5-1.5-3.5l1.5,0.5c-1.5,0.5-3.5,0.5-5.5,0.5l1.5-1.5c1.5,1.5,4,2.5,5,4"/>
  				<path d="M187.396,238.28c-0.184-0.018,0.662,0.398,0.812,0.462c0.805,0.347,1.775,0.218,2.606,0.071c1.932-0.343,2.803-1.043,3.16-2.907c0.105-0.549-1.772-0.402-1.947-0.381c-1.729,0.207-3.302,0.904-4.847,1.671c-0.196,0.098-0.676,0.378-0.61,0.685
  					c0.009,0.043,0.019,0.086,0.028,0.13c0.127,0.597,1.581,0.434,1.947,0.381c1.349-0.193,2.721-0.477,3.382-1.765c-1.619,0.251-3.238,0.502-4.857,0.753c-0.04,0.571-0.255,1.028-0.425,1.563c-0.176,0.553,0.177,0.748,0.549,1.117
  					c1.095,1.088,2.233,2.127,3.504,3.007c0.775,0.536,4.885,0.143,4.776-1.161c-0.106-1.275-0.925-2.393-1.5-3.5c-1.498,0.432-2.995,0.863-4.493,1.295c0.5,0.167,1,0.333,1.5,0.5c0.414-0.473,0.828-0.945,1.242-1.417c-1.123,0.335-2.435,0.201-3.595,0.202
  					c0.363,0.291,0.726,0.583,1.088,0.874c0.5-0.5,1-1,1.5-1.5c-1.506,0.236-3.012,0.472-4.519,0.708c1.546,1.461,3.722,2.266,5,4c0.711,0.963,5.341-0.408,4.648-1.348c-1.279-1.733-3.455-2.538-5-4c-0.856-0.81-3.796-0.015-4.519,0.708c-0.5,0.5-1,1-1.5,1.5
  					c-0.755,0.755,0.562,0.875,1.088,0.874c2.5-0.001,4.992-0.078,7.405-0.798c0.364-0.108,2.54-0.985,1.242-1.417c-0.5-0.167-1-0.333-1.5-0.5c-0.556-0.185-5.01,0.298-4.493,1.295c0.575,1.107,1.394,2.225,1.5,3.5c1.592-0.387,3.184-0.774,4.776-1.161
  					c-1.06-0.732-2.019-1.576-2.95-2.464c-0.395-0.376-1.012-0.718-0.773-1.311c0.204-0.505,0.313-0.995,0.351-1.539c0.069-0.998-4.426-0.086-4.857,0.753c-0.051,0.098-0.134,0.326-0.19,0.387c0.9-0.301,1.8-0.602,2.699-0.902c-0.024,0.003-0.047,0.007-0.071,0.01
  					c0.649,0.127,1.298,0.254,1.947,0.382c-0.009-0.043-0.019-0.086-0.028-0.13c-0.204,0.229-0.407,0.457-0.61,0.685c0.153-0.076,0.32-0.159,0.461-0.224c0.786-0.36,1.253-0.292-0.308-0.105c-0.649-0.127-1.298-0.254-1.947-0.381
  					c-0.043,0.293-0.118,0.578-0.225,0.854c-0.175,0.264-0.14,0.294,0.104,0.091c0.563-0.189,1.126-0.379,1.689-0.569c-0.043,0.007-0.086,0.015-0.129,0.023c0.593-0.04,1.186-0.08,1.779-0.12c0.373,0.031-0.213-0.181-0.315-0.239
  					c-0.421-0.24-0.841-0.366-1.325-0.414c-1.14-0.112-2.46,0.14-3.468,0.689c-0.804,0.439-0.708,0.993,0.216,1.084z"/>
  			</g>
  		</g>
  		<g style="fill:#FFFFFF;stroke:none;">
  			<path d="M278.522,264.894c0.5-1,2-2,3-3c0.5,1,2,3.5,2.5,4.5c-2,0-4.5-1-5.5-1.5"/>
  			<g>
  				<path style="fill:none;" d="M278.522,264.894c0.5-1,2-2,3-3c0.5,1,2,3.5,2.5,4.5c-2,0-4.5-1-5.5-1.5"/>
  				<path d="M280.811,265.899c0.634-1.105,1.875-1.846,2.779-2.719c-1.437-0.518-2.873-1.035-4.309-1.553c0.781,1.528,1.719,2.972,2.5,4.5c0.33-0.429,0.661-0.858,0.992-1.287c-1.361-0.035-2.575-0.576-3.729-1.138c-0.664-0.324-2.392-0.771-2.813,0.186
  					c-0.437,0.994,1.101,1.873,1.766,2.197c2.264,1.104,4.753,1.798,7.271,1.862c0.706,0.018,1.359-0.57,0.992-1.287c-0.781-1.528-1.719-2.972-2.5-4.5c-0.555-1.085-3.167-2.655-4.309-1.553c-1.098,1.06-2.446,1.932-3.221,3.281
  					c-0.861,1.501,3.644,3.639,4.578,2.011z"/>
  			</g>
  		</g>
  		<g>
  			<path style="fill:#CC1233;stroke:none;" d="M181.522,233.894"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M271.022,259.894c-0.5,1,1-0.5,1-1.5l-2,1c2,0,1-0.5,0.5,0"/>
  			<path style="fill:#CC1233;stroke:none;" d="M269.558,257.965c-0.412,0.867,0.206,1.971,0.655,2.692c0.282,0.453,1.389,2.204,2.181,1.625c0.679-0.495,1.094-1.472,1.13-2.281c0.04-0.888-0.658-1.936-1.163-2.602c-0.272-0.359-1.067-1.425-1.66-1.128
  				c-0.667,0.333-1.333,0.667-2,1c-0.568,0.284,0.126,1.679,0.28,1.987c0.287,0.573,0.651,1.121,1.09,1.59c0.219,0.233,0.663,0.712,1.035,0.709c0.444-0.004,0.928-0.004,1.354-0.148c0.859-0.29-0.356-2.364-0.529-2.643c-0.455-0.73-1.691-2.44-2.729-1.496
  				c-0.629,0.571,0.294,2.066,0.606,2.567c0.312,0.501,0.685,0.993,1.144,1.37c0.146,0.12,0.655,0.523,0.893,0.307c0.097-0.087,0.197-0.146,0.321-0.188c0.187-0.063-0.211,0.02-0.036,0.009c0.161-0.009,0.214,0.112-0.146-0.079c-0.243-0.2-0.486-0.401-0.73-0.602
  				c0.004,0.004,0.009,0.008,0.013,0.012c-0.497-0.88-0.993-1.761-1.489-2.642c0.001,0.005,0.002,0.009,0.004,0.014c-0.009-0.248-0.017-0.495-0.024-0.742c0.064-0.191,0.194-0.192,0.063-0.132c-0.038,0.017-0.211,0.047-0.029,0.018
  				c-0.279,0.044-0.567,0.043-0.85,0.045c0.802,1.429,1.604,2.858,2.405,4.287c0.667-0.333,1.333-0.667,2-1c-0.941-1.243-1.882-2.486-2.823-3.73c0.014-0.294-0.059,0.172-0.098,0.275c-0.078,0.206-0.194,0.397-0.313,0.582c-0.057,0.088-0.091,0.125-0.21,0.256
  				c-0.046,0.05-0.097,0.095-0.148,0.139c-0.204,0.173-0.078-0.19,0.397,0.117c0.688,0.915,1.376,1.83,2.064,2.744c-0.003-0.007-0.006-0.015-0.008-0.021c0.072,0.307,0.145,0.614,0.217,0.921c-0.008,0.404-0.02,0.198,0.063,0.023c0.162-0.341-0.063-0.935-0.18-1.242
  				c-0.228-0.601-0.558-1.169-0.945-1.68c-0.223-0.293-1.41-1.761-1.803-0.935z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M180.022,234.894c0.417-0.438,0.672-0.662,1.308-0.167c-0.09,0.154,0.621-1.815,0.591-1.73c0.649,0.235,0.791,0.643,0.426,1.223c-0.417,0.118-0.693-0.012-0.829-0.389c0.03-0.006-1,0.828-1.334,0.932
  				c0.333-1.616,0.482-0.934,1.197-1.392c-0.254,0.447-0.626,0.599-1.116,0.454c1.398,0.042,1.201-0.083,2.284,0.469c-0.034-0.002-1.791,0.122-1.905,0.124c0.971-1.702,1.083,0.03,1.378-0.024"/>
  			<path style="fill:#CC1233;stroke:none;" d="M182.418,235.289c0.125-0.132,0.135-0.14,0.028-0.024c0.16-0.113,0.121-0.094-0.119,0.057c-0.372,0.081-0.743,0.161-1.114,0.242c-0.153,0.001-0.306,0.003-0.458,0.005c-0.418-0.068-0.836-0.136-1.254-0.204
  				c-0.123-0.042-0.24-0.097-0.351-0.164c-0.072-0.29-0.145-0.58-0.217-0.87c-0.002,0.003-0.004,0.005-0.006,0.008c1.606,0.066,3.212,0.131,4.817,0.197c0.127,0.244,0.048,0.382,0.094,0.225c0.021-0.072,0.045-0.143,0.069-0.213c0.02-0.061,0.106-0.31,0.002-0.01
  				c0.04-0.114,0.08-0.229,0.12-0.342c0.095-0.269,0.189-0.539,0.289-0.806c-1.632-0.166-3.263-0.332-4.895-0.498c0,0.001,0,0.001-0.001,0.002c-0.107,0.34,0.479,0.729,0.7,0.818c0.193,0.091,0.189,0.074-0.013-0.051c-0.101-0.149-0.113-0.16-0.035-0.031
  				c-0.028-0.142-0.039-0.141-0.033,0c-0.006,0.188,0.025-0.01-0.091,0.194c0.392-0.207,0.783-0.413,1.175-0.62c0.299-0.022,0.598-0.044,0.897-0.065c0.418,0.068,0.836,0.136,1.254,0.204c0.201,0.103,0.402,0.205,0.604,0.308c0.123,0.139,0.143,0.133,0.058-0.018
  				c-0.321-0.741-1.717-0.891-2.375-0.918c-0.711-0.029-1.998,0.019-2.442,0.721c0.213-0.337,0.305-0.284,0.114-0.128c-0.125,0.102-0.253,0.199-0.382,0.296c-0.119,0.089-0.24,0.175-0.363,0.259c-0.056,0.038-0.113,0.075-0.171,0.111
  				c-0.291,0.184,0.382-0.168,0.13-0.072c1.411,0.321,2.821,0.642,4.232,0.963c0.033-0.153,0.067-0.306,0.105-0.458c0.095-0.379-0.082,0.168,0.028-0.103c0.025-0.062,0.06-0.117,0.098-0.171c-0.128,0.183-0.25,0.244-0.482,0.335
  				c-0.739,0.293-0.402,0.137-0.172,0.076c0.481-0.127,0.829-0.265,1.256-0.522c-1.51-0.349-3.02-0.698-4.53-1.046c-0.111,0.141-0.111,0.163,0.002,0.066c0.151-0.071,0.306-0.132,0.466-0.182c0.422-0.034,0.845-0.067,1.267-0.101
  				c0.282,0.051,0.563,0.103,0.846,0.154c-0.449,0.676-0.897,1.352-1.346,2.027c0.238,0.006,0.477,0.01,0.715,0.013c0.254,0.002,0.867,0.082-0.152-0.042c0.222,0.038,0.092,0.007-0.39-0.093c0.319,0.084-0.537-0.228-0.197-0.08c0.188,0.082,0.371,0.179,0.555,0.272
  				c0.393-0.606,0.786-1.213,1.178-1.819c-0.636,0.017-1.269,0.101-1.905,0.124c1.006,0.5,2.011,0.999,3.017,1.498c0.084-0.142,0.17-0.279,0.267-0.413c0.117-0.137,0.104-0.131-0.042,0.018c-0.298,0.127-0.37,0.165-0.217,0.115c-0.372,0.081-0.743,0.162-1.114,0.242
  				c0.018-0.002,0.036-0.003,0.053-0.005c-0.443-0.018-0.885-0.036-1.328-0.054c-0.638-0.011-1.124-0.239-1.458-0.685c0.038,0.048,0.067,0.104,0.097,0.157c0.049,0.086,0.09,0.177,0.139,0.264c0.46,0.824,1.708,1.047,2.539,1.057
  				c0.627,0.008,2.503-0.024,2.543-1.013c0.039-0.964-1.826-1.21-2.453-1.217c-0.009,0-0.019,0-0.029,0c0.584,0.133,1.168,0.266,1.753,0.399c0.211,0.094,0.382,0.235,0.514,0.421c-0.019-0.029-0.037-0.06-0.053-0.09c-0.05-0.089-0.093-0.182-0.143-0.271
  				c-0.291-0.517-0.809-0.771-1.346-0.959c-1.046-0.367-2.203-0.27-3.24,0.051c-0.579,0.179-0.982,0.698-1.276,1.194c-0.299,0.503,0.184,0.906,0.598,1.111c0.751,0.373,1.597,0.417,2.418,0.387c0.635-0.023,1.269-0.106,1.905-0.124
  				c0.561-0.015,1.434-0.199,1.776-0.708c0.33-0.49-0.212-0.916-0.598-1.111c-0.674-0.342-1.338-0.593-2.081-0.751c-0.634-0.136-1.311-0.1-1.957-0.116c-0.736-0.02-1.968,0.017-2.442,0.72c-0.446,0.662,0.617,1.191,1.096,1.307c1.516,0.364,3.834,0.567,4.813-0.971
  				c0.438-0.688-0.613-1.159-1.096-1.307c-1.083-0.332-2.44-0.336-3.434,0.26c0.427-0.256,0.253-0.122,0.117-0.07c0.646-0.245,0.439-0.125,0.241-0.088c-0.441,0.083-0.732,0.226-1.119,0.43c-0.565,0.298-0.683,1.118-0.801,1.669
  				c-0.116,0.545,0.854,0.908,1.198,1.014c0.959,0.293,2.09,0.308,3.034-0.051c0.435-0.165,0.832-0.442,1.204-0.717c0.242-0.179,0.631-0.424,0.793-0.681c-1.606-0.065-3.211-0.131-4.817-0.197c0.268,0.619,0.955,0.986,1.58,1.138c1.14,0.276,2.771,0.427,3.804-0.295
  				c0.477-0.333,0.653-1.011,0.468-1.543c-0.177-0.507-0.762-0.857-1.23-1.048c0.233,0.273,0.466,0.545,0.7,0.818c0,0,0-0.001,0-0.002c-0.014-0.241-0.12-0.433-0.318-0.577c-0.405-0.335-0.965-0.49-1.472-0.574c-0.633-0.104-1.3-0.104-1.929,0.034
  				c-0.307,0.067-1.04,0.254-1.175,0.62c-0.12,0.325-0.234,0.652-0.349,0.979c-0.127,0.363-0.481,0.958-0.272,1.354c0.386,0.736,1.663,0.888,2.375,0.917c0.765,0.031,1.933-0.034,2.442-0.721c0.002-0.002,0.004-0.005,0.006-0.008c0.218-0.294,0.048-0.679-0.217-0.87
  				c-0.967-0.697-2.235-1.082-3.436-0.909c-1.061,0.153-1.722,0.403-2.448,1.156c-0.266,0.275-0.001,0.689,0.217,0.87c0.404,0.336,0.965,0.491,1.472,0.574c1.022,0.168,2.339,0.139,3.104-0.653z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M393.717,625.076c1.265,2.952,0.844,6.326,1.054,9.489c3.585-7.591,7.17-18.978,14.761-23.405"/>
  			<path style="fill:#FFFFFF;stroke:none;" d="M392.268,625.465c1.042,3.126,0.925,6.233,1.054,9.489c0.021,0.522,2.658-0.19,2.874-0.659c3.718-8.036,6.563-18.102,14.435-23.132c1.179-0.753-1.722-0.31-2.197-0.006c-8.243,5.269-11.185,15.243-15.087,23.679
  				c0.958-0.22,1.916-0.439,2.874-0.659c-0.129-3.255-0.013-6.362-1.054-9.489c-0.202-0.605-3.072,0.256-2.898,0.777z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M408.266,618.962c0,8.645-5.482,16.235-6.114,24.67"/>
  			<path style="fill:#FFFFFF;stroke:none;" d="M406.817,619.351c-0.331,8.64-5.176,16.138-6.114,24.67c-0.043,0.394,2.801,0.109,2.898-0.777c0.938-8.533,5.782-16.017,6.114-24.67c0.018-0.458-2.865-0.085-2.898,0.777z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M417.333,616.01c-2.53,9.277-5.481,18.134-6.747,27.622"/>
  			<path style="fill:#FFFFFF;stroke:none;" d="M415.907,616.278c-2.539,9.191-5.394,18.281-6.771,27.742c-0.038,0.262,2.775,0.063,2.898-0.777c1.365-9.382,4.206-18.388,6.724-27.502c0.143-0.515-2.661-0.153-2.852,0.537z"/>
  		</g>
  		<g>
  			<path style="stroke:none;" d="M404.471,631.824c2.53-2.741,3.162-1.688,5.692-0.211c4.85,2.741,6.748,0.843,10.121-3.374"/>
  			<path style="fill:#FFFFFF;stroke:none;" d="M405.681,632.243c1.649-1.647,3.75,0.463,5.333,1.153c1.163,0.508,2.61,0.699,3.856,0.446c2.95-0.597,4.822-2.953,6.624-5.185c1.156-1.431-1.602-1.852-2.42-0.838c-1.12,1.386-2.381,3.311-4.133,3.94
  				c-1.875,0.673-4.163-1.342-5.698-2.188c-2.326-1.283-4.354,0.204-5.982,1.833c-1.284,1.283,1.519,1.739,2.42,0.838z"/>
  		</g>
  	</g>
      </g>
      </svg>
  
      <!-- ============================================================= -->
      <!-- Batik sample mark                                             -->
      <!-- ============================================================= -->
      <use xlink:href="batikLogo.svg#Batik_Tag_Box" />
      
  </svg>
  
  
  
  1.1                  cocoon-2.1/src/blocks/batik/samples/batikLogo.svg
  
  Index: batikLogo.svg
  ===================================================================
  <?xml version="1.0" standalone="no"?>
  <!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.                                      -->
  <!-- ====================================================================== -->
  
  <!-- ====================================================================== -->
  <!-- Defines the Batik Logo using an SVG font.                              -->
  <!--                                                                        -->
  <!-- @author vhardy@apache.org                                              -->
  <!-- @author thomas.deweese@kodak.com                                       -->
  <!-- @author bella.robinson@cmis.csiro.au                                   -->
  <!-- @version $Id: batikLogo.svg,v 1.1 2003/05/07 19:15:02 vgritsenko Exp $    -->
  <!-- ====================================================================== -->
  
  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="body" width="450" height="500" viewBox="0 0 450 500">
      <title>Batik Logo</title>
      <g id="content">
          <defs>
            <g id="Batik_Squiggle" stroke="none" transform="scale(1.6, 1.6)">  
                <!-- The squiggle is defined as approx 54x57 units @ 0,0 -->
                <path id="Batik_Squiggle_Blue" fill="#6666FF" 
                      d="M14.88,13.024c-0.186-0.247-0.322-0.254-0.42-0.151c0.008-1.744-1.698-2.605-3.419-1.529c-0.065,0.047-0.131,0.104-0.197,0.161c-0.379-0.118-0.805-0.078-1.252,0.162
  	                          c0.995-1.338,2.228-3.299,3.129-5.603c0.479-1.44,0-4.32-2.16-3.12c-3.6,1.68-6.48,4.08-8.88,7.2c-0.72,0.96-1.92,2.88-0.96,4.319c0.62,1.034,2.126,0.463,2.993-0.328C2.767,15.45,1.173,17.944,0,20.944c-0.96,2.4,0.479,4.8,2.88,3.12
  	                          c1.376-0.953,2.701-1.957,3.942-3.023c0.134,0.188,0.406,0.114,0.857-0.337c0.221-0.221,0.441-0.445,0.661-0.668c0.672,0.652,1.843,0.769,2.938-0.052c0.061-0.091,0.136-0.169,0.204-0.253c1.212-0.44,2.762-2.248,2.917-2.867c0.72-1.2,1.2-2.64,0.48-3.84z"/>
                <path id="Batik_Squiggle_Red" fill="#FF0000" 
                      d="M33.84,11.583c0-1.08-0.976-2.341-2.222-2.058c0.021-0.034,0.041-0.068,0.062-0.103c0.72-1.199,1.2-2.64,0.72-4.079c-0.24-0.96-1.439-1.921-2.399-1.2c-1.075,0.645-2.147,1.24-3.2,1.832
  	                          c-0.161-0.339-0.372-0.642-0.619-0.871c0.073-0.16,0.144-0.32,0.218-0.481c0.48-1.2,0.72-6-1.92-4.56c-1.2,0.72-2.16,1.439-3.12,2.399c-1.2,1.2-1.92,3.12-1.439,4.801c0.063,0.189,0.14,0.355,0.226,0.503c-0.293,0.494-0.602,0.973-0.947,1.417
  	                          c-0.72,1.2-1.199,2.64-0.72,4.08c0.24,0.96,1.2,1.92,2.4,1.199c0.227-0.129,0.439-0.274,0.658-0.413c0.451,0.664,1.158,1.001,1.982,0.413c0.154-0.092,0.306-0.176,0.46-0.267c-0.298,1.618-0.163,3.473,1.433,3.402c0.371,0.98,1.139,1.784,2.188,1.185
  	                          c1.44-0.96,2.88-1.92,4.32-2.88c1.439-0.72,2.159-2.64,1.92-4.32z"/>
                <path id="Batik_Squiggle_Green" fill="#33CC33" 
                      d="M25.692,24.387c-0.212-1.113-1.282-1.869-2.892-1.283c-0.112,0.032-0.226,0.09-0.339,0.164c-0.809-0.396-2.029-0.135-2.781,0.316c-0.238,0.159-0.412,0.428-0.541,0.755
  	                          c-0.143,0.081-0.288,0.163-0.437,0.252c0.89-2.079-1.543-2.853-3.343-1.727c-2.16,1.2-3.84,2.4-5.28,4.56c-0.479,0.961-0.72,2.881,0.961,2.881c0.004,0,0.008,0,0.013,0c-0.304,0.808-0.617,1.614-0.974,2.399c-1.68,3.12,1.921,3.84,3.841,2.16
  	                          c0.105-0.105,0.217-0.202,0.324-0.304c0.622,0.677,1.771,0.869,3.035,0.064c0.818-0.446,1.635-0.87,2.446-1.298c0.973,0.631,2.822,0.489,3.794-0.622c0.413-0.413,0.799-0.814,1.167-1.217c0.011,0.006,0.021,0.012,0.033,0.017c0.029-0.048,0.056-0.096,0.085-0.144
  	                          c1.29-1.429,2.303-2.883,3.035-4.896c0.516-1.721-0.82-2.205-2.148-2.076z"/>
            </g> <!-- End Batik_Squiggle -->
  
            <!-- ============================= -->
            <!-- Batik SVG Font Definition     -->
            <!-- ============================= -->
            
            <font horiz-adv-x="150" id="Batik">
                <font-face
                    font-family="Batik SVGFont"
                    units-per-em="240"
                    ascent="190"
                    descent="50"
                    alphabetic="0"/>
            
                <missing-glyph horiz-adv-x="150" d="M20 0 V240 H100 V0 z"/>
            
            
                <glyph unicode=" " glyph-name=" " horiz-adv-x="100"/>
            
                <glyph id="B" unicode="B" glyph-name="B" horiz-adv-x="130"> 
                    <g transform="scale(1,-1)translate(0,-170)">
                        <path d="M21.244,141.963V40.831c0-6.188-0.57-10.773-1.707-13.754c-1.137-2.977-3.066-5.461-5.793-7.449c-1.137-0.766-2.367-1.395-3.695-1.891s-3.012-0.938-5.055-1.32c-2.125-0.371-3.488-0.781-4.094-1.23s-0.906-1.121-0.906-2.02
                                 c0-1.195,0.32-2.035,0.969-2.52c0.645-0.484,1.953-0.73,3.93-0.73c0.758,0,3.816,0.211,9.176,0.625c5.355,0.418,10.387,0.625,15.098,0.625c2.961,0,7.883-0.207,14.758-0.625c6.875-0.414,12.324-0.625,16.352-0.625c16.711,0,29.762,3.461,39.145,10.379
                                 s14.074,16.574,14.074,28.965c0,7.148-1.793,13.418-5.375,18.816c-3.586,5.398-9,9.996-16.242,13.797v2.18c11.574,2.051,20.445,6.547,26.613,13.492s9.254,15.879,9.254,26.805c0,15.406-5.184,27.645-15.551,36.715s-24.473,13.602-42.316,13.602
                                 c-6.078,0-13.367-0.293-21.871-0.875c-8.508-0.586-13.898-0.875-16.172-0.875c-6.762,0-13.863,0.348-21.301,1.043c-1.824,0.137-2.965,0.207-3.418,0.207c-0.609,0-1.199-0.344-1.77-1.027s-0.852-1.406-0.852-2.172c0-1.598,1.355-2.93,4.074-3.996l0.113-0.055
                                 c1.809-0.836,3.223-1.574,4.242-2.223c1.02-0.645,1.906-1.387,2.66-2.223c2.039-2.047,3.492-4.516,4.359-7.402s1.301-7.254,1.301-13.105z M39.244,73.209c0,3.648,0.453,5.93,1.367,6.84c0.914,0.914,2.816,1.367,5.711,1.367h16.555
                                 c12.023,0,20.758-2.031,26.203-6.098c5.441-4.066,8.164-10.508,8.164-19.324c0-10.945-4.188-20.027-12.559-27.246c-8.375-7.219-18.914-10.832-31.625-10.832c-5.711,0-9.441,0.855-11.191,2.566s-2.625,5.148-2.625,10.316v42.41z M39.244,150.737
                                 c0,6.539,1.789,10.953,5.371,13.242c3.578,2.293,11.16,3.438,22.746,3.438c14.172,0,24.82-3.031,31.945-9.094s10.688-15.156,10.688-27.281c0-13.031-4.234-23.188-12.695-30.461s-20.316-10.914-35.563-10.914H47.463c-3.578,0-5.84,0.477-6.793,1.426
                                 s-1.426,3.285-1.426,7.004v52.641z"/>
                       <!-- Put the Squiggle in the B -->
                       <use xlink:href="#Batik_Squiggle" 
                            transform="translate(45,103)" />
                     </g>
  	          </glyph>
            
                <glyph id="a" unicode="a" glyph-name="a" horiz-adv-x="105"> 
                    <path transform="scale(1,-1)translate(-125, -170)"
                      d="M194.825,161.952c-5.238,4.766-10.891,8.285-16.961,10.559c-6.07,2.27-12.863,3.406-20.375,3.406c-7.363,0-12.98-1.922-16.848-5.762c-3.871-3.844-5.805-9.414-5.805-16.719c0-9.359,4.266-16.758,12.805-22.195
                        c8.535-5.438,23.766-10.215,45.695-14.324v-15.789c0-7.09-2.16-12.523-6.477-16.297s-10.523-5.664-18.625-5.664c-6.891,0-11.758,0.992-14.598,2.977s-4.258,5.336-4.258,10.063c0,1.984,0.281,4.27,0.852,6.863s0.855,4.156,0.855,4.688
                        c0,1.07-0.516,1.945-1.547,2.633s-2.352,1.027-3.953,1.027c-3.055,0-5.652-0.816-7.793-2.449s-3.207-3.664-3.207-6.098c0-6.605,3.664-12.625,11-18.055c7.332-5.43,15.977-8.148,25.93-8.148c13.906,0,23.727,2.621,29.465,7.855
                        c5.734,5.238,8.605,14.535,8.605,27.891v42.844c0,6.516,0.621,10.715,1.867,12.594s3.609,2.816,7.086,2.816c0.602,0,1.434-0.035,2.492-0.113c1.055-0.078,1.773-0.117,2.152-0.117c0.527,0,1.02,0.246,1.473,0.73c0.453,0.488,0.68,1.07,0.68,1.742
                        c0,1.574-1.273,2.887-3.816,3.934s-5.785,1.574-9.73,1.574c-4.176,0-7.668-1.039-10.477-3.117s-4.973-5.191-6.488-9.348z M193.037,122.167c-16.43,3.43-27.789,7.273-34.074,11.535c-6.285,4.266-9.426,9.973-9.426,17.129c0,5.559,1.512,9.879,4.543,12.961
                        c3.027,3.086,7.27,4.625,12.723,4.625c7.492,0,13.738-1.941,18.738-5.832c4.996-3.887,7.496-8.813,7.496-14.777v-25.641z"/>
                </glyph>
            
                <glyph id="ti" unicode="ti" glyph-name="ti" horiz-adv-x="100"> 
                    <g style="fill:#FF0000;" transform="scale(1,-1)translate(-215,-170)">
                        <path d="M311.259,168.69c-0.684-0.531-2.199-0.871-4.551-1.023c-1.441,0-2.711-0.113-3.813-0.34s-2.105-0.57-3.012-1.027c-3.035-1.594-5.102-3.586-6.203-5.98c-1.102-2.391-1.648-6.625-1.648-12.703v-35.543c0-11.688,0.188-23.227,0.566-34.617
                                 c0.078-2.047,0.117-3.227,0.117-3.531c0-1.594-0.191-2.617-0.57-3.074c-0.383-0.453-1.066-0.684-2.059-0.684c-1.066,0-9.44,3.681-11.451,4.196s-6.655,1.804-11.209,1.804h-20.266V55.045c0-1.148-0.117-1.918-0.344-2.301s-0.684-0.578-1.363-0.578
                                 c-1.219,0-3.059,2.172-5.527,6.516s-4.727,7.617-6.777,9.824c-2.887,3.199-5.98,6.246-9.285,9.141s-4.953,4.609-4.953,5.141c0,0.609,0.375,1.203,1.129,1.773s1.434,0.855,2.035,0.855h8.586v59.84c0,11.266,2.051,19.273,6.16,24.027
                                 c4.105,4.754,10.875,7.133,20.305,7.133c5.724,0,11.038-1.066,15.948-3.17c4.26-0.381,8.633-0.58,13.126-0.58c4.328,0,8.957,0.211,13.895,0.625c4.934,0.414,7.668,0.625,8.199,0.625c1.141,0,2.09-0.266,2.848-0.793c0.758-0.531,1.141-1.176,1.141-1.934
                                 c0-1.137-0.344-1.969-1.023-2.5z M251.317,163.288c-2.773-2.922-4.156-7.227-4.156-12.914v-64.957c0,0,12.812,0.543,13.215,0.57c1.194,0.081,2.965,0.184,5.164,0.184c3.867,0,6.23,1.637,7.637,3.914c1.402,2.281,2.105,7.367,2.105,15.266v42.039
                                 c0,4.781-0.285,8.273-0.848,10.477c-0.566,2.203-1.563,4.211-2.992,6.031c-0.758,0.836-1.961,1.863-3.617,3.074c-0.292,0.169-0.532,0.312-0.731,0.434c-1.229,0.172-2.446,0.261-3.651,0.261c-5.313,0-9.355-1.457-12.125-4.379z"/>
                        <path d="M284.067,48.667c1.969,0,4.207-1.535,6.711-4.605c2.5-3.07,3.754-5.555,3.754-7.453c0-1.969-1.309-4.453-3.926-7.449c-2.617-2.992-4.648-4.492-6.086-4.492c-1.594,0-3.695,1.555-6.313,4.664s-3.926,5.766-3.926,7.961c0,2.352,1.137,4.836,3.41,7.453s4.398,3.922,6.375,3.922z"/>
                    </g>
                </glyph>
            
            
                <glyph id="k" unicode="k" glyph-name="k" horiz-adv-x="120"> 
                    <path transform="scale(1,-1)translate(-310, -170)"
                       d="M331.507,147.307V35.413c0-8.078-0.68-13.219-2.031-15.43s-3.906-3.316-7.664-3.316h-1.805c-1.387,0-2.465-0.242-3.23-0.734c-0.77-0.492-1.191-1.188-1.27-2.094c0-1.656,1.977-2.941,5.93-3.848l0.23-0.074
                        c1.824-0.301,3.516-0.68,5.074-1.133s3.098-0.984,4.617-1.594c2.66-1.059,5.586-2.535,8.781-4.43c3.191-1.895,5.246-2.844,6.16-2.844c0.984,0,1.746,0.383,2.277,1.141s0.801,1.859,0.801,3.301c0,0.305-0.039,1.082-0.113,2.332
                        c-0.078,1.254-0.113,2.375-0.113,3.359c-0.383,5.391-0.668,10.684-0.859,15.883s-0.285,10.531-0.285,15.996v80.641l33.148-30.207c1.434-1.367,2.566-2.715,3.398-4.047c0.832-1.328,1.25-2.527,1.25-3.594c0-1.289-1.324-2.316-3.969-3.078
                        c-0.305-0.074-0.566-0.148-0.793-0.227c-1.891-0.375-3.215-0.828-3.969-1.359c-0.758-0.527-1.133-1.242-1.133-2.148c0-0.68,0.453-1.262,1.359-1.754s2.004-0.738,3.289-0.738c0.301,0,2.305,0.211,6.008,0.625c3.703,0.418,7.297,0.625,10.773,0.625
                        c2.871,0,6.141-0.207,9.809-0.625c3.664-0.414,5.875-0.625,6.633-0.625c1.438,0,2.496,0.227,3.176,0.68s1.02,1.133,1.02,2.039c0,1.734-1.285,2.828-3.855,3.281h-0.113c-1.133,0.152-2.27,0.379-3.402,0.684s-2.305,0.723-3.516,1.254
                        c-7.332,2.891-13.758,7.07-19.273,12.543c-0.605,0.684-1.059,1.141-1.359,1.367l-19.73,17.781c10.66,14.914,19.223,26.215,25.688,33.902s11.59,12.672,15.371,14.953c3.023,1.75,6.879,2.969,11.566,3.652c0.375,0.078,0.641,0.113,0.793,0.113
                        c2.191,0.152,3.609,0.438,4.254,0.852c0.641,0.414,1,1.113,1.078,2.094c0,1.133-0.512,1.922-1.535,2.375s-3.012,0.68-5.965,0.68h-19.277c-5,0-15.23-10.113-30.684-30.34c-5.609-7.375-10.117-13.227-13.523-17.563l-6.516,6.156v15.617
                        c0,6.852,0.531,11.344,1.602,13.477c1.066,2.133,3.086,3.883,6.059,5.25c1.219,0.535,3.121,0.992,5.715,1.371c0.078,0.023,0.152,0.031,0.23,0.031c2.133,0.152,3.523,0.492,4.172,1.023s0.973,1.363,0.973,2.5c0,0.836-0.344,1.496-1.027,1.988
                        s-1.594,0.738-2.734,0.738c-0.305,0-2.758-0.211-7.355-0.625c-4.602-0.414-8.992-0.625-13.172-0.625c-6.309,0-12.313,0.375-18.016,1.125c-0.914,0.082-1.445,0.125-1.594,0.125c-0.836,0-1.523-0.25-2.055-0.746s-0.797-1.09-0.797-1.777
                        c0-0.766,0.262-1.473,0.789-2.121c0.523-0.648,1.613-1.434,3.27-2.355c0.375-0.227,0.789-0.492,1.242-0.797c1.273-0.758,2.215-1.445,2.816-2.055c1.277-1.367,2.16-3.074,2.648-5.129c0.488-2.051,0.734-5.926,0.734-11.629z"/>
                 </glyph>
  
                 <glyph unicode="*" glyph-name="*" horiz-adv-x="120">
                  <g transform="scale(1, -1)">
                    <use xlink:href="#Batik_Squiggle" 
                            transform="scale(2,2) translate(0,-67)" />
                  </g>
                 </glyph>
            
                 <hkern g1="B"  g2="a"  k="5"/>
                 <hkern g1="a"  g2="t"  k="14"/>
                 <hkern g1="a"  g2="ti" k="14"/>
                 <hkern g1="i"  g2="k"  k="6"/>
                 <hkern g1="ti" g2="k"  k="6"/>
            </font>
  
            <g id="Batik_Logo_Underline" transform="scale(.75,.75)" >
               <path d="M37.886,60c-0.018,0.1-0.377,1.375-0.439,1.492c-0.15,0.285-1.382,2.046-1.598,2.291c0.206-0.233,0.428-0.452,0.65-0.67c-6.851,6.751-0.262,0.713,0.893-0.499c1.893-1.986-2.124,1.712,0.112-0.08
                                c0.604-0.484,1.242-0.925,1.886-1.355c-2.574,1.719,0.458-0.228,1.417-0.868c-2.634,1.761-1.231,0.788-0.605,0.423c1.799-1.049,3.686-1.946,5.591-2.783c0.978-0.43,1.97-0.828,2.964-1.217c1.844-0.723-1.918,0.683-0.003,0.012
                                c0.706-0.264,1.412-0.528,2.117-0.792c-1.224,0.456-1.388,0.521-0.491,0.195c2.531-0.908,5.102-1.708,7.683-2.461c5.73-1.672,11.556-3.013,17.401-4.216c30.689-6.315,61.555-8.765,92.723-10.467c35.225-1.924,70.559-2.313,105.819-1.278
                                c27.375,0.803,55.137,2.029,82.154,6.813c1.854,0.328,3.702,0.69,5.545,1.079c-2.182-0.459,0.632,0.149,1.102,0.26c0.785,0.185,1.566,0.383,2.347,0.585c2.714,0.705,5.407,1.537,7.987,2.642c0.676-4.98,1.351-9.959,2.026-14.939
                                c-29.001,20.428-70.184,18.783-104.484,20.881c-37.85,2.314-78.422,7.341-105.371,37.024c-3.142,3.46-5.693,10.35-0.21,12.998c8.018,3.873,16.683,5.137,25.266,7.166c7.149,1.69,13.362,4.381,16.934,11.121c4.934,9.311,2.75,18.519-0.175,28.003
                                c-3.217,10.428-5.508,20.886-0.692,31.219c4.219,9.05,19.441-3.641,15.823-11.611c-4.234-9.326,1.407-19.828,3.653-28.997c2.667-10.888,1.908-22.401-3.872-32.224c-9.76-16.588-31.066-13.848-46.449-21.271c-0.07,4.333-0.14,8.666-0.21,12.998
                                c10.537-11.719,25.017-18.668,40.974-22.714c18.159-4.604,37.034-5.719,55.666-6.747c37.146-2.049,77.822-2.405,109.506-24.634c4.136-2.902,8.771-12.048,2.026-14.939c-7.868-3.373-16.687-4.781-25.083-6.132c-12.447-2.004-25.032-3.156-37.6-4.075
                                c-33.215-2.427-66.599-2.839-99.887-2.247c-34.872,0.621-69.791,2.496-104.432,6.637c-24.317,2.907-50.972,6.112-73.187,17.171c-4.951,2.465-9.505,5.587-13.309,9.623c-1.027,1.089-2.19,2.464-2.986,3.643c0.137-0.203-3.419,6.639-1.518,3.165
                                c-0.205,0.374-0.38,0.762-0.549,1.151c-1.126,2.59-2.056,5.322-2.196,8.168c-0.222,4.484,4.48,3.091,6.917,1.551c3.856-2.437,7.345-6.516,8.167-11.093z"/>
            </g> <!-- End Batik_Logo_Underline -->
  
            <filter id="dropShadow"  filterUnits="objectBoundingBox" 
                    filterRes="200" width="1.4" height="1.4">
                <feGaussianBlur in="SourceAlpha" stdDeviation="4" /> 
                <feOffset dx="8" dy="8" />
                <feComponentTransfer result="shadow">
                   <feFuncA type="linear" slope=".5" intercept="0" />
                </feComponentTransfer>
                <feComposite in2="shadow" in="SourceGraphic"/>
            </filter>
            
            <g id="Batik_Logo_Shadow" filter="url(#dropShadow)">
                <g id="Batik_Logo">
                   <text id="text" x="0" y="0" font-family="Batik SVGFont" 
                         font-size="180">Batik</text>
                   <use xlink:href="#Batik_Logo_Underline"/>
                </g> <!-- End Batik_Logo -->
            </g> <!-- End Batik_Logo_Shadow -->
            
            <g id="Batik_Tag_Box" >
                <rect x="1" y="1" width="446" height="496" 
                      style="fill:none; stroke:black" />
                <use xlink:href="#Batik_Squiggle" 
                     transform="translate(418,467) scale(0.5, 0.5)" />
            </g> <!-- End Batik_Tag_Box -->
          </defs>
  
          <use x="65" y="233" xlink:href="#Batik_Logo_Shadow" />
      </g>
  
      <!-- ============================================================= -->
      <!-- Batik sample mark                                             -->
      <!-- ============================================================= -->
      <use xlink:href="#Batik_Tag_Box" /> 
  </svg>