You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2004/02/01 19:05:32 UTC

svn commit: rev 6407 - in incubator/directory/eve/trunk/eve: . xdocs xdocs/images

Author: akarasulu
Date: Sun Feb  1 10:05:30 2004
New Revision: 6407

Added:
   incubator/directory/eve/trunk/eve/xdocs/images/
   incubator/directory/eve/trunk/eve/xdocs/images/apache-avalon-logo.png   (contents, props changed)
   incubator/directory/eve/trunk/eve/xdocs/images/avalon-logo.svg
   incubator/directory/eve/trunk/eve/xdocs/images/avalon-power.png   (contents, props changed)
   incubator/directory/eve/trunk/eve/xdocs/images/icon.png   (contents, props changed)
   incubator/directory/eve/trunk/eve/xdocs/images/project-logo.gif   (contents, props changed)
Modified:
   incubator/directory/eve/trunk/eve/project.properties
   incubator/directory/eve/trunk/eve/project.xml
   incubator/directory/eve/trunk/eve/xdocs/design.xml
Log:
Need to make some changes so the L&F is the same as the main site.


Modified: incubator/directory/eve/trunk/eve/project.properties
==============================================================================
--- incubator/directory/eve/trunk/eve/project.properties	(original)
+++ incubator/directory/eve/trunk/eve/project.properties	Sun Feb  1 10:05:30 2004
@@ -1,2 +1,7 @@
 maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory
 maven.license.licenseFile=../../../LICENSE.txt
+maven.xdoc.date=left
+maven.ui.banner.background=#FFFFFF
+maven.xdoc.includeProjectDocumentation=no
+maven.xdoc.poweredby.image=
+maven.xdoc.jsl = file:/${basedir}/../../../sitedocs/trunk/sitedocs/src/etc/site.jsl

Modified: incubator/directory/eve/trunk/eve/project.xml
==============================================================================
--- incubator/directory/eve/trunk/eve/project.xml	(original)
+++ incubator/directory/eve/trunk/eve/project.xml	Sun Feb  1 10:05:30 2004
@@ -6,6 +6,12 @@
     <name>Eve Directory Server</name>
     <package>org.apache.eve</package>
 
+  <organization>
+      <name>The Apache Directory Project</name>
+      <url>http://incubator.apache.org/directory</url>
+      <logo>/images/apache-avalon-logo.png</logo>
+  </organization>
+
     <inceptionYear>2003</inceptionYear>
     <url>http://directory.apache.org/${module.path}modules</url>
     <issueTrackingUrl>
@@ -60,67 +66,6 @@
         </mailingList>
     </mailingLists>
     
-    <developers>
-      <developer>
-        <name>Alex Karasulu</name>
-        <id>akarasulu</id>
-        <email>akarasulu at apache.org</email>
-        <roles>
-          <role>PM</role>
-          <role>Chair</role>
-          <role>Founder</role>
-          <role>Developer</role>
-          <role>Architect</role>
-          <role>Lead Developer</role>
-        </roles>
-      </developer>
-      <developer>
-        <name>Robb Penoyer</name>
-        <id>rpenoyer</id>
-        <email>rpenoyer at apache.org</email>
-        <roles>
-          <role>Developer</role>
-        </roles>
-      </developer>
-      <developer>
-        <name>Jeff Machols</name>
-        <id>jmachols</id>
-        <email>jmachols at apache.org</email>
-        <roles>
-          <role>Developer</role>
-          <role>Infrastructure Support</role>
-        </roles>
-      </developer>
-      <developer>
-        <name>Wes McKean</name>
-        <id>wesmckean</id>
-        <email>wesmckean at apache.org</email>
-        <roles>
-          <role>Developer</role>
-        </roles>
-      </developer>
-      <developer>
-        <name>Noel Bergman</name>
-        <id>noeljb</id>
-        <email>noeljb at apache.org</email>
-        <roles>
-          <role>Mentor</role>
-          <role>Advisor</role>
-          <role>Sponsor</role>
-        </roles>
-      </developer>
-      <developer>
-        <name>Stephen McConnell</name>
-        <id>mcconnell</id>
-        <email>mcconnell at apache.org</email>
-        <roles>
-          <role>Mentor</role>
-          <role>Sponsor</role>
-          <role>Advisor</role>
-        </roles>
-      </developer>
-    </developers>
-
     <licenses>
       <license>
         <name>Apache 1.1 License</name>

Modified: incubator/directory/eve/trunk/eve/xdocs/design.xml
==============================================================================
--- incubator/directory/eve/trunk/eve/xdocs/design.xml	(original)
+++ incubator/directory/eve/trunk/eve/xdocs/design.xml	Sun Feb  1 10:05:30 2004
@@ -8,12 +8,12 @@
   <body>
     <section name="Design">
       
-      <subsection name="General Overview">
+      <subsection name="Components and Services">
         <p>
-          The server is designed as a system of components.  Some components
-          are a collection of other components with a facade to form a subsystem
-          of the server.  Subsystems can contain other subsystems and one 
-          component can depend on another.
+          The server is designed as a system of highly granular components.  
+          Some components are a collection of other components with a facade to 
+          form a subsystem of the server.  Subsystems can contain other 
+          subsystems and one component can depend on another.
         </p>
         
         <p>
@@ -46,6 +46,15 @@
           created and destroyed in separate classloaders without affecting one
           another.
         </p>
+      </subsection>
+
+      <subsection name="Project Layout">
+        <p>
+          Within the Subversion repository Eve contains several small Maven 
+          projects.  Each component within Eve has at least two separate Maven
+          projects.  The layout of component and API projects are based on
+          Eve's structure.
+        </p>
         
         <p>
           Eve tries to make a logical distinction between various subsystems and
@@ -59,10 +68,16 @@
         </p>
         
         <source>
-${basedir}/frontend  -- holds frontend subsystem components
-  ./buffer/spi       -- holds buffer component SPI
-  ./buffer/impl      -- holds buffer component implementation
-...
+eve                       -- holds Eve's top component projects and subsystems
+    ./frontend            -- holds frontend subsystem API and component projects
+        ./common          -- holds projects containing code common to components
+            ./api         -- holds API common to all components in frontend
+        ./buffer          -- holds buffer component projects
+            ./spi         -- holds buffer component SPI project
+            ./impl        -- holds buffer component implementation project
+        ./event           -- holds SEDA event dispatcher component projects
+            ./spi         -- holds event dispatcher component SPI project
+            ./impl        -- holds event dispatcher implementation project
         </source>
         
         <p>
@@ -80,14 +95,175 @@
           between the two projects when both classes are needed by both 
           projects.  To decouple these component projects we relocate these 
           ancillary non SPI classes into the common API where possible.  This
-          way both component projects depend on a common API rather than each 
-          other.
+          way both component projects depend on a common API project rather than
+          each other.
         </p>
       </subsection>
       
-      <subsection name="Major Subsystems">
+      <subsection name="Frontend Subsystem Introduction">
+        <p>
+          At the topmost level Eve is composed of two major subsystems: the 
+          <a href="./frontend/index.html">frontend</a> subsystem and the 
+          <a href="./backend/index.html">backend</a> subsystem.
+        </p>
+        
         <p>
+          As a network protocol server Eve handles LDAP requests and returns
+          zero or more responses for them.  The handling of these requests are 
+          the responsibility of the frontend subsystem.  The frontend listens 
+          for new client connections, services new requests for established 
+          client connections, decodes these requests, processes them and encodes
+          responses using BER encoding rules.  Components within the frontend
+          are designed to handle these specific frontend aspects.
+        </p>
+        
+        <p>
+          The frontend may have components swapped out to make it operate as a
+          X.500 directory or as an LDAP frontend to a X.500.  Both the encoding
+          and decoding of protocol responses and requests are handled by 
+          separate services.  Implementations of these services can encode or 
+          decode different kinds of BER messages.  One implementation is 
+          designed to work with the LDAP version 3 ASN.1 definition, and another
+          can be implemented to work with X.500 ASN.1 definitions.  X.500 now 
+          supports the TCP/IP stack in addition to the OSI stack so there is no 
+          need to swap out the network components.  All that would be required
+          to have the server frontend operate as an X.500 server frontend would
+          be the replacement of the set of services dealing with response 
+          encodeing and request decodeing.  The processing of these requests
+          will also change requiring a new set of request handlers in the heart 
+          of the protocol engine which is also designed as a service and 
+          implemented as a component.
+        </p>
+        
+        <p>
+          Eve's frontend LDAP request processing component is designed today 
+          to take each request and operate against a JNDI context using any
+          JNDI provider.  Hence the frontend can serve as a virtual directory
+          front'ing other LDAP servers or as a LDAP gateway to an X.500 
+          directory.
+        </p>
+        
+        <p>
+          The frontend is designed using a simplified form of Matt Welsh's 
+          <a href="http://www.eecs.harvard.edu/~mdw/proj/seda/">Staged Event 
+          Driven Architecture</a> (SEDA).  A short description of SEDA is 
+          from Matt Welsh is quoted in the source block below:
+        </p>
+        
+        <source>
+SEDA is an acronym for staged event-driven architecture, and decomposes a 
+complex, event-driven application into a set of stages connected by queues. 
+This design avoids the high overhead associated with thread-based concurrency 
+models, and decouples event and thread scheduling from application logic. 
+By performing admission control on each event queue, the service can be 
+well-conditioned to load, preventing resources from being overcommitted when 
+demand exceeds service capacity. SEDA employs dynamic control to automatically 
+tune runtime parameters (such as the scheduling parameters of each stage), as 
+well as to manage load, for example, by performing adaptive load shedding. 
+Decomposing services into a set of stages also enables modularity and code 
+reuse, as well as the development of debugging tools for complex event-driven 
+applications. 
+        </source>
           
+        <p>
+          The frontend has been designed around the non-blocking channels of 
+          the NIO package to handle small chunks of arriving data when that IO 
+          is available.  The processing of each chunk is staged in the server 
+          and eventually the request built from these peices is itself processed
+          in a staged manner.  Our SEDA alignment is very simple without some 
+          of the bells and whistles used for the dynamic control of load sheding
+          and so on.  We would like to wreak the benefits of high concurrency
+          without all the extra features for now at least.
+        </p>
+        
+        <p>
+          Eve's frontend subsystem is very flexible.  It's based on a granular 
+          set of services and their component implementations.  Everything is 
+          plugable and can be reconfigured for different fuctions or swapped out
+          for experimentation.  Furthermore the frontend uses JNDI as the 
+          coupling interface between it and other systems including the backend
+          subsystem so it's very generic.
+        </p>
+      </subsection>
+      
+      <subsection name="Backend Subsystem Introduction">
+        <p>
+          The backend subsystem is responsible for many different aspects of the
+          server besides just entry storage.  It is a major subsystem that 
+          contains within it other subsystems which in turn contain several
+          granular services implemented by components.  Although you'll have to
+          look into the detailed design of the backend and the other subsystems
+          composing it we have here a cursory overview of the responsibilities
+          of the entire backend subsystem:
+        </p>
+        
+        <ul>
+          <li>
+            manages multiple backends (a.k.a. partitions) each associated with
+            a naming context within the server
+          </li>
+          
+          <li>
+            maintains special system backends used to manage schema information 
+            and server (DSA) specific configuration information in addition to
+            backends used to manage application specific information
+          </li>
+          
+          <li>
+            decorates backend operations with orthogonal services using an
+            interceptor framework - the framework will be used to neatly manage
+            the following aspects possibly associated with backend system 
+            operations:
+            <ul>
+              <li>operation authorization on entries using ACLs</li>
+              <li>replication</li>
+              <li>schema checking</li>
+              <li>input normalization</li>
+              <li>trigger firing</li>
+              <li>error handling</li>
+              <li>transaction support</li>
+            </ul>
+          </li>
+          
+          <li>
+            manages Java and Groovy stored procedures
+          </li>
+          
+          <li>
+            contains a server side JNDI provider which wraps the backend nexus
+            translating JNDI operations efficently to nexus operations where 
+            several backends hang.  The JNDI provider is intended for used 
+            within stored procedures to access backend entries.  This makes
+            stored procedures written in Java and Groovy operable within the
+            server as well as outside of it as remote procedures.
+          </li>
+        </ul>
+        
+        <p>
+          Together these subsystems are wrapped as one major system using JNDI 
+          as the top level facade.  The entire backend subsystem of Eve is
+          actually designed as a server side JNDI provider.  The frontend 
+          translates protocol requests into JNDI calls against the backend 
+          subsystem's JNDI Contexts to operate on entries.  
+        </p>
+        
+        <p>
+          The backend subsystem without the frontend itself is embeddable using
+          the JNDI to start up the backend.  JNDI is used to load the provider
+          in a fashion already familiar to those using JNDI.  So code written to
+          operate remotely against an LDAP server using the SUN JNDI LDAP 
+          provider can work locally against Eve's server side JNDI LDAP 
+          provider where the backend is embedded within the same process space.
+          Because we chose to push the interceptor framework into the backend 
+          all decorative services are available through the embedded backend
+          when used as a JNDI provider.  Meaning if you embed Eve's backend 
+          things like replication, schema checking and triggers are still active
+          and available without the frontend.
+        </p>
+        
+        <p>
+          There is are so many details to discuss however we leave these details
+          to more specific documentation in the sections below:
         </p>
       </subsection>
     </section>

Added: incubator/directory/eve/trunk/eve/xdocs/images/apache-avalon-logo.png
==============================================================================
Binary file. No diff available.

Added: incubator/directory/eve/trunk/eve/xdocs/images/avalon-logo.svg
==============================================================================
--- (empty file)
+++ incubator/directory/eve/trunk/eve/xdocs/images/avalon-logo.svg	Sun Feb  1 10:05:30 2004
@@ -0,0 +1,538 @@
+<?xml version="1.0" standalone="no"?>
+<!-- ========================================================================= -->
+<!-- Copyright (C) The Apache Software Foundation. All rights reserved.        -->
+<!--                                                                           -->
+<!-- This software is published under the terms of the Apache Software License -->
+<!-- version 1.1, a copy of which has been included with this distribution in  -->
+<!-- the LICENSE file.                                                         -->
+<!-- ========================================================================= -->
+
+<!-- ========================================================================= -->
+<!-- Test description here                                                     -->
+<!--                                                                           -->
+<!-- @version $Id: avalon-logo.svg,v 1.1.1.1 2003/11/02 11:10:48 leosimons Exp $ -->
+<!-- ========================================================================= -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
+"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
+	<!ENTITY st0 "fill-rule:nonzero;fill:#D9D9D9;stroke:#D9D9D9;stroke-width:0.5956;stroke-miterlimit:4;">
+	<!ENTITY st1 "fill:url(#AIgd2);">
+	<!ENTITY st2 "fill:url(#AIgd3);">
+	<!ENTITY st3 "fill:url(#AIgd4);">
+	<!ENTITY st4 "fill:url(#AIgd6);">
+	<!ENTITY st5 "fill:url(#AIgd8);">
+	<!ENTITY st6 "fill-rule:nonzero;fill:#D9D9D9;stroke:#D9D9D9;stroke-width:0.254;stroke-miterlimit:4;">
+	<!ENTITY st7 "fill:url(#AIgd1);stroke:#000000;">
+	<!ENTITY st8 "fill:url(#AIgd10);">
+	<!ENTITY st9 "fill:url(#AIgd11);">
+	<!ENTITY st10 "fill:url(#AIgd16);">
+	<!ENTITY st11 "fill:url(#AIgd18);">
+	<!ENTITY st12 "fill:url(#AIgd19);">
+	<!ENTITY st13 "fill:url(#AIgd31);">
+	<!ENTITY st14 "fill:url(#AIgd35);">
+	<!ENTITY st15 "fill:url(#AIgd36);">
+	<!ENTITY st16 "fill:url(#AIgd38);">
+	<!ENTITY st17 "fill:url(#AIgd41);">
+	<!ENTITY st18 "fill:url(#AIgd42);">
+	<!ENTITY st19 "fill:url(#AIgd52);">
+	<!ENTITY st20 "fill:url(#AIgd69);">
+	<!ENTITY st21 "fill:url(#AIgd71);">
+	<!ENTITY st22 "fill:url(#AIgd72);">
+	<!ENTITY st23 "fill:#000000;stroke-width:0.5956;">
+]>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="body" xml:space="preserve" width="520" height="51">
+<g transform="translate(168,0) scale(-1, 1)">
+<g id="Layer_x0020_1">
+	<defs>
+		<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd1" x1="-3510.3682" y1="4186.3037" x2="-3520.3882" y2="4153.2837" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 -2022.5977 2980.6621)">
+			<stop  offset="0" style="stop-color:#4F0C81"/>
+			<stop  offset="0.0701" style="stop-color:#690C73"/>
+			<stop  offset="0.209" style="stop-color:#9A0A5B"/>
+			<stop  offset="0.3368" style="stop-color:#C20748"/>
+			<stop  offset="0.4512" style="stop-color:#E0053A"/>
+			<stop  offset="0.5481" style="stop-color:#F20032"/>
+			<stop  offset="0.6158" style="stop-color:#FA002F"/>
+			<stop  offset="1" style="stop-color:#F7EE5F"/>
+		</linearGradient>
+	</defs>
+	<g style="fill-rule:nonzero;fill:url(#AIgd1);stroke:#000000;stroke-width:0.254;stroke-miterlimit:4;">
+		<path style="&st23;" d="M0.241,40.672c13.561-1.867,63.613-4.393,85.943-8.051c17.961-2.937,35.502-8.285,52.242-13.9c4.328-1.453,11.991-4.434,16.896-7.07c3.104-2.373,10.571-5.889,12.606-9.222c-32.45,15.407-45.513,19.649-83.582,27.354
+			c-15.436,3.169-71.617,7.721-84.105,10.889z"/>
+		<defs>
+			<linearGradient id="AIgd2" gradientUnits="userSpaceOnUse" x1="-3788.0986" y1="-3507.6162" x2="-3789.1638" y2="-3479.4058" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#4F0C81"/>
+				<stop  offset="0.0701" style="stop-color:#690C73"/>
+				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
+				<stop  offset="0.3368" style="stop-color:#C20748"/>
+				<stop  offset="0.4512" style="stop-color:#E0053A"/>
+				<stop  offset="0.5481" style="stop-color:#F20032"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st1;" d="M48.261,46.645l1.454,0.498l1.418,0.118l1.417-0.229l1.417-0.574l1.379-0.766l1.38-0.994l1.305-1.146l1.301-1.226l1.228-1.26l1.149-1.267l1.111-1.224l1.035-1.148l0.958-0.957l0.881-0.763l0.767-0.501l0.689-0.228l-0.576,0.036l-0.611,0.038
+			l-0.689,0.077l-0.688,0.074l-0.69,0.078l-0.689,0.076l-0.689,0.038l-0.612,0.076l-0.957,0.88l-0.921,0.842l-0.805,0.842l-0.729,0.844l-0.727,0.801l-0.688,0.805l-0.652,0.764l-0.691,0.729l-0.688,0.727l-0.729,0.65l-0.767,0.65l-0.882,0.61l-0.919,0.576
+			l-1.034,0.535l-1.149,0.496l-1.302,0.421z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd3" x1="-3817.4316" y1="-3498.7192" x2="-3818.3076" y2="-3475.5176" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#4F0C81"/>
+				<stop  offset="0.0701" style="stop-color:#690C73"/>
+				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
+				<stop  offset="0.3368" style="stop-color:#C20748"/>
+				<stop  offset="0.4512" style="stop-color:#E0053A"/>
+				<stop  offset="0.5481" style="stop-color:#F20032"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st2;" d="M43.511,46.45l1.688,0.271l1.569,0.038l1.455-0.15l1.377-0.345l1.265-0.534l1.151-0.652l1.148-0.766l1.034-0.879l1.035-0.918l0.957-0.995l0.959-1.072l0.921-1.032l0.956-1.033l0.96-1.033l0.958-0.955l0.995-0.881l-0.381,0.037h-0.423
+			l-0.384,0.039l-0.419,0.037l-0.424,0.037l-0.421,0.078l-0.42,0.035l-0.42,0.041l-0.421,0.037l-0.461,0.037l-0.422,0.078l-0.459,0.037l-0.459,0.037l-0.46,0.037h-0.46l-0.459,0.039l-0.347,0.535l-0.42,0.651l-0.537,0.765l-0.575,0.805l-0.69,0.881l-0.729,0.879
+			l-0.766,0.918l-0.805,0.879l-0.844,0.844l-0.84,0.805l-0.885,0.726l-0.842,0.612l-0.844,0.496l-0.843,0.346l-0.804,0.189h-0.768z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd4" x1="-3806.9058" y1="-3505.3105" x2="-3807.8401" y2="-3480.5605" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#4F0C81"/>
+				<stop  offset="0.0701" style="stop-color:#690C73"/>
+				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
+				<stop  offset="0.3368" style="stop-color:#C20748"/>
+				<stop  offset="0.4512" style="stop-color:#E0053A"/>
+				<stop  offset="0.5481" style="stop-color:#F20032"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st3;" d="M40.371,46.487l0.958,0.115l0.919,0.076l0.881-0.037l0.881-0.152l0.882-0.19l0.843-0.344l0.841-0.421l0.883-0.574l0.882-0.65l0.882-0.764l0.882-0.921l0.919-0.993l0.958-1.188l0.997-1.3l1.034-1.416l1.074-1.607l-0.651-0.002l-0.613,0.039
+			l-0.614,0.076l-0.612,0.076l-0.611,0.078l-0.613,0.072h-0.688h-0.727l-0.616,0.612l-0.573,0.65l-0.576,0.614l-0.574,0.688l-0.575,0.65l-0.535,0.689l-0.576,0.648l-0.539,0.691l-0.572,0.65l-0.574,0.65l-0.612,0.65l-0.577,0.613l-0.65,0.572l-0.652,0.574
+			l-0.65,0.573l-0.729,0.499z"/>
+		<path style="&st2;" d="M37.041,46.329l0.728,0.387l0.802,0.153l0.807-0.116l0.842-0.342l0.844-0.5l0.881-0.689l0.88-0.764l0.884-0.917l0.841-0.958l0.884-0.993l0.804-0.997l0.805-0.957l0.768-0.957l0.729-0.84l0.689-0.729l0.614-0.613l-4.099,0.382l-0.462,0.612
+			l-0.498,0.61l-0.458,0.616l-0.459,0.608l-0.46,0.614l-0.5,0.612l-0.461,0.612l-0.497,0.612l-0.537,0.573l-0.537,0.611l-0.536,0.578l-0.613,0.57l-0.612,0.574l-0.653,0.576l-0.688,0.536l-0.728,0.532z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd6" x1="-3825.4375" y1="-3503.8936" x2="-3826.3342" y2="-3480.1453" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#4F0C81"/>
+				<stop  offset="0.0701" style="stop-color:#690C73"/>
+				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
+				<stop  offset="0.3368" style="stop-color:#C20748"/>
+				<stop  offset="0.4512" style="stop-color:#E0053A"/>
+				<stop  offset="0.5481" style="stop-color:#F20032"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st4;" d="M30.262,45.444l1.188,0.767l1.109,0.5l1.11,0.231h1.074l1.033-0.191l0.995-0.343l0.955-0.538l0.96-0.687l0.919-0.841l0.923-0.881l0.84-1.037l0.884-1.031l0.843-1.109l0.844-1.146l0.805-1.148l0.805-1.111l-0.688,0.115l-0.536,0.037
+			l-0.384,0.037l-0.345,0.039l-0.343,0.039l-0.346-0.001l-0.499,0.037l-0.651,0.037l-0.729,1.034l-0.727,0.955l-0.729,0.921l-0.805,0.804l-0.767,0.727l-0.767,0.689l-0.804,0.611l-0.768,0.536l-0.766,0.458l-0.768,0.421l-0.727,0.306l-0.689,0.269l-0.689,0.229
+			l-0.614,0.152l-0.612,0.075l-0.537,0.038z"/>
+		<path style="&st2;" d="M26.7,45.21l1.228,0.153l1.186,0.08l1.149-0.078l1.109-0.151l1.036-0.227l1.033-0.345l0.958-0.422l0.92-0.535l0.92-0.572l0.844-0.651l0.843-0.727l0.803-0.804l0.766-0.842l0.73-0.918l0.729-0.959l0.689-0.994l-0.767,0.039l-0.844,0.074
+			l-0.802,0.076l-0.806,0.038l-0.69,0.077l-0.574,0.035l-0.421,0.039l-0.191,0.037l-0.076,0.078l-0.191,0.19l-0.308,0.306l-0.382,0.385l-0.422,0.459l-0.536,0.536l-0.577,0.573l-0.648,0.614l-0.731,0.608l-0.764,0.65l-0.768,0.615l-0.843,0.611l-0.88,0.572
+			l-0.881,0.535l-0.921,0.46L26.7,45.21z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd8" x1="-3841.6636" y1="-3502.4297" x2="-3842.4236" y2="-3482.3" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#4F0C81"/>
+				<stop  offset="0.0701" style="stop-color:#690C73"/>
+				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
+				<stop  offset="0.3368" style="stop-color:#C20748"/>
+				<stop  offset="0.4512" style="stop-color:#E0053A"/>
+				<stop  offset="0.5481" style="stop-color:#F20032"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st5;" d="M21.991,45.476l1.033,0.192l0.998,0.076l1.033-0.113l1.034-0.191l1.034-0.342l0.994-0.423l0.996-0.497l0.998-0.611l0.919-0.648l0.918-0.69l0.881-0.726l0.845-0.766l0.806-0.804l0.766-0.765l0.69-0.768l0.651-0.766h-0.461l-0.574,0.04
+			l-0.611,0.036H34.29l-0.613,0.073l-0.613,0.041l-0.496,0.039l-0.423,0.075v0.077l-0.154,0.189l-0.381,0.347l-0.537,0.42l-0.652,0.535l-0.764,0.613l-0.845,0.652l-0.882,0.647l-0.92,0.687l-0.918,0.691l-0.881,0.65l-0.846,0.574L23.6,44.559L22.91,44.98
+			l-0.537,0.305l-0.382,0.191z"/>
+		<path style="&st2;" d="M16.782,45.434l0.612,0.612l0.806,0.267l0.996,0.001l1.11-0.266l1.227-0.46l1.262-0.646l1.341-0.768l1.305-0.841l1.302-0.919l1.227-0.916l1.147-0.879l0.999-0.844l0.881-0.688l0.65-0.574l0.423-0.381l0.192-0.154l-0.498,0.038l-0.538,0.036
+			l-0.574,0.037l-0.572,0.041l-0.614,0.072l-0.614,0.039l-0.611,0.04l-0.652,0.038l-0.688,0.419l-0.688,0.422l-0.693,0.456l-0.649,0.425l-0.689,0.456l-0.653,0.498l-0.688,0.459l-0.653,0.459l-0.69,0.496l-0.65,0.461l-0.688,0.459l-0.651,0.458l-0.688,0.421
+			l-0.691,0.422l-0.651,0.419l-0.69,0.384z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd10" x1="-3872.1543" y1="-3503.9727" x2="-3872.3848" y2="-3493.1567" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#F7EE5F"/>
+				<stop  offset="0.186" style="stop-color:#F5D65D"/>
+				<stop  offset="0.3825" style="stop-color:#F4C35B"/>
+				<stop  offset="0.5198" style="stop-color:#F4BC5A"/>
+				<stop  offset="0.7809" style="stop-color:#F5DA5D"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st8;" d="M12.953,45.507l0.652,0.229l0.649,0.115l0.65,0.037l0.653-0.11l0.65-0.194l0.689-0.265l0.727-0.383l0.768-0.46l0.843-0.535l0.881-0.612l0.959-0.688l1.072-0.728l1.187-0.803l1.265-0.881l1.379-0.918l1.534-0.957l-0.653,0.039l-0.727,0.039
+			l-0.65-0.001l-0.65,0.038l-0.574,0.037l-0.459,0.038l-0.307,0.039l-0.116,0.036l-0.077,0.115l-0.229,0.23l-0.346,0.307l-0.458,0.42L21.69,40.19l-0.653,0.577l-0.689,0.571l-0.805,0.613l-0.805,0.611l-0.843,0.612l-0.843,0.534l-0.882,0.537l-0.842,0.457
+			l-0.842,0.383l-0.805,0.267l-0.729,0.154z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd11" x1="-3878.0732" y1="-3508.4204" x2="-3874.5449" y2="-3484.9487" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#F7EE5F"/>
+				<stop  offset="0.186" style="stop-color:#F5D65D"/>
+				<stop  offset="0.3825" style="stop-color:#F4C35B"/>
+				<stop  offset="0.5198" style="stop-color:#F4BC5A"/>
+				<stop  offset="0.7809" style="stop-color:#F5DA5D"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st9;" d="M10.158,45.084l0.879,0.344l0.958,0.152l0.998-0.072l1.033-0.268l1.072-0.383l1.033-0.498l1.074-0.608l0.996-0.69l0.958-0.688l0.92-0.728l0.843-0.688l0.728-0.691l0.653-0.572l0.495-0.499l0.383-0.341l0.232-0.232l-0.613,0.038l-0.577,0.04
+			l-0.571,0.037l-0.575,0.074l-0.535,0.041l-0.577,0.037l-0.61,0.074l-0.613,0.038l-0.459,0.421l-0.501,0.42l-0.458,0.421l-0.499,0.46l-0.498,0.498l-0.497,0.459l-0.536,0.459l-0.538,0.458l-0.536,0.423l-0.534,0.421l-0.577,0.381l-0.534,0.343l-0.614,0.309
+			l-0.574,0.266l-0.613,0.193l-0.613,0.152z"/>
+		<path style="&st8;" d="M6.791,44.01l0.765,0.535l0.763,0.345l0.767,0.154l0.767,0.039l0.768-0.151l0.766-0.232l0.766-0.343l0.765-0.458l0.729-0.498l0.766-0.611l0.729-0.613l0.729-0.65l0.727-0.648l0.69-0.69l0.689-0.649l0.69-0.615l-0.422,0.041l-0.46,0.076
+			l-0.497,0.037l-0.535,0.039l-0.575,0.074l-0.612,0.039l-0.652,0.074l-0.612,0.037l-0.192,0.461L13.84,40.26l-0.271,0.422l-0.346,0.422l-0.381,0.383l-0.424,0.383l-0.42,0.381l-0.496,0.306l-0.5,0.308l-0.537,0.268l-0.573,0.268L9.316,43.59l-0.612,0.154
+			l-0.61,0.15L7.44,43.971L6.791,44.01z"/>
+		<path style="&st9;" d="M3.763,43.434L4.415,43.7l0.69,0.193l0.726,0.115l0.806,0.001l0.767-0.038l0.842-0.115l0.805-0.229l0.803-0.229l0.768-0.344l0.729-0.384l0.65-0.421l0.614-0.495l0.536-0.538l0.46-0.572l0.345-0.651l0.23-0.652l-0.46,0.04l-0.46,0.037
+			l-0.497,0.076l-0.5,0.038l-0.495,0.038l-0.537,0.037l-0.574,0.039l-0.652,0.036L9.74,40.067l-0.307,0.384l-0.306,0.345l-0.306,0.306l-0.307,0.306l-0.348,0.229l-0.343,0.27l-0.347,0.229l-0.381,0.191l-0.422,0.19l-0.421,0.19L5.796,42.86l-0.462,0.152
+			l-0.495,0.152L4.302,43.28l-0.539,0.154z"/>
+		<path style="&st8;" d="M2.193,42.896l0.23,0.229l0.347,0.152l0.42,0.078h0.46l0.536-0.038l0.573-0.112l0.613-0.193l0.612-0.189l0.613-0.27l0.614-0.307l0.612-0.342l0.537-0.385l0.537-0.42l0.458-0.459l0.345-0.46l0.307-0.498l-0.343,0.041l-0.308,0.037
+			l-0.383,0.038L8.63,39.836l-0.344,0.039l-0.307,0.036l-0.268,0.001l-0.269-0.001v0.153L7.1,40.37l-0.576,0.422L5.757,41.29L4.84,41.786l-0.922,0.499l-0.919,0.381l-0.806,0.23z"/>
+		<path style="&st8;" d="M1.084,41.822l0.078,0.536l0.192,0.344l0.305,0.155l0.42,0.076l0.499-0.075l0.574-0.192l0.573-0.229l0.614-0.306l0.613-0.346l0.574-0.381l0.575-0.381l0.461-0.347l0.42-0.307l0.307-0.229l0.191-0.152l0.038-0.076l-2.986,0.341l-0.229,0.152
+			l-0.386,0.192l-0.458,0.23l-0.5,0.229l-0.535,0.269l-0.497,0.189l-0.461,0.192l-0.384,0.114z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd16" x1="-3892.5645" y1="-3497.0415" x2="-3892.7126" y2="-3490.0823" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#F7EE5F"/>
+				<stop  offset="0.186" style="stop-color:#F5D65D"/>
+				<stop  offset="0.3825" style="stop-color:#F4C35B"/>
+				<stop  offset="0.5198" style="stop-color:#F4BC5A"/>
+				<stop  offset="0.7809" style="stop-color:#F5DA5D"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st10;" d="M4.533,40.253l-0.651,0.039l-0.574,0.039l-0.536,0.036l-0.498,0.037l-0.46,0.04l-0.497,0.036l-0.498,0.077l-0.577,0.114l0.117,0.729l0.343,0.345l0.537,0.001l0.689-0.19l0.689-0.347l0.729-0.382l0.651-0.345l0.536-0.229z"/>
+		<path style="&st8;" d="M4.419,39.874l-0.653,0.112l-0.573,0.076l-0.497,0.114l-0.5,0.075l-0.458,0.114l-0.459,0.115l-0.537,0.116L0.167,40.75l-0.038-0.844l0.345-0.536l0.537-0.192l0.727-0.034l0.766,0.151l0.766,0.193l0.651,0.23l0.499,0.154z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd18" x1="-3716.793" y1="-3522.1724" x2="-3726.813" y2="-3555.1924" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#4F0C81"/>
+				<stop  offset="0.0701" style="stop-color:#690C73"/>
+				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
+				<stop  offset="0.3368" style="stop-color:#C20748"/>
+				<stop  offset="0.4512" style="stop-color:#E0053A"/>
+				<stop  offset="0.5481" style="stop-color:#F20032"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st11;" d="M44.258,24.317l1.684-0.651l1.611-0.419l1.491-0.113l1.417,0.076l1.379,0.309l1.262,0.459l1.227,0.652l1.187,0.729l1.149,0.845l1.11,0.919l1.106,0.959l1.074,0.996l1.071,0.957l1.07,0.921l1.073,0.882l1.109,0.807l-0.384,0.073
+			l-0.421,0.038l-0.421,0.039l-0.383,0.076l-0.423,0.039l-0.421,0.038l-0.459,0.036l-0.421,0.039l-0.422,0.035l-0.461,0.041l-0.458,0.076l-0.422,0.037l-0.461,0.04l-0.457,0.074l-0.498,0.037l-0.461,0.077l-0.382-0.534l-0.495-0.653l-0.576-0.766l-0.688-0.768
+			l-0.727-0.843l-0.805-0.843l-0.879-0.844l-0.881-0.806l-0.959-0.766l-0.953-0.688l-0.957-0.615l-0.997-0.497l-0.957-0.385l-0.958-0.23l-0.956-0.039l-0.88,0.152z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd19" x1="-3818.3081" y1="-3506.1616" x2="-3836.2568" y2="-3532.4282" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#4F0C81"/>
+				<stop  offset="0.0701" style="stop-color:#690C73"/>
+				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
+				<stop  offset="0.3368" style="stop-color:#C20748"/>
+				<stop  offset="0.4512" style="stop-color:#E0053A"/>
+				<stop  offset="0.5481" style="stop-color:#F20032"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st12;" d="M41.383,24.964l0.96-0.345l0.92-0.227l0.878-0.152l0.923-0.077l0.878,0.077l0.919,0.192l0.88,0.268l0.919,0.423l0.956,0.537l0.959,0.691l0.995,0.803l1.033,0.96l1.108,1.11l1.11,1.266l1.186,1.418l1.264,1.57l-0.69,0.039l-0.611,0.072
+			l-0.576,0.039l-0.534,0.076l-0.537,0.076l-0.573,0.076l-0.653,0.113l-0.765,0.117l-0.689-0.574l-0.65-0.613l-0.689-0.653l-0.612-0.653l-0.649-0.649l-0.649-0.65l-0.613-0.653l-0.651-0.651l-0.651-0.612l-0.688-0.574l-0.651-0.576l-0.688-0.574l-0.727-0.498
+			l-0.767-0.423l-0.766-0.421l-0.805-0.347z"/>
+		<path style="&st11;" d="M38.167,25.805l0.727-0.611l0.808-0.307l0.88-0.074l0.879,0.191l0.958,0.383l0.956,0.538l0.995,0.688l0.996,0.805l0.996,0.881l0.993,0.921l0.956,0.921l0.92,0.958l0.841,0.88l0.84,0.805l0.729,0.691l0.69,0.574l-4.176,0.496l-0.536-0.613
+			l-0.536-0.615l-0.498-0.613l-0.533-0.611l-0.537-0.613l-0.534-0.651l-0.573-0.614l-0.535-0.576l-0.613-0.574l-0.612-0.573l-0.652-0.538l-0.688-0.498l-0.728-0.497l-0.766-0.423l-0.804-0.383l-0.843-0.346z"/>
+		<path style="&st12;" d="M31.886,28.481l1.148-1.111l1.111-0.802l1.073-0.534l1.072-0.307l1.072-0.037l1.034,0.154l1.033,0.385l0.996,0.498l0.994,0.689l0.955,0.804l0.996,0.921l0.919,0.996l0.957,1.035l0.917,1.111l0.918,1.111l0.919,1.11l-0.729,0.04
+			l-0.611,0.035l-0.498,0.039l-0.461,0.076l-0.458,0.076l-0.499,0.075l-0.571,0.078l-0.692,0.112l-0.803-1.034l-0.766-0.919l-0.803-0.844l-0.766-0.728l-0.802-0.612l-0.766-0.538l-0.728-0.461l-0.768-0.382l-0.728-0.309l-0.688-0.229l-0.728-0.192l-0.689-0.152
+			l-0.648-0.08l-0.653-0.074h-0.649l-0.612-0.002z"/>
+		<path style="&st11;" d="M27.402,29.512l1.267-0.461l1.187-0.344l1.187-0.189l1.109-0.077l1.111,0.001l1.071,0.155l1.035,0.231l0.996,0.347l0.995,0.419l0.919,0.537l0.957,0.613l0.878,0.689l0.882,0.768l0.84,0.842l0.806,0.922l0.803,0.996l-0.803,0.115
+			l-0.919,0.111l-0.921,0.115l-0.921,0.115l-0.842,0.113L38.39,35.61l-0.499,0.037l-0.191-0.002l-0.075-0.075l-0.192-0.153l-0.269-0.268l-0.343-0.346l-0.423-0.42l-0.495-0.424l-0.575-0.496l-0.65-0.538l-0.728-0.499l-0.765-0.536l-0.844-0.5l-0.918-0.495
+			l-0.92-0.424l-0.993-0.383l-1.034-0.348l-1.073-0.229z"/>
+		<path style="&st12;" d="M21.735,30.196l1.034-0.418l1.035-0.307l1.108-0.115l1.073,0.001l1.111,0.118l1.108,0.229l1.072,0.346l1.111,0.422l1.033,0.498l1.033,0.537l0.995,0.651l0.994,0.651l0.882,0.693l0.881,0.727l0.802,0.728l0.726,0.729l-0.495,0.037
+			l-0.612,0.076l-0.689,0.075l-0.728,0.077l-0.729,0.075l-0.652,0.076l-0.573,0.037h-0.422l-0.001-0.077l-0.191-0.191l-0.38-0.268l-0.574-0.385l-0.689-0.42l-0.805-0.5l-0.919-0.537l-0.956-0.533l-0.955-0.54l-0.996-0.538l-0.998-0.496l-0.916-0.457l-0.846-0.387
+			l-0.762-0.307l-0.616-0.193l-0.495-0.115z"/>
+		<path style="&st11;" d="M16.373,31.303l0.537-0.842l0.805-0.498l0.996-0.188h1.147l1.264,0.268l1.379,0.422l1.455,0.576l1.415,0.651l1.455,0.729l1.339,0.766l1.265,0.73l1.149,0.727l0.954,0.615l0.729,0.459l0.496,0.342l0.23,0.117l-0.537,0.116l-0.61,0.077
+			l-0.653,0.073l-0.689,0.038l-0.727,0.078l-0.729,0.074l-0.688,0.115l-0.689,0.115l-0.729-0.346l-0.688-0.348l-0.729-0.381l-0.688-0.385l-0.69-0.346l-0.688-0.383l-0.728-0.384l-0.688-0.382l-0.689-0.35l-0.688-0.382l-0.729-0.343l-0.688-0.307l-0.689-0.348
+			l-0.727-0.305l-0.727-0.311l-0.729-0.266z"/>
+		<path style="&st8;" d="M9.518,33.135l0.844-0.611l0.956-0.346l0.996-0.149l1.07,0.001l1.113,0.189l1.148,0.348l1.11,0.421l1.108,0.5l1.035,0.574l1.032,0.575l0.919,0.614l0.804,0.536l0.727,0.499l0.574,0.46l0.42,0.306l0.229,0.193l-0.612,0.074l-0.574,0.077
+			l-0.495,0.076l-0.501,0.037l-0.536,0.037l-0.496,0.076L19.813,37.7l-0.61,0.074l-0.537-0.342l-0.536-0.348l-0.574-0.42l-0.574-0.383L16.37,35.86l-0.613-0.421l-0.612-0.423l-0.612-0.383l-0.614-0.384l-0.647-0.308l-0.652-0.305l-0.613-0.232l-0.648-0.189
+			l-0.615-0.117H10.13l-0.612,0.037z"/>
+		<path style="&st9;" d="M12.044,32.029l0.653-0.423l0.688-0.305l0.652-0.154l0.688-0.074l0.689,0.037l0.728,0.152l0.807,0.27l0.838,0.308l0.921,0.423l0.959,0.459l1.07,0.576l1.147,0.614l1.265,0.65l1.378,0.692l1.49,0.765l1.648,0.768l-0.613,0.04L26.363,36.9
+			l-0.688,0.078l-0.691,0.112l-0.613,0.078l-0.457,0.078l-0.346,0.035l-0.153-0.035l-0.075-0.079l-0.27-0.19l-0.345-0.309l-0.459-0.344l-0.573-0.422l-0.689-0.459l-0.729-0.5l-0.803-0.499l-0.879-0.498l-0.882-0.497l-0.955-0.425l-0.957-0.384l-0.959-0.304
+			l-0.957-0.196l-0.92-0.111l-0.919-0.001z"/>
+		<path style="&st9;" d="M6.451,35.086l0.691-0.766l0.726-0.574l0.729-0.382l0.766-0.229l0.767-0.037l0.804,0.076l0.844,0.192l0.804,0.271l0.84,0.422l0.805,0.42l0.842,0.536l0.843,0.539l0.843,0.536l0.803,0.574l0.805,0.578l0.803,0.496l-0.459,0.076l-0.498,0.038
+			l-0.574,0.116l-0.613,0.072l-0.649,0.079l-0.69,0.073l-0.65,0.078l-0.653,0.075l-0.229-0.497l-0.269-0.422l-0.305-0.422l-0.384-0.383l-0.383-0.344l-0.419-0.27l-0.5-0.271l-0.497-0.229l-0.536-0.191l-0.572-0.154L9.706,35.05l-0.612-0.079l-0.65-0.037
+			l-0.652,0.001l-0.65,0.073l-0.689,0.078z"/>
+		<path style="&st9;" d="M1.738,37.609l0.193-0.306l0.306-0.268l0.422-0.228l0.459-0.154l0.536-0.114l0.612-0.036l0.613,0.001l0.689,0.037l0.65,0.114l0.689,0.155l0.652,0.229l0.61,0.269l0.576,0.308l0.534,0.383l0.422,0.422l0.381,0.461l-0.343,0.076L9.32,39.034
+			L8.9,39.11l-0.423,0.074l-0.382,0.037l-0.308,0.041H7.56H7.482l-0.153-0.078l-0.381-0.23l-0.652-0.307L5.53,38.304l-0.881-0.309l-0.995-0.269l-0.957-0.154l-0.959,0.036z"/>
+		<path style="&st8;" d="M0.818,39.178l-0.036-0.609l0.152-0.461l0.271-0.307l0.42-0.191l0.497-0.078l0.575,0.041l0.613,0.076l0.688,0.154l0.65,0.229l0.65,0.231l0.613,0.23l0.535,0.23l0.46,0.23l0.383,0.154l0.191,0.152l0.078,0.036l-3.065,0.533l-0.27-0.112
+			l-0.42-0.117l-0.459-0.153L2.81,39.294l-0.536-0.115l-0.535-0.074L1.24,39.104l-0.422,0.074z"/>
+		<path style="&st8;" d="M3.349,36.616l0.612-0.498l0.651-0.383l0.729-0.342l0.805-0.231l0.806-0.153l0.803-0.11l0.844,0.001l0.841,0.072l0.804,0.156l0.804,0.27l0.729,0.307l0.689,0.383l0.649,0.461l0.536,0.535l0.421,0.613l0.344,0.689l-0.499,0.039l-0.457,0.077
+			l-0.5,0.036l-0.536,0.076l-0.535,0.078l-0.574,0.037L10.7,38.844l-0.65,0.072l-0.231-0.341l-0.268-0.308L9.244,38l-0.343-0.27L8.519,37.5l-0.421-0.23l-0.423-0.192l-0.459-0.151l-0.459-0.154L6.26,36.657L5.8,36.581l-0.499-0.04l-0.497-0.037l-0.496-0.001
+			l-0.499,0.038l-0.46,0.075z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd31" x1="-3644.5117" y1="-3531.5527" x2="-3636.6318" y2="-3508.3506" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#681083"/>
+				<stop  offset="0.0006" style="stop-color:#681083"/>
+				<stop  offset="0.072" style="stop-color:#8D0F6D"/>
+				<stop  offset="0.1459" style="stop-color:#AD0D5A"/>
+				<stop  offset="0.2229" style="stop-color:#C80A4A"/>
+				<stop  offset="0.3041" style="stop-color:#DE083E"/>
+				<stop  offset="0.3913" style="stop-color:#ED0335"/>
+				<stop  offset="0.4884" style="stop-color:#F60030"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st13;" d="M139.689,18.299l0.077,0.117l0.192,0.307l0.267,0.497l0.344,0.613l0.386,0.727l0.382,0.806l0.346,0.92l0.303,0.918l0.228,0.959l0.079,0.92L142.251,26l-0.192,0.842l-0.422,0.768l-0.651,0.687l-0.919,0.535l-1.189,0.384l0.193-0.578
+			l0.117-0.611l0.113-0.611l0.076-0.689l0.039-0.689V25.31l-0.037-0.69l-0.037-0.729l-0.076-0.729l-0.074-0.725l-0.116-0.69l-0.152-0.651l-0.113-0.651l-0.154-0.575l-0.188-0.574l-0.155-0.498l0.191-0.075l0.154-0.04l0.19-0.076l0.156-0.036l0.153-0.077l0.15-0.039
+			l0.191-0.078l0.19-0.076z"/>
+		<path style="&st13;" d="M138.389,18.835l0.534,2.108l0.382,1.914l0.189,1.646l0.037,1.455l-0.077,1.264l-0.23,1.072l-0.307,0.92l-0.347,0.764l-0.46,0.613l-0.497,0.496l-0.498,0.347l-0.495,0.267l-0.54,0.191l-0.459,0.076l-0.42,0.037h-0.384l0.229-0.613
+			l0.229-0.612l0.192-0.688l0.154-0.689l0.152-0.767l0.118-0.764l0.116-0.767l0.075-0.803l0.041-0.806l0.001-0.843l-0.041-0.804l-0.073-0.843l-0.114-0.804l-0.155-0.843l-0.188-0.766l-0.229-0.805l0.457-0.154l0.463-0.152l0.422-0.152l0.418-0.115l0.348-0.113
+			l0.381-0.115l0.306-0.076l0.27-0.077z"/>
+		<path style="&st13;" d="M135.285,19.792l0.231,0.765l0.227,0.959l0.155,1.073l0.072,1.186l0.041,1.303l-0.002,1.301l-0.116,1.301l-0.192,1.267l-0.271,1.187l-0.345,1.109l-0.499,0.957l-0.572,0.766l-0.731,0.574l-0.84,0.304l-0.96,0.04l-1.108-0.307l0.422-0.691
+			l0.421-0.727l0.347-0.766l0.307-0.727l0.229-0.803l0.231-0.768l0.152-0.805l0.154-0.805l0.077-0.804l0.038-0.841v-0.805l-0.073-0.842l-0.076-0.842l-0.152-0.806l-0.152-0.845l-0.229-0.803l0.383-0.152l0.458-0.152l0.461-0.153l0.46-0.153l0.46-0.151l0.382-0.153
+			l0.346-0.117l0.267-0.074z"/>
+		<path style="&st13;" d="M125.546,35.674l1.036,0.08l0.997-0.154l0.879-0.381l0.805-0.535l0.766-0.73l0.652-0.879l0.536-0.994l0.499-1.109l0.384-1.188l0.309-1.266l0.192-1.3l0.078-1.302l0.001-1.301l-0.114-1.303l-0.229-1.265l-0.343-1.188l-0.422,0.152
+			l-0.425,0.154l-0.456,0.114l-0.463,0.152l-0.458,0.154l-0.497,0.153l-0.46,0.152l-0.497,0.152v0.804l-0.001,0.879l-0.04,0.999l-0.039,1.033l-0.039,1.033l-0.038,1.072l-0.116,1.11l-0.113,1.032l-0.156,1.035L127.62,32l-0.233,0.919l-0.268,0.806l-0.308,0.687
+			l-0.384,0.577l-0.421,0.419l-0.461,0.267z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd35" x1="-3738.23" y1="-3453.355" x2="-3733.0664" y2="-3424.071" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2110.5286 1859.3658)">
+				<stop  offset="0" style="stop-color:#681083"/>
+				<stop  offset="0.0752" style="stop-color:#6F1182"/>
+				<stop  offset="0.1935" style="stop-color:#831380"/>
+				<stop  offset="0.3399" style="stop-color:#A3157B"/>
+				<stop  offset="0.5088" style="stop-color:#D11975"/>
+				<stop  offset="0.6158" style="stop-color:#F21B71"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st14;" d="M128.277,22.083l-0.384,0.153l-0.383,0.114l-0.343,0.115l-0.386,0.077l-0.382,0.114l-0.347,0.113l-0.384,0.116l-0.38,0.153l-0.077,0.766l-0.041,0.84l-0.039,0.92l-0.038,0.958l-0.001,0.958l-0.001,1.031l-0.04,1.037l-0.039,0.994
+			l-0.076,0.997l-0.115,0.994l-0.193,0.919l-0.191,0.844l-0.305,0.802l-0.346,0.727l-0.422,0.616l-0.536,0.496l1.108-0.268l0.919-0.383l0.767-0.533l0.651-0.614l0.537-0.729l0.423-0.839l0.306-0.919l0.232-0.959l0.156-1.072l0.112-1.11l0.039-1.15l0.042-1.225
+			l0.037-1.225l0.039-1.264l0.001-1.264l0.078-1.303z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd36" x1="-3716.3066" y1="-3509.6641" x2="-3713.6802" y2="-3491.7153" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#681083"/>
+				<stop  offset="0.0006" style="stop-color:#681083"/>
+				<stop  offset="0.072" style="stop-color:#8D0F6D"/>
+				<stop  offset="0.1459" style="stop-color:#AD0D5A"/>
+				<stop  offset="0.2229" style="stop-color:#C80A4A"/>
+				<stop  offset="0.3041" style="stop-color:#DE083E"/>
+				<stop  offset="0.3913" style="stop-color:#ED0335"/>
+				<stop  offset="0.4884" style="stop-color:#F60030"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st15;" d="M118.116,38.426l1.531-0.074l1.304-0.305l1.07-0.497l0.882-0.651l0.689-0.842l0.502-0.958l0.419-1.071l0.27-1.188l0.154-1.226l0.114-1.261l0.041-1.305l0.001-1.262l0.001-1.305l0.001-1.223l0.076-1.15l0.078-1.071l-0.421,0.114
+			l-0.383,0.113l-0.343,0.117l-0.387,0.113l-0.382,0.113l-0.343,0.115l-0.384,0.077l-0.423,0.114l0.039,0.113l0.075,0.269l0.078,0.423l0.114,0.537l0.074,0.688l0.078,0.768l0.039,0.881l-0.04,0.996l-0.114,1.035l-0.195,1.145l-0.347,1.189l-0.42,1.225l-0.614,1.265
+			l-0.766,1.339l-0.921,1.3l-1.15,1.339z"/>
+		<path style="&st15;" d="M112.905,40.07l1.035,0.191l1.035-0.073l0.995-0.346l0.996-0.537l0.956-0.725l0.92-0.881l0.844-1.07l0.769-1.188l0.649-1.265l0.576-1.378l0.462-1.456l0.309-1.489l0.192-1.496l0.041-1.531l-0.152-1.454l-0.308-1.456l-3.638,1.146
+			l0.037,0.613l0.037,0.729l-0.038,0.801l-0.08,0.92l-0.112,0.958l-0.192,1.034l-0.192,1.072l-0.308,1.109l-0.347,1.109l-0.421,1.073l-0.461,1.071l-0.575,1.035l-0.612,0.995l-0.729,0.919l-0.805,0.841l-0.883,0.727z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd38" x1="-3716.5049" y1="-3512.9565" x2="-3712.3662" y2="-3473.3286" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#681083"/>
+				<stop  offset="0.0006" style="stop-color:#681083"/>
+				<stop  offset="0.072" style="stop-color:#8D0F6D"/>
+				<stop  offset="0.1459" style="stop-color:#AD0D5A"/>
+				<stop  offset="0.2229" style="stop-color:#C80A4A"/>
+				<stop  offset="0.3041" style="stop-color:#DE083E"/>
+				<stop  offset="0.3913" style="stop-color:#ED0335"/>
+				<stop  offset="0.4884" style="stop-color:#F60030"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st16;" d="M118.662,24.987l-0.573,0.189l-0.729,0.191l-0.807,0.268l-0.84,0.229l-0.806,0.27l-0.804,0.227l-0.689,0.191l-0.537,0.115l-0.076,0.881l-0.042,0.955l-0.075,0.959l-0.038,0.995l-0.117,0.995l-0.077,1.037l-0.115,0.994l-0.153,0.996
+			l-0.19,0.956l-0.232,0.921l-0.309,0.916l-0.344,0.842l-0.422,0.807l-0.498,0.688l-0.536,0.65l-0.65,0.576l0.766,0.114l0.803-0.038l0.804-0.19l0.805-0.343l0.804-0.5l0.807-0.612l0.768-0.763l0.766-0.958l0.689-1.034l0.611-1.227l0.578-1.339l0.495-1.528
+			l0.388-1.65l0.307-1.758l0.194-1.955l0.077-2.066z"/>
+		<path style="&st15;" d="M103.98,41.593l1.725,0.081l1.455-0.154l1.265-0.418l0.998-0.653l0.841-0.802l0.691-0.958l0.497-1.072l0.386-1.224l0.308-1.225l0.19-1.343l0.116-1.3l0.117-1.302l0.038-1.303l0.078-1.188l0.075-1.11l0.117-0.995l-0.535,0.114l-0.463,0.115
+			l-0.419,0.153l-0.418,0.112l-0.463,0.117l-0.422,0.111l-0.496,0.154l-0.576,0.151l-0.116,1.038l-0.112,0.992l-0.116,0.996l-0.156,0.955l-0.116,0.961l-0.153,0.918l-0.189,0.879l-0.194,0.881l-0.269,0.844l-0.308,0.841l-0.382,0.805l-0.422,0.806l-0.536,0.801
+			l-0.576,0.767l-0.689,0.728l-0.77,0.726z"/>
+		<path style="&st16;" d="M99.349,42.433l1.532,0.078l1.34-0.192l1.188-0.418l1.036-0.65l0.88-0.805l0.766-0.957l0.615-1.107l0.537-1.188l0.458-1.227l0.347-1.3l0.269-1.266l0.194-1.299l0.19-1.226l0.116-1.15l0.116-1.073l0.079-0.919l-0.539,0.117l-0.459,0.112
+			l-0.42,0.115l-0.423,0.077l-0.38,0.113l-0.425,0.074l-0.495,0.152l-0.576,0.115l-0.192,1.496l-0.229,1.417l-0.27,1.301l-0.269,1.226l-0.31,1.109l-0.345,1.071l-0.383,0.919l-0.384,0.883l-0.383,0.803l-0.425,0.727l-0.459,0.613l-0.422,0.573l-0.459,0.536
+			l-0.461,0.42l-0.498,0.383l-0.459,0.345z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd41" x1="-3711.1768" y1="-3514.0366" x2="-3709.7402" y2="-3493.4663" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#681083"/>
+				<stop  offset="0.0006" style="stop-color:#681083"/>
+				<stop  offset="0.072" style="stop-color:#8D0F6D"/>
+				<stop  offset="0.1459" style="stop-color:#AD0D5A"/>
+				<stop  offset="0.2229" style="stop-color:#C80A4A"/>
+				<stop  offset="0.3041" style="stop-color:#DE083E"/>
+				<stop  offset="0.3913" style="stop-color:#ED0335"/>
+				<stop  offset="0.4884" style="stop-color:#F60030"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st17;" d="M94.98,43.004l1.457,0.078l1.302-0.189l1.151-0.424l1.071-0.611l0.881-0.802l0.805-0.919l0.69-1.072l0.614-1.146l0.535-1.189l0.422-1.263l0.347-1.264l0.308-1.262l0.271-1.188l0.192-1.149l0.152-1.031l0.155-0.922l-0.459,0.076l-0.46,0.116
+			l-0.462,0.114l-0.459,0.115l-0.462,0.115l-0.458,0.112l-0.46,0.114l-0.497,0.117l-0.038,0.725l-0.116,0.805l-0.153,0.843l-0.269,0.918l-0.27,0.995l-0.382,0.957l-0.385,1.033l-0.422,0.998l-0.499,0.996l-0.537,0.957l-0.534,0.879l-0.577,0.84l-0.574,0.806
+			l-0.614,0.69l-0.649,0.572l-0.617,0.459z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd42" x1="-3718.4951" y1="-3510.1016" x2="-3716.7441" y2="-3482.9595" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#681083"/>
+				<stop  offset="0.0006" style="stop-color:#681083"/>
+				<stop  offset="0.072" style="stop-color:#8D0F6D"/>
+				<stop  offset="0.1459" style="stop-color:#AD0D5A"/>
+				<stop  offset="0.2229" style="stop-color:#C80A4A"/>
+				<stop  offset="0.3041" style="stop-color:#DE083E"/>
+				<stop  offset="0.3913" style="stop-color:#ED0335"/>
+				<stop  offset="0.4884" style="stop-color:#F60030"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st18;" d="M90.197,43.881l1.49,0.193l1.38-0.191l1.264-0.496l1.15-0.766l1.073-0.955l0.921-1.148l0.84-1.301l0.77-1.341l0.613-1.415l0.537-1.381l0.46-1.302l0.384-1.262l0.23-1.074l0.192-0.88l0.114-0.65l0.001-0.381l-0.573,0.111l-0.537,0.115
+			l-0.535,0.152l-0.536,0.115l-0.536,0.152l-0.5,0.113l-0.497,0.115l-0.499,0.078l-0.191,0.651l-0.19,0.765l-0.229,0.879l-0.271,0.996l-0.308,1.035l-0.343,1.071l-0.384,1.069l-0.424,1.114l-0.461,1.07l-0.497,0.995l-0.537,0.959l-0.574,0.842l-0.653,0.725
+			l-0.65,0.574l-0.728,0.422l-0.765,0.229z"/>
+		<path style="&st18;" d="M86.712,43.688l1.377,0.307l1.223,0.001l1.113-0.267l1.034-0.535l0.882-0.729l0.805-0.881l0.727-1.068l0.652-1.15l0.539-1.226l0.498-1.261l0.384-1.265l0.385-1.227l0.307-1.147l0.231-1.035l0.23-0.918l0.189-0.727l-0.419,0.076
+			l-0.423,0.038l-0.38,0.075l-0.347,0.076l-0.384,0.076l-0.346,0.078l-0.305,0.074l-0.345,0.041l-0.118,0.879l-0.189,0.919l-0.232,0.917l-0.228,0.883l-0.309,0.918l-0.347,0.881l-0.382,0.844l-0.461,0.842l-0.46,0.842l-0.537,0.804l-0.615,0.765l-0.61,0.688
+			l-0.729,0.69l-0.727,0.611l-0.806,0.574l-0.879,0.535z"/>
+		<path style="&st16;" d="M82.345,44.374l1.147,0.002l1.112-0.115l1.07-0.268l1.037-0.384l0.956-0.533l0.959-0.65l0.842-0.763l0.841-0.842l0.73-0.96l0.69-1.032l0.614-1.15l0.573-1.186l0.461-1.264l0.385-1.34l0.347-1.379l0.23-1.414l-0.498,0.113l-0.499,0.076
+			l-0.536,0.115l-0.496,0.074l-0.497,0.078l-0.459,0.112l-0.5,0.077l-0.459,0.115l-0.231,0.805l-0.191,0.842l-0.231,0.805l-0.194,0.803l-0.23,0.804l-0.228,0.804l-0.307,0.766l-0.346,0.804l-0.42,0.767l-0.463,0.803l-0.576,0.766l-0.688,0.766l-0.768,0.729
+			l-0.918,0.765l-1.073,0.766l-1.188,0.726z"/>
+		<path style="&st16;" d="M76.14,45.095l1.495,0.118l1.454-0.076l1.34-0.229l1.266-0.382l1.187-0.497l1.112-0.649l1.033-0.768l0.918-0.917l0.844-0.955l0.767-1.073l0.693-1.148l0.573-1.222l0.496-1.304l0.425-1.34l0.307-1.377l0.233-1.381l-0.423,0.076l-0.46,0.117
+			l-0.456,0.074l-0.461,0.075l-0.459,0.078l-0.5,0.114l-0.497,0.076l-0.5,0.115l-0.152,0.955l-0.23,0.957l-0.31,0.96l-0.383,0.917l-0.457,0.918l-0.502,0.918l-0.574,0.882l-0.648,0.843l-0.691,0.844l-0.767,0.762l-0.808,0.727l-0.879,0.689l-0.921,0.611
+			l-0.995,0.575l-0.997,0.497l-1.072,0.419z"/>
+		<path style="&st15;" d="M72.732,45.475l1.264-0.075l1.226-0.189l1.228-0.306l1.186-0.458l1.112-0.536l1.109-0.648l1.034-0.729l0.958-0.842l0.881-0.917l0.843-0.993l0.73-1.076l0.65-1.109l0.536-1.184l0.46-1.226l0.348-1.267l0.229-1.299l-0.419,0.074l-0.385,0.037
+			l-0.346,0.039l-0.343,0.039l-0.346,0.037l-0.382,0.077L83.849,33l-0.539,0.075l-0.537,1.112l-0.459,1.031l-0.46,0.997l-0.422,0.919l-0.46,0.881l-0.424,0.805l-0.461,0.764l-0.498,0.727l-0.537,0.729l-0.613,0.649l-0.688,0.69l-0.765,0.611l-0.884,0.65
+			l-0.996,0.611l-1.108,0.612l-1.265,0.61z"/>
+		<path style="&st16;" d="M66.604,45.855l1.877,0.077l1.763-0.073l1.57-0.267l1.455-0.422l1.34-0.572l1.187-0.691l1.113-0.801l0.993-0.92l0.921-0.993l0.844-1.072l0.729-1.109l0.688-1.189l0.652-1.184l0.577-1.187l0.538-1.227l0.496-1.187l-0.343,0.036l-0.461,0.078
+			l-0.573,0.076l-0.575,0.076l-0.613,0.115l-0.537,0.076l-0.456,0.076l-0.347,0.035l-0.46,1.074l-0.499,1.074l-0.577,0.994l-0.573,0.955l-0.652,0.881l-0.688,0.879l-0.729,0.804l-0.804,0.807l-0.804,0.727l-0.885,0.688l-0.917,0.688l-0.96,0.613l-0.995,0.572
+			l-1.072,0.535l-1.072,0.496l-1.149,0.46z"/>
+		<path style="&st15;" d="M62.966,46.387L64,46.35l1.071-0.152l1.15-0.269l1.186-0.419l1.188-0.495l1.189-0.613l1.188-0.726l1.187-0.803l1.149-0.918l1.111-0.957l1.035-1.07l0.999-1.15l0.879-1.188l0.804-1.262l0.691-1.34l0.576-1.38l-0.575,0.079l-0.575,0.074
+			l-0.611,0.037l-0.612,0.077l-0.536,0.037l-0.461,0.077l-0.382,0.076l-0.192,0.115l-0.69,0.535l-0.689,0.575l-0.729,0.688l-0.729,0.688l-0.727,0.766l-0.767,0.802l-0.767,0.844l-0.768,0.845l-0.766,0.879l-0.804,0.842l-0.805,0.842l-0.845,0.84l-0.842,0.843
+			l-0.845,0.763L63.848,45.7l-0.882,0.688z"/>
+		<path style="&st16;" d="M57.375,46.383l0.997,0.654l1.032,0.268l1.034,0.001l1.073-0.268l1.071-0.536l1.073-0.729l1.111-0.916l1.11-1.033l1.112-1.188l1.148-1.225l1.189-1.301l1.188-1.299l1.188-1.264l1.226-1.264l1.228-1.148l1.226-1.031h-0.425l-0.494,0.074
+			l-0.576,0.038l-0.573,0.116L72.7,34.411l-0.612,0.113l-0.572,0.115l-0.5,0.075l-0.956,0.88l-0.957,0.88l-0.923,0.919l-0.919,0.919l-0.881,0.916l-0.883,0.921l-0.88,0.92l-0.845,0.84l-0.844,0.84l-0.842,0.768l-0.805,0.688l-0.804,0.613l-0.805,0.535l-0.767,0.459
+			l-0.766,0.343l-0.767,0.229z"/>
+		<path style="&st15;" d="M53.046,46.879l1.572,0.001l1.492-0.151l1.342-0.385l1.304-0.494l1.187-0.614l1.109-0.765l1.075-0.84l0.995-0.92l0.997-0.994l0.956-1.033l0.921-1.035l0.959-1.07l0.959-1.07l0.994-1.034l1.035-0.957l1.072-0.918l-0.382,0.04l-0.458,0.037
+			l-0.577,0.074l-0.572,0.041l-0.577,0.073l-0.459,0.038l-0.382,0.041l-0.229-0.001l-0.651,0.151L66.076,35.4l-0.649,0.423l-0.692,0.573l-0.689,0.687l-0.729,0.805l-0.766,0.844l-0.769,0.915l-0.88,0.958l-0.883,0.955l-0.997,0.996l-1.032,0.959l-1.111,0.955
+			l-1.188,0.88l-1.264,0.802l-1.381,0.729z"/>
+		<path style="&st11;" d="M138.274,15.35v-0.153l0.04-0.42l0.038-0.649l0.04-0.807l0.039-0.957l-0.037-1.033l-0.038-1.072l-0.111-1.111l-0.229-1.033l-0.309-0.996l-0.38-0.882l-0.572-0.728l-0.654-0.537l-0.843-0.307l-1.034-0.039l-1.186,0.306l0.385,0.384
+			l0.343,0.459l0.345,0.574l0.306,0.613l0.305,0.689l0.27,0.689l0.264,0.767l0.271,0.804l0.228,0.767l0.19,0.806l0.194,0.803l0.188,0.766l0.155,0.768l0.152,0.727l0.114,0.65l0.113,0.613l0.19-0.037l0.154-0.037l0.189-0.078l0.155-0.037l0.151-0.079l0.155-0.075
+			l0.192-0.037l0.226-0.078z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd52" x1="-3690.9155" y1="-3526.2993" x2="-3702.7354" y2="-3558.2568" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#4F0C81"/>
+				<stop  offset="0.0701" style="stop-color:#690C73"/>
+				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
+				<stop  offset="0.3368" style="stop-color:#C20748"/>
+				<stop  offset="0.4512" style="stop-color:#E0053A"/>
+				<stop  offset="0.5481" style="stop-color:#F20032"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st19;" d="M136.86,15.925l-0.497-2.489l-0.535-2.108l-0.535-1.801l-0.532-1.492l-0.539-1.188l-0.534-0.958l-0.533-0.689l-0.499-0.497l-0.536-0.347l-0.458-0.153l-0.502-0.039l-0.42,0.078l-0.419,0.152l-0.382,0.191l-0.348,0.229l-0.306,0.23
+			l0.536,0.497l0.533,0.573l0.462,0.538l0.494,0.611l0.424,0.615l0.422,0.648l0.382,0.652l0.344,0.691l0.344,0.727l0.306,0.766l0.307,0.768l0.268,0.805l0.227,0.842l0.23,0.842l0.227,0.882l0.194,0.919l0.457-0.077l0.345-0.036l0.232-0.077l0.153-0.077l0.151-0.037
+			l0.156-0.076L136.632,16l0.229-0.075z"/>
+		<path style="&st11;" d="M134.944,16.651l-0.113-0.918l-0.194-1.035l-0.305-1.15l-0.379-1.226l-0.5-1.264l-0.571-1.227l-0.611-1.187l-0.688-1.111l-0.729-0.996l-0.765-0.843l-0.803-0.65l-0.842-0.425l-0.881-0.152l-0.882,0.152l-0.842,0.499l-0.882,0.878
+			l0.688,0.498l0.65,0.576l0.613,0.574l0.574,0.576l0.574,0.611l0.496,0.689l0.459,0.691l0.42,0.688l0.423,0.769l0.343,0.767l0.345,0.805l0.267,0.842l0.267,0.879l0.193,0.92l0.189,0.959l0.155,0.994l0.416-0.114l0.461-0.152l0.499-0.153l0.498-0.191l0.461-0.189
+			l0.421-0.154l0.344-0.151l0.23-0.077z"/>
+		<path style="&st19;" d="M120.017,6.607l0.919-0.612l0.92-0.344l0.957-0.115l0.919,0.115l0.958,0.307l0.919,0.5l0.882,0.689l0.843,0.805l0.762,0.919l0.766,1.073l0.65,1.188l0.572,1.226l0.496,1.305l0.384,1.376l0.306,1.38l0.151,1.416l-0.46,0.115l-0.459,0.116
+			l-0.46,0.15l-0.46,0.154l-0.497,0.191l-0.499,0.113l-0.457,0.154l-0.498,0.075l-0.346-0.88l-0.305-0.959l-0.383-0.957l-0.348-0.957l-0.379-0.996l-0.419-0.998l-0.423-0.956l-0.421-0.918l-0.456-0.884l-0.499-0.805l-0.533-0.766l-0.539-0.651l-0.609-0.575
+			l-0.615-0.459l-0.648-0.346l-0.69-0.19z"/>
+		<path style="&st11;" d="M115.804,7.75l1.455-0.648l1.302-0.344l1.149-0.038l1.034,0.193l0.919,0.421l0.806,0.65l0.724,0.807l0.65,0.957l0.575,1.072l0.495,1.188l0.5,1.229l0.457,1.225l0.457,1.264l0.421,1.264l0.459,1.188l0.497,1.111l-0.421,0.037l-0.384,0.115
+			l-0.383,0.113l-0.385,0.152l-0.381,0.118l-0.384,0.151l-0.421,0.114l-0.422,0.074l-0.038-0.151l-0.038-0.383l-0.114-0.498l-0.114-0.689l-0.189-0.803l-0.27-0.92l-0.306-0.996l-0.42-1.034l-0.494-1.034l-0.574-1.035l-0.728-1.035l-0.803-0.958l-0.96-0.918
+			l-1.07-0.767l-1.228-0.691l-1.375-0.5z"/>
+		<path style="&st19;" d="M110.366,8.552l0.882-0.651l0.997-0.42l1.069-0.153l1.072,0.04l1.149,0.229l1.148,0.461l1.108,0.615l1.111,0.768l1.07,0.956l0.997,1.075l0.878,1.225l0.805,1.342l0.687,1.416l0.537,1.533l0.342,1.57l0.19,1.687l-3.945,1.029l-0.228-0.649
+			l-0.307-0.77l-0.306-0.803l-0.382-0.881l-0.461-0.92l-0.457-0.956l-0.537-0.961l-0.573-0.956l-0.652-0.957l-0.725-0.92l-0.766-0.842l-0.803-0.808l-0.878-0.728l-0.959-0.613l-0.996-0.537l-1.07-0.421z"/>
+		<path style="&st11;" d="M120.502,21.387l-0.572,0.115l-0.727,0.152l-0.729,0.23l-0.808,0.229l-0.764,0.267l-0.729,0.191l-0.649,0.189l-0.536,0.152l-0.382-0.957l-0.421-0.995l-0.422-0.996l-0.42-1.036l-0.421-1.032l-0.458-0.997l-0.498-0.995l-0.497-0.997
+			l-0.533-0.918l-0.573-0.845l-0.614-0.804l-0.651-0.727l-0.65-0.652l-0.728-0.537l-0.804-0.423l-0.804-0.306l0.692-0.459l0.764-0.344l0.806-0.23l0.88-0.075l0.918,0.076l0.959,0.231l0.957,0.383l0.992,0.576l0.999,0.728l0.993,0.92l0.995,1.149l0.954,1.304
+			l0.919,1.532l0.917,1.723l0.843,1.992l0.802,2.184z"/>
+		<path style="&st11;" d="M101.288,11.34l1.571-0.841l1.415-0.498l1.304-0.114l1.187,0.193l1.032,0.458l0.996,0.691l0.841,0.883l0.805,1.073l0.688,1.188l0.649,1.265l0.573,1.341l0.534,1.34l0.536,1.302l0.498,1.265l0.458,1.148l0.456,1.035l-0.534,0.076
+			l-0.459,0.112l-0.422,0.079l-0.422,0.114l-0.421,0.114l-0.459,0.115l-0.498,0.076l-0.572,0.112l-0.5-1.033l-0.458-1.036l-0.46-0.994l-0.458-0.958l-0.459-0.958l-0.495-0.88l-0.5-0.881l-0.495-0.806l-0.575-0.807l-0.61-0.727l-0.612-0.688l-0.688-0.652
+			l-0.769-0.615l-0.801-0.536l-0.92-0.498l-0.956-0.46z"/>
+		<path style="&st19;" d="M96.537,12.715l1.419-0.765l1.339-0.383l1.265-0.075l1.225,0.191l1.111,0.461l1.069,0.689l0.996,0.844l0.921,0.998l0.841,1.149l0.802,1.187l0.726,1.227l0.652,1.264l0.611,1.266l0.537,1.148l0.455,1.111l0.423,0.957l-0.574,0.113
+			l-0.5,0.115l-0.46,0.113l-0.421,0.076l-0.458,0.115l-0.461,0.115l-0.536,0.076l-0.613,0.115l-0.688-1.533l-0.688-1.417l-0.646-1.302l-0.651-1.188l-0.614-1.071l-0.573-0.961l-0.61-0.84l-0.574-0.807l-0.612-0.651l-0.613-0.575l-0.611-0.498l-0.65-0.421
+			l-0.653-0.308l-0.685-0.269l-0.731-0.155l-0.765-0.113z"/>
+		<path style="&st11;" d="M92.937,13.747l1.378-0.65l1.307-0.308l1.222,0.001l1.19,0.233l1.07,0.458l1.033,0.654l0.956,0.844l0.92,0.957l0.802,1.072l0.766,1.148l0.726,1.188l0.613,1.188l0.609,1.189l0.5,1.15l0.456,1.033l0.421,0.959l-0.459,0.113l-0.42,0.113
+			l-0.424,0.076l-0.383,0.116l-0.421,0.077l-0.42,0.075l-0.462,0.113l-0.496,0.077l-0.231-0.765l-0.342-0.845l-0.42-0.842l-0.497-0.919l-0.535-0.919l-0.651-0.921l-0.649-0.92l-0.728-0.92l-0.765-0.841l-0.805-0.846l-0.803-0.766l-0.804-0.652l-0.843-0.613
+			l-0.805-0.498l-0.802-0.383l-0.806-0.23z"/>
+		<path style="&st19;" d="M88.608,14.852l1.417-0.762l1.38-0.345l1.379,0.039l1.301,0.385l1.264,0.612l1.226,0.879l1.149,1.038l1.069,1.147l0.995,1.229l0.881,1.264l0.8,1.227l0.65,1.187l0.536,1.036l0.422,0.879l0.23,0.652l0.113,0.383l-0.574,0.115l-0.498,0.113
+			l-0.498,0.115l-0.5,0.115l-0.496,0.115l-0.459,0.074l-0.499,0.077l-0.497,0.076l-0.344-0.651l-0.384-0.804l-0.458-0.882l-0.537-0.921l-0.571-1.033l-0.614-1.034l-0.646-0.997l-0.691-1.034l-0.727-0.959l-0.767-0.881l-0.802-0.804l-0.803-0.652l-0.844-0.537
+			l-0.844-0.345l-0.878-0.152l-0.882,0.035z"/>
+		<path style="&st11;" d="M85.468,16.077l1.266-0.842l1.224-0.459l1.149-0.113l1.149,0.19l1.071,0.461l1.033,0.692l0.958,0.842l0.915,1.035l0.844,1.113l0.805,1.184l0.727,1.229l0.687,1.225l0.574,1.15l0.535,1.073l0.421,0.918l0.383,0.766l-0.46,0.077l-0.382,0.114
+			l-0.344,0.115l-0.308,0.113l-0.347,0.114l-0.305,0.115l-0.308,0.078l-0.343,0.073l-0.344-0.955l-0.421-0.958l-0.422-0.921l-0.46-0.918l-0.537-0.919l-0.531-0.844l-0.613-0.844l-0.65-0.805l-0.689-0.767l-0.764-0.688l-0.765-0.614l-0.844-0.574l-0.919-0.5
+			l-0.919-0.421l-0.996-0.308l-1.071-0.229z"/>
+		<path style="&st19;" d="M81.483,16.993l1.113-0.422l1.109-0.266l1.148-0.077l1.074,0.078l1.109,0.231l1.032,0.345l1.034,0.536l1.034,0.652l0.956,0.768l0.918,0.92l0.881,0.996l0.842,1.112l0.802,1.226l0.689,1.34l0.688,1.418l0.571,1.491l-0.498,0.077
+			l-0.495,0.076l-0.501,0.115l-0.497,0.153l-0.496,0.115l-0.498,0.153l-0.497,0.115l-0.5,0.074l-0.343-0.842l-0.343-0.882l-0.347-0.843l-0.342-0.883l-0.422-0.842l-0.419-0.805l-0.501-0.842l-0.534-0.767l-0.649-0.729l-0.688-0.728l-0.805-0.652l-0.88-0.613
+			l-0.996-0.537l-1.11-0.498l-1.261-0.424l-1.381-0.344z"/>
+		<path style="&st11;" d="M75.815,18.329l1.455-0.609l1.457-0.385l1.34-0.189l1.34-0.037l1.265,0.191l1.226,0.346l1.147,0.498l1.111,0.652l0.992,0.805l0.994,0.919l0.884,1.036l0.84,1.15l0.764,1.264l0.652,1.34l0.611,1.381l0.535,1.491l-0.459,0.077l-0.46,0.076
+			l-0.536,0.078l-0.501,0.074l-0.533,0.078l-0.538,0.074l-0.535,0.076l-0.535,0.076l-0.269-1.072l-0.383-0.994l-0.42-0.996l-0.533-0.959l-0.575-0.881L85.5,23.046l-0.688-0.805l-0.766-0.729l-0.842-0.689l-0.916-0.574l-0.959-0.539l-0.995-0.459l-1.071-0.346
+			l-1.112-0.307l-1.146-0.191l-1.188-0.078z"/>
+		<path style="&st19;" d="M73.021,18.632l1.302-0.19l1.262-0.113l1.263,0.039l1.228,0.154l1.224,0.307l1.15,0.385l1.109,0.498l1.073,0.613l0.995,0.729l0.954,0.844l0.844,0.919l0.803,1.034L86.916,25l0.611,1.226l0.499,1.341l0.38,1.419l-0.46,0.035l-0.383,0.038
+			l-0.382,0.077l-0.384,0.077l-0.384,0.074l-0.382,0.078l-0.46,0.114l-0.496,0.076l-0.651-1.111l-0.613-1.073l-0.532-0.958l-0.5-0.956l-0.535-0.844l-0.498-0.804l-0.497-0.767l-0.572-0.69l-0.612-0.651l-0.688-0.575l-0.768-0.535l-0.842-0.498l-0.995-0.425
+			L75.7,19.286l-1.264-0.346l-1.415-0.308z"/>
+		<path style="&st11;" d="M66.933,19.432l1.914-0.457l1.8-0.268l1.646-0.075l1.531,0.154l1.417,0.307l1.302,0.461l1.187,0.573l1.074,0.77l1.03,0.842l0.917,0.96l0.844,1.034l0.802,1.112l0.728,1.147l0.688,1.227l0.612,1.226l0.611,1.265l-0.307,0.037l-0.42,0.037
+			l-0.459,0.115l-0.501,0.076l-0.496,0.115l-0.462,0.114l-0.419,0.036l-0.346,0.039l-0.571-1.148l-0.613-1.035L79.753,27.1l-0.726-0.918l-0.766-0.883l-0.805-0.806l-0.879-0.726l-0.919-0.69l-0.956-0.616l-0.996-0.573l-1.034-0.498l-1.07-0.498l-1.111-0.423
+			l-1.147-0.383l-1.189-0.346l-1.222-0.309z"/>
+		<path style="&st11;" d="M63.295,19.811l1.068-0.189l1.113-0.037l1.225,0.038l1.263,0.192l1.267,0.271l1.3,0.384l1.303,0.497l1.302,0.614l1.3,0.729l1.224,0.845l1.186,0.92l1.147,1.035l1.035,1.149l0.956,1.225l0.841,1.342l0.728,1.455l-0.537,0.039l-0.533,0.076
+			l-0.538,0.115l-0.536,0.113l-0.459,0.113l-0.385,0.117l-0.306,0.036l-0.19-0.037l-0.769-0.46l-0.763-0.537l-0.804-0.613l-0.843-0.689l-0.843-0.729l-0.878-0.768l-0.92-0.768l-0.916-0.802l-0.959-0.806l-0.956-0.807l-0.995-0.803l-0.996-0.729l-1.033-0.729
+			l-0.995-0.652l-1.071-0.613l-1.031-0.537z"/>
+		<path style="&st11;" d="M58.197,21.262l0.958-0.955l1.034-0.572l1.074-0.23l1.109,0.077l1.148,0.308l1.225,0.575l1.227,0.769l1.3,0.879l1.301,1.074l1.341,1.11l1.34,1.19l1.34,1.188l1.377,1.188l1.377,1.112l1.376,1.035l1.381,0.92l-0.421,0.074l-0.499,0.037
+			l-0.612,0.041l-0.613,0.037l-0.648,0.037h-0.653h-0.574l-0.497-0.002l-1.034-0.766l-0.993-0.804l-0.996-0.808l-0.918-0.842l-0.919-0.805l-0.883-0.807l-0.878-0.805l-0.88-0.767l-0.919-0.688l-0.879-0.651l-0.92-0.575l-0.956-0.5l-0.996-0.422l-1.034-0.345
+			l-1.073-0.192l-1.11-0.117z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd69" x1="-3772.377" y1="-3509.7163" x2="-3797.2949" y2="-3537.6816" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
+				<stop  offset="0" style="stop-color:#4F0C81"/>
+				<stop  offset="0.0701" style="stop-color:#690C73"/>
+				<stop  offset="0.209" style="stop-color:#9A0A5B"/>
+				<stop  offset="0.3368" style="stop-color:#C20748"/>
+				<stop  offset="0.4512" style="stop-color:#E0053A"/>
+				<stop  offset="0.5481" style="stop-color:#F20032"/>
+				<stop  offset="0.6158" style="stop-color:#FA002F"/>
+				<stop  offset="1" style="stop-color:#F7EE5F"/>
+			</linearGradient>
+		</defs>
+		<path style="&st20;" d="M54.368,21.719l1.61-0.381l1.493-0.152l1.415,0.076l1.343,0.271l1.262,0.461l1.226,0.575l1.186,0.729l1.148,0.805l1.11,0.919l1.109,0.922l1.071,0.995l1.111,0.996l1.109,0.958l1.107,0.959l1.188,0.843l1.185,0.807l-0.38,0.037l-0.498,0.075
+			l-0.576,0.078l-0.576,0.036l-0.572,0.079l-0.5,0.072l-0.38,0.041l-0.231,0.037l-0.688-0.002l-0.69-0.189l-0.727-0.348l-0.766-0.496l-0.766-0.614l-0.843-0.728l-0.879-0.807l-0.919-0.844l-0.959-0.881l-1.031-0.918l-1.109-0.882l-1.148-0.844l-1.262-0.808
+			l-1.302-0.728l-1.379-0.651l-1.494-0.5z"/>
+		<path style="&st20;" d="M49.543,23.057l1.417-0.805l1.495-0.342h1.455l1.49,0.309l1.495,0.576l1.494,0.804l1.454,0.96l1.415,1.034l1.339,1.149l1.302,1.15l1.263,1.075l1.148,0.993l1.033,0.844l0.956,0.65l0.843,0.385l0.726,0.116l-0.61,0.077l-0.653,0.113
+			l-0.727,0.113l-0.765,0.117l-0.767,0.074l-0.767,0.115l-0.728,0.038L64.2,32.642l-1.07-0.806l-0.958-0.766l-0.879-0.767l-0.84-0.728l-0.767-0.73L58.96,28.12l-0.767-0.691l-0.726-0.651l-0.729-0.612l-0.804-0.576l-0.841-0.537l-0.919-0.496l-0.996-0.461
+			l-1.071-0.383l-1.226-0.348l-1.34-0.307z"/>
+		<defs>
+			<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd71" x1="-3498.5225" y1="4158.0396" x2="-3482.3647" y2="4209.6001" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 -1982.8965 3021.3838)">
+				<stop  offset="0" style="stop-color:#D8E7EB"/>
+				<stop  offset="0.0849" style="stop-color:#C9D9DE"/>
+				<stop  offset="0.2184" style="stop-color:#A5B8C2"/>
+				<stop  offset="0.3836" style="stop-color:#728896"/>
+				<stop  offset="0.5537" style="stop-color:#405766"/>
+				<stop  offset="0.6417" style="stop-color:#667D8B"/>
+				<stop  offset="0.742" style="stop-color:#92A7B1"/>
+				<stop  offset="0.8374" style="stop-color:#B7C8D0"/>
+				<stop  offset="0.9257" style="stop-color:#CFDFE4"/>
+				<stop  offset="1" style="stop-color:#D8E7EB"/>
+			</linearGradient>
+		</defs>
+		<g style="&st21;">
+			<defs>
+				<linearGradient gradientUnits="userSpaceOnUse"  id="AIgd72" x1="-3704.9473" y1="-3493.9082" x2="-3688.7896" y2="-3442.3477" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2110.5286 1859.3658)">
+					<stop  offset="0" style="stop-color:#D8E7EB"/>
+					<stop  offset="0.0849" style="stop-color:#C9D9DE"/>
+					<stop  offset="0.2184" style="stop-color:#A5B8C2"/>
+					<stop  offset="0.3836" style="stop-color:#728896"/>
+					<stop  offset="0.5537" style="stop-color:#405766"/>
+					<stop  offset="0.6417" style="stop-color:#667D8B"/>
+					<stop  offset="0.742" style="stop-color:#92A7B1"/>
+					<stop  offset="0.8374" style="stop-color:#B7C8D0"/>
+					<stop  offset="0.9257" style="stop-color:#CFDFE4"/>
+					<stop  offset="1" style="stop-color:#D8E7EB"/>
+				</linearGradient>
+			</defs>
+			<path style="&st22;" d="M142.305,7.35l0.191-0.383l0.153-0.42l0.152-0.423l0.113-0.421l0.117-0.459l0.115-0.496l0.077-0.459l0.042-0.5l0.036-0.459l0.035-0.498l0.001-0.499l-0.035-0.46l-0.036-0.459l-0.08-0.457l-0.112-0.461l-0.114-0.42l0.611,0.804l0.459,0.882
+				l0.345,0.842l0.189,0.88l0.076,0.919v0.92l-0.116,0.918l-0.194,0.92l-0.228,0.918l-0.31,0.883l-0.343,0.879l-0.343,0.88l-0.385,0.843l-0.347,0.842l-0.346,0.765l-0.343,0.767l0.074-0.152l0.037-0.269l0.042-0.266v-0.345l0.037-0.424V12.06V11.6l0.001-0.496
+				l0.038-0.499v-0.498l0.039-0.534l0.04-0.498l0.038-0.461l0.078-0.461l0.075-0.42l0.116-0.383z"/>
+			<path style="&st22;" d="M153.974,23.252l-0.729-0.422l-0.729-0.462l-0.687-0.421l-0.688-0.422l-0.65-0.383l-0.651-0.422l-0.616-0.385l-0.609-0.42l-0.653-0.384l-0.607-0.384l-0.614-0.422l-0.652-0.382l-0.611-0.386l-0.654-0.342l-0.686-0.386l-0.689-0.382
+				l0.61,0.61l0.613,0.616l0.613,0.611l0.612,0.576l0.65,0.611l0.651,0.536l0.65,0.539l0.688,0.497l0.651,0.461l0.689,0.383l0.651,0.346l0.688,0.269l0.688,0.229l0.688,0.115l0.691,0.037l0.691-0.035z"/>
+			<path style="&st22;" d="M148.277,7.928l-0.536,0.308l-0.5,0.345l-0.495,0.345l-0.461,0.344l-0.46,0.343l-0.419,0.383l-0.424,0.421l-0.423,0.383l-0.384,0.422l-0.384,0.422l-0.382,0.421l-0.345,0.457l-0.383,0.422l-0.346,0.459l-0.344,0.459l-0.346,0.459
+				l0.153-0.496l0.192-0.499l0.191-0.537l0.229-0.534l0.231-0.536l0.265-0.499l0.31-0.498l0.346-0.495l0.382-0.46l0.461-0.381l0.498-0.385l0.537-0.344l0.612-0.269l0.652-0.229l0.765-0.152l0.805-0.076z"/>
+			<path style="&st22;" d="M142.574,3.329l-0.153,0.767l-0.114,0.767l-0.154,0.766l-0.116,0.689l-0.076,0.727l-0.114,0.689l-0.079,0.689l-0.115,0.689L141.576,9.8l-0.117,0.689l-0.074,0.651l-0.118,0.689l-0.116,0.689l-0.115,0.689l-0.15,0.689l-0.157,0.727
+				l-0.076-0.842l-0.113-0.805l-0.077-0.843l-0.076-0.841l-0.037-0.807l-0.038-0.805l0.039-0.805l0.039-0.764l0.076-0.767l0.116-0.688l0.194-0.689l0.229-0.651l0.269-0.573l0.384-0.537l0.422-0.46l0.497-0.421z"/>
+			<path style="&st22;" d="M146.674,2.071l0.692,0.648l0.416,0.729l0.189,0.766l0.04,0.805l-0.153,0.804l-0.307,0.843l-0.424,0.844l-0.498,0.841l-0.575,0.804l-0.611,0.805l-0.653,0.764l-0.65,0.689l-0.614,0.689l-0.534,0.572l-0.463,0.539l-0.383,0.418l0.077-1.147
+				l0.154-0.995l0.191-0.844l0.307-0.764l0.306-0.65l0.386-0.574l0.382-0.535l0.424-0.501l0.383-0.496l0.424-0.495l0.382-0.538l0.307-0.613l0.307-0.688l0.23-0.766l0.194-0.919l0.075-1.032z"/>
+			<path style="&st22;" d="M141.763,14.319v-0.805l-0.039-0.765l-0.034-0.765l-0.04-0.768l-0.036-0.729l-0.077-0.727l-0.076-0.727l-0.073-0.691l-0.117-0.688l-0.114-0.728l-0.189-0.689l-0.152-0.689L140.62,4.86l-0.268-0.689l-0.229-0.689l-0.306-0.689l1.111,1.073
+				l0.918,1.034l0.649,0.959l0.457,0.92l0.309,0.879l0.151,0.805l0.037,0.806l-0.077,0.727l-0.195,0.689l-0.187,0.651l-0.27,0.613l-0.271,0.533l-0.23,0.537l-0.229,0.459l-0.152,0.459l-0.078,0.383z"/>
+			<path style="&st22;" d="M152.982,16.97l-0.613,0.114l-0.614,0.116l-0.611,0.075l-0.613,0.075l-0.609,0.038l-0.616,0.037h-0.613h-0.575l-0.612-0.039h-0.574l-0.613-0.077l-0.573-0.038l-0.613-0.04l-0.575-0.075l-0.612-0.079l-0.574-0.075l0.498,0.229l0.498,0.192
+				l0.535,0.231l0.537,0.19l0.574,0.193l0.576,0.151l0.61,0.156l0.61,0.076l0.612,0.039h0.651l0.651-0.039l0.654-0.15l0.651-0.191l0.651-0.27l0.648-0.381l0.654-0.46z"/>
+			<path style="&st22;" d="M149.417,20.07l0.461,0.078l0.419,0.075l0.461,0.115l0.457,0.115l0.463,0.194l0.456,0.151l0.421,0.191l0.46,0.23l0.421,0.23l0.421,0.267l0.383,0.271l0.386,0.268l0.343,0.307l0.308,0.307l0.304,0.307l0.27,0.344l-0.269-0.917l-0.422-0.808
+				l-0.494-0.688l-0.615-0.651l-0.688-0.536l-0.768-0.5L151.754,19l-0.882-0.347l-0.919-0.306l-0.919-0.307l-0.955-0.231l-0.958-0.23l-0.957-0.193l-0.919-0.189l-0.843-0.154l-0.842-0.192l0.42,0.153l0.574,0.306l0.69,0.463l0.841,0.497l0.843,0.535l0.879,0.499
+				l0.842,0.46l0.768,0.308z"/>
+			<path style="&st22;" d="M151.174,26.926l0.345-0.881l0.117-0.844l-0.116-0.842l-0.307-0.766l-0.457-0.729l-0.612-0.727l-0.728-0.69l-0.804-0.614l-0.843-0.613l-0.879-0.536l-0.919-0.538l-0.884-0.459l-0.801-0.42l-0.767-0.387l-0.651-0.344l-0.496-0.309
+				l0.532,1.113l0.538,0.919l0.573,0.728l0.536,0.652l0.574,0.498l0.574,0.459l0.574,0.346l0.574,0.346l0.571,0.346l0.577,0.382l0.572,0.384l0.536,0.46l0.537,0.573l0.535,0.691l0.497,0.806l0.498,0.995z"/>
+			<path style="&st22;" d="M141.529,17.497l0.422,0.652l0.42,0.652l0.421,0.65l0.38,0.613l0.346,0.613l0.345,0.649l0.346,0.614l0.305,0.613l0.304,0.652l0.268,0.65l0.271,0.613l0.229,0.65l0.19,0.689l0.192,0.65l0.152,0.689l0.152,0.73l0.384-1.455l0.191-1.265
+				l0.041-1.149l-0.115-0.994l-0.229-0.844l-0.346-0.766l-0.42-0.652l-0.458-0.537l-0.538-0.499l-0.535-0.421l-0.573-0.346l-0.537-0.306l-0.496-0.306l-0.46-0.268l-0.342-0.307l-0.31-0.271z"/>
+		</g>
+	</g>
+</g><!-- Layer_x0020_1 -->
+</g><!-- translate and flip -->
+<g id="jakarta_text1" style='font-family: "Tahoma"; font-size: 15px; font-weight: bold;'>
+	<text x="114" y="15" fill="black" text-anchor="start">The</text>
+</g>
+<g id="jakarta_text2" style='font-family: "Tahoma"; font-size: 26px; font-weight: bold;'>
+	<text x="150" y="23" fill="black" text-anchor="start">Apache Avalon Project</text>
+</g>
+<g id="jakarta_text3" style='font-family: "Tahoma"; font-size: 16px;'>
+	<text x="190" y="44" fill="black" text-anchor="start">h t t p : / /  a v a l o n . a p a c h e . o r g /</text>
+</g>
+</svg>

Added: incubator/directory/eve/trunk/eve/xdocs/images/avalon-power.png
==============================================================================
Binary file. No diff available.

Added: incubator/directory/eve/trunk/eve/xdocs/images/icon.png
==============================================================================
Binary file. No diff available.

Added: incubator/directory/eve/trunk/eve/xdocs/images/project-logo.gif
==============================================================================
Binary file. No diff available.