зеркало из https://github.com/mozilla/gecko-dev.git
First import of the SVG pluglet. Compiles and works on win32.
This commit is contained in:
Родитель
4956e3c3c6
Коммит
26490f38b7
|
@ -0,0 +1,70 @@
|
|||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Sun Microsystems,
|
||||
# Inc. Portions created by Sun are
|
||||
# Copyright (C) 1999 Sun Microsystems, Inc. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
JAVA_OR_NSJVM=1
|
||||
NO_CAFE=1
|
||||
|
||||
DEPTH=..\..\..\..
|
||||
|
||||
include <batik_defs.mak>
|
||||
|
||||
include <$(DEPTH)\config\config.mak>
|
||||
|
||||
JAR_JMP_CLASSES = .
|
||||
|
||||
!ifdef JAVA_OR_NSJVM
|
||||
JDIRS = $(JAR_JMP_CLASSES)
|
||||
!endif
|
||||
|
||||
JAVAC_PROG=$(JDKHOME)\bin\javac
|
||||
JAVAC_FLAGS=-classpath $(CLASSPATH);$(JAVA_DESTPATH);$(BATIK_CLASSPATH) -d $(JAVA_DESTPATH)
|
||||
|
||||
include <$(DEPTH)\config\javarules.mak>
|
||||
include <$(DEPTH)\config\rules.mak>
|
||||
|
||||
clean::
|
||||
del /F $(DEPTH)\dist\classes\SVG*.*
|
||||
del /F $(DIST)\bin\plugins\SVGPlugletFactory.jar
|
||||
|
||||
!ifdef CLASSPATH
|
||||
JAVAC_CLASSPATH=$(JAVAC_CLASSPATH);$(CLASSPATH);
|
||||
!endif
|
||||
|
||||
install:: manifest buildRun
|
||||
copy manifest $(DEPTH)\dist\classes
|
||||
cd $(DEPTH)\dist\classes
|
||||
$(JDKHOME)\bin\jar cvfm SVGPlugletFactory.jar manifest SVG*.*
|
||||
del manifest
|
||||
cd $(MOZ_SRC)\mozilla\java\plugins\examples\SVG
|
||||
copy $(DEPTH)\dist\classes\SVGPlugletFactory.jar $(DIST)\bin\plugins
|
||||
del $(DEPTH)\dist\classes\SVGPlugletFactory.jar
|
||||
|
||||
buildRun:
|
||||
@echo +++ Creating runSVG.bat. Use this to run the browser.
|
||||
rm -f runSVG.bat
|
||||
@echo set CLASSPATH=;$(BATIK_CLASSPATH);$(CLASSPATH);$(JAVA_DESTPATH) >> runSVG.bat
|
||||
!ifdef MOZ_DEBUG
|
||||
@echo $(MOZ_SRC)\mozilla\dist\win32_d.obj\bin\mozilla "file:///$(MOZ_SRC)/mozilla/java/plugins/examples/SVG/samples/samples.html" >> runSVG.bat
|
||||
!else
|
||||
@echo $(MOZ_SRC)\mozilla\dist\win32_o.obj\bin\mozilla "file:///$(MOZ_SRC)/mozilla/java/plugins/examples/SVG/samples/samples.html" >> runSVG.bat
|
||||
!endif
|
||||
|
||||
edburns:
|
||||
@echo $(CLASSPATH)
|
|
@ -0,0 +1,408 @@
|
|||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public
|
||||
* License Version 1.1 (the "License"); you may not use this file
|
||||
* except in compliance with the License. You may obtain a copy of
|
||||
* the License at http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS
|
||||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
* implied. See the License for the specific language governing
|
||||
* rights and limitations under the License.
|
||||
*
|
||||
* The Original Code is RaptorCanvas.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Kirk Baker and
|
||||
* Ian Wilkinson. Portions created by Kirk Baker and Ian Wilkinson are
|
||||
* Copyright (C) 1999 Kirk Baker and Ian Wilkinson. All
|
||||
* Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Ana Lindstrom-Tamer <Ana.Lindstrom-Tamer@eng.sun.com>
|
||||
*/
|
||||
|
||||
|
||||
|
||||
import java.net.URL;
|
||||
import java.io.*;
|
||||
import java.util.ResourceBundle;
|
||||
import java.util.Locale;
|
||||
|
||||
import java.awt.*;
|
||||
import javax.swing.*;
|
||||
|
||||
import org.apache.batik.util.*;
|
||||
import org.apache.batik.dom.svg.*;
|
||||
import org.apache.batik.swing.JSVGCanvas;
|
||||
import org.w3c.dom.svg.SVGDocument;
|
||||
|
||||
import org.apache.batik.swing.svg.SVGUserAgent;
|
||||
|
||||
import org.xml.sax.InputSource;
|
||||
|
||||
import org.mozilla.pluglet.*;
|
||||
import org.mozilla.pluglet.mozilla.*;
|
||||
import org.mozilla.pluglet.mozilla.PlugletTagInfo2;
|
||||
|
||||
|
||||
/***********************************************************************/
|
||||
/************************** Pluglet Factory ****************************/
|
||||
/***********************************************************************/
|
||||
public class SVGPlugletFactory implements PlugletFactory {
|
||||
|
||||
/********************************************************************/
|
||||
/* main - used for debugging purposes */
|
||||
/********************************************************************/
|
||||
public static void main(String args[]) {
|
||||
try {
|
||||
SVGpluglet test = new SVGpluglet();
|
||||
Frame f = new Frame("SVGplugletTest");
|
||||
test.setWindow(f);
|
||||
PlugletStreamListener testStream = test.newStream();
|
||||
test.loadDocument("file:///home/lindstro/SVG/batik/1.0/xml-batik/samples/tests/index2.svg");
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* constructor */
|
||||
/********************************************************************/
|
||||
public SVGPlugletFactory() {
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* PlugletFactory Method: */
|
||||
/* Creates a new Pluglet instance based on a MIME type. */
|
||||
/********************************************************************/
|
||||
public Pluglet createPluglet(String mimeType) {
|
||||
try {
|
||||
return new SVGpluglet();
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* PlugletFactory Method: */
|
||||
/* Initializes the PlugletFactory instance and is called before
|
||||
any new Pluglet instances are created. */
|
||||
/********************************************************************/
|
||||
public void initialize(PlugletManager manager) {
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* PlugletFactory Method: */
|
||||
/* Called when the browser is done with a PlugletFactory
|
||||
instance. */
|
||||
/********************************************************************/
|
||||
public void shutdown() {
|
||||
}
|
||||
}
|
||||
|
||||
/***********************************************************************/
|
||||
/****************************** Pluglet ********************************/
|
||||
/***********************************************************************/
|
||||
class SVGpluglet implements Pluglet {
|
||||
|
||||
private Panel panel = null;
|
||||
private JSVGCanvas svgCanvas = null;
|
||||
private SVGDocument doc = null;
|
||||
private URL url = null;
|
||||
|
||||
protected SVGUserAgent userAgent = new UserAgent();
|
||||
|
||||
protected Dimension defaultSize = new Dimension(400,400);
|
||||
PlugletPeer peer;
|
||||
int w, h;
|
||||
|
||||
|
||||
/********************************************************************/
|
||||
/* constructor */
|
||||
/********************************************************************/
|
||||
public SVGpluglet() {
|
||||
}
|
||||
|
||||
|
||||
/********************************************************************/
|
||||
/* Pluglet Method: */
|
||||
/* Initializes a newly created Pluglet instance, passing to it
|
||||
an instance of PlugletPeer, which it should use for
|
||||
communication with the browser. */
|
||||
/********************************************************************/
|
||||
public void initialize(PlugletPeer peer) {
|
||||
PlugletTagInfo2 info = (PlugletTagInfo2)peer.getTagInfo();
|
||||
w = info.getWidth();
|
||||
h = info.getHeight();
|
||||
if (w >= 0 && h >= 0) {
|
||||
defaultSize = new Dimension(w, h);
|
||||
}
|
||||
|
||||
this.peer = peer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/********************************************************************/
|
||||
/* loadDocument */
|
||||
/********************************************************************/
|
||||
public void loadDocument(String url) {
|
||||
|
||||
if (url != null) {
|
||||
try {
|
||||
svgCanvas.loadSVGDocument(url);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/********************************************************************/
|
||||
/* Pluglet Method: */
|
||||
/* Called to instruct the Pluglet instance to start. */
|
||||
/********************************************************************/
|
||||
public void start() {
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* Pluglet Method: */
|
||||
/* Called to instruct the Pluglet instance to stop and suspend
|
||||
its state. */
|
||||
/********************************************************************/
|
||||
public void stop() {
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* Pluglet Method: */
|
||||
/* Called to instruct the Pluglet instance to destroy itself. */
|
||||
/********************************************************************/
|
||||
public void destroy() {
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* Pluglet Method: */
|
||||
/* This is called to tell the Pluglet instance that the stream
|
||||
data for a SRC or DATA attribute (corresponding to an EMBED
|
||||
or OBJECT tag) is ready to be read; it is also called for a
|
||||
full-page Pluglet. */
|
||||
/********************************************************************/
|
||||
public PlugletStreamListener newStream() {
|
||||
SVGStreamListener listener = new SVGStreamListener();
|
||||
listener.setSVGPluglet(this);
|
||||
return listener;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/********************************************************************/
|
||||
/* Pluglet Method: */
|
||||
/* Called by the browser to set or change the frame
|
||||
containing the Pluglet instance. */
|
||||
/********************************************************************/
|
||||
public void setWindow(Frame frame) {
|
||||
if (frame == null) {
|
||||
return;
|
||||
}
|
||||
if (panel == null) {
|
||||
panel = new Panel();
|
||||
}
|
||||
if (svgCanvas == null) {
|
||||
svgCanvas = new JSVGCanvas(userAgent, true, true);
|
||||
|
||||
svgCanvas.setEnableZoomInteractor(true);
|
||||
svgCanvas.setEnableImageZoomInteractor(true);
|
||||
svgCanvas.setEnablePanInteractor(true);
|
||||
svgCanvas.setEnableRotateInteractor(true);
|
||||
}
|
||||
|
||||
if (peer != null) {
|
||||
PlugletTagInfo2 info = (PlugletTagInfo2)peer.getTagInfo();
|
||||
w = info.getWidth();
|
||||
h = info.getHeight();
|
||||
if (w > 0 && h > 0) {
|
||||
defaultSize = new Dimension(w, h);
|
||||
}
|
||||
}
|
||||
|
||||
JPanel p = new JPanel(new BorderLayout());
|
||||
svgCanvas.setPreferredSize(defaultSize);
|
||||
panel.add(p);
|
||||
p.add("Center", svgCanvas);
|
||||
frame.add(panel);
|
||||
frame.pack();
|
||||
frame.show();
|
||||
}
|
||||
|
||||
|
||||
/********************************************************************/
|
||||
/* Pluglet Method: */
|
||||
/* Called to instruct the Pluglet instance to print itself
|
||||
to a printer. */
|
||||
/********************************************************************/
|
||||
public void print(java.awt.print.PrinterJob printerJob) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*******************************************************************/
|
||||
/************************* UserAgent Class *************************/
|
||||
/*******************************************************************/
|
||||
/**
|
||||
* This class implements a SVG user agent.
|
||||
*/
|
||||
protected class UserAgent implements SVGUserAgent {
|
||||
|
||||
/**
|
||||
* Creates a new SVGUserAgent.
|
||||
*/
|
||||
protected UserAgent() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays an error message.
|
||||
*/
|
||||
public void displayError(String message) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays an error resulting from the specified Exception.
|
||||
*/
|
||||
public void displayError(Exception ex) {
|
||||
displayError(ex.getMessage());
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays a message in the User Agent interface.
|
||||
* The given message is typically displayed in a status bar.
|
||||
*/
|
||||
public void displayMessage(String message) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a customized the pixel to mm factor.
|
||||
*/
|
||||
public float getPixelToMM() {
|
||||
return 0.264583333333333333333f; // 96 dpi
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the language settings.
|
||||
*/
|
||||
public String getLanguages() {
|
||||
// FOR NOW: just return C
|
||||
// return userLanguages;
|
||||
return "C";
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the user stylesheet uri.
|
||||
* @return null if no user style sheet was specified.
|
||||
*/
|
||||
public String getUserStyleSheetURI() {
|
||||
// FOR NOW: just return null
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the class name of the XML parser.
|
||||
*/
|
||||
public String getXMLParserClassName() {
|
||||
// FOR NOW: hardcode parser class name
|
||||
// return application.getXMLParserClassName();
|
||||
return "org.apache.crimson.parser.XMLReaderImpl";
|
||||
}
|
||||
|
||||
/**
|
||||
* Opens a link in a new component.
|
||||
* @param uri The document URI.
|
||||
* @param newc Whether the link should be activated in a new component.
|
||||
*/
|
||||
public void openLink(String uri, boolean newc) {
|
||||
// FOR NOW: only replace the current image (ie, currently no support
|
||||
// for opening up a new browser or for changing the URL)
|
||||
// if (newc) {
|
||||
// application.openLink(uri);
|
||||
// } else {
|
||||
svgCanvas.loadSVGDocument(uri);
|
||||
// }
|
||||
}
|
||||
|
||||
/**
|
||||
* Tells whether the given extension is supported by this
|
||||
* user agent.
|
||||
*/
|
||||
public boolean supportExtension(String s) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************/
|
||||
/*********************** Pluglet Stream Listener ***********************/
|
||||
/***********************************************************************/
|
||||
class SVGStreamListener implements PlugletStreamListener {
|
||||
|
||||
SVGpluglet displayer;
|
||||
|
||||
/********************************************************************/
|
||||
/* constructor */
|
||||
/********************************************************************/
|
||||
public SVGStreamListener() {
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* PlugletStreamListener Method: */
|
||||
/* This would be called by the browser to indicate that the URL
|
||||
has started to load. */
|
||||
/********************************************************************/
|
||||
public void onStartBinding(PlugletStreamInfo streamInfo) {
|
||||
displayer.loadDocument(streamInfo.getURL());
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* setSVGPluglet */
|
||||
/********************************************************************/
|
||||
public void setSVGPluglet(SVGpluglet disp) {
|
||||
this.displayer = disp;
|
||||
}
|
||||
|
||||
|
||||
/********************************************************************/
|
||||
/* PlugletStreamListener Method: */
|
||||
/* This would be called by the browser to indicate that data is
|
||||
available in the input stream. */
|
||||
/********************************************************************/
|
||||
public void onDataAvailable(PlugletStreamInfo streamInfo, InputStream input,int length) {
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* PlugletStreamListener Method: */
|
||||
/* This would be called by the browser to indicate the
|
||||
availability of a local file name for the stream data. */
|
||||
/********************************************************************/
|
||||
public void onFileAvailable(PlugletStreamInfo plugletInfo, String fileName) {
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* PlugletStreamListener Method: */
|
||||
/* This would be called by the browser to indicate that the URL
|
||||
has finished loading. */
|
||||
/********************************************************************/
|
||||
public void onStopBinding(PlugletStreamInfo plugletInfo,int status) {
|
||||
}
|
||||
|
||||
/********************************************************************/
|
||||
/* PlugletStreamListener Method: */
|
||||
/* Returns the type of stream. */
|
||||
/********************************************************************/
|
||||
public int getStreamType() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Sun Microsystems,
|
||||
# Inc. Portions created by Sun are
|
||||
# Copyright (C) 1999 Sun Microsystems, Inc. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
|
||||
BATIK_HOME=$(MOZ_SRC)\mozilla\java\plugins\examples\SVG\extra\batik-1.0
|
||||
BATIK_CLASSPATH=$(BATIK_HOME)\lib\batik-1_0.jar
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
============================================================================
|
||||
The Apache Software License, Version 1.1
|
||||
============================================================================
|
||||
|
||||
Copyright (C) 2000 The Apache Software Foundation. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modifica-
|
||||
tion, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
3. The end-user documentation included with the redistribution, if any, must
|
||||
include the following acknowledgment: "This product includes software
|
||||
developed by the Apache Software Foundation (http://www.apache.org/)."
|
||||
Alternately, this acknowledgment may appear in the software itself, if
|
||||
and wherever such third-party acknowledgments normally appear.
|
||||
|
||||
4. The names "Batik" and "Apache Software Foundation" must not be used to
|
||||
endorse or promote products derived from this software without prior
|
||||
written permission. For written permission, please contact
|
||||
apache@apache.org.
|
||||
|
||||
5. Products derived from this software may not be called "Apache", nor may
|
||||
"Apache" appear in their name, without prior written permission of the
|
||||
Apache Software Foundation.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
|
||||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
||||
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
|
||||
DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
This software consists of voluntary contributions made by many individuals
|
||||
on behalf of the Apache Software Foundation. For more information on the
|
||||
Apache Software Foundation, please see <http://www.apache.org/>.
|
|
@ -0,0 +1,582 @@
|
|||
|
||||
This distribution includes the Mozilla Rhino binary distribution
|
||||
without code modifications.
|
||||
Source code for rhino is available on Mozilla web site:
|
||||
http://www.mozilla.org/rhino
|
||||
Rhino is licensed under the NPL (Netscape Public License) which
|
||||
is duplicated below.
|
||||
|
||||
==============================================================================
|
||||
|
||||
AMENDMENTS
|
||||
|
||||
The Netscape Public License Version 1.1 ("NPL") consists of the
|
||||
Mozilla Public License Version 1.1 with the following Amendments,
|
||||
including Exhibit A-Netscape Public License. Files identified with
|
||||
"Exhibit A-Netscape Public License" are governed by the Netscape
|
||||
Public License Version 1.1.
|
||||
|
||||
Additional Terms applicable to the Netscape Public License.
|
||||
I. Effect.
|
||||
These additional terms described in this Netscape Public
|
||||
License -- Amendments shall apply to the Mozilla Communicator
|
||||
client code and to all Covered Code under this License.
|
||||
|
||||
II. "Netscape's Branded Code" means Covered Code that Netscape
|
||||
distributes and/or permits others to distribute under one or more
|
||||
trademark(s) which are controlled by Netscape but which are not
|
||||
licensed for use under this License.
|
||||
|
||||
III. Netscape and logo.
|
||||
This License does not grant any rights to use the trademarks
|
||||
"Netscape", the "Netscape N and horizon" logo or the "Netscape
|
||||
lighthouse" logo, "Netcenter", "Gecko", "Java" or "JavaScript",
|
||||
"Smart Browsing" even if such marks are included in the Original
|
||||
Code or Modifications.
|
||||
|
||||
IV. Inability to Comply Due to Contractual Obligation.
|
||||
Prior to licensing the Original Code under this License, Netscape
|
||||
has licensed third party code for use in Netscape's Branded Code.
|
||||
To the extent that Netscape is limited contractually from making
|
||||
such third party code available under this License, Netscape may
|
||||
choose to reintegrate such code into Covered Code without being
|
||||
required to distribute such code in Source Code form, even if
|
||||
such code would otherwise be considered "Modifications" under
|
||||
this License.
|
||||
|
||||
V. Use of Modifications and Covered Code by Initial Developer.
|
||||
V.1. In General.
|
||||
The obligations of Section 3 apply to Netscape, except to
|
||||
the extent specified in this Amendment, Section V.2 and V.3.
|
||||
|
||||
V.2. Other Products.
|
||||
Netscape may include Covered Code in products other than the
|
||||
Netscape's Branded Code which are released by Netscape
|
||||
during the two (2) years following the release date of the
|
||||
Original Code, without such additional products becoming
|
||||
subject to the terms of this License, and may license such
|
||||
additional products on different terms from those contained
|
||||
in this License.
|
||||
|
||||
V.3. Alternative Licensing.
|
||||
Netscape may license the Source Code of Netscape's Branded
|
||||
Code, including Modifications incorporated therein, without
|
||||
such Netscape Branded Code becoming subject to the terms of
|
||||
this License, and may license such Netscape Branded Code on
|
||||
different terms from those contained in this License.
|
||||
|
||||
VI. Litigation.
|
||||
Notwithstanding the limitations of Section 11 above, the
|
||||
provisions regarding litigation in Section 11(a), (b) and (c) of
|
||||
the License shall apply to all disputes relating to this License.
|
||||
|
||||
EXHIBIT A-Netscape Public License.
|
||||
|
||||
"The contents of this file are subject to the Netscape Public
|
||||
License Version 1.1 (the "License"); you may not use this file
|
||||
except in compliance with the License. You may obtain a copy of
|
||||
the License at http://www.mozilla.org/NPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS
|
||||
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
implied. See the License for the specific language governing
|
||||
rights and limitations under the License.
|
||||
|
||||
The Original Code is Mozilla Communicator client code, released
|
||||
March 31, 1998.
|
||||
|
||||
The Initial Developer of the Original Code is Netscape
|
||||
Communications Corporation. Portions created by Netscape are
|
||||
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
|
||||
Alternatively, the contents of this file may be used under the
|
||||
terms of the _____ license (the "[___] License"), in which case
|
||||
the provisions of [______] License are applicable instead of
|
||||
those above. If you wish to allow use of your version of this
|
||||
file only under the terms of the [____] License and not to allow
|
||||
others to use your version of this file under the NPL, indicate
|
||||
your decision by deleting the provisions above and replace them
|
||||
with the notice and other provisions required by the [___]
|
||||
License. If you do not delete the provisions above, a recipient
|
||||
may use your version of this file under either the NPL or the
|
||||
[___] License."
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
MOZILLA PUBLIC LICENSE
|
||||
Version 1.1
|
||||
|
||||
---------------
|
||||
|
||||
1. Definitions.
|
||||
|
||||
1.0.1. "Commercial Use" means distribution or otherwise making the
|
||||
Covered Code available to a third party.
|
||||
|
||||
1.1. "Contributor" means each entity that creates or contributes to
|
||||
the creation of Modifications.
|
||||
|
||||
1.2. "Contributor Version" means the combination of the Original
|
||||
Code, prior Modifications used by a Contributor, and the Modifications
|
||||
made by that particular Contributor.
|
||||
|
||||
1.3. "Covered Code" means the Original Code or Modifications or the
|
||||
combination of the Original Code and Modifications, in each case
|
||||
including portions thereof.
|
||||
|
||||
1.4. "Electronic Distribution Mechanism" means a mechanism generally
|
||||
accepted in the software development community for the electronic
|
||||
transfer of data.
|
||||
|
||||
1.5. "Executable" means Covered Code in any form other than Source
|
||||
Code.
|
||||
|
||||
1.6. "Initial Developer" means the individual or entity identified
|
||||
as the Initial Developer in the Source Code notice required by Exhibit
|
||||
A.
|
||||
|
||||
1.7. "Larger Work" means a work which combines Covered Code or
|
||||
portions thereof with code not governed by the terms of this License.
|
||||
|
||||
1.8. "License" means this document.
|
||||
|
||||
1.8.1. "Licensable" means having the right to grant, to the maximum
|
||||
extent possible, whether at the time of the initial grant or
|
||||
subsequently acquired, any and all of the rights conveyed herein.
|
||||
|
||||
1.9. "Modifications" means any addition to or deletion from the
|
||||
substance or structure of either the Original Code or any previous
|
||||
Modifications. When Covered Code is released as a series of files, a
|
||||
Modification is:
|
||||
A. Any addition to or deletion from the contents of a file
|
||||
containing Original Code or previous Modifications.
|
||||
|
||||
B. Any new file that contains any part of the Original Code or
|
||||
previous Modifications.
|
||||
|
||||
1.10. "Original Code" means Source Code of computer software code
|
||||
which is described in the Source Code notice required by Exhibit A as
|
||||
Original Code, and which, at the time of its release under this
|
||||
License is not already Covered Code governed by this License.
|
||||
|
||||
1.10.1. "Patent Claims" means any patent claim(s), now owned or
|
||||
hereafter acquired, including without limitation, method, process,
|
||||
and apparatus claims, in any patent Licensable by grantor.
|
||||
|
||||
1.11. "Source Code" means the preferred form of the Covered Code for
|
||||
making modifications to it, including all modules it contains, plus
|
||||
any associated interface definition files, scripts used to control
|
||||
compilation and installation of an Executable, or source code
|
||||
differential comparisons against either the Original Code or another
|
||||
well known, available Covered Code of the Contributor's choice. The
|
||||
Source Code can be in a compressed or archival form, provided the
|
||||
appropriate decompression or de-archiving software is widely available
|
||||
for no charge.
|
||||
|
||||
1.12. "You" (or "Your") means an individual or a legal entity
|
||||
exercising rights under, and complying with all of the terms of, this
|
||||
License or a future version of this License issued under Section 6.1.
|
||||
For legal entities, "You" includes any entity which controls, is
|
||||
controlled by, or is under common control with You. For purposes of
|
||||
this definition, "control" means (a) the power, direct or indirect,
|
||||
to cause the direction or management of such entity, whether by
|
||||
contract or otherwise, or (b) ownership of more than fifty percent
|
||||
(50%) of the outstanding shares or beneficial ownership of such
|
||||
entity.
|
||||
|
||||
2. Source Code License.
|
||||
|
||||
2.1. The Initial Developer Grant.
|
||||
The Initial Developer hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license, subject to third party intellectual property
|
||||
claims:
|
||||
(a) under intellectual property rights (other than patent or
|
||||
trademark) Licensable by Initial Developer to use, reproduce,
|
||||
modify, display, perform, sublicense and distribute the Original
|
||||
Code (or portions thereof) with or without Modifications, and/or
|
||||
as part of a Larger Work; and
|
||||
|
||||
(b) under Patents Claims infringed by the making, using or
|
||||
selling of Original Code, to make, have made, use, practice,
|
||||
sell, and offer for sale, and/or otherwise dispose of the
|
||||
Original Code (or portions thereof).
|
||||
|
||||
(c) the licenses granted in this Section 2.1(a) and (b) are
|
||||
effective on the date Initial Developer first distributes
|
||||
Original Code under the terms of this License.
|
||||
|
||||
(d) Notwithstanding Section 2.1(b) above, no patent license is
|
||||
granted: 1) for code that You delete from the Original Code; 2)
|
||||
separate from the Original Code; or 3) for infringements caused
|
||||
by: i) the modification of the Original Code or ii) the
|
||||
combination of the Original Code with other software or devices.
|
||||
|
||||
2.2. Contributor Grant.
|
||||
Subject to third party intellectual property claims, each Contributor
|
||||
hereby grants You a world-wide, royalty-free, non-exclusive license
|
||||
|
||||
(a) under intellectual property rights (other than patent or
|
||||
trademark) Licensable by Contributor, to use, reproduce, modify,
|
||||
display, perform, sublicense and distribute the Modifications
|
||||
created by such Contributor (or portions thereof) either on an
|
||||
unmodified basis, with other Modifications, as Covered Code
|
||||
and/or as part of a Larger Work; and
|
||||
|
||||
(b) under Patent Claims infringed by the making, using, or
|
||||
selling of Modifications made by that Contributor either alone
|
||||
and/or in combination with its Contributor Version (or portions
|
||||
of such combination), to make, use, sell, offer for sale, have
|
||||
made, and/or otherwise dispose of: 1) Modifications made by that
|
||||
Contributor (or portions thereof); and 2) the combination of
|
||||
Modifications made by that Contributor with its Contributor
|
||||
Version (or portions of such combination).
|
||||
|
||||
(c) the licenses granted in Sections 2.2(a) and 2.2(b) are
|
||||
effective on the date Contributor first makes Commercial Use of
|
||||
the Covered Code.
|
||||
|
||||
(d) Notwithstanding Section 2.2(b) above, no patent license is
|
||||
granted: 1) for any code that Contributor has deleted from the
|
||||
Contributor Version; 2) separate from the Contributor Version;
|
||||
3) for infringements caused by: i) third party modifications of
|
||||
Contributor Version or ii) the combination of Modifications made
|
||||
by that Contributor with other software (except as part of the
|
||||
Contributor Version) or other devices; or 4) under Patent Claims
|
||||
infringed by Covered Code in the absence of Modifications made by
|
||||
that Contributor.
|
||||
|
||||
3. Distribution Obligations.
|
||||
|
||||
3.1. Application of License.
|
||||
The Modifications which You create or to which You contribute are
|
||||
governed by the terms of this License, including without limitation
|
||||
Section 2.2. The Source Code version of Covered Code may be
|
||||
distributed only under the terms of this License or a future version
|
||||
of this License released under Section 6.1, and You must include a
|
||||
copy of this License with every copy of the Source Code You
|
||||
distribute. You may not offer or impose any terms on any Source Code
|
||||
version that alters or restricts the applicable version of this
|
||||
License or the recipients' rights hereunder. However, You may include
|
||||
an additional document offering the additional rights described in
|
||||
Section 3.5.
|
||||
|
||||
3.2. Availability of Source Code.
|
||||
Any Modification which You create or to which You contribute must be
|
||||
made available in Source Code form under the terms of this License
|
||||
either on the same media as an Executable version or via an accepted
|
||||
Electronic Distribution Mechanism to anyone to whom you made an
|
||||
Executable version available; and if made available via Electronic
|
||||
Distribution Mechanism, must remain available for at least twelve (12)
|
||||
months after the date it initially became available, or at least six
|
||||
(6) months after a subsequent version of that particular Modification
|
||||
has been made available to such recipients. You are responsible for
|
||||
ensuring that the Source Code version remains available even if the
|
||||
Electronic Distribution Mechanism is maintained by a third party.
|
||||
|
||||
3.3. Description of Modifications.
|
||||
You must cause all Covered Code to which You contribute to contain a
|
||||
file documenting the changes You made to create that Covered Code and
|
||||
the date of any change. You must include a prominent statement that
|
||||
the Modification is derived, directly or indirectly, from Original
|
||||
Code provided by the Initial Developer and including the name of the
|
||||
Initial Developer in (a) the Source Code, and (b) in any notice in an
|
||||
Executable version or related documentation in which You describe the
|
||||
origin or ownership of the Covered Code.
|
||||
|
||||
3.4. Intellectual Property Matters
|
||||
(a) Third Party Claims.
|
||||
If Contributor has knowledge that a license under a third party's
|
||||
intellectual property rights is required to exercise the rights
|
||||
granted by such Contributor under Sections 2.1 or 2.2,
|
||||
Contributor must include a text file with the Source Code
|
||||
distribution titled "LEGAL" which describes the claim and the
|
||||
party making the claim in sufficient detail that a recipient will
|
||||
know whom to contact. If Contributor obtains such knowledge after
|
||||
the Modification is made available as described in Section 3.2,
|
||||
Contributor shall promptly modify the LEGAL file in all copies
|
||||
Contributor makes available thereafter and shall take other steps
|
||||
(such as notifying appropriate mailing lists or newsgroups)
|
||||
reasonably calculated to inform those who received the Covered
|
||||
Code that new knowledge has been obtained.
|
||||
|
||||
(b) Contributor APIs.
|
||||
If Contributor's Modifications include an application programming
|
||||
interface and Contributor has knowledge of patent licenses which
|
||||
are reasonably necessary to implement that API, Contributor must
|
||||
also include this information in the LEGAL file.
|
||||
|
||||
(c) Representations.
|
||||
Contributor represents that, except as disclosed pursuant to
|
||||
Section 3.4(a) above, Contributor believes that Contributor's
|
||||
Modifications are Contributor's original creation(s) and/or
|
||||
Contributor has sufficient rights to grant the rights conveyed by
|
||||
this License.
|
||||
|
||||
3.5. Required Notices.
|
||||
You must duplicate the notice in Exhibit A in each file of the Source
|
||||
Code. If it is not possible to put such notice in a particular Source
|
||||
Code file due to its structure, then You must include such notice in a
|
||||
location (such as a relevant directory) where a user would be likely
|
||||
to look for such a notice. If You created one or more Modification(s)
|
||||
You may add your name as a Contributor to the notice described in
|
||||
Exhibit A. You must also duplicate this License in any documentation
|
||||
for the Source Code where You describe recipients' rights or ownership
|
||||
rights relating to Covered Code. You may choose to offer, and to
|
||||
charge a fee for, warranty, support, indemnity or liability
|
||||
obligations to one or more recipients of Covered Code. However, You
|
||||
may do so only on Your own behalf, and not on behalf of the Initial
|
||||
Developer or any Contributor. You must make it absolutely clear than
|
||||
any such warranty, support, indemnity or liability obligation is
|
||||
offered by You alone, and You hereby agree to indemnify the Initial
|
||||
Developer and every Contributor for any liability incurred by the
|
||||
Initial Developer or such Contributor as a result of warranty,
|
||||
support, indemnity or liability terms You offer.
|
||||
|
||||
3.6. Distribution of Executable Versions.
|
||||
You may distribute Covered Code in Executable form only if the
|
||||
requirements of Section 3.1-3.5 have been met for that Covered Code,
|
||||
and if You include a notice stating that the Source Code version of
|
||||
the Covered Code is available under the terms of this License,
|
||||
including a description of how and where You have fulfilled the
|
||||
obligations of Section 3.2. The notice must be conspicuously included
|
||||
in any notice in an Executable version, related documentation or
|
||||
collateral in which You describe recipients' rights relating to the
|
||||
Covered Code. You may distribute the Executable version of Covered
|
||||
Code or ownership rights under a license of Your choice, which may
|
||||
contain terms different from this License, provided that You are in
|
||||
compliance with the terms of this License and that the license for the
|
||||
Executable version does not attempt to limit or alter the recipient's
|
||||
rights in the Source Code version from the rights set forth in this
|
||||
License. If You distribute the Executable version under a different
|
||||
license You must make it absolutely clear that any terms which differ
|
||||
from this License are offered by You alone, not by the Initial
|
||||
Developer or any Contributor. You hereby agree to indemnify the
|
||||
Initial Developer and every Contributor for any liability incurred by
|
||||
the Initial Developer or such Contributor as a result of any such
|
||||
terms You offer.
|
||||
|
||||
3.7. Larger Works.
|
||||
You may create a Larger Work by combining Covered Code with other code
|
||||
not governed by the terms of this License and distribute the Larger
|
||||
Work as a single product. In such a case, You must make sure the
|
||||
requirements of this License are fulfilled for the Covered Code.
|
||||
|
||||
4. Inability to Comply Due to Statute or Regulation.
|
||||
|
||||
If it is impossible for You to comply with any of the terms of this
|
||||
License with respect to some or all of the Covered Code due to
|
||||
statute, judicial order, or regulation then You must: (a) comply with
|
||||
the terms of this License to the maximum extent possible; and (b)
|
||||
describe the limitations and the code they affect. Such description
|
||||
must be included in the LEGAL file described in Section 3.4 and must
|
||||
be included with all distributions of the Source Code. Except to the
|
||||
extent prohibited by statute or regulation, such description must be
|
||||
sufficiently detailed for a recipient of ordinary skill to be able to
|
||||
understand it.
|
||||
|
||||
5. Application of this License.
|
||||
|
||||
This License applies to code to which the Initial Developer has
|
||||
attached the notice in Exhibit A and to related Covered Code.
|
||||
|
||||
6. Versions of the License.
|
||||
|
||||
6.1. New Versions.
|
||||
Netscape Communications Corporation ("Netscape") may publish revised
|
||||
and/or new versions of the License from time to time. Each version
|
||||
will be given a distinguishing version number.
|
||||
|
||||
6.2. Effect of New Versions.
|
||||
Once Covered Code has been published under a particular version of the
|
||||
License, You may always continue to use it under the terms of that
|
||||
version. You may also choose to use such Covered Code under the terms
|
||||
of any subsequent version of the License published by Netscape. No one
|
||||
other than Netscape has the right to modify the terms applicable to
|
||||
Covered Code created under this License.
|
||||
|
||||
6.3. Derivative Works.
|
||||
If You create or use a modified version of this License (which you may
|
||||
only do in order to apply it to code which is not already Covered Code
|
||||
governed by this License), You must (a) rename Your license so that
|
||||
the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
|
||||
"MPL", "NPL" or any confusingly similar phrase do not appear in your
|
||||
license (except to note that your license differs from this License)
|
||||
and (b) otherwise make it clear that Your version of the license
|
||||
contains terms which differ from the Mozilla Public License and
|
||||
Netscape Public License. (Filling in the name of the Initial
|
||||
Developer, Original Code or Contributor in the notice described in
|
||||
Exhibit A shall not of themselves be deemed to be modifications of
|
||||
this License.)
|
||||
|
||||
7. DISCLAIMER OF WARRANTY.
|
||||
|
||||
COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
||||
WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
|
||||
DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
|
||||
THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
|
||||
IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
|
||||
YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
|
||||
COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
|
||||
OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
|
||||
ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
|
||||
|
||||
8. TERMINATION.
|
||||
|
||||
8.1. This License and the rights granted hereunder will terminate
|
||||
automatically if You fail to comply with terms herein and fail to cure
|
||||
such breach within 30 days of becoming aware of the breach. All
|
||||
sublicenses to the Covered Code which are properly granted shall
|
||||
survive any termination of this License. Provisions which, by their
|
||||
nature, must remain in effect beyond the termination of this License
|
||||
shall survive.
|
||||
|
||||
8.2. If You initiate litigation by asserting a patent infringement
|
||||
claim (excluding declatory judgment actions) against Initial Developer
|
||||
or a Contributor (the Initial Developer or Contributor against whom
|
||||
You file such action is referred to as "Participant") alleging that:
|
||||
|
||||
(a) such Participant's Contributor Version directly or indirectly
|
||||
infringes any patent, then any and all rights granted by such
|
||||
Participant to You under Sections 2.1 and/or 2.2 of this License
|
||||
shall, upon 60 days notice from Participant terminate prospectively,
|
||||
unless if within 60 days after receipt of notice You either: (i)
|
||||
agree in writing to pay Participant a mutually agreeable reasonable
|
||||
royalty for Your past and future use of Modifications made by such
|
||||
Participant, or (ii) withdraw Your litigation claim with respect to
|
||||
the Contributor Version against such Participant. If within 60 days
|
||||
of notice, a reasonable royalty and payment arrangement are not
|
||||
mutually agreed upon in writing by the parties or the litigation claim
|
||||
is not withdrawn, the rights granted by Participant to You under
|
||||
Sections 2.1 and/or 2.2 automatically terminate at the expiration of
|
||||
the 60 day notice period specified above.
|
||||
|
||||
(b) any software, hardware, or device, other than such Participant's
|
||||
Contributor Version, directly or indirectly infringes any patent, then
|
||||
any rights granted to You by such Participant under Sections 2.1(b)
|
||||
and 2.2(b) are revoked effective as of the date You first made, used,
|
||||
sold, distributed, or had made, Modifications made by that
|
||||
Participant.
|
||||
|
||||
8.3. If You assert a patent infringement claim against Participant
|
||||
alleging that such Participant's Contributor Version directly or
|
||||
indirectly infringes any patent where such claim is resolved (such as
|
||||
by license or settlement) prior to the initiation of patent
|
||||
infringement litigation, then the reasonable value of the licenses
|
||||
granted by such Participant under Sections 2.1 or 2.2 shall be taken
|
||||
into account in determining the amount or value of any payment or
|
||||
license.
|
||||
|
||||
8.4. In the event of termination under Sections 8.1 or 8.2 above,
|
||||
all end user license agreements (excluding distributors and resellers)
|
||||
which have been validly granted by You or any distributor hereunder
|
||||
prior to termination shall survive termination.
|
||||
|
||||
9. LIMITATION OF LIABILITY.
|
||||
|
||||
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
|
||||
(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
|
||||
DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
|
||||
OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
|
||||
ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
|
||||
CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
|
||||
WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
|
||||
COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
|
||||
INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
|
||||
LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
|
||||
RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
|
||||
PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
|
||||
EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
|
||||
THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
|
||||
|
||||
10. U.S. GOVERNMENT END USERS.
|
||||
|
||||
The Covered Code is a "commercial item," as that term is defined in
|
||||
48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
|
||||
software" and "commercial computer software documentation," as such
|
||||
terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
|
||||
C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
|
||||
all U.S. Government End Users acquire Covered Code with only those
|
||||
rights set forth herein.
|
||||
|
||||
11. MISCELLANEOUS.
|
||||
|
||||
This License represents the complete agreement concerning subject
|
||||
matter hereof. If any provision of this License is held to be
|
||||
unenforceable, such provision shall be reformed only to the extent
|
||||
necessary to make it enforceable. This License shall be governed by
|
||||
California law provisions (except to the extent applicable law, if
|
||||
any, provides otherwise), excluding its conflict-of-law provisions.
|
||||
With respect to disputes in which at least one party is a citizen of,
|
||||
or an entity chartered or registered to do business in the United
|
||||
States of America, any litigation relating to this License shall be
|
||||
subject to the jurisdiction of the Federal Courts of the Northern
|
||||
District of California, with venue lying in Santa Clara County,
|
||||
California, with the losing party responsible for costs, including
|
||||
without limitation, court costs and reasonable attorneys' fees and
|
||||
expenses. The application of the United Nations Convention on
|
||||
Contracts for the International Sale of Goods is expressly excluded.
|
||||
Any law or regulation which provides that the language of a contract
|
||||
shall be construed against the drafter shall not apply to this
|
||||
License.
|
||||
|
||||
12. RESPONSIBILITY FOR CLAIMS.
|
||||
|
||||
As between Initial Developer and the Contributors, each party is
|
||||
responsible for claims and damages arising, directly or indirectly,
|
||||
out of its utilization of rights under this License and You agree to
|
||||
work with Initial Developer and Contributors to distribute such
|
||||
responsibility on an equitable basis. Nothing herein is intended or
|
||||
shall be deemed to constitute any admission of liability.
|
||||
|
||||
13. MULTIPLE-LICENSED CODE.
|
||||
|
||||
Initial Developer may designate portions of the Covered Code as
|
||||
"Multiple-Licensed". "Multiple-Licensed" means that the Initial
|
||||
Developer permits you to utilize portions of the Covered Code under
|
||||
Your choice of the NPL or the alternative licenses, if any, specified
|
||||
by the Initial Developer in the file described in Exhibit A.
|
||||
|
||||
EXHIBIT A -Mozilla Public License.
|
||||
|
||||
``The contents of this file are subject to the Mozilla Public License
|
||||
Version 1.1 (the "License"); you may not use this file except in
|
||||
compliance with the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS"
|
||||
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
License for the specific language governing rights and limitations
|
||||
under the License.
|
||||
|
||||
The Original Code is ______________________________________.
|
||||
|
||||
The Initial Developer of the Original Code is ________________________.
|
||||
Portions created by ______________________ are Copyright (C) ______
|
||||
_______________________. All Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms
|
||||
of the _____ license (the "[___] License"), in which case the
|
||||
provisions of [______] License are applicable instead of those
|
||||
above. If you wish to allow use of your version of this file only
|
||||
under the terms of the [____] License and not to allow others to use
|
||||
your version of this file under the MPL, indicate your decision by
|
||||
deleting the provisions above and replace them with the notice and
|
||||
other provisions required by the [___] License. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file
|
||||
under either the MPL or the [___] License."
|
||||
|
||||
[NOTE: The text of this Exhibit A may differ slightly from the text of
|
||||
the notices in the Source Code files of the Original Code. You should
|
||||
use the text of this Exhibit A rather than the text found in the
|
||||
Original Code Source Code for Your Modifications.]
|
||||
|
||||
|
||||
==============================================================================
|
||||
|
||||
|
|
@ -0,0 +1,71 @@
|
|||
|
||||
A P A C H E B A T I K
|
||||
|
||||
1.0 Beta
|
||||
|
||||
|
||||
What is it?
|
||||
-----------
|
||||
|
||||
Batik is a Java based toolkit for applications which handle
|
||||
images in the Scalable Vector Graphics (SVG) format for
|
||||
various purposes, such as viewing, generation or
|
||||
manipulation.
|
||||
|
||||
The project's ambition is to give developers a set of core
|
||||
modules which can be used together or individually to
|
||||
support specific SVG solutions. Examples of modules are
|
||||
an SVG parser, an SVG generator and an SVG DOM
|
||||
implementations. Another ambition of the Batik project is to
|
||||
make it highly extensible (for example, Batik allows the
|
||||
developer to handle custom SVG tags). Even though the
|
||||
goal of the project is to provide a set of core modules, one
|
||||
of the deliveries is a full fledged SVG Viewer
|
||||
implementation which validates the various modules and
|
||||
their inter-operability.
|
||||
|
||||
In a nutshell, Batik provides building blocks that developers
|
||||
can assemble in various ways in their Java technology
|
||||
applications to generate, parse, view or convert SVG
|
||||
contents. For example, Batik contains a Swing component
|
||||
that can add SVG viewing capability to all Java technology
|
||||
applications. Batik can also be used to generate SVG on a
|
||||
client or on a server, and Batik can convert SVG content
|
||||
into other formats such as JPEG or PNG. Batik's goal is to
|
||||
make it easy for application developers to handle SVG
|
||||
content for various purposes, client-side or server-side.
|
||||
|
||||
|
||||
Where is it?
|
||||
------------
|
||||
|
||||
The home page for the Apache Batik project can be found in the Apache XML
|
||||
Project web site (http://xml.apache.org/batik/). There you also find
|
||||
information on how to download the latest release as well as all the other
|
||||
information you might need regarding this project.
|
||||
|
||||
|
||||
Requirements
|
||||
------------
|
||||
|
||||
o A Java 1.2 or later compatible virtual machine for your operating system.
|
||||
|
||||
|
||||
Installation Instructions and Documentation
|
||||
-------------------------------------------
|
||||
|
||||
Read the Install page at http://xml.apache.org/batik for the installation instructions.
|
||||
|
||||
Look for the most updated documentation on the Apache Batik web site under
|
||||
the Apache XML Project (http://xml.apache.org/batik/).
|
||||
|
||||
|
||||
Licensing and legal issues
|
||||
--------------------------
|
||||
|
||||
For legal and licensing issues, please read the LICENSE file.
|
||||
|
||||
Thanks for using Apache Batik.
|
||||
|
||||
The Apache XML Project
|
||||
http://xml.apache.org/
|
|
@ -0,0 +1,2 @@
|
|||
MIMEDescription: image/svg+xml:svg:Pluglet SVGPlugletFactory
|
||||
Pluglet-Class: SVGPlugletFactory
|
|
@ -0,0 +1,2 @@
|
|||
set CLASSPATH=;D:\Projects\0_9_1_BRANCH\mozilla\java\plugins\examples\SVG\extra\batik-1.0\lib\batik-1_0.jar;D:\Projects\0_9_1_BRANCH\mozilla\dist\classes;D:\Projects\blackwood\wf_private.jar;C:\JMF2.1.1\lib\customizer.jar;C:\JMF2.1.1\lib\jmf.jar;C:\JMF2.1.1\lib\jmf.properties;C:\JMF2.1.1\lib\mediaplayer.jar;C:\JMF2.1.1\lib\multiplayer.jar;D:\Projects\0_9_1_BRANCH\mozilla\dist\classes
|
||||
D:\Projects\0_9_1_BRANCH\mozilla\dist\win32_d.obj\bin\mozilla "file:///D:\Projects\0_9_1_BRANCH/mozilla/java/plugins/examples/SVG/samples/samples.html"
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>GVT</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>GVT</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/GVT.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:22:45 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>anne</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>anne</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/anne.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:23:52 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>asf-logo</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>asf-logo</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/asf-logo.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:21 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>authors</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>authors</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/authors.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:28 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>barChart</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>barChart</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/barChart.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:30 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>batik3D</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>batik3D</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/batik3D.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:31 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>batik70</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>batik70</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/batik70.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:32 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>batikBatik</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>batikBatik</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/batikBatik.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:33 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>batikFX</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>batikFX</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/batikFX.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:35 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>batikLogo</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>batikLogo</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/batikLogo.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:36 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>batikMusic</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>batikMusic</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/batikMusic.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Thu May 17 18:50:14 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>batikYin</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>batikYin</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/batikYin.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:37 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>chessboard</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>chessboard</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/chessboard.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:38 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>gradients</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>gradients</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/gradients.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:39 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>henryV</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>henryV</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/henryV.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:40 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>logoShadowOffset</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>logoShadowOffset</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/logoShadowOffset.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:42 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>logoTexture</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>logoTexture</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/logoTexture.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:43 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>moonPhases</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>moonPhases</h1>
|
||||
|
||||
<EMBED type="image/svg+xml" name="svg" SRC="samples/moonPhases.svg" width="450" height="500">
|
||||
|
||||
|
||||
<hr>
|
||||
<address><a href="mailto:Ed Burns <ed.burnsREMOVE_THIS@sun.com>">Ed Burns</a></address>
|
||||
<!-- Created: Thu May 17 18:49:43 PDT 2001 -->
|
||||
<!-- hhmts start -->
|
||||
Last modified: Fri May 18 15:25:44 PDT 2001
|
||||
<!-- hhmts end -->
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,66 @@
|
|||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Scalable Vector Graphics Pluglet</TITLE>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
|
||||
<H3>Scalable Vector Graphics Demos</H3>
|
||||
|
||||
<CODE><PRE>
|
||||
Pan Shift-Left mouse button
|
||||
Select region to zoom in: Ctrl-Left mouse button
|
||||
Zoom in/out whole image: Shift-Right mouse button
|
||||
Rotate image: Ctrl-Right mouse button
|
||||
</PRE></CODE>
|
||||
|
||||
<UL>
|
||||
|
||||
<LI><P><A HREF="GVT.html">GVT</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="anne.html">anne</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="asf-logo.html">asf-logo</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="authors.html">authors</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="barChart.html">barChart</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="batik3D.html">batik3D</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="batik70.html">batik70</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="batikBatik.html">batikBatik</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="batikFX.html">batikFX</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="batikLogo.html">batikLogo</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="batikMusic.html">batikMusic</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="batikYin.html">batikYin</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="chessboard.html">chessboard</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="gradients.html">gradients</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="henryV.html">henryV</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="logoShadowOffset.html">logoShadowOffset</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="logoTexture.html">logoTexture</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="moonPhases.html">moonPhases</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="sizeOfSun.html">sizeOfSun</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="test.html">test</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="textRotate.html">textRotate</A>
|
||||
</P></LI>
|
||||
<LI><P><A HREF="textRotateShadows.html">textRotateShadows</A>
|
||||
</P></LI>
|
||||
|
||||
</UL>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
|
@ -0,0 +1,126 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Top level architecture diagram -->
|
||||
<!-- -->
|
||||
<!-- @author vincent.hardy@eng.sun.com -->
|
||||
<!-- @version $Id: GVT.svg,v 1.1 2001/06/10 01:46:29 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<svg width="450" height="500" viewBox="0 0 450 500">
|
||||
|
||||
<defs>
|
||||
<path id="G" transform="translate(-38.28, -32.5)" d="M48,47.5H36.875V30.75h39.5c0.064,1.465,0.113,2.555,0.146,3.27c0.031,0.715,0.049,1.35,0.049,1.902c0,4.098-0.393,7.838-1.174,11.221s-1.922,6.375-3.42,8.977c-3.648,6.115-8.357,10.791-14.123,14.027
|
||||
C52.088,73.381,45.539,75,38.211,75c-5.408,0-10.434-0.904-15.074-2.709c-4.643-1.807-8.756-4.469-12.338-7.984c-3.551-3.516-6.238-7.535-8.063-12.061C0.912,47.723,0,42.807,0,37.5c0-5.338,0.92-10.277,2.76-14.818s4.521-8.537,8.041-11.988
|
||||
c3.551-3.482,7.656-6.135,12.316-7.959C27.777,0.912,32.811,0,38.221,0c7.33,0,13.846,1.605,19.549,4.814s10.363,7.908,13.98,14.096l-22.967,8.465c-1.205-1.973-2.654-3.445-4.346-4.418c-1.693-0.971-3.631-1.457-5.811-1.457c-3.811,0-6.848,1.447-9.109,4.338
|
||||
c-2.262,2.893-3.393,6.775-3.393,11.648c0,5.037,1.139,8.945,3.418,11.723c2.277,2.777,5.5,4.166,9.668,4.166c2.473,0,4.482-0.518,6.029-1.553S47.707,49.346,48,47.5z"/>
|
||||
<path id="V" style="stroke:none;" transform="translate(-39.1625, -35.75)" d="M27.271,71.5L0,0h27.807l7.566,25.885c1.105,3.777,1.928,6.969,2.465,9.574c0.535,2.605,0.885,5.047,1.049,7.324h0.488c0.324-2.408,0.789-4.947,1.391-7.617s1.375-5.568,2.32-8.695L51.09,0h27.285L51.188,71.5H27.271z"/>
|
||||
<path id="T" style="stroke:none;" transform="translate(-27.0625, -35.75)" d="M14.25,71.5V23.375H0V0h54.125v23.375h-14.25V71.5H14.25z"/>
|
||||
|
||||
<filter id="dropShadow" width="1.5" height="1.5">
|
||||
<feGaussianBlur in="SourceGraphic" stdDeviation="4 4"/>
|
||||
<feOffset dx="4" dy="4" />
|
||||
</filter>
|
||||
|
||||
<filter id="emboss" >
|
||||
<feGaussianBlur in="SourceAlpha" stdDeviation="6" result="blur"/>
|
||||
<feSpecularLighting in="blur" surfaceScale="-3"
|
||||
specularConstant="1" specularExponent="20"
|
||||
lighting-color="white" result="spec">
|
||||
<feDistantLight azimuth="45" elevation="60" />
|
||||
</feSpecularLighting>
|
||||
|
||||
<feComposite in="spec" in2="SourceGraphic"
|
||||
operator="in" result="specOut"/>
|
||||
<feComposite in="SourceGraphic" in2="specOut" operator="arithmetic"
|
||||
k1="0" k2="1" k3="1" k4="0" result="litPaint2"/>
|
||||
</filter>
|
||||
|
||||
<radialGradient id="redGradient" cx="0" cy="0" r="2" fx="-0.2" fy="-0.2" >
|
||||
<stop offset="0" stop-color="red" />
|
||||
<stop offset="1" stop-color="black" />
|
||||
</radialGradient>
|
||||
|
||||
<radialGradient id="greenGradient" cx="0" cy="0" r="2" fx="-0.2" fy="-0.2" >
|
||||
<stop offset="0" stop-color="rgb(60, 255, 160)" />
|
||||
<stop offset="1" stop-color="black" />
|
||||
</radialGradient>
|
||||
|
||||
<radialGradient id="blueGradient" cx="1" cy="1" r="2">
|
||||
<stop offset="0" stop-color="rgb(160, 60, 255)" />
|
||||
<stop offset="1" stop-color="black" />
|
||||
</radialGradient>
|
||||
|
||||
<radialGradient id="goldGradient" cx="1" cy="1" r="2">
|
||||
<stop offset="0" stop-color="gold" />
|
||||
<stop offset="1" stop-color="black" />
|
||||
</radialGradient>
|
||||
</defs>
|
||||
|
||||
<g fill="url(#redGradient)">
|
||||
<rect width="150" height="125" />
|
||||
<rect width="150" height="125" x="150" />
|
||||
<rect width="150" height="125" x="300" />
|
||||
<g transform="translate(75, 62.5)" fill="gold">
|
||||
<use xlink:href="#G" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#G" filter="url(#emboss)"/>
|
||||
<use xlink:href="#V" x="150" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#V" x="150" filter="url(#emboss)"/>
|
||||
<use xlink:href="#T" x="300" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#T" x="300" filter="url(#emboss)"/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<g fill="url(#greenGradient)" transform="translate(0, 125)">
|
||||
<rect width="150" height="125" />
|
||||
<rect width="150" height="125" x="150" />
|
||||
<rect width="150" height="125" x="300" />
|
||||
<g transform="translate(75, 62.5)" fill="rgb(130, 30, 225)">
|
||||
<use xlink:href="#G" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#G" filter="url(#emboss)"/>
|
||||
<use xlink:href="#V" x="150" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#V" x="150" filter="url(#emboss)"/>
|
||||
<use xlink:href="#T" x="300" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#T" x="300" filter="url(#emboss)"/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<g fill="url(#blueGradient)" transform="translate(0, 250)">
|
||||
<rect width="150" height="125" />
|
||||
<rect width="150" height="125" x="150" />
|
||||
<rect width="150" height="125" x="300" />
|
||||
<g transform="translate(75, 62.5)" fill="rgb(10, 205, 110)">
|
||||
<use xlink:href="#G" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#G" filter="url(#emboss)"/>
|
||||
<use xlink:href="#V" x="150" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#V" x="150" filter="url(#emboss)"/>
|
||||
<use xlink:href="#T" x="300" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#T" x="300" filter="url(#emboss)"/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<g fill="url(#goldGradient)" transform="translate(0, 375)">
|
||||
<rect width="150" height="125" />
|
||||
<rect width="150" height="125" x="150" />
|
||||
<rect width="150" height="125" x="300" />
|
||||
<g transform="translate(75, 62.5)" fill="rgb(220, 0, 0)">
|
||||
<use xlink:href="#G" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#G" filter="url(#emboss)"/>
|
||||
<use xlink:href="#V" x="150" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#V" x="150" filter="url(#emboss)"/>
|
||||
<use xlink:href="#T" x="300" fill="black" filter="url(#dropShadow)"/>
|
||||
<use xlink:href="#T" x="300" filter="url(#emboss)"/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
</svg>
|
|
@ -0,0 +1,694 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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 2001/06/10 01:46:28 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<svg 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" transform="scale(1.5, 1.5)">
|
||||
<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>
|
|
@ -0,0 +1,749 @@
|
|||
<!-- ========================================================================= -->
|
||||
<!-- 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: asf-logo.svg,v 1.1 2001/06/10 01:46:28 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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 id="body" xml:space="preserve" width="168.743" height="51.066">
|
||||
<g id="Feather_x0020_shadow">
|
||||
<path style="&st0;" d="M0.281,44.304c13.561-1.867,63.613-4.392,85.943-8.05c17.961-2.937,35.502-8.285,52.242-13.9c4.328-1.453,11.991-4.434,16.896-7.07c3.104-2.373,10.571-5.889,12.606-9.222c-32.45,15.407-45.513,19.649-83.582,27.354
|
||||
c-15.436,3.169-71.617,7.72-84.105,10.888z"/>
|
||||
<path style="&st6;" d="M48.301,50.277l1.454,0.498l1.418,0.119l1.417-0.23l1.417-0.574l1.379-0.766l1.38-0.994l1.305-1.145l1.301-1.227l1.228-1.26l1.149-1.266l1.111-1.225l1.035-1.148l0.958-0.957l0.881-0.763L66.5,38.84l0.689-0.228l-0.576,0.036l-0.611,0.038
|
||||
l-0.689,0.077l-0.688,0.074l-0.69,0.078l-0.689,0.076l-0.689,0.038l-0.612,0.076l-0.957,0.88l-0.921,0.841l-0.805,0.842l-0.729,0.844l-0.727,0.801l-0.688,0.805l-0.652,0.764l-0.691,0.729l-0.688,0.727l-0.729,0.65l-0.767,0.65l-0.882,0.611l-0.919,0.576
|
||||
l-1.034,0.535l-1.149,0.496l-1.302,0.42z"/>
|
||||
<path style="&st6;" d="M43.551,50.082l1.688,0.271l1.569,0.037l1.455-0.15l1.377-0.344l1.265-0.535l1.151-0.652l1.148-0.766l1.034-0.879l1.035-0.918l0.957-0.994l0.959-1.072l0.921-1.033l0.956-1.033l0.96-1.033l0.958-0.955l0.995-0.881l-0.381,0.037h-0.423
|
||||
l-0.384,0.039l-0.419,0.037l-0.424,0.037l-0.421,0.078l-0.42,0.035l-0.42,0.041l-0.421,0.037l-0.461,0.037l-0.422,0.078l-0.459,0.037l-0.459,0.037l-0.46,0.037h-0.46l-0.459,0.039l-0.347,0.535l-0.42,0.652l-0.537,0.764l-0.575,0.805l-0.69,0.881l-0.729,0.879
|
||||
l-0.766,0.918l-0.805,0.879l-0.844,0.844l-0.84,0.805l-0.885,0.727l-0.842,0.611l-0.844,0.496l-0.843,0.346l-0.804,0.189h-0.768z"/>
|
||||
<path style="&st6;" d="M40.411,50.119l0.958,0.115l0.919,0.076l0.881-0.037l0.881-0.152l0.882-0.189l0.843-0.344l0.841-0.422l0.883-0.574l0.882-0.65l0.882-0.764l0.882-0.92l0.919-0.994l0.958-1.188l0.997-1.301l1.034-1.416l1.074-1.607l-0.651-0.002l-0.613,0.039
|
||||
l-0.614,0.076l-0.612,0.076l-0.611,0.078l-0.613,0.072h-0.688h-0.727l-0.616,0.613l-0.573,0.65l-0.576,0.613l-0.574,0.688l-0.575,0.65l-0.535,0.689l-0.576,0.648l-0.539,0.691l-0.572,0.65l-0.574,0.65l-0.612,0.65L43.094,47.9l-0.65,0.572l-0.652,0.574l-0.65,0.574
|
||||
l-0.729,0.498z"/>
|
||||
<path style="&st6;" d="M37.081,49.96l0.728,0.387l0.802,0.154l0.807-0.117l0.842-0.342l0.844-0.5l0.881-0.689l0.88-0.764l0.884-0.916l0.841-0.959l0.884-0.992l0.804-0.998l0.805-0.957l0.768-0.957l0.729-0.84l0.689-0.729l0.614-0.613l-4.099,0.382l-0.462,0.611
|
||||
l-0.498,0.611l-0.458,0.615l-0.459,0.609l-0.46,0.613l-0.5,0.613l-0.461,0.611l-0.497,0.613l-0.537,0.572l-0.537,0.611l-0.536,0.578l-0.613,0.57l-0.612,0.574l-0.653,0.576l-0.688,0.537l-0.728,0.531z"/>
|
||||
<path style="&st6;" d="M30.302,49.076l1.188,0.768l1.109,0.5l1.11,0.23h1.074l1.033-0.191l0.995-0.342l0.955-0.539l0.96-0.686l0.919-0.842l0.923-0.881l0.84-1.037l0.884-1.031l0.843-1.109l0.844-1.146l0.805-1.148l0.805-1.111L44.9,40.625l-0.536,0.037
|
||||
l-0.384,0.037l-0.345,0.039l-0.343,0.039h-0.346l-0.499,0.037l-0.651,0.037l-0.729,1.033l-0.727,0.955l-0.729,0.922l-0.805,0.803l-0.767,0.727l-0.767,0.689l-0.804,0.611l-0.768,0.537l-0.766,0.457l-0.768,0.422l-0.727,0.305l-0.689,0.27l-0.689,0.229l-0.614,0.152
|
||||
l-0.612,0.076l-0.537,0.037z"/>
|
||||
<path style="&st6;" d="M26.74,48.843l1.228,0.152l1.186,0.08l1.149-0.078l1.109-0.15l1.036-0.227l1.033-0.346l0.958-0.422l0.92-0.535l0.92-0.572l0.844-0.65l0.843-0.727l0.803-0.805l0.766-0.842l0.73-0.918l0.729-0.959l0.689-0.994l-0.767,0.039l-0.844,0.074
|
||||
l-0.802,0.076l-0.806,0.039l-0.69,0.076l-0.574,0.035L36.78,41.23l-0.191,0.037l-0.076,0.078l-0.191,0.191l-0.308,0.305l-0.382,0.385l-0.422,0.459l-0.536,0.537l-0.577,0.572l-0.648,0.615l-0.731,0.607l-0.764,0.65l-0.768,0.615l-0.843,0.611l-0.88,0.572
|
||||
l-0.881,0.535l-0.921,0.461l-0.921,0.381z"/>
|
||||
<path style="&st6;" d="M22.031,49.109l1.033,0.191l0.998,0.076l1.033-0.113l1.034-0.191l1.034-0.342l0.994-0.422l0.996-0.498l0.998-0.611l0.919-0.648l0.918-0.689l0.881-0.727l0.845-0.766l0.806-0.803l0.766-0.766l0.69-0.768l0.651-0.766h-0.461l-0.574,0.041
|
||||
l-0.611,0.035H34.33l-0.613,0.074l-0.613,0.041l-0.496,0.039l-0.423,0.074v0.078l-0.154,0.189l-0.381,0.346l-0.537,0.42L30.46,43.14l-0.764,0.613l-0.845,0.652l-0.882,0.648l-0.92,0.686l-0.918,0.691l-0.881,0.65l-0.846,0.574l-0.766,0.535l-0.689,0.422
|
||||
l-0.537,0.305l-0.382,0.191z"/>
|
||||
<path style="&st6;" d="M16.822,49.066l0.612,0.613l0.806,0.266l0.996,0.002l1.11-0.266l1.227-0.461l1.262-0.646l1.341-0.768l1.305-0.84l1.302-0.92l1.227-0.916l1.147-0.879l0.999-0.844l0.881-0.688l0.65-0.574l0.423-0.381l0.192-0.154l-0.498,0.039l-0.538,0.035
|
||||
l-0.574,0.037l-0.572,0.041l-0.614,0.072l-0.614,0.039l-0.611,0.041l-0.652,0.037l-0.688,0.42l-0.688,0.422l-0.693,0.455l-0.649,0.426l-0.689,0.455l-0.653,0.498l-0.688,0.459l-0.653,0.459l-0.69,0.496l-0.65,0.461l-0.688,0.459l-0.651,0.459l-0.688,0.42
|
||||
l-0.691,0.422l-0.651,0.42l-0.69,0.383z"/>
|
||||
<path style="&st6;" d="M12.993,49.14l0.652,0.229l0.649,0.115l0.65,0.037l0.653-0.109l0.65-0.195l0.689-0.264l0.727-0.383l0.768-0.461l0.843-0.535l0.881-0.611l0.959-0.688l1.072-0.729l1.187-0.803l1.265-0.881l1.379-0.918l1.534-0.957l-0.653,0.039l-0.727,0.039
|
||||
h-0.65l-0.65,0.037l-0.574,0.037l-0.459,0.039l-0.307,0.039l-0.116,0.035l-0.077,0.115l-0.229,0.23l-0.346,0.307l-0.458,0.42l-0.574,0.496L21.077,44.4l-0.689,0.57l-0.805,0.613l-0.805,0.611l-0.843,0.613l-0.843,0.533l-0.882,0.537l-0.842,0.457l-0.842,0.383
|
||||
l-0.805,0.268l-0.729,0.154z"/>
|
||||
<path style="&st6;" d="M10.198,48.716l0.879,0.344l0.958,0.152l0.998-0.072l1.033-0.268l1.072-0.383l1.033-0.498l1.074-0.607l0.996-0.691l0.958-0.688l0.92-0.729l0.843-0.688l0.728-0.691l0.653-0.572l0.495-0.498l0.383-0.342l0.232-0.232l-0.613,0.039l-0.577,0.039
|
||||
l-0.571,0.037l-0.575,0.074l-0.535,0.041l-0.577,0.037l-0.61,0.074l-0.613,0.039l-0.459,0.42l-0.501,0.42l-0.458,0.422l-0.499,0.459l-0.498,0.498l-0.497,0.459l-0.536,0.459l-0.538,0.459l-0.536,0.422l-0.534,0.422l-0.577,0.381l-0.534,0.342l-0.614,0.309
|
||||
l-0.574,0.266l-0.613,0.193l-0.613,0.152z"/>
|
||||
<path style="&st6;" d="M6.831,47.642l0.765,0.535l0.763,0.346l0.767,0.154l0.767,0.039l0.768-0.152l0.766-0.232l0.766-0.342l0.765-0.459l0.729-0.498l0.766-0.611l0.729-0.613l0.729-0.65l0.727-0.648l0.69-0.689l0.689-0.65l0.69-0.615l-0.422,0.041l-0.46,0.076
|
||||
l-0.497,0.037l-0.535,0.039l-0.575,0.074l-0.612,0.039l-0.652,0.074l-0.612,0.037l-0.192,0.461l-0.267,0.459l-0.271,0.422l-0.346,0.422l-0.381,0.383l-0.424,0.383l-0.42,0.381l-0.496,0.307l-0.5,0.307l-0.537,0.268l-0.573,0.268l-0.576,0.191l-0.612,0.154
|
||||
l-0.61,0.15L7.48,47.603l-0.649,0.039z"/>
|
||||
<path style="&st6;" d="M3.803,47.066l0.652,0.266l0.69,0.193l0.726,0.115l0.806,0.002l0.767-0.039l0.842-0.115l0.805-0.229l0.803-0.229l0.768-0.344l0.729-0.383l0.65-0.422l0.614-0.494l0.536-0.539l0.46-0.572l0.345-0.65l0.23-0.652l-0.46,0.039l-0.46,0.037
|
||||
l-0.497,0.076l-0.5,0.039l-0.495,0.037l-0.537,0.037l-0.574,0.039l-0.652,0.037L9.78,43.699l-0.307,0.385l-0.306,0.344l-0.306,0.307l-0.307,0.305l-0.348,0.229l-0.343,0.27l-0.347,0.229l-0.381,0.191l-0.422,0.191l-0.421,0.189l-0.459,0.154l-0.462,0.152
|
||||
l-0.495,0.152l-0.537,0.115l-0.539,0.154z"/>
|
||||
<path style="&st6;" d="M2.233,46.529l0.23,0.229l0.347,0.152l0.42,0.078h0.46l0.536-0.037L4.8,46.837l0.613-0.193l0.612-0.189l0.613-0.27l0.614-0.307l0.612-0.342l0.537-0.385l0.537-0.42l0.458-0.459l0.345-0.459l0.307-0.498l-0.343,0.041l-0.308,0.037
|
||||
l-0.383,0.037L8.67,43.468l-0.344,0.039L8.02,43.544H7.752H7.483v0.152L7.14,44.001l-0.576,0.422l-0.767,0.498L4.88,45.417l-0.922,0.5l-0.919,0.381l-0.806,0.23z"/>
|
||||
<path style="&st6;" d="M1.124,45.455l0.078,0.535l0.192,0.344l0.305,0.156l0.42,0.076l0.499-0.076l0.574-0.191l0.573-0.229l0.614-0.307l0.613-0.346l0.574-0.381l0.575-0.381l0.461-0.346l0.42-0.307l0.307-0.23l0.191-0.152l0.038-0.076l-2.986,0.342l-0.229,0.152
|
||||
L3.959,44.23l-0.458,0.23l-0.5,0.229l-0.535,0.27l-0.497,0.189l-0.461,0.191l-0.384,0.115z"/>
|
||||
<path style="&st6;" d="M4.573,43.886l-0.651,0.039l-0.574,0.039L2.812,44l-0.498,0.037l-0.46,0.041l-0.497,0.035l-0.498,0.078l-0.577,0.113l0.117,0.729l0.343,0.346h0.537l0.689-0.189l0.689-0.348l0.729-0.381l0.651-0.346l0.536-0.229z"/>
|
||||
<path style="&st6;" d="M4.459,43.505l-0.653,0.113l-0.573,0.076l-0.497,0.113l-0.5,0.076l-0.458,0.113l-0.459,0.115L0.781,44.23l-0.574,0.152l-0.038-0.844l0.345-0.535l0.537-0.193l0.727-0.033l0.766,0.15l0.766,0.193l0.651,0.23l0.499,0.154z"/>
|
||||
<path style="&st6;" d="M44.298,27.949l1.684-0.651l1.611-0.419l1.491-0.113l1.417,0.076l1.379,0.309l1.262,0.459l1.227,0.652l1.187,0.729l1.149,0.845l1.11,0.919l1.106,0.959l1.074,0.996l1.071,0.957l1.07,0.921l1.073,0.882l1.109,0.807l-0.384,0.073l-0.421,0.038
|
||||
l-0.421,0.039l-0.383,0.076l-0.423,0.039l-0.421,0.038l-0.459,0.036l-0.421,0.039l-0.422,0.035l-0.461,0.041l-0.458,0.076l-0.422,0.037l-0.461,0.04l-0.457,0.074l-0.498,0.037l-0.461,0.077l-0.382-0.534l-0.495-0.653l-0.576-0.766l-0.688-0.768l-0.727-0.843
|
||||
l-0.805-0.843l-0.879-0.844l-0.881-0.806l-0.959-0.766l-0.953-0.688l-0.957-0.615l-0.997-0.497l-0.957-0.385l-0.958-0.23l-0.956-0.039l-0.88,0.152z"/>
|
||||
<path style="&st6;" d="M41.423,28.597l0.96-0.345l0.92-0.227l0.878-0.152l0.923-0.077l0.878,0.077l0.919,0.192l0.88,0.268l0.919,0.423l0.956,0.537l0.959,0.691l0.995,0.803l1.033,0.96l1.108,1.11l1.11,1.266l1.186,1.418l1.264,1.57l-0.69,0.039l-0.611,0.072
|
||||
l-0.576,0.039l-0.534,0.076l-0.537,0.076l-0.573,0.076l-0.653,0.113l-0.765,0.117l-0.689-0.574l-0.65-0.613l-0.689-0.653l-0.612-0.653l-0.649-0.649l-0.649-0.65l-0.613-0.653l-0.651-0.651l-0.651-0.612l-0.688-0.574l-0.651-0.576l-0.688-0.574l-0.727-0.498
|
||||
l-0.767-0.423l-0.766-0.421l-0.805-0.347z"/>
|
||||
<path style="&st6;" d="M38.207,29.438l0.727-0.611l0.808-0.307l0.88-0.074l0.879,0.191l0.958,0.383l0.956,0.538l0.995,0.688l0.996,0.805l0.996,0.881l0.993,0.921l0.956,0.921l0.92,0.958l0.841,0.88l0.84,0.805l0.729,0.691l0.69,0.574l-4.176,0.496l-0.536-0.613
|
||||
l-0.536-0.615l-0.498-0.613l-0.533-0.611l-0.537-0.613l-0.534-0.651l-0.573-0.614l-0.535-0.576l-0.613-0.574l-0.612-0.573l-0.652-0.538l-0.688-0.498l-0.728-0.497l-0.766-0.423l-0.804-0.383l-0.843-0.346z"/>
|
||||
<path style="&st6;" d="M31.926,32.113l1.148-1.111l1.111-0.802l1.073-0.534l1.072-0.307l1.072-0.037l1.034,0.154l1.033,0.385l0.996,0.498l0.994,0.689l0.955,0.804l0.996,0.921l0.919,0.996l0.957,1.035l0.917,1.111l0.918,1.111l0.919,1.11l-0.729,0.04l-0.611,0.035
|
||||
l-0.498,0.039l-0.461,0.076l-0.458,0.076l-0.499,0.075l-0.571,0.078l-0.692,0.112l-0.803-1.034l-0.766-0.919l-0.803-0.844l-0.766-0.728l-0.802-0.612l-0.766-0.538l-0.728-0.461l-0.768-0.382l-0.728-0.309l-0.688-0.229l-0.728-0.192l-0.689-0.152l-0.648-0.08
|
||||
l-0.653-0.074h-0.649l-0.612-0.002z"/>
|
||||
<path style="&st6;" d="M27.442,33.145l1.267-0.461l1.187-0.344l1.187-0.189l1.109-0.077l1.111,0.001l1.071,0.155l1.035,0.231l0.996,0.347l0.995,0.419l0.919,0.537l0.957,0.613l0.878,0.689l0.882,0.768l0.84,0.842l0.806,0.922l0.803,0.996l-0.803,0.115l-0.919,0.111
|
||||
l-0.921,0.115l-0.921,0.115l-0.842,0.113l-0.649,0.078l-0.499,0.037l-0.191-0.002l-0.075-0.075l-0.192-0.153l-0.269-0.268l-0.343-0.346l-0.423-0.42l-0.495-0.424l-0.575-0.496l-0.65-0.538l-0.728-0.499l-0.765-0.536l-0.844-0.5l-0.918-0.495l-0.92-0.424
|
||||
l-0.993-0.383l-1.034-0.348l-1.073-0.229z"/>
|
||||
<path style="&st6;" d="M21.775,33.828l1.034-0.418l1.035-0.307l1.108-0.115l1.073,0.001l1.111,0.118l1.108,0.229l1.072,0.346l1.111,0.422l1.033,0.498l1.033,0.537l0.995,0.651l0.994,0.651l0.882,0.693l0.881,0.727l0.802,0.728l0.726,0.729l-0.495,0.037
|
||||
l-0.612,0.076l-0.689,0.075l-0.728,0.077l-0.729,0.075l-0.652,0.076l-0.573,0.037h-0.422l-0.001-0.077l-0.191-0.191l-0.38-0.268l-0.574-0.385l-0.689-0.42l-0.805-0.5l-0.919-0.537l-0.956-0.533l-0.955-0.54l-0.996-0.538l-0.998-0.496l-0.916-0.457l-0.846-0.387
|
||||
l-0.762-0.307l-0.616-0.193l-0.495-0.115z"/>
|
||||
<path style="&st6;" d="M16.413,34.936l0.537-0.842l0.805-0.498l0.996-0.188h1.147l1.264,0.268l1.379,0.422l1.455,0.576l1.415,0.651l1.455,0.729l1.339,0.766l1.265,0.73l1.149,0.727l0.954,0.615l0.729,0.459l0.496,0.342l0.23,0.117l-0.537,0.116l-0.61,0.077
|
||||
l-0.653,0.073l-0.689,0.038l-0.727,0.078l-0.729,0.074l-0.688,0.115l-0.689,0.115l-0.729-0.345l-0.688-0.348l-0.729-0.381l-0.688-0.385l-0.69-0.346l-0.688-0.383l-0.728-0.384l-0.688-0.382l-0.689-0.35l-0.688-0.382l-0.729-0.343l-0.688-0.307l-0.689-0.348
|
||||
l-0.727-0.305l-0.727-0.311l-0.729-0.266z"/>
|
||||
<path style="&st6;" d="M9.558,36.768l0.844-0.611l0.956-0.346l0.996-0.149l1.07,0.001l1.113,0.189l1.148,0.348l1.11,0.421l1.108,0.5l1.035,0.574l1.032,0.575l0.919,0.614l0.804,0.536l0.727,0.499l0.574,0.459l0.42,0.307l0.229,0.193l-0.612,0.074l-0.574,0.076
|
||||
l-0.495,0.076l-0.501,0.037l-0.536,0.037l-0.496,0.076l-0.576,0.076l-0.61,0.074l-0.537-0.342l-0.536-0.348l-0.574-0.419l-0.574-0.383l-0.611-0.422l-0.613-0.421l-0.612-0.423l-0.612-0.383l-0.614-0.384l-0.647-0.308l-0.652-0.305l-0.613-0.232l-0.648-0.189
|
||||
l-0.615-0.117H10.17l-0.612,0.037z"/>
|
||||
<path style="&st6;" d="M12.084,35.661l0.653-0.423l0.688-0.305l0.652-0.154l0.688-0.074l0.689,0.037l0.728,0.152l0.807,0.27l0.838,0.308l0.921,0.423l0.959,0.459l1.07,0.576l1.147,0.614l1.265,0.65l1.378,0.692l1.49,0.765l1.648,0.768l-0.613,0.039l-0.689,0.074
|
||||
l-0.688,0.078l-0.691,0.111L24.41,40.8l-0.457,0.078l-0.346,0.035l-0.153-0.035L23.379,40.8l-0.27-0.191l-0.345-0.308l-0.459-0.344l-0.573-0.422l-0.689-0.459l-0.729-0.5l-0.803-0.499l-0.879-0.498l-0.882-0.497l-0.955-0.425l-0.957-0.384L14.88,35.97l-0.957-0.196
|
||||
l-0.92-0.111l-0.919-0.001z"/>
|
||||
<path style="&st6;" d="M6.491,38.719l0.691-0.766l0.726-0.574l0.729-0.382l0.766-0.229l0.767-0.037l0.804,0.076l0.844,0.192l0.804,0.271l0.84,0.422l0.805,0.42l0.842,0.536l0.843,0.539l0.843,0.536l0.803,0.574l0.805,0.578l0.803,0.496l-0.459,0.076l-0.498,0.039
|
||||
l-0.574,0.115l-0.613,0.072l-0.649,0.08l-0.69,0.072l-0.65,0.078l-0.653,0.076l-0.229-0.498l-0.269-0.422l-0.305-0.422l-0.384-0.382l-0.383-0.344l-0.419-0.27l-0.5-0.271l-0.497-0.229l-0.536-0.191l-0.572-0.154l-0.576-0.114l-0.612-0.079l-0.65-0.037l-0.652,0.001
|
||||
l-0.65,0.073l-0.689,0.078z"/>
|
||||
<path style="&st6;" d="M1.778,41.242l0.193-0.307l0.306-0.268l0.422-0.227l0.459-0.155l0.536-0.114l0.612-0.036l0.613,0.001l0.689,0.037l0.65,0.114l0.689,0.155l0.652,0.229l0.61,0.27l0.576,0.307l0.534,0.383l0.422,0.422l0.381,0.461l-0.343,0.076L9.36,42.666
|
||||
l-0.42,0.076l-0.423,0.074l-0.382,0.037l-0.308,0.041H7.6H7.522l-0.153-0.078l-0.381-0.23l-0.652-0.307L5.57,41.937l-0.881-0.309l-0.995-0.27l-0.957-0.154l-0.959,0.037z"/>
|
||||
<path style="&st6;" d="M0.858,42.81l-0.036-0.609l0.152-0.461l0.271-0.307l0.42-0.191l0.497-0.078l0.575,0.041l0.613,0.076l0.688,0.154l0.65,0.23l0.65,0.23l0.613,0.23l0.535,0.23l0.46,0.23l0.383,0.154l0.191,0.152l0.078,0.037l-3.065,0.533l-0.27-0.113
|
||||
l-0.42-0.117l-0.459-0.152L2.85,42.927l-0.536-0.115l-0.535-0.074L1.28,42.736L0.858,42.81z"/>
|
||||
<path style="&st6;" d="M3.389,40.248l0.612-0.498l0.651-0.383l0.729-0.342l0.805-0.231l0.806-0.153l0.803-0.11l0.844,0.001l0.841,0.072l0.804,0.156l0.804,0.27l0.729,0.307l0.689,0.383l0.649,0.461l0.536,0.535l0.421,0.613l0.344,0.689l-0.499,0.039l-0.457,0.078
|
||||
l-0.5,0.035l-0.536,0.076l-0.535,0.078l-0.574,0.037l-0.612,0.115l-0.65,0.072l-0.231-0.34L9.591,41.9l-0.307-0.268l-0.343-0.27l-0.383-0.23l-0.421-0.23L7.715,40.71l-0.459-0.152l-0.459-0.154L6.3,40.289l-0.46-0.076l-0.499-0.04l-0.497-0.037l-0.496-0.001
|
||||
l-0.499,0.038l-0.46,0.075z"/>
|
||||
<path style="&st6;" d="M139.729,21.932l0.077,0.117l0.192,0.307l0.267,0.497l0.344,0.613l0.386,0.727l0.382,0.806l0.346,0.92l0.303,0.918l0.228,0.959l0.079,0.92l-0.041,0.918l-0.192,0.842l-0.422,0.768l-0.651,0.687l-0.919,0.535l-1.189,0.384l0.193-0.578
|
||||
l0.117-0.611l0.113-0.611l0.076-0.689l0.039-0.689v-0.726l-0.037-0.69l-0.037-0.729l-0.076-0.729l-0.074-0.725l-0.116-0.69l-0.152-0.651l-0.113-0.651l-0.154-0.575l-0.188-0.574l-0.155-0.498l0.191-0.075l0.154-0.04l0.19-0.076l0.156-0.036l0.153-0.077l0.15-0.039
|
||||
l0.191-0.078l0.19-0.076z"/>
|
||||
<path style="&st6;" d="M138.429,22.468l0.534,2.108l0.382,1.914l0.189,1.646l0.037,1.455l-0.077,1.264l-0.23,1.072l-0.307,0.92l-0.347,0.764l-0.46,0.613l-0.497,0.496l-0.498,0.347l-0.495,0.267l-0.54,0.191l-0.459,0.076l-0.42,0.037h-0.384l0.229-0.613
|
||||
l0.229-0.612l0.192-0.688l0.154-0.689l0.152-0.767l0.118-0.764l0.116-0.767l0.075-0.803l0.041-0.806l0.001-0.843l-0.041-0.804l-0.073-0.843l-0.114-0.804l-0.155-0.843l-0.188-0.766l-0.229-0.805l0.457-0.154l0.463-0.152l0.422-0.152l0.418-0.115l0.348-0.113
|
||||
l0.381-0.115l0.306-0.076l0.27-0.077z"/>
|
||||
<path style="&st6;" d="M135.325,23.424l0.231,0.765l0.227,0.959l0.155,1.073l0.072,1.186l0.041,1.303l-0.002,1.301l-0.116,1.301l-0.192,1.267l-0.271,1.187l-0.345,1.109l-0.499,0.957l-0.572,0.766l-0.731,0.574l-0.84,0.304l-0.96,0.04l-1.108-0.307l0.422-0.691
|
||||
l0.421-0.727l0.347-0.766l0.307-0.727l0.229-0.803l0.231-0.768l0.152-0.805l0.154-0.805l0.077-0.804l0.038-0.841v-0.805l-0.073-0.842l-0.076-0.842l-0.152-0.806l-0.152-0.845l-0.229-0.803l0.383-0.152l0.458-0.152l0.461-0.153l0.46-0.153l0.46-0.151l0.382-0.153
|
||||
l0.346-0.117l0.267-0.074z"/>
|
||||
<path style="&st6;" d="M125.586,39.307l1.036,0.08l0.997-0.154l0.879-0.381l0.805-0.535l0.766-0.73l0.652-0.879l0.536-0.994l0.499-1.109l0.384-1.188l0.309-1.266l0.192-1.3l0.078-1.302l0.001-1.301l-0.114-1.303l-0.229-1.265l-0.343-1.188l-0.422,0.152
|
||||
l-0.425,0.154l-0.456,0.114l-0.463,0.152l-0.458,0.154l-0.497,0.153l-0.46,0.152l-0.497,0.152v0.804l-0.001,0.879l-0.04,0.999l-0.039,1.033l-0.039,1.033l-0.038,1.072l-0.116,1.11l-0.113,1.032l-0.156,1.035l-0.152,0.957l-0.233,0.919l-0.268,0.806l-0.308,0.687
|
||||
l-0.384,0.577l-0.421,0.419l-0.461,0.267z"/>
|
||||
<path style="&st6;" d="M128.317,25.715l-0.384,0.153l-0.383,0.114l-0.343,0.115l-0.386,0.077l-0.382,0.114l-0.347,0.113l-0.384,0.116l-0.38,0.153l-0.077,0.766l-0.041,0.84l-0.039,0.92l-0.038,0.958l-0.001,0.958l-0.001,1.031l-0.04,1.037l-0.039,0.994
|
||||
l-0.076,0.997l-0.115,0.994l-0.193,0.919l-0.191,0.844l-0.305,0.802l-0.346,0.727l-0.422,0.616l-0.536,0.496l1.108-0.267l0.919-0.383l0.767-0.533l0.651-0.614l0.537-0.729l0.423-0.839l0.306-0.919l0.232-0.959l0.156-1.072l0.112-1.11l0.039-1.15l0.042-1.225
|
||||
l0.037-1.225l0.039-1.264l0.001-1.264l0.078-1.303z"/>
|
||||
<path style="&st6;" d="M118.156,42.058l1.531-0.074l1.304-0.305l1.07-0.496l0.882-0.652l0.689-0.841l0.502-0.958l0.419-1.071l0.27-1.188l0.154-1.226l0.114-1.261l0.041-1.305l0.001-1.262l0.001-1.305l0.001-1.223l0.076-1.15l0.078-1.071l-0.421,0.114l-0.383,0.113
|
||||
l-0.343,0.117l-0.387,0.113l-0.382,0.113l-0.343,0.115l-0.384,0.077l-0.423,0.114l0.039,0.113l0.075,0.269l0.078,0.423l0.114,0.537l0.074,0.688l0.078,0.768l0.039,0.881l-0.04,0.996l-0.114,1.035l-0.195,1.145l-0.347,1.189l-0.42,1.225l-0.614,1.265l-0.766,1.339
|
||||
l-0.921,1.3l-1.15,1.338z"/>
|
||||
<path style="&st6;" d="M112.945,43.703l1.035,0.191l1.035-0.074l0.995-0.346l0.996-0.537l0.956-0.725l0.92-0.881l0.844-1.07l0.769-1.188l0.649-1.265l0.576-1.378l0.462-1.456l0.309-1.489l0.192-1.496l0.041-1.531l-0.152-1.454l-0.308-1.456l-3.638,1.146
|
||||
l0.037,0.613l0.037,0.729l-0.038,0.801l-0.08,0.92l-0.112,0.958l-0.192,1.034l-0.192,1.072l-0.308,1.109l-0.347,1.109l-0.421,1.073l-0.461,1.071l-0.575,1.035l-0.612,0.996l-0.729,0.918l-0.805,0.842l-0.883,0.727z"/>
|
||||
<path style="&st6;" d="M118.702,28.619l-0.573,0.189L117.4,29l-0.807,0.268l-0.84,0.229l-0.806,0.27l-0.804,0.227l-0.689,0.191l-0.537,0.115l-0.076,0.881l-0.042,0.955l-0.075,0.959l-0.038,0.995l-0.117,0.995l-0.077,1.037l-0.115,0.994l-0.153,0.996l-0.19,0.956
|
||||
l-0.232,0.921l-0.309,0.916l-0.344,0.842l-0.422,0.807l-0.498,0.688l-0.536,0.65l-0.65,0.576l0.766,0.115l0.803-0.039l0.804-0.189l0.805-0.344l0.804-0.5l0.807-0.611l0.768-0.764l0.766-0.957l0.689-1.035l0.611-1.227l0.578-1.339l0.495-1.528l0.388-1.65
|
||||
l0.307-1.758l0.194-1.955l0.077-2.066z"/>
|
||||
<path style="&st6;" d="M104.021,45.226l1.725,0.08l1.455-0.154l1.265-0.418l0.998-0.652l0.841-0.803l0.691-0.957l0.497-1.072l0.386-1.224l0.308-1.225l0.19-1.343l0.116-1.3l0.117-1.302l0.038-1.303l0.078-1.188l0.075-1.11l0.117-0.995l-0.535,0.114l-0.463,0.115
|
||||
l-0.419,0.153l-0.418,0.112l-0.463,0.117l-0.422,0.111l-0.496,0.154l-0.576,0.151l-0.116,1.038l-0.112,0.992l-0.116,0.996l-0.156,0.955l-0.116,0.961l-0.153,0.918l-0.189,0.879l-0.194,0.881l-0.269,0.844l-0.308,0.841l-0.382,0.805l-0.422,0.805l-0.536,0.801
|
||||
l-0.576,0.768L104.79,44.5l-0.77,0.727z"/>
|
||||
<path style="&st6;" d="M99.389,46.066l1.532,0.078l1.34-0.193l1.188-0.418l1.036-0.65l0.88-0.805l0.766-0.957l0.615-1.107l0.537-1.188l0.458-1.226l0.347-1.3l0.269-1.266l0.194-1.299l0.19-1.226l0.116-1.15l0.116-1.073l0.079-0.919l-0.539,0.117l-0.459,0.112
|
||||
l-0.42,0.115l-0.423,0.077l-0.38,0.113l-0.425,0.074l-0.495,0.152l-0.576,0.115l-0.192,1.496l-0.229,1.417l-0.27,1.301l-0.269,1.226l-0.31,1.109l-0.345,1.071l-0.383,0.918l-0.384,0.883l-0.383,0.803l-0.425,0.727l-0.459,0.613l-0.422,0.574l-0.459,0.535
|
||||
l-0.461,0.42l-0.498,0.383l-0.459,0.346z"/>
|
||||
<path style="&st6;" d="M95.021,46.636l1.457,0.078l1.302-0.189l1.151-0.424l1.071-0.611l0.881-0.801l0.805-0.92l0.69-1.072l0.614-1.145l0.535-1.189l0.422-1.263l0.347-1.264l0.308-1.262l0.271-1.188l0.192-1.149l0.152-1.031l0.155-0.922l-0.459,0.076l-0.46,0.116
|
||||
l-0.462,0.114l-0.459,0.115l-0.462,0.115l-0.458,0.112l-0.46,0.114l-0.497,0.117l-0.038,0.725l-0.116,0.805l-0.153,0.843l-0.269,0.918l-0.27,0.995l-0.382,0.957l-0.385,1.033l-0.422,0.998l-0.499,0.996l-0.537,0.957l-0.534,0.879l-0.577,0.84l-0.574,0.807
|
||||
l-0.614,0.689l-0.649,0.572l-0.617,0.459z"/>
|
||||
<path style="&st6;" d="M90.237,47.513l1.49,0.193l1.38-0.191l1.264-0.496l1.15-0.766l1.073-0.955l0.921-1.148l0.84-1.301l0.77-1.34l0.613-1.416l0.537-1.381l0.46-1.302l0.384-1.262l0.23-1.074l0.192-0.88l0.114-0.65l0.001-0.381l-0.573,0.111l-0.537,0.115
|
||||
l-0.535,0.152l-0.536,0.115l-0.536,0.152l-0.5,0.113l-0.497,0.115l-0.499,0.078l-0.191,0.651l-0.19,0.765l-0.229,0.879l-0.271,0.996l-0.308,1.035l-0.343,1.071l-0.384,1.069l-0.424,1.115l-0.461,1.07l-0.497,0.994l-0.537,0.959l-0.574,0.842l-0.653,0.725
|
||||
l-0.65,0.574l-0.728,0.422l-0.765,0.229z"/>
|
||||
<path style="&st6;" d="M86.752,47.32l1.377,0.307l1.223,0.002l1.113-0.268l1.034-0.535l0.882-0.729l0.805-0.881l0.727-1.068l0.652-1.15l0.539-1.225l0.498-1.262l0.384-1.264l0.385-1.227l0.307-1.147l0.231-1.035l0.23-0.918l0.189-0.727l-0.419,0.076l-0.423,0.038
|
||||
l-0.38,0.075l-0.347,0.076l-0.384,0.076l-0.346,0.078l-0.305,0.074l-0.345,0.041l-0.118,0.879l-0.189,0.919l-0.232,0.917l-0.228,0.883l-0.309,0.918l-0.347,0.881l-0.382,0.843l-0.461,0.842l-0.46,0.842l-0.537,0.805l-0.615,0.764l-0.61,0.689l-0.729,0.689
|
||||
l-0.727,0.611l-0.806,0.574l-0.879,0.535z"/>
|
||||
<path style="&st6;" d="M82.385,48.005l1.147,0.002l1.112-0.115l1.07-0.268l1.037-0.383l0.956-0.533l0.959-0.65l0.842-0.764l0.841-0.842l0.73-0.959l0.69-1.033l0.614-1.15l0.573-1.185l0.461-1.264l0.385-1.34l0.347-1.379l0.23-1.414l-0.498,0.113l-0.499,0.076
|
||||
l-0.536,0.115l-0.496,0.074l-0.497,0.078l-0.459,0.112l-0.5,0.077l-0.459,0.115l-0.231,0.805l-0.191,0.842l-0.231,0.805l-0.194,0.803l-0.23,0.804l-0.228,0.803l-0.307,0.766l-0.346,0.805l-0.42,0.766l-0.463,0.803l-0.576,0.766l-0.688,0.766l-0.768,0.729
|
||||
l-0.918,0.766l-1.073,0.766l-1.188,0.725z"/>
|
||||
<path style="&st6;" d="M76.18,48.728l1.495,0.117l1.454-0.076l1.34-0.229l1.266-0.383l1.187-0.496l1.112-0.65l1.033-0.768l0.918-0.916l0.844-0.955l0.767-1.074l0.693-1.148l0.573-1.221l0.496-1.304l0.425-1.34l0.307-1.377l0.233-1.381l-0.423,0.076l-0.46,0.117
|
||||
l-0.456,0.074l-0.461,0.075l-0.459,0.078l-0.5,0.114l-0.497,0.076l-0.5,0.115l-0.152,0.955l-0.23,0.957l-0.31,0.96l-0.383,0.917l-0.457,0.917l-0.502,0.918l-0.574,0.883l-0.648,0.842l-0.691,0.844l-0.767,0.762l-0.808,0.727l-0.879,0.689l-0.921,0.611l-0.995,0.576
|
||||
l-0.997,0.496l-1.072,0.42z"/>
|
||||
<path style="&st6;" d="M72.772,49.107l1.264-0.074l1.226-0.189l1.228-0.307l1.186-0.457l1.112-0.537l1.109-0.648l1.034-0.729l0.958-0.842l0.881-0.916l0.843-0.994l0.73-1.076l0.65-1.109l0.536-1.183l0.46-1.226l0.348-1.267l0.229-1.299l-0.419,0.074l-0.385,0.037
|
||||
l-0.346,0.039l-0.343,0.039l-0.346,0.037l-0.382,0.077l-0.458,0.075l-0.539,0.075l-0.537,1.112l-0.459,1.031l-0.46,0.997l-0.422,0.918l-0.46,0.881l-0.424,0.805l-0.461,0.764l-0.498,0.727l-0.537,0.729l-0.613,0.65l-0.688,0.689l-0.765,0.611l-0.884,0.65
|
||||
l-0.996,0.611l-1.108,0.613l-1.265,0.609z"/>
|
||||
<path style="&st6;" d="M66.645,49.488l1.877,0.076l1.763-0.072l1.57-0.268l1.455-0.422l1.34-0.572l1.187-0.691l1.113-0.801l0.993-0.92l0.921-0.992l0.844-1.072l0.729-1.109l0.688-1.189l0.652-1.184l0.577-1.187l0.538-1.227l0.496-1.187l-0.343,0.036l-0.461,0.078
|
||||
l-0.573,0.076l-0.575,0.076l-0.613,0.115l-0.537,0.076l-0.456,0.076l-0.347,0.035l-0.46,1.074l-0.499,1.074l-0.577,0.994l-0.573,0.955l-0.652,0.881l-0.688,0.879l-0.729,0.805l-0.804,0.807l-0.804,0.727l-0.885,0.688l-0.917,0.688l-0.96,0.613l-0.995,0.572
|
||||
l-1.072,0.535l-1.072,0.496l-1.149,0.461z"/>
|
||||
<path style="&st6;" d="M63.006,50.019l1.034-0.037l1.071-0.152l1.15-0.268l1.186-0.42l1.188-0.494l1.189-0.613l1.188-0.727l1.187-0.803l1.149-0.918l1.111-0.957l1.035-1.07l0.999-1.15l0.879-1.188l0.804-1.261l0.691-1.34l0.576-1.38l-0.575,0.079l-0.575,0.074
|
||||
l-0.611,0.037l-0.612,0.077l-0.536,0.037l-0.461,0.077l-0.382,0.076l-0.192,0.115l-0.69,0.535l-0.689,0.575l-0.729,0.688l-0.729,0.688l-0.727,0.765l-0.767,0.803l-0.767,0.844l-0.768,0.844l-0.766,0.879l-0.804,0.842l-0.805,0.842l-0.845,0.84l-0.842,0.844
|
||||
l-0.845,0.762l-0.842,0.768l-0.882,0.688z"/>
|
||||
<path style="&st6;" d="M57.415,50.015l0.997,0.654l1.032,0.268l1.034,0.002l1.073-0.268l1.071-0.537l1.073-0.729l1.111-0.916l1.11-1.033l1.112-1.188l1.148-1.225l1.189-1.301l1.188-1.299l1.188-1.264l1.226-1.263l1.228-1.148l1.226-1.031h-0.425l-0.494,0.074
|
||||
l-0.576,0.038l-0.573,0.116l-0.614,0.076l-0.612,0.113l-0.572,0.115l-0.5,0.075l-0.956,0.88l-0.957,0.88l-0.923,0.918l-0.919,0.92l-0.881,0.916l-0.883,0.92l-0.88,0.92l-0.845,0.84l-0.844,0.84l-0.842,0.768l-0.805,0.688l-0.804,0.613l-0.805,0.535l-0.767,0.459
|
||||
l-0.766,0.344l-0.767,0.229z"/>
|
||||
<path style="&st6;" d="M53.086,50.511l1.572,0.002l1.492-0.152l1.342-0.385l1.304-0.494l1.187-0.613l1.109-0.766l1.075-0.84l0.995-0.92l0.997-0.994l0.956-1.033l0.921-1.035l0.959-1.07l0.959-1.07l0.994-1.034l1.035-0.957l1.072-0.918l-0.382,0.04l-0.458,0.037
|
||||
l-0.577,0.074l-0.572,0.041l-0.577,0.073l-0.459,0.038l-0.382,0.041l-0.229-0.001l-0.651,0.151l-0.651,0.306l-0.649,0.423l-0.692,0.573l-0.689,0.686l-0.729,0.805l-0.766,0.844l-0.769,0.916l-0.88,0.957l-0.883,0.955l-0.997,0.996l-1.032,0.959l-1.111,0.955
|
||||
l-1.188,0.881l-1.264,0.801l-1.381,0.729z"/>
|
||||
<path style="&st6;" d="M138.314,18.982v-0.153l0.04-0.42l0.038-0.649l0.04-0.807l0.039-0.957l-0.037-1.033l-0.038-1.072l-0.111-1.111l-0.229-1.033l-0.309-0.996l-0.38-0.882l-0.572-0.728l-0.654-0.537l-0.843-0.307l-1.034-0.039l-1.186,0.306l0.385,0.384
|
||||
l0.343,0.459l0.345,0.574l0.306,0.613l0.305,0.689l0.27,0.689l0.264,0.767l0.271,0.804l0.228,0.767l0.19,0.806l0.194,0.803l0.188,0.766l0.155,0.768l0.152,0.727l0.114,0.65l0.113,0.613l0.19-0.037l0.154-0.037l0.189-0.078l0.155-0.037l0.151-0.079l0.155-0.075
|
||||
l0.192-0.037l0.226-0.078z"/>
|
||||
<path style="&st6;" d="M136.9,19.558l-0.497-2.489l-0.535-2.108l-0.535-1.801l-0.532-1.492l-0.539-1.188l-0.534-0.958l-0.533-0.689l-0.499-0.497l-0.536-0.347l-0.458-0.153l-0.502-0.039l-0.42,0.078l-0.419,0.152l-0.382,0.191l-0.348,0.229l-0.306,0.23l0.536,0.497
|
||||
l0.533,0.573l0.462,0.538l0.494,0.611l0.424,0.615l0.422,0.648l0.382,0.652l0.344,0.691l0.344,0.727l0.306,0.766l0.307,0.768l0.268,0.805l0.227,0.842l0.23,0.842l0.227,0.882l0.194,0.919l0.457-0.077l0.345-0.036l0.232-0.077l0.153-0.077l0.151-0.037l0.156-0.076
|
||||
l0.153-0.039l0.229-0.075z"/>
|
||||
<path style="&st6;" d="M134.984,20.283l-0.113-0.918l-0.194-1.035l-0.305-1.15l-0.379-1.226l-0.5-1.264l-0.571-1.227l-0.611-1.187l-0.688-1.111l-0.729-0.996l-0.765-0.843l-0.803-0.65l-0.842-0.425L127.603,8.1l-0.882,0.152l-0.842,0.499l-0.882,0.878l0.688,0.498
|
||||
l0.65,0.576l0.613,0.574l0.574,0.576l0.574,0.611l0.496,0.689l0.459,0.691l0.42,0.688l0.423,0.769l0.343,0.767l0.345,0.805l0.267,0.842l0.267,0.879l0.193,0.92l0.189,0.959l0.155,0.994l0.416-0.114l0.461-0.152l0.499-0.153l0.498-0.191l0.461-0.189l0.421-0.154
|
||||
l0.344-0.151l0.23-0.077z"/>
|
||||
<path style="&st6;" d="M120.057,10.239l0.919-0.612l0.92-0.344l0.957-0.115l0.919,0.115l0.958,0.307l0.919,0.5l0.882,0.689l0.843,0.805l0.762,0.919l0.766,1.073l0.65,1.188l0.572,1.226l0.496,1.305l0.384,1.376l0.306,1.38l0.151,1.416L131,21.581l-0.459,0.116
|
||||
l-0.46,0.15l-0.46,0.154l-0.497,0.191l-0.499,0.113l-0.457,0.154l-0.498,0.075l-0.346-0.88l-0.305-0.959l-0.383-0.957l-0.348-0.957l-0.379-0.996l-0.419-0.998l-0.423-0.956l-0.421-0.918l-0.456-0.884l-0.499-0.805l-0.533-0.766l-0.539-0.651l-0.609-0.575
|
||||
l-0.615-0.459l-0.648-0.346l-0.69-0.19z"/>
|
||||
<path style="&st6;" d="M115.844,11.383l1.455-0.648l1.302-0.344l1.149-0.038l1.034,0.193l0.919,0.421l0.806,0.65l0.724,0.807l0.65,0.957l0.575,1.072l0.495,1.188l0.5,1.229l0.457,1.225l0.457,1.264l0.421,1.264l0.459,1.188l0.497,1.111l-0.421,0.037l-0.384,0.115
|
||||
l-0.383,0.113l-0.385,0.152l-0.381,0.118l-0.384,0.151l-0.421,0.114l-0.422,0.074l-0.038-0.151l-0.038-0.383l-0.114-0.498l-0.114-0.689l-0.189-0.803l-0.27-0.92l-0.306-0.996l-0.42-1.034l-0.494-1.034l-0.574-1.035l-0.728-1.035l-0.803-0.958l-0.96-0.918
|
||||
l-1.07-0.767l-1.228-0.691l-1.375-0.5z"/>
|
||||
<path style="&st6;" d="M110.406,12.185l0.882-0.651l0.997-0.42l1.069-0.153l1.072,0.04l1.149,0.229l1.148,0.461l1.108,0.615l1.111,0.768l1.07,0.956l0.997,1.075l0.878,1.225l0.805,1.342l0.687,1.416l0.537,1.533l0.342,1.57l0.19,1.687l-3.945,1.029l-0.228-0.649
|
||||
l-0.307-0.77l-0.306-0.803l-0.382-0.881l-0.461-0.92l-0.457-0.956l-0.537-0.961l-0.573-0.956l-0.652-0.957l-0.725-0.92l-0.766-0.842l-0.803-0.808l-0.878-0.728l-0.959-0.613l-0.996-0.537l-1.07-0.421z"/>
|
||||
<path style="&st6;" d="M120.542,25.02l-0.572,0.115l-0.727,0.152l-0.729,0.23l-0.808,0.229l-0.764,0.267l-0.729,0.191l-0.649,0.189l-0.536,0.152l-0.382-0.957l-0.421-0.995l-0.422-0.996l-0.42-1.036l-0.421-1.032l-0.458-0.997l-0.498-0.995l-0.497-0.997
|
||||
l-0.533-0.918l-0.573-0.845l-0.614-0.804l-0.651-0.727l-0.65-0.652l-0.728-0.537l-0.804-0.423l-0.804-0.306l0.692-0.459l0.764-0.344l0.806-0.23l0.88-0.075l0.918,0.076l0.959,0.231l0.957,0.383l0.992,0.576l0.999,0.728l0.993,0.92l0.995,1.149l0.954,1.304
|
||||
l0.919,1.532l0.917,1.723l0.843,1.992l0.802,2.184z"/>
|
||||
<path style="&st6;" d="M101.328,14.973l1.571-0.841l1.415-0.498l1.304-0.114l1.187,0.193l1.032,0.458l0.996,0.691l0.841,0.883l0.805,1.073l0.688,1.188l0.649,1.265l0.573,1.341l0.534,1.34l0.536,1.302l0.498,1.265l0.458,1.148l0.456,1.035l-0.534,0.076
|
||||
l-0.459,0.112l-0.422,0.079l-0.422,0.114l-0.421,0.114l-0.459,0.115l-0.498,0.076l-0.572,0.112l-0.5-1.033l-0.458-1.036l-0.46-0.994l-0.458-0.958l-0.459-0.958l-0.495-0.88l-0.5-0.881l-0.495-0.806l-0.575-0.807l-0.61-0.727l-0.612-0.688l-0.688-0.652l-0.769-0.615
|
||||
l-0.801-0.536l-0.92-0.498l-0.956-0.46z"/>
|
||||
<path style="&st6;" d="M96.577,16.348l1.419-0.765l1.339-0.383l1.265-0.075l1.225,0.191l1.111,0.461l1.069,0.689l0.996,0.844l0.921,0.998l0.841,1.149l0.802,1.187l0.726,1.227l0.652,1.264l0.611,1.266l0.537,1.148l0.455,1.111l0.423,0.957l-0.574,0.113l-0.5,0.115
|
||||
l-0.46,0.113l-0.421,0.076l-0.458,0.115l-0.461,0.115l-0.536,0.076l-0.613,0.115l-0.688-1.533l-0.688-1.417l-0.646-1.302l-0.651-1.188l-0.614-1.071l-0.573-0.961l-0.61-0.84l-0.574-0.807l-0.612-0.651l-0.613-0.575l-0.611-0.498l-0.65-0.421l-0.653-0.308
|
||||
l-0.685-0.269l-0.731-0.155l-0.765-0.113z"/>
|
||||
<path style="&st6;" d="M92.977,17.379l1.378-0.65l1.307-0.308l1.222,0.001l1.19,0.233l1.07,0.458l1.033,0.654l0.956,0.844l0.92,0.957l0.802,1.072l0.766,1.148l0.726,1.188l0.613,1.188l0.609,1.189l0.5,1.15l0.456,1.033l0.421,0.959l-0.459,0.113l-0.42,0.113
|
||||
l-0.424,0.076l-0.383,0.116l-0.421,0.077l-0.42,0.075l-0.462,0.113l-0.496,0.077l-0.231-0.765l-0.342-0.845l-0.42-0.842l-0.497-0.919l-0.535-0.919l-0.651-0.921l-0.649-0.92l-0.728-0.92l-0.765-0.841l-0.805-0.846l-0.803-0.766l-0.804-0.652l-0.843-0.613
|
||||
l-0.805-0.498l-0.802-0.383l-0.806-0.23z"/>
|
||||
<path style="&st6;" d="M88.648,18.484l1.417-0.762l1.38-0.345l1.379,0.039l1.301,0.385l1.264,0.612l1.226,0.879l1.149,1.038l1.069,1.147l0.995,1.229l0.881,1.264l0.8,1.227l0.65,1.187l0.536,1.036l0.422,0.879l0.23,0.652l0.113,0.383l-0.574,0.115l-0.498,0.113
|
||||
l-0.498,0.115l-0.5,0.115l-0.496,0.115l-0.459,0.074l-0.499,0.077l-0.497,0.076l-0.344-0.651l-0.384-0.804l-0.458-0.882l-0.537-0.921l-0.571-1.033l-0.614-1.034l-0.646-0.997l-0.691-1.034l-0.727-0.959L93.7,20.939l-0.802-0.804l-0.803-0.652l-0.844-0.537
|
||||
l-0.844-0.345l-0.878-0.152l-0.882,0.035z"/>
|
||||
<path style="&st6;" d="M85.508,19.709l1.266-0.842l1.224-0.459l1.149-0.113l1.149,0.19l1.071,0.461l1.033,0.692l0.958,0.842l0.915,1.035l0.844,1.113l0.805,1.184l0.727,1.229l0.687,1.225l0.574,1.15l0.535,1.073l0.421,0.918l0.383,0.766l-0.46,0.077l-0.382,0.114
|
||||
l-0.344,0.115l-0.308,0.113l-0.347,0.114l-0.305,0.115L96.796,30.9l-0.343,0.073l-0.344-0.955l-0.421-0.958l-0.422-0.921l-0.46-0.918l-0.537-0.919l-0.531-0.844l-0.613-0.844l-0.65-0.805l-0.689-0.767l-0.764-0.688l-0.765-0.614l-0.844-0.574l-0.919-0.5
|
||||
l-0.919-0.421l-0.996-0.308l-1.071-0.229z"/>
|
||||
<path style="&st6;" d="M81.523,20.625l1.113-0.422l1.109-0.266l1.148-0.077l1.074,0.078l1.109,0.231l1.032,0.345l1.034,0.536l1.034,0.652l0.956,0.768l0.918,0.92l0.881,0.996l0.842,1.112l0.802,1.226l0.689,1.34l0.688,1.418l0.571,1.491l-0.498,0.077l-0.495,0.076
|
||||
l-0.501,0.115l-0.497,0.153l-0.496,0.115l-0.498,0.153l-0.497,0.115l-0.5,0.074l-0.343-0.842l-0.343-0.882l-0.347-0.843l-0.342-0.883l-0.422-0.842l-0.419-0.805l-0.501-0.842l-0.534-0.767l-0.649-0.729l-0.688-0.728l-0.805-0.652l-0.88-0.613l-0.996-0.537
|
||||
l-1.11-0.498l-1.261-0.424l-1.381-0.344z"/>
|
||||
<path style="&st6;" d="M75.855,21.961l1.455-0.609l1.457-0.385l1.34-0.189l1.34-0.037l1.265,0.191l1.226,0.346l1.147,0.498l1.111,0.652l0.992,0.805l0.994,0.919l0.884,1.036l0.84,1.15l0.764,1.264l0.652,1.34l0.611,1.381l0.535,1.491l-0.459,0.077l-0.46,0.076
|
||||
l-0.536,0.078l-0.501,0.074l-0.533,0.078l-0.538,0.074l-0.535,0.076l-0.535,0.076l-0.269-1.072l-0.383-0.994l-0.42-0.996l-0.533-0.959l-0.575-0.881l-0.651-0.843l-0.688-0.805l-0.766-0.729l-0.842-0.689l-0.916-0.574l-0.959-0.539l-0.995-0.459l-1.071-0.346
|
||||
L78.19,22.23l-1.146-0.191l-1.188-0.078z"/>
|
||||
<path style="&st6;" d="M73.062,22.265l1.302-0.19l1.262-0.113L76.888,22l1.228,0.154l1.224,0.307l1.15,0.385l1.109,0.498l1.073,0.613l0.995,0.729l0.954,0.844l0.844,0.919l0.803,1.034l0.688,1.15l0.611,1.226l0.499,1.341l0.38,1.419l-0.46,0.035l-0.383,0.038
|
||||
l-0.382,0.077l-0.384,0.077l-0.384,0.074l-0.382,0.078l-0.46,0.114l-0.496,0.076l-0.651-1.111l-0.613-1.073l-0.532-0.958l-0.5-0.956l-0.535-0.844l-0.498-0.804l-0.497-0.767l-0.572-0.69l-0.612-0.651l-0.688-0.575l-0.768-0.535l-0.842-0.498l-0.995-0.425
|
||||
l-1.071-0.383l-1.264-0.346l-1.415-0.308z"/>
|
||||
<path style="&st6;" d="M66.973,23.064l1.914-0.457l1.8-0.268l1.646-0.075l1.531,0.154l1.417,0.307l1.302,0.461l1.187,0.573l1.074,0.77l1.03,0.842l0.917,0.96l0.844,1.034l0.802,1.112l0.728,1.147l0.688,1.227l0.612,1.226l0.611,1.265l-0.307,0.037l-0.42,0.037
|
||||
l-0.459,0.115l-0.501,0.076l-0.496,0.115l-0.462,0.114l-0.419,0.036l-0.346,0.039l-0.571-1.148l-0.613-1.035l-0.689-0.996l-0.726-0.918l-0.766-0.883l-0.805-0.806L76.618,27.4l-0.919-0.69l-0.956-0.616l-0.996-0.573l-1.034-0.498l-1.07-0.498l-1.111-0.423
|
||||
l-1.147-0.383l-1.189-0.346l-1.222-0.309z"/>
|
||||
<path style="&st6;" d="M63.335,23.443l1.068-0.189l1.113-0.037l1.225,0.038l1.263,0.192l1.267,0.271l1.3,0.384l1.303,0.497l1.302,0.614l1.3,0.729l1.224,0.845l1.186,0.92l1.147,1.035l1.035,1.149l0.956,1.225l0.841,1.342l0.728,1.455l-0.537,0.039l-0.533,0.076
|
||||
l-0.538,0.115l-0.536,0.113l-0.459,0.113l-0.385,0.117l-0.306,0.036l-0.19-0.037l-0.769-0.46l-0.763-0.537l-0.804-0.613l-0.843-0.689l-0.843-0.729l-0.878-0.768l-0.92-0.768l-0.916-0.802l-0.959-0.806l-0.956-0.807l-0.995-0.803l-0.996-0.729l-1.033-0.729
|
||||
l-0.995-0.652l-1.071-0.613l-1.031-0.537z"/>
|
||||
<path style="&st6;" d="M58.237,24.895l0.958-0.955l1.034-0.572l1.074-0.23l1.109,0.077l1.148,0.308l1.225,0.575l1.227,0.769l1.3,0.879l1.301,1.074l1.341,1.11l1.34,1.19l1.34,1.188l1.377,1.188l1.377,1.112l1.376,1.035l1.381,0.92l-0.421,0.074l-0.499,0.037
|
||||
l-0.612,0.041l-0.613,0.037l-0.648,0.037h-0.653h-0.574l-0.497-0.002l-1.034-0.766l-0.993-0.804l-0.996-0.808l-0.918-0.842l-0.919-0.805l-0.883-0.807l-0.878-0.805l-0.88-0.767l-0.919-0.688l-0.879-0.651l-0.92-0.575l-0.956-0.5l-0.996-0.422l-1.034-0.345
|
||||
l-1.073-0.192l-1.11-0.117z"/>
|
||||
<path style="&st6;" d="M54.408,25.352l1.61-0.381l1.493-0.152l1.415,0.076l1.343,0.271l1.262,0.461l1.226,0.575l1.186,0.729l1.148,0.805l1.11,0.919l1.109,0.922l1.071,0.995l1.111,0.996l1.109,0.958l1.107,0.959l1.188,0.843l1.185,0.807l-0.38,0.037l-0.498,0.075
|
||||
l-0.576,0.078l-0.576,0.036l-0.572,0.079l-0.5,0.072l-0.38,0.041l-0.231,0.037l-0.688-0.002l-0.69-0.189l-0.727-0.348l-0.766-0.496l-0.766-0.614l-0.843-0.728l-0.879-0.807l-0.919-0.844l-0.959-0.881l-1.031-0.918l-1.109-0.882l-1.148-0.844l-1.262-0.808
|
||||
l-1.302-0.728l-1.379-0.651l-1.494-0.5z"/>
|
||||
<path style="&st6;" d="M49.583,26.689L51,25.885l1.495-0.342h1.455l1.49,0.309l1.495,0.576l1.494,0.804l1.454,0.96l1.415,1.034l1.339,1.149l1.302,1.15l1.263,1.075l1.148,0.993l1.033,0.844l0.956,0.65l0.843,0.385l0.726,0.116l-0.61,0.077l-0.653,0.113
|
||||
l-0.727,0.113l-0.765,0.117l-0.767,0.074l-0.767,0.115l-0.728,0.038l-0.652,0.037l-1.07-0.806l-0.958-0.766l-0.879-0.767l-0.84-0.728l-0.767-0.73L59,31.752l-0.767-0.691l-0.726-0.651l-0.729-0.612l-0.804-0.576l-0.841-0.537l-0.919-0.496l-0.996-0.461
|
||||
l-1.071-0.383l-1.226-0.348l-1.34-0.307z"/>
|
||||
<g style="&st6;">
|
||||
<path d="M142.345,10.982l0.191-0.383l0.153-0.42l0.152-0.423l0.113-0.421l0.117-0.459l0.115-0.496l0.077-0.459l0.042-0.5l0.036-0.459l0.035-0.498l0.001-0.499l-0.035-0.46l-0.036-0.459l-0.08-0.457l-0.112-0.461l-0.114-0.42l0.611,0.804l0.459,0.882l0.345,0.842
|
||||
l0.189,0.88l0.076,0.919v0.92l-0.116,0.918l-0.194,0.92l-0.228,0.918l-0.31,0.883l-0.343,0.879l-0.343,0.88l-0.385,0.843l-0.347,0.842l-0.346,0.765l-0.343,0.767l0.074-0.152l0.037-0.269l0.042-0.266v-0.345l0.037-0.424v-0.421v-0.46l0.001-0.496l0.038-0.499
|
||||
v-0.498l0.039-0.534l0.04-0.498l0.038-0.461l0.078-0.461l0.075-0.42l0.116-0.383z"/>
|
||||
<path d="M154.014,26.885l-0.729-0.422l-0.729-0.462l-0.687-0.421l-0.688-0.422l-0.65-0.383l-0.651-0.422l-0.616-0.385l-0.609-0.42L148,23.165l-0.607-0.384l-0.614-0.422l-0.652-0.382l-0.611-0.386l-0.654-0.342l-0.686-0.386l-0.689-0.382l0.61,0.61l0.613,0.616
|
||||
l0.613,0.611l0.612,0.576l0.65,0.611l0.651,0.536l0.65,0.539l0.688,0.497l0.651,0.461l0.689,0.383l0.651,0.346l0.688,0.269l0.688,0.229l0.688,0.115l0.691,0.037l0.691-0.035z"/>
|
||||
<path d="M148.317,11.561l-0.536,0.308l-0.5,0.345l-0.495,0.345l-0.461,0.344l-0.46,0.343l-0.419,0.383l-0.424,0.421l-0.423,0.383l-0.384,0.422l-0.384,0.422l-0.382,0.421l-0.345,0.457l-0.383,0.422l-0.346,0.459l-0.344,0.459l-0.346,0.459l0.153-0.496l0.192-0.499
|
||||
l0.191-0.537l0.229-0.534l0.231-0.536l0.265-0.499l0.31-0.498l0.346-0.495l0.382-0.46l0.461-0.381l0.498-0.385l0.537-0.344l0.612-0.269l0.652-0.229l0.765-0.152l0.805-0.076z"/>
|
||||
<path d="M142.614,6.961l-0.153,0.767l-0.114,0.767l-0.154,0.766l-0.116,0.689L142,10.676l-0.114,0.689l-0.079,0.689l-0.115,0.689l-0.075,0.688l-0.117,0.689l-0.074,0.651l-0.118,0.689l-0.116,0.689l-0.115,0.689l-0.15,0.689l-0.157,0.727l-0.076-0.842
|
||||
l-0.113-0.805l-0.077-0.843l-0.076-0.841l-0.037-0.807l-0.038-0.805l0.039-0.805l0.039-0.764l0.076-0.767l0.116-0.688l0.194-0.689l0.229-0.651l0.269-0.573l0.384-0.537l0.422-0.46l0.497-0.421z"/>
|
||||
<path d="M146.714,5.703l0.692,0.648l0.416,0.729l0.189,0.766l0.04,0.805l-0.153,0.804l-0.307,0.843l-0.424,0.844l-0.498,0.841l-0.575,0.804l-0.611,0.805l-0.653,0.764l-0.65,0.689l-0.614,0.689l-0.534,0.572l-0.463,0.539l-0.383,0.418l0.077-1.147l0.154-0.995
|
||||
l0.191-0.844l0.307-0.764l0.306-0.65l0.386-0.574l0.382-0.535l0.424-0.501l0.383-0.496l0.424-0.495l0.382-0.538l0.307-0.613l0.307-0.688l0.23-0.766l0.194-0.919l0.075-1.032z"/>
|
||||
<path d="M141.803,17.951v-0.805l-0.039-0.765l-0.034-0.765l-0.04-0.768l-0.036-0.729l-0.077-0.727l-0.076-0.727l-0.073-0.691l-0.117-0.688l-0.114-0.728l-0.189-0.689l-0.152-0.689l-0.193-0.689l-0.268-0.689l-0.229-0.689l-0.306-0.689l1.111,1.073l0.918,1.034
|
||||
l0.649,0.959l0.457,0.92l0.309,0.879l0.151,0.805l0.037,0.806l-0.077,0.727l-0.195,0.689l-0.187,0.651l-0.27,0.613l-0.271,0.533l-0.23,0.537l-0.229,0.459l-0.152,0.459l-0.078,0.383z"/>
|
||||
<path d="M153.022,20.603l-0.613,0.114l-0.614,0.116l-0.611,0.075l-0.613,0.075l-0.609,0.038l-0.616,0.037h-0.613h-0.575l-0.612-0.039h-0.574l-0.613-0.077l-0.573-0.038l-0.613-0.04l-0.575-0.075l-0.612-0.079l-0.574-0.075l0.498,0.229l0.498,0.192l0.535,0.231
|
||||
l0.537,0.19l0.574,0.193l0.576,0.151l0.61,0.156l0.61,0.076l0.612,0.039h0.651l0.651-0.039l0.654-0.15l0.651-0.191l0.651-0.27l0.648-0.381l0.654-0.46z"/>
|
||||
<path d="M149.457,23.702l0.461,0.078l0.419,0.075l0.461,0.115l0.457,0.115l0.463,0.194l0.456,0.151l0.421,0.191l0.46,0.23l0.421,0.23l0.421,0.267l0.383,0.271l0.386,0.268l0.343,0.307l0.308,0.307l0.304,0.307l0.27,0.344l-0.269-0.917l-0.422-0.808l-0.494-0.688
|
||||
l-0.615-0.651l-0.688-0.536l-0.768-0.5l-0.84-0.421l-0.882-0.347l-0.919-0.306l-0.919-0.307l-0.955-0.231l-0.958-0.23l-0.957-0.193l-0.919-0.189l-0.843-0.154l-0.842-0.192l0.42,0.153l0.574,0.306l0.69,0.463l0.841,0.497l0.843,0.535l0.879,0.499l0.842,0.46
|
||||
l0.768,0.308z"/>
|
||||
<path d="M151.214,30.559l0.345-0.881l0.117-0.844l-0.116-0.842l-0.307-0.766l-0.457-0.729l-0.612-0.727l-0.728-0.69l-0.804-0.614l-0.843-0.613l-0.879-0.536l-0.919-0.538l-0.884-0.459l-0.801-0.42l-0.767-0.387l-0.651-0.344l-0.496-0.309l0.532,1.113l0.538,0.919
|
||||
l0.573,0.728l0.536,0.652l0.574,0.498l0.574,0.459l0.574,0.346l0.574,0.346l0.571,0.346l0.577,0.382l0.572,0.384l0.536,0.46l0.537,0.573l0.535,0.691l0.497,0.806l0.498,0.995z"/>
|
||||
<path d="M141.569,21.129l0.422,0.652l0.42,0.652l0.421,0.65l0.38,0.613l0.346,0.613l0.345,0.649l0.346,0.614l0.305,0.613l0.304,0.652l0.268,0.65l0.271,0.613l0.229,0.65l0.19,0.689l0.192,0.65l0.152,0.689l0.152,0.73l0.384-1.455l0.191-1.265l0.041-1.149
|
||||
l-0.115-0.994l-0.229-0.844l-0.346-0.766l-0.42-0.652l-0.458-0.537l-0.538-0.499l-0.535-0.421l-0.573-0.346l-0.537-0.306l-0.496-0.306l-0.46-0.268l-0.342-0.307l-0.31-0.271z"/>
|
||||
</g>
|
||||
</g><!-- Feather_x0020_shadow -->
|
||||
<g id="Layer_x0020_1">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd1" x1="-3510.3682" y1="4186.3037" x2="-3520.3882" y2="4153.2837" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 -2022.5977 2980.6621)">
|
||||
<stop offset="0" style="stop-color:#4F0C81"/>
|
||||
<stop offset="0.0701" style="stop-color:#690C73"/>
|
||||
<stop offset="0.209" style="stop-color:#9A0A5B"/>
|
||||
<stop offset="0.3368" style="stop-color:#C20748"/>
|
||||
<stop offset="0.4512" style="stop-color:#E0053A"/>
|
||||
<stop offset="0.5481" style="stop-color:#F20032"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g style="fill-rule:nonzero;fill:url(#AIgd1);stroke:#000000;stroke-width:0.254;stroke-miterlimit:4;">
|
||||
<path style="&st23;" d="M0.241,40.672c13.561-1.867,63.613-4.393,85.943-8.051c17.961-2.937,35.502-8.285,52.242-13.9c4.328-1.453,11.991-4.434,16.896-7.07c3.104-2.373,10.571-5.889,12.606-9.222c-32.45,15.407-45.513,19.649-83.582,27.354
|
||||
c-15.436,3.169-71.617,7.721-84.105,10.889z"/>
|
||||
<defs>
|
||||
<linearGradient id="AIgd2" gradientUnits="userSpaceOnUse" x1="-3788.0986" y1="-3507.6162" x2="-3789.1638" y2="-3479.4058" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#4F0C81"/>
|
||||
<stop offset="0.0701" style="stop-color:#690C73"/>
|
||||
<stop offset="0.209" style="stop-color:#9A0A5B"/>
|
||||
<stop offset="0.3368" style="stop-color:#C20748"/>
|
||||
<stop offset="0.4512" style="stop-color:#E0053A"/>
|
||||
<stop offset="0.5481" style="stop-color:#F20032"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st1;" d="M48.261,46.645l1.454,0.498l1.418,0.118l1.417-0.229l1.417-0.574l1.379-0.766l1.38-0.994l1.305-1.146l1.301-1.226l1.228-1.26l1.149-1.267l1.111-1.224l1.035-1.148l0.958-0.957l0.881-0.763l0.767-0.501l0.689-0.228l-0.576,0.036l-0.611,0.038
|
||||
l-0.689,0.077l-0.688,0.074l-0.69,0.078l-0.689,0.076l-0.689,0.038l-0.612,0.076l-0.957,0.88l-0.921,0.842l-0.805,0.842l-0.729,0.844l-0.727,0.801l-0.688,0.805l-0.652,0.764l-0.691,0.729l-0.688,0.727l-0.729,0.65l-0.767,0.65l-0.882,0.61l-0.919,0.576
|
||||
l-1.034,0.535l-1.149,0.496l-1.302,0.421z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd3" x1="-3817.4316" y1="-3498.7192" x2="-3818.3076" y2="-3475.5176" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#4F0C81"/>
|
||||
<stop offset="0.0701" style="stop-color:#690C73"/>
|
||||
<stop offset="0.209" style="stop-color:#9A0A5B"/>
|
||||
<stop offset="0.3368" style="stop-color:#C20748"/>
|
||||
<stop offset="0.4512" style="stop-color:#E0053A"/>
|
||||
<stop offset="0.5481" style="stop-color:#F20032"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st2;" d="M43.511,46.45l1.688,0.271l1.569,0.038l1.455-0.15l1.377-0.345l1.265-0.534l1.151-0.652l1.148-0.766l1.034-0.879l1.035-0.918l0.957-0.995l0.959-1.072l0.921-1.032l0.956-1.033l0.96-1.033l0.958-0.955l0.995-0.881l-0.381,0.037h-0.423
|
||||
l-0.384,0.039l-0.419,0.037l-0.424,0.037l-0.421,0.078l-0.42,0.035l-0.42,0.041l-0.421,0.037l-0.461,0.037l-0.422,0.078l-0.459,0.037l-0.459,0.037l-0.46,0.037h-0.46l-0.459,0.039l-0.347,0.535l-0.42,0.651l-0.537,0.765l-0.575,0.805l-0.69,0.881l-0.729,0.879
|
||||
l-0.766,0.918l-0.805,0.879l-0.844,0.844l-0.84,0.805l-0.885,0.726l-0.842,0.612l-0.844,0.496l-0.843,0.346l-0.804,0.189h-0.768z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd4" x1="-3806.9058" y1="-3505.3105" x2="-3807.8401" y2="-3480.5605" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#4F0C81"/>
|
||||
<stop offset="0.0701" style="stop-color:#690C73"/>
|
||||
<stop offset="0.209" style="stop-color:#9A0A5B"/>
|
||||
<stop offset="0.3368" style="stop-color:#C20748"/>
|
||||
<stop offset="0.4512" style="stop-color:#E0053A"/>
|
||||
<stop offset="0.5481" style="stop-color:#F20032"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st3;" d="M40.371,46.487l0.958,0.115l0.919,0.076l0.881-0.037l0.881-0.152l0.882-0.19l0.843-0.344l0.841-0.421l0.883-0.574l0.882-0.65l0.882-0.764l0.882-0.921l0.919-0.993l0.958-1.188l0.997-1.3l1.034-1.416l1.074-1.607l-0.651-0.002l-0.613,0.039
|
||||
l-0.614,0.076l-0.612,0.076l-0.611,0.078l-0.613,0.072h-0.688h-0.727l-0.616,0.612l-0.573,0.65l-0.576,0.614l-0.574,0.688l-0.575,0.65l-0.535,0.689l-0.576,0.648l-0.539,0.691l-0.572,0.65l-0.574,0.65l-0.612,0.65l-0.577,0.613l-0.65,0.572l-0.652,0.574
|
||||
l-0.65,0.573l-0.729,0.499z"/>
|
||||
<path style="&st2;" d="M37.041,46.329l0.728,0.387l0.802,0.153l0.807-0.116l0.842-0.342l0.844-0.5l0.881-0.689l0.88-0.764l0.884-0.917l0.841-0.958l0.884-0.993l0.804-0.997l0.805-0.957l0.768-0.957l0.729-0.84l0.689-0.729l0.614-0.613l-4.099,0.382l-0.462,0.612
|
||||
l-0.498,0.61l-0.458,0.616l-0.459,0.608l-0.46,0.614l-0.5,0.612l-0.461,0.612l-0.497,0.612l-0.537,0.573l-0.537,0.611l-0.536,0.578l-0.613,0.57l-0.612,0.574l-0.653,0.576l-0.688,0.536l-0.728,0.532z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd6" x1="-3825.4375" y1="-3503.8936" x2="-3826.3342" y2="-3480.1453" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#4F0C81"/>
|
||||
<stop offset="0.0701" style="stop-color:#690C73"/>
|
||||
<stop offset="0.209" style="stop-color:#9A0A5B"/>
|
||||
<stop offset="0.3368" style="stop-color:#C20748"/>
|
||||
<stop offset="0.4512" style="stop-color:#E0053A"/>
|
||||
<stop offset="0.5481" style="stop-color:#F20032"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st4;" d="M30.262,45.444l1.188,0.767l1.109,0.5l1.11,0.231h1.074l1.033-0.191l0.995-0.343l0.955-0.538l0.96-0.687l0.919-0.841l0.923-0.881l0.84-1.037l0.884-1.031l0.843-1.109l0.844-1.146l0.805-1.148l0.805-1.111l-0.688,0.115l-0.536,0.037
|
||||
l-0.384,0.037l-0.345,0.039l-0.343,0.039l-0.346-0.001l-0.499,0.037l-0.651,0.037l-0.729,1.034l-0.727,0.955l-0.729,0.921l-0.805,0.804l-0.767,0.727l-0.767,0.689l-0.804,0.611l-0.768,0.536l-0.766,0.458l-0.768,0.421l-0.727,0.306l-0.689,0.269l-0.689,0.229
|
||||
l-0.614,0.152l-0.612,0.075l-0.537,0.038z"/>
|
||||
<path style="&st2;" d="M26.7,45.21l1.228,0.153l1.186,0.08l1.149-0.078l1.109-0.151l1.036-0.227l1.033-0.345l0.958-0.422l0.92-0.535l0.92-0.572l0.844-0.651l0.843-0.727l0.803-0.804l0.766-0.842l0.73-0.918l0.729-0.959l0.689-0.994l-0.767,0.039l-0.844,0.074
|
||||
l-0.802,0.076l-0.806,0.038l-0.69,0.077l-0.574,0.035l-0.421,0.039l-0.191,0.037l-0.076,0.078l-0.191,0.19l-0.308,0.306l-0.382,0.385l-0.422,0.459l-0.536,0.536l-0.577,0.573l-0.648,0.614l-0.731,0.608l-0.764,0.65l-0.768,0.615l-0.843,0.611l-0.88,0.572
|
||||
l-0.881,0.535l-0.921,0.46L26.7,45.21z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd8" x1="-3841.6636" y1="-3502.4297" x2="-3842.4236" y2="-3482.3" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#4F0C81"/>
|
||||
<stop offset="0.0701" style="stop-color:#690C73"/>
|
||||
<stop offset="0.209" style="stop-color:#9A0A5B"/>
|
||||
<stop offset="0.3368" style="stop-color:#C20748"/>
|
||||
<stop offset="0.4512" style="stop-color:#E0053A"/>
|
||||
<stop offset="0.5481" style="stop-color:#F20032"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st5;" d="M21.991,45.476l1.033,0.192l0.998,0.076l1.033-0.113l1.034-0.191l1.034-0.342l0.994-0.423l0.996-0.497l0.998-0.611l0.919-0.648l0.918-0.69l0.881-0.726l0.845-0.766l0.806-0.804l0.766-0.765l0.69-0.768l0.651-0.766h-0.461l-0.574,0.04
|
||||
l-0.611,0.036H34.29l-0.613,0.073l-0.613,0.041l-0.496,0.039l-0.423,0.075v0.077l-0.154,0.189l-0.381,0.347l-0.537,0.42l-0.652,0.535l-0.764,0.613l-0.845,0.652l-0.882,0.647l-0.92,0.687l-0.918,0.691l-0.881,0.65l-0.846,0.574L23.6,44.559L22.91,44.98
|
||||
l-0.537,0.305l-0.382,0.191z"/>
|
||||
<path style="&st2;" d="M16.782,45.434l0.612,0.612l0.806,0.267l0.996,0.001l1.11-0.266l1.227-0.46l1.262-0.646l1.341-0.768l1.305-0.841l1.302-0.919l1.227-0.916l1.147-0.879l0.999-0.844l0.881-0.688l0.65-0.574l0.423-0.381l0.192-0.154l-0.498,0.038l-0.538,0.036
|
||||
l-0.574,0.037l-0.572,0.041l-0.614,0.072l-0.614,0.039l-0.611,0.04l-0.652,0.038l-0.688,0.419l-0.688,0.422l-0.693,0.456l-0.649,0.425l-0.689,0.456l-0.653,0.498l-0.688,0.459l-0.653,0.459l-0.69,0.496l-0.65,0.461l-0.688,0.459l-0.651,0.458l-0.688,0.421
|
||||
l-0.691,0.422l-0.651,0.419l-0.69,0.384z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd10" x1="-3872.1543" y1="-3503.9727" x2="-3872.3848" y2="-3493.1567" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#F7EE5F"/>
|
||||
<stop offset="0.186" style="stop-color:#F5D65D"/>
|
||||
<stop offset="0.3825" style="stop-color:#F4C35B"/>
|
||||
<stop offset="0.5198" style="stop-color:#F4BC5A"/>
|
||||
<stop offset="0.7809" style="stop-color:#F5DA5D"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st8;" d="M12.953,45.507l0.652,0.229l0.649,0.115l0.65,0.037l0.653-0.11l0.65-0.194l0.689-0.265l0.727-0.383l0.768-0.46l0.843-0.535l0.881-0.612l0.959-0.688l1.072-0.728l1.187-0.803l1.265-0.881l1.379-0.918l1.534-0.957l-0.653,0.039l-0.727,0.039
|
||||
l-0.65-0.001l-0.65,0.038l-0.574,0.037l-0.459,0.038l-0.307,0.039l-0.116,0.036l-0.077,0.115l-0.229,0.23l-0.346,0.307l-0.458,0.42L21.69,40.19l-0.653,0.577l-0.689,0.571l-0.805,0.613l-0.805,0.611l-0.843,0.612l-0.843,0.534l-0.882,0.537l-0.842,0.457
|
||||
l-0.842,0.383l-0.805,0.267l-0.729,0.154z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd11" x1="-3878.0732" y1="-3508.4204" x2="-3874.5449" y2="-3484.9487" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#F7EE5F"/>
|
||||
<stop offset="0.186" style="stop-color:#F5D65D"/>
|
||||
<stop offset="0.3825" style="stop-color:#F4C35B"/>
|
||||
<stop offset="0.5198" style="stop-color:#F4BC5A"/>
|
||||
<stop offset="0.7809" style="stop-color:#F5DA5D"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st9;" d="M10.158,45.084l0.879,0.344l0.958,0.152l0.998-0.072l1.033-0.268l1.072-0.383l1.033-0.498l1.074-0.608l0.996-0.69l0.958-0.688l0.92-0.728l0.843-0.688l0.728-0.691l0.653-0.572l0.495-0.499l0.383-0.341l0.232-0.232l-0.613,0.038l-0.577,0.04
|
||||
l-0.571,0.037l-0.575,0.074l-0.535,0.041l-0.577,0.037l-0.61,0.074l-0.613,0.038l-0.459,0.421l-0.501,0.42l-0.458,0.421l-0.499,0.46l-0.498,0.498l-0.497,0.459l-0.536,0.459l-0.538,0.458l-0.536,0.423l-0.534,0.421l-0.577,0.381l-0.534,0.343l-0.614,0.309
|
||||
l-0.574,0.266l-0.613,0.193l-0.613,0.152z"/>
|
||||
<path style="&st8;" d="M6.791,44.01l0.765,0.535l0.763,0.345l0.767,0.154l0.767,0.039l0.768-0.151l0.766-0.232l0.766-0.343l0.765-0.458l0.729-0.498l0.766-0.611l0.729-0.613l0.729-0.65l0.727-0.648l0.69-0.69l0.689-0.649l0.69-0.615l-0.422,0.041l-0.46,0.076
|
||||
l-0.497,0.037l-0.535,0.039l-0.575,0.074l-0.612,0.039l-0.652,0.074l-0.612,0.037l-0.192,0.461L13.84,40.26l-0.271,0.422l-0.346,0.422l-0.381,0.383l-0.424,0.383l-0.42,0.381l-0.496,0.306l-0.5,0.308l-0.537,0.268l-0.573,0.268L9.316,43.59l-0.612,0.154
|
||||
l-0.61,0.15L7.44,43.971L6.791,44.01z"/>
|
||||
<path style="&st9;" d="M3.763,43.434L4.415,43.7l0.69,0.193l0.726,0.115l0.806,0.001l0.767-0.038l0.842-0.115l0.805-0.229l0.803-0.229l0.768-0.344l0.729-0.384l0.65-0.421l0.614-0.495l0.536-0.538l0.46-0.572l0.345-0.651l0.23-0.652l-0.46,0.04l-0.46,0.037
|
||||
l-0.497,0.076l-0.5,0.038l-0.495,0.038l-0.537,0.037l-0.574,0.039l-0.652,0.036L9.74,40.067l-0.307,0.384l-0.306,0.345l-0.306,0.306l-0.307,0.306l-0.348,0.229l-0.343,0.27l-0.347,0.229l-0.381,0.191l-0.422,0.19l-0.421,0.19L5.796,42.86l-0.462,0.152
|
||||
l-0.495,0.152L4.302,43.28l-0.539,0.154z"/>
|
||||
<path style="&st8;" d="M2.193,42.896l0.23,0.229l0.347,0.152l0.42,0.078h0.46l0.536-0.038l0.573-0.112l0.613-0.193l0.612-0.189l0.613-0.27l0.614-0.307l0.612-0.342l0.537-0.385l0.537-0.42l0.458-0.459l0.345-0.46l0.307-0.498l-0.343,0.041l-0.308,0.037
|
||||
l-0.383,0.038L8.63,39.836l-0.344,0.039l-0.307,0.036l-0.268,0.001l-0.269-0.001v0.153L7.1,40.37l-0.576,0.422L5.757,41.29L4.84,41.786l-0.922,0.499l-0.919,0.381l-0.806,0.23z"/>
|
||||
<path style="&st8;" d="M1.084,41.822l0.078,0.536l0.192,0.344l0.305,0.155l0.42,0.076l0.499-0.075l0.574-0.192l0.573-0.229l0.614-0.306l0.613-0.346l0.574-0.381l0.575-0.381l0.461-0.347l0.42-0.307l0.307-0.229l0.191-0.152l0.038-0.076l-2.986,0.341l-0.229,0.152
|
||||
l-0.386,0.192l-0.458,0.23l-0.5,0.229l-0.535,0.269l-0.497,0.189l-0.461,0.192l-0.384,0.114z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd16" x1="-3892.5645" y1="-3497.0415" x2="-3892.7126" y2="-3490.0823" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#F7EE5F"/>
|
||||
<stop offset="0.186" style="stop-color:#F5D65D"/>
|
||||
<stop offset="0.3825" style="stop-color:#F4C35B"/>
|
||||
<stop offset="0.5198" style="stop-color:#F4BC5A"/>
|
||||
<stop offset="0.7809" style="stop-color:#F5DA5D"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st10;" d="M4.533,40.253l-0.651,0.039l-0.574,0.039l-0.536,0.036l-0.498,0.037l-0.46,0.04l-0.497,0.036l-0.498,0.077l-0.577,0.114l0.117,0.729l0.343,0.345l0.537,0.001l0.689-0.19l0.689-0.347l0.729-0.382l0.651-0.345l0.536-0.229z"/>
|
||||
<path style="&st8;" d="M4.419,39.874l-0.653,0.112l-0.573,0.076l-0.497,0.114l-0.5,0.075l-0.458,0.114l-0.459,0.115l-0.537,0.116L0.167,40.75l-0.038-0.844l0.345-0.536l0.537-0.192l0.727-0.034l0.766,0.151l0.766,0.193l0.651,0.23l0.499,0.154z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd18" x1="-3716.793" y1="-3522.1724" x2="-3726.813" y2="-3555.1924" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#4F0C81"/>
|
||||
<stop offset="0.0701" style="stop-color:#690C73"/>
|
||||
<stop offset="0.209" style="stop-color:#9A0A5B"/>
|
||||
<stop offset="0.3368" style="stop-color:#C20748"/>
|
||||
<stop offset="0.4512" style="stop-color:#E0053A"/>
|
||||
<stop offset="0.5481" style="stop-color:#F20032"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st11;" d="M44.258,24.317l1.684-0.651l1.611-0.419l1.491-0.113l1.417,0.076l1.379,0.309l1.262,0.459l1.227,0.652l1.187,0.729l1.149,0.845l1.11,0.919l1.106,0.959l1.074,0.996l1.071,0.957l1.07,0.921l1.073,0.882l1.109,0.807l-0.384,0.073
|
||||
l-0.421,0.038l-0.421,0.039l-0.383,0.076l-0.423,0.039l-0.421,0.038l-0.459,0.036l-0.421,0.039l-0.422,0.035l-0.461,0.041l-0.458,0.076l-0.422,0.037l-0.461,0.04l-0.457,0.074l-0.498,0.037l-0.461,0.077l-0.382-0.534l-0.495-0.653l-0.576-0.766l-0.688-0.768
|
||||
l-0.727-0.843l-0.805-0.843l-0.879-0.844l-0.881-0.806l-0.959-0.766l-0.953-0.688l-0.957-0.615l-0.997-0.497l-0.957-0.385l-0.958-0.23l-0.956-0.039l-0.88,0.152z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd19" x1="-3818.3081" y1="-3506.1616" x2="-3836.2568" y2="-3532.4282" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#4F0C81"/>
|
||||
<stop offset="0.0701" style="stop-color:#690C73"/>
|
||||
<stop offset="0.209" style="stop-color:#9A0A5B"/>
|
||||
<stop offset="0.3368" style="stop-color:#C20748"/>
|
||||
<stop offset="0.4512" style="stop-color:#E0053A"/>
|
||||
<stop offset="0.5481" style="stop-color:#F20032"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st12;" d="M41.383,24.964l0.96-0.345l0.92-0.227l0.878-0.152l0.923-0.077l0.878,0.077l0.919,0.192l0.88,0.268l0.919,0.423l0.956,0.537l0.959,0.691l0.995,0.803l1.033,0.96l1.108,1.11l1.11,1.266l1.186,1.418l1.264,1.57l-0.69,0.039l-0.611,0.072
|
||||
l-0.576,0.039l-0.534,0.076l-0.537,0.076l-0.573,0.076l-0.653,0.113l-0.765,0.117l-0.689-0.574l-0.65-0.613l-0.689-0.653l-0.612-0.653l-0.649-0.649l-0.649-0.65l-0.613-0.653l-0.651-0.651l-0.651-0.612l-0.688-0.574l-0.651-0.576l-0.688-0.574l-0.727-0.498
|
||||
l-0.767-0.423l-0.766-0.421l-0.805-0.347z"/>
|
||||
<path style="&st11;" d="M38.167,25.805l0.727-0.611l0.808-0.307l0.88-0.074l0.879,0.191l0.958,0.383l0.956,0.538l0.995,0.688l0.996,0.805l0.996,0.881l0.993,0.921l0.956,0.921l0.92,0.958l0.841,0.88l0.84,0.805l0.729,0.691l0.69,0.574l-4.176,0.496l-0.536-0.613
|
||||
l-0.536-0.615l-0.498-0.613l-0.533-0.611l-0.537-0.613l-0.534-0.651l-0.573-0.614l-0.535-0.576l-0.613-0.574l-0.612-0.573l-0.652-0.538l-0.688-0.498l-0.728-0.497l-0.766-0.423l-0.804-0.383l-0.843-0.346z"/>
|
||||
<path style="&st12;" d="M31.886,28.481l1.148-1.111l1.111-0.802l1.073-0.534l1.072-0.307l1.072-0.037l1.034,0.154l1.033,0.385l0.996,0.498l0.994,0.689l0.955,0.804l0.996,0.921l0.919,0.996l0.957,1.035l0.917,1.111l0.918,1.111l0.919,1.11l-0.729,0.04
|
||||
l-0.611,0.035l-0.498,0.039l-0.461,0.076l-0.458,0.076l-0.499,0.075l-0.571,0.078l-0.692,0.112l-0.803-1.034l-0.766-0.919l-0.803-0.844l-0.766-0.728l-0.802-0.612l-0.766-0.538l-0.728-0.461l-0.768-0.382l-0.728-0.309l-0.688-0.229l-0.728-0.192l-0.689-0.152
|
||||
l-0.648-0.08l-0.653-0.074h-0.649l-0.612-0.002z"/>
|
||||
<path style="&st11;" d="M27.402,29.512l1.267-0.461l1.187-0.344l1.187-0.189l1.109-0.077l1.111,0.001l1.071,0.155l1.035,0.231l0.996,0.347l0.995,0.419l0.919,0.537l0.957,0.613l0.878,0.689l0.882,0.768l0.84,0.842l0.806,0.922l0.803,0.996l-0.803,0.115
|
||||
l-0.919,0.111l-0.921,0.115l-0.921,0.115l-0.842,0.113L38.39,35.61l-0.499,0.037l-0.191-0.002l-0.075-0.075l-0.192-0.153l-0.269-0.268l-0.343-0.346l-0.423-0.42l-0.495-0.424l-0.575-0.496l-0.65-0.538l-0.728-0.499l-0.765-0.536l-0.844-0.5l-0.918-0.495
|
||||
l-0.92-0.424l-0.993-0.383l-1.034-0.348l-1.073-0.229z"/>
|
||||
<path style="&st12;" d="M21.735,30.196l1.034-0.418l1.035-0.307l1.108-0.115l1.073,0.001l1.111,0.118l1.108,0.229l1.072,0.346l1.111,0.422l1.033,0.498l1.033,0.537l0.995,0.651l0.994,0.651l0.882,0.693l0.881,0.727l0.802,0.728l0.726,0.729l-0.495,0.037
|
||||
l-0.612,0.076l-0.689,0.075l-0.728,0.077l-0.729,0.075l-0.652,0.076l-0.573,0.037h-0.422l-0.001-0.077l-0.191-0.191l-0.38-0.268l-0.574-0.385l-0.689-0.42l-0.805-0.5l-0.919-0.537l-0.956-0.533l-0.955-0.54l-0.996-0.538l-0.998-0.496l-0.916-0.457l-0.846-0.387
|
||||
l-0.762-0.307l-0.616-0.193l-0.495-0.115z"/>
|
||||
<path style="&st11;" d="M16.373,31.303l0.537-0.842l0.805-0.498l0.996-0.188h1.147l1.264,0.268l1.379,0.422l1.455,0.576l1.415,0.651l1.455,0.729l1.339,0.766l1.265,0.73l1.149,0.727l0.954,0.615l0.729,0.459l0.496,0.342l0.23,0.117l-0.537,0.116l-0.61,0.077
|
||||
l-0.653,0.073l-0.689,0.038l-0.727,0.078l-0.729,0.074l-0.688,0.115l-0.689,0.115l-0.729-0.346l-0.688-0.348l-0.729-0.381l-0.688-0.385l-0.69-0.346l-0.688-0.383l-0.728-0.384l-0.688-0.382l-0.689-0.35l-0.688-0.382l-0.729-0.343l-0.688-0.307l-0.689-0.348
|
||||
l-0.727-0.305l-0.727-0.311l-0.729-0.266z"/>
|
||||
<path style="&st8;" d="M9.518,33.135l0.844-0.611l0.956-0.346l0.996-0.149l1.07,0.001l1.113,0.189l1.148,0.348l1.11,0.421l1.108,0.5l1.035,0.574l1.032,0.575l0.919,0.614l0.804,0.536l0.727,0.499l0.574,0.46l0.42,0.306l0.229,0.193l-0.612,0.074l-0.574,0.077
|
||||
l-0.495,0.076l-0.501,0.037l-0.536,0.037l-0.496,0.076L19.813,37.7l-0.61,0.074l-0.537-0.342l-0.536-0.348l-0.574-0.42l-0.574-0.383L16.37,35.86l-0.613-0.421l-0.612-0.423l-0.612-0.383l-0.614-0.384l-0.647-0.308l-0.652-0.305l-0.613-0.232l-0.648-0.189
|
||||
l-0.615-0.117H10.13l-0.612,0.037z"/>
|
||||
<path style="&st9;" d="M12.044,32.029l0.653-0.423l0.688-0.305l0.652-0.154l0.688-0.074l0.689,0.037l0.728,0.152l0.807,0.27l0.838,0.308l0.921,0.423l0.959,0.459l1.07,0.576l1.147,0.614l1.265,0.65l1.378,0.692l1.49,0.765l1.648,0.768l-0.613,0.04L26.363,36.9
|
||||
l-0.688,0.078l-0.691,0.112l-0.613,0.078l-0.457,0.078l-0.346,0.035l-0.153-0.035l-0.075-0.079l-0.27-0.19l-0.345-0.309l-0.459-0.344l-0.573-0.422l-0.689-0.459l-0.729-0.5l-0.803-0.499l-0.879-0.498l-0.882-0.497l-0.955-0.425l-0.957-0.384l-0.959-0.304
|
||||
l-0.957-0.196l-0.92-0.111l-0.919-0.001z"/>
|
||||
<path style="&st9;" d="M6.451,35.086l0.691-0.766l0.726-0.574l0.729-0.382l0.766-0.229l0.767-0.037l0.804,0.076l0.844,0.192l0.804,0.271l0.84,0.422l0.805,0.42l0.842,0.536l0.843,0.539l0.843,0.536l0.803,0.574l0.805,0.578l0.803,0.496l-0.459,0.076l-0.498,0.038
|
||||
l-0.574,0.116l-0.613,0.072l-0.649,0.079l-0.69,0.073l-0.65,0.078l-0.653,0.075l-0.229-0.497l-0.269-0.422l-0.305-0.422l-0.384-0.383l-0.383-0.344l-0.419-0.27l-0.5-0.271l-0.497-0.229l-0.536-0.191l-0.572-0.154L9.706,35.05l-0.612-0.079l-0.65-0.037
|
||||
l-0.652,0.001l-0.65,0.073l-0.689,0.078z"/>
|
||||
<path style="&st9;" d="M1.738,37.609l0.193-0.306l0.306-0.268l0.422-0.228l0.459-0.154l0.536-0.114l0.612-0.036l0.613,0.001l0.689,0.037l0.65,0.114l0.689,0.155l0.652,0.229l0.61,0.269l0.576,0.308l0.534,0.383l0.422,0.422l0.381,0.461l-0.343,0.076L9.32,39.034
|
||||
L8.9,39.11l-0.423,0.074l-0.382,0.037l-0.308,0.041H7.56H7.482l-0.153-0.078l-0.381-0.23l-0.652-0.307L5.53,38.304l-0.881-0.309l-0.995-0.269l-0.957-0.154l-0.959,0.036z"/>
|
||||
<path style="&st8;" d="M0.818,39.178l-0.036-0.609l0.152-0.461l0.271-0.307l0.42-0.191l0.497-0.078l0.575,0.041l0.613,0.076l0.688,0.154l0.65,0.229l0.65,0.231l0.613,0.23l0.535,0.23l0.46,0.23l0.383,0.154l0.191,0.152l0.078,0.036l-3.065,0.533l-0.27-0.112
|
||||
l-0.42-0.117l-0.459-0.153L2.81,39.294l-0.536-0.115l-0.535-0.074L1.24,39.104l-0.422,0.074z"/>
|
||||
<path style="&st8;" d="M3.349,36.616l0.612-0.498l0.651-0.383l0.729-0.342l0.805-0.231l0.806-0.153l0.803-0.11l0.844,0.001l0.841,0.072l0.804,0.156l0.804,0.27l0.729,0.307l0.689,0.383l0.649,0.461l0.536,0.535l0.421,0.613l0.344,0.689l-0.499,0.039l-0.457,0.077
|
||||
l-0.5,0.036l-0.536,0.076l-0.535,0.078l-0.574,0.037L10.7,38.844l-0.65,0.072l-0.231-0.341l-0.268-0.308L9.244,38l-0.343-0.27L8.519,37.5l-0.421-0.23l-0.423-0.192l-0.459-0.151l-0.459-0.154L6.26,36.657L5.8,36.581l-0.499-0.04l-0.497-0.037l-0.496-0.001
|
||||
l-0.499,0.038l-0.46,0.075z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd31" x1="-3644.5117" y1="-3531.5527" x2="-3636.6318" y2="-3508.3506" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#681083"/>
|
||||
<stop offset="0.0006" style="stop-color:#681083"/>
|
||||
<stop offset="0.072" style="stop-color:#8D0F6D"/>
|
||||
<stop offset="0.1459" style="stop-color:#AD0D5A"/>
|
||||
<stop offset="0.2229" style="stop-color:#C80A4A"/>
|
||||
<stop offset="0.3041" style="stop-color:#DE083E"/>
|
||||
<stop offset="0.3913" style="stop-color:#ED0335"/>
|
||||
<stop offset="0.4884" style="stop-color:#F60030"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st13;" d="M139.689,18.299l0.077,0.117l0.192,0.307l0.267,0.497l0.344,0.613l0.386,0.727l0.382,0.806l0.346,0.92l0.303,0.918l0.228,0.959l0.079,0.92L142.251,26l-0.192,0.842l-0.422,0.768l-0.651,0.687l-0.919,0.535l-1.189,0.384l0.193-0.578
|
||||
l0.117-0.611l0.113-0.611l0.076-0.689l0.039-0.689V25.31l-0.037-0.69l-0.037-0.729l-0.076-0.729l-0.074-0.725l-0.116-0.69l-0.152-0.651l-0.113-0.651l-0.154-0.575l-0.188-0.574l-0.155-0.498l0.191-0.075l0.154-0.04l0.19-0.076l0.156-0.036l0.153-0.077l0.15-0.039
|
||||
l0.191-0.078l0.19-0.076z"/>
|
||||
<path style="&st13;" d="M138.389,18.835l0.534,2.108l0.382,1.914l0.189,1.646l0.037,1.455l-0.077,1.264l-0.23,1.072l-0.307,0.92l-0.347,0.764l-0.46,0.613l-0.497,0.496l-0.498,0.347l-0.495,0.267l-0.54,0.191l-0.459,0.076l-0.42,0.037h-0.384l0.229-0.613
|
||||
l0.229-0.612l0.192-0.688l0.154-0.689l0.152-0.767l0.118-0.764l0.116-0.767l0.075-0.803l0.041-0.806l0.001-0.843l-0.041-0.804l-0.073-0.843l-0.114-0.804l-0.155-0.843l-0.188-0.766l-0.229-0.805l0.457-0.154l0.463-0.152l0.422-0.152l0.418-0.115l0.348-0.113
|
||||
l0.381-0.115l0.306-0.076l0.27-0.077z"/>
|
||||
<path style="&st13;" d="M135.285,19.792l0.231,0.765l0.227,0.959l0.155,1.073l0.072,1.186l0.041,1.303l-0.002,1.301l-0.116,1.301l-0.192,1.267l-0.271,1.187l-0.345,1.109l-0.499,0.957l-0.572,0.766l-0.731,0.574l-0.84,0.304l-0.96,0.04l-1.108-0.307l0.422-0.691
|
||||
l0.421-0.727l0.347-0.766l0.307-0.727l0.229-0.803l0.231-0.768l0.152-0.805l0.154-0.805l0.077-0.804l0.038-0.841v-0.805l-0.073-0.842l-0.076-0.842l-0.152-0.806l-0.152-0.845l-0.229-0.803l0.383-0.152l0.458-0.152l0.461-0.153l0.46-0.153l0.46-0.151l0.382-0.153
|
||||
l0.346-0.117l0.267-0.074z"/>
|
||||
<path style="&st13;" d="M125.546,35.674l1.036,0.08l0.997-0.154l0.879-0.381l0.805-0.535l0.766-0.73l0.652-0.879l0.536-0.994l0.499-1.109l0.384-1.188l0.309-1.266l0.192-1.3l0.078-1.302l0.001-1.301l-0.114-1.303l-0.229-1.265l-0.343-1.188l-0.422,0.152
|
||||
l-0.425,0.154l-0.456,0.114l-0.463,0.152l-0.458,0.154l-0.497,0.153l-0.46,0.152l-0.497,0.152v0.804l-0.001,0.879l-0.04,0.999l-0.039,1.033l-0.039,1.033l-0.038,1.072l-0.116,1.11l-0.113,1.032l-0.156,1.035L127.62,32l-0.233,0.919l-0.268,0.806l-0.308,0.687
|
||||
l-0.384,0.577l-0.421,0.419l-0.461,0.267z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd35" x1="-3738.23" y1="-3453.355" x2="-3733.0664" y2="-3424.071" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2110.5286 1859.3658)">
|
||||
<stop offset="0" style="stop-color:#681083"/>
|
||||
<stop offset="0.0752" style="stop-color:#6F1182"/>
|
||||
<stop offset="0.1935" style="stop-color:#831380"/>
|
||||
<stop offset="0.3399" style="stop-color:#A3157B"/>
|
||||
<stop offset="0.5088" style="stop-color:#D11975"/>
|
||||
<stop offset="0.6158" style="stop-color:#F21B71"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st14;" d="M128.277,22.083l-0.384,0.153l-0.383,0.114l-0.343,0.115l-0.386,0.077l-0.382,0.114l-0.347,0.113l-0.384,0.116l-0.38,0.153l-0.077,0.766l-0.041,0.84l-0.039,0.92l-0.038,0.958l-0.001,0.958l-0.001,1.031l-0.04,1.037l-0.039,0.994
|
||||
l-0.076,0.997l-0.115,0.994l-0.193,0.919l-0.191,0.844l-0.305,0.802l-0.346,0.727l-0.422,0.616l-0.536,0.496l1.108-0.268l0.919-0.383l0.767-0.533l0.651-0.614l0.537-0.729l0.423-0.839l0.306-0.919l0.232-0.959l0.156-1.072l0.112-1.11l0.039-1.15l0.042-1.225
|
||||
l0.037-1.225l0.039-1.264l0.001-1.264l0.078-1.303z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd36" x1="-3716.3066" y1="-3509.6641" x2="-3713.6802" y2="-3491.7153" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#681083"/>
|
||||
<stop offset="0.0006" style="stop-color:#681083"/>
|
||||
<stop offset="0.072" style="stop-color:#8D0F6D"/>
|
||||
<stop offset="0.1459" style="stop-color:#AD0D5A"/>
|
||||
<stop offset="0.2229" style="stop-color:#C80A4A"/>
|
||||
<stop offset="0.3041" style="stop-color:#DE083E"/>
|
||||
<stop offset="0.3913" style="stop-color:#ED0335"/>
|
||||
<stop offset="0.4884" style="stop-color:#F60030"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st15;" d="M118.116,38.426l1.531-0.074l1.304-0.305l1.07-0.497l0.882-0.651l0.689-0.842l0.502-0.958l0.419-1.071l0.27-1.188l0.154-1.226l0.114-1.261l0.041-1.305l0.001-1.262l0.001-1.305l0.001-1.223l0.076-1.15l0.078-1.071l-0.421,0.114
|
||||
l-0.383,0.113l-0.343,0.117l-0.387,0.113l-0.382,0.113l-0.343,0.115l-0.384,0.077l-0.423,0.114l0.039,0.113l0.075,0.269l0.078,0.423l0.114,0.537l0.074,0.688l0.078,0.768l0.039,0.881l-0.04,0.996l-0.114,1.035l-0.195,1.145l-0.347,1.189l-0.42,1.225l-0.614,1.265
|
||||
l-0.766,1.339l-0.921,1.3l-1.15,1.339z"/>
|
||||
<path style="&st15;" d="M112.905,40.07l1.035,0.191l1.035-0.073l0.995-0.346l0.996-0.537l0.956-0.725l0.92-0.881l0.844-1.07l0.769-1.188l0.649-1.265l0.576-1.378l0.462-1.456l0.309-1.489l0.192-1.496l0.041-1.531l-0.152-1.454l-0.308-1.456l-3.638,1.146
|
||||
l0.037,0.613l0.037,0.729l-0.038,0.801l-0.08,0.92l-0.112,0.958l-0.192,1.034l-0.192,1.072l-0.308,1.109l-0.347,1.109l-0.421,1.073l-0.461,1.071l-0.575,1.035l-0.612,0.995l-0.729,0.919l-0.805,0.841l-0.883,0.727z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd38" x1="-3716.5049" y1="-3512.9565" x2="-3712.3662" y2="-3473.3286" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#681083"/>
|
||||
<stop offset="0.0006" style="stop-color:#681083"/>
|
||||
<stop offset="0.072" style="stop-color:#8D0F6D"/>
|
||||
<stop offset="0.1459" style="stop-color:#AD0D5A"/>
|
||||
<stop offset="0.2229" style="stop-color:#C80A4A"/>
|
||||
<stop offset="0.3041" style="stop-color:#DE083E"/>
|
||||
<stop offset="0.3913" style="stop-color:#ED0335"/>
|
||||
<stop offset="0.4884" style="stop-color:#F60030"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st16;" d="M118.662,24.987l-0.573,0.189l-0.729,0.191l-0.807,0.268l-0.84,0.229l-0.806,0.27l-0.804,0.227l-0.689,0.191l-0.537,0.115l-0.076,0.881l-0.042,0.955l-0.075,0.959l-0.038,0.995l-0.117,0.995l-0.077,1.037l-0.115,0.994l-0.153,0.996
|
||||
l-0.19,0.956l-0.232,0.921l-0.309,0.916l-0.344,0.842l-0.422,0.807l-0.498,0.688l-0.536,0.65l-0.65,0.576l0.766,0.114l0.803-0.038l0.804-0.19l0.805-0.343l0.804-0.5l0.807-0.612l0.768-0.763l0.766-0.958l0.689-1.034l0.611-1.227l0.578-1.339l0.495-1.528
|
||||
l0.388-1.65l0.307-1.758l0.194-1.955l0.077-2.066z"/>
|
||||
<path style="&st15;" d="M103.98,41.593l1.725,0.081l1.455-0.154l1.265-0.418l0.998-0.653l0.841-0.802l0.691-0.958l0.497-1.072l0.386-1.224l0.308-1.225l0.19-1.343l0.116-1.3l0.117-1.302l0.038-1.303l0.078-1.188l0.075-1.11l0.117-0.995l-0.535,0.114l-0.463,0.115
|
||||
l-0.419,0.153l-0.418,0.112l-0.463,0.117l-0.422,0.111l-0.496,0.154l-0.576,0.151l-0.116,1.038l-0.112,0.992l-0.116,0.996l-0.156,0.955l-0.116,0.961l-0.153,0.918l-0.189,0.879l-0.194,0.881l-0.269,0.844l-0.308,0.841l-0.382,0.805l-0.422,0.806l-0.536,0.801
|
||||
l-0.576,0.767l-0.689,0.728l-0.77,0.726z"/>
|
||||
<path style="&st16;" d="M99.349,42.433l1.532,0.078l1.34-0.192l1.188-0.418l1.036-0.65l0.88-0.805l0.766-0.957l0.615-1.107l0.537-1.188l0.458-1.227l0.347-1.3l0.269-1.266l0.194-1.299l0.19-1.226l0.116-1.15l0.116-1.073l0.079-0.919l-0.539,0.117l-0.459,0.112
|
||||
l-0.42,0.115l-0.423,0.077l-0.38,0.113l-0.425,0.074l-0.495,0.152l-0.576,0.115l-0.192,1.496l-0.229,1.417l-0.27,1.301l-0.269,1.226l-0.31,1.109l-0.345,1.071l-0.383,0.919l-0.384,0.883l-0.383,0.803l-0.425,0.727l-0.459,0.613l-0.422,0.573l-0.459,0.536
|
||||
l-0.461,0.42l-0.498,0.383l-0.459,0.345z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd41" x1="-3711.1768" y1="-3514.0366" x2="-3709.7402" y2="-3493.4663" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#681083"/>
|
||||
<stop offset="0.0006" style="stop-color:#681083"/>
|
||||
<stop offset="0.072" style="stop-color:#8D0F6D"/>
|
||||
<stop offset="0.1459" style="stop-color:#AD0D5A"/>
|
||||
<stop offset="0.2229" style="stop-color:#C80A4A"/>
|
||||
<stop offset="0.3041" style="stop-color:#DE083E"/>
|
||||
<stop offset="0.3913" style="stop-color:#ED0335"/>
|
||||
<stop offset="0.4884" style="stop-color:#F60030"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st17;" d="M94.98,43.004l1.457,0.078l1.302-0.189l1.151-0.424l1.071-0.611l0.881-0.802l0.805-0.919l0.69-1.072l0.614-1.146l0.535-1.189l0.422-1.263l0.347-1.264l0.308-1.262l0.271-1.188l0.192-1.149l0.152-1.031l0.155-0.922l-0.459,0.076l-0.46,0.116
|
||||
l-0.462,0.114l-0.459,0.115l-0.462,0.115l-0.458,0.112l-0.46,0.114l-0.497,0.117l-0.038,0.725l-0.116,0.805l-0.153,0.843l-0.269,0.918l-0.27,0.995l-0.382,0.957l-0.385,1.033l-0.422,0.998l-0.499,0.996l-0.537,0.957l-0.534,0.879l-0.577,0.84l-0.574,0.806
|
||||
l-0.614,0.69l-0.649,0.572l-0.617,0.459z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd42" x1="-3718.4951" y1="-3510.1016" x2="-3716.7441" y2="-3482.9595" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#681083"/>
|
||||
<stop offset="0.0006" style="stop-color:#681083"/>
|
||||
<stop offset="0.072" style="stop-color:#8D0F6D"/>
|
||||
<stop offset="0.1459" style="stop-color:#AD0D5A"/>
|
||||
<stop offset="0.2229" style="stop-color:#C80A4A"/>
|
||||
<stop offset="0.3041" style="stop-color:#DE083E"/>
|
||||
<stop offset="0.3913" style="stop-color:#ED0335"/>
|
||||
<stop offset="0.4884" style="stop-color:#F60030"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st18;" d="M90.197,43.881l1.49,0.193l1.38-0.191l1.264-0.496l1.15-0.766l1.073-0.955l0.921-1.148l0.84-1.301l0.77-1.341l0.613-1.415l0.537-1.381l0.46-1.302l0.384-1.262l0.23-1.074l0.192-0.88l0.114-0.65l0.001-0.381l-0.573,0.111l-0.537,0.115
|
||||
l-0.535,0.152l-0.536,0.115l-0.536,0.152l-0.5,0.113l-0.497,0.115l-0.499,0.078l-0.191,0.651l-0.19,0.765l-0.229,0.879l-0.271,0.996l-0.308,1.035l-0.343,1.071l-0.384,1.069l-0.424,1.114l-0.461,1.07l-0.497,0.995l-0.537,0.959l-0.574,0.842l-0.653,0.725
|
||||
l-0.65,0.574l-0.728,0.422l-0.765,0.229z"/>
|
||||
<path style="&st18;" d="M86.712,43.688l1.377,0.307l1.223,0.001l1.113-0.267l1.034-0.535l0.882-0.729l0.805-0.881l0.727-1.068l0.652-1.15l0.539-1.226l0.498-1.261l0.384-1.265l0.385-1.227l0.307-1.147l0.231-1.035l0.23-0.918l0.189-0.727l-0.419,0.076
|
||||
l-0.423,0.038l-0.38,0.075l-0.347,0.076l-0.384,0.076l-0.346,0.078l-0.305,0.074l-0.345,0.041l-0.118,0.879l-0.189,0.919l-0.232,0.917l-0.228,0.883l-0.309,0.918l-0.347,0.881l-0.382,0.844l-0.461,0.842l-0.46,0.842l-0.537,0.804l-0.615,0.765l-0.61,0.688
|
||||
l-0.729,0.69l-0.727,0.611l-0.806,0.574l-0.879,0.535z"/>
|
||||
<path style="&st16;" d="M82.345,44.374l1.147,0.002l1.112-0.115l1.07-0.268l1.037-0.384l0.956-0.533l0.959-0.65l0.842-0.763l0.841-0.842l0.73-0.96l0.69-1.032l0.614-1.15l0.573-1.186l0.461-1.264l0.385-1.34l0.347-1.379l0.23-1.414l-0.498,0.113l-0.499,0.076
|
||||
l-0.536,0.115l-0.496,0.074l-0.497,0.078l-0.459,0.112l-0.5,0.077l-0.459,0.115l-0.231,0.805l-0.191,0.842l-0.231,0.805l-0.194,0.803l-0.23,0.804l-0.228,0.804l-0.307,0.766l-0.346,0.804l-0.42,0.767l-0.463,0.803l-0.576,0.766l-0.688,0.766l-0.768,0.729
|
||||
l-0.918,0.765l-1.073,0.766l-1.188,0.726z"/>
|
||||
<path style="&st16;" d="M76.14,45.095l1.495,0.118l1.454-0.076l1.34-0.229l1.266-0.382l1.187-0.497l1.112-0.649l1.033-0.768l0.918-0.917l0.844-0.955l0.767-1.073l0.693-1.148l0.573-1.222l0.496-1.304l0.425-1.34l0.307-1.377l0.233-1.381l-0.423,0.076l-0.46,0.117
|
||||
l-0.456,0.074l-0.461,0.075l-0.459,0.078l-0.5,0.114l-0.497,0.076l-0.5,0.115l-0.152,0.955l-0.23,0.957l-0.31,0.96l-0.383,0.917l-0.457,0.918l-0.502,0.918l-0.574,0.882l-0.648,0.843l-0.691,0.844l-0.767,0.762l-0.808,0.727l-0.879,0.689l-0.921,0.611
|
||||
l-0.995,0.575l-0.997,0.497l-1.072,0.419z"/>
|
||||
<path style="&st15;" d="M72.732,45.475l1.264-0.075l1.226-0.189l1.228-0.306l1.186-0.458l1.112-0.536l1.109-0.648l1.034-0.729l0.958-0.842l0.881-0.917l0.843-0.993l0.73-1.076l0.65-1.109l0.536-1.184l0.46-1.226l0.348-1.267l0.229-1.299l-0.419,0.074l-0.385,0.037
|
||||
l-0.346,0.039l-0.343,0.039l-0.346,0.037l-0.382,0.077L83.849,33l-0.539,0.075l-0.537,1.112l-0.459,1.031l-0.46,0.997l-0.422,0.919l-0.46,0.881l-0.424,0.805l-0.461,0.764l-0.498,0.727l-0.537,0.729l-0.613,0.649l-0.688,0.69l-0.765,0.611l-0.884,0.65
|
||||
l-0.996,0.611l-1.108,0.612l-1.265,0.61z"/>
|
||||
<path style="&st16;" d="M66.604,45.855l1.877,0.077l1.763-0.073l1.57-0.267l1.455-0.422l1.34-0.572l1.187-0.691l1.113-0.801l0.993-0.92l0.921-0.993l0.844-1.072l0.729-1.109l0.688-1.189l0.652-1.184l0.577-1.187l0.538-1.227l0.496-1.187l-0.343,0.036l-0.461,0.078
|
||||
l-0.573,0.076l-0.575,0.076l-0.613,0.115l-0.537,0.076l-0.456,0.076l-0.347,0.035l-0.46,1.074l-0.499,1.074l-0.577,0.994l-0.573,0.955l-0.652,0.881l-0.688,0.879l-0.729,0.804l-0.804,0.807l-0.804,0.727l-0.885,0.688l-0.917,0.688l-0.96,0.613l-0.995,0.572
|
||||
l-1.072,0.535l-1.072,0.496l-1.149,0.46z"/>
|
||||
<path style="&st15;" d="M62.966,46.387L64,46.35l1.071-0.152l1.15-0.269l1.186-0.419l1.188-0.495l1.189-0.613l1.188-0.726l1.187-0.803l1.149-0.918l1.111-0.957l1.035-1.07l0.999-1.15l0.879-1.188l0.804-1.262l0.691-1.34l0.576-1.38l-0.575,0.079l-0.575,0.074
|
||||
l-0.611,0.037l-0.612,0.077l-0.536,0.037l-0.461,0.077l-0.382,0.076l-0.192,0.115l-0.69,0.535l-0.689,0.575l-0.729,0.688l-0.729,0.688l-0.727,0.766l-0.767,0.802l-0.767,0.844l-0.768,0.845l-0.766,0.879l-0.804,0.842l-0.805,0.842l-0.845,0.84l-0.842,0.843
|
||||
l-0.845,0.763L63.848,45.7l-0.882,0.688z"/>
|
||||
<path style="&st16;" d="M57.375,46.383l0.997,0.654l1.032,0.268l1.034,0.001l1.073-0.268l1.071-0.536l1.073-0.729l1.111-0.916l1.11-1.033l1.112-1.188l1.148-1.225l1.189-1.301l1.188-1.299l1.188-1.264l1.226-1.264l1.228-1.148l1.226-1.031h-0.425l-0.494,0.074
|
||||
l-0.576,0.038l-0.573,0.116L72.7,34.411l-0.612,0.113l-0.572,0.115l-0.5,0.075l-0.956,0.88l-0.957,0.88l-0.923,0.919l-0.919,0.919l-0.881,0.916l-0.883,0.921l-0.88,0.92l-0.845,0.84l-0.844,0.84l-0.842,0.768l-0.805,0.688l-0.804,0.613l-0.805,0.535l-0.767,0.459
|
||||
l-0.766,0.343l-0.767,0.229z"/>
|
||||
<path style="&st15;" d="M53.046,46.879l1.572,0.001l1.492-0.151l1.342-0.385l1.304-0.494l1.187-0.614l1.109-0.765l1.075-0.84l0.995-0.92l0.997-0.994l0.956-1.033l0.921-1.035l0.959-1.07l0.959-1.07l0.994-1.034l1.035-0.957l1.072-0.918l-0.382,0.04l-0.458,0.037
|
||||
l-0.577,0.074l-0.572,0.041l-0.577,0.073l-0.459,0.038l-0.382,0.041l-0.229-0.001l-0.651,0.151L66.076,35.4l-0.649,0.423l-0.692,0.573l-0.689,0.687l-0.729,0.805l-0.766,0.844l-0.769,0.915l-0.88,0.958l-0.883,0.955l-0.997,0.996l-1.032,0.959l-1.111,0.955
|
||||
l-1.188,0.88l-1.264,0.802l-1.381,0.729z"/>
|
||||
<path style="&st11;" d="M138.274,15.35v-0.153l0.04-0.42l0.038-0.649l0.04-0.807l0.039-0.957l-0.037-1.033l-0.038-1.072l-0.111-1.111l-0.229-1.033l-0.309-0.996l-0.38-0.882l-0.572-0.728l-0.654-0.537l-0.843-0.307l-1.034-0.039l-1.186,0.306l0.385,0.384
|
||||
l0.343,0.459l0.345,0.574l0.306,0.613l0.305,0.689l0.27,0.689l0.264,0.767l0.271,0.804l0.228,0.767l0.19,0.806l0.194,0.803l0.188,0.766l0.155,0.768l0.152,0.727l0.114,0.65l0.113,0.613l0.19-0.037l0.154-0.037l0.189-0.078l0.155-0.037l0.151-0.079l0.155-0.075
|
||||
l0.192-0.037l0.226-0.078z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd52" x1="-3690.9155" y1="-3526.2993" x2="-3702.7354" y2="-3558.2568" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#4F0C81"/>
|
||||
<stop offset="0.0701" style="stop-color:#690C73"/>
|
||||
<stop offset="0.209" style="stop-color:#9A0A5B"/>
|
||||
<stop offset="0.3368" style="stop-color:#C20748"/>
|
||||
<stop offset="0.4512" style="stop-color:#E0053A"/>
|
||||
<stop offset="0.5481" style="stop-color:#F20032"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st19;" d="M136.86,15.925l-0.497-2.489l-0.535-2.108l-0.535-1.801l-0.532-1.492l-0.539-1.188l-0.534-0.958l-0.533-0.689l-0.499-0.497l-0.536-0.347l-0.458-0.153l-0.502-0.039l-0.42,0.078l-0.419,0.152l-0.382,0.191l-0.348,0.229l-0.306,0.23
|
||||
l0.536,0.497l0.533,0.573l0.462,0.538l0.494,0.611l0.424,0.615l0.422,0.648l0.382,0.652l0.344,0.691l0.344,0.727l0.306,0.766l0.307,0.768l0.268,0.805l0.227,0.842l0.23,0.842l0.227,0.882l0.194,0.919l0.457-0.077l0.345-0.036l0.232-0.077l0.153-0.077l0.151-0.037
|
||||
l0.156-0.076L136.632,16l0.229-0.075z"/>
|
||||
<path style="&st11;" d="M134.944,16.651l-0.113-0.918l-0.194-1.035l-0.305-1.15l-0.379-1.226l-0.5-1.264l-0.571-1.227l-0.611-1.187l-0.688-1.111l-0.729-0.996l-0.765-0.843l-0.803-0.65l-0.842-0.425l-0.881-0.152l-0.882,0.152l-0.842,0.499l-0.882,0.878
|
||||
l0.688,0.498l0.65,0.576l0.613,0.574l0.574,0.576l0.574,0.611l0.496,0.689l0.459,0.691l0.42,0.688l0.423,0.769l0.343,0.767l0.345,0.805l0.267,0.842l0.267,0.879l0.193,0.92l0.189,0.959l0.155,0.994l0.416-0.114l0.461-0.152l0.499-0.153l0.498-0.191l0.461-0.189
|
||||
l0.421-0.154l0.344-0.151l0.23-0.077z"/>
|
||||
<path style="&st19;" d="M120.017,6.607l0.919-0.612l0.92-0.344l0.957-0.115l0.919,0.115l0.958,0.307l0.919,0.5l0.882,0.689l0.843,0.805l0.762,0.919l0.766,1.073l0.65,1.188l0.572,1.226l0.496,1.305l0.384,1.376l0.306,1.38l0.151,1.416l-0.46,0.115l-0.459,0.116
|
||||
l-0.46,0.15l-0.46,0.154l-0.497,0.191l-0.499,0.113l-0.457,0.154l-0.498,0.075l-0.346-0.88l-0.305-0.959l-0.383-0.957l-0.348-0.957l-0.379-0.996l-0.419-0.998l-0.423-0.956l-0.421-0.918l-0.456-0.884l-0.499-0.805l-0.533-0.766l-0.539-0.651l-0.609-0.575
|
||||
l-0.615-0.459l-0.648-0.346l-0.69-0.19z"/>
|
||||
<path style="&st11;" d="M115.804,7.75l1.455-0.648l1.302-0.344l1.149-0.038l1.034,0.193l0.919,0.421l0.806,0.65l0.724,0.807l0.65,0.957l0.575,1.072l0.495,1.188l0.5,1.229l0.457,1.225l0.457,1.264l0.421,1.264l0.459,1.188l0.497,1.111l-0.421,0.037l-0.384,0.115
|
||||
l-0.383,0.113l-0.385,0.152l-0.381,0.118l-0.384,0.151l-0.421,0.114l-0.422,0.074l-0.038-0.151l-0.038-0.383l-0.114-0.498l-0.114-0.689l-0.189-0.803l-0.27-0.92l-0.306-0.996l-0.42-1.034l-0.494-1.034l-0.574-1.035l-0.728-1.035l-0.803-0.958l-0.96-0.918
|
||||
l-1.07-0.767l-1.228-0.691l-1.375-0.5z"/>
|
||||
<path style="&st19;" d="M110.366,8.552l0.882-0.651l0.997-0.42l1.069-0.153l1.072,0.04l1.149,0.229l1.148,0.461l1.108,0.615l1.111,0.768l1.07,0.956l0.997,1.075l0.878,1.225l0.805,1.342l0.687,1.416l0.537,1.533l0.342,1.57l0.19,1.687l-3.945,1.029l-0.228-0.649
|
||||
l-0.307-0.77l-0.306-0.803l-0.382-0.881l-0.461-0.92l-0.457-0.956l-0.537-0.961l-0.573-0.956l-0.652-0.957l-0.725-0.92l-0.766-0.842l-0.803-0.808l-0.878-0.728l-0.959-0.613l-0.996-0.537l-1.07-0.421z"/>
|
||||
<path style="&st11;" d="M120.502,21.387l-0.572,0.115l-0.727,0.152l-0.729,0.23l-0.808,0.229l-0.764,0.267l-0.729,0.191l-0.649,0.189l-0.536,0.152l-0.382-0.957l-0.421-0.995l-0.422-0.996l-0.42-1.036l-0.421-1.032l-0.458-0.997l-0.498-0.995l-0.497-0.997
|
||||
l-0.533-0.918l-0.573-0.845l-0.614-0.804l-0.651-0.727l-0.65-0.652l-0.728-0.537l-0.804-0.423l-0.804-0.306l0.692-0.459l0.764-0.344l0.806-0.23l0.88-0.075l0.918,0.076l0.959,0.231l0.957,0.383l0.992,0.576l0.999,0.728l0.993,0.92l0.995,1.149l0.954,1.304
|
||||
l0.919,1.532l0.917,1.723l0.843,1.992l0.802,2.184z"/>
|
||||
<path style="&st11;" d="M101.288,11.34l1.571-0.841l1.415-0.498l1.304-0.114l1.187,0.193l1.032,0.458l0.996,0.691l0.841,0.883l0.805,1.073l0.688,1.188l0.649,1.265l0.573,1.341l0.534,1.34l0.536,1.302l0.498,1.265l0.458,1.148l0.456,1.035l-0.534,0.076
|
||||
l-0.459,0.112l-0.422,0.079l-0.422,0.114l-0.421,0.114l-0.459,0.115l-0.498,0.076l-0.572,0.112l-0.5-1.033l-0.458-1.036l-0.46-0.994l-0.458-0.958l-0.459-0.958l-0.495-0.88l-0.5-0.881l-0.495-0.806l-0.575-0.807l-0.61-0.727l-0.612-0.688l-0.688-0.652
|
||||
l-0.769-0.615l-0.801-0.536l-0.92-0.498l-0.956-0.46z"/>
|
||||
<path style="&st19;" d="M96.537,12.715l1.419-0.765l1.339-0.383l1.265-0.075l1.225,0.191l1.111,0.461l1.069,0.689l0.996,0.844l0.921,0.998l0.841,1.149l0.802,1.187l0.726,1.227l0.652,1.264l0.611,1.266l0.537,1.148l0.455,1.111l0.423,0.957l-0.574,0.113
|
||||
l-0.5,0.115l-0.46,0.113l-0.421,0.076l-0.458,0.115l-0.461,0.115l-0.536,0.076l-0.613,0.115l-0.688-1.533l-0.688-1.417l-0.646-1.302l-0.651-1.188l-0.614-1.071l-0.573-0.961l-0.61-0.84l-0.574-0.807l-0.612-0.651l-0.613-0.575l-0.611-0.498l-0.65-0.421
|
||||
l-0.653-0.308l-0.685-0.269l-0.731-0.155l-0.765-0.113z"/>
|
||||
<path style="&st11;" d="M92.937,13.747l1.378-0.65l1.307-0.308l1.222,0.001l1.19,0.233l1.07,0.458l1.033,0.654l0.956,0.844l0.92,0.957l0.802,1.072l0.766,1.148l0.726,1.188l0.613,1.188l0.609,1.189l0.5,1.15l0.456,1.033l0.421,0.959l-0.459,0.113l-0.42,0.113
|
||||
l-0.424,0.076l-0.383,0.116l-0.421,0.077l-0.42,0.075l-0.462,0.113l-0.496,0.077l-0.231-0.765l-0.342-0.845l-0.42-0.842l-0.497-0.919l-0.535-0.919l-0.651-0.921l-0.649-0.92l-0.728-0.92l-0.765-0.841l-0.805-0.846l-0.803-0.766l-0.804-0.652l-0.843-0.613
|
||||
l-0.805-0.498l-0.802-0.383l-0.806-0.23z"/>
|
||||
<path style="&st19;" d="M88.608,14.852l1.417-0.762l1.38-0.345l1.379,0.039l1.301,0.385l1.264,0.612l1.226,0.879l1.149,1.038l1.069,1.147l0.995,1.229l0.881,1.264l0.8,1.227l0.65,1.187l0.536,1.036l0.422,0.879l0.23,0.652l0.113,0.383l-0.574,0.115l-0.498,0.113
|
||||
l-0.498,0.115l-0.5,0.115l-0.496,0.115l-0.459,0.074l-0.499,0.077l-0.497,0.076l-0.344-0.651l-0.384-0.804l-0.458-0.882l-0.537-0.921l-0.571-1.033l-0.614-1.034l-0.646-0.997l-0.691-1.034l-0.727-0.959l-0.767-0.881l-0.802-0.804l-0.803-0.652l-0.844-0.537
|
||||
l-0.844-0.345l-0.878-0.152l-0.882,0.035z"/>
|
||||
<path style="&st11;" d="M85.468,16.077l1.266-0.842l1.224-0.459l1.149-0.113l1.149,0.19l1.071,0.461l1.033,0.692l0.958,0.842l0.915,1.035l0.844,1.113l0.805,1.184l0.727,1.229l0.687,1.225l0.574,1.15l0.535,1.073l0.421,0.918l0.383,0.766l-0.46,0.077l-0.382,0.114
|
||||
l-0.344,0.115l-0.308,0.113l-0.347,0.114l-0.305,0.115l-0.308,0.078l-0.343,0.073l-0.344-0.955l-0.421-0.958l-0.422-0.921l-0.46-0.918l-0.537-0.919l-0.531-0.844l-0.613-0.844l-0.65-0.805l-0.689-0.767l-0.764-0.688l-0.765-0.614l-0.844-0.574l-0.919-0.5
|
||||
l-0.919-0.421l-0.996-0.308l-1.071-0.229z"/>
|
||||
<path style="&st19;" d="M81.483,16.993l1.113-0.422l1.109-0.266l1.148-0.077l1.074,0.078l1.109,0.231l1.032,0.345l1.034,0.536l1.034,0.652l0.956,0.768l0.918,0.92l0.881,0.996l0.842,1.112l0.802,1.226l0.689,1.34l0.688,1.418l0.571,1.491l-0.498,0.077
|
||||
l-0.495,0.076l-0.501,0.115l-0.497,0.153l-0.496,0.115l-0.498,0.153l-0.497,0.115l-0.5,0.074l-0.343-0.842l-0.343-0.882l-0.347-0.843l-0.342-0.883l-0.422-0.842l-0.419-0.805l-0.501-0.842l-0.534-0.767l-0.649-0.729l-0.688-0.728l-0.805-0.652l-0.88-0.613
|
||||
l-0.996-0.537l-1.11-0.498l-1.261-0.424l-1.381-0.344z"/>
|
||||
<path style="&st11;" d="M75.815,18.329l1.455-0.609l1.457-0.385l1.34-0.189l1.34-0.037l1.265,0.191l1.226,0.346l1.147,0.498l1.111,0.652l0.992,0.805l0.994,0.919l0.884,1.036l0.84,1.15l0.764,1.264l0.652,1.34l0.611,1.381l0.535,1.491l-0.459,0.077l-0.46,0.076
|
||||
l-0.536,0.078l-0.501,0.074l-0.533,0.078l-0.538,0.074l-0.535,0.076l-0.535,0.076l-0.269-1.072l-0.383-0.994l-0.42-0.996l-0.533-0.959l-0.575-0.881L85.5,23.046l-0.688-0.805l-0.766-0.729l-0.842-0.689l-0.916-0.574l-0.959-0.539l-0.995-0.459l-1.071-0.346
|
||||
l-1.112-0.307l-1.146-0.191l-1.188-0.078z"/>
|
||||
<path style="&st19;" d="M73.021,18.632l1.302-0.19l1.262-0.113l1.263,0.039l1.228,0.154l1.224,0.307l1.15,0.385l1.109,0.498l1.073,0.613l0.995,0.729l0.954,0.844l0.844,0.919l0.803,1.034L86.916,25l0.611,1.226l0.499,1.341l0.38,1.419l-0.46,0.035l-0.383,0.038
|
||||
l-0.382,0.077l-0.384,0.077l-0.384,0.074l-0.382,0.078l-0.46,0.114l-0.496,0.076l-0.651-1.111l-0.613-1.073l-0.532-0.958l-0.5-0.956l-0.535-0.844l-0.498-0.804l-0.497-0.767l-0.572-0.69l-0.612-0.651l-0.688-0.575l-0.768-0.535l-0.842-0.498l-0.995-0.425
|
||||
L75.7,19.286l-1.264-0.346l-1.415-0.308z"/>
|
||||
<path style="&st11;" d="M66.933,19.432l1.914-0.457l1.8-0.268l1.646-0.075l1.531,0.154l1.417,0.307l1.302,0.461l1.187,0.573l1.074,0.77l1.03,0.842l0.917,0.96l0.844,1.034l0.802,1.112l0.728,1.147l0.688,1.227l0.612,1.226l0.611,1.265l-0.307,0.037l-0.42,0.037
|
||||
l-0.459,0.115l-0.501,0.076l-0.496,0.115l-0.462,0.114l-0.419,0.036l-0.346,0.039l-0.571-1.148l-0.613-1.035L79.753,27.1l-0.726-0.918l-0.766-0.883l-0.805-0.806l-0.879-0.726l-0.919-0.69l-0.956-0.616l-0.996-0.573l-1.034-0.498l-1.07-0.498l-1.111-0.423
|
||||
l-1.147-0.383l-1.189-0.346l-1.222-0.309z"/>
|
||||
<path style="&st11;" d="M63.295,19.811l1.068-0.189l1.113-0.037l1.225,0.038l1.263,0.192l1.267,0.271l1.3,0.384l1.303,0.497l1.302,0.614l1.3,0.729l1.224,0.845l1.186,0.92l1.147,1.035l1.035,1.149l0.956,1.225l0.841,1.342l0.728,1.455l-0.537,0.039l-0.533,0.076
|
||||
l-0.538,0.115l-0.536,0.113l-0.459,0.113l-0.385,0.117l-0.306,0.036l-0.19-0.037l-0.769-0.46l-0.763-0.537l-0.804-0.613l-0.843-0.689l-0.843-0.729l-0.878-0.768l-0.92-0.768l-0.916-0.802l-0.959-0.806l-0.956-0.807l-0.995-0.803l-0.996-0.729l-1.033-0.729
|
||||
l-0.995-0.652l-1.071-0.613l-1.031-0.537z"/>
|
||||
<path style="&st11;" d="M58.197,21.262l0.958-0.955l1.034-0.572l1.074-0.23l1.109,0.077l1.148,0.308l1.225,0.575l1.227,0.769l1.3,0.879l1.301,1.074l1.341,1.11l1.34,1.19l1.34,1.188l1.377,1.188l1.377,1.112l1.376,1.035l1.381,0.92l-0.421,0.074l-0.499,0.037
|
||||
l-0.612,0.041l-0.613,0.037l-0.648,0.037h-0.653h-0.574l-0.497-0.002l-1.034-0.766l-0.993-0.804l-0.996-0.808l-0.918-0.842l-0.919-0.805l-0.883-0.807l-0.878-0.805l-0.88-0.767l-0.919-0.688l-0.879-0.651l-0.92-0.575l-0.956-0.5l-0.996-0.422l-1.034-0.345
|
||||
l-1.073-0.192l-1.11-0.117z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd69" x1="-3772.377" y1="-3509.7163" x2="-3797.2949" y2="-3537.6816" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2070.8274 1900.0875)">
|
||||
<stop offset="0" style="stop-color:#4F0C81"/>
|
||||
<stop offset="0.0701" style="stop-color:#690C73"/>
|
||||
<stop offset="0.209" style="stop-color:#9A0A5B"/>
|
||||
<stop offset="0.3368" style="stop-color:#C20748"/>
|
||||
<stop offset="0.4512" style="stop-color:#E0053A"/>
|
||||
<stop offset="0.5481" style="stop-color:#F20032"/>
|
||||
<stop offset="0.6158" style="stop-color:#FA002F"/>
|
||||
<stop offset="1" style="stop-color:#F7EE5F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st20;" d="M54.368,21.719l1.61-0.381l1.493-0.152l1.415,0.076l1.343,0.271l1.262,0.461l1.226,0.575l1.186,0.729l1.148,0.805l1.11,0.919l1.109,0.922l1.071,0.995l1.111,0.996l1.109,0.958l1.107,0.959l1.188,0.843l1.185,0.807l-0.38,0.037l-0.498,0.075
|
||||
l-0.576,0.078l-0.576,0.036l-0.572,0.079l-0.5,0.072l-0.38,0.041l-0.231,0.037l-0.688-0.002l-0.69-0.189l-0.727-0.348l-0.766-0.496l-0.766-0.614l-0.843-0.728l-0.879-0.807l-0.919-0.844l-0.959-0.881l-1.031-0.918l-1.109-0.882l-1.148-0.844l-1.262-0.808
|
||||
l-1.302-0.728l-1.379-0.651l-1.494-0.5z"/>
|
||||
<path style="&st20;" d="M49.543,23.057l1.417-0.805l1.495-0.342h1.455l1.49,0.309l1.495,0.576l1.494,0.804l1.454,0.96l1.415,1.034l1.339,1.149l1.302,1.15l1.263,1.075l1.148,0.993l1.033,0.844l0.956,0.65l0.843,0.385l0.726,0.116l-0.61,0.077l-0.653,0.113
|
||||
l-0.727,0.113l-0.765,0.117l-0.767,0.074l-0.767,0.115l-0.728,0.038L64.2,32.642l-1.07-0.806l-0.958-0.766l-0.879-0.767l-0.84-0.728l-0.767-0.73L58.96,28.12l-0.767-0.691l-0.726-0.651l-0.729-0.612l-0.804-0.576l-0.841-0.537l-0.919-0.496l-0.996-0.461
|
||||
l-1.071-0.383l-1.226-0.348l-1.34-0.307z"/>
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd71" x1="-3498.5225" y1="4158.0396" x2="-3482.3647" y2="4209.6001" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 -1982.8965 3021.3838)">
|
||||
<stop offset="0" style="stop-color:#D8E7EB"/>
|
||||
<stop offset="0.0849" style="stop-color:#C9D9DE"/>
|
||||
<stop offset="0.2184" style="stop-color:#A5B8C2"/>
|
||||
<stop offset="0.3836" style="stop-color:#728896"/>
|
||||
<stop offset="0.5537" style="stop-color:#405766"/>
|
||||
<stop offset="0.6417" style="stop-color:#667D8B"/>
|
||||
<stop offset="0.742" style="stop-color:#92A7B1"/>
|
||||
<stop offset="0.8374" style="stop-color:#B7C8D0"/>
|
||||
<stop offset="0.9257" style="stop-color:#CFDFE4"/>
|
||||
<stop offset="1" style="stop-color:#D8E7EB"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g style="&st21;">
|
||||
<defs>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" id="AIgd72" x1="-3704.9473" y1="-3493.9082" x2="-3688.7896" y2="-3442.3477" gradientTransform="matrix(0.5318 0.0004 -0.0004 0.5318 2110.5286 1859.3658)">
|
||||
<stop offset="0" style="stop-color:#D8E7EB"/>
|
||||
<stop offset="0.0849" style="stop-color:#C9D9DE"/>
|
||||
<stop offset="0.2184" style="stop-color:#A5B8C2"/>
|
||||
<stop offset="0.3836" style="stop-color:#728896"/>
|
||||
<stop offset="0.5537" style="stop-color:#405766"/>
|
||||
<stop offset="0.6417" style="stop-color:#667D8B"/>
|
||||
<stop offset="0.742" style="stop-color:#92A7B1"/>
|
||||
<stop offset="0.8374" style="stop-color:#B7C8D0"/>
|
||||
<stop offset="0.9257" style="stop-color:#CFDFE4"/>
|
||||
<stop offset="1" style="stop-color:#D8E7EB"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path style="&st22;" d="M142.305,7.35l0.191-0.383l0.153-0.42l0.152-0.423l0.113-0.421l0.117-0.459l0.115-0.496l0.077-0.459l0.042-0.5l0.036-0.459l0.035-0.498l0.001-0.499l-0.035-0.46l-0.036-0.459l-0.08-0.457l-0.112-0.461l-0.114-0.42l0.611,0.804l0.459,0.882
|
||||
l0.345,0.842l0.189,0.88l0.076,0.919v0.92l-0.116,0.918l-0.194,0.92l-0.228,0.918l-0.31,0.883l-0.343,0.879l-0.343,0.88l-0.385,0.843l-0.347,0.842l-0.346,0.765l-0.343,0.767l0.074-0.152l0.037-0.269l0.042-0.266v-0.345l0.037-0.424V12.06V11.6l0.001-0.496
|
||||
l0.038-0.499v-0.498l0.039-0.534l0.04-0.498l0.038-0.461l0.078-0.461l0.075-0.42l0.116-0.383z"/>
|
||||
<path style="&st22;" d="M153.974,23.252l-0.729-0.422l-0.729-0.462l-0.687-0.421l-0.688-0.422l-0.65-0.383l-0.651-0.422l-0.616-0.385l-0.609-0.42l-0.653-0.384l-0.607-0.384l-0.614-0.422l-0.652-0.382l-0.611-0.386l-0.654-0.342l-0.686-0.386l-0.689-0.382
|
||||
l0.61,0.61l0.613,0.616l0.613,0.611l0.612,0.576l0.65,0.611l0.651,0.536l0.65,0.539l0.688,0.497l0.651,0.461l0.689,0.383l0.651,0.346l0.688,0.269l0.688,0.229l0.688,0.115l0.691,0.037l0.691-0.035z"/>
|
||||
<path style="&st22;" d="M148.277,7.928l-0.536,0.308l-0.5,0.345l-0.495,0.345l-0.461,0.344l-0.46,0.343l-0.419,0.383l-0.424,0.421l-0.423,0.383l-0.384,0.422l-0.384,0.422l-0.382,0.421l-0.345,0.457l-0.383,0.422l-0.346,0.459l-0.344,0.459l-0.346,0.459
|
||||
l0.153-0.496l0.192-0.499l0.191-0.537l0.229-0.534l0.231-0.536l0.265-0.499l0.31-0.498l0.346-0.495l0.382-0.46l0.461-0.381l0.498-0.385l0.537-0.344l0.612-0.269l0.652-0.229l0.765-0.152l0.805-0.076z"/>
|
||||
<path style="&st22;" d="M142.574,3.329l-0.153,0.767l-0.114,0.767l-0.154,0.766l-0.116,0.689l-0.076,0.727l-0.114,0.689l-0.079,0.689l-0.115,0.689L141.576,9.8l-0.117,0.689l-0.074,0.651l-0.118,0.689l-0.116,0.689l-0.115,0.689l-0.15,0.689l-0.157,0.727
|
||||
l-0.076-0.842l-0.113-0.805l-0.077-0.843l-0.076-0.841l-0.037-0.807l-0.038-0.805l0.039-0.805l0.039-0.764l0.076-0.767l0.116-0.688l0.194-0.689l0.229-0.651l0.269-0.573l0.384-0.537l0.422-0.46l0.497-0.421z"/>
|
||||
<path style="&st22;" d="M146.674,2.071l0.692,0.648l0.416,0.729l0.189,0.766l0.04,0.805l-0.153,0.804l-0.307,0.843l-0.424,0.844l-0.498,0.841l-0.575,0.804l-0.611,0.805l-0.653,0.764l-0.65,0.689l-0.614,0.689l-0.534,0.572l-0.463,0.539l-0.383,0.418l0.077-1.147
|
||||
l0.154-0.995l0.191-0.844l0.307-0.764l0.306-0.65l0.386-0.574l0.382-0.535l0.424-0.501l0.383-0.496l0.424-0.495l0.382-0.538l0.307-0.613l0.307-0.688l0.23-0.766l0.194-0.919l0.075-1.032z"/>
|
||||
<path style="&st22;" d="M141.763,14.319v-0.805l-0.039-0.765l-0.034-0.765l-0.04-0.768l-0.036-0.729l-0.077-0.727l-0.076-0.727l-0.073-0.691l-0.117-0.688l-0.114-0.728l-0.189-0.689l-0.152-0.689L140.62,4.86l-0.268-0.689l-0.229-0.689l-0.306-0.689l1.111,1.073
|
||||
l0.918,1.034l0.649,0.959l0.457,0.92l0.309,0.879l0.151,0.805l0.037,0.806l-0.077,0.727l-0.195,0.689l-0.187,0.651l-0.27,0.613l-0.271,0.533l-0.23,0.537l-0.229,0.459l-0.152,0.459l-0.078,0.383z"/>
|
||||
<path style="&st22;" d="M152.982,16.97l-0.613,0.114l-0.614,0.116l-0.611,0.075l-0.613,0.075l-0.609,0.038l-0.616,0.037h-0.613h-0.575l-0.612-0.039h-0.574l-0.613-0.077l-0.573-0.038l-0.613-0.04l-0.575-0.075l-0.612-0.079l-0.574-0.075l0.498,0.229l0.498,0.192
|
||||
l0.535,0.231l0.537,0.19l0.574,0.193l0.576,0.151l0.61,0.156l0.61,0.076l0.612,0.039h0.651l0.651-0.039l0.654-0.15l0.651-0.191l0.651-0.27l0.648-0.381l0.654-0.46z"/>
|
||||
<path style="&st22;" d="M149.417,20.07l0.461,0.078l0.419,0.075l0.461,0.115l0.457,0.115l0.463,0.194l0.456,0.151l0.421,0.191l0.46,0.23l0.421,0.23l0.421,0.267l0.383,0.271l0.386,0.268l0.343,0.307l0.308,0.307l0.304,0.307l0.27,0.344l-0.269-0.917l-0.422-0.808
|
||||
l-0.494-0.688l-0.615-0.651l-0.688-0.536l-0.768-0.5L151.754,19l-0.882-0.347l-0.919-0.306l-0.919-0.307l-0.955-0.231l-0.958-0.23l-0.957-0.193l-0.919-0.189l-0.843-0.154l-0.842-0.192l0.42,0.153l0.574,0.306l0.69,0.463l0.841,0.497l0.843,0.535l0.879,0.499
|
||||
l0.842,0.46l0.768,0.308z"/>
|
||||
<path style="&st22;" d="M151.174,26.926l0.345-0.881l0.117-0.844l-0.116-0.842l-0.307-0.766l-0.457-0.729l-0.612-0.727l-0.728-0.69l-0.804-0.614l-0.843-0.613l-0.879-0.536l-0.919-0.538l-0.884-0.459l-0.801-0.42l-0.767-0.387l-0.651-0.344l-0.496-0.309
|
||||
l0.532,1.113l0.538,0.919l0.573,0.728l0.536,0.652l0.574,0.498l0.574,0.459l0.574,0.346l0.574,0.346l0.571,0.346l0.577,0.382l0.572,0.384l0.536,0.46l0.537,0.573l0.535,0.691l0.497,0.806l0.498,0.995z"/>
|
||||
<path style="&st22;" d="M141.529,17.497l0.422,0.652l0.42,0.652l0.421,0.65l0.38,0.613l0.346,0.613l0.345,0.649l0.346,0.614l0.305,0.613l0.304,0.652l0.268,0.65l0.271,0.613l0.229,0.65l0.19,0.689l0.192,0.65l0.152,0.689l0.152,0.73l0.384-1.455l0.191-1.265
|
||||
l0.041-1.149l-0.115-0.994l-0.229-0.844l-0.346-0.766l-0.42-0.652l-0.458-0.537l-0.538-0.499l-0.535-0.421l-0.573-0.346l-0.537-0.306l-0.496-0.306l-0.46-0.268l-0.342-0.307l-0.31-0.271z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g><!-- Layer_x0020_1 -->
|
||||
</svg>
|
|
@ -0,0 +1,578 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- @author vincent.hardy@eng.sun.com -->
|
||||
<!-- @version $Id: authors.svg,v 1.1 2001/06/10 01:46:28 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<svg id="body" width="450" height="500" xml:space="preserve" viewBox="0 0 450 500">
|
||||
<!-- ================================== -->
|
||||
<!-- ASF Logo -->
|
||||
<!-- ================================== -->
|
||||
<use x="140" y="30" xlink:href="asf-logo.svg#body" />
|
||||
|
||||
<!-- ================================== -->
|
||||
<!-- Contributors -->
|
||||
<!-- ================================== -->
|
||||
<g transform="translate(88.86, 90) scale(1.2, 1.2)" >
|
||||
<g style="stroke:none;">
|
||||
<path d="M0.283,13.13L0,12.417l0.931-0.033l0.989-0.188l0.542-0.585l1.946-5.168l1.951-6.206l0.762,0.045l0.477-0.098l0.257,0.201l1.413,4.137l1.064,2.466l0.825,1.951l0.61,1.348l0.382,1.313l0.479,0.295l0.442,0.591l1.054-0.203l-0.316,0.642l0.165,0.044
|
||||
l-1.541-0.085l-1.574,0.257l-1.113-0.142l-1.661-0.042l-0.474,0.155l-0.068-0.888l1.172-0.02L9.21,11.97l0.13-0.139l-0.182-0.188l-0.077-1.082L8.093,8.914L4.454,8.707l-1.047,2.211l0.158,0.764l0.086,0.229l0.733,0.565L5.037,12.5l0.033,0.366l0.042,0.331
|
||||
l-2.913-0.003l-0.368,0.057l-1.416-0.324L0.283,13.13z M4.745,7.677l2.788,0.08l0.365-0.053L7.097,5.635L6.231,3.896L4.745,7.677z"/>
|
||||
<path d="M13.628,18.126l0.021-0.402l0.192-0.216l0.734-0.321l0.415-0.267l0.188-0.953l0.173-3.894l-0.142-4.837l-0.452-0.641L14.034,5.84l-0.33-0.455l1.761-0.328l1.416-0.477L17.3,4.292l-0.243,0.274l0.318,1.04l-0.062,0.337l1.397-0.632l1.725-0.262
|
||||
l1.654,0.592l0.354-0.168l0.395,0.955l0.719,1.275l0.25,1.205l-0.118,1.73l-1.072,1.284l-1.158,1.355l-1.637-0.186l-1.115,0.075l-1.378-0.29l0.297,0.025l-0.311,0.292l0.298,0.26l-0.408,0.78l0.066,1.792l0.2,0.395l-0.064,0.103L17.4,17.073l0.163,0.299
|
||||
l0.198,0.181l0.646-0.304l0.452,0.27L18.74,17.86l0.239,0.4l-0.243,0.029l-0.816,0.115l-1.454-0.384l-0.36-0.135l-0.351-0.125l-0.345,0.124l-0.522,0.104l-0.632,0.226l-0.501-0.346l-0.127,0.259z M17.113,11.146l0.409,0.127l0.131,0.657l0.638,0.602l1.053-0.217
|
||||
l0.942-0.043l0.933-0.387l-0.103-0.292l0.026-0.266l0.348-1.532l-0.577-2.783L18.936,6.34l-1.479,0.549l0.065,1.978l-0.342,1.889l-0.067,0.392z"/>
|
||||
<path d="M33.689,11.311l0.187,0.229l-0.003,0.142l0.136,0.013l-0.67,1.122l-0.869,0.448l-1.066-0.25l-0.675-1.276l-1.155,1.25l-1.907,0.421l-1.394-0.656l-0.747-0.997l0.178-0.707l0.64-0.552l0.938-0.831l0.757-0.324l2.404-1.041l0.097-0.633l-0.208-1.883
|
||||
L29.521,5.5L28.613,5.75l-0.696,0.424l0.006,0.899l-0.3,0.447l-0.531,0.282l-0.553,0.177l-0.801,0.449l-0.012-0.404l0.072-1.001l1.061-1.147l1.376-0.685l2.05-0.307l1.304,0.397l0.724,0.821l0.203,2.006l0.053,1.614l-0.005,1.184l0.106,0.302l0.134,0.513
|
||||
l0.22,0.184l0.273,0.022l0.298-0.441l0.094-0.174z M30.481,9.12L29.25,9.714l-1.031,0.826l-0.186,0.827l0.3,0.7l0.592,0.327l0.934-0.358l0.539-0.699L30.58,9.95l-0.099-0.83z"/>
|
||||
<path d="M42.575,10.798l0.172,0.055l0.29,0.126l-1.08,1.823l-2.659,0.427l-1.929-0.268l-1.448-1.135l-0.704-1.205l-0.322-1.263l0.478-1.387l0.826-1.517l1.597-1.131l2.197-0.469l2.4,0.476l0.769,1.106l-0.499,0.737l-0.655,0.378L41.28,7.268l-0.728-0.833
|
||||
l-0.194-0.856l-0.755-0.11l-1.59,0.884L37.23,8.452l0.791,2.691l2.11,0.97l0.904-0.356l0.8-0.12l0.24-0.613l0.5-0.227z"/>
|
||||
<path d="M44.212,12.671l0.666-0.244l0.581-0.002l-0.228-0.831l0.305-0.688l-0.348-0.74l0.208-0.795l0.075-0.195l-0.135-0.488l0.089-0.165l0.198-3.537l-0.335-0.275l-0.161-2.19l-0.182-0.251L44.13,1.644l-0.028-0.05L44.085,1.28l0.781-0.316l0.466-0.133
|
||||
l1.43-0.322l0.243,0.011l0.662-0.194L47.66,6.146l1.459-1.052l1.543-0.448l1.26,0.563l1.016,0.49l0.11,1.103l0.505,1.424l-0.376,0.627l-0.078,1.376l0.019,1.997l0.291,0.075l0.571,0.188l0.526-0.048l-0.063,0.359l-0.212,0.041l0.333,0.534l-0.335-0.179
|
||||
l-0.587,0.063l-1.381-0.396l-0.962,0.448l-1.115-0.044l-0.393-0.054l0.202-0.294l-0.17-0.115l0.146-0.308l0.546-0.334l0.717,0.341L51.112,12.1l-0.145-1.428l0.117-2.391l-0.243-1.364l-0.333-0.561l-0.82-0.368l-1.294,0.105l-0.969,0.853l-0.198,1.718l0.458,2.117
|
||||
L47.534,11.3l0.05,0.915l0.158,0.353l0.62,0.102l0.172-0.025l0.279,0.223l-0.092,0.241l-1.081,0.116l-1.103-0.155l-1.362,0.251l-0.958-0.153l-0.108-0.439l0.104-0.056z"/>
|
||||
<path d="M55.636,8.025l0.276-1.168l1.266-1.146l1.09-0.588L59.291,4.9l1.49,0.08l0.983,0.37l0.763,0.897l0.68,0.834l0.222,1.43l-1.138-0.187l-1.97-0.07l-0.784,0.004l-1.054,0.028l-0.858-0.189l-0.137,0.4l0.136,1.111l0.432,1.016l0.804,0.579l0.67,0.589
|
||||
l0.598,0.024l0.955-0.047l0.862-0.092l0.872-0.4l0.5,0.29l-1.74,1.361l-2.045,0.385l-1.301,0.096l-1.187-0.62l-0.906-0.937l-0.519-1.137l-0.144-1.191l0.163-1.5z M61.125,7.573L60.86,6.605l-0.61-0.68l-0.784-0.499l-1.283,0.56l-0.492,1.607l2.226-0.084
|
||||
l0.591-0.066l0.414-0.009l0.203,0.139z"/>
|
||||
<path d="M69.807,13.124l-0.029-0.611l0.565,0.035l0.892-0.603l0.184-0.273l0.013-1.592l0.25-4.158l-0.349-3.368l0.314-1.014l-0.272-0.062l-0.644,0.19l-1.06-0.282l0.106-0.682l2.156-0.38l3.203,0.007l0.383,0.031l0.238,0.112l0.519,0.012l0.625-0.252l1.591,0.546
|
||||
l0.816,0.254l0.726,0.755l0.467,0.803l0.255,0.93l0.006,1.136L79.87,5.51l-1.413,0.665l2.179,1.309l0.925,1.811L81.3,10.628l-0.626,0.922l-1.156,0.862l-1.657,0.65l-1.668-0.192l-1.667,0.164l-2.506,0.304l-2.211-0.213z M74.191,5.897l0.995,0.22l2.13-0.912
|
||||
l0.674-1.714l-0.562-1.518L75.292,1.49l-1.014,0.116l-0.091,0.453l-0.042,2.32l0.12,0.819l-0.075,0.699z M74.24,12.267l1.319-0.097l1.856-0.117l0.841-1.086l0.259-1.426l-0.293-1.398l-1.015-1.17l-2.102-0.16l-0.611,0.02l-0.37,1.172l0.133,1.448l0.092,2.249
|
||||
l-0.11,0.565z"/>
|
||||
<path d="M91.582,11.453l0.174,0.146l0.123,0.064l0.131,0.05l-0.698,1.165l-0.923,0.456l-0.946-0.476l-0.796-1.111l-1.148,1.251l-1.912,0.395l-1.389-0.646l-0.423-0.991l0.011-0.638l0.537-0.563l0.866-0.91l0.77-0.299l2.517-0.816l-0.174-0.861l-0.185-1.792
|
||||
L87.44,5.506l-0.837,0.4l-0.745,0.282l-0.112,0.87l-0.153,0.503l-0.588,0.225L84.55,8.169l-0.844,0.078l-0.304-0.222l0.466-0.911l0.957-1.175l1.373-0.617l2.005-0.544l1.284,0.542l0.92,0.714l0.05,2.075l0.128,1.614l0.047,1.182l-0.013,0.304l-0.076,0.645
|
||||
l0.399,0.008l0.053-0.089l0.376-0.421l0.208,0.104z M88.406,9.109l-1.168,0.714l-0.899,0.839l-0.396,0.705l0.301,0.709l0.602,0.399l0.831-0.565l0.529-0.613l0.113-1.347l0.089-0.84z"/>
|
||||
<path d="M92.86,5.883l1.553-1.082l1.161-1.438l0.409,0.055l0.166,0.369l-0.149,0.809l0.224,0.601l-0.214,0.389l0.314-0.087l0.922-0.041l0.729-0.103l0.202,0.467l-0.177,0.557l-0.527-0.094l-0.314,0.078l-0.508-0.179L96.463,6.2l-0.529,0.182l0.008,3.729
|
||||
l0.067,1.35l0.201,0.55l0.539,0.263l0.336-0.4l0.58-0.014l0.123-0.332l0.488,0.378l-0.017,0.22l-0.985,0.913l-1.352,0.11l-1.335-0.578l-0.843-1.663l0.133-1.713l0.084-2.78l-0.349,0.143l-0.679-0.124L92.76,6.411l0.129-0.222L92.86,5.883z"/>
|
||||
<path d="M98.885,13.165l-0.32-0.759l1.285,0.283l0.315-0.451l-0.102-0.6l0.182-0.108l0.061-0.425l-0.145-0.543l-0.027-0.714l0.334-0.489l-0.334-0.46l0.303-1.595l-0.413-0.567l-0.187-0.412l-1.163,0.05l0.016-0.806l1.946-0.172l1.132-0.786l0.754-0.286
|
||||
l-0.08,3.286l0.147,4.001l-0.023,0.596l0.818,0.201l0.591,0.233l-0.317,0.528l-0.301,0.108l-0.448-0.09l-2.657,0.126l-0.926-0.167l-0.444,0.019z M100.021,1.5l0.554-0.723l0.74-0.634l0.99,0.478l0.549,0.84l-0.533,0.582l-0.324,0.572l-0.643,0.487l-0.94-0.57
|
||||
L100.021,1.5z"/>
|
||||
<path d="M104.468,12.697l0.231-0.217l0.281,0.176l0.535-0.363l0.02-0.592l0.448-4.126l-0.139-0.559L105.5,6.594l0.192-2.803l0.094-1.449l0.013-0.422l-0.611,0.06l-0.652-0.485l-0.048-0.016l0.009-0.296l2.044-0.781l0.895-0.148l0.537,0.031l-0.243,4.318
|
||||
l0.337,0.621l-0.318,0.803l-0.097,1.454l0.394,1.325l1.68-1.4l1.256-0.748l0.604-0.294l-0.417-0.259l-0.831-0.316l-0.201-0.022l0.157-0.032l0.685-0.191l0.511-0.126l0.839-0.049l0.983,0.258l0.763-0.121l0.411,0.101l0.2-0.011l-0.267,0.048l-0.69,0.438
|
||||
l-0.841,0.642l-2.911,1.525l0.346,0.696l0.378,0.102l0.722,0.73l1.716,1.495l0.8,1.051l1.01,0.219l-0.106,0.456l0.167,0.369l-0.804-0.301l-0.546-0.016l-3.502,0.152L110.046,13l0.163-0.173l-0.047-0.246l0.693,0.079l0.276-0.248l-0.353-0.42l-2.659-2.555
|
||||
l-0.177,0.129l0.033,1.998l-0.359,0.333l0.326,0.306l0.209,0.054l0.571,0.107l0.403,0.165l-0.104,0.295l-0.245,0.216l0.097,0.085l-0.019-0.103l-1.417,0.23l-0.432-0.105l-0.422,0.212l-0.548-0.201l-0.831,0.06l-0.247,0.197l-0.567-0.261l-0.292-0.261l0.369-0.197
|
||||
z"/>
|
||||
<path d="M131.533,0.937l0.748,1.429l0.048,1.344l-0.993,0.229l-1.715-2.276l-2.309-0.175l-2.266,1.063l-1.394,4.347l0.34,2.324l0.652,1.978l1.033,1.044l1.945,0.086l2.009-0.64l1.859-2.039l1.078,0.009l-0.128,0.796l-0.163,1.271l-0.098,0.301l-0.009,0.584
|
||||
l-1.873,0.522l-2.647,0.264l-2.232-0.432l-1.98-0.362l-1.616-1.718l-0.732-1.848l-0.586-2.099l1.796-4.987L127.37,0l2.28,0.335l1.884,0.602z"/>
|
||||
<path d="M141.739,5.968l0.933,1.444l0.114,1.513l-0.166,2.173l-1.786,1.68l-2.363,0.434l-2.637-0.422l-1.505-1.609l-0.584-2.177l0.458-1.288l0.386-1.272l0.885-0.819l1.44-0.395l1.546-0.363l3.277,1.102z M136.333,9.438l0.002,1.421l0.355,1.193l0.753,0.464
|
||||
l1.021,0.328l1.075-0.682l0.832-1.3l-0.046-2.089l-0.388-2.546l-1.559-0.734l-1.315,0.345l-0.482,1.367l-0.249,2.233z"/>
|
||||
<path d="M144.164,12.788l0.374-0.093l0.507-0.465l0.472,0.001l-0.049-0.927l-0.068-0.858l0.081-0.702l-0.169-1.033l-0.016-0.624l-0.12-0.988l-0.07-0.424l-0.96-0.325l0.101-0.4l0.058-0.186l0.853,0.089l0.557-0.604l0.174-0.021l0.376-0.03l0.653-0.781
|
||||
l0.504-0.004l0.152,1.107l-0.16,0.263l0.089,0.622l1.396-1.15l1.619-0.405l1.553,0.524l1.044,0.964l0.295,2.461l-0.04,3.21l-0.039,0.324l0.486,0.083l0.464,0.199l-0.015,0.287l0.095,0.163l-1.916-0.159l-0.574,0.323l-0.449-0.016l-1.311-0.184l-0.334,0.215
|
||||
l-0.026-0.23l-0.067-0.447l0.813,0.047l0.372,0.026l0.176-0.315l-0.122-0.638l0.035-1.262l0.104-1.135l-0.367-2.489l-0.916-0.63l-1.111,0.077l-1.159,0.872l0.096,0.155l-0.114,0.615l0.047,0.654l-0.102,1.564l0.032,0.242l0.254,1.735l0.787,0.692l0.215,0.08
|
||||
l-0.287,0.202l-0.397,0.279l-0.646-0.222l-1.052-0.127l-2.273,0.085l-0.014-0.054l0.109-0.233z"/>
|
||||
<path d="M155.177,5.628l1.811-0.758l1.119-1.478l0.45-0.201L158.5,3.786l-0.013,0.808l0.287,0.603l-0.207,0.301l0.263,0.05l0.926-0.056l0.675,0.023l0.285,0.305l-0.319,0.442l-0.416,0.031l-0.308-0.029l-0.514-0.052l-0.173,0.263l-0.614-0.104l-0.063,3.737
|
||||
l0.089,1.375l0.316,0.533l0.544,0.145l0.422-0.062l0.529-0.195l0.019-0.114l0.336,0.242l0.224,0.101l-0.996,0.92l-1.36,0.23l-1.315-0.732l-0.848-1.643l0.296-1.713l-0.269-2.762l-0.173-0.215l-0.67,0.048l-0.216,0.188l-0.153-0.266l0.093-0.561z"/>
|
||||
<path d="M161.149,12.596l0.441-0.22l1.074-0.144l-0.151-1.664l-0.122-3.3l0.077-0.395l-0.746-0.04l-0.179-0.302l-0.156-0.453l1.31-0.523l1.044-0.633l0.194-0.333l0.644,0.036l0.096,0.23l-0.058,0.264l0.155,0.566l-0.133,0.688l0.597-0.782l0.594-0.379
|
||||
l0.671-0.245l0.868,0.284l0.329,0.768l-0.234,0.794l-0.74,0.538l-0.842-0.555l-0.485-0.07l-0.035,0.069l-0.38,0.25l-0.173,0.987l-0.237,0.277l0.112,3.376l0.231,0.51l0.414,0.076l0.589,0.296l0.61-0.045l0.21,0.335l-0.242,0.168l-0.898,0.068l-1.864,0.069
|
||||
l-1.273-0.122l-0.162,0.073l-1.026,0.157l-0.181-0.362l0.055-0.312z"/>
|
||||
<path d="M168.287,13.161l-0.364-0.793l1.257-0.038l0.481-0.012l0.026-0.68l0.132-0.108l-0.343-0.425l0.271-0.543l-0.051-0.714l0.007-0.489l-0.31-0.46l0.042-1.595l-0.058-0.557l-0.128-0.5l-1.181,0.118l0.25-0.523l1.652-0.552l1.12-0.845l0.516,0.131l0.309,3.035
|
||||
l-0.272,3.996l0.095,0.764l0.996,0.267l0.303,0.045l0.325,0.608l-0.62-0.27l-0.433-0.026l-2.672,0.277l-0.935-0.207l-0.418,0.096z M169.499,1.5l0.276-0.912l0.925-0.253l1.084,0.185l0.19,0.941l-0.13,0.645l-0.303,0.769l-0.802,0.157l-0.767-0.671L169.499,1.5z"
|
||||
/>
|
||||
<path d="M173.809,1.408l0.937-0.068l1.519-1.159l0.473,0.275l0.315-0.148l0.167,0.402l-0.265,0.396l-0.096,3.662l0.329,1.385l0.495-0.833l0.714-0.006l0.677-0.291l0.816-0.286l1.543,0.444l1.141,0.731l0.881,1.447l0.08,1.428l0.285,1.325l-0.701,1.405
|
||||
l-1.005,0.887l-1.375,0.632l-1.653,0.076l-2.465-0.588l-0.388-0.209l-0.488,0.565l-0.326,0.75l-0.504-0.333l0.048-0.379l-0.159-0.463l0.348-0.721l-0.181-0.256l-0.113-0.548l0.212-7.138l0.021-1.434L174.83,2.26l-1.048-0.363l0.027-0.489z M176.853,6.735
|
||||
l0.382,1.545l-0.084,3.043l0.631,0.932l1.155,0.348l0.801-0.352l0.744-0.224l0.265-0.821l0.718-0.923l-0.342-1.055l0.127-1.681l-1.14-1.067l-1.26-0.202l-0.946,0.184l-1.051,0.272z"/>
|
||||
<path d="M184.885,5.24l0.218,0.069l2.924-0.267l0.023,0.25l0.18,0.583l0.095,0.961l-0.072,0.495l0.107,1.479l-0.012,1.001l0.054,1.523l0.271,0.816l0.894,0.222l0.742-0.149l0.512-0.55l0.506-0.242l0.312-0.522l0.165-2.445l-0.043-0.629l-0.029-0.64l0.173-0.441
|
||||
l-0.101-0.365l-0.095-0.151l-0.53-0.399l-0.654-0.045l0.046,0.029l-0.219-0.235l0.021-0.366l0.582,0.053l1.512,0.093l1.606-0.26l-0.288,0.832l0.373,0.945l-0.083,1.177l0,1.69l-0.335,0.753l0.035,0.509l0.025,0.583l0.21,0.347l0.143,0.063l0.911,0.099
|
||||
l0.168-0.065l0.147,0.398l-0.223,0.113l-0.69,0.292l-2.283,0.73l-0.524-0.18l-0.036-1.597l-0.323,0.194l-1.442,1l-1.231,0.374l-1.358-0.358l-0.749-0.847l-0.527-1.007l0.174-1.928l-0.252-0.322l0.257-1.41l0.151-1.067l-0.409-0.167l-0.199-0.294l-0.746-0.188
|
||||
l-0.031-0.041l-0.215-0.187l0.164-0.309z"/>
|
||||
<path d="M196.11,5.752l1.541-1.068l1.056-1.606l0.709,0.043l-0.002,0.665l0.151,0.816l-0.005,0.593l-0.179,0.35l0.292-0.064l0.926,0.071l0.744-0.258l0.084,0.526l-0.203,0.429l-0.403,0.315l-0.31-0.28l-0.516,0.169l-0.168,0.047l-0.478-0.111l-0.033,3.72
|
||||
l0.208,1.316l0.135,0.469l0.439,0.041l0.371,0.03l0.357-0.351l0.312-0.088l0.335,0.466l0.218,0.166l-1.076,0.864l-1.344,0.356l-1.489-0.658l-0.618-1.813l0.164-1.713l0.022-2.785l-0.388,0.113l-0.681-0.056l-0.137-0.104l0.122-0.176l-0.158-0.437z"/>
|
||||
<path d="M210.125,6.134l0.964,1.332l0.463,1.459l-0.5,2.111l-1.627,1.805l-2.398,0.693l-2.499-0.959l-1.648-1.393l-0.23-2.18l-0.038-1.336l0.773-1.039l0.626-1.031l1.427-0.476l1.579-0.168l3.108,1.182z M204.742,9.441l0.417,1.366l0.365,1.082l0.533,0.524
|
||||
l0.964,0.154l1.237-0.233l0.495-1.509l0.411-2.051l-0.608-2.595l-1.621-0.682l-1.149,0.534l-0.734,1.154l-0.309,2.256z"/>
|
||||
<path d="M212.44,12.616l0.412-0.232l0.951-0.279l-0.049-1.537l0.069-3.321l-0.244-0.142l-0.583-0.328l-0.37-0.224l0.19-0.298l1.182-0.639l0.97-0.716l0.221-0.355l0.662,0.014l-0.114,0.296l0.019,0.264l0.214,0.566l-0.08,0.874l0.661-0.924l0.542-0.421
|
||||
l0.669-0.351l0.881,0.373l0.481,0.782l-0.302,0.872l-0.837,0.452l-0.848-0.539l-0.49-0.283l-0.026,0.269l-0.437,0.221l-0.149,1.021l0.068,0.256l0.018,3.393l0.101,0.474l0.37,0.111l0.584,0.335l0.462,0.096l0.283,0.159l-0.166,0.144l-0.896,0.112l-1.864,0.054
|
||||
l-1.263,0.037l-0.172-0.16l-1.003,0.028l-0.076-0.163l-0.042-0.292z"/>
|
||||
<path d="M220.361,10.52l0.333-0.061l0.234-0.122l0.173,0.077l0.666,1.117l0.671,0.613l0.669,0.353l0.674,0.285l1.109-0.46l0.489-0.898l-0.269-0.516l-0.683-0.357l-1.167-0.583l-1.214-0.243l-0.768-0.522l-0.768-0.545l-0.124-1.022l0.079-1.282l0.652-0.88
|
||||
l0.907-0.544l1.3,0.028l1.659-0.027l1.227,0.401l0.17,1.073l0.048,0.966l-0.058,0.029l-0.357,0.025l-0.333,0.222l-0.315-0.43l-0.917-1.188l-1.093-0.438l-1.119,0.423l-0.527,0.728l0.543,0.609l1.183,0.421l1.854,0.757l1.262,0.926l0.35,1.285l-0.907,1.818
|
||||
l-2.449,0.982l-1.139-0.185l-0.98-0.21l-0.739-0.257l-0.137-0.206l0.026-0.846l-0.215-1.315z"/>
|
||||
<path d="M41.578,50.208l0.097-1.539l0.263-0.359l0.202-0.183l0.44,0.531l0.337,0.266l0.197,0.432l0.09,0.073l0.434-0.206l2.305-0.233l2.722,0.029l0.798,0.003l1.512,0.025l0.261,0.02l0.806,0.394l0.33-0.198l0.448-0.617l0.094-0.558l0.224,0.197l-0.025,0.366
|
||||
l-0.156,0.387l0.093,0.821l0.228,1.933L53.01,51.92l-0.125-0.056l-0.148,0.118l-0.242-0.433l-0.332-1.308l-0.68-0.066l-1.674-0.556l-1.531,0.368l0.069,0.551l-0.168,6.072l-0.213,1.366l0.484,1.301L47.974,60l0.475,0.373l0.554,0.147l1.143,0.488l0.504,0.081
|
||||
l-0.165,0.573l-1.428-0.265l-1.72-0.093l-1.425,0.115l-1.052-0.167l-0.599,0.375l-0.076-0.248l-0.064-0.466l0.533,0.153l0.892-0.528l0.965,0.117l0.132-0.448l-0.148-1.72l-0.003-1.657l0.044-3.619l-0.285-0.775l0.263-2.616l-1.612-0.105l-1.82,0.063l-1.126,1.88
|
||||
l-0.734,0.446l-0.07-0.132l-0.012-0.083l0.113-0.698l0.326-0.984z"/>
|
||||
<path d="M54.053,60.733l1.373-0.087l0.09-0.285l0.163-0.645l0.076-1.141l0.036-2.907l-0.409-1.083l0.272-0.768l-0.275-0.95l0.109-2.651l-0.016-0.671l-1.354-0.496l-0.251,0.104l0.32-0.099l0.171-0.126l0.288,0.125l1.615-0.903l0.408,0.327l0.112,1.491
|
||||
l-0.133,1.244l0.327,1.606l-0.212,1.977l-0.12,0.243l1.15-0.651l0.962-0.809l1.214-0.367l1.893,1.188l0.487,1.618l0.261,0.994l-0.491,0.544l0.354,0.971l-0.066,1.411l-0.126,0.713l0.599-0.027l0.946,0.268l-0.137,0.38l-2.068,0.002l-0.948,0.091l-0.556-0.018
|
||||
l-0.205-0.116l0.136-0.108l-0.37-0.167l0.738,0.091l0.513-0.46l-0.088-0.164l0.578-2.456l-0.277-0.726l-0.044-1.901l-0.718-0.771l-1.11-0.477l-0.958,0.46l-0.794,0.514l-0.708,0.639l-0.251,0.67l0.282,0.675l0.065,0.709l-0.021,1.202l-0.357,0.621l0.339,0.671
|
||||
l-0.104,0.359l1.436,0.14l0.343,0.143l0.253,0.094l-0.304,0.209l-0.431,0.129l-0.763-0.11l-1.681,0.262l-1.273-0.37l-0.19-0.052l-0.241,0.134l0.143-0.456z"/>
|
||||
<path d="M64.848,57.306l0.026-1.449l0.871-1.377l1.25-0.853l2.171-0.255l2.934,1.218l1.288,2.891L72.15,60.26l-3.238,1.309l-2.354-0.594l-1.367-1.496l-0.343-2.174z M68.994,61.249l1.421-0.554l0.951-1.34l0.584-1.971l-0.388-1.749l-0.973-1.458l-1.498-0.648
|
||||
l-1.26,0.501l-1.065,1.108l-0.673,2.374l0.904,2.679l1.997,1.059z"/>
|
||||
<path d="M74.297,60.727l0.618-0.252l0.583,0.03l0.512-0.283l-0.396-2.527l0.056-2.669l-0.433-0.481l-0.751,0.274l0.139-0.576l1.021-0.372l0.947-1.081l0.144,0.268l0.187-0.137l-0.015-0.009l0.221,1.148l-0.194,0.512l1.885-1.32l1.382,0.249l1.286,0.143
|
||||
l0.993,0.82l1.591-0.979l1.443-0.361l2.006,0.536l0.657,2.312l-0.272,0.812l0.238,0.888l0.031,2.285l0.004,0.646l0.639,0.086l0.189,0.391l0.023-0.053l0.054,0.213l0.015,0.199l-0.965-0.254l-0.556,0.235l-1.295,0.064l-0.502-0.067l-0.407-0.207l-0.125-0.149
|
||||
l0.255-0.126l0.681-0.057l0.729-0.38l-0.016-1.615l-0.072-3.304l-0.625-1.202l-1.344-0.444l-1.278,0.204l-0.772,1.271l-0.082,0.111l0.071,1.491l-0.007,1.159l-0.073,1.991l0.199,0.174l0.588,0.533l0.354,0.163l0.471,0.038l-0.352,0.038l-0.146,0.249l-0.483-0.287
|
||||
l-2.822,0.109l-0.774,0.052l0.163-0.172l-0.219-0.158l0.836-0.217l0.673-0.028l0.004-0.241l-0.094-0.776l0.518-1.124l-0.388-1.285l0.147-0.715l-0.343-1.921l-1.426-0.679l-1.314,0.814l-1.071,0.835l-0.247,0.391l-0.026,3.245l0.397,1.093l0.354,0.392l0.913,0.04
|
||||
l0.04,0.304l-0.025,0.49l-1.52-0.224l-0.711-0.113l-0.492,0.109l-0.303,0.174l-1.117,0.02l0.182-0.383l-0.385-0.372z"/>
|
||||
<path d="M97.504,59.91l0.209,0.198l-0.331,0.555l-0.756,0.637l-0.62,0.323l-0.99-0.621L94.69,60.28l-1.185,0.547l-0.855,0.395l-1.144,0.227l-0.891-0.195l-0.252-0.873l0.811-1.701l2.322-1.517l1.293-0.466l-0.15-0.733l-0.327-1.611l-0.898-0.36l-1.346,0.288
|
||||
l-0.599,1.319l-0.095,0.585l-0.675,0.312l-0.479-0.043l0.03-0.283l0.586-1.102l1.266-1.433l1.467-0.493l1.299,0.118l0.594,0.729l0.485,0.763l0.088,1.545l0.037,1.561l-0.008,1.136l-0.026,0.388l0.025,0.417l-0.025,0.588l0.507,0.218l0.598-0.481l0.07-0.198
|
||||
l0.292-0.017z M94.728,59.648l-0.008-1.787l-0.001-0.739l-1.447,0.688l-1.203,1.127l-0.273,0.897l0.344,0.57l0.59,0.477l0.679-0.497l1.319-0.737z"/>
|
||||
<path d="M99.079,58.803l0.444,1.291l0.98,0.857l1.17,0.36l1.145-0.563l0.345-0.89l-0.543-1.111l-1.623-1.23l-1.837-0.869l-0.355-1.299l0.263-1.228l1.009-0.863l1.231-0.121l1.228,0.206l0.931,0.265l0.032,1.447l-0.006,0.274l-0.05-0.104l-0.129,0.143
|
||||
l-0.909-1.276l-1.187-0.374l-0.986,0.218l-0.455,0.974l0.335,0.863l1.512,0.612l1.596,0.816l0.768,0.942l0.114,1.087l-0.343,1.357l-1.178,0.875l-1.24,0.155l-2.269-0.478l-0.125-0.27l0.09-0.299l-0.208-1.576l0.048-0.095l0.203-0.098z"/>
|
||||
<path d="M110.19,61.025l0.833-0.437l1.102-0.043l0.233-2.769l-0.177-1.543l-0.01-0.926l0.381-0.684l0.022-1.259l-0.278-3.171l-0.306-0.531l-1.055-0.444l-0.368-0.443l-0.02-0.027l0.137-0.39l0.693,0.102l0.361-0.025l0.786,0.361l1.864-0.239l0.773-0.073
|
||||
l1.943-0.151l2.173,0.742l2.201,0.643l1.607,1.084l0.908,2.03l0.48,2.282l-0.67,2.192l-1.123,1.875l-1.455,1.182l-2.207,0.956l-2.32,0.231l-1.792-0.255l-0.588,0.158l-0.104-0.031l-3.981,0.119l-0.041-0.226l0.017-0.116l-0.021-0.175z M115.278,60.415
|
||||
l1.404,0.452l1.852-0.512l1.892-0.447l0.942-1.526l0.727-1.218l0.515-2.143l-0.735-2.577l-1.175-1.878l-2.336-1.029l-2.722-0.211l-1.513-0.018l0,0.202l-0.062,0.412l-0.042,0.301l-0.25,1.814l0.013,2.214l0.331,5.447l1.16,0.719z"/>
|
||||
<path d="M133.08,56.011l-3.863,0.219l-0.743-0.14l-0.862,0.205l-0.307,0.285l0.191,0.086l-0.121,0.097l0.205,0.479l0.17,1.488l1.138,1.3l1.753,0.415l0.911-0.011l0.992-0.459l0.603-0.734l0.207,0.421l-0.11,0.186l-1.212,0.832l-1.325,0.611l-1.062,0.189
|
||||
l-1.304-0.419l-1.531-1.291l-0.78-2.246l0.231-1.111l0.625-1.419l0.721-0.807l0.957-0.767l1.499-0.272l1.459,0.452l1.134,1.141l0.377,1.26l0.046,0.009z M127.726,55.701l0.4,0.04l2.941-0.063l0.387-0.233l0.197-0.246l-0.048-0.732l-0.646-0.619l-0.967-0.284
|
||||
l-1.717,1.055l-0.547,1.083z"/>
|
||||
<path d="M138.792,48.961l0.081,0.082l0.44-0.27l0.914-0.326l0.524,0.004l0.237,0.592l1.413-0.004l0.071-0.044l0.047,0.247l-0.975-0.092l-0.283,0.074l0.197,0.265l-0.252,0.269l0.479,0.213l0.134,1.903l2.142,3.409l0.167,0.932l0.801,1.689l0.775,1.606
|
||||
l-0.452,0.161l1.344-2.345l1.369-1.774l-0.347-0.253l-1.766-3.774l-0.298-1.23l-0.616-1.127l-1.22,0.208l-0.196-0.217l-0.203-0.233l0.204-0.205l0.462-0.292l0.607,0.198l0.314,0.459l0.532-0.431l0.479-0.056l0.516,0.449l0.924,0.059l0.251-0.512l0.163,0.33
|
||||
l0.262-0.154l0.142,0.217l-0.311,0.004l-0.426,0.224l-0.715,0.093l-0.228,0.232l1.166,1.847l0.981,2.176l1.196-2.601l0.085-1.245l-0.275-0.168l-0.381-0.283l-0.25,0.085l-0.137-0.25l-0.305-0.068l0.349-0.198l0.179-0.124l1.363,0.165l0.668-0.243l0.409-0.094
|
||||
l0.683,0.034l0.151,0.43l0.153-0.016l0.157,0.448l-0.618-0.237l-0.948,0.67l-0.887,0.19l-0.716,1.591l-0.225,1.169l-0.07,0.673l-0.805,0.795l0.39,1.055l1.203,2.25l0.79,0.692l0.22,1.126l0.017-0.205l0.009-0.065l0.848-1.44l0.766-1.434l0.497-1.978l1.316-3.128
|
||||
l0.164-1.105l0.083-0.143l0.084-0.166l-0.025-0.512l-1.098-0.371l-0.444,0.331l0.469-0.305l-0.302-0.161l0.532,0.208l0.755-0.324l0.847,0.257l0.73-0.097l0.205,0.249l0.419-0.149l-0.234,0.415l-1.034,0.115l-0.029,0.457l-0.304,0.712l-0.596,1.746l-0.491,0.588
|
||||
l-0.351,0.343l-0.167,0.388l0.025,0.336l-1.523,3.667l-0.719,3.043l-0.877,0.917l0.056,0l-0.31,0.241l-0.429-1.455l-1.978-4.286l-0.021,0.309l-1.47,2.369l-0.739,1.549l-0.5,1.705l-0.776-0.133l-1.337-4l-1.31-3.072l-1.378-2.825l0.073-0.645l-0.073-0.394
|
||||
l-0.605-1.375l-0.713-0.095l-0.292-0.528z"/>
|
||||
<path d="M162.482,56.2l-3.872-0.144l-0.742,0.02l-0.911,0.126l-0.196,0.375l0.233,0.085l-0.123,0.104L157,57.242l0.2,1.463l1.083,1.322l1.752,0.308l0.835-0.14l1.062-0.229l0.63-0.638l0.136,0.341l-0.181,0.093l-0.94,1.165l-1.464,0.413l-1.075,0.288
|
||||
l-1.381-0.385l-1.678-1.337l-0.52-2.38l0.375-1.068l0.4-1.486l0.708-0.855l1.092-0.512l1.422-0.505l1.412,0.585l1.116,1.094l0.621,1.224l-0.124,0.198z M157.163,55.65l0.358,0.25l2.935-0.313l0.438-0.094l0.241-0.293l-0.124-0.739l-0.626-0.674l-0.999-0.208
|
||||
l-1.844,0.938l-0.378,1.134z"/>
|
||||
<path d="M170.804,55.997l-3.862,0.307l-0.743-0.097l-0.93-0.04l-0.084,0.403l-0.089,0.102l-0.041,0.09l0.241,0.48l0.298,1.436l1.098,1.23l1.675,0.672l0.876-0.257l1.004-0.379l0.618-0.739l0.224,0.456l-0.038,0.245l-1.199,0.928l-1.409,0.497l-1.073,0.129
|
||||
l-1.396-0.183l-1.454-1.498l-0.596-2.254l0.055-1.112l0.757-1.349l0.476-1.024l1.124-0.506l1.452-0.144l1.413,0.292l1.183,1.06l0.293,1.26l0.127-0.003z M165.448,55.704l0.403,0.125l2.93-0.327l0.572,0.127l0.188-0.431l-0.273-0.702l-0.563-0.693l-0.99,0.05
|
||||
l-1.726,0.757l-0.541,1.094z"/>
|
||||
<path d="M172.891,58.777l0.563,1.209l0.903,0.823l1.086,0.346l1.099-0.458l0.449-0.839l-0.438-1.251l-1.815-1.012l-1.633-1.087l-0.686-1.16l0.399-1.241l1.06-0.771l1.199-0.143l1.235,0.11l1.101,0.185l-0.009,1.558l0.17,0.343l-0.362-0.086l-0.043,0.01
|
||||
l-1.08-1.116l-1.102-0.594l-0.956,0.36l-0.471,0.944l0.453,0.75l1.395,0.689l1.485,0.974l0.602,0.93l0.287,0.978l-0.23,1.374l-1.201,0.857l-1.239,0.073l-2.271-0.387l0.041-0.281l-0.05-0.297l-0.432-1.573l0.217-0.135l0.277-0.083z"/>
|
||||
<path d="M186.44,56.266l-3.874-0.028l-0.743-0.193l-0.929,0.123l0.044,0.395l-0.273,0.112l0.032,0.087l0.155,0.479l0.375,1.433l1.014,1.35l1.75,0.463l0.888-0.126l0.949-0.475l0.686-0.576l-0.106,0.393l0.152,0.122l-1.077,1.021l-1.381,0.613l-1.108-0.073
|
||||
l-1.353-0.209l-1.662-1.297l-0.436-2.354l0.198-1.08l0.592-1.396l0.516-0.994l1.152-0.424l1.411-0.496l1.399,0.571l1.273,0.993l0.219,1.305l0.137,0.263z M181.037,55.748l0.439-0.002l2.934-0.173l0.465-0.053l0.231-0.321l-0.31-0.654l-0.475-0.726l-0.982-0.06
|
||||
l-1.849,0.753l-0.455,1.235z"/>
|
||||
<path d="M61.054,73.18l0.088-0.305l0.158,0.038l0.915-0.111l2.555-0.224l1.787-0.081l2.464,0.194l1.459,1.332l0.942,1.48l-2.27,2.408l-0.121,0.331l1.713,0.687l0.904,1.222l0.395,1.3l-1.303,2.516l-3.58,1.446l-1.454-0.293l-1.472,0.075l-2.281,0.204
|
||||
l-0.668-0.192l-0.236-0.107l0.101-0.345l0.454,0.295l1.323-0.602l0.207-0.277l0.398-1.987l-0.08-0.375l-0.1-0.74l-0.137-1.007l0.012-4.467l-0.128-1.946l0.125-0.334l-1.522-0.128l-0.645-0.005z M65.061,77.889l0.879,0.4l2.907-1.002l0.718-1.897l-0.279-0.8
|
||||
l-0.505-0.646l-0.665-0.672L66.38,72.77l-1.509,0.458l0.053,0.238l0.109,0.555l-0.319,0.596l0.35,1.199l-0.02,0.7l-0.308,1.426l0.323-0.053z M67.188,84.495l1.548-0.359l0.644-0.568L70,82.681l0.22-1.021l-0.124-0.944l-0.501-0.98l-1.056-0.789l-1.666-0.4
|
||||
L65,78.789l0,0.237l0.093,0.364l-0.429,0.729l0.116,0.831l0.288,2.692l0.388,0.818l1.731,0.035z"/>
|
||||
<path d="M73.793,78.123l0.018,0.05l0.488-0.467l0.762-0.42l0.848-0.539l0.013-0.135l-0.015,0.028l0.195,0.623l-0.18,0.437l0.12,0.52l-0.081,2.812l-0.163,2.976l0.3,0.563l0.876,0.065l0.641,0.217l0.15,0.275l-0.242,0.314l-1.027-0.02l-1.071-0.4l-1.572,0.283
|
||||
l-0.56,0.083l-0.21-0.099l0.154-0.188l0.058-0.163l0.936-0.39l0.297-0.207l0.101-0.552l0.458-4.087l-0.219-0.866l-0.27-0.335l-0.806-0.378z M74.67,73.238l0.216-0.383l0.439-0.352l0.711,0.129l0.32,0.644l-0.555,0.408l-0.477,0.666l-0.77-0.315l0.115-0.797z"/>
|
||||
<path d="M78.297,73.074l0.054-0.021l0.473-0.115l1.379-0.77l0.619-0.105l-0.334,0.742l0.269,9.6l-0.176,0.971l0.391,1.094l0.523,0.214l0.606,0.416l0.285,0.025l-0.318,0.025l-0.028,0.125l-1.041,0.074l-1.294-0.186l-1.649,0.355l-0.35-0.139l-0.092-0.261
|
||||
l0.137-0.234l0.759-0.117l0.82-0.038l-0.046-0.437l-0.109-1.979l-0.008-2.256l0.125-2.333l0.271-2.331l-0.21-1.15l0.109-0.576l-0.635-0.079l-0.528-0.517z"/>
|
||||
<path d="M82.643,73.182l0.106-0.25l0.635-0.06l1.413-0.628l0.55-0.102l-0.322,0.662l0.005,9.6l0.323,0.971l-0.056,1.261l0.753,0.241l0.599,0.273l0.067-0.024l-0.088,0.007l-0.01,0.126l-1.032-0.128l-1.304,0.002l-1.662,0.159l-0.335,0.086l0.028-0.259
|
||||
l0.037-0.205l0.713-0.293l0.745-0.018l0.316-0.28l-0.009-2.009l-0.238-2.254l0.215-2.332l-0.009-2.333l-0.097-1.148l-0.195-0.399l-0.354-0.333l-0.793-0.333z"/>
|
||||
<path d="M92.023,85.527l0.315-0.239l0.672-0.133l0.742-0.558l0.123-0.158l0.436-0.552l-0.28-0.74l0.031-0.685l0.4-0.807l-0.358-1.249l0.211-0.791l-0.073-2.669l0.196-1.369l-0.177-1.027l0.216-1.029l-0.321-0.148l-0.711,0.041l-0.489-0.408l0.081,0.002
|
||||
l-0.358-0.398l0.473,0.004l0.916,0.252l2.087,0.061l1.608-0.348l0.032,0.232l-0.153,0.083l-0.076-0.04l-1.321,0.696l-0.328,0.878L95.625,77.7l0.584,0.887l1.003-0.008l0.385,0.122l1.439,0.156l0.954,0.109l2.486-0.241l0.758-0.088l-0.341-3.298l0.302-1.842
|
||||
l-0.193-0.382l-1.113,0.039l-0.312-0.041l0.125-0.131l0.258-0.441l0.636,0.158l1.778,0.362l1.882-0.095l0.1,0.299l-0.998,0.187l-0.474,0.12l-0.137,0.383l-0.028,0.209l0.062,0.461l-0.109,1.117l0.023,0.7l0.055,0.903l0.048,1.69l-0.357,1.591l0.356,1.486
|
||||
l-0.385,1.311l0.583,0.837l-0.049,0.266l0.806,0.097l0.711,0.304l0,0.263l0.059,0.14l-0.083-0.135l-0.161,0.378l-2.188-0.248l-1.316-0.33l-1.608,0.108l0.003,0.065l0.102-0.091l0.9-0.077l0.854-0.473l-0.034-0.626l0.017-1.403l0.007-0.69l0.071-2.414
|
||||
l-0.028-0.363l-2.672,0.415l-0.717-0.384l-0.996,0.446l-1.383-0.001l-0.584-0.4l-0.497-0.1l-0.31,0.348l-0.089,0.321l0.173,0.679l0.075,1.849l-0.484,0.556l0.339,1.759l0.158,0.243l0.712,0.315l0.658,0.179l0.091,0.056l-0.146-0.051l-0.055,0.467l-0.173-0.545
|
||||
l-0.427,0.22l-1.224-0.147l-0.852-0.027l-1.994,0.064l-0.635,0.236z"/>
|
||||
<path d="M114.909,84.053l0.251,0.054l-0.494,0.443l-0.514,0.854l-0.684,0.012l-0.965-0.436l-0.361-0.735l-1.188,0.562l-0.795,0.587l-1.19-0.104l-0.88-0.047l-0.094-0.862l0.708-1.642l2.28-1.516l1.204-0.562l0.038-0.698l-0.415-1.64l-0.935-0.365l-1.219,0.461
|
||||
l-0.693,1.186l-0.149,0.557l-0.654,0.18l-0.431,0.043l-0.123-0.217l0.617-1.147l1.307-1.451l1.5-0.295l1.215,0.209l0.739,0.454l0.516,0.798l-0.168,1.558l-0.046,1.561l0.045,1.14l0.165,0.387l-0.051,0.417l0.138,0.509l0.423,0.189l0.67-0.322l0.166-0.107
|
||||
l0.068-0.015z M112.248,83.671l-0.059-1.81l0.032-0.869l-1.534,0.748l-1.017,1.295l-0.537,0.8l0.477,0.561l0.58,0.397l0.753-0.257l1.304-0.865z"/>
|
||||
<path d="M115.552,84.962l0.532-0.194l0.721-0.204l0.133-0.504l-0.134-0.356l0.233-0.483l-0.023-2.963l-0.203-0.776l-0.96-0.395l-0.051-0.393l1.035-0.57l1.087-0.995l0.151,0.009l-0.055,0.549l0.073,0.653l0.251,0.083l0.097-0.169l1.276-0.626l1.081-0.439
|
||||
l0.688-0.119l1.424,0.42l0.786,1.046l-0.015,2.342l0.063,1.482l0.014,0.392l-0.094,0.767l0.289,0.831l0.09,0.464l1.149,0.128l-0.195,0.086l0.164,0.346l-0.229-0.285l-1.301,0.227l-1.283-0.183l-1.22-0.02l-0.185-0.069l0.177-0.088l0.677-0.242l0.41-0.013
|
||||
l0.21-0.238l0.136-0.363l-0.039-0.27l0.156-2.23l-0.059-0.504l-0.208-0.781l-0.269-1.852l-1.475-0.384l-1.273,0.337l-1.202,0.856l0.05,0.784l0.082,2.146l0.008,2.048l-0.03,0.225l0.332,0.034l0.575,0.063l0.385,0.178l0.199,0.305l0.036,0.205l-1.027-0.136
|
||||
l-2.115,0.293l-0.927-0.07l-0.248-0.118l-0.148-0.115l0.197-0.153z"/>
|
||||
<path d="M133.031,80.009l-3.863,0.18l-0.742,0.115l-0.94-0.156l-0.202,0.43l0.096,0.091l-0.007,0.094l0.056,0.477l0.335,1.462l1.091,1.303l1.738,0.462l0.91-0.039l0.979-0.474l0.627-0.672l0.205,0.377l-0.097,0.203l-1.146,0.959l-1.368,0.631l-1.107,0.179
|
||||
l-1.372-0.412l-1.48-1.441l-0.609-2.255l0.088-1.108l0.542-1.461l0.669-0.921l1.166-0.41l1.414-0.493l1.528,0.352l1.031,1.278l0.627,1.245l-0.17,0.004z M127.634,79.753l0.443-0.083l2.934-0.111l0.547,0.048l0.211-0.408l-0.265-0.707l-0.564-0.703l-0.998-0.029
|
||||
l-1.796,0.794l-0.511,1.199z"/>
|
||||
<path d="M133.932,84.801l0.546-0.16l0.632-0.027l-0.057-0.493l0.147-2.426l0.124-2.721l-0.614-0.121l-0.575-0.097l0.038-0.508l1.208-0.112l0.781-1.321l0.117-0.176l0.187,0.505l-0.068-0.231l0.358,1.148l-0.11,0.837l1.819-1.425l1.281-0.253l1.431,0.199
|
||||
l0.851,1.172l1.497-1.293l1.535-0.188l1.782,0.769l0.965,2.092l-0.065,0.811l-0.394,0.89l0.318,2.285l0.114,0.582l0.523,0.356l0.456-0.061l-0.269,0.194l0.208,0.278l-0.035-0.039l-0.96-0.297l-0.582-0.033l-1.307,0.072l-0.49,0.51l-0.366-0.451l-0.085-0.006
|
||||
l0.059-0.277l0.78-0.01l0.668-0.323l0.048-1.568l-0.271-3.271l-0.464-1.172l-1.293-0.38l-1.181,0.253l-1.103,0.96l-0.042,0.245l0.105,1.491l-0.041,1.158l0.04,2.005l0.117,0.355l0.775,0.152l0.475,0.056l0.321,0.333l-0.299,0.38l-0.194-0.248l-0.486,0.129
|
||||
l-2.821,0.072l-0.757-0.344l-0.268-0.027l0.071-0.235l0.927-0.296l0.75,0.258l-0.139-0.38l0.412-0.725l-0.361-1.146l-0.092-1.278l0.495-0.714l-0.88-1.599l-1.061-0.517l-1.427,0.094l-1.147,0.963l0.244,0.493l-0.366,3.249l0.428,1.099l0.354,0.445l1.005-0.143
|
||||
l-0.191,0.427l0.111,0.037l-1.51,0.372l-0.707-0.173l-0.49,0.167l-0.315-0.189l-1.109-0.063l-0.027-0.077l-0.083-0.298z"/>
|
||||
<path d="M157.091,83.793l0.076,0.314l-0.252,0.549l-0.701,0.719l-0.667,0.237l-1.146-0.484l-0.172-0.855l-1.165,0.58l-0.83,0.527l-1.187,0.111l-0.787-0.339l-0.428-0.773l1.025-1.576l2.208-1.575l1.33-0.498l-0.15-0.769l-0.165-1.791l-1.125-0.316l-1.168,0.619
|
||||
l-0.806,1.118l-0.035,0.623l-0.706,0.245l-0.454-0.043l0.132-0.248l0.269-1.216l1.435-1.356l1.487-0.418l1.212,0.314l0.757,0.433l0.291,0.845l0.063,1.524l-0.016,1.561l0.013,1.139l0.184,0.389l-0.083,0.416l0.179,0.465l0.376,0.134l0.75-0.165l-0.054-0.284
|
||||
l0.311-0.157z M154.228,83.633l-0.049-1.772l0.072-0.706l-1.469,0.606l-1.092,1.232l-0.475,0.843l0.322,0.719l0.735,0.101l0.749-0.129l1.208-0.894z"/>
|
||||
<path d="M157.702,85.062l0.488-0.118l0.656-0.422l0.045-0.466l0.005-0.352l0.292-0.484l-0.015-2.963l-0.17-0.88l-1.025-0.338l-0.128-0.374l1.124-0.471l0.962-1.147l0.387-0.1l0.11,0.739l-0.189,0.652l0.128,0.122l0.237-0.092l1.235-0.641l1.079-0.357l0.645-0.232
|
||||
l1.361,0.437l0.921,0.939l-0.152,2.364l0.077,1.482l0.161,0.396l0.009,0.762l0.054,0.842l0.122,0.464l1.181,0.101l-0.134,0.102l-0.02,0.125l-0.141,0.171l-1.296-0.103l-1.279,0.017l-1.229-0.115l-0.322-0.048l0.223-0.262l0.774-0.104l0.371-0.115l0.343-0.057
|
||||
l0.01-0.436l-0.023-0.268l0.095-2.232l-0.063-0.505l0.024-0.778l-0.465-1.804l-1.428-0.521l-1.333,0.295l-1.277,0.906l-0.043,0.865l0.353,2.144l-0.241,2.075l0.249,0.128l0.214,0.325l0.532,0.154l0.417,0.104l0.289,0.063l0.015,0.272l-1.041-0.024l-2.113,0.03
|
||||
l-0.928,0.08l-0.316-0.035l0-0.271l0.186-0.043z"/>
|
||||
<path d="M57.004,96.909l-0.178-0.257l1.596,0.085l0.323-0.077l0.324,0.069l2.297-0.194l0.643,0.302l0.626-0.278l0.345,0.233l-0.167,0.206l-0.42-0.152l-0.078,0.224l-0.918-0.166l-0.762,0.468l-0.334,0.229l0.408,1.169l1.362,3.476l0.82,1.001l1.537,3.667
|
||||
l-0.093,0.396l0.801-1.527l1.128-2.528l0.678-1.825l0.073-0.402l0.982-3.292l-0.329-0.249l-0.343-0.367l-0.804,0.129l-0.676-0.36l-0.208-0.119h0.132l3.142,0.1l1.037-0.193l0.678,0.106l0.275,0.012l-0.283,0.217l-0.401,0.282l-1.128-0.082l-0.251,0.759
|
||||
l-2.405,6.38l-2.036,4.279l0.041,0.973l-0.47-0.303l-0.283,0.255l-1.808-4.641l-3.08-6.668l-0.467-0.704l-1.108-0.302l-0.355-0.229l0.139-0.105z"/>
|
||||
<path d="M70.86,102.489l0.098-0.578l0.689-0.315l0.943-0.151l0.534-0.865l0.181,0.249l0.266-0.31l-0.198,0.743l-0.166,0.436l0.148,0.522l0.342,2.813l-0.202,2.978l0.173,0.401l0.687,0.279l0.605,0.242l0.12,0.194l-0.229-0.075l-0.951,0.228l-1.079-0.203
|
||||
l-1.577,0.067l-0.574,0.077l-0.209,0.096l0.099-0.215l0.063-0.307l1.03-0.124l0.331-0.283l0.083-0.597l0.163-4.088l0.084-0.885l-0.497-0.067l-0.958-0.262z M72.052,97.238l0.241-0.373l0.43-0.639l0.504,0.622l0.574,0.428l-0.366,0.648l-0.712,0.084l-0.477-0.268
|
||||
l-0.194-0.503z"/>
|
||||
<path d="M75.5,109.02l0.506-0.15l0.641-0.375l0.207-0.434l-0.036-0.351l-0.031-0.488l0.001-2.963l0.023-0.864l-1.041-0.32l0.07-0.262l0.932-0.652l1.084-0.999l0.19-0.098l-0.059,0.624l0.156,0.651l0.023,0.144l0.344-0.011l1.056-0.966l1.115-0.411l0.711,0
|
||||
l1.344,0.505l0.793,0.959l0.06,2.321l0.145,1.482l-0.137,0.389l-0.108,0.77l0.168,0.899l0.314,0.293l1.056,0.27l0.002,0.047l-0.058,0.119l-0.135-0.003l-1.301-0.093l-1.276,0.268l-1.39,0.095l0.011-0.377l0.027-0.255l0.805,0.052l0.391-0.161l0.343-0.113
|
||||
l-0.035-0.459l0.051-0.272l0.116-2.228l-0.067-0.504l0.06-0.778l-0.652-1.727l-1.355-0.637l-1.321,0.357l-1.329,0.858l0.106,0.888l-0.032,2.147l0.068,2.068l0.181,0.166l0.285,0.114l0.537,0.186l0.443-0.036l0.303,0.339l-0.106,0.082l-1.002,0.228l-2.112-0.092
|
||||
l-0.928,0.137l-0.175-0.325l0.036,0.012l-0.02-0.065z"/>
|
||||
<path d="M93.072,107.446l-0.055,0.66l-1.437,1.197l-1.77,0.407l-1.93-0.779l-1.389-1.565l-0.582-2.063l0.623-2.128l1.518-1.53l2.41-0.291l2.162,0.213l0.481,0.808l-0.427,0.441l-0.468,0.418l-1.194-0.641l-0.566-0.567L89.82,101.8l-1.506,0.709l-0.593,2.641
|
||||
l0.607,2.621l1.985,0.872l1.348-0.247l1.411-0.951z"/>
|
||||
<path d="M101.277,104.217l-3.871,0.083l-0.743-0.108l-0.952-0.067l-0.14,0.45l0.146,0.089l-0.055,0.1l0.052,0.477l0.295,1.457l1.164,1.182l1.657,0.45l0.913,0.107l0.848-0.655l0.752-0.516l-0.071,0.432l0.234,0.202l-1.191,0.932l-1.354,0.696l-1.127-0.071
|
||||
l-1.399-0.171l-1.423-1.523l-0.56-2.238l0.103-1.086l0.393-1.514l0.913-0.657l0.937-0.742l1.455-0.255l1.45,0.347l1.09,1.153l0.476,1.231l0.009,0.215z M95.929,103.684l0.386,0.187l2.936-0.265l0.397-0.156l0.208-0.251l-0.18-0.675l-0.607-0.529l-0.89-0.396
|
||||
l-1.758,0.986l-0.493,1.099z"/>
|
||||
<path d="M102.181,108.753l0.67-0.023l0.676-0.22l0.335-0.446l0.041-0.343l-0.164-0.501l-0.081-2.963l-0.086-0.765l-0.9-0.457l-0.149-0.389l1.169-0.422l1.034-1.061l0.148-0.057l-0.006,0.579l0.226,0.65l-0.095,0.17l0.196-0.278l1.27-0.658l1.136-0.265l0.66-0.049
|
||||
l1.446,0.204l0.552,1.138l0.34,2.28l0,1.482l0.013,0.396l-0.206,0.763l0.18,0.878l0.269,0.25l1.252,0.219l-0.281,0.162l0.057,0.223l-0.177-0.139l-1.302,0.007l-1.275,0.226l-1.307-0.085l0.002-0.239l-0.002-0.172l0.735-0.315l0.455,0.253l0.273-0.25l0.189-0.437
|
||||
l-0.222-0.267l0.178-2.233l-0.094-0.504l-0.072-0.779l-0.588-1.606l-1.244-0.499l-1.25,0.256l-1.223,0.807l-0.08,0.784l0.184,2.146l0.1,2.039l0.009,0.132l0.231,0.108l0.553,0.15l0.384,0.191l0.096,0.247l0.17,0.264l-1.043-0.006l-2.112-0.031l-0.928,0.106
|
||||
l-0.32-0.02l0.113-0.291l-0.136-0.339z"/>
|
||||
<path d="M114.935,99.688l0.154-0.062l-0.002,0.898l0.052,1.215l0.313-0.134l0.972-0.009l0.896-0.068l0.536,0.275l-0.105,0.185l-0.004,0.238l-0.04,0.21l-1.539-0.143l-0.763,0.036l-0.205,0.094l-0.155,0.611l0.013,1.472l0.184,2.593l0.287,1.278l0.67,0.312
|
||||
l0.969-0.037l0.661-0.175l0.009-0.322l0.052,0.322l0.003,0.034l0.241,0.164l-1.005,0.744l-1.505,0.017l-1.054-0.27l-0.48-0.717l-0.229-1.745l0.067-2.209l0.159-1.061l-0.007-0.392l-0.261-0.442l-0.045,0.076l-0.805-0.317l-0.07,0.188l-0.265,0.042l-0.074-0.23
|
||||
l0.065-0.317l0.54-0.16l0.498-0.461l0.614-0.572l0.344-0.72l0.314-0.438z"/>
|
||||
<path d="M123.436,109.38l0.142-0.021l0.55-0.374l0.9-0.116l0.382-0.257l-0.235-0.718l0.297-0.748l-0.207-0.684l-0.075-0.799l0.044-1.255l0.256-0.791l0.015-2.669l-0.188-1.379l-0.08-1.017l-0.067-0.901l0.139-0.301l-0.715-0.051l-0.659-0.047l-0.246-0.242
|
||||
l0.139-0.381l0.461,0.312l0.92-0.268l2.056-0.132l1.623,0.302l0.231-0.03l-0.4,0.035l0.02,0.381l-1.412,0.264l-0.254,0.939l-0.233,3.265l0.21,0.912l1.284,0.272l0.402,0.007l1.437,0.003l0.948-0.36l2.483-0.095l0.468,0.173l0.399-3.271l-0.389-1.782l-0.118-0.136
|
||||
l-0.974,0l-0.313-0.271l-0.031-0.425l0.435,0.095l0.667-0.348l1.764,0.195l1.883,0.28l-0.079,0.093l-0.835,0.194l-0.499,0.263l-0.074,0.456l-0.141,0.213l-0.085,0.457l0.155,1.116l-0.127,0.699l-0.179,0.903l0.292,1.691l-0.165,1.592l0.236,1.486l-0.241,1.311
|
||||
l0.097,0.998l0.305,0.225l0.806,0.103l0.667,0.267l0.357,0.216l-0.247,0.085l-0.037,0.075l-0.155,0.027l-2.217-0.588l-1.305,0.302l-1.607,0.229l0.162-0.192l-0.27-0.307l1.066-0.197l0.92-0.101l0.201-0.663l-0.306-1.402l0.015-0.69l0.094-2.413l0.001-0.377
|
||||
l-2.677,0.417l-0.717-0.176l-0.986-0.064l-1.393-0.055l-0.574,0.325l-0.507-0.298l-0.119,0.369l-0.533,0.143l0.359,0.677l-0.027,1.843l-0.282,0.561l0.282,1.764l0.021,0.489l0.938-0.228l0.479,0.621l0.201-0.093l-0.119-0.025l-0.078-0.102l-0.193,0.443
|
||||
l-0.407-0.265l-1.223-0.129l-0.853,0.102l-1.975,0.293l-0.38-0.249z"/>
|
||||
<path d="M146.105,107.905l0.185,0.203l-0.32,0.547l-0.664,0.776l-0.7,0.192l-1.085-0.542l-0.229-0.793l-1.045,0.752l-0.96,0.316l-1.18,0.056l-0.749-0.294l-0.4-0.736l0.901-1.626l2.195-1.691l1.342-0.363l-0.186-0.736l-0.156-1.723l-1.04-0.476l-1.269,0.6
|
||||
l-0.57,1.257l-0.184,0.58l-0.692,0.094l-0.365,0l-0.168-0.126l0.485-1.214l1.539-1.158l1.379-0.434l1.196,0.172l0.703,0.448l0.598,0.749l-0.037,1.564l-0.173,1.559l-0.055,1.14l0.076,0.379l-0.032,0.424l0.308,0.48l0.392,0.366l0.616-0.509l0.086-0.182
|
||||
l0.261-0.05z M143.197,107.6l0.063-1.739l0.039-0.675l-1.332,0.771l-1.269,1.001l-0.218,0.877l0.285,0.544l0.564,0.33l0.768-0.146l1.101-0.964z"/>
|
||||
<path d="M146.698,109.279l-0.191-0.05l0.186-0.399l0.651,0.182l0.768-0.33l0.194-0.078l0.099-0.777l-0.296-3.835l-0.017-0.656l-0.686-0.258l-0.555-0.087l0.104-0.255l1.4-0.689l0.73-1.262l0.468-0.104l0.032,2.327l-0.116,0.167l0.117,0.242l0.739-1.408
|
||||
l0.385-0.069l0.144-0.404l1.082-0.221l0.738,0.178l0.117,0.752l0,0.605l-0.681,0.265l-0.602-0.304l-0.616-0.3l-0.385,0.242l-0.649,0.888l-0.207,0.908l-0.154,1.615l0.206,1.929l-0.008,0.431l0.205,0.114l1.25,0.182l0.201,0.171l0.653-0.13l-0.113,0.244
|
||||
l0.072,0.331l-1.09-0.138l-0.408,0.016l-0.596-0.23l-0.996,0.081l-0.535,0.098l-1.636,0.019z"/>
|
||||
<path d="M160.282,102.247l-0.422-0.367l0.346-1.145l-0.214-2.164l-0.167-1.093l-1.051-0.706l-0.203,0.054l0.196-0.062l-0.201-0.041l2.243-0.706l0.592-0.035l-0.027,1.574l-0.164,3.747l0.188,4.222l-0.29,2.245l0.301,0.838l0.942,0.19l0.558-0.167l-0.181,0.327
|
||||
l0.113,0.394l-0.751-0.105l-1.431,0.338l-0.271-0.031l0.014-0.93l-0.702,0.405l-2.869,0.673l-1.585-0.683l-1.109-1.474l-0.473-1.786l0.298-1.578l0.682-1.29l0.706-0.854l0.935-0.488l1.228,0.186l2.202,0.171l0.569,0.338z M160.075,108.182l-0.034-2.688
|
||||
l-0.143-2.158l-0.705-0.946l-1.481-0.314l-1.921,0.822l-0.664,2.587l0.824,2.312l2.023,1.166l1.357-0.265l0.745-0.514z"/>
|
||||
<path d="M162.906,101.337l0.519,0.25l0.467-0.196l0.64-0.096l0.83,0.321l0.671-0.352l1.03,0.137l0.173,0.332l-0.222,0.039l-0.603,0.293l-1.001-0.007l-0.12,0.19l0.38,0.285l0.036,0.388l1.136,2.729l0.732,2.68l0.499-1.589l0.741-2.346l0.533-1.456l0.413-0.451
|
||||
l-0.457-0.171l-0.426-0.242l-0.661-0.384l0.047-0.058l-0.047-0.003l0.602-0.343l0.651,0.428l0.974-0.285l0.624-0.078l0.155,0.145l0.179,0.188l-0.039,0.015l0.08,0.151L171.273,102l-0.843,0.255l-0.257,0.439l-0.246,0.294l-0.159,0.39l-0.071,0.708l-0.349,0.18
|
||||
l0.102,0.093l-1.557,4.41l-1.452,3.198l-0.113,0.669l-0.441,0.763l-0.606,0.3l-0.419,0.361l-0.282-0.096l-0.632,0.003l-0.279-0.519l0.316-0.643l0.227-0.063l0.147-0.012l1.029,0.002l0.348-0.064l0.954-1.531l0.084-1.226l0.036-1.032l-1.191-2.829l-1.319-3.638
|
||||
l-0.32-0.073l-0.588-0.43l-0.196-0.074l-0.14-0.175l-0.149-0.323z"/>
|
||||
<path d="M56.902,121.187l0.027,0.751l0.186,0.881l-0.459,0.571l0.069,0.209l0.095-0.11l-1.258-1.922l-1.812-0.604l-1.735,0.696l-0.979,1.345l0.614,1.214l2.672,1.422l2.155,1.481l1.254,1.044l0.146,1.61l-0.497,1.998l-1.538,1.317l-2.423,0.404l-2.597-0.151
|
||||
l-0.736-0.663l-0.024-0.26l-0.41-0.299l0.405-1.873l-0.197-0.676l0.374,0.164l0.318-0.18l-0.336,0.41l1.294,2.194l2.32,0.88l1.401-0.362l0.832-1.015l0.511-1.063l-0.557-1.394l-2.149-1.644l-2.367-1.037l-1.195-1.511l-0.012-1.377l0.836-2.367l2.947-0.803
|
||||
l1.738,0.107l1.087,0.613z"/>
|
||||
<path d="M61.488,123.642l0.153-0.011l0.034,0.893l0.045,1.214l0.3,0.11l0.977-0.182l0.892,0.169l0.64-0.248l0.08,0.399l-0.244,0.296l-0.091,0.079h-1.535l-0.754,0.204l-0.227-0.159l-0.034,0.624l0.001,1.474l0.086,2.594l0.033,1.475l0.925,0.214l0.928-0.329
|
||||
l0.57-0.228l0.142-0.089l0.179,0.203l0.008,0.175l0.088,0.137l-1.005,0.707l-1.485,0.054l-1.043-0.268l-0.434-0.719l-0.217-1.728l0.035-2.209l0.023-1.061l-0.221-0.393l0.308-0.68l-0.309-0.055l-0.79,0.273l-0.086-0.171l-0.197,0.111l-0.149-0.162l0.233-0.161
|
||||
l0.364-0.37l0.682-0.227l0.643-0.634l0.314-0.778l0.141-0.545z"/>
|
||||
<path d="M72.204,128.079l-3.866,0.211l-0.743-0.146l-0.938,0.008l-0.124,0.421l0.016,0.096l-0.071,0.093l0.054,0.478l0.522,1.41l0.987,1.33l1.721,0.376l0.876-0.03l1.005-0.38l0.638-0.65l-0.075,0.404l0.01,0.043l-1.042,0.974l-1.302,0.741l-1.107-0.012
|
||||
l-1.4-0.157l-1.47-1.496l-0.713-2.267l0.311-1.084l0.429-1.492l0.83-0.731l0.981-0.683l1.451-0.441l1.489,0.456l1.02,1.239l0.382,1.214l0.129,0.077z M66.882,127.659l0.366-0.039l2.938,0.022l0.555-0.022l0.169-0.422l-0.173-0.738l-0.713-0.508l-0.912-0.355
|
||||
l-1.767,0.981l-0.463,1.082z"/>
|
||||
<path d="M73.367,138.149l-0.092-0.019l0.147,0.046l0.984-0.155l0.265-0.577l0.042-0.32l-0.185-5.72l0.148-3.57l0.08-1.15l-0.437,0.021l-0.837-0.481l0.077-0.188l1.44-0.598l0.636-0.767l0.05-0.03l0.02-0.004l0.385,0.75l-0.085,0.96l1.335-0.861l1.679-0.217
|
||||
l2.434,1.292l1.138,2.626l-0.56,2.241l-1.51,1.718l-2.19,0.443l-1.976-0.8l-0.563-0.048l0.406,1.432l0.054,3.328l0.412,0.232l0.988,0.35l0.286,0.535l-1.01-0.073l-0.872,0.022l-1.46-0.034l-1.228-0.386z M76.038,127.257l-0.112,0.116l-0.205,3.982l0.648,1.188
|
||||
l1.931,0.488l2.265-0.78l0.725-2.4l-1.052-2.509l-2.272-0.795l-1.216-0.235l-0.711,0.945z"/>
|
||||
<path d="M83.697,133.014l1.199-0.53l0.06-0.121l0.394-0.646l-0.482-1.14l0.459-2.908l-0.273-1.083l0.129-0.769l0.079-0.946l-0.252-2.65l-0.118-0.512l-1.208-0.641l-0.107,0.085l0.095-0.19l0.226-0.178l0.28,0.114l1.718-0.495l0.494-0.328l-0.115,1.89
|
||||
l-0.058,1.244l0.39,1.607l-0.531,1.971l0.252,0.392l0.843-1.031l1.055-0.813l1.314-0.161l1.806,1.287l0.622,1.553l-0.161,0.988l0.065,0.553l-0.129,0.956l0.227,1.422l-0.234,0.87l0.708-0.159l0.86,0.29l-0.033,0.425l-2.083,0.08l-0.947-0.142l-0.554,0.019
|
||||
l-0.26,0.144l0.099-0.34l-0.093-0.083l0.478-0.351l0.617-0.007l0.141-0.216l0.336-2.499l-0.359-0.728l0.08-1.916l-0.665-0.933l-1.222-0.248l-0.948,0.432l-0.775,0.525l-0.688,0.636l-0.317,0.64l0.125,0.674l0.045,0.706l0.238,1.207l0.007,0.619L86.5,132.25
|
||||
l-0.181,0.407l1.432,0.163l0.301,0.131l0.219,0.054l-0.288-0.006l-0.353,0.272l-0.765-0.326l-1.686,0.242l-1.259,0.336l-0.371-0.142l0.01-0.2l0.139-0.169z"/>
|
||||
<path d="M101.388,132.067l0.179,0.041l-0.347,0.486l-0.689,0.638l-0.578,0.37l-1.18-0.443l-0.148-0.92l-1.091,0.711l-0.918,0.339l-1.162,0.179l-0.697-0.4l-0.443-0.687l0.837-1.675l2.335-1.442l1.064-0.67l0.124-0.629l-0.42-1.606l-0.892-0.366l-1.376,0.255
|
||||
l-0.438,1.38l-0.311,0.472l-0.591,0.312l-0.334-0.158l-0.06-0.083l0.445-1.154l1.395-1.303l1.424-0.63l1.269,0.258l0.725,0.565l0.371,0.848l0.183,1.543l-0.099,1.559l0.049,1.137l-0.003,0.39l-0.01,0.416l0.112,0.468l0.379,0.357l0.701-0.427l-0.063-0.297
|
||||
l0.261,0.166z M98.761,131.681l-0.021-1.82l-0.051-0.814l-1.402,0.87l-1.302,1l-0.104,0.918l0.244,0.531l0.551,0.427l0.81-0.146l1.276-0.967z"/>
|
||||
<path d="M101.963,132.855l0.625,0.05l0.6-0.449l0.246-0.396l-0.102-0.354l0.092-0.485l-0.167-2.963l0.105-0.84l-1.162-0.193l-0.019-0.624l1.129-0.488l0.958-1.151l0.34,0.116l0.005,0.607l0.064,0.651l-0.036,0.216l0.396-0.15l1.116-0.878l1.122-0.365l0.695,0.016
|
||||
l1.394,0.356l0.758,1.022l0.283,2.325l-0.284,1.482l0.286,0.399l-0.298,0.759l0.239,0.861l0.201,0.341l1.147,0.211l-0.127,0.096l0.087,0.372l-0.247,0.047l-1.293-0.123l-1.283-0.21l-1.248,0.051l-0.1-0.133l0.116-0.082l0.669-0.387l0.451,0.22l0.219-0.289
|
||||
l0.026-0.394l-0.103-0.259l0.037-2.24l-0.062-0.509l0.164-0.775l-0.379-1.859l-1.48-0.248l-1.327,0.091l-1.256,0.909l-0.094,0.85l0.293,2.144l0.075,2.044l-0.112,0.28l0.373,0.049l0.593-0.018l0.366,0.253l0.417,0.219l-0.141,0.366l-1.055-0.186l-2.111-0.139
|
||||
l-0.93,0.024l-0.24,0.116l0.029-0.12l-0.063-0.238z"/>
|
||||
<path d="M119.518,128.078l-3.866,0.088l-0.743-0.163l-0.998,0.035l0.094,0.526l-0.189,0.107l-0.035,0.091l0.271,0.48l0.074,1.512l1.162,1.327l1.788,0.443l0.921-0.06l0.816-0.713l0.759-0.553l0.101,0.479l-0.05,0.131l-1.012,1.107l-1.46,0.415l-1.073,0.044
|
||||
l-1.408-0.069l-1.453-1.52l-0.688-2.261l0.211-1.1l0.568-1.435l0.651-0.901l1.082-0.559l1.453-0.331l1.46,0.399l1.062,1.182l0.341,1.221l0.156,0.076z M114.167,127.695l0.396,0.024l2.933-0.17l0.512,0.02l0.002-0.37l-0.094-0.67l-0.612-0.509l-0.877-0.258
|
||||
l-1.752,0.829l-0.507,1.106z"/>
|
||||
<path d="M125.666,133.37l0.015-0.087l0.659-0.297l0.738-0.437l0.511,0.047l-0.067-0.707l0.144-0.745l0.181-0.686l-0.164-0.802l-0.126-1.247l0.248-0.795l-0.058-2.669l0.051-1.368l-0.2-1.027l0.236-1.03l-0.34-0.122l-0.67-0.309l-0.595,0.036l0.006-0.117
|
||||
l-0.138-0.281l0.405,0.079l0.917,0.198l2.057-0.486l1.622,0.368l0.197-0.075l-0.237,0.134l-0.135-0.039l-1.508,0.446l-0.299,1.078l0.26,3.253l-0.252,0.934l1.437-0.031l0.389,0.357l1.436-0.137l0.948-0.251l2.498,0.358l0.771-0.278l0.041-3.3l-0.509-1.743
|
||||
l0.222-0.489l-1.089-0.163l-0.154-0.023l-0.364-0.342l0.545,0.238l0.646-0.015l1.785-0.217l1.912,0.073l-0.059,0.445l-0.874,0.291l-0.466,0.186l-0.35,0.375l-0.079,0.221l0.143,0.45l0.111,1.116l-0.22,0.699l0.141,0.904l0.045,1.69l-0.107,1.592l-0.158,1.487
|
||||
l0.418,1.311l-0.251,1.009l0.359,0.112l0.848-0.082l0.647,0.496l0.307,0.271l-0.098,0.174l-0.16,0.181l-0.208-0.017l-2.188-0.493l-1.305,0.059l-1.608,0.204l0.004-0.17l-0.185-0.386l1.136-0.156l0.973-0.01l0.138-0.716l-0.053-1.4l-0.245-0.691l-0.011-2.409
|
||||
l0.062-0.191l-2.629-0.08l-0.7,0.335l-0.98-0.438l-1.398,0.145l-0.574,0.277l-0.507,0.088l-0.359-0.228l-0.232,0.37l0.271,0.677l-0.143,1.838l0.252,0.565l-0.263,1.799l0.246,0.343l0.772,0.308l0.565,0.207l0.162-0.083l-0.146-0.134l-0.004,0.512l-0.172-0.543
|
||||
l-0.429,0.258l-1.226-0.142l-0.849,0.046l-2-0.149l-0.336,0.19z"/>
|
||||
<path d="M140.779,126.465l0.175-0.452l0.766-0.033l0.556-0.792l0.888-0.479l0.061-0.24l0.117,0.107l-0.084,0.686l-0.025,0.438l0.338,0.519l-0.132,2.813l-0.112,2.979l0.01,0.61l0.859,0.283l0.532,0.24l-0.11-0.016l0.153,0.04l-0.955-0.142l-1.095,0.336
|
||||
l-1.568,0.067l-0.562-0.028l-0.208-0.118l-0.155-0.182l0.255-0.389l1.05-0.136l0.588-0.005l-0.208-0.782l0.357-4.087l-0.016-0.9l-0.476-0.139l-0.999-0.198z M141.767,121.238l0.412-0.386l0.441-0.241l0.515,0.226l0.447,0.439l-0.495,0.398l-0.467,0.567
|
||||
l-0.627-0.35l-0.227-0.654z"/>
|
||||
<path d="M145.275,121.22l0.261-0.24l0.583-0.043l1.402-0.647l0.471-0.043l-0.164,0.558l-0.044,9.6l0.193,0.971l0.304,1.084l0.467,0.574l0.642,0.075l0.006,0.017l0.095,0.15l-0.157-0.093l-1.036,0.045l-1.3-0.126l-1.658,0.253l-0.161-0.178l-0.294-0.058
|
||||
l0.21-0.164l0.679-0.356l0.616-0.165l0.135-0.146l0.228-1.973l0.203-2.253l-0.049-2.333l-0.037-2.333l-0.365-1.153l-0.054-0.356l-0.206-0.602l-0.971-0.064z"/>
|
||||
<path d="M149.997,121.155l0.09-0.194l0.548-0.236l1.471-0.413l0.314,0.16l0.168,0.333l0.102,9.6l0.015,0.971l-0.258,1.358l0.919-0.021l0.753,0.15l0.125,0.263l0.004,0.323l-0.334,0.015l-1.034-0.29l-1.3,0.141l-1.656,0.126l-0.282-0.133l0.083-0.188l0.047-0.031
|
||||
l0.642-0.129l0.6-0.468l0.259-0.184l-0.078-1.992l-0.1-2.256l0.072-2.333l0.17-2.332l0.187-1.143l-0.217-0.563l-0.486-0.396l-0.826-0.139z"/>
|
||||
<path d="M154.721,126.241l-0.046-0.248l0.661-0.285l0.777-0.404l0.71-0.67l0.137-0.08l0.164,0.001l-0.085,0.705l0.16,0.441l-0.235,0.517l0.069,2.812l-0.032,2.978l0.157,0.538l0.85,0.095l0.449,0.518l-0.126-0.032l0.163-0.058l-0.936-0.08l-1.097-0.001
|
||||
l-1.582,0.007l-0.588,0.061l-0.261,0.363l-0.131-0.318l0.37-0.293l1.051-0.002l0.335-0.393l0.297-0.618l-0.133-4.092l-0.169-0.77l0.042-0.513l-0.971-0.179z M155.326,121.238l0.405-0.586l0.63,0.055l0.804-0.171l0.037,0.741l-0.193,0.583l-0.648,0.252
|
||||
l-0.481-0.367l-0.554-0.507z"/>
|
||||
<path d="M159.306,129.306l0.274-1.467l1.083-1.206l1.04-1.107l2.218-0.42l2.939,1.479l1.199,2.896l-1.258,2.671l-3.134,1.191l-2.219-0.595l-1.581-1.22l-0.562-2.223z M163.75,133.246l1.408-0.575l1.238-1.189l0.174-2.098l-0.171-1.774l-1.094-1.38l-1.457-0.664
|
||||
l-1.338,0.292l-1.259,1.133l-0.378,2.52l0.939,2.627l1.938,1.108z"/>
|
||||
<path d="M169.271,132.916l0.556-0.203l0.813-0.059l0.041-0.594l0.109-0.343l0.028-0.496l-0.077-2.963l-0.302-0.659l-0.876-0.471l0.16-0.281l1.028-0.522l0.953-1.161l0.127-0.032l0.054,0.555l-0.088,0.653l0.116,0.212l0.41-0.125l1.192-0.697l1.004-0.668
|
||||
l0.719-0.094l1.458,0.479l0.851,1.062l0.19,2.372l-0.32,1.482l0.27,0.4l-0.263,0.759l0.093,0.894l0.31,0.255l1.095,0.286l-0.184,0.074l0.149,0.289l-0.208-0.074l-1.298,0.026l-1.276,0.055l-1.371,0.055l-0.013-0.341l0.121-0.126l0.701-0.278l0.362-0.083
|
||||
l0.338-0.03l0.136-0.42l-0.075-0.272l0.068-2.228l-0.014-0.504l0.085-0.777l-0.78-1.617l-1.252-0.667l-1.264,0.402l-1.221,0.831l0.096,0.789l0.064,2.147l0.031,2.043l-0.133,0.289l0.339,0.244l0.56,0.045l0.459-0.088l0.153,0.326l0.107,0.352l-1.058-0.158
|
||||
l-2.114,0.151l-0.927-0.323l-0.236,0.121l0.149-0.125l-0.144-0.164z"/>
|
||||
<path d="M61.081,156.993l0.903-0.048l1-0.447l0.402-2.72l-0.29-1.543l0.169-0.926l-0.062-0.684l0.027-1.259l-0.021-3.172l-0.172-0.65l-1.134-0.549l-0.391-0.25l-0.21-0.132l0.303,0.224l0.694-0.272l0.361-0.035l0.791,0.197l1.857-0.33l0.792,0.461l1.924-0.504
|
||||
l2.202,0.597l2.293,0.558l1.53,1.258l0.897,2.055l0.524,2.294l-0.468,2.295l-1.374,1.797l-1.35,1.399l-2.331,0.752l-2.327-0.003l-1.771-0.256l-0.609-0.039l-0.109,0.135l-3.977-0.06l0.172,0.119l-0.37-0.03l0.122-0.232z M66.186,156.452l1.42,0.314l1.915-0.219
|
||||
l1.661-0.855l1.229-1.232l0.404-1.365l0.483-2.075l-0.447-2.599l-1.196-1.894l-2.381-0.952l-2.709-0.607l-1.62,0.131l0.042,0.385l-0.014,0.436l0.079,0.298l0.054,1.819l-0.176,2.213l0.19,5.421l1.066,0.781z"/>
|
||||
<path d="M84.012,152.234l-3.873-0.079l-0.742-0.051l-0.976-0.023l-0.155,0.497l0.052,0.094l0.088,0.093l0.051,0.477l0.24,1.478l1.159,1.242l1.709,0.398l0.849-0.122l0.9-0.471l0.734-0.624l0.243,0.517l-0.05,0.24L83,156.754l-1.353,0.601l-1.08,0.273
|
||||
l-1.315-0.541l-1.59-1.275l-0.591-2.288l0.035-1.129l0.768-1.365l0.598-0.915l0.988-0.761l1.526-0.26l1.513,0.414l0.983,1.287l0.514,1.208l0.016,0.231z M78.656,151.692l0.393-0.081l2.941,0.067l0.505-0.108l0.275-0.372l-0.326-0.691l-0.619-0.554l-0.912-0.274
|
||||
l-1.67,0.976l-0.587,1.037z"/>
|
||||
<path d="M92.562,156l0.229,0.108l-0.489,0.445l-0.523,0.842l-0.678,0.008l-1.177-0.247l-0.138-0.871L88.714,157l-0.902,0.475l-1.212-0.057l-0.711-0.337l-0.496-0.7l0.929-1.653l2.344-1.381l1.299-0.604l-0.041-0.779l-0.476-1.646l-0.942-0.333l-1.375,0.264
|
||||
l-0.499,1.366l-0.165,0.572l-0.677,0.216l-0.378-0.089l-0.163-0.144l0.504-1.207l1.395-1.41l1.511-0.183l1.291-0.089l0.802,0.544l0.377,0.912l-0.095,1.559l0.117,1.562l-0.172,1.138l0.057,0.383l0.025,0.421l0.142,0.517l0.431,0.143l0.675-0.279l-0.025-0.269
|
||||
L92.562,156z M89.625,155.575l0.151-1.714l0.073-0.857l-1.485,0.804l-1.223,1.115l-0.238,0.912l0.282,0.619l0.637,0.228l0.716-0.223l1.086-0.885z"/>
|
||||
<path d="M93.22,157.014l0.499-0.223l0.611-0.34l0.135-0.394l0.054-0.348l-0.043-0.486l0.191-2.965l-0.184-0.814l-0.998-0.36l-0.097-0.429l1.075-0.534l0.973-1.133l0.309,0.105l-0.038,0.594l0.031,0.652l-0.028,0.271l0.294-0.445l1.4-0.416l1.062-0.408
|
||||
l0.651-0.228l1.487,0.292l0.553,1.18l0.157,2.292l0.101,1.482l-0.021,0.392l-0.002,0.767l0.026,0.887l0.293,0.24l1.189,0.254l0.031,0.128l-0.241,0.107l-0.133,0.169l-1.297-0.04l-1.284-0.18l-1.358,0.284l-0.057-0.322l0.156-0.138l0.704-0.277l0.336-0.15
|
||||
l0.449,0.107l-0.109-0.488l0.105-0.274l-0.214-2.225l-0.027-0.509l0.285-0.774l-0.663-1.661l-1.293-0.675l-1.252,0.48l-1.106,0.878l-0.02,0.715l-0.241,2.149l0.302,2.043l-0.021,0.202l0.291,0.131l0.518,0.247l0.4,0.163l0.142,0.078l0.115,0.013l-0.992,0.045
|
||||
l-2.112-0.012l-0.93,0.163l-0.282,0.024l0.009-0.202l0.11-0.087z"/>
|
||||
<path d="M106.743,160.938l0.234-0.506l1.183,0.573l-0.229,0.544l0.495-0.459l0.263,0.177l0.575-0.221l0.908-0.383l0.329-1.467l0.42-1.895l-0.307-1.517l-0.056-1.043l-0.267-3.264l0.227-3.646l0.182-1.876l-0.472-0.339l-0.063-0.203l-0.375-0.503l-0.726,0.008
|
||||
l-0.465,0.198l-0.012-0.239l0.061-0.012l0.426,0.162l1.207-0.16l0.75,0.066l0.464-0.327l1.451,0.228l0.755-0.238l-0.056,0.787l-1.208-0.419l-0.493,0.256l0.204,0.53l-0.197,1.017l-0.008,0.257l-0.157,0.668l-0.032,0.392l0.457,0.604l-0.021,0.475l-0.097,0.46
|
||||
l0.164,0.181l0.238,2.728l-0.427,1.761l0.379,1.139l-0.594,2.742l-1.247,2.16l-1.136,1.691l-1.923,0.157l-0.923-0.269l-0.07-0.452l0.191-0.522z"/>
|
||||
<path d="M121.938,156.02l0.244,0.088l-0.487,0.451l-0.602,0.724l-0.609,0.161l-0.931-0.491l-0.421-0.8l-1.143,0.684l-0.83,0.499l-1.174-0.018l-0.788-0.162l-0.229-0.774l0.736-1.656l2.285-1.527l1.375-0.449l-0.216-0.786l-0.133-1.789l-1.123-0.335l-1.224,0.575
|
||||
l-0.554,1.219l-0.231,0.583l-0.707,0.309l-0.462-0.096l-0.074-0.259l0.58-1.158l1.451-1.207l1.375-0.72l1.227,0.371l0.649,0.548l0.585,0.736l-0.057,1.557l-0.137,1.56l0.212,1.138l-0.153,0.382l0.119,0.424l0.068,0.546l0.463,0.242l0.613-0.453l0.236-0.056
|
||||
l0.069-0.06z M119.189,155.642l0.147-1.781l-0.147-0.711l-1.434,0.668l-1.257,1.086l-0.163,0.932l0.212,0.643l0.66,0.208l0.815-0.026l1.166-1.018z"/>
|
||||
<path d="M129.999,155.38l-0.125,0.706l-1.457,1.06l-1.703,0.462l-1.909-0.708l-1.339-1.565l-0.452-2.032l0.562-2.048l1.453-1.468l2.336-0.681l2.069,0.604l0.25,0.666l-0.027,0.52l-0.544,0.261l-0.96-0.792l-0.76-0.421l-0.668,0.018l-1.525,0.536l-0.769,2.655
|
||||
l0.801,2.622l1.986,0.942l1.346-0.323l1.436-1.011z"/>
|
||||
<path d="M130.687,157.295l0.139-0.332l0.008-0.27l0.525,0.016l0.413-0.15l0.313-1.247l-0.288-3.859l0.191-0.683l0.083-0.653l0.137-0.64l-0.406-1.694l0.283-1.486l-0.251-0.659l-1.054-0.31l0.013-0.115l-0.039-0.256l1.016-0.273l1.155-0.659l0.338,0.145
|
||||
l0.265,0.243l-0.309,0.842l0.289,0.413l-0.402,0.771l-0.024,1.151l0.123,1.918l-0.191,2.381l0.148,0.739l0.004,0.443l0.199,0.16l0.646-0.479l1.97-1.375l0.163-0.6l0.158-0.417l-0.76-0.118l-0.249,0.049l-0.225-0.116l-0.183-0.033l0.165-0.056l2.671-0.03
|
||||
l1.384-0.209l-0.18,0.132l0.035,0.032l-0.402-0.004l-0.817,0.615l-1.61,0.979l-1.04,0.495l-0.219,0.477l-0.009,0.33l0.356-0.006l0.379,0.501l1.532,1.771l0.426,0.39l1.023,0.796l0.669,0.646l0.48-0.077l0.036,0.204l0.002,0.205l-1.014-0.034l-0.182-0.346
|
||||
l-2.732,0.292l-0.218-0.021l-0.345,0.106l-0.047-0.299l0.241-0.056l0.038-0.021l1.142-0.27l-0.071-0.167l-0.057-0.432l-1.594-1.441l-0.763-1.054l-0.538-0.193l-0.474-0.162l-0.006,1.802l0.365,1.458l0.45,0.149l0.609,0.177l-0.086,0.188l-0.915,0.155
|
||||
l-1.432-0.128l-0.733,0.417l-0.715-0.158z"/>
|
||||
<path d="M141.132,154.721l0.351,1.345l0.925,0.909l1.185,0.356l1.224-0.495l0.298-0.978l-0.391-1.271l-1.838-0.99l-1.622-1.097l-0.646-1.152l0.484-1.146l0.999-0.687l1.125-0.317l1.229,0.137l0.875,0.307l0.254,1.402l0.061,0.33l-0.284-0.041l-0.042-0.02
|
||||
l-1.007-1.208l-1.175-0.639l-0.886,0.569l-0.287,0.873l0.158,0.784l1.366,0.833l1.694,0.621l0.642,1.031l0.218,1.053l-0.593,1.186l-0.993,0.926l-1.196,0.353l-2.286-0.515l-0.087-0.31l-0.047-0.286l-0.111-1.589l-0.046-0.238l0.449-0.036z"/>
|
||||
<path d="M147.603,153.306l0.367-1.4l0.72-1.444l1.295-0.776l2.145-0.316l3.159,1l1.056,3.112l-1.235,2.774l-3.233,1.176l-2.309-0.533l-1.244-1.522l-0.72-2.071z M151.958,157.27l1.484-0.467l0.921-1.432l0.363-1.986l-0.253-1.732l-0.972-1.407l-1.445-0.808
|
||||
l-1.247,0.622l-1.32,0.948l-0.316,2.504l0.868,2.608l1.917,1.151z"/>
|
||||
<path d="M157.405,156.809l0.622-0.147l0.877,0.052l0.135-0.649v-0.345l-0.05-0.499l-0.02-2.963l-0.171-0.803l-1.023-0.333l-0.12-0.521l1.199-0.403l0.938-1.176l0.42-0.089l-0.044,0.754l0.159,0.649l-0.032,0.092l0.036-0.263l1.3-0.634l1.151-0.237l0.663-0.368
|
||||
l1.426,0.561l0.538,1.122l0.427,2.27l0.046,1.482l-0.081,0.396l-0.251,0.763l0.32,0.844l0.197,0.158l1.084,0.42l0.067,0.086l-0.085,0.38l-0.246-0.192l-1.299,0.025l-1.273,0.179l-1.268-0.234l-0.223-0.125l0.208-0.174l0.717-0.263l0.449,0.167l0.27-0.255
|
||||
l0.113-0.435l-0.127-0.268l0.038-2.231l0.039-0.505l0.134-0.777l-0.725-1.69l-1.321-0.709l-1.252,0.542l-1.167,0.844l0.076,0.75l-0.034,2.148l0.019,2.05l-0.056,0.268l0.334,0.214l0.596-0.073l0.395,0.154l0.268,0.232l0.014,0.372l-1.061-0.03l-2.111-0.177
|
||||
l-0.929-0.117l-0.202,0.034l-0.101-0.027l-0.002-0.295z"/>
|
||||
<path d="M64.106,169.3l0.166,1.545l0.053,0.47l-0.301,0.166l-0.327-0.132l-1.231-1.753l-2.232-0.893l-1.213,0.367l-1.411,0.988l-1.424,0.999l-0.377,1.94l-0.185,2.1l0.347,3.467l1.793,1.871l2.191,0.869l0.459-0.189l1.069-0.197l1.267-0.348l0.758-0.998
|
||||
l0.67-1.23l0.29,0.201l0.009-0.061l0.102,0.275l-0.747,2.187l-0.27,0.166l-3.051,0.213l-2.344,0.084l-1.661-0.728l-1.678-1.118l-0.778-2.035l-0.734-2.353l0.444-2.176l1.042-1.871l1.677-1.509l1.98-1.218l2.345,0.192l1.991,0.308l1.311,0.401z"/>
|
||||
<path d="M65.681,181.116l1.282-0.455l-0.016-0.299l0.25-0.646l-0.149-1.141l0.059-2.907l-0.043-1.083l-0.033-0.771l0.157-0.944l-0.003-2.672l-0.442-0.373l-1.095-0.777l-0.291,0.104l0.165-0.303l0.324-0.108l0.339,0.347l1.568-1.09l0.523,0.268l0.133,1.7
|
||||
l-0.312,1.243l0.286,1.605l-0.303,1.974l0.203,0.388l0.979-0.864l1.028-0.721l1.208-0.206l1.859,1.036l0.385,1.59l0.167,0.993l0.239,0.557l-0.329,0.954l0.171,1.418l-0.013,0.482l0.347,0.577l0.711,0.055l0.185,0.246l-2.068-0.25l-0.96-0.028l-0.547,0.029
|
||||
l-0.272,0.47l0.244-0.394l-0.314-0.123l0.615-0.076l0.536-0.346l-0.031-0.145l0.053-2.477l0.464-0.706l-0.248-1.928l-0.698-0.891l-1.196-0.016l-1.083-0.116l-0.855,0.563l-0.686,0.744l0.189,0.767l0.11,0.679l-0.298,0.702l0.301,1.208l-0.35,0.621l0.304,0.671
|
||||
l-0.076,0.119l1.34,0.513l0.356,0.029l-0.097,0.147l0.029,0.048l-0.397,0.279l-0.762-0.191l-1.681,0.263l-1.272-0.32l-0.192-0.081l-0.208,0.128l0.212-0.071z"/>
|
||||
<path d="M75.883,181.161l0.07,0.01l-0.037-0.207l0.583-0.074l0.792-0.204l0.014-0.161l0.253-0.697l-0.042-3.853l-0.307-0.58l-0.618-0.379l-0.603-0.015l0.139-0.27l1.319-0.778l0.727-1.276l0.348,0.24l0.291,2.091l-0.132,0.168l-0.094,0.115l0.95-1.249
|
||||
l0.418-0.038l0.105-0.422l1.052-0.233l0.78,0.104l0.27,0.791l-0.258,0.539l-0.617,0.092l-0.628,0.009l-0.589-0.307l-0.363,0.204l-0.625,0.888l-0.2,0.879l-0.011,1.612l-0.228,1.938l0.248,0.417l0.191,0.097l1.227,0.335l0.221,0.002l0.663-0.107l-0.07,0.263
|
||||
l0.015,0.275l-1.087-0.108l-0.409-0.051l-0.595,0.065l-1-0.196l-0.527,0.033l-1.636,0.038z"/>
|
||||
<path d="M82.56,174.445l0.221-0.365l0.589-0.346l0.738-0.462l0.571-0.79l0.315-0.134l0.049,0.255l0.141,0.658l-0.081,0.439l-0.041,0.518l-0.006,2.813l0.154,2.98l-0.067,0.568l0.769,0.485l0.652-0.042l-0.042,0.104l0.022,0.112l-0.992,0.197l-1.07-0.387
|
||||
l-1.575,0.151l-0.585-0.06l-0.066-0.017l0.121-0.021l-0.105-0.333l1.061-0.012l0.405-0.297l0.34-0.663l-0.106-4.093l-0.012-0.878l-0.424-0.154l-0.976-0.225z M83.481,169.238l0.236-0.625l0.666-0.12l0.541,0.317l0.529,0.466l-0.573,0.428l-0.496,0.158
|
||||
l-0.638,0.041l-0.264-0.665z"/>
|
||||
<path d="M88.124,178.793l0.409,1.313l1.069,0.727l1.1,0.48l1.059-0.66l0.56-0.795l-0.613-1.162l-1.77-0.946l-1.778-1.081l-0.341-1.321l0.479-1.085l0.82-0.975l1.218-0.023l1.246-0.017l0.987,0.309l0.006,1.494l0.137,0.314l-0.241,0.002l0.01-0.086l-0.989-1.266
|
||||
l-1.246-0.415l-0.965,0.354l-0.185,0.953l0.11,0.807l1.422,0.733l1.5,0.903l0.64,0.894l0.206,0.984l-0.261,1.301l-1.149,0.803l-1.193,0.213l-2.269-0.406l0.019-0.275l-0.15-0.284l-0.236-1.587l0.217-0.04l0.176-0.162z"/>
|
||||
<path d="M96.736,171.404l0.354,0.181l0.017,0.938l0,1.209l0.229-0.062l0.979,0.038l0.89-0.167l0.574,0.182l0.167,0.263l-0.268,0.293l-0.088,0.085l-1.534,0.026l-0.762,0.012l-0.068,0.195l-0.017,0.43l0.007,1.476l-0.005,2.595l-0.005,1.439l0.879,0.313
|
||||
l0.927-0.395l0.71,0.034l0.002-0.174l0.251-0.046l0.014,0.256l0.031,0.148l-1.008,0.739l-1.503,0.028l-1.045-0.288l-0.421-0.725l-0.169-1.724l0.112-2.209l-0.186-1.062l0.091-0.394l-0.14-0.487l-0.099-0.162l-0.799-0.003l-0.066,0.248l-0.292-0.023l0.159-0.255
|
||||
l-0.117-0.288l0.483-0.254l0.741-0.156l0.364-0.834l0.436-0.677l0.173-0.744z"/>
|
||||
<path d="M100.517,177.306l0.387-1.402l0.788-1.382l1.172-0.967l2.205-0.333l3.018,1.287l1.142,2.973l-1.104,2.854l-3.309,1.089l-2.233-0.651l-1.526-1.269l-0.539-2.198z M104.897,180.978l1.473-0.195l1.143-1.314l0.184-2.084l-0.1-1.79l-1.105-1.415l-1.496-0.574
|
||||
l-1.256,0.433l-1.181,1.039l-0.388,2.434l0.84,2.581l1.887,0.886z"/>
|
||||
<path d="M110.28,186.603l0.18-0.473l-0.122-0.072l0.908-0.49l0.519-0.041l0.146-0.403l-0.011-5.725l-0.269-3.564l0.063-1.146l-0.173-0.321l-1.21-0.008l0.136-0.4l1.389-0.678l0.578-0.785l0.172-0.152l0.056,0.296l0.354,0.748l-0.024,0.947l1.423-0.528
|
||||
l1.573-0.165l2.565,0.791l0.852,2.755l-0.251,2.332l-1.764,1.417l-2.091,0.72l-1.97-0.882l-0.6-0.041l0.052,1.439l0.103,3.479l0.742,0.152l0.989,0.285l0.235,0.267l-0.953-0.231l-0.87,0.107l-1.471-0.098l-1.256,0.466z M112.962,175.237l-0.231,0.136l0.272,3.925
|
||||
l0.337,1.216l1.908,0.219l1.998-0.746l0.669-2.136l-0.504-2.721l-2.498-0.695l-1.078,0.233l-0.873,0.569z"/>
|
||||
<path d="M120.634,180.972l1.295-0.35l0.211-0.262l-0.296-0.643l0.259-1.141l-0.075-2.907l-0.023-1.083l-0.123-0.773l0.374-0.941l0.01-2.682l-0.272-0.65l-1.472-0.116l-0.163-0.271l0.34-0.106l0.177-0.124l0.218-0.136l1.706-0.553l0.398,0.211l0.124,1.521
|
||||
l0.208,1.244l-0.125,1.606l-0.26,1.975l0.233,0.521l0.931-0.929l0.871-1.027l1.307-0.274l1.794,1.39l0.621,1.544l0.113,0.992l-0.181,0.55l0.003,0.961l0.086,1.417l-0.088,0.662l0.529,0.17l0.896,0.164l-0.081,0.149l-2.041,0.047l-0.958-0.079l-0.548,0.356
|
||||
l-0.249,0.011l-0.124-0.294l0.149-0.069l0.519-0.024l0.57-0.265l0.165-0.291l0.116-2.51v-0.718l-0.197-1.896l-0.593-0.931l-1.204-0.077l-1.053,0.019l-0.672,0.738l-0.833,0.548l-0.219,0.73l0.03,0.672l0.067,0.704l0.032,1.212l-0.007,0.619l0.415,0.667
|
||||
l-0.281,0.416l1.481-0.041l0.111,0.469l0.19-0.052l0.014,0.295l-0.483-0.106l-0.763,0.215l-1.683-0.009l-1.27-0.184l-0.173-0.234l-0.35,0.179l0.294-0.225z"/>
|
||||
<path d="M138.135,176.052l-3.866-0.035l-0.741,0.22l-0.898-0.01l0.007,0.335l-0.128,0.105l-0.067,0.095l0.183,0.479l0.284,1.443l1.125,1.205l1.663,0.604l0.852-0.245l0.913-0.46l0.724-0.623l0.042,0.521l0.098,0.18l-1.147,0.961l-1.358,0.676l-1.121-0.158
|
||||
l-1.309-0.274l-1.527-1.302l-0.699-2.246l0.038-1.138l0.809-1.353l0.646-0.851l1.021-0.618l1.438-0.323l1.543,0.212l1.068,1.277l0.382,1.27l0.024,0.05z M132.673,175.829l0.507-0.002l2.938-0.194l0.486-0.086l0.236-0.348l-0.198-0.725l-0.606-0.674l-0.992,0.034
|
||||
l-1.676,0.817l-0.695,1.178z"/>
|
||||
<path d="M142.42,184.762l0.358-0.335l0.866,0.938l0.101,0.17l0.164-0.074l0.581-0.215l0.626-0.123l0.832-0.471l0.093-1.503l0.437-1.846l-0.145-1.519l0.041-1.042l0.066-3.272l0.173-3.642l-0.25-1.875l-0.421-0.29l-0.059-0.09l-0.304-0.469l-0.725,0.021
|
||||
l-0.396-0.05l-0.07-0.199l-0.214-0.349l0.716,0.173l1.19,0.437l0.701-0.621l0.513,0.41l1.451-0.078l0.566,0.02l0.104,0.356l-1.061,0.078l-0.298,0.16l-0.15,0.284l0.194,1.026l-0.248,0.242l0.215,0.675l0.128,0.392l-0.548,0.62l0.384,0.459l-0.04,0.466
|
||||
l-0.152,0.184l-0.1,2.731l0.09,1.749l-0.096,1.139l0.06,2.773l-1.031,2.376l-1.661,1.137l-1.755,0.448l-0.832-0.369l-0.688-0.335l0.594-0.698z"/>
|
||||
<path d="M150.455,177.306l0.402-1.419l0.916-1.289l1.147-0.922l2.148-0.291l3.086,1.055l1.218,3.041l-1.364,2.733l-3.194,1.185l-2.275-0.556l-1.439-1.367l-0.645-2.17z M154.897,181.032l1.41-0.357l1.276-1.174l0.162-2.117l-0.335-1.731l-0.819-1.605
|
||||
l-1.596-0.602l-1.261,0.581l-1.31,0.978l-0.194,2.506l0.668,2.681l1.999,0.84z"/>
|
||||
<path d="M160.346,169.23l0.374-0.189l0.441-0.27l1.475-0.367l0.349-0.011l0.142,0.412l0.186,9.6l-0.359,0.971l0.007,1.357l0.926-0.089l0.712,0.273l0.187,0.209l-0.273,0.08l-0.084,0.179l-1.039-0.093l-1.295-0.016l-1.658,0.115l-0.366,0.016l0.067-0.287
|
||||
l-0.014-0.255l0.746-0.266l0.91,0.21l0.068-0.496l-0.236-1.998l0.077-2.255l0.097-2.333l-0.066-2.333l0.034-1.148l0.006-0.511l-0.406-0.48l-1.005-0.024z"/>
|
||||
<path d="M165.132,174.354l-0.058-0.479l0.917,0.144l0.698-0.638l0.576-0.812l0.194,0.219l0.181-0.233l-0.1,0.706l-0.116,0.437l0.226,0.521l-0.247,2.812l0.41,2.982l0.082,0.331l0.516,0.695l0.533,0.162l0.186-0.074l-0.102,0.066l-0.962-0.127l-1.092-0.09
|
||||
l-1.577,0.164l-0.548,0.3l-0.104-0.313l-0.021-0.025l0.168-0.063l0.942-0.228l0.393-0.352l0.108-0.666l0.14-4.09l0.032-0.9l-0.45-0.175l-0.925-0.273z M165.953,169.238l0.314-0.561l0.606-0.311l0.587,0.395l0.344,0.515l-0.297,0.569l-0.634,0.342l-0.581-0.342
|
||||
l-0.34-0.607z"/>
|
||||
<path d="M172.823,173.556l2.434,0.267l0.12,0.241l-0.176,0.242l-0.34,0.17l-0.372-0.113l-1.608,0.329l-0.206,0.216l0.128,0.144l0.278,1.823l-0.086,2.462l-0.197,1.014l0.684,0.046l0.809,0.25l0.537,0.326l0.114,0.251l-0.121-0.019l-1.2-0.072l-0.717-0.172
|
||||
l-2.414,0.389l-0.496,0.081l0.133-0.522l0.229-0.147l0.945-0.439l0.508-0.049l-0.399-1.12l0.192-4.395l-0.82-0.344l-0.697,0.38l-0.182-0.25l0.346-0.218l0.84-0.339l0.567-0.299l0.056-0.559l-0.184-0.561l0.313-1.235l0.734-1.218l0.882-1.197l0.946-0.514
|
||||
l1.208-0.218l1.322,0.311l0.142,0.478l-0.116,0.368l-0.41,0.297l-0.737-0.343l-0.922-0.43l-0.443,0.041l-0.971,0.502l-0.646,0.82l0.093,2.286l-0.101,1.041z"/>
|
||||
<path d="M44.753,194.188l0.29-1.49l0.242-0.312l0.108,0.024l0.445,0.245l0.141,0.518l0.386,0.223l0.108-0.244l0.42-0.008l2.301,0.273l2.724-0.276l0.797-0.152l1.517,0.299l0.258-0.235l0.804,0.457l0.356-0.224l0.402-0.649l0.113-0.19l0.132-0.095l0.259,0.303
|
||||
l0.061,0.383l-0.118,0.819l-0.288,1.926l0.1,0.186l-0.176,0.202l-0.167-0.172l0.123-0.527l-0.641-1.258l-0.587-0.483l-1.804,0.145l-1.555,0.08l-0.137,0.588l0.337,6.065l-0.156,1.372l-0.217,1.298L51.263,204l0.119,0.627l0.782,0.244l1.233,0.131l0.461,0.095
|
||||
l-0.139,0.481l-1.407-0.404l-1.725,0.119l-1.432-0.073l-1.032,0.4l-0.457-0.429l-0.079,0.098l0.064-0.072l0.257-0.12l0.959-0.293l0.553-0.53l0.285-0.103l0.143-1.682l0.004-1.658l0.017-3.62l-0.327-0.775l0.277-2.624l-1.667-0.179l-1.773,0.23l-1.309,1.699
|
||||
l-0.607,0.651l-0.102-0.16l0.081-0.163l0.052-0.7l0.258-1.001z"/>
|
||||
<path d="M57.344,204.884l1.429-0.083l0.185-0.443l-0.06-0.642l-0.292-1.14l0.31-2.908l-0.318-1.083l0.315-0.768l0.052-0.946l-0.422-2.636l0.238-0.754l-1.469-0.244l0.006-0.085l-0.014-0.24l0.256-0.204l0.291,0.167l1.724-0.475l0.348,0.069l0.063,1.497
|
||||
l-0.206,1.244l0.046,1.604l0.126,1.978l0.151,0.509l0.824-1.058l1.148-0.5l1.145-0.219l2.106,0.713l0.416,1.781l-0.317,0.985l0.06,0.553l-0.033,0.958l0.256,1.421l-0.17,0.704l0.578,0.049l0.992,0.186l-0.185,0.272h-2.05l-0.947,0.344l-0.559-0.305l-0.244,0.211
|
||||
l-0.062-0.275l-0.052-0.13l0.606-0.19l0.518-0.37l0.155,0.023l0.222-2.492l-0.301-0.727l0-1.857l-0.696-0.625l-0.993-0.48l-0.991,0.212l-0.93,0.395l-0.512,0.841l-0.1,0.652l-0.161,0.675l0.071,0.705l0.222,1.208l0.056,0.618l0.063,0.67l-0.242,0.425l1.407,0.271
|
||||
l0.383-0.045l-0.216,0.18l0.125-0.003l-0.381,0.099l-0.765,0.174l-1.69-0.25l-1.264,0.05l-0.305,0.121l0.07-0.098l-0.015-0.289z"/>
|
||||
<path d="M67.779,198.262l0.066-0.169l0.502-0.525l0.773-0.344l0.675-0.682l0.229,0.192l-0.023-0.087l0.056,0.616l-0.069,0.437l0.063,0.521l-0.021,2.812l-0.109,2.977l0.455,0.409l0.641,0.462l0.63,0.097l-0.154,0.151l0.119,0.192l-1.007,0.131l-1.069-0.127
|
||||
l-1.57,0.027l-0.595-0.249l-0.186,0.201l0.119-0.202l-0.037-0.454l1.068-0.133l0.37-0.121l0.006-0.603l0.458-4.087l-0.31-0.82l-0.277-0.203l-0.804-0.418z M68.539,193.238l0.385-0.46l0.512-0.308l0.805,0.065l0.117,0.742l-0.177,0.682l-0.745,0.06l-0.771,0.018
|
||||
l-0.127-0.798z"/>
|
||||
<path d="M79.455,200.206l-3.872-0.1l-0.741,0.209l-0.869-0.033l0.01,0.279l-0.266,0.111l0.066,0.09l-0.061,0.476l0.458,1.462l1.047,1.371l1.782,0.409l0.924-0.008l0.826-0.705l0.752-0.544l0.143,0.446l-0.093,0.141l-1.16,0.872l-1.27,0.817l-1.12-0.076
|
||||
l-1.392-0.156l-1.434-1.503l-0.805-2.24l0.259-1.108l0.68-1.386l0.663-0.834l0.962-0.748l1.487-0.141l1.518,0.191l1.037,1.263l0.483,1.24l-0.014,0.204z M74.074,199.725l0.42,0.045l2.933-0.227l0.586,0.105l0.178-0.449l-0.353-0.666l-0.474-0.761l-1.006-0.208
|
||||
l-1.679,1.083l-0.605,1.077z"/>
|
||||
<path d="M80.51,205.305l-0.137-0.087l0.171-0.271l0.584-0.08l0.822-0.056l0.104-0.234l0.072-0.749l-0.204-3.836l0.011-0.685l-0.704-0.313l-0.666,0.023l0.106-0.399l1.33-0.755l0.823-1.168l0.358,0.194l0.261,2.119l-0.244,0.163l-0.012,0.096l0.991-1.218
|
||||
l0.324-0.128l0.206-0.317l1.04-0.327l0.727,0.227l0.368,0.742l-0.218,0.628l-0.703,0.038l-0.655,0.043l-0.563-0.145l-0.351-0.012l-0.754,0.803l-0.377,0.956l0.055,1.609l0.194,1.929l-0.016,0.457l0.23,0.25l1.274,0.021l0.204,0.09l0.617,0.003l0.141,0.19
|
||||
l-0.154,0.155l-1.082-0.042l-0.41-0.021l-0.596-0.047l-0.991,0.217l-0.539-0.021l-1.64-0.041z"/>
|
||||
<path d="M87.678,205.312l-0.168-0.087l0.199-0.289l0.587-0.073l0.802-0.155l0.202-0.096l0.124-0.784l-0.227-3.844l-0.099-0.674l-0.735-0.072l-0.552-0.242l0.062-0.336l1.495-0.577l0.68-1.32l0.276,0.153l0.049,2.089l0.153,0.172l-0.089,0.147l1.095-1.093
|
||||
l-0.01-0.453l0.346-0.189l1.047-0.43l0.629,0.434l0.347,0.65l-0.299,0.417l-0.502,0.19l-0.662,0.12l-0.556-0.372l-0.366,0.177l-0.57,0.922l-0.569,0.856l0.16,1.607l0.096,1.931l0.074,0.417l0.164,0.245l1.253,0.163l0.225-0.164l0.643,0.106l0.11,0.243
|
||||
l-0.155,0.214l-1.083-0.142l-0.411,0.131l-0.594,0.075l-0.992-0.028l-0.546-0.243l-1.632,0.2z"/>
|
||||
<path d="M94.75,197.687l0.233-0.279l0.473,0.285l0.633-0.283l0.83,0.254l0.681,0.068l0.924-0.057l0.321,0.062l-0.404-0.101l-0.463,0.525l-1.062-0.148l0.341,0.279l0.012,0.223l-0.023,0.411l1.069,2.753l0.785,2.697l0.707-1.574l0.708-2.358l0.328-1.518
|
||||
l0.346-0.438l-0.137-0.363l-0.639,0.043l-0.81-0.255l0.08-0.314l0.086-0.153l0.606,0.154l0.653-0.227l0.974,0.152l0.624,0.199l0.158-0.169l0.153,0.207l0.09-0.064l0.029,0.308l-0.243-0.138l-0.855,0.343l-0.224,0.485l-0.315,0.266l-0.115,0.41l-0.07,0.707
|
||||
l-0.106,0.276l-0.295-0.061l-1.687,4.362l-1.186,3.297l-0.166,0.638l-0.292,0.856l-0.622,0.337l-0.447,0.311l-0.296,0.021l-0.728-0.047l-0.175-0.621l0.482-0.4l0.036-0.357l0.154,0.13l1.129,0.265l0.232-0.435l1.009-1.502l0.323-1.237l-0.492-0.932l-1.119-2.857
|
||||
l-1.313-3.644l-0.08-0.285l-0.635-0.318l-0.247,0.104l-0.165-0.358l0.201,0.066z"/>
|
||||
<path d="M108.106,205.05l0.396-0.27l1.458-0.404l0.165-0.355l0.144-0.954l-0.186-1.81l0.31-0.787l0.07-2.704l0.044-1.814l-0.117-2.075l-0.5-0.213l-0.131-0.172l-1.039-0.378l0.13-0.08l-0.261-0.177l1.936,0.038l1.023,0.18l1.263-0.157l0.764-0.174l0.024,0.195
|
||||
l0.153,0.229l-0.509,0.238l-1.14,0.174l-0.232,0.696l-0.055,0.184l-0.021,3.641l0.212,2.506l-0.159,2.493l0.338,1.225l-0.164,0.478l1.154,0.204l0.282,0.014l0.112,0.123l-0.147-0.091l-0.271,0.175l-0.943,0.041l-1.116,0.104l-0.827,0.112l-1.501,0.038
|
||||
l-0.511,0.024l-0.147-0.496z M112.022,199.188l0.658-0.361l1.813-1.422l2.788-2.015l1.416-1.624l-0.096-0.19l-0.278-0.024l-0.65-0.317l-0.649-0.027l-0.014-0.255l0.001-0.233l0.417,0.191l0.699-0.446l1.203,0.576l0.355-0.021l1.531-0.2l0.36-0.042l0.317-0.018
|
||||
l0.048,0.552l-1.528,0.349l-1.174,0.564l-1.318,0.706l-2.571,1.985l-1.181,1.594l-0.109-0.038l0.514,0.032l2.582,2.52l2.498,2.548l2.943,1.189l0.396,0.351l0.246,0.095l-0.305-0.014l-0.365,0.334l-1.369-0.072l-0.874-0.37l-3.206,0.182l0.15-0.131l0.004,0.011
|
||||
l0.388-0.09l1.048-0.66l0.491,0.327l-0.537-0.399l-0.126-0.398l-0.936-0.564l-1.246-0.82l-1.667-1.638l-2.667-1.715z"/>
|
||||
<path d="M122.95,201.306l0.271-1.439l1.008-1.232l1.121-0.931l2.136-0.509l3.092,1.24l1.028,3.047l-1.048,2.871l-3.325,1.266l-2.326-0.688l-1.185-1.578l-0.771-2.045z M127.314,205.265l1.501-0.434l1.145-1.35l0.191-2.098l-0.361-1.719l-0.76-1.646l-1.618-0.409
|
||||
l-1.316,0.294l-1.106,1.18l-0.378,2.426l0.753,2.637l1.949,1.118z"/>
|
||||
<path d="M132.874,205.297l-0.124-0.083l0.178-0.208l0.577-0.072l0.788-0.225l0.189-0.104l-0.078-0.778l0.056-3.849l-0.254-0.583l-0.623-0.336L132.993,199l0.06-0.358l1.36-0.724l0.834-1.148l0.453-0.057l-0.165,2.294l0.237,0.174l-0.03,0.223l0.849-1.305
|
||||
l0.281-0.17l0.302-0.158l0.936-0.678l0.722,0.415l0.282,0.737l-0.265,0.483l-0.565,0.441l-0.575-0.428l-0.643-0.063l-0.295,0.188l-0.685,0.808l-0.337,0.877l-0.035,1.612l-0.023,1.934l0.111,0.462l0.264,0.122l1.263,0.094l0.204-0.031l0.642,0.12l-0.043,0.242
|
||||
v0.255l-1.088-0.01l-0.407-0.194l-0.594,0.221l-0.999-0.233l-0.529,0.29l-1.642-0.135z"/>
|
||||
<path d="M140.177,204.843l0.528,0.066l0.665-0.189l0.296-0.513l0.029-2.511l-0.073-2.768l-0.721-0.065l-0.57-0.107l0.36-0.219l0.555-0.847l1.003-0.97l0.221,0.063l0.187,0.323l0.259-0.197l-0.403,1.151l0.303,0.801l1.843-1.376l1.277-0.188l1.471,0.063
|
||||
l0.819,1.501l1.679-1.175l1.345-0.421l1.928,0.473l0.864,2.234l-0.345,0.813l-0.162,0.888l-0.054,2.282l0.425,0.655l0.643,0.088l0.378,0.162l0.267,0.168l-0.438,0.156l0.122-0.126l-1.031,0.311l-0.535,0.036l-1.309-0.462l-0.488,0.011l-0.376,0.148l0.065-0.04
|
||||
l0.036-0.122l0.623-0.412l0.72-0.068l0.212-1.576l-0.282-3.297l-0.617-1.164l-1.307-0.493l-1.082,0.564l-1.213,0.773l-0.084,0.251l-0.096,1.487l-0.102,1.157l0.249,2.026l0.184,0.389l0.82,0.077l0.326,0.375l0.507,0.041l-0.378,0.115l-0.153-0.116l-0.488,0.334
|
||||
l-2.821-0.064l-0.766-0.189l0.019-0.101l0.035-0.05l0.678-0.544l0.73,0.237l0.171-0.213l0.143-0.826l-0.122-1.144l-0.317-1.281l0.414-0.715l-0.604-1.794l-1.282-0.294l-1.276,0.38l-1.212,0.699l-0.324,0.451l0.184,3.242l0.223,1.204l0.511,0.187l0.788,0.298
|
||||
l0.084,0.141l0.03-0.009l-1.509,0.286l-0.726-0.425l-0.49,0.047l-0.306-0.032l-1.099,0.109l0.004,0.097l-0.062-0.256z"/>
|
||||
<path d="M163.176,204.062l-0.014,0.045l-0.12,0.509l-0.617,0.79l-0.686,0.068l-0.982-0.48l-0.393-0.923l-0.985,0.967l-0.979,0.248l-1.161,0.307l-0.682-0.54l-0.457-0.672l0.828-1.682l2.265-1.62l1.212-0.447l0.113-0.668l-0.315-1.737l-1.058-0.547l-1.358,0.588
|
||||
l-0.512,1.348l-0.065,0.675l-0.779,0.079l-0.474,0.077l-0.044-0.276l0.623-1.122l1.39-1.244l1.375-0.721l1.288,0.209l0.702,0.619l0.438,0.834l0.101,1.553l-0.092,1.56l-0.195,1.139l-0.028,0.375l0.276,0.429l-0.023,0.591l0.51,0.086l0.7-0.28l0.012-0.234
|
||||
l0.189,0.099z M160.437,203.64l0.004-1.778l0.033-0.808l-1.364,0.918l-1.258,1.001l-0.417,0.863l0.424,0.585l0.604,0.173l0.761-0.043l1.213-0.912z"/>
|
||||
<path d="M163.775,204.891l0.567-0.22l0.846,0.011l-0.146-0.628l0.043-0.35l0.078-0.483l0.17-2.964l-0.134-0.886l-1.213-0.144l0.219-0.415l0.886-0.709l0.892-1.23l0.366,0.261l0.168,0.552l-0.212,0.653l0.228,0.142l0.225-0.168l1.278-0.584l0.997-0.697l0.726-0.09
|
||||
l1.373,0.617l0.872,0.967l-0.104,2.353l0.041,1.482l-0.016,0.387l-0.065,0.771l0.062,0.934l0.407,0.304l0.969,0.275l0.152-0.005l-0.049,0.269l-0.201,0.019l-1.297-0.036l-1.282-0.14l-1.301,0.122l-0.093-0.22l0.167-0.084l0.68-0.2l0.366-0.168l0.361-0.04
|
||||
l0.027-0.449l-0.058-0.268l0.077-2.232l0.044-0.504l0.032-0.778l-0.58-1.788l-1.412-0.44l-1.24,0.397l-1.189,0.811l-0.058,0.758l-0.075,2.148l0.066,2.067l0.209,0.129l0.226,0.249l0.509,0.259l0.446-0.018l0.219,0.166l0.044,0.175l-1.021-0.119l-2.113,0.125
|
||||
l-0.929-0.009l-0.32,0.156l0.202-0.303l-0.129-0.191z"/>
|
||||
<path d="M174.1,205.064l0.448-0.387l0.878,0.041l0.149-0.653l-0.2-0.355l0.146-0.489l0.036-2.963l-0.361-0.688l-0.777-0.576l-0.037-0.206l0.907-0.692l1.003-1.096l0.394-0.016l0.13,0.703l0.056,0.649l-0.119,0.135l0.323-0.009l1.155-0.753l1.041-0.531
|
||||
l0.691-0.169l1.299,0.651l0.835,0.9l-0.002,2.32l0.316,1.482l-0.171,0.392l0.077,0.767l0.158,0.814l0.08,0.321l1.105,0.292l0.028,0.081l-0.062,0.321l-0.221-0.121l-1.299-0.052l-1.278,0.078l-1.383,0.15l-0.147-0.335l0.191-0.272l0.787-0.057l0.384-0.106
|
||||
l0.306-0.115l0.143-0.419l-0.031-0.276l-0.209-2.223l-0.052-0.509l0.03-0.777l-0.36-1.718l-1.35-0.589l-1.22,0.525l-1.274,0.729l0.121,0.794l-0.11,2.149l-0.072,2.075l0.231,0.158l0.29,0.083l0.479,0.403l0.459-0.07l0.438,0.178l-0.211,0.063l-0.996,0.174
|
||||
l-2.113,0.013l-0.928,0.069l-0.247-0.123l-0.17-0.11l0.289-0.053z"/>
|
||||
<path d="M48.243,217.28l0.037,0.652l-0.051,0.872l0.225,0.773l-0.252,0.139l-0.172-0.134l-1.043-1.93l-1.742-0.674l-1.921,0.469l-0.473,1.558l0.336,1.174l2.604,1.513l2.324,1.242l1.049,1.264l0.229,1.579l-0.375,2.083l-1.693,1.208l-2.41,0.713l-2.586-0.466
|
||||
l-0.7-0.679l-0.483-0.213l0.228-0.274l0.236-1.896l-0.07-0.566l0.19,0.219l0.255-0.293l0.159,0.316l0.804,2.296l2.379,0.561l1.458,0.01l1.08-0.947l0.217-1.247l-0.304-1.619l-2.38-1.482l-2.225-1.194l-1.133-1.42l-0.632-1.248l1.423-2.134l2.744-1.15l1.791,0.059
|
||||
l0.881,0.869z"/>
|
||||
<path d="M52.952,219.537l0.281,0.06l0.138,0.925l-0.257,1.225l0.4-0.009l0.981,0.02l0.887-0.277l0.678,0.029l-0.082,0.478l0.081,0.533l-0.296-0.298l-1.53,0.169l-0.756,0.152l-0.088,0.037l-0.033,0.449l0.084,1.476l-0.083,2.595l0.227,1.284l0.679,0.408
|
||||
l0.942-0.266l0.585-0.24l0.112-0.145l0.181,0.202l0.187,0.192l-0.331-0.064l-0.863,0.64l-1.388,0.163l-1.004-0.179l-0.559-0.638l-0.231-1.753l0.104-2.209l0.091-1.061l-0.039-0.393l-0.054-0.548l-0.164-0.019l-0.789,0.225l-0.075-0.008l-0.253-0.126l-0.087-0.208
|
||||
l0.128-0.247l0.464-0.244l0.532-0.416l0.586-0.604l0.273-0.748l0.34-0.561z"/>
|
||||
<path d="M63.694,223.994l-3.862,0.296l-0.743-0.114l-0.924,0.003l-0.079,0.391l0.107,0.092l0.031,0.105l-0.188,0.473l0.348,1.48l1.053,1.409l1.818,0.317l0.843-0.227l0.941-0.406l0.729-0.543l-0.018,0.42l-0.021,0.065l-1.101,0.896l-1.269,0.782l-1.102,0.18
|
||||
l-1.424-0.272l-1.486-1.528l-0.654-2.291l0.207-1.104l0.72-1.358l0.484-1.018l1.153-0.431l1.418-0.402l1.44,0.423l1.225,1.069l0.434,1.3l-0.082-0.01z M58.188,223.886l0.554-0.078l2.937-0.19l0.53-0.026l-0.047-0.394l-0.079-0.664l-0.541-0.627l-0.936-0.194
|
||||
l-1.829,0.815l-0.589,1.358z"/>
|
||||
<path d="M67.885,221.891l2.611-0.145l0.267,0.318l-0.277,0.374l-0.483,0.301l-0.372-0.186l-1.545,0.241l-0.362,0.115l0.282,0.141l-0.076,1.823l0.121,2.464l0.032,0.943l0.426,0.372l0.936-0.095l0.861,0.17l-0.211,0.513l-0.139,0.264l-1.204-0.077l-0.699-0.073
|
||||
l-2.424-0.063l-0.204-0.131l0.072-0.198l0.025-0.068l1.227-0.185l-0.223-0.513l0.012-1.042l-0.073-4.346l-0.55-0.091l-0.539-0.244l-0.342,0.074l0.361-0.214l0.709-0.621l0.571-0.101l-0.006-0.488l0.273-0.521l-0.185-1.33l0.938-1.17l0.737-1.382l1.04-0.536
|
||||
l1.281,0.154L72,216.602l0.625,0.372l-0.555,0.335l-0.378,0.231l-0.885,0.114l-0.899-0.322l-0.318-0.339l-1.092,0.262l-0.218,1.047l-0.292,2.215l-0.103,1.375z"/>
|
||||
<path d="M78.694,228.038l-0.006,0.069l-0.07,0.551l-0.801,0.559l-0.57,0.374l-1.019-0.567l-0.363-0.974l-1.048,0.884l-0.911,0.346l-1.16,0.311l-0.784-0.44l-0.297-0.77l0.871-1.592l2.262-1.475l1.053-0.715l0.21-0.635l-0.502-1.619l-0.907-0.645l-1.375,0.547
|
||||
l-0.488,1.368l-0.101,0.645l-0.75,0.115l-0.397-0.036l-0.032-0.17l0.371-1.219l1.414-1.402l1.513-0.299l1.301,0.004l0.797,0.567l0.145,0.953l0.08,1.521l0.075,1.562l-0.158,1.139l0.068,0.379l-0.055,0.424l0.273,0.534l0.449,0.026l0.674-0.18l0.184-0.092
|
||||
l0.052-0.049z M75.806,227.588l0.135-1.727l0.033-0.787l-1.516,0.653l-1.214,1.166l-0.101,0.943l0.223,0.584l0.603,0.325l0.747-0.222l1.089-0.936z"/>
|
||||
<path d="M79.224,228.807l0.666,0.148l0.764-0.317l0.269-0.572l-0.304-0.36l0.3-0.486l-0.288-2.962l-0.129-0.692l-0.791-0.563l-0.154-0.33l1.193-0.383l0.827-1.311l0.251,0.186l0.319,0.521l-0.006,0.649l-0.181,0.201l0.335-0.182l1.128-0.883l1.167-0.22
|
||||
l0.673-0.233l1.496,0.376l0.768,1.126l0.083,2.358l0.059,1.482l0.04,0.399l-0.287,0.759l0.102,0.901l0.364,0.093l1.103,0.418l-0.124,0.097l-0.015,0.14l-0.147,0.162l-1.296,0.022l-1.28-0.143l-1.225-0.092l-0.238-0.062l0.132-0.248l0.767-0.237l0.464,0.248
|
||||
l0.131-0.384l0.115-0.335l-0.026-0.266l-0.089-2.233l0.256-0.504l-0.292-0.782l-0.407-1.642l-1.279-0.707l-1.208,0.594l-1.24,0.729l0.047,0.768l-0.143,2.149l0.138,2.055l0.06,0.196l0.324-0.004l0.506,0.323l0.442-0.024l0.124,0.313l0.107,0.174l-1.023-0.134
|
||||
l-2.112,0.018l-0.93,0.006l-0.184-0.038l-0.204,0.022l0.081-0.308z"/>
|
||||
<path d="M89.826,225.306l0.473-1.364l0.726-1.382l1.229-0.794l2.108-0.458l2.95,1.268l1.177,2.907l-1.116,2.808l-3.265,1.201l-2.207-0.763l-1.354-1.345l-0.721-2.076z M94.189,229.128l1.5-0.3l0.958-1.435l0.641-2.01l-0.342-1.808l-1.108-1.469l-1.551-0.584
|
||||
l-1.278,0.467l-1.13,1.103l-0.559,2.418l0.832,2.715l2.038,0.902z"/>
|
||||
<path d="M104.321,228.999l1.227-0.257l0.705-0.123l0.415-0.001l0.164-2.109l-0.245-5.541l0.457-3.258l0.175-0.48l-2.403,0.051l0.1-0.339l-0.133-0.21l0.279-0.107l0.338,0.141l1.322,0.091l0.944-0.025l0.52-0.378l0.481,0.112l0.158,0.29l0.485,0.89l2.642,6.169
|
||||
l1.166,2.296l1.802-4.496l0.05-0.347l0.338-0.266l0.55-1.584l0.726-0.791l0.386-1.885l0.362,0.197l0.397-0.181l1.795,0.187l1.244-0.149l0.2,0.118l-0.382,0.011l-0.563,0.387l-1.178-0.071l-0.284,0.403l0.091,0.921l-0.181,0.44l0.359,0.465l-0.211,4.86
|
||||
l-0.054,1.891l-0.066,1.216l-0.023,0.941l0.552,0.216l1.686,0.594l0.398-0.179l-0.33-0.102l-0.404,0.545l-1.248-0.378l-0.729,0.169l-2.677-0.223l-0.494,0.27l-0.408-0.031l0.536-0.223l-0.433-0.481l1.075,0.097l0.854-0.396l0.449-1.473l-0.432-1.953l-0.128-1.202
|
||||
l0.411-2.83l-0.205-2.359l-0.466,1.556l-0.608,0.187l0.423,0.236l-1.864,3.247l-0.143,1.476l-0.906,1.507l-0.885,1.912l0.003,0.7l0.079-0.146l-2.996-6.447l-1.894-4.684l-0.625,2.594l0.274,5.41l-0.281,2.129l0.549,0.476l1.274,0.131l0.829-0.071l-0.209,0.395
|
||||
l0.146-0.14l-3.028,0.184l-1.037,0.04l-1.078,0.019l-0.185-0.254z"/>
|
||||
<path d="M128.997,227.792l-0.025,0.316l-0.173,0.536l-0.728,0.654l-0.619,0.234l-1.056-0.476l-0.324-1l-0.993,0.965l-0.958,0.297l-1.169,0.226l-0.781-0.395l-0.364-0.768l1.006-1.531l2.09-1.778l1.387-0.346l-0.132-0.763l-0.23-1.745l-1.068-0.271l-1.186,0.509
|
||||
l-0.763,1.142l-0.188,0.488l-0.579,0.411l-0.481-0.042l0.152-0.286l0.419-1.13l1.361-1.314l1.418-0.5l1.303,0.024l0.604,0.729l0.516,0.767l0.083,1.553l-0.211,1.559l-0.012,1.139l0.157,0.386l-0.019,0.418l0.198,0.449l0.358,0.406l0.635-0.503l0.097-0.17
|
||||
l0.276-0.188z M126.056,227.604l0.187-1.743l-0.055-0.812l-1.435,0.815l-1.066,1.193l-0.526,0.778l0.41,0.585l0.604,0.287l0.764-0.151l1.117-0.953z"/>
|
||||
<path d="M129.623,229.228l-0.04-0.286l1.638-1.901l0.947-0.857l1.025-1.315l0.825-1.066l1.378-1.414l-0.315-0.162l-0.403-0.036l-1.866,0.162l-1.3-0.008l-0.476,0.54l-0.563,0.724l-0.359,0.276l-0.005-0.132l0.07-0.497l0.164-0.78l0.646-1.662l0.308-0.064
|
||||
l-0.126,0.184l0.085,0.446l0.095,0.366l1.643-0.021l0.768,0.185l2.243-0.081l0.859-0.127l-0.098,0.226l0.135,0.304l-0.99,1.048l-1.968,2.441l-2.466,3.037l0.653,0.053l2.358-0.126l0.781-0.16l0.689-0.633l0.679-0.981l0.063-0.167l0.311,0.193l-0.405,1.366
|
||||
l-0.14,1.099l-5.895-0.034l-0.603-0.305l-0.348,0.161z"/>
|
||||
<path d="M138.204,229.214l-0.107-0.295l1.785-1.787l0.882-0.907l0.99-1.344l0.998-0.914l0.999-1.702l-0.125,0.022l-0.404-0.009l-1.867-0.027l-1.293,0.103l-0.576,0.433l-0.424,0.843l-0.396,0.271l-0.06-0.146l0.15-0.489l0.086-0.804l0.728-1.605l0.261-0.062
|
||||
l-0.115,0.139l-0.081,0.446l0.244,0.4l1.661-0.129l0.767,0.241l2.244-0.094l0.884-0.208l0.108,0.339l-0.171,0.261l-0.761,1.218l-2.118,2.319l-2.591,2.938l0.774,0.085l2.358-0.005l0.798-0.184l0.862-0.532l0.368-1.163l0.184-0.072l0.11,0.123l0.019,1.419
|
||||
l-0.364,1.03l-5.894-0.143l-0.603,0.002l-0.311-0.011z"/>
|
||||
<path d="M147.093,225.306l0.192-1.402l0.837-1.336l1.182-0.886l2.146-0.345l3.059,1.131l1.298,3.013l-1.387,2.765l-3.224,1.344l-2.352-0.619l-1.194-1.599l-0.558-2.066z M151.279,229.108l1.437-0.388l1.048-1.313l0.582-2.023l-0.389-1.783l-1.061-1.453
|
||||
l-1.519-0.694l-1.35,0.376l-1.089,1.245l-0.575,2.435l0.953,2.649l1.963,0.948z"/>
|
||||
<path d="M164.2,227.557l0.118,0.605l-1.621,1.021l-1.719,0.431l-1.942-0.665l-1.243-1.644l-0.644-2.003l0.582-2.11l1.56-1.406l2.336-0.516l2.03,0.5l0.578,0.604l-0.253,0.584l-0.607,0.163l-0.972-0.748l-0.81-0.305l-0.607-0.209l-1.492,0.66l-0.879,2.63
|
||||
l0.834,2.66l2.03,0.759l1.355-0.155l1.364-0.857z"/>
|
||||
<path d="M172.564,227.458l-0.037,0.653l-1.406,1.291l-1.813,0.056l-1.955-0.489l-1.225-1.666l-0.53-2l0.362-2.168l1.691-1.29l2.306-0.756l2.124,0.536l0.31,0.75l-0.137,0.525l-0.549,0.064l-1.188-0.377l-0.566-0.574l-0.635-0.26l-1.402,0.838l-1.004,2.56
|
||||
l1.035,2.518l1.865,1.042l1.336-0.342l1.417-0.91z"/>
|
||||
<path d="M173.247,229.125l1.206-0.583l0.379-0.184l-0.104-0.642l-0.242-1.14l0.321-2.908l-0.024-1.081l-0.16-0.771l0.007-0.946l0.244-2.683l-0.515-0.419l-1.172-0.642l-0.13,0.028l0.081-0.247l0.329,0.094l0.19-0.255l1.735-0.437l0.488-0.15l-0.142,1.809
|
||||
l0.279,1.244l-0.21,1.604l0.214,1.981l-0.314,0.206l1.021-0.808l1.213-0.391l1.12-0.592l2.113,1.019l0.549,1.789l-0.158,0.987l-0.227,0.549l0.178,0.967l-0.351,1.413l0.131,0.815l0.697-0.231l0.777,0.444l-0.013,0.143l-2.047,0.222l-0.949-0.039l-0.554-0.142
|
||||
l-0.24,0.229l0.154-0.255l-0.231-0.111l0.538-0.339l0.616-0.003l-0.073-0.239l0.251-2.47l0.146-0.714l-0.277-1.879l-0.484-1.017l-1.248-0.056l-0.957,0.261l-0.803,0.502l-0.746,0.62l-0.08,0.697l0.299,0.677l-0.141,0.707l-0.105,1.205l-0.057,0.619l0.262,0.67
|
||||
l-0.129,0.172l1.418,0.195l0.206,0.379l0.111,0.039l0.038,0.404l-0.526-0.111l-0.764-0.334l-1.689,0.03l-1.261,0.231l-0.294-0.009l0.151-0.082l-0.045-0.04z"/>
|
||||
<path d="M183.498,222.396l0.083-0.413l0.757-0.088l0.577-0.73l0.591-0.745l0.383-0.069l-0.019,0.283l-0.072,0.628l-0.001,0.436l0.262,0.521l-0.281,2.812l0.204,2.979l-0.047,0.666l0.999-0.06l0.416,0.586l0.229-0.075l-0.106,0.278l-0.995-0.412l-1.097,0.148
|
||||
l-1.569,0.256l-0.575-0.117l-0.207,0.02l0.085-0.2l0.178-0.074l0.906-0.418l0.27-0.278l0.251-0.538l0.055-4.089l0.197-0.922l-0.355-0.366l-1.115-0.019z M184.546,217.238l0.205-0.475l0.525-0.377l0.534,0.431l0.3,0.459l-0.197,0.572l-0.637,0.14l-0.687-0.037
|
||||
l-0.044-0.714z"/>
|
||||
<path d="M84.106,241.114l-0.116,0.823l-0.09,0.87l0.236,0.826l-0.342,0.063l-0.145-0.125l-0.89-2.139l-1.925-0.555l-1.848,0.653l-0.761,1.474l0.489,1.233l2.681,1.426l2.111,1.532l1.174,1.04l0.33,1.542l-0.574,1.981l-1.588,1.179l-2.344,0.69l-2.599-0.275
|
||||
l-0.958-0.443l-0.173-0.486l0.131-0.28l0.375-1.888l0.008-0.471l0.03-0.202l0.065,0.193l0.249,0.163l1.162,2.013l2.12,1.26l1.535-0.26l0.87-1.182l0.377-1.167l-0.33-1.62l-2.444-1.361l-2.055-1.451l-1.329-1.236l-0.404-1.296l1.007-2.449l3.02-1.019l1.763,0.329
|
||||
l1.182,0.617z"/>
|
||||
<path d="M86.216,253.182l1.308-0.451l0.212-0.373l-0.368-0.642l0.393-1.141l-0.307-2.906l0.224-1.083l-0.1-0.771l0.039-0.946l0.022-2.665l-0.331-0.434l-1.168-0.646l0.179,0.028l-0.194-0.212l0.241-0.181l0.335,0.327l1.588-1.007l0.439,0.356l-0.136,1.529
|
||||
l0.191,1.245l-0.151,1.604l0.009,1.977l0.005,0.196l1.184-0.608l0.905-0.952l1.277,0.039l2.161,0.73l0.093,1.817l-0.043,0.99l-0.049,0.551l0.255,0.967l-0.023,1.414l-0.092,0.728l0.626-0.115l1.013,0.299l-0.237,0.3l-2.047-0.172l-0.953,0.382l-0.556-0.263
|
||||
l-0.268,0.402l0.013-0.377l-0.198-0.173l0.736,0.021l0.483-0.538l0.194,0.029l-0.084-2.505l0.101-0.717l0.052-1.913l-0.773-0.747l-1.103-0.253l-0.919,0.306l-0.957,0.297l-0.518,0.816l0.097,0.625l-0.399,0.677l-0.003,0.703l0.375,1.21l-0.047,0.619l-0.061,0.675
|
||||
l0.001,0.071l1.313,0.621l0.503-0.163l-0.164,0.264l0.023,0.21l-0.457,0.183l-0.759-0.018l-1.691-0.362l-1.261,0.195l-0.213-0.162l0.135,0.067l-0.096,0.022z"/>
|
||||
<path d="M103.664,248.08l-3.866,0.069l-0.742,0.083l-0.968-0.135l-0.021,0.472l-0.057,0.1l0.054,0.095l-0.033,0.476l0.249,1.512l1.261,1.168l1.683,0.695l0.867-0.321l0.928-0.465l0.687-0.691l0.166,0.533l-0.163,0.092l-1.059,0.974l-1.366,0.53l-1.056,0.203
|
||||
l-1.376-0.238l-1.651-1.345l-0.37-2.361l-0.017-1.118l0.706-1.384l0.743-0.746l0.968-0.659l1.416-0.458l1.494,0.38l1.176,1.159l0.381,1.302l-0.031,0.077z M98.226,247.799l0.481-0.079l2.94-0.05l0.475-0.134l0.278-0.338l-0.414-0.633l-0.503-0.613l-0.912-0.233
|
||||
l-1.856,0.787l-0.489,1.292z"/>
|
||||
<path d="M104.7,252.936l0.552-0.149l0.747-0.192l0.003-0.538l0.318-0.334l0.01-0.503l-0.17-2.962l-0.118-0.838l-1.049-0.31l0.125-0.281l1.015-0.544l0.776-1.372l0.438,0.102l0.003,0.671l0.079,0.65l0.022,0.126l0.283-0.04l1.081-0.94l1.154-0.266l0.681-0.028
|
||||
l1.281,0.493l0.731,0.912l0.345,2.284l0.077,1.482l-0.218,0.39l0.051,0.769l0.248,0.814l0.056,0.42l1.13,0.191l-0.151,0.083l0.113,0.319l-0.225,0.105l-1.294-0.263l-1.282-0.044l-1.383,0.266l0.146-0.403l0.034-0.015l0.665-0.107l0.368-0.265l0.196-0.191
|
||||
l0.312-0.33l-0.128-0.272l-0.029-2.227l0.147-0.503l-0.122-0.78l-0.639-1.62l-1.256-0.686l-1.254,0.447l-1.333,0.75l0.232,0.848l-0.109,2.149l-0.038,2.068l0.077,0.259l0.355,0.157l0.561,0.065l0.413,0.096l0.377,0.188l-0.122,0.21l-1.026-0.013l-2.11-0.188
|
||||
l-0.931,0.053l-0.204,0.035l0.091-0.052l-0.104-0.146z"/>
|
||||
<path d="M117.164,253.833l-0.863-0.148l-0.814-0.919l-0.031-0.498l-0.202-0.562l1.057-0.133l0.977-0.576l-0.474-0.073l-1.313-2.615l1.017-2.035l2.224-0.844l1.245-0.142l0.904,0.59l0.487,0.171l0.304,0.199l0.834,0.144l0.728-0.419l0.543,0.034l0.094,0.818
|
||||
l-0.231,0.237l-0.24,0.098l-0.952,0.021l-0.716-0.193l0.052-0.224l0.289,1.579l-0.553,1.395l-1.268,0.981l-1.501,0.606l-0.332-0.2l-1.776,0.339l-0.197,0.631l0.229,0.562l3.599,0.548l1.845-0.008l0.691,1.136l0.341,1.055l-0.488,1.408l-1.565,1.121l-2.492,0.625
|
||||
l-2.464-0.427l-1.219-0.9l-0.444-0.947l0.388-1.066l1.883-0.897l0.405-0.472z M116.343,257.43l2.33,0.801l1.889-0.647l1.38-0.815l0.318-1.04l0.083-0.65l-0.56-0.372l-0.663-0.276l-0.857-0.085l-1.992-0.154l-1.782,0.637l-0.837,1.218l0.691,1.385z
|
||||
M116.79,248.277l0.155,1.477l0.899,0.666l0.828,0.65l1.34-0.905l0.78-1.878l-0.578-2.13l-1.571-0.424l-1.397,0.53l-0.456,2.014z"/>
|
||||
<path d="M128.874,240.682l0.254-0.104l1.085,0.333l0.56-0.253l0.924,0.354l1.642-0.479l1.535,0.161l2.531,0.173l1.503,1.435l0.22,1.936l-1.044,2.579l-2.845,0.998h-0.834l-0.912-0.181l-0.249-0.428l0.209-0.311l0.372,0.126l0.785,0.141l1.54-0.11l0.848-1.276
|
||||
l0.392-1.417l-0.138-1.552l-0.98-1.272l-1.155-0.376l-1.139,0.093l-1.335,0.156l-0.286,0.077l0.381,1.097l-0.329,0.188l0.124,0.818l-0.09,2.483l0.326,0.535l0.136,4.456l-0.077,0.378l-0.123,0.446l-0.051,0.809l1.461,0.282l0.609,0.046l0.306,0.15l-0.382,0.063
|
||||
l-0.157,0.289l-0.557-0.104h-1.321l-1.741,0.071l-1.045,0.055l-0.615-0.089l-0.024-0.485l1.375-0.034l0.427-0.188l0.189-0.574l0.058-0.375l-0.388-0.577l0.231-4.938l-0.323-3.589l0.107-0.167l-0.255-0.763l-1.667-0.877l-0.145,0.035l0.08-0.241z"/>
|
||||
<path d="M146.789,248.096l-3.866,0.15l-0.742-0.013l-0.909-0.027l-0.065,0.361l-0.053,0.1l0.035,0.096l-0.175,0.474l0.606,1.42l0.99,1.347l1.738,0.613l0.847-0.385l0.924-0.436l0.785-0.345l0.04,0.225l-0.006,0.162l-1.133,0.951l-1.362,0.614l-1.093,0.172
|
||||
l-1.411-0.265l-1.53-1.479l-0.617-2.309l0.088-1.131l0.744-1.38l0.638-0.888l0.988-0.752l1.519-0.257l1.511,0.396l1.269,1.128l0.091,1.362l0.149,0.094z M141.451,247.679l0.382,0.199l2.927-0.429l0.529,0.131l0.077-0.382l-0.029-0.746l-0.691-0.569l-0.948-0.089
|
||||
l-1.676,0.856l-0.57,1.028z"/>
|
||||
<path d="M148.102,246.179l-0.125-0.209l0.784-0.043l0.688-0.608l0.587-0.786l0.257-0.125l-0.05,0.242l-0.008,0.613l0.33,0.442l0.002,0.515l-0.189,2.813l-0.214,2.976l0.321,0.538l0.752,0.445l0.558,0.149l0.074-0.012l-0.023,0.1l-0.972-0.091l-1.088-0.194
|
||||
l-1.578,0.172l-0.545,0.343l-0.055-0.406l-0.284,0.049l0.281-0.27l0.958-0.421l0.376-0.029l0.374-0.586l-0.22-4.092l-0.167-0.751l-0.153-0.19l-0.67-0.583z M148.867,241.238l0.059-0.725l0.76-0.068l0.706,0.193l0.265,0.639l-0.284,0.624l-0.687,0.351
|
||||
l-0.579-0.408l-0.24-0.605z"/>
|
||||
<path d="M54.044,265.35l0.162-0.412l2.136-0.09l0.366-0.377l0.134,0.464l0.806,0.646l0.203,0.178l2.16,2.181l0.289,0.356l1.254,1.125l1.713,2.424l2.262,2.646l0.963,0.958l0.374-0.355l-0.032-1.409l-0.152-0.601l-0.131-0.917l0.057-0.419l0.183-2.474
|
||||
l-0.577-1.042l0.104-1.397l0.122-1.377l-1.054,0.048l-0.544-0.054l-0.555-0.118l-0.154-0.278l-0.024-0.536l0.672,0.241l0.7-0.137l0.715,0.181l1.414,0.079l0.738-0.065l0.18-0.121l0.198,0.395l-0.655-0.154l-0.5,0.192l-0.28,0.335l-0.1,0.414l0.072,3.087
|
||||
l-0.038,1.421l-0.106,0.414l-0.208,1.971l0.033,3.493l0.455,1.549l-0.667-0.188l-2.312-2.47l-0.898-0.442l-0.572-1.207l-0.556-0.779l-0.463,0.024l-2.818-2.995l-1.249-1.628l-0.71-0.799l-0.455-0.404l-0.096,0.39l0.094,5.267l0.078,3.237l0.091,0.875l0.386,0.229
|
||||
l1.895-0.103l0.222,0.209l-0.305,0.329l-0.092,0.045l-0.278,0.228l-2.312-0.518l-1.731,0.103l-0.111,0.108l-0.335,0.163l0.057-0.34l0.288-0.06l0.424-0.246l0.996,0.162l0.268-0.414l-0.161-1.988l0.065-2.218l0.011-1.33l-0.099-2.775l-0.111-2.134l-0.086-0.344
|
||||
l-0.923-0.565l-0.892,0.112z"/>
|
||||
<path d="M69.891,270.231l-0.087-0.27l0.675-0.292l0.856-0.29l0.683-0.713l0.097,0l0.334-0.181l-0.104,0.777l-0.258,0.437l0.141,0.521l0.232,2.813l-0.139,2.979l0.029,0.508l0.828,0.094l0.459,0.518l0.073-0.004l-0.046-0.015l-0.956,0.083l-1.084-0.25
|
||||
l-1.581,0.088l-0.576,0.139l-0.147,0.061l-0.073-0.132l0.312-0.026l0.894-0.41l0.389-0.234l0.053-0.641l0.306-4.088l-0.26-0.818l-0.199-0.307l-0.85-0.346z M70.448,265.238l0.539-0.484l0.534-0.186l0.769,0.004l0.263,0.704l-0.393,0.574l-0.639,0.371
|
||||
l-0.564-0.392l-0.509-0.591z"/>
|
||||
<path d="M81.61,275.605l0.101,0.543l-1.608,0.989l-1.699,0.5l-2.013-0.579l-1.254-1.715l-0.66-2.04l0.662-2.121l1.529-1.493l2.387-0.516l2.052,0.563l0.584,0.639l-0.438,0.423l-0.451,0.227l-0.981-0.642l-0.742-0.436l-0.666-0.251l-1.417,0.882l-0.979,2.571
|
||||
l0.844,2.674l2.046,0.84l1.311-0.356l1.393-0.704z"/>
|
||||
<path d="M82.3,276.956l1.411-0.153l0.241-0.444l-0.122-0.642l-0.09-1.141l0.208-2.907l-0.068-1.081l-0.106-0.771l-0.088-0.948l0.19-2.673l-0.474-0.37l-1.182-0.492l-0.076-0.18l0.042-0.297l0.346,0.004l0.246-0.025l1.708-0.539l0.42,0.049l-0.119,1.621
|
||||
l0.043,1.245l0.37,1.607l-0.505,1.971l0.407,0.591l0.584-1.354l1.24-0.49l1.231-0.333l1.824,1.246l0.333,1.562l0.222,0.994l0.072,0.554l-0.337,0.951l0.347,1.425l-0.003,0.515l0.478,0.065l0.835,0.419l-0.037,0.43l-2.079-0.236l-0.956,0.019l-0.55,0.229
|
||||
l-0.166-0.315l-0.248,0.061l-0.008-0.159l0.664-0.189l0.62-0.022l0.298-0.258l-0.216-2.536l0.176-0.714l-0.349-1.845l-0.359-1.068l-1.259-0.051l-1.112-0.042l-0.716,0.745l-0.595,0.746l-0.363,0.648l0.126,0.673l0.287,0.711l0.01,1.202l-0.242,0.62l-0.136,0.684
|
||||
l0.308,0.066l1.395,0.282l0.274,0.316l0.193,0.078l-0.263,0.052l-0.375,0.145l-0.767-0.218l-1.685,0.259l-1.266-0.036l-0.195-0.147l-0.229,0.127l0.192-0.232z"/>
|
||||
<path d="M92.959,273.306l0.272-1.386l0.767-1.378l1.123-1.046l2.232-0.356l3.057,1.331l1.152,3.011l-1.342,2.656l-3.12,1.188l-2.334-0.384l-1.255-1.543l-0.552-2.093z M97.183,277.015l1.497-0.19l1.108-1.361l0.351-2.08l-0.342-1.763l-1.026-1.435l-1.491-0.522
|
||||
l-1.274,0.334l-1.156,1.083l-0.55,2.43l0.763,2.788l2.12,0.716z"/>
|
||||
<path d="M102.924,265.096l-0.021-0.124l0.489-0.383l1.544-0.113l0.424-0.212l-0.211,0.542l0.4,9.6l-0.298,0.971l0.096,1.29l0.774,0.414l0.808-0.237l0.03,0.283l0.062,0.298l-0.308-0.222l-1.041,0.146L104.375,277l-1.658,0.333l-0.388,0.101l0.297-0.315
|
||||
l-0.118-0.117l0.688-0.147l0.807-0.122l-0.14-0.449l0.075-1.968l0.292-2.254l-0.181-2.333l0.074-2.333l0.035-1.146l-0.086-0.534l-0.501-0.299l-0.646-0.32z"/>
|
||||
<path d="M114.814,276.008l0.021,0.1l-0.289,0.439l-0.558,0.776l-0.634,0.223l-1.055-0.491l-0.308-0.939l-1.125,0.732l-0.823,0.541l-1.189-0.048l-0.737-0.235l-0.5-0.725l0.977-1.637l2.282-1.503l1.189-0.583l-0.097-0.693l-0.258-1.652l-0.95-0.385l-1.234,0.477
|
||||
l-0.534,1.232l-0.323,0.497l-0.625,0.277l-0.484,0.05l0.162-0.29l0.468-1.096l1.343-1.279l1.38-0.703l1.291,0.19l0.75,0.586l0.271,0.895l-0.015,1.532l0.175,1.563l-0.167,1.138l0.036,0.381l-0.143,0.423l0.252,0.604l0.524,0.111l0.532-0.438l0.219-0.08
|
||||
l0.171,0.011z M112.053,275.64l0.036-1.778l0.012-0.843l-1.432,0.866l-1.175,1.106l-0.29,0.845l0.272,0.583l0.603,0.426l0.722-0.372l1.252-0.833z"/>
|
||||
<path d="M116.355,274.848l0.763,1.082l0.732,1.024l1.172,0.228l1.111-0.47l0.439-0.853l-0.532-1.173l-1.702-1.148l-1.856-0.869l-0.24-1.319l0.161-1.237l1.042-0.808l1.212-0.3l1.234,0.304l0.918,0.302l0.153,1.437l-0.039,0.296l-0.131,0.025l-0.199,0.041
|
||||
l-0.747-1.436l-1.279-0.329l-0.916,0.36l-0.401,0.903l0.211,0.863l1.491,0.668l1.613,0.766l0.539,1.034l0.189,0.99l-0.352,1.232l-1.091,0.781l-1.16,0.31l-2.237-0.486l-0.005-0.201l-0.105-0.29l-0.209-1.581l0.036-0.168l0.188,0.021z"/>
|
||||
<path d="M127.742,266.2l0.489-1.439l-0.084-0.442l0.19,0.036l0.48,0.282l0.215,0.393l0.289,0.057l0.094,0.072l0.418,0.077l2.304,0.079l2.724-0.036l0.801,0.018l1.516,0.121l0.243-0.234l0.817,0.346l0.384-0.219l0.306-0.707l0.182-0.363l0.059,0.165l0.334,0.25
|
||||
l-0.328,0.383l0.223,0.82l-0.124,1.929l-0.141,0.065l-0.053,0.451l0.051-0.482l-0.261-0.312l-0.638-1.167l-0.517-0.293l-1.712-0.061l-1.704-0.245l-0.157,0.802l0.362,6.065l-0.3,1.368l0.328,1.301l-0.148,0.724l-0.067,0.631l0.756,0.368l1.237,0.208l0.342-0.079
|
||||
l-0.058,0.116l-1.348,0.321l-1.712,0.05l-1.423-0.043l-1.048-0.011l-0.501-0.241l0.032-0.071l0.01-0.024l0.2-0.47l0.964-0.112l0.882-0.051l0.208-0.382l-0.102-1.724l0.235-1.66l-0.465-3.612l0.145-0.784l0.165-2.633l-1.742,0.042l-1.646,0.25l-1.633,1.328
|
||||
l-0.396,0.617l-0.06-0.095l0.153-0.051l-0.069-0.698l0.294-0.992z"/>
|
||||
<path d="M146.656,275.993l0.029,0.115l-0.108,0.56l-0.697,0.743l-0.688,0.111l-1.023-0.493l-0.355-0.965l-1.029,0.904l-0.916,0.375l-1.177-0.045l-0.79-0.141l-0.415-0.776l0.89-1.686l2.265-1.626l1.426-0.321l-0.028-0.785l-0.541-1.613l-0.9-0.423l-1.337,0.362
|
||||
l-0.338,1.366l-0.388,0.505l-0.652,0.138h-0.368l-0.042-0.129l0.537-1.107l1.269-1.439l1.473-0.461l1.273,0.167l0.737,0.563l0.381,0.857l0.168,1.548l-0.11,1.559l-0.003,1.137l-0.236,0.376l0.054,0.429l0.356,0.444l0.354,0.163l0.552-0.316l0.184-0.107
|
||||
l0.192,0.009z M143.807,275.609l0.114-1.748l-0.008-0.764l-1.473,0.686l-1.258,1.104l-0.206,0.948l0.367,0.552l0.572,0.196l0.735-0.086l1.157-0.89z"/>
|
||||
<path d="M147.383,265.133l0.175-0.085l0.482-0.105l1.444-0.427l0.54-0.435l0.111,0.724l-0.024,9.6l-0.112,0.971l-0.02,1.23l0.726,0.102l0.621,0.374l-0.088,0.044l0.031,0.012l-0.015,0.368l-1.038-0.228l-1.3-0.286l-1.671,0.106l-0.082,0.007l-0.019,0.015
|
||||
l-0.049-0.055l0.661-0.094l0.556-0.533l0.407-0.119l-0.232-2.003l0.069-2.255l0.038-2.333l0.205-2.332l-0.353-1.153l0.313-0.634l-0.567-0.392l-0.81-0.084z"/>
|
||||
<path d="M151.949,270.365l0.211-0.219l0.534-0.396l0.61-0.624l0.735-0.604l0.252,0.17l0.087-0.097l0.006,0.667l-0.147,0.436l0.413,0.521l-0.402,2.813l0.364,2.981l0.042,0.393l0.671,0.316l0.504,0.387l0.138,0.02l-0.075,0.284l-1.007-0.225l-1.085,0.03
|
||||
l-1.578-0.087l-0.556,0.24l-0.203-0.087l-0.228-0.181l0.433-0.166l0.956-0.3l0.271-0.299l0.518-0.54l0.043-4.094l-0.242-0.855l-0.253-0.329l-1.012-0.154z M152.825,265.238l0.172-0.662l0.702-0.09l0.654,0.206l0.402,0.585l-0.318,0.676l-0.738,0.388l-0.628-0.447
|
||||
l-0.246-0.656z"/>
|
||||
<path d="M163.93,276.022l0.152,0.085l-0.372,0.465l-0.543,0.84l-0.689-0.041l-1.066-0.309l-0.273-0.865l-1.036,0.819l-0.983,0.2l-1.142,0.235l-0.844-0.244l-0.295-0.828l0.891-1.627l2.27-1.514l1.189-0.583l0.048-0.693l-0.294-1.737l-1.058-0.293l-1.164,0.548
|
||||
l-0.75,1.125l-0.13,0.576l-0.672,0.331l-0.312-0.29l-0.285-0.052l0.617-1.173l1.372-1.384l1.479-0.543l1.231,0.374l0.865,0.38l0.42,0.906l-0.241,1.565l-0.052,1.561l0.122,1.139l0.04,0.384l-0.173,0.421l0.258,0.586l0.506,0.18l0.646-0.406l0.036-0.221
|
||||
l0.234,0.083z M160.992,275.572l0.221-1.71l-0.023-0.741l-1.354,0.836l-1.113,1.111l-0.472,0.769l0.193,0.74l0.755,0.223l0.797-0.175l0.995-1.052z"/>
|
||||
<path d="M164.496,276.868l0.584-0.186l0.771-0.078l0.009-0.547l-0.033-0.352l0.181-0.484l-0.104-2.963l-0.186-0.681l-0.951-0.396l0.118-0.421l0.929-0.675l1.109-0.969l0.184-0.007l0.077,0.576l-0.083,0.653l0.045,0.229l0.341-0.265l1.282-0.582l1.018-0.619
|
||||
l0.708,0.146l1.278,0.438l1.023,0.823l-0.093,2.369l-0.025,1.482l-0.068,0.385l0.275,0.773l-0.141,0.904l0.372,0.1l1.152,0.382l-0.01,0.123l-0.195,0.095l-0.131,0.324l-1.294-0.193l-1.273,0.159l-1.235-0.289l-0.018-0.116l-0.157-0.31l0.861,0.134l0.412-0.101
|
||||
l0.361-0.142l0.005-0.491l-0.088-0.268l-0.101-2.231l-0.007-0.508l0.128-0.776l-0.449-1.783l-1.41-0.414l-1.36,0.107l-1.271,0.954l0.239,0.875l-0.004,2.147l-0.125,2.071l0.082,0.272l0.357,0.208l0.58-0.02l0.377,0.242l0.445,0.056l-0.136,0.33l-1.047-0.276
|
||||
l-2.112,0.044l-0.93,0.02l-0.241,0.065l0.116-0.132l-0.139-0.216z"/>
|
||||
<path d="M30.226,301.137l-0.086-0.397l0.619-0.067l1.115-0.096l0.061-0.441l-0.044-0.685l0.239-2.476l-0.033-1.17l-0.091-2.446l-0.195-2.774l0.018-1.045l-0.958-0.34l-0.714,0.188l-0.17-0.382l0.167-0.176l0.14,0.154l0.323,0.005l1.2-0.072l0.715,0.005
|
||||
l1.72-0.058l2.003-0.113l0.979,0.151l1.111-0.035l1.382,0.077l0.168-0.236l0.806,0.187l0.133-0.11l0.042,0.21l-0.124,0.418l-0.027,0.371l-0.079,1.771l0.15,0.15l-0.043-0.247l-0.266-0.583l-0.738-0.994l-0.293-0.614l-0.634,0.245l-0.897-0.002l-0.417-0.354
|
||||
l-2.789,0.08l-0.243,0.05l-0.755,0.106l-0.196,1.454l-0.006,2.341l0.416,1.342l0.011-0.103l0.165,0.177l0.479,0.152l0.687-0.225l0.21,0.196l2.692-0.273l0.748,0.004l0.092-1.026l0.248-1.065l0.257,0.305l0.25,0.115l-0.286,0.219l0.205,2.284l-0.18,1.144
|
||||
l0.021,0.672l0.039,0.226l-0.108-0.127l0.077,0.043l-0.507-0.707l-0.418-1.314l-0.951-0.354l-0.493,0.266l-1.075,0.126l-0.633-0.146l-1.628,0.116l-0.021,0.204l-0.21,1.791l0.021,1.129l0.221,1.1l0.044,1.096l0.657,0.495l0.598-0.106l0.607,0.01l1.322,0.045
|
||||
l2.467-0.518l1.187-0.273l1.045-1.814l0.247-0.689l0.09,0.295l-0.342,1.28v1.429l-0.208,0.411l-0.153,0.371l-2.754-0.143l-1.234-0.218l-2.937,0.225l-1.195-0.051l-0.426-0.147l-2.59,0.368l-0.095-0.346l-0.098,0.153l0.147-0.19z"/>
|
||||
<path d="M42.953,300.821l0.558,0.107l0.682-0.179l0.01-0.598l0.313-2.457l-0.153-2.739l-0.625-0.253l-0.259-0.15l-0.321-0.313l0.932-0.494l1.33-0.686l-0.147,0.052l0.187-0.331l0.139,0.129l-0.285,1.148l0.251,0.694l1.849-1.376l1.325-0.012l1.5-0.052
|
||||
l0.794,1.686l1.644-1.376l1.375-0.239l1.963,0.317l0.391,2.272l0.287,0.808l-0.284,0.89l0.21,2.284l-0.017,0.771l0.742-0.005l0.403,0.114l0.108,0.19l-0.243,0.206l0.038,0.076l-0.981-0.12l-0.556,0.237l-1.301-0.188l-0.496,0.089l-0.429-0.043l-0.189-0.223
|
||||
l0.413-0.03l0.528-0.656l0.4-0.122l0.553-1.369l-0.495-3.263l-0.267-1.363l-1.44-0.472l-1.23,0.438l-0.827,1.181l-0.191,0.114l-0.133,1.487l0.06,1.16l0.033,2.016l0.169,0.364l0.745,0.465l0.453-0.139l-0.039,0.197l0.133,0.407l-0.198-0.258l-0.486,0.272
|
||||
l-2.82-0.142l-0.781-0.057l0.22-0.231l-0.184-0.089l0.725-0.433l0.659,0.024l0.138-0.117l0.083-0.799l0.244-1.136l-0.186-1.285L50,296.514l-0.673-1.695l-1.17-0.553l-1.358,0.37l-1.038,0.92l-0.108,0.396l0.228,3.242l0.043,1.075l0.297,0.622l1.013-0.272
|
||||
l0.161,0.407l-0.225,0.193l-1.513-0.072l-0.702,0.208l-0.511-0.354l-0.307-0.037l-1.103,0.542l0.114-0.406l-0.196-0.278z"/>
|
||||
<path d="M58.68,301.063l0.211-0.423l0.588-0.094l-0.017-0.426l0.376-2.425l-0.223-2.664l-0.494-0.168l-0.409-0.203l0.17-0.148l0.78-0.555l0.987-1.071l0.041,0.24l0.187-0.408l0.203,0.19l0.094,1.153l-0.284,0.512l1.995-1.079l1.271-0.404l1.208,0.674l1.07,0.688
|
||||
l1.664-0.819l1.371-0.58l1.727,0.881l0.549,2.042l0.489,0.807l-0.346,0.89l0.187,2.285l0.063,0.639l0.618,0.15l0.327,0.188l-0.024,0.093l-0.001,0.23l-0.023,0.344l-0.933-0.534l-0.57-0.155l-1.3,0.388l-0.497,0.11l-0.423-0.147l0.154-0.201l0.074-0.017
|
||||
l0.53-0.593l0.411-0.186l0.301-1.383l-0.12-3.286l-0.49-1.244l-1.363-0.089l-1.063,0.263l-1.064,0.836l0.012,0.156l-0.083,1.489l-0.111,1.157l0.062,2.011l0.321,0.14l0.59,0.425h0.481l-0.085,0.328l0.115,0.415l-0.204,0.042l-0.48-0.333l-2.822,0.088l-0.76-0.183
|
||||
l0.254-0.034l-0.1,0.024l0.577-0.6l0.77,0.306l-0.179-0.425l0.105-0.729l0.412-1.128l0.01-1.286l-0.098-0.712l-0.701-1.716l-1.193-0.68l-1.357,0.52l-1.299,0.772l0.32,0.539l0.04,3.244l-0.103,1.202l0.498,0.236l0.886,0.119l-0.243,0.274l0.278,0.499
|
||||
l-1.521-0.136l-0.727-0.532l-0.471,0.563l-0.312-0.096l-1.111-0.069l0.152-0.154l0.072-0.037z"/>
|
||||
<path d="M81.507,299.788l0.164,0.319l-0.278,0.589l-0.832,0.569l-0.599,0.13l-1.125-0.284l-0.216-0.917l-1.044,0.808l-0.92,0.41l-1.195-0.005l-0.841-0.201l-0.161-0.825l0.847-1.545l2.129-1.71l1.27-0.451l-0.082-0.712l-0.158-1.768l-1.098-0.302l-1.213,0.533
|
||||
l-0.482,1.224l-0.414,0.463l-0.605,0.321l-0.447-0.026l0.079-0.238l0.36-1.19l1.44-1.291l1.438-0.374l1.303-0.065l0.588,0.741l0.551,0.752l-0.018,1.554l-0.039,1.561l0.043,1.138l-0.02,0.385l-0.071,0.42l0.26,0.467l0.377,0.098l0.606-0.233l0.225-0.065
|
||||
l0.178-0.276z M78.545,299.598l0.166-1.736l-0.061-0.663l-1.433,0.598l-1.242,1.108l-0.351,0.932l0.361,0.684l0.7,0.319l0.78-0.25l1.081-0.991z"/>
|
||||
<path d="M81.985,300.872l0.622,0.095l0.62-0.48l0.248-0.425l-0.102-0.354l-0.082-0.486l0.296-2.965l-0.294-0.763l-1.061-0.291l0.108-0.469l1.063-0.521l0.897-1.225l0.251,0.168l0.251,0.53l-0.067,0.65l0.041,0.129l0.21-0.142l1.245-0.648l1.068-0.45l0.679-0.27
|
||||
l1.305,0.693l0.972,0.867l0.046,2.362l-0.086,1.482l0.193,0.398l-0.28,0.76l0.324,0.828l0.146,0.178l1.039,0.442l-0.131,0.062l0.026,0.062l-0.112,0.142l-1.299-0.116l-1.283-0.027l-1.289,0.153l0.02-0.227l0.016-0.1l0.715-0.06l0.384-0.196l0.279-0.153
|
||||
l0.125-0.406l-0.063-0.271l-0.113-2.228l-0.012-0.508l0.116-0.776l-0.479-1.758l-1.385-0.533l-1.22,0.506l-1.264,0.736l-0.061,0.79l0.229,2.145l0.07,2.037l-0.118,0.235l0.301,0.182l0.518,0.227l0.44,0.005l0.316,0.157l-0.055,0.184l-1.022,0.135l-2.111-0.227
|
||||
l-0.93-0.084l-0.228,0.134l-0.095-0.081l0.063-0.234z"/>
|
||||
<path d="M91.894,293.583l0.728,0.089l0.324,0.036l0.255-0.089l1.112,0.098l0.113,0.066l0.149,2.661l-0.197,0.861l0.047,2.163l0.672,0.568l0.955,0.439l1.371-0.398l1.268-0.619l-0.027-0.906l-0.066-1.953l0.154-0.522l-0.129-1.884l-1.345-0.144l-0.592,0.015
|
||||
l0.018-0.345l0.049-0.082l0.474-0.018l1.539,0.056l0.872,0.063l0.071-0.136l0.269,0.699l-0.141,3.675l-0.126,0.79l-0.014,1.337l0.198,0.316l0.524-0.137l0.085,0.155l0.65,0.114l-0.025,0.015l0.036-0.038l-1.987,0.675l-0.527,0.199l-0.217-0.438l0.004-0.797
|
||||
l0.207-0.303l-0.223,0.396l-1.768,0.862l-1.124,0.304l-1.715-0.749l-0.754-2.613l0.175-0.348l-0.051-0.658l0.188-0.435l0.007-0.267l-0.08-0.393l-0.136-0.438l0.077-0.294l0.071-0.518l-0.107-0.271l-0.189-0.205l-0.786-0.253l-0.218-0.132l-0.118-0.274z"/>
|
||||
<path d="M109.065,296.219l-3.871,0.097l-0.743-0.033l-0.966-0.183l-0.14,0.476l0.253,0.084l-0.22,0.104l-0.051,0.477l0.565,1.417l0.912,1.466l1.813,0.346l0.916-0.021l0.866-0.637l0.732-0.54l0.182,0.394l-0.192,0.113l-1.059,0.99l-1.322,0.732l-1.12-0.139
|
||||
l-1.314-0.274l-1.63-1.251l-0.575-2.311l0.183-1.1l0.643-1.395l0.534-0.995l1.134-0.483l1.443-0.395l1.401,0.544l1.235,1.016l0.439,1.284l-0.049,0.217z M103.732,295.666l0.371,0.149l2.93-0.314l0.454,0.002l0.32-0.304l-0.402-0.646l-0.54-0.572l-0.897-0.31
|
||||
l-1.75,0.92l-0.486,1.074z"/>
|
||||
<path d="M110.141,289.17l0.256-0.12l0.362-0.493l1.506-0.328l0.556-0.092l-0.146,0.667l0.273,9.6l0.024,0.971l-0.223,1.273l0.776,0.203l0.667,0.181l0.028,0.093l-0.129-0.002l0,0.32l-1.042-0.063l-1.292-0.103l-1.66,0.085l-0.305-0.024l-0.233-0.22l0.294-0.161
|
||||
l0.67-0.4l0.915,0.249l-0.105-0.513l0.05-1.979l-0.065-2.255l0.165-2.332l-0.062-2.333l0.301-1.142l-0.189-0.598l-0.583-0.243l-0.809-0.242z"/>
|
||||
<path d="M119.71,290.202l0.093-1.54l0.293-0.351l0.199-0.012l0.257,0.457l0.571,0.1l0.143,0.552l0.119-0.441l0.409,0.212l2.303,0.05l2.723-0.046l0.799-0.084l1.512-0.019l0.259,0.002l0.807,0.171l0.114-0.182l0.499-0.507l0.259-0.146l0.325-0.208l0.066,0.442
|
||||
l0.069,0.383l-0.425,0.822l0.169,1.928l-0.122,0.12l-0.112,0.008l-0.125,0.048l0.089-0.494l-0.938-1.029l-0.288-0.745l-1.815,0.29l-1.724-0.271l0.13,0.826l-0.188,6.073l0.292,1.366l-0.076,1.298l-0.01,0.725l0.025,0.524l0.619,0.484l1.275-0.044l0.237,0.178
|
||||
l0.04,0.235l-1.376,0.233l-1.714-0.198l-1.426,0.007l-1.051-0.157l-0.494,0.063l-0.323,0.136l0.218-0.397l0.41,0.13l0.95-0.378l0.705-0.371l0.158-0.271l0.131-1.688l0.067-1.659l-0.399-3.612l0.162-0.785l0.102-2.617l-1.645-0.141l-1.659,0.395l-1.592,1.371
|
||||
l-0.409,0.407l-0.006-0.04l-0.388,0.083l0.362-0.71l0.348-0.978z"/>
|
||||
<path d="M132.28,294.144l-0.115-0.129l0.768-0.029l0.507-0.854l0.737-0.603l0.252,0.038l-0.085,0.103l0.18,0.593l0.249,0.442l-0.057,0.515l-0.15,2.813l0.193,2.98l-0.24,0.634l0.94,0.066l0.642,0.171l-0.277,0.244l0.17,0.109l-0.974-0.096l-1.088,0.19
|
||||
l-1.58-0.275l-0.583,0.061l-0.098,0.056l-0.259-0.07l0.459-0.02l0.905-0.349l0.44-0.252l0.209-0.687l-0.224-4.092l-0.048-0.782l-0.196-0.214l-0.677-0.563z M133.198,289.238l0.199-0.378l0.435-0.566l0.586,0.469l0.135,0.514l-0.094,0.563l-0.627,0.035
|
||||
l-0.574-0.035l-0.059-0.601z"/>
|
||||
<path d="M137.537,298.814l0.622,1.173l0.878,0.867l1.113,0.286l1.049-0.498l0.489-0.785l-0.475-1.212l-1.832-0.883l-1.624-1.213l-0.562-1.202l0.41-1.184l1.01-0.753l1.168-0.16l1.265-0.104l0.796,0.524l0.292,1.374l-0.028,0.311l-0.189,0.067l-0.207-0.009
|
||||
l-0.73-1.451l-1.288-0.504l-1.016,0.445l-0.384,1.004l0.4,0.772l1.35,0.849l1.5,0.862l0.764,0.816l0.271,1.022l-0.557,1.196l-0.962,1.043l-1.242,0.103l-2.245-0.487l-0.071-0.216l-0.08-0.287l-0.021-1.587l-0.025-0.068l0.163-0.112z"/>
|
||||
<path d="M144.921,298.76l0.369,1.336l1.052,0.741l1.103,0.496l1.09-0.646l0.52-0.83l-0.646-1.128l-1.739-0.952l-1.759-1.115l-0.45-1.314l0.524-1.123l0.894-0.891l1.2-0.166l1.24,0.109l1.06,0.236l0.166,1.525l-0.014,0.342l-0.316-0.051l-0.038-0.02l-1.024-1.188
|
||||
l-1.162-0.438l-1.07,0.165l-0.388,1.059l0.459,0.771l1.368,0.801l1.56,0.812l0.572,0.963l0.405,0.976l-0.555,1.215l-1.012,0.953l-1.216,0.299l-2.304-0.475l-0.049-0.353l0.092-0.304l-0.313-1.571l-0.035-0.279l0.419,0.044z"/>
|
||||
<path d="M158.67,299.975l0.039,0.133l-0.244,0.486l-0.572,0.828l-0.695-0.002l-1.032-0.385l-0.287-0.763l-1.143,0.614l-0.908,0.286l-1.13,0.392l-0.783-0.414l-0.254-0.77l0.737-1.672l2.299-1.522l1.153-0.563l0.169-0.661l-0.306-1.777l-1.109-0.376l-1.33,0.488
|
||||
l-0.523,1.32l-0.286,0.465l-0.576,0.434l-0.318-0.287l-0.317-0.06l0.582-1.218l1.425-1.376l1.498-0.475l1.228,0.351l0.744,0.474l0.281,0.847l0.172,1.523l-0.088,1.561l0.035,1.138l0.152,0.39l-0.042,0.415l0.035,0.543l0.459,0.029l0.621-0.23l0.227-0.063
|
||||
l0.088-0.104z M155.899,299.642l-0.071-1.78l0.072-0.706l-1.466,0.61l-1.171,1.174l-0.322,0.896l0.401,0.56l0.579,0.436l0.8-0.201l1.178-0.988z"/>
|
||||
<path d="M159.194,300.833l0.62-0.073l0.62-0.304l0.288-0.395l0.019-0.347l0.026-0.494l-0.071-2.963l-0.078-0.846l-1.169-0.187l0.089-0.528l1.095-0.494l1.041-1.052l0.342-0.253l-0.218,0.788l0.305,0.649l-0.294,0.275l0.517-0.154l1.105-0.867l1.129-0.272
|
||||
l0.657-0.221l1.365,0.473l0.611,1.036l0.322,2.273l0.038,1.482l0.018,0.396l0.051,0.763l-0.192,0.917l0.409,0.084l0.993,0.472l0.216,0.037l-0.275,0.064l-0.117,0.308l-1.295-0.197l-1.273,0.212l-1.261-0.243l-0.053-0.15l0.112-0.015l0.64-0.322l0.444,0.102
|
||||
l0.146-0.349l0.125-0.338l-0.042-0.267l-0.104-2.231l0.045-0.509l0.08-0.777l-0.384-1.819l-1.444-0.274l-1.229,0.29l-1.167,0.807l-0.299,0.741l0.359,2.144l-0.062,2.056l-0.089,0.331l0.44-0.016l0.559,0.104l0.396,0.15l0.141,0.235l0.108,0.174l-1.025,0.17
|
||||
l-2.111-0.227l-0.929,0.005l-0.223-0.012l0.139-0.098l-0.205-0.245z"/>
|
||||
<path d="M176.149,294.142l-0.016-0.262l0.203-1.146l-0.178-2.162l-0.211-1.089l-1.061-0.652l-0.399,0.156l0.152-0.222l0.065,0.016l2.288-0.484l0.48-0.247l-0.046,1.506l0.17,3.746l-0.205,4.225l0.266,2.249l-0.007,0.71l0.826,0.388l0.204,0.053l0.042,0.032
|
||||
l0.06,0.008l-0.563,0.296l-1.478,0.098l-0.672,0.256l0.388-0.982l-0.605,0.455l-2.893,0.507l-1.525-0.67l-1.437-1.251l-0.106-1.914l0.126-1.604l0.629-1.374l0.812-0.773l0.974-0.379l1.208,0.196l2.272-0.066l0.239,0.383z M176.089,300.149l0.413-2.656
|
||||
l-0.633-2.104l-0.539-1.017l-1.491-0.163l-1.727,0.861l-0.941,2.411l0.828,2.387l2.102,0.832l1.228-0.398l0.76-0.153z"/>
|
||||
<path d="M179.778,294.146l-0.256-0.28l0.787-0.15l0.69-0.511l0.676-0.677l0.257-0.014l0.34-0.036l-0.386,0.784l-0.022,0.437l0.357,0.521l-0.309,2.812l0.193,2.98l-0.059,0.609l0.832,0.384l0.643,0.006l0.121,0.117l-0.178-0.063l-0.94,0.005l-1.092,0.15
|
||||
l-1.582-0.21l-0.582,0.11l-0.041-0.033l-0.217,0.015l0.261-0.224l1.012-0.101l0.407-0.313l0.222-0.67l-0.057-4.091l-0.171-0.795l-0.263-0.154l-0.645-0.608z M180.622,289.238l-0.002-0.673l0.711,0.025l0.767-0.016l0.238,0.702l-0.5,0.438l-0.505,0.414
|
||||
l-0.774-0.089l0.065-0.802z"/>
|
||||
<path d="M191.35,296.22l-3.873-0.165l-0.742,0.047l-0.85,0.215l-0.239,0.258l0.029,0.096l0.042,0.094l-0.022,0.477l0.449,1.431l0.955,1.436l1.803,0.24l0.884,0.003l0.997-0.405l0.644-0.624l0.197,0.34l-0.268,0.083l-1.072,0.925l-1.318,0.62l-1.062,0.162
|
||||
l-1.355-0.269l-1.59-1.345l-0.577-2.312l0.185-1.1l0.565-1.438l0.798-0.722l0.883-0.873l1.51-0.318l1.436,0.567l1.197,1.078l0.306,1.282l0.086,0.218z M185.936,295.764l0.452-0.021l2.942-0.049l0.505-0.123l0.082-0.371l-0.21-0.654l-0.484-0.703l-0.97-0.212
|
||||
l-1.782,0.936l-0.535,1.198z"/>
|
||||
<path d="M192.412,301.166l0.09,0.001l-0.073-0.25l0.603-0.007l0.802-0.16l0.022-0.216l0.103-0.706l0.092-3.854l-0.289-0.603l-0.647-0.314l-0.597-0.057l0.118-0.296l1.45-0.631l0.623-1.39l0.491,0.063l0.069,2.259l-0.015,0.172l-0.044,0.18l1.006-1.168
|
||||
l0.034-0.409l0.298-0.264l1.093-0.278l0.717,0.272l0.4,0.733l-0.333,0.529l-0.609,0.213l-0.58-0.233l-0.638-0.04l-0.37,0.06l-0.654,0.874l-0.352,0.905l0.073,1.61l0.04,1.932l0.149,0.385l0.126,0.122l1.234,0.283l0.215-0.015l0.601,0.069l-0.029,0.166
|
||||
l0.029,0.128l-1.083,0.072l-0.408-0.197l-0.595,0.168l-1-0.18l-0.527,0.022l-1.635,0.048z"/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="batikLogo.svg#Batik_Tag_Box" />
|
||||
</svg>
|
|
@ -0,0 +1,93 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Illustrates how SVG can be used for high quality graphs. -->
|
||||
<!-- -->
|
||||
<!-- @author vincent.hardy@eng.sun.com -->
|
||||
<!-- @version $Id: barChart.svg,v 1.1 2001/06/10 01:46:29 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="tests/test.css" ?>
|
||||
<svg id="body" width="450" height="500" xml:space="preserve" viewBox="0 0 450 500">
|
||||
<title>Bar Chart</title>
|
||||
|
||||
<g id="barChart" transform="translate(40, 100)" fill-rule="evenodd" clip-rule="evenodd" stroke="none" class="legend"
|
||||
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" style="text-anchor:start">
|
||||
|
||||
<g id="GridAndLegend" style="stroke:none;">
|
||||
<g stroke="black">
|
||||
<path d="M27.272,240.141l316.355,0.147"/>
|
||||
<path d="M27.272,202.845h316.355"/>
|
||||
<path d="M27.272,165.401h316.355"/>
|
||||
<path d="M27.272,127.957h316.355"/>
|
||||
<path d="M27.272,90.514l316.355,0.147"/>
|
||||
<path d="M27.272,53.07l316.355,0.147"/>
|
||||
<path d="M27.272,15.774h316.355"/>
|
||||
<path d="M27.272,240.141l316.355,0.147"/>
|
||||
<path d="M27.272,240.141l316.355,0.147"/>
|
||||
<path d="M27.272,245.448v-5.307"/>
|
||||
<path d="M106.287,245.448l0.147-5.307"/>
|
||||
<path d="M185.45,245.448v-5.307"/>
|
||||
<path d="M264.612,245.448v-5.307"/>
|
||||
<path d="M27.272,240.141V15.774"/>
|
||||
<path d="M27.272,240.141V15.774"/>
|
||||
<path d="M22.112,240.141l5.16,0.147"/>
|
||||
<path d="M22.112,202.845h5.16"/>
|
||||
<path d="M22.112,165.401h5.16"/>
|
||||
<path d="M22.112,127.957h5.16"/>
|
||||
<path d="M22.112,90.514l5.16,0.147"/>
|
||||
<path style="fill:none;" d="M22.112,53.07l5.16,0.147" />
|
||||
<path d="M22.112,15.774h5.16" />
|
||||
</g>
|
||||
|
||||
<text transform="matrix(1 0 0 1 54.0181 256.1836)">Shoe</text>
|
||||
<text transform="matrix(1 0 0 1 142.0815 256.1836)">Car</text>
|
||||
<text transform="matrix(1 0 0 1 211.1733 256.1836)">Travel</text>
|
||||
<text transform="matrix(1 0 0 1 285.7813 256.1836)">Computer</text>
|
||||
<text transform="matrix(1 0 0 1 13.1763 247.1855)"><tspan x="0" y="0">0</tspan></text>
|
||||
<text transform="matrix(1 0 0 1 6.9829 209.4468)"><tspan x="0" y="0">1</tspan><tspan x="6.193" y="0">0</tspan></text>
|
||||
<text transform="matrix(1 0 0 1 6.9829 171.561)"><tspan x="0" y="0">2</tspan><tspan x="6.193" y="0">0</tspan></text>
|
||||
<text transform="matrix(1 0 0 1 6.9829 134.7065)"><tspan x="0" y="0">3</tspan><tspan x="6.193" y="0">0</tspan></text>
|
||||
<text transform="matrix(1 0 0 1 6.9829 96.9688)"><tspan x="0" y="0">4</tspan><tspan x="6.193" y="0">0</tspan></text>
|
||||
<text transform="matrix(1 0 0 1 6.9829 60.1143)"><tspan x="0" y="0">5</tspan><tspan x="6.193" y="0">0</tspan></text>
|
||||
<text transform="matrix(1 0 0 1 6.9829 22.228)"><tspan x="0" y="0">6</tspan><tspan x="6.193" y="0">0</tspan></text>
|
||||
</g>
|
||||
|
||||
<g id="ShoeBar">
|
||||
<path style="fill:#7575C3;" d="M47.025,202.845v37.296h39.508v-37.296H47.025z"/>
|
||||
<path style="fill:#8686E0;" d="M86.533,240.141v-37.296l15.626-15.626v37.297l-15.626,15.625z"/>
|
||||
<path style="fill:#5B5B97;" d="M86.533,202.845H47.025l15.626-15.626h39.507l-15.626,15.626z"/>
|
||||
</g>
|
||||
<g id="CarBar">
|
||||
<path style="fill:#8686E0;" d="M165.549,240.141v-74.74l15.625-15.626v74.74l-15.625,15.625z"/>
|
||||
<path style="fill:#5B5B97;" d="M165.549,165.401h-39.508l15.626-15.626h39.507l-15.625,15.626z"/>
|
||||
<path style="fill:#7575C3;" d="M126.041,165.401v74.74h39.508v-74.74h-39.508z"/>
|
||||
</g>
|
||||
<g id="TravelBar">
|
||||
<path style="fill:#8686E0;" d="M244.711,240.141v-37.296l15.626-15.626v37.297l-15.626,15.625z"/>
|
||||
<path style="fill:#5B5B97;" d="M244.711,202.845h-39.508l15.626-15.626h39.508l-15.626,15.626z"/>
|
||||
<path style="fill:#7575C3;" d="M205.203,202.845v37.296h39.508v-37.296h-39.508z"/>
|
||||
</g>
|
||||
<g id="ComputerBar">
|
||||
<path style="fill:#8686E0;" d="M323.874,240.141V15.774L339.5,0.147v224.368l-15.626,15.625z"/>
|
||||
<path style="fill:#5B5B97;" d="M323.874,15.774h-39.655l15.626-15.626H339.5l-15.626,15.626z"/>
|
||||
<path style="fill:#7575C3;" d="M284.218,15.774v224.367h39.655V15.774h-39.655z"/>
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="batikLogo.svg#Batik_Tag_Box" />
|
||||
|
||||
</svg>
|
|
@ -0,0 +1,545 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- @author vincent.hardy@eng.sun.com -->
|
||||
<!-- @version $Id: batik3D.svg,v 1.1 2001/06/10 01:46:29 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
<svg width="450" height="500" viewBox="0 0 900 1000" xml:space="preserve">
|
||||
<g id="Background" style="fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
|
||||
<radialGradient id="aigrd1" cx="376.6831" cy="541.9688" r="814.0695" fx="376.6831" fy="541.9688" gradientTransform="matrix(0.9978 0 0 0.9192 1.1528 44.8691)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.3427" style="stop-color:#472EBF"/>
|
||||
<stop offset="0.6124" style="stop-color:#262044"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#aigrd1);stroke:none;" d="M900,1000H0V0h900v1000z"/>
|
||||
</g>
|
||||
<g id="SVG_x002D_WWW_x0020_Layer" style="fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
|
||||
<radialGradient id="aigrd2" cx="669" cy="564.8662" r="384.5677" fx="669" fy="564.8662" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.3427" style="stop-color:#472EBF"/>
|
||||
<stop offset="0.6124" style="stop-color:#262044"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path style="opacity:0.65;fill:url(#aigrd2);stroke:none;" d="M749.703,397.511c1.24,0.401,2.216,0.707,2.915,0.915l40.395,12.747v-44.336L674.499,256.921v50.999l52.212,41.323c4.589,3.624,8.786,6.791,12.591,9.505c3.806,2.72,7.38,5.111,10.726,7.173v1.158
|
||||
c-4.639-2.553-10.819-5.13-18.541-7.732c-0.753-0.241-1.29-0.423-1.617-0.55l-55.371-18.614v35.84l55.292,45.42c0.433,0.383,1.001,0.837,1.701,1.37c7.662,6.304,13.839,10.877,18.536,13.721v1.158c-3.346-1.805-6.919-3.55-10.726-5.24
|
||||
c-3.805-1.684-8.001-3.371-12.591-5.066l-52.212-19.1v41.781v9.076v41.924l52.212,41.324c4.589,3.622,8.786,6.791,12.591,9.504c3.806,2.721,7.38,5.111,10.726,7.174v1.158c-4.639-2.553-10.819-5.13-18.541-7.733c-0.753-0.24-1.29-0.423-1.617-0.55l-55.371-18.612
|
||||
v35.839l55.292,45.422c0.433,0.381,1.001,0.837,1.701,1.367c7.662,6.306,13.839,10.88,18.536,13.723v1.154c-3.346-1.803-6.919-3.549-10.726-5.237c-3.805-1.684-8.001-3.372-12.591-5.065l-52.212-19.099v41.775v9.078v41.922l52.212,41.323
|
||||
c4.589,3.622,8.786,6.791,12.591,9.505c3.806,2.718,7.38,5.113,10.726,7.174v1.156c-4.639-2.554-10.819-5.128-18.541-7.732c-0.753-0.24-1.29-0.422-1.617-0.549l-55.371-18.615v35.841l55.292,45.42c0.433,0.384,1.001,0.839,1.701,1.371
|
||||
c7.662,6.304,13.839,10.878,18.536,13.72v1.159c-3.346-1.805-6.919-3.551-10.726-5.238c-3.805-1.685-8.001-3.375-12.591-5.067l-52.212-19.101v50.855l118.513,27.38v-44.338l-40.395-34c-0.698-0.595-1.647-1.4-2.835-2.411c-7.283-6.146-12.863-10.438-16.753-12.887
|
||||
v-1.832c3.89,2.063,9.444,4.207,16.674,6.457c1.24,0.4,2.216,0.704,2.915,0.915l40.395,12.746v-44.336l-105.479-97.827l105.479,24.366V635.33l-40.395-33.998c-0.698-0.595-1.647-1.402-2.835-2.412c-7.283-6.148-12.863-10.439-16.753-12.886v-1.833
|
||||
c3.89,2.06,9.444,4.207,16.674,6.456c1.24,0.4,2.216,0.706,2.915,0.915l40.395,12.747v-44.335L687.53,462.153l105.482,24.367v-44.336l-40.395-33.999c-0.698-0.594-1.647-1.403-2.835-2.412c-7.283-6.148-12.863-10.439-16.753-12.886v-1.833
|
||||
c3.89,2.061,9.444,4.207,16.674,6.457z"/>
|
||||
<g>
|
||||
<radialGradient id="aigrd3" cx="357" cy="543.0215" r="484.1487" fx="357" fy="543.0215" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.3427" style="stop-color:#472EBF"/>
|
||||
<stop offset="0.6124" style="stop-color:#262044"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path style="opacity:0.65;fill:url(#aigrd3);stroke:none;" d="M331.134,618.467c-16.178-9.131-37.029-6.313-62.569,8.465c-15.656,9.061-28.994,21.36-40.032,36.904c-11.03,15.537-18.335,32.283-21.906,50.239c-0.415,2.237-1.046,5.439-1.894,9.601
|
||||
c-4.943,25.854-10.678,40.66-17.207,44.438c-3.463,2.003-6.178,2.002-8.126-0.026c-1.947-2.018-2.921-5.919-2.921-11.704c0-7.565,1.56-16.268,4.662-26.108c3.104-9.829,7.603-20.441,13.492-31.837l-60.586,9.803c-7.07,17.15-12.346,33.156-15.827,48.015
|
||||
c-3.48,14.867-5.23,28.931-5.23,42.199c0,28.851,7.801,47.663,23.394,56.438c15.602,8.77,35.831,5.959,60.694-8.429c16.017-9.268,29.399-21.594,40.15-36.997c10.749-15.404,18.226-32.972,22.438-52.708c0.631-3.312,1.533-7.929,2.687-13.856
|
||||
c3.373-18.247,8.262-29.229,14.683-32.943c3.679-2.131,6.601-2.184,8.757-0.169c2.164,2.019,3.237,5.871,3.237,11.557c0,8.118-1.921,17.941-5.763,29.483c-3.841,11.552-9.92,25.68-18.235,42.385l64.581-10.714c8.604-20.145,15.052-39.052,19.345-56.702
|
||||
s6.448-34.073,6.448-49.24c0-29.602-8.09-48.961-24.269-58.093z"/>
|
||||
<radialGradient id="aigrd4" cx="357" cy="543.022" r="484.1474" fx="357" fy="543.022" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.3427" style="stop-color:#472EBF"/>
|
||||
<stop offset="0.6124" style="stop-color:#262044"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path style="opacity:0.65;fill:url(#aigrd4);stroke:none;" d="M232.671,530.172c-8.405,6.6-18.713,15.229-30.906,25.865l-83.582,72.848v90.26L349.054,497.04v-77.424l-230.871,45.583v88.322l85.476-23.545c10.101-2.789,19.453-5.697,28.075-8.743
|
||||
c8.622-3.036,16.819-6.279,24.593-9.729v1.582c-7.36,4.783-15.241,10.482-23.656,17.086z"/>
|
||||
<path style="opacity:0.65;fill:url(#aigrd3);stroke:none;" d="M147.546,410.56c11.155,4.933,24.07,6.128,38.751,3.58c14.682-2.549,30.645-8.812,47.897-18.793c17.153-9.926,33.035-22.062,47.663-36.428c14.628-14.357,27.614-30.566,38.978-48.63
|
||||
c11.362-18.163,19.967-36.437,25.811-54.831c5.835-18.389,8.757-36.332,8.757-53.82c0-23.7-5.239-41.845-15.701-54.438c-10.462-12.592-25.586-19.071-45.372-19.427c-8.415,0.024-18.091,1.945-29.039,5.75c-10.94,3.8-23.042,9.537-36.3,17.208
|
||||
c-1.786,1.034-3.841,2.277-6.159,3.718c-2.309,1.444-5.835,3.638-10.569,6.586v128.418l54.254-31.394v-36.443c5.988-2.516,10.66-2.255,14.016,0.794c3.354,3.047,5.031,8.566,5.031,16.538c0,13.45-4.5,26.448-13.5,39.004
|
||||
c-9.001,12.565-21.672,23.566-37.995,33.012c-15.8,9.142-28.381,12.779-37.76,10.904c-9.37-1.881-14.06-8.967-14.06-21.259c0-7.032,1.578-14.199,4.726-21.48s7.917-14.723,14.32-22.314l-27.388-58.548c-19.931,23.229-35.073,47.058-45.408,71.468
|
||||
c-10.335,24.418-15.512,48.482-15.512,72.182c0,17.488,2.949,32.061,8.838,43.711c5.898,11.654,14.465,19.966,25.721,24.933z"/>
|
||||
</g>
|
||||
<radialGradient id="aigrd6" cx="379" cy="607.0215" r="334.7716" fx="379" fy="607.0215" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.3427" style="stop-color:#472EBF"/>
|
||||
<stop offset="0.6124" style="stop-color:#262044"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path style="opacity:0.65;fill:url(#aigrd6);stroke:none;" d="M418.683,154.229l52.211,41.323c4.59,3.624,8.786,6.791,12.59,9.505c3.807,2.72,7.381,5.111,10.726,7.173v1.157c-4.638-2.553-10.819-5.129-18.54-7.732c-0.753-0.24-1.29-0.424-1.617-0.55
|
||||
l-55.371-18.614v35.84l55.292,45.42c0.432,0.383,1,0.838,1.701,1.37c7.662,6.304,13.84,10.877,18.535,13.721v1.158c-3.345-1.805-6.919-3.55-10.726-5.241c-3.804-1.683-8-3.371-12.59-5.065l-52.211-19.1v41.781v9.075v41.924l52.211,41.324
|
||||
c4.59,3.622,8.786,6.791,12.59,9.504c3.807,2.72,7.381,5.11,10.726,7.174v1.157c-4.638-2.553-10.819-5.13-18.54-7.733c-0.753-0.24-1.29-0.423-1.617-0.549l-55.371-18.613v35.841l55.292,45.419c0.432,0.382,1,0.837,1.701,1.369
|
||||
c7.662,6.305,13.84,10.879,18.535,13.722v1.155c-3.345-1.804-6.919-3.549-10.726-5.238c-3.804-1.685-8-3.373-12.59-5.065l-52.211-19.1v41.777v9.079v41.921l52.211,41.324c4.59,3.622,8.786,6.79,12.59,9.504c3.807,2.719,7.381,5.113,10.726,7.173v1.156
|
||||
c-4.638-2.551-10.819-5.126-18.54-7.73c-0.753-0.241-1.29-0.425-1.617-0.55l-55.371-18.614v35.84l55.292,45.421c0.432,0.383,1,0.838,1.701,1.369c7.662,6.306,13.84,10.879,18.535,13.722v1.157c-3.345-1.804-6.919-3.55-10.726-5.236
|
||||
c-3.804-1.685-8-3.375-12.59-5.068l-52.211-19.102v50.857l118.513,27.378v-44.337l-40.394-34c-0.699-0.595-1.647-1.401-2.836-2.41c-7.283-6.146-12.863-10.438-16.752-12.887v-1.832c3.889,2.061,9.443,4.206,16.674,6.457c1.24,0.399,2.215,0.704,2.915,0.914
|
||||
l40.394,12.746v-44.336L431.718,501.61l105.477,24.366V481.64l-40.394-33.999c-0.699-0.594-1.647-1.401-2.836-2.411c-7.283-6.148-12.863-10.44-16.752-12.886v-1.834c3.889,2.061,9.443,4.208,16.674,6.458c1.24,0.399,2.215,0.706,2.915,0.915l40.394,12.747v-44.336
|
||||
l-105.482-97.831l105.482,24.367v-44.336l-40.394-33.999c-0.699-0.594-1.647-1.403-2.836-2.412c-7.283-6.148-12.863-10.44-16.752-12.886v-1.833c3.889,2.061,9.443,4.207,16.674,6.457c1.24,0.401,2.215,0.707,2.915,0.915l40.394,12.747v-44.335L418.683,103.231
|
||||
v50.999z"/>
|
||||
<g>
|
||||
<radialGradient id="aigrd7" cx="599.7881" cy="157.627" r="723.6962" fx="599.7881" fy="157.627" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.3427" style="stop-color:#472EBF"/>
|
||||
<stop offset="0.6124" style="stop-color:#262044"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#aigrd7);stroke:none;" d="M391.036,45.438V19.79l6.87,3.974v7.097c0,0.971-0.009,1.72-0.027,2.25c-0.019,0.53-0.046,1.031-0.083,1.505c0.599-0.633,1.265-0.977,1.995-1.034c0.73-0.057,1.552,0.179,2.466,0.708
|
||||
c1.525,0.882,2.732,2.132,3.624,3.749c0.891,1.617,1.336,3.379,1.336,5.284v11.477l-6.98-4.04v-8.633c0-0.86-0.071-1.487-0.216-1.885c-0.143-0.396-0.394-0.699-0.755-0.909c-0.406-0.235-0.716-0.227-0.928,0.025c-0.214,0.252-0.319,0.746-0.319,1.485v8.634
|
||||
l-6.981-4.039z"/>
|
||||
<path style="fill:url(#aigrd7);stroke:none;" d="M411.062,57.025V46.229l-1.982-1.146v-6.315l1.982,1.147v-5.646l6.952,4.022v5.645l1.98,1.147v6.315l-1.98-1.147v10.795l-6.952-4.021z"/>
|
||||
<radialGradient id="aigrd9" cx="599.7881" cy="157.627" r="723.6963" fx="599.7881" fy="157.627" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.3427" style="stop-color:#472EBF"/>
|
||||
<stop offset="0.6124" style="stop-color:#262044"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M422.931,63.893V53.097l-1.981-1.147v-6.315l1.981,1.146v-5.645l6.951,4.022v5.645l1.982,1.146v6.316l-1.982-1.147v10.795l-6.951-4.022z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M433.852,77.586V53.102l6.64,3.842v2.271c0.61-0.592,1.282-0.904,2.018-0.941c0.735-0.036,1.546,0.203,2.436,0.718c1.728,1,3.122,2.646,4.18,4.938c1.059,2.293,1.588,4.838,1.588,7.635
|
||||
c0,2.655-0.543,4.505-1.63,5.551c-1.086,1.045-2.466,1.083-4.139,0.116c-0.908-0.526-1.729-1.245-2.47-2.164c-0.74-0.918-1.392-2.029-1.956-3.335c0.056,0.44,0.097,0.912,0.125,1.418c0.027,0.505,0.042,1.055,0.042,1.649v6.74l-6.834-3.954z M442.274,69.053
|
||||
c0.525,0.303,0.954,0.323,1.286,0.058c0.331-0.265,0.498-0.773,0.498-1.523s-0.167-1.451-0.498-2.106c-0.332-0.656-0.761-1.135-1.286-1.439c-0.534-0.309-0.964-0.326-1.292-0.053c-0.327,0.274-0.491,0.786-0.491,1.535c0,0.75,0.164,1.448,0.491,2.095
|
||||
c0.328,0.646,0.758,1.124,1.292,1.434z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M452.993,68.139c0-1.082,0.38-1.788,1.137-2.117s1.686-0.177,2.784,0.459c1.1,0.637,2.032,1.561,2.797,2.771c0.767,1.211,1.151,2.358,1.151,3.44c0,1.104-0.382,1.824-1.143,2.155
|
||||
c-0.761,0.334-1.697,0.178-2.805-0.463c-1.099-0.636-2.027-1.56-2.784-2.771s-1.137-2.37-1.137-3.474z M452.993,77.849c0-1.092,0.38-1.806,1.143-2.142c0.762-0.336,1.688-0.189,2.778,0.442c1.1,0.636,2.032,1.563,2.797,2.784c0.767,1.22,1.151,2.377,1.151,3.468
|
||||
c0,1.091-0.382,1.806-1.143,2.142c-0.761,0.337-1.697,0.184-2.805-0.457c-1.099-0.636-2.027-1.559-2.784-2.769c-0.757-1.21-1.137-2.367-1.137-3.469z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M462.251,89.786l9.941-22.154l3.34,1.933l-9.925,22.163l-3.356-1.941z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M475.534,97.471l9.941-22.154l3.341,1.933l-9.925,22.163l-3.357-1.942z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M487.901,101.487l5.772-5.513l-5.329-11.341l7.797,4.512l0.942,3.044c0.12,0.378,0.22,0.724,0.298,1.034c0.08,0.311,0.142,0.6,0.188,0.87c0.056-0.31,0.185-0.666,0.388-1.067c0.055-0.112,0.096-0.197,0.124-0.259
|
||||
l0.929-1.96l7.879,4.558l-5.119,5.296l5.856,12.242l-8.27-4.787l-1.138-3.172c-0.11-0.317-0.208-0.642-0.291-0.971c-0.084-0.329-0.157-0.657-0.222-0.981c-0.065,0.327-0.134,0.599-0.208,0.815c-0.073,0.217-0.166,0.408-0.276,0.576l-1.194,1.807l-8.129-4.703z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M508.131,113.191v-17.11l6.634,3.839v2.402c0.546-0.695,1.146-1.088,1.803-1.18c0.656-0.091,1.409,0.106,2.259,0.599c1.008,0.583,1.846,1.36,2.517,2.331c0.669,0.971,1.212,2.196,1.628,3.679
|
||||
c0.544-0.873,1.212-1.385,2.001-1.538c0.791-0.152,1.673,0.053,2.652,0.62c1.403,0.811,2.523,2.013,3.359,3.604c0.834,1.59,1.252,3.321,1.252,5.193v11.51l-6.715-3.885v-8.598c0-0.871-0.067-1.5-0.202-1.887c-0.134-0.386-0.362-0.672-0.685-0.859
|
||||
c-0.37-0.214-0.646-0.191-0.827,0.068c-0.179,0.26-0.269,0.771-0.269,1.531v8.599l-6.626-3.834v-8.598c0-0.849-0.066-1.472-0.2-1.869c-0.135-0.398-0.369-0.692-0.702-0.885c-0.379-0.22-0.66-0.199-0.839,0.06c-0.18,0.26-0.271,0.769-0.271,1.529v8.599
|
||||
l-6.773-3.919z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M535.343,128.939v-25.648l6.952,4.021v25.649l-6.952-4.022z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M544.851,131c0-1.091,0.38-1.805,1.144-2.141c0.765-0.334,1.696-0.185,2.797,0.453c1.101,0.637,2.036,1.566,2.804,2.788c0.767,1.222,1.152,2.379,1.152,3.47s-0.382,1.805-1.146,2.139
|
||||
c-0.764,0.336-1.701,0.183-2.811-0.459c-1.111-0.643-2.045-1.572-2.804-2.789c-0.759-1.216-1.138-2.369-1.138-3.461z"/>
|
||||
<radialGradient id="aigrd18" cx="599.7881" cy="157.627" r="723.6964" fx="599.7881" fy="157.627" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="0.3427" style="stop-color:#472EBF"/>
|
||||
<stop offset="0.6124" style="stop-color:#262044"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path style="fill:url(#aigrd18);stroke:none;" d="M565.098,146.155v-2.582c-0.694,0.699-1.421,1.09-2.181,1.172c-0.757,0.084-1.597-0.141-2.513-0.67c-1.667-0.965-3.049-2.606-4.145-4.927c-1.098-2.321-1.645-4.808-1.645-7.462c0-2.775,0.533-4.699,1.603-5.772
|
||||
c1.07-1.072,2.465-1.111,4.187-0.114c0.89,0.515,1.697,1.21,2.424,2.087c0.727,0.876,1.399,1.97,2.021,3.285V128.9l6.655,3.852v17.11l-6.407-3.708z M561.269,135.339c0,0.726,0.165,1.408,0.496,2.045c0.331,0.637,0.767,1.112,1.308,1.425
|
||||
c0.551,0.319,0.987,0.351,1.314,0.1c0.326-0.251,0.489-0.746,0.489-1.483c0-0.75-0.166-1.446-0.497-2.088c-0.331-0.642-0.767-1.12-1.306-1.433c-0.541-0.313-0.977-0.336-1.308-0.071c-0.331,0.266-0.496,0.768-0.496,1.505z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M574.435,158.931v-24.484l6.639,3.842v2.271c0.609-0.592,1.283-0.905,2.019-0.941c0.733-0.036,1.545,0.203,2.433,0.716c1.729,1.001,3.123,2.647,4.181,4.939c1.059,2.293,1.588,4.838,1.588,7.635
|
||||
c0,2.654-0.544,4.503-1.629,5.55c-1.087,1.045-2.467,1.084-4.141,0.115c-0.907-0.525-1.729-1.245-2.468-2.163c-0.74-0.917-1.393-2.029-1.957-3.334c0.056,0.439,0.098,0.912,0.126,1.417c0.028,0.506,0.042,1.055,0.042,1.649v6.741l-6.833-3.955z M582.856,150.399
|
||||
c0.526,0.304,0.954,0.323,1.285,0.057c0.332-0.265,0.498-0.773,0.498-1.523s-0.166-1.451-0.498-2.106c-0.331-0.655-0.759-1.135-1.285-1.439c-0.535-0.31-0.965-0.327-1.293-0.053c-0.327,0.273-0.49,0.785-0.49,1.535c0,0.749,0.163,1.448,0.49,2.095
|
||||
c0.328,0.646,0.758,1.124,1.293,1.434z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M603.616,168.443v-2.582c-0.695,0.698-1.421,1.089-2.181,1.172c-0.758,0.083-1.597-0.141-2.512-0.67c-1.668-0.966-3.049-2.606-4.145-4.927c-1.099-2.321-1.646-4.807-1.646-7.462c0-2.776,0.534-4.699,1.604-5.772
|
||||
c1.07-1.072,2.464-1.111,4.187-0.114c0.889,0.514,1.697,1.21,2.423,2.086c0.727,0.876,1.4,1.971,2.021,3.286v-2.271l6.655,3.851v17.111l-6.406-3.707z M599.788,157.627c0,0.726,0.165,1.408,0.495,2.045c0.331,0.637,0.767,1.112,1.307,1.425
|
||||
c0.551,0.319,0.988,0.352,1.315,0.1c0.325-0.25,0.489-0.746,0.489-1.483c0-0.749-0.166-1.445-0.497-2.088c-0.331-0.642-0.767-1.12-1.307-1.433c-0.54-0.313-0.976-0.336-1.307-0.072c-0.331,0.267-0.495,0.768-0.495,1.505z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M623.808,170.355c-0.371-0.604-0.75-1.114-1.14-1.533c-0.389-0.419-0.797-0.752-1.224-1c-0.704-0.407-1.265-0.509-1.682-0.306c-0.418,0.204-0.627,0.674-0.627,1.411c0,0.704,0.205,1.397,0.613,2.079
|
||||
c0.409,0.681,0.937,1.209,1.586,1.585c0.408,0.236,0.817,0.367,1.231,0.391c0.413,0.024,0.827-0.052,1.244-0.229v6.787c-0.721,0.001-1.418-0.094-2.088-0.283c-0.671-0.19-1.33-0.473-1.978-0.848c-1.065-0.616-2.05-1.398-2.957-2.347
|
||||
c-0.907-0.949-1.711-2.039-2.414-3.272c-0.741-1.308-1.305-2.636-1.694-3.979c-0.389-1.343-0.583-2.642-0.583-3.898c0-0.87,0.095-1.66,0.285-2.372c0.188-0.71,0.474-1.325,0.854-1.844c0.72-0.981,1.64-1.521,2.755-1.62s2.366,0.254,3.754,1.057
|
||||
c0.61,0.353,1.251,0.8,1.921,1.344c0.671,0.542,1.386,1.193,2.144,1.952v6.925z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M626.125,181.467v-25.648l6.87,3.976v7.097c0,0.97-0.01,1.72-0.028,2.25c-0.019,0.529-0.046,1.031-0.083,1.505c0.601-0.632,1.266-0.977,1.994-1.035c0.731-0.056,1.553,0.18,2.466,0.708
|
||||
c1.525,0.882,2.733,2.131,3.624,3.748c0.892,1.617,1.337,3.379,1.337,5.285v11.477l-6.98-4.039v-8.634c0-0.86-0.072-1.488-0.214-1.885c-0.143-0.397-0.396-0.701-0.757-0.909c-0.406-0.235-0.715-0.226-0.927,0.025c-0.213,0.251-0.32,0.747-0.32,1.486v8.633
|
||||
l-6.98-4.04z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M661.357,194.623l-9.913-5.72v0.267c0,0.881,0.133,1.614,0.397,2.195c0.267,0.583,0.668,1.031,1.208,1.343c0.325,0.188,0.609,0.239,0.851,0.149c0.243-0.088,0.433-0.311,0.573-0.666l6.466,4.26
|
||||
c-0.564,1.529-1.536,2.396-2.917,2.602c-1.38,0.205-3.069-0.27-5.068-1.426c-1.111-0.644-2.149-1.445-3.118-2.408c-0.968-0.962-1.836-2.051-2.604-3.266c-0.862-1.391-1.524-2.803-1.985-4.238c-0.465-1.436-0.695-2.798-0.695-4.087c0-1.3,0.234-2.402,0.7-3.305
|
||||
c0.468-0.902,1.126-1.542,1.978-1.919c0.767-0.338,1.632-0.427,2.594-0.267c0.963,0.16,2.002,0.563,3.123,1.211c1.534,0.888,2.913,2.051,4.134,3.487c1.221,1.438,2.238,3.088,3.053,4.954c0.417,0.955,0.729,1.923,0.936,2.905c0.209,0.983,0.313,1.983,0.313,3.004
|
||||
c0,0.264-0.001,0.461-0.007,0.59c-0.004,0.128-0.01,0.24-0.019,0.334z M651.501,185.214l3.167,1.85c-0.027-0.685-0.17-1.261-0.425-1.726c-0.255-0.465-0.635-0.844-1.136-1.134c-0.448-0.26-0.809-0.3-1.084-0.125c-0.273,0.176-0.447,0.555-0.522,1.136z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M662.929,199.324c0-1.091,0.38-1.805,1.144-2.14c0.764-0.336,1.695-0.186,2.797,0.452c1.102,0.637,2.036,1.566,2.803,2.788c0.769,1.222,1.154,2.379,1.154,3.47c0,1.092-0.383,1.805-1.147,2.141
|
||||
c-0.763,0.335-1.7,0.182-2.81-0.461c-1.111-0.643-2.044-1.572-2.804-2.788c-0.759-1.216-1.137-2.37-1.137-3.461z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M689.375,209.565c0,1.288-0.233,2.383-0.695,3.282c-0.462,0.9-1.124,1.548-1.984,1.942c-0.75,0.338-1.607,0.428-2.574,0.271c-0.966-0.157-2.008-0.56-3.128-1.207c-1.119-0.647-2.159-1.448-3.121-2.401
|
||||
c-0.961-0.953-1.827-2.043-2.594-3.269c-0.851-1.352-1.51-2.754-1.977-4.209c-0.467-1.454-0.701-2.825-0.701-4.114c0-1.3,0.233-2.402,0.701-3.305c0.467-0.902,1.125-1.543,1.977-1.92c0.768-0.337,1.633-0.426,2.594-0.267c0.961,0.16,2.002,0.563,3.121,1.21
|
||||
c1.12,0.647,2.162,1.452,3.128,2.413c0.967,0.961,1.833,2.05,2.602,3.265c0.841,1.347,1.493,2.743,1.956,4.188c0.462,1.446,0.695,2.82,0.695,4.121z M680.995,207.043c0.501,0.291,0.908,0.311,1.222,0.063c0.315-0.247,0.474-0.717,0.474-1.41
|
||||
c0-0.705-0.156-1.358-0.467-1.962c-0.31-0.603-0.718-1.052-1.229-1.348c-0.518-0.299-0.932-0.327-1.242-0.083s-0.464,0.719-0.464,1.423c0,0.705,0.154,1.359,0.464,1.962c0.31,0.603,0.724,1.054,1.242,1.354z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M691.708,219.417v-17.11l6.759,3.91v2.402c0.6-0.63,1.269-0.977,2.007-1.038c0.739-0.061,1.555,0.167,2.451,0.687c0.138,0.079,0.242,0.142,0.311,0.187c0.07,0.046,0.132,0.089,0.187,0.132v8.298
|
||||
c-0.387-0.478-0.743-0.872-1.064-1.179c-0.323-0.309-0.619-0.54-0.887-0.694c-0.884-0.513-1.571-0.623-2.055-0.33c-0.485,0.293-0.727,0.958-0.727,1.994v6.781l-6.981-4.04z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M715.233,231.489v-1.49c-0.649,0.475-1.333,0.708-2.056,0.699c-0.722-0.01-1.518-0.266-2.388-0.77c-1.677-0.969-3.061-2.523-4.152-4.661c-1.094-2.138-1.639-4.387-1.639-6.748c0-2.736,0.528-4.623,1.589-5.658
|
||||
c1.06-1.037,2.46-1.051,4.201-0.043c0.898,0.52,1.71,1.212,2.437,2.075c0.726,0.865,1.395,1.941,2.007,3.229v-2.203l6.655,3.851v14.643c0,1.506-0.057,2.597-0.167,3.275c-0.111,0.678-0.291,1.251-0.542,1.723c-0.601,1.125-1.648,1.632-3.141,1.521
|
||||
c-1.493-0.111-3.399-0.838-5.719-2.181c-1.295-0.749-2.5-1.581-3.614-2.495c-1.115-0.917-2.133-1.905-3.057-2.97l1.497-4.619c0.797,1.042,1.578,1.926,2.341,2.655c0.765,0.728,1.521,1.308,2.271,1.742c1.13,0.653,1.991,0.846,2.585,0.58
|
||||
c0.592-0.271,0.889-0.987,0.889-2.155z M711.891,222.15c0,0.663,0.156,1.282,0.474,1.856c0.313,0.574,0.737,1.016,1.266,1.321c0.538,0.311,0.968,0.364,1.289,0.157c0.32-0.207,0.479-0.641,0.479-1.305c0-0.652-0.163-1.276-0.487-1.873
|
||||
c-0.325-0.596-0.753-1.049-1.281-1.354c-0.519-0.3-0.939-0.342-1.26-0.124c-0.321,0.217-0.479,0.658-0.479,1.321z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M723.31,240.842l9.942-22.154l3.34,1.932l-9.926,22.165l-3.356-1.942z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M738.043,220.578l6.833,3.954v7.978c0,0.695-0.011,1.279-0.034,1.75c-0.024,0.472-0.06,0.865-0.104,1.18c0.571-0.65,1.222-1.01,1.951-1.079c0.729-0.069,1.541,0.155,2.435,0.673
|
||||
c1.677,0.97,3.062,2.608,4.148,4.912c1.088,2.304,1.632,4.783,1.632,7.438c0,2.786-0.53,4.714-1.589,5.788c-1.063,1.07-2.459,1.104-4.192,0.101c-0.94-0.543-1.795-1.3-2.566-2.268c-0.77-0.969-1.455-2.155-2.055-3.558v2.518l-6.458-3.738v-25.648z
|
||||
M748.248,243.632c0-0.747-0.162-1.44-0.49-2.079c-0.326-0.64-0.757-1.115-1.292-1.424c-0.534-0.31-0.966-0.333-1.294-0.072c-0.326,0.262-0.49,0.765-0.49,1.512c0,0.748,0.164,1.453,0.49,2.114c0.328,0.662,0.76,1.146,1.294,1.457
|
||||
c0.525,0.303,0.953,0.315,1.285,0.035c0.332-0.281,0.497-0.794,0.497-1.542z"/>
|
||||
<path style="fill:url(#aigrd18);stroke:none;" d="M767.283,263.147v-2.582c-0.694,0.699-1.42,1.088-2.18,1.171c-0.758,0.084-1.598-0.14-2.513-0.669c-1.667-0.966-3.049-2.606-4.145-4.927c-1.097-2.321-1.646-4.807-1.646-7.462c0-2.775,0.536-4.7,1.605-5.772
|
||||
c1.069-1.072,2.464-1.111,4.186-0.114c0.889,0.515,1.697,1.21,2.424,2.085c0.728,0.876,1.4,1.971,2.021,3.286v-2.271l6.655,3.851v17.111l-6.407-3.707z M763.455,252.331c0,0.727,0.166,1.409,0.496,2.045c0.331,0.638,0.767,1.113,1.306,1.425
|
||||
c0.552,0.319,0.989,0.353,1.315,0.101s0.49-0.747,0.49-1.484c0-0.748-0.167-1.444-0.498-2.086c-0.331-0.643-0.767-1.121-1.308-1.434c-0.539-0.313-0.975-0.336-1.306-0.071c-0.331,0.265-0.496,0.767-0.496,1.505z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M777.566,269.097v-10.795l-1.981-1.147v-6.314l1.981,1.146v-5.645l6.952,4.022v5.645l1.982,1.147v6.315l-1.982-1.147v10.795l-6.952-4.022z"/>
|
||||
<path style="fill:url(#aigrd9);stroke:none;" d="M795.884,257.234c0,1.227-0.338,2.006-1.014,2.339c-0.676,0.333-1.589,0.167-2.737-0.498c-1.158-0.671-2.079-1.568-2.765-2.695c-0.685-1.125-1.026-2.295-1.026-3.51s0.337-1.978,1.015-2.288
|
||||
c0.674-0.311,1.6-0.126,2.776,0.555c1.167,0.675,2.083,1.556,2.75,2.644c0.667,1.087,1,2.239,1,3.453z M788.637,275.502v-17.111l6.951,4.023v17.11l-6.951-4.022z"/>
|
||||
<path style="fill:url(#aigrd18);stroke:none;" d="M798.736,281.346v-25.648l6.893,3.988v15.074l2.928-4.842l8.164,4.725l-5.095,5.276l5.361,11.988l-8.239-4.767l-3.12-8.209v6.404l-6.893-3.988z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Flying_x0020_Text" style="fill-rule:nonzero;clip-rule:nonzero;fill:#6C54DE;stroke:#000000;stroke-miterlimit:4;">
|
||||
<path style="fill:none;stroke:#FFFFFF;" d="M819.707,951.325l-430-248.26L389,54.891l430,248.261l0.707,648.173z"/>
|
||||
<path style="fill:none;stroke:#FFFFFF;stroke-width:1.1556;" d="M369.666,53.265v713.131l-265.503,153.63V206.893L369.666,53.265z"/>
|
||||
<g id="_x0033_rdBatik" style="fill:#000000;stroke:none;">
|
||||
<path d="M278.538,798.678l-39.375-21.227l15.759-9.764c3.365-2.085,6.936-3.201,10.709-3.352c3.775-0.149,7.346,0.685,10.712,2.499c2.149,1.158,3.489,2.397,4.022,3.718c0.531,1.32,0.197,2.602-1.006,3.845c2.79-1.084,5.504-1.55,8.142-1.396
|
||||
c2.639,0.156,5.26,0.934,7.861,2.335c3.681,1.986,5.422,4.126,5.225,6.422c-0.198,2.294-2.31,4.689-6.335,7.184l-15.715,9.735z M259.608,775.643l5.502,2.966l1.564-0.969c0.966-0.599,1.465-1.182,1.497-1.751s-0.399-1.095-1.295-1.576
|
||||
c-0.895-0.483-1.828-0.691-2.798-0.63c-0.971,0.063-1.94,0.393-2.906,0.99l-1.563,0.97z M273.536,783.15l6.362,3.431l1.993-1.236c1.184-0.733,1.819-1.445,1.902-2.139c0.083-0.692-0.38-1.313-1.396-1.86c-1.033-0.558-2.141-0.784-3.322-0.683
|
||||
c-1.18,0.102-2.363,0.52-3.546,1.252l-1.993,1.235z"/>
|
||||
<path d="M326.195,769.152l-4.207-2.269c0.665,1.664,0.806,3.107,0.424,4.329c-0.382,1.222-1.316,2.293-2.802,3.214c-2.706,1.677-6.316,2.329-10.83,1.958c-4.516-0.372-8.928-1.72-13.237-4.043c-4.505-2.429-7.263-4.921-8.271-7.475
|
||||
c-1.009-2.556-0.117-4.698,2.678-6.43c1.443-0.895,3.124-1.506,5.043-1.839c1.92-0.331,4.159-0.392,6.717-0.178l-3.688-1.988l10.787-6.684l27.769,14.971l-10.384,6.433z M305.994,765.478c1.172,0.632,2.386,0.975,3.644,1.028c1.257,0.056,2.326-0.191,3.205-0.737
|
||||
c0.895-0.554,1.254-1.187,1.074-1.898c-0.179-0.711-0.862-1.388-2.053-2.029c-1.206-0.65-2.445-1.005-3.71-1.064c-1.267-0.06-2.341,0.185-3.219,0.73c-0.88,0.544-1.219,1.182-1.022,1.913c0.197,0.73,0.891,1.417,2.082,2.058z"/>
|
||||
<path d="M342.84,758.84l-17.539-9.455l-3.236,2.006l-10.23-5.516l3.236-2.006l-9.199-4.96l11.29-6.993l9.198,4.959l3.237-2.005l10.23,5.516l-3.235,2.005l17.538,9.455l-11.29,6.994z"/>
|
||||
<path d="M336.07,720.82c1.993,1.075,3.029,2.269,3.109,3.582c0.08,1.311-0.812,2.545-2.673,3.695c-1.876,1.164-3.964,1.771-6.258,1.819c-2.295,0.049-4.428-0.458-6.403-1.521c-1.974-1.064-2.984-2.243-3.028-3.537c-0.043-1.292,0.887-2.53,2.793-3.712
|
||||
c1.892-1.171,3.947-1.784,6.167-1.839c2.22-0.056,4.317,0.449,6.292,1.513z M360.781,747.724l-27.769-14.971l11.29-6.994l27.769,14.971l-11.29,6.994z"/>
|
||||
<path d="M377.172,737.568l-41.61-22.433l11.146-6.904l24.449,13.181l-5.861-8.66l13.231-8.198l5.089,12.313l23.11,2.392l-13.352,8.271l-15.45-2.468l10.392,5.603l-11.145,6.905z"/>
|
||||
</g>
|
||||
<g id="SVGCode" style="stroke:none;">
|
||||
<path d="M194.431,886.701l10.864-1.622c0.548-0.086,0.961-0.116,1.239-0.092c0.277,0.025,0.546,0.109,0.805,0.253c0.329,0.179,0.511,0.398,0.548,0.654c0.038,0.254-0.078,0.464-0.346,0.628c-0.176,0.107-0.557,0.204-1.144,0.292l-16.097,2.402l3.312-9.426
|
||||
c0.129-0.338,0.278-0.559,0.449-0.662c0.274-0.167,0.632-0.248,1.071-0.241c0.439,0.006,0.824,0.1,1.151,0.28c0.261,0.142,0.419,0.293,0.476,0.453c0.058,0.16,0.026,0.397-0.095,0.72l-2.234,6.36z"/>
|
||||
<path d="M209.826,876.195c-0.564,0.066-1.085,0.176-1.563,0.326c-0.478,0.154-0.912,0.348-1.302,0.586c-0.776,0.472-1.242,0.931-1.396,1.374c-0.068,0.195-0.027,0.334,0.128,0.419c0.177,0.1,0.488,0.112,0.933,0.038c0.332-0.059,0.918-0.275,1.756-0.653
|
||||
c1.546-0.691,2.689-1.135,3.431-1.335c0.974-0.263,1.932-0.354,2.869-0.27c0.94,0.084,1.723,0.297,2.349,0.642c0.852,0.465,1.247,1.052,1.187,1.751c-0.081,1.007-0.847,1.953-2.297,2.837c-0.582,0.354-1.178,0.649-1.789,0.884
|
||||
c-0.612,0.236-1.236,0.416-1.875,0.542c0.005,0.117-0.021,0.225-0.076,0.322c-0.055,0.1-0.143,0.185-0.261,0.256c-0.313,0.191-0.688,0.279-1.119,0.257c-0.432-0.021-0.935-0.188-1.51-0.504l-0.802-0.442c-0.574-0.315-0.891-0.596-0.949-0.844
|
||||
c-0.058-0.248,0.064-0.464,0.366-0.648c0.243-0.147,0.524-0.228,0.846-0.24c0.322-0.015,0.721,0.058,1.196,0.214c0.615-0.018,1.216-0.115,1.804-0.29c0.587-0.175,1.162-0.433,1.721-0.774c0.919-0.56,1.463-1.089,1.631-1.582c0.071-0.242,0.014-0.414-0.172-0.515
|
||||
c-0.309-0.17-0.737-0.205-1.284-0.106c-0.546,0.102-1.43,0.44-2.652,1.023c-1.81,0.87-3.272,1.312-4.387,1.327c-1.108,0.021-2.076-0.198-2.904-0.651c-0.852-0.469-1.256-1.043-1.213-1.722c0.048-0.926,0.738-1.793,2.07-2.604c0.463-0.281,0.96-0.526,1.49-0.729
|
||||
c0.529-0.204,1.097-0.368,1.703-0.487c0.014-0.138,0.047-0.254,0.1-0.349c0.054-0.095,0.125-0.172,0.217-0.227c0.274-0.167,0.625-0.239,1.051-0.216c0.427,0.023,0.928,0.191,1.502,0.509l0.583,0.318c0.52,0.285,0.82,0.513,0.902,0.678
|
||||
c0.147,0.324,0.041,0.594-0.319,0.813c-0.243,0.148-0.543,0.229-0.904,0.242c-0.36,0.016-0.713-0.044-1.058-0.169z"/>
|
||||
<path d="M224.618,872.843l-3.122-4.239c-0.504,0.308-0.888,0.463-1.154,0.467c-0.583,0.006-1.054-0.089-1.41-0.284c-0.357-0.195-0.542-0.417-0.553-0.663c-0.014-0.244,0.232-0.52,0.735-0.826l2.569-1.563c0.504-0.309,0.971-0.465,1.395-0.471
|
||||
c0.425-0.006,0.816,0.089,1.172,0.287c0.356,0.193,0.541,0.416,0.554,0.66c0.012,0.246-0.234,0.523-0.74,0.831l-0.335,0.203l4.821,6.546l-2.094,1.275l-11.552-2.449l-0.293,0.178c-0.506,0.311-0.971,0.465-1.396,0.471c-0.425,0.006-0.816-0.089-1.172-0.285
|
||||
c-0.357-0.196-0.542-0.416-0.553-0.662c-0.013-0.245,0.233-0.522,0.74-0.829l2.525-1.539c0.504-0.308,0.968-0.463,1.393-0.467c0.424-0.005,0.815,0.09,1.172,0.285c0.356,0.195,0.543,0.458,0.56,0.785c0.008,0.162-0.24,0.399-0.742,0.705l7.479,1.585z"/>
|
||||
<path d="M231.928,860.331l-0.721-0.396l2.346-1.428c0.509-0.31,0.976-0.468,1.401-0.473c0.425-0.005,0.814,0.09,1.171,0.285s0.542,0.417,0.554,0.662c0.012,0.245-0.237,0.523-0.745,0.832l-0.335,0.206l8.689,4.772c0.839,0.461,1.422,0.953,1.749,1.477
|
||||
c0.328,0.525,0.408,1.099,0.244,1.721c-0.165,0.621-0.633,1.167-1.404,1.637l-2.277,1.387c-0.484,0.296-0.939,0.443-1.366,0.449c-0.428,0.002-0.815-0.091-1.163-0.281c-0.357-0.196-0.542-0.419-0.555-0.666c-0.016-0.245,0.221-0.518,0.706-0.813l2.223-1.352
|
||||
c0.615-0.377,0.895-0.774,0.839-1.197c-0.057-0.422-0.388-0.8-0.991-1.131l-1.16-0.637c-0.107,0.456-0.306,0.872-0.598,1.246c-0.293,0.374-0.681,0.709-1.165,1.003c-1.369,0.834-3.055,1.233-5.062,1.2c-2.006-0.032-3.806-0.485-5.398-1.36
|
||||
c-1.599-0.879-2.479-1.896-2.639-3.055c-0.161-1.156,0.443-2.151,1.812-2.984c0.51-0.312,1.084-0.558,1.722-0.742c0.638-0.184,1.345-0.307,2.125-0.362z M236.504,862.845c-0.881-0.485-1.919-0.737-3.114-0.76c-1.195-0.021-2.176,0.201-2.945,0.668
|
||||
c-0.767,0.468-1.102,1.047-1.002,1.736c0.098,0.688,0.589,1.275,1.469,1.757c0.89,0.488,1.929,0.744,3.121,0.764c1.191,0.02,2.17-0.204,2.938-0.672c0.767-0.467,1.105-1.044,1.009-1.731c-0.095-0.688-0.587-1.276-1.476-1.762z"/>
|
||||
<path d="M247.004,854.697l-10.87,1.619c-0.547,0.085-0.96,0.116-1.239,0.093c-0.278-0.027-0.548-0.112-0.806-0.255c-0.328-0.181-0.509-0.396-0.543-0.65c-0.034-0.253,0.086-0.464,0.361-0.631c0.17-0.103,0.544-0.2,1.123-0.293l16.108-2.395l-3.323,9.416
|
||||
c-0.121,0.345-0.267,0.567-0.437,0.671c-0.275,0.169-0.632,0.249-1.072,0.241c-0.439-0.006-0.827-0.101-1.164-0.286c-0.259-0.144-0.417-0.293-0.476-0.454c-0.057-0.159-0.025-0.396,0.095-0.721l2.243-6.355z"/>
|
||||
<path d="M259.198,880.368l10.864-1.62c0.548-0.085,0.96-0.115,1.238-0.092c0.278,0.026,0.547,0.11,0.806,0.252c0.329,0.18,0.511,0.398,0.549,0.653c0.036,0.257-0.078,0.465-0.347,0.629c-0.176,0.107-0.558,0.205-1.145,0.292l-16.095,2.403l3.311-9.427
|
||||
c0.128-0.336,0.279-0.557,0.448-0.663c0.274-0.166,0.633-0.246,1.071-0.239c0.439,0.006,0.824,0.1,1.153,0.279c0.259,0.143,0.417,0.293,0.475,0.452c0.057,0.159,0.025,0.401-0.095,0.72l-2.234,6.36z"/>
|
||||
<path d="M272.569,868.685l-0.72-0.396l2.345-1.427c0.509-0.31,0.977-0.467,1.4-0.473c0.425-0.006,0.816,0.09,1.173,0.285c0.356,0.196,0.541,0.418,0.554,0.662c0.012,0.246-0.236,0.523-0.746,0.835l-0.334,0.202l8.688,4.773c0.838,0.461,1.422,0.954,1.749,1.477
|
||||
c0.327,0.526,0.408,1.1,0.244,1.721c-0.164,0.621-0.632,1.167-1.405,1.638l-2.276,1.385c-0.484,0.295-0.939,0.446-1.367,0.45c-0.427,0.002-0.813-0.09-1.162-0.28c-0.357-0.195-0.542-0.418-0.557-0.666c-0.014-0.246,0.221-0.517,0.707-0.814l2.223-1.354
|
||||
c0.615-0.374,0.896-0.771,0.838-1.194c-0.057-0.423-0.387-0.799-0.99-1.13l-1.16-0.639c-0.108,0.457-0.306,0.873-0.599,1.248c-0.292,0.373-0.68,0.709-1.165,1.004c-1.368,0.832-3.055,1.231-5.062,1.198c-2.006-0.032-3.805-0.486-5.397-1.359
|
||||
c-1.6-0.879-2.479-1.898-2.64-3.057c-0.16-1.156,0.443-2.15,1.812-2.983c0.511-0.311,1.085-0.559,1.722-0.742c0.638-0.184,1.346-0.306,2.125-0.363z M277.146,871.199c-0.882-0.484-1.919-0.738-3.115-0.761c-1.194-0.021-2.177,0.201-2.943,0.67
|
||||
c-0.768,0.468-1.103,1.045-1.004,1.733c0.099,0.689,0.589,1.276,1.47,1.76c0.888,0.486,1.929,0.743,3.12,0.763s2.169-0.205,2.938-0.673c0.768-0.467,1.104-1.045,1.009-1.729c-0.095-0.688-0.586-1.275-1.475-1.763z"/>
|
||||
<path d="M294.761,854.343l8.187,4.495l2.409-1.465c0.509-0.312,0.975-0.468,1.4-0.473c0.424-0.006,0.815,0.09,1.172,0.285c0.356,0.196,0.541,0.416,0.553,0.662c0.012,0.245-0.235,0.523-0.744,0.833l-6.826,4.155c-0.51,0.312-0.978,0.469-1.402,0.473
|
||||
c-0.425,0.006-0.816-0.089-1.173-0.285c-0.356-0.195-0.541-0.417-0.553-0.663c-0.012-0.244,0.237-0.522,0.746-0.832l2.408-1.466l-5.805-3.188l-1.612,0.981c-0.51,0.309-0.976,0.467-1.4,0.474c-0.425,0.006-0.816-0.09-1.173-0.287
|
||||
c-0.357-0.195-0.542-0.416-0.554-0.663c-0.012-0.243,0.237-0.522,0.745-0.831l3.623-2.205z M289.974,852.027l2.53,1.391l-2.387,1.453l-2.53-1.392l2.387-1.452z"/>
|
||||
<path d="M305.91,842.326l12.701,6.976l0.336-0.202c0.509-0.309,0.976-0.467,1.4-0.473c0.425-0.006,0.816,0.09,1.173,0.285c0.356,0.194,0.541,0.417,0.554,0.662c0.012,0.246-0.236,0.523-0.745,0.834l-2.345,1.427l-0.571-0.313
|
||||
c-0.147,0.448-0.391,0.869-0.733,1.261c-0.34,0.393-0.779,0.75-1.314,1.077c-1.509,0.921-3.243,1.376-5.197,1.369c-1.955-0.006-3.703-0.433-5.242-1.278c-1.611-0.885-2.501-1.933-2.671-3.147c-0.171-1.215,0.439-2.245,1.832-3.093
|
||||
c0.522-0.318,1.13-0.577,1.824-0.78c0.692-0.201,1.474-0.348,2.344-0.438l-2.974-1.634l-0.335,0.205c-0.509,0.309-0.976,0.467-1.4,0.474c-0.424,0.005-0.815-0.092-1.172-0.286c-0.356-0.195-0.541-0.417-0.554-0.663c-0.013-0.245,0.236-0.522,0.745-0.833
|
||||
l2.345-1.428z M314.014,849.105c-0.982-0.539-2.104-0.817-3.366-0.838c-1.263-0.021-2.317,0.226-3.159,0.738c-0.837,0.509-1.205,1.129-1.106,1.857c0.099,0.728,0.628,1.355,1.586,1.882c0.874,0.48,1.854,0.716,2.938,0.704c1.083-0.011,2.102-0.305,3.056-0.887
|
||||
c0.948-0.577,1.406-1.18,1.375-1.811c-0.03-0.629-0.472-1.178-1.324-1.646z"/>
|
||||
<path d="M324.919,839.143l-8.596,5.234c-0.484,0.295-0.94,0.443-1.367,0.447c-0.427,0.006-0.819-0.091-1.174-0.286c-0.349-0.192-0.532-0.411-0.546-0.658c-0.015-0.246,0.22-0.516,0.705-0.811l8.598-5.234c0.484-0.295,0.939-0.445,1.366-0.448
|
||||
c0.427-0.004,0.819,0.092,1.175,0.287c0.349,0.192,0.529,0.41,0.544,0.658c0.015,0.246-0.221,0.517-0.705,0.811z M329.409,841.61l-8.597,5.233c-0.484,0.295-0.937,0.444-1.36,0.45c-0.423,0.008-0.813-0.086-1.168-0.282c-0.356-0.197-0.542-0.418-0.558-0.664
|
||||
c-0.014-0.247,0.22-0.518,0.704-0.813l8.599-5.234c0.483-0.292,0.939-0.443,1.366-0.447c0.428-0.005,0.818,0.092,1.175,0.286c0.357,0.196,0.54,0.416,0.55,0.659c0.01,0.248-0.226,0.517-0.711,0.812z"/>
|
||||
<path d="M322.691,832.917l2.575-1.569l5.079,3.519c0.263,0.181,0.397,0.337,0.406,0.466c0.009,0.131-0.071,0.247-0.241,0.353c-0.178,0.107-0.376,0.161-0.598,0.159c-0.22,0.001-0.491-0.068-0.812-0.206l-6.409-2.721z M326.857,830.379l2.574-1.566l5.081,3.518
|
||||
c0.262,0.181,0.398,0.334,0.411,0.463s-0.07,0.246-0.247,0.354c-0.176,0.108-0.375,0.161-0.597,0.16c-0.221,0-0.492-0.069-0.812-0.205l-6.411-2.723z"/>
|
||||
<path d="M334.959,824.643l5.355,2.942c0.111-0.506,0.324-0.966,0.641-1.379s0.734-0.777,1.25-1.091c1.393-0.848,3.141-1.252,5.246-1.217c2.105,0.036,3.962,0.496,5.573,1.382c1.539,0.845,2.366,1.832,2.477,2.962c0.112,1.128-0.588,2.151-2.098,3.07
|
||||
c-0.536,0.325-1.134,0.595-1.794,0.807c-0.66,0.214-1.381,0.372-2.166,0.48l0.598,0.329l-2.345,1.428c-0.509,0.308-0.977,0.467-1.401,0.472c-0.424,0.008-0.816-0.089-1.171-0.285c-0.357-0.196-0.541-0.416-0.555-0.662c-0.012-0.245,0.236-0.523,0.745-0.835
|
||||
l0.334-0.202l-10.32-5.668l-0.335,0.204c-0.509,0.307-0.976,0.466-1.4,0.472c-0.425,0.006-0.816-0.091-1.171-0.285c-0.357-0.195-0.542-0.417-0.556-0.661c-0.012-0.248,0.236-0.524,0.746-0.834l2.345-1.429z M351.083,826.541c-0.982-0.539-2.104-0.819-3.367-0.839
|
||||
c-1.261-0.02-2.315,0.228-3.157,0.739c-0.837,0.509-1.205,1.13-1.106,1.856c0.099,0.729,0.627,1.354,1.586,1.881c0.875,0.479,1.853,0.717,2.937,0.707c1.083-0.011,2.103-0.307,3.058-0.888c0.953-0.581,1.413-1.186,1.379-1.813
|
||||
c-0.035-0.628-0.478-1.175-1.33-1.644z"/>
|
||||
<path d="M366.46,822.934l-0.571-0.313c-0.188,0.481-0.509,0.948-0.962,1.404c-0.453,0.456-0.925,0.836-1.423,1.141c-1.081,0.657-2.295,1.007-3.643,1.047s-2.431-0.163-3.248-0.614c-0.995-0.546-1.487-1.313-1.477-2.307c0.009-0.99,0.772-1.95,2.293-2.873
|
||||
c0.608-0.371,1.389-0.756,2.341-1.159l-0.573-0.315c-0.359-0.196-0.783-0.28-1.268-0.246c-0.487,0.033-1.094,0.271-1.822,0.715c-0.596,0.361-1.231,0.912-1.903,1.643c-0.252,0.271-0.478,0.467-0.676,0.588c-0.27,0.163-0.614,0.241-1.03,0.23
|
||||
c-0.417-0.012-0.803-0.115-1.159-0.311c-0.202-0.111-0.342-0.229-0.424-0.347c-0.082-0.121-0.109-0.241-0.08-0.363c0.03-0.122,0.169-0.329,0.419-0.623c0.334-0.396,0.713-0.776,1.135-1.144c0.421-0.368,0.842-0.682,1.261-0.938
|
||||
c1.254-0.762,2.544-1.177,3.876-1.247s2.551,0.197,3.66,0.81l4.905,2.691l0.334-0.204c0.509-0.31,0.976-0.468,1.4-0.472c0.425-0.006,0.815,0.089,1.172,0.286c0.356,0.194,0.541,0.417,0.553,0.661c0.013,0.245-0.235,0.523-0.744,0.833l-2.346,1.428z
|
||||
M362.196,820.593c-0.99,0.39-1.827,0.793-2.509,1.206c-0.82,0.501-1.291,1.059-1.414,1.675c-0.068,0.388,0.051,0.666,0.357,0.833c0.223,0.123,0.492,0.166,0.807,0.136c0.581-0.061,1.157-0.265,1.728-0.613c0.485-0.293,0.923-0.689,1.314-1.186
|
||||
c0.391-0.494,0.634-0.993,0.729-1.495l-1.013-0.556z"/>
|
||||
<path d="M365.715,811.148l1.498,0.824c0.126-0.908,0.313-1.578,0.563-2.006s0.585-0.772,1.012-1.032c0.654-0.398,1.578-0.627,2.769-0.687c0.808-0.041,1.413,0.048,1.818,0.271c0.342,0.185,0.53,0.407,0.568,0.659c0.038,0.252-0.085,0.463-0.367,0.635
|
||||
c-0.249,0.149-0.66,0.229-1.232,0.232c-0.574,0.004-0.968,0.073-1.184,0.204c-0.282,0.171-0.493,0.542-0.634,1.114c-0.142,0.57-0.214,1.34-0.215,2.309l3.593,1.975l2.868-1.746c0.51-0.313,0.977-0.469,1.4-0.473c0.426-0.008,0.815,0.09,1.172,0.285
|
||||
c0.357,0.196,0.542,0.417,0.554,0.661c0.013,0.246-0.236,0.522-0.745,0.835l-6.073,3.697c-0.508,0.309-0.976,0.467-1.4,0.472c-0.425,0.006-0.815-0.089-1.172-0.284c-0.357-0.197-0.542-0.418-0.554-0.663c-0.013-0.247,0.236-0.525,0.746-0.834l1.194-0.728
|
||||
l-5.806-3.188l-0.732,0.447c-0.509,0.309-0.977,0.468-1.401,0.474c-0.424,0.004-0.815-0.091-1.171-0.286c-0.357-0.195-0.542-0.419-0.554-0.663c-0.012-0.244,0.236-0.523,0.745-0.834l2.743-1.67z"/>
|
||||
<path d="M378.432,800.02c-0.075-0.185-0.086-0.351-0.04-0.495c0.048-0.144,0.158-0.268,0.328-0.372c0.293-0.18,0.656-0.257,1.083-0.24c0.427,0.021,0.928,0.187,1.502,0.503l2.028,1.113c0.575,0.315,0.892,0.599,0.95,0.846c0.059,0.249-0.059,0.46-0.353,0.642
|
||||
c-0.268,0.162-0.574,0.245-0.918,0.245c-0.343,0-0.799-0.111-1.37-0.333c-0.375-0.152-0.72-0.236-1.037-0.251c-0.62-0.029-1.277,0.045-1.97,0.222c-0.692,0.178-1.28,0.413-1.766,0.708c-0.603,0.369-1.001,0.79-1.194,1.269c-0.192,0.479-0.133,1.027,0.181,1.647
|
||||
c0.313,0.618,0.952,1.194,1.917,1.725l1.553,0.854c1.151,0.63,2.463,0.943,3.938,0.939c1.474-0.007,2.837-0.39,4.088-1.151c0.747-0.455,1.257-0.905,1.534-1.354c0.161-0.259,0.205-0.606,0.133-1.04c-0.039-0.263-0.037-0.452,0.007-0.563
|
||||
c0.044-0.113,0.142-0.215,0.292-0.308c0.268-0.162,0.625-0.239,1.069-0.232c0.443,0.008,0.829,0.103,1.154,0.282c0.326,0.177,0.537,0.454,0.636,0.827c0.143,0.541,0.057,1.088-0.262,1.642c-0.426,0.744-1.149,1.427-2.171,2.048
|
||||
c-1.191,0.726-2.556,1.22-4.094,1.481c-1.239,0.214-2.633,0.21-4.182-0.012c-1.55-0.223-2.919-0.659-4.107-1.312l-1.621-0.892c-1.243-0.681-2.158-1.469-2.747-2.354c-0.587-0.889-0.741-1.755-0.459-2.602c0.282-0.846,0.907-1.566,1.876-2.153
|
||||
c0.583-0.356,1.208-0.644,1.874-0.865c0.667-0.222,1.383-0.376,2.148-0.463z"/>
|
||||
<path d="M383.672,794.989l5.086,2.794c0.124-0.415,0.329-0.795,0.614-1.133c0.286-0.339,0.647-0.641,1.085-0.907c0.693-0.422,1.45-0.72,2.271-0.898c0.822-0.177,1.71-0.209,2.667-0.094c0.957,0.11,1.893,0.419,2.808,0.922l4.474,2.456
|
||||
c0.508-0.308,0.904-0.467,1.183-0.474c0.569-0.003,1.032,0.092,1.389,0.288c0.357,0.196,0.541,0.416,0.555,0.662c0.012,0.247-0.236,0.523-0.745,0.831l-2.01,1.227c-0.509,0.309-0.977,0.467-1.402,0.472c-0.424,0.007-0.815-0.089-1.172-0.284
|
||||
c-0.357-0.197-0.542-0.457-0.56-0.78c-0.008-0.167,0.243-0.406,0.751-0.718l-4.313-2.367c-0.612-0.337-1.16-0.503-1.643-0.494c-0.643,0.004-1.264,0.189-1.867,0.556c-0.445,0.272-0.737,0.567-0.875,0.89c-0.138,0.324-0.158,0.848-0.061,1.577l4.466,2.454
|
||||
c0.508-0.313,0.9-0.467,1.175-0.468c0.574-0.011,1.04,0.084,1.397,0.279c0.357,0.196,0.542,0.417,0.554,0.662c0.013,0.247-0.236,0.523-0.745,0.833l-2.009,1.224c-0.51,0.313-0.977,0.468-1.401,0.474c-0.424,0.005-0.816-0.09-1.172-0.286
|
||||
c-0.357-0.196-0.541-0.459-0.553-0.785c-0.013-0.163,0.235-0.399,0.743-0.712l-10.318-5.667l-0.335,0.204c-0.51,0.311-0.977,0.468-1.4,0.473c-0.426,0.006-0.816-0.09-1.172-0.286c-0.357-0.195-0.542-0.416-0.554-0.662c-0.013-0.246,0.236-0.522,0.745-0.833
|
||||
l2.346-1.428z"/>
|
||||
<path d="M414.713,793.561l-0.571-0.313c-0.188,0.479-0.51,0.946-0.961,1.403c-0.453,0.458-0.927,0.838-1.426,1.142c-1.079,0.657-2.294,1.006-3.643,1.047c-1.349,0.039-2.431-0.166-3.249-0.614c-0.993-0.545-1.486-1.314-1.476-2.308
|
||||
c0.01-0.99,0.773-1.947,2.293-2.874c0.608-0.37,1.39-0.756,2.342-1.158l-0.574-0.315c-0.359-0.197-0.782-0.28-1.268-0.246c-0.487,0.033-1.095,0.271-1.822,0.715c-0.597,0.362-1.231,0.91-1.903,1.644c-0.253,0.271-0.478,0.467-0.676,0.588
|
||||
c-0.27,0.163-0.613,0.241-1.03,0.229c-0.415-0.012-0.802-0.114-1.158-0.311c-0.203-0.109-0.343-0.227-0.425-0.347c-0.082-0.12-0.108-0.244-0.079-0.362c0.028-0.121,0.168-0.33,0.417-0.625c0.336-0.395,0.715-0.774,1.137-1.144c0.42-0.367,0.842-0.681,1.262-0.936
|
||||
c1.252-0.763,2.543-1.18,3.876-1.25c1.332-0.069,2.55,0.199,3.659,0.81l4.904,2.692l0.335-0.203c0.509-0.31,0.976-0.468,1.4-0.473c0.425-0.006,0.815,0.09,1.172,0.286c0.355,0.196,0.541,0.416,0.553,0.66c0.013,0.246-0.235,0.523-0.745,0.834l-2.345,1.428z
|
||||
M410.449,791.219c-0.991,0.39-1.827,0.792-2.509,1.208c-0.82,0.5-1.292,1.057-1.414,1.674c-0.068,0.388,0.051,0.666,0.358,0.834c0.222,0.122,0.49,0.167,0.806,0.134c0.582-0.06,1.157-0.264,1.728-0.61c0.486-0.296,0.924-0.69,1.315-1.188
|
||||
c0.391-0.495,0.633-0.995,0.729-1.496l-1.012-0.556z"/>
|
||||
<path d="M413.968,781.775l1.499,0.824c0.126-0.909,0.313-1.578,0.562-2.006c0.248-0.429,0.585-0.773,1.011-1.031c0.655-0.398,1.578-0.628,2.769-0.688c0.808-0.042,1.412,0.047,1.818,0.27c0.341,0.188,0.531,0.409,0.568,0.658c0.038,0.254-0.085,0.465-0.367,0.636
|
||||
c-0.249,0.153-0.661,0.23-1.232,0.234c-0.573,0.005-0.967,0.071-1.184,0.203c-0.281,0.17-0.493,0.541-0.635,1.114c-0.141,0.569-0.212,1.34-0.214,2.31l3.593,1.975l2.87-1.746c0.508-0.312,0.974-0.47,1.399-0.474c0.425-0.006,0.815,0.09,1.172,0.285
|
||||
c0.356,0.195,0.542,0.418,0.554,0.662c0.012,0.246-0.236,0.522-0.745,0.834l-6.072,3.694c-0.509,0.312-0.976,0.469-1.4,0.475c-0.425,0.005-0.815-0.089-1.173-0.286c-0.357-0.196-0.542-0.416-0.554-0.662c-0.013-0.244,0.236-0.523,0.745-0.833l1.193-0.728
|
||||
l-5.805-3.188l-0.733,0.446c-0.509,0.31-0.975,0.468-1.4,0.473c-0.425,0.006-0.816-0.09-1.172-0.284c-0.357-0.196-0.542-0.417-0.555-0.663c-0.011-0.244,0.237-0.522,0.745-0.832l2.744-1.672z"/>
|
||||
<path d="M428.328,775.792l4.783,2.627c0.511,0.28,0.936,0.413,1.275,0.394c0.531-0.025,1.15-0.255,1.857-0.685c1.029-0.629,1.715-1.35,2.063-2.166c0.131-0.313,0.291-0.53,0.48-0.646c0.263-0.158,0.606-0.233,1.033-0.223c0.426,0.009,0.807,0.108,1.141,0.288
|
||||
c0.311,0.173,0.474,0.383,0.49,0.637c0.044,0.395-0.253,0.965-0.893,1.71c-0.639,0.744-1.281,1.311-1.929,1.707c-1.251,0.762-2.508,1.157-3.773,1.185c-1.264,0.029-2.361-0.212-3.293-0.723l-5.243-2.881l-0.727,0.445c-0.486,0.293-0.941,0.442-1.369,0.446
|
||||
c-0.428,0.006-0.818-0.091-1.175-0.287c-0.348-0.191-0.529-0.41-0.544-0.657c-0.014-0.247,0.221-0.517,0.706-0.813l0.727-0.443l-2.151-1.181c-0.574-0.315-0.891-0.598-0.949-0.845c-0.057-0.246,0.063-0.464,0.364-0.646c0.294-0.179,0.656-0.257,1.088-0.237
|
||||
c0.43,0.02,0.932,0.188,1.505,0.503l2.153,1.183l3.722-2.266c0.485-0.294,0.94-0.441,1.367-0.447c0.427-0.006,0.818,0.09,1.175,0.288c0.348,0.19,0.529,0.409,0.544,0.655c0.014,0.249-0.221,0.519-0.705,0.813l-3.723,2.265z"/>
|
||||
<path d="M431.258,766.827l2.576-1.568l5.079,3.519c0.262,0.182,0.398,0.337,0.406,0.467c0.009,0.13-0.073,0.246-0.242,0.35c-0.177,0.108-0.376,0.162-0.598,0.16c-0.221,0.001-0.492-0.066-0.812-0.205l-6.41-2.722z M435.424,764.289l2.576-1.566l5.081,3.518
|
||||
c0.262,0.182,0.398,0.336,0.411,0.463c0.012,0.13-0.071,0.247-0.248,0.354c-0.176,0.109-0.375,0.163-0.597,0.161c-0.221,0.001-0.491-0.069-0.81-0.206l-6.412-2.723z"/>
|
||||
<path d="M456.528,760.248l-10.87,1.617c-0.546,0.086-0.959,0.117-1.239,0.093c-0.278-0.027-0.546-0.111-0.807-0.253c-0.328-0.18-0.509-0.396-0.542-0.65c-0.035-0.255,0.087-0.466,0.361-0.633c0.169-0.102,0.544-0.201,1.124-0.292l16.108-2.396l-3.325,9.419
|
||||
c-0.12,0.344-0.266,0.565-0.437,0.67c-0.273,0.168-0.63,0.249-1.071,0.241c-0.438-0.006-0.826-0.103-1.163-0.286c-0.258-0.143-0.418-0.293-0.475-0.452c-0.058-0.161-0.027-0.399,0.093-0.721l2.244-6.356z"/>
|
||||
<path d="M323.966,874.037l10.864-1.622c0.547-0.085,0.96-0.115,1.239-0.091c0.276,0.025,0.545,0.109,0.805,0.252c0.328,0.179,0.511,0.399,0.548,0.653c0.038,0.258-0.077,0.465-0.346,0.629c-0.177,0.107-0.558,0.206-1.144,0.292l-16.097,2.403l3.312-9.425
|
||||
c0.129-0.34,0.278-0.561,0.448-0.666c0.275-0.165,0.631-0.246,1.071-0.239c0.44,0.007,0.824,0.101,1.153,0.28c0.26,0.143,0.418,0.295,0.476,0.453c0.057,0.161,0.026,0.399-0.096,0.721l-2.233,6.359z"/>
|
||||
<path d="M333.979,863.565l1.498,0.821c0.128-0.91,0.314-1.576,0.564-2.007c0.247-0.428,0.584-0.773,1.011-1.031c0.655-0.4,1.578-0.629,2.769-0.687c0.808-0.042,1.413,0.049,1.818,0.27c0.341,0.187,0.53,0.407,0.568,0.658c0.037,0.254-0.085,0.465-0.368,0.637
|
||||
c-0.249,0.151-0.658,0.229-1.231,0.232c-0.573,0.004-0.968,0.073-1.184,0.204c-0.282,0.17-0.493,0.542-0.634,1.113c-0.142,0.57-0.214,1.342-0.216,2.312l3.593,1.973l2.869-1.746c0.509-0.31,0.976-0.469,1.4-0.473c0.425-0.006,0.815,0.09,1.173,0.284
|
||||
c0.355,0.196,0.541,0.418,0.552,0.662c0.013,0.246-0.235,0.525-0.744,0.833l-6.073,3.699c-0.509,0.308-0.976,0.466-1.401,0.471c-0.424,0.006-0.815-0.088-1.172-0.284c-0.356-0.196-0.542-0.417-0.554-0.662c-0.012-0.247,0.237-0.523,0.746-0.836l1.193-0.725
|
||||
l-5.806-3.189l-0.733,0.448c-0.508,0.309-0.976,0.466-1.399,0.471c-0.425,0.007-0.816-0.091-1.172-0.285c-0.357-0.195-0.541-0.416-0.554-0.662c-0.013-0.246,0.236-0.524,0.746-0.835l2.742-1.666z"/>
|
||||
<path d="M358.027,856.449l-8.271,5.036c0.826,0.211,1.696,0.26,2.607,0.141c0.912-0.118,1.822-0.452,2.733-1.007c0.747-0.454,1.551-1.162,2.413-2.12c0.357-0.396,0.634-0.653,0.831-0.774c0.268-0.161,0.605-0.239,1.014-0.227c0.406,0.012,0.781,0.11,1.121,0.297
|
||||
c0.309,0.17,0.474,0.374,0.495,0.612c0.024,0.316-0.342,0.854-1.098,1.613c-0.758,0.761-1.603,1.427-2.539,1.996c-1.611,0.981-3.438,1.47-5.479,1.465c-2.042-0.002-3.847-0.435-5.418-1.299c-1.672-0.917-2.51-1.982-2.514-3.195
|
||||
c-0.006-1.21,0.673-2.232,2.035-3.061c0.819-0.497,1.741-0.861,2.765-1.091c1.026-0.229,1.902-0.336,2.631-0.322c1.044,0.027,2.143,0.18,3.294,0.456c0.799,0.195,1.586,0.507,2.359,0.933l1.021,0.547z M353.426,856.492c-0.99-0.186-1.903-0.219-2.739-0.1
|
||||
c-0.837,0.118-1.6,0.387-2.289,0.805c-0.684,0.417-1.106,0.87-1.269,1.358c-0.162,0.489-0.059,1.018,0.309,1.585l5.988-3.648z"/>
|
||||
<path d="M362.107,846.956c-0.038-0.3,0.07-0.529,0.326-0.685c0.289-0.177,0.649-0.254,1.08-0.235c0.43,0.021,0.929,0.187,1.492,0.496l1.532,0.841c0.573,0.316,0.885,0.595,0.939,0.841c0.052,0.245-0.072,0.459-0.374,0.644c-0.276,0.168-0.6,0.259-0.974,0.273
|
||||
c-0.277,0.007-0.668-0.08-1.172-0.268c-0.505-0.187-1.006-0.242-1.504-0.166c-0.912,0.113-1.782,0.422-2.607,0.925c-0.951,0.578-1.384,1.225-1.302,1.934c0.083,0.708,0.626,1.341,1.63,1.893c0.927,0.507,1.933,0.741,3.021,0.702
|
||||
c1.088-0.041,2.271-0.451,3.55-1.229c0.838-0.512,1.422-0.982,1.75-1.419c0.191-0.259,0.276-0.559,0.26-0.894c-0.018-0.336,0.087-0.573,0.315-0.712c0.274-0.167,0.631-0.243,1.07-0.233c0.438,0.011,0.822,0.105,1.148,0.285c0.527,0.29,0.724,0.751,0.587,1.38
|
||||
c-0.198,0.938-1.167,1.938-2.909,2.999c-1.565,0.951-3.166,1.481-4.802,1.593c-2.207,0.151-4.202-0.261-5.989-1.243c-1.693-0.931-2.616-1.991-2.769-3.183c-0.153-1.192,0.541-2.257,2.08-3.193c0.557-0.34,1.137-0.62,1.74-0.844
|
||||
c0.601-0.224,1.229-0.39,1.883-0.502z"/>
|
||||
<path d="M372.465,842.893l4.781,2.628c0.513,0.28,0.938,0.41,1.278,0.394c0.531-0.027,1.149-0.256,1.857-0.687c1.028-0.626,1.716-1.347,2.063-2.164c0.13-0.315,0.29-0.532,0.479-0.649c0.262-0.158,0.606-0.23,1.033-0.222c0.426,0.011,0.807,0.108,1.14,0.291
|
||||
c0.312,0.172,0.475,0.383,0.491,0.634c0.043,0.395-0.254,0.966-0.893,1.711c-0.638,0.743-1.282,1.312-1.93,1.706c-1.25,0.762-2.509,1.156-3.773,1.188c-1.264,0.025-2.361-0.215-3.292-0.727l-5.245-2.88l-0.727,0.443c-0.485,0.297-0.94,0.445-1.367,0.449
|
||||
c-0.427,0.006-0.819-0.092-1.176-0.286c-0.348-0.193-0.529-0.411-0.544-0.658c-0.015-0.246,0.221-0.518,0.706-0.812l0.728-0.443l-2.153-1.182c-0.574-0.315-0.89-0.598-0.947-0.846c-0.058-0.246,0.063-0.463,0.364-0.645c0.294-0.182,0.657-0.26,1.087-0.236
|
||||
c0.431,0.019,0.933,0.188,1.507,0.501l2.153,1.184l3.72-2.266c0.485-0.294,0.94-0.446,1.368-0.449c0.427-0.005,0.82,0.091,1.175,0.287c0.349,0.191,0.53,0.411,0.544,0.656c0.014,0.248-0.221,0.519-0.705,0.813l-3.722,2.266z"/>
|
||||
<path d="M401.287,828.459l6.186-0.152c0.383-0.208,0.775-0.305,1.176-0.294c0.401,0.012,0.769,0.111,1.101,0.292c0.35,0.191,0.529,0.41,0.545,0.659c0.013,0.247-0.222,0.517-0.707,0.812l-2.29,1.394c-0.486,0.295-0.941,0.446-1.369,0.451
|
||||
c-0.427,0.002-0.822-0.094-1.187-0.295c-0.279-0.152-0.45-0.332-0.515-0.54c-0.064-0.208-0.008-0.411,0.173-0.609l-3.073,0.078l0.04,1.77c0.4-0.137,0.764-0.192,1.09-0.167c0.328,0.023,0.643,0.12,0.945,0.284c0.364,0.2,0.555,0.423,0.572,0.668
|
||||
c0.018,0.245-0.214,0.514-0.698,0.809l-2.264,1.378c-0.484,0.294-0.938,0.442-1.366,0.448c-0.428,0.005-0.818-0.094-1.175-0.288c-0.324-0.178-0.505-0.384-0.543-0.616c-0.037-0.233,0.116-0.468,0.459-0.704l-0.112-3.506l-5.392,0.132
|
||||
c-0.366,0.188-0.747,0.275-1.141,0.26c-0.396-0.014-0.756-0.11-1.082-0.291c-0.348-0.19-0.529-0.41-0.543-0.658c-0.015-0.247,0.222-0.519,0.708-0.814l1.889-1.149c0.485-0.295,0.943-0.443,1.371-0.449c0.431-0.003,0.817,0.092,1.161,0.278
|
||||
c0.459,0.254,0.648,0.572,0.563,0.959l2.409-0.061l-0.046-1.435c-0.655,0.05-1.181-0.033-1.575-0.248c-0.37-0.205-0.562-0.429-0.577-0.675c-0.015-0.246,0.221-0.516,0.704-0.81l1.86-1.133c0.483-0.293,0.938-0.442,1.364-0.447
|
||||
c0.426-0.005,0.819,0.092,1.174,0.288c0.317,0.175,0.495,0.378,0.533,0.611c0.039,0.232-0.108,0.464-0.437,0.703l0.068,3.068z"/>
|
||||
<path d="M413.813,818.126l-8.597,5.232c-0.484,0.297-0.939,0.445-1.366,0.449c-0.428,0.004-0.818-0.093-1.175-0.29c-0.348-0.188-0.53-0.408-0.546-0.653c-0.014-0.249,0.222-0.519,0.705-0.814l8.598-5.232c0.484-0.295,0.939-0.443,1.366-0.448
|
||||
c0.427-0.006,0.819,0.091,1.175,0.288c0.349,0.191,0.53,0.408,0.544,0.656s-0.22,0.518-0.705,0.813z M418.302,820.593l-8.596,5.231c-0.484,0.294-0.938,0.446-1.361,0.452c-0.423,0.007-0.811-0.088-1.168-0.285c-0.356-0.195-0.543-0.416-0.557-0.662
|
||||
c-0.016-0.246,0.22-0.519,0.704-0.812l8.598-5.232c0.483-0.297,0.938-0.447,1.366-0.451c0.428-0.003,0.819,0.093,1.175,0.289c0.357,0.194,0.541,0.415,0.551,0.659c0.01,0.245-0.226,0.515-0.711,0.811z"/>
|
||||
<path d="M411.583,811.897l2.576-1.567l5.08,3.518c0.262,0.182,0.398,0.337,0.406,0.468c0.01,0.129-0.072,0.246-0.242,0.348c-0.176,0.11-0.375,0.163-0.598,0.163c-0.221,0-0.491-0.071-0.81-0.208l-6.412-2.721z M415.751,809.36l2.576-1.568l5.078,3.52
|
||||
c0.263,0.182,0.399,0.337,0.411,0.464c0.013,0.128-0.07,0.246-0.246,0.353c-0.177,0.107-0.376,0.162-0.598,0.162c-0.221-0.001-0.491-0.07-0.811-0.209l-6.411-2.721z"/>
|
||||
<path d="M437.018,802.83l2.616,1.437c1.55,0.852,2.655,1.898,3.317,3.139c0.661,1.24,0.286,2.289-1.124,3.147c-0.813,0.495-1.711,0.798-2.695,0.906c-0.982,0.108-2.292,0.005-3.931-0.313c-1.637-0.319-3.09-0.828-4.361-1.525l-2.617-1.438
|
||||
c-1.542-0.846-2.647-1.891-3.316-3.131c-0.668-1.24-0.297-2.288,1.114-3.148c0.806-0.491,1.699-0.791,2.678-0.902c0.979-0.111,2.291-0.011,3.936,0.304c1.643,0.315,3.105,0.824,4.383,1.525z M435.006,804.053c-1.295-0.71-2.733-1.146-4.316-1.306
|
||||
c-0.884-0.081-1.642,0.071-2.275,0.457c-0.612,0.372-0.818,0.84-0.619,1.398c0.306,0.848,1.119,1.633,2.437,2.356l2.617,1.438c1.303,0.714,2.745,1.148,4.325,1.3c0.877,0.084,1.635-0.066,2.275-0.455c0.606-0.37,0.81-0.837,0.608-1.394
|
||||
c-0.305-0.849-1.117-1.634-2.436-2.358l-2.617-1.438z"/>
|
||||
<path d="M435.71,797.211l2.576-1.567l5.078,3.518c0.262,0.182,0.397,0.338,0.407,0.467c0.009,0.131-0.072,0.247-0.242,0.351c-0.177,0.107-0.376,0.161-0.598,0.161s-0.491-0.069-0.812-0.207l-6.41-2.722z M439.877,794.676l2.576-1.568l5.079,3.518
|
||||
c0.262,0.182,0.399,0.336,0.41,0.464c0.014,0.127-0.069,0.247-0.246,0.353c-0.177,0.107-0.375,0.161-0.598,0.162c-0.221-0.001-0.492-0.07-0.811-0.208l-6.411-2.72z"/>
|
||||
<path d="M476.519,788.988l-11.656-2.343c-0.508,0.311-0.974,0.466-1.398,0.473c-0.426,0.006-0.815-0.09-1.173-0.287c-0.356-0.194-0.541-0.414-0.554-0.66c-0.013-0.246,0.235-0.523,0.743-0.833l2.254-1.371c0.501-0.306,0.965-0.461,1.39-0.466
|
||||
c0.424-0.006,0.815,0.089,1.171,0.286c0.356,0.194,0.541,0.416,0.554,0.66c0.012,0.248-0.232,0.522-0.734,0.827l7.895,1.585l-3.161-4.467c-0.504,0.308-0.968,0.463-1.393,0.469c-0.424,0.005-0.814-0.089-1.171-0.287c-0.356-0.195-0.541-0.416-0.554-0.661
|
||||
c-0.012-0.245,0.233-0.522,0.737-0.828l2.25-1.371c0.507-0.309,0.974-0.466,1.397-0.47c0.426-0.005,0.816,0.089,1.173,0.285c0.356,0.195,0.541,0.418,0.555,0.661c0.011,0.246-0.236,0.523-0.744,0.832l6.181,8.734c0.501-0.305,1.008-0.612,1.52-0.925
|
||||
c0.848-0.011,1.451,0.083,1.809,0.28c0.355,0.193,0.541,0.412,0.553,0.662c0.013,0.243-0.236,0.521-0.746,0.832l-5.015,3.053c-0.501,0.305-0.965,0.459-1.389,0.465c-0.425,0.006-0.815-0.09-1.172-0.286c-0.356-0.194-0.541-0.416-0.553-0.661
|
||||
c-0.013-0.246,0.232-0.522,0.733-0.826l2.01-1.226l-1.513-2.137z"/>
|
||||
<path d="M486.191,774.065l-8.597,5.235c-0.485,0.295-0.94,0.443-1.367,0.448c-0.427,0.003-0.818-0.092-1.174-0.289c-0.348-0.189-0.531-0.411-0.544-0.657c-0.016-0.245,0.219-0.518,0.704-0.813l8.597-5.232c0.484-0.295,0.939-0.444,1.366-0.45
|
||||
c0.427-0.002,0.818,0.094,1.175,0.288c0.349,0.193,0.529,0.411,0.544,0.659c0.014,0.245-0.221,0.516-0.705,0.811z M490.681,776.531l-8.597,5.233c-0.483,0.296-0.938,0.446-1.36,0.453c-0.423,0.008-0.811-0.088-1.168-0.285c-0.357-0.195-0.542-0.416-0.558-0.662
|
||||
c-0.015-0.249,0.22-0.519,0.705-0.813l8.597-5.234c0.484-0.295,0.94-0.443,1.366-0.448c0.428-0.004,0.819,0.091,1.176,0.288c0.356,0.196,0.54,0.415,0.549,0.661c0.011,0.243-0.226,0.515-0.71,0.807z"/>
|
||||
<path d="M483.962,767.839l2.575-1.567l5.079,3.516c0.263,0.183,0.397,0.339,0.406,0.467c0.009,0.133-0.072,0.248-0.242,0.351c-0.176,0.107-0.376,0.162-0.597,0.162c-0.222,0-0.491-0.069-0.811-0.208l-6.411-2.72z M488.129,765.302l2.575-1.567l5.079,3.517
|
||||
c0.263,0.183,0.4,0.338,0.412,0.464c0.012,0.128-0.071,0.246-0.247,0.354c-0.177,0.107-0.375,0.161-0.598,0.16c-0.22,0.001-0.49-0.069-0.811-0.207l-6.41-2.721z"/>
|
||||
<path d="M509.583,766.147l4.376-2.664c0.012-0.275,0.125-0.479,0.343-0.611c0.309-0.19,0.673-0.273,1.094-0.248c0.419,0.021,0.92,0.19,1.498,0.51l1.142,0.625l-9.149,5.57l-2.531-1.391c0.075-4.146-0.018-6.726-0.283-7.741c-0.14-0.515-0.442-0.901-0.908-1.157
|
||||
c-0.581-0.319-1.307-0.469-2.18-0.455c-0.873,0.015-1.664,0.239-2.374,0.671c-0.718,0.438-1.066,0.936-1.045,1.499c0.015,0.294,0.209,0.632,0.579,1.01c0.235,0.234,0.341,0.438,0.319,0.613c-0.021,0.175-0.15,0.333-0.386,0.478
|
||||
c-0.277,0.168-0.63,0.247-1.063,0.242c-0.432-0.005-0.804-0.093-1.114-0.264c-0.465-0.255-0.865-0.684-1.2-1.289c-0.335-0.604-0.366-1.231-0.087-1.887c0.277-0.652,0.824-1.229,1.64-1.726c1.269-0.771,2.762-1.152,4.483-1.146
|
||||
c1.722,0.008,3.229,0.365,4.523,1.079c0.659,0.36,1.154,0.768,1.484,1.216c0.331,0.449,0.552,1.215,0.666,2.295c0.093,0.852,0.151,2.44,0.174,4.771z"/>
|
||||
<path d="M521.458,751.428l2.618,1.438c1.55,0.851,2.655,1.898,3.315,3.137c0.661,1.24,0.286,2.289-1.124,3.147c-0.813,0.496-1.711,0.796-2.694,0.906c-0.983,0.111-2.293,0.007-3.931-0.313c-1.636-0.32-3.091-0.826-4.362-1.524l-2.616-1.438
|
||||
c-1.543-0.847-2.647-1.892-3.317-3.132c-0.667-1.24-0.297-2.29,1.113-3.148c0.807-0.492,1.699-0.792,2.679-0.904c0.979-0.11,2.29-0.009,3.936,0.305c1.643,0.316,3.105,0.825,4.383,1.526z M519.448,752.65c-1.295-0.71-2.733-1.147-4.316-1.305
|
||||
c-0.885-0.082-1.643,0.069-2.276,0.455c-0.612,0.373-0.818,0.839-0.618,1.4c0.304,0.847,1.117,1.631,2.436,2.355l2.617,1.438c1.302,0.717,2.744,1.15,4.325,1.3c0.877,0.086,1.636-0.065,2.275-0.455c0.607-0.369,0.81-0.834,0.609-1.395
|
||||
c-0.305-0.848-1.117-1.631-2.436-2.356l-2.616-1.438z"/>
|
||||
<path d="M520.151,745.81l2.576-1.568l5.078,3.518c0.263,0.182,0.398,0.339,0.408,0.468c0.008,0.129-0.072,0.245-0.242,0.35c-0.177,0.107-0.376,0.16-0.598,0.16c-0.221,0-0.491-0.068-0.81-0.206l-6.411-2.721z M524.318,743.271l2.576-1.567l5.079,3.519
|
||||
c0.263,0.18,0.398,0.337,0.412,0.465c0.013,0.126-0.07,0.245-0.247,0.352c-0.177,0.108-0.376,0.16-0.597,0.16s-0.492-0.068-0.811-0.205l-6.411-2.723z"/>
|
||||
<path d="M557.705,734.51l2.983,3.286l-1.865,1.136l-9.875-3.471c-0.256,0.156-0.597,0.237-1.021,0.244c-0.426,0.004-0.816-0.092-1.172-0.288c-0.357-0.195-0.542-0.417-0.554-0.661c-0.012-0.247,0.11-0.448,0.366-0.605l2.052-1.247
|
||||
c0.538-0.327,1.021-0.495,1.445-0.5c0.424-0.005,0.815,0.091,1.172,0.285c0.357,0.196,0.542,0.436,0.557,0.716c0.011,0.211-0.254,0.479-0.793,0.808l4.552,1.609l-2.628-2.895l1.766-1.074l5.152,1.356l-2.994-2.556c-0.538,0.328-0.949,0.493-1.229,0.498
|
||||
c-0.569,0.007-1.032-0.09-1.389-0.284c-0.356-0.196-0.541-0.417-0.554-0.664c-0.012-0.244,0.25-0.531,0.79-0.859l2.067-1.257c0.259-0.158,0.603-0.241,1.027-0.245c0.425-0.007,0.815,0.088,1.172,0.283c0.356,0.196,0.541,0.418,0.553,0.663
|
||||
c0.014,0.246-0.11,0.447-0.37,0.606l6.526,5.507l-1.862,1.133l-5.874-1.524z"/>
|
||||
<path d="M564.6,723.175l8.187,4.497l2.408-1.467c0.51-0.309,0.977-0.466,1.401-0.472c0.425-0.007,0.816,0.09,1.172,0.285c0.356,0.196,0.541,0.416,0.554,0.662c0.012,0.247-0.237,0.523-0.745,0.833l-6.826,4.155c-0.509,0.311-0.977,0.468-1.401,0.474
|
||||
c-0.425,0.005-0.815-0.091-1.172-0.285c-0.358-0.197-0.542-0.418-0.554-0.662c-0.013-0.247,0.236-0.523,0.746-0.833l2.408-1.467l-5.806-3.189l-1.612,0.98c-0.51,0.313-0.977,0.469-1.401,0.474c-0.424,0.005-0.815-0.088-1.172-0.285
|
||||
c-0.357-0.194-0.542-0.418-0.554-0.661c-0.012-0.245,0.235-0.524,0.745-0.835l3.622-2.204z M559.813,720.861l2.53,1.389l-2.387,1.454l-2.53-1.39l2.387-1.453z"/>
|
||||
<path d="M575.75,711.159l12.701,6.977l0.335-0.204c0.509-0.309,0.976-0.467,1.401-0.472c0.425-0.006,0.814,0.09,1.172,0.284c0.356,0.197,0.541,0.419,0.553,0.663c0.014,0.245-0.235,0.522-0.745,0.834l-2.345,1.426l-0.571-0.314
|
||||
c-0.147,0.452-0.391,0.871-0.732,1.263c-0.341,0.394-0.779,0.753-1.315,1.077c-1.51,0.919-3.242,1.377-5.197,1.369c-1.955-0.007-3.703-0.434-5.242-1.278c-1.61-0.885-2.5-1.934-2.669-3.148c-0.172-1.213,0.439-2.243,1.832-3.092
|
||||
c0.522-0.317,1.13-0.578,1.823-0.779c0.694-0.202,1.476-0.349,2.344-0.438l-2.974-1.634l-0.335,0.203c-0.509,0.311-0.976,0.468-1.4,0.472c-0.425,0.007-0.815-0.089-1.171-0.285c-0.357-0.195-0.542-0.416-0.555-0.663c-0.013-0.243,0.237-0.522,0.746-0.832
|
||||
l2.345-1.428z M583.854,717.94c-0.982-0.541-2.104-0.82-3.366-0.841c-1.263-0.02-2.316,0.229-3.159,0.74c-0.836,0.511-1.204,1.129-1.105,1.855c0.099,0.729,0.628,1.356,1.586,1.884c0.874,0.48,1.854,0.715,2.938,0.706c1.083-0.012,2.102-0.306,3.057-0.888
|
||||
c0.947-0.578,1.405-1.182,1.374-1.811c-0.031-0.631-0.472-1.18-1.324-1.646z"/>
|
||||
<path d="M589.6,710.715l4.782,2.627c0.511,0.281,0.937,0.413,1.276,0.393c0.531-0.024,1.15-0.254,1.856-0.686c1.03-0.624,1.717-1.346,2.063-2.165c0.131-0.315,0.29-0.53,0.479-0.646c0.264-0.16,0.607-0.233,1.034-0.225c0.426,0.012,0.807,0.109,1.14,0.293
|
||||
c0.311,0.17,0.475,0.383,0.491,0.632c0.044,0.396-0.254,0.967-0.893,1.709c-0.638,0.745-1.282,1.315-1.929,1.708c-1.251,0.762-2.509,1.156-3.773,1.188c-1.265,0.028-2.362-0.213-3.292-0.723l-5.244-2.881l-0.727,0.441c-0.484,0.295-0.94,0.445-1.367,0.447
|
||||
c-0.427,0.006-0.82-0.091-1.176-0.285c-0.348-0.191-0.53-0.409-0.544-0.658c-0.015-0.247,0.221-0.517,0.706-0.813l0.728-0.441l-2.153-1.184c-0.573-0.314-0.89-0.596-0.948-0.843c-0.057-0.249,0.063-0.463,0.364-0.646c0.294-0.181,0.658-0.259,1.088-0.237
|
||||
c0.43,0.021,0.933,0.189,1.506,0.503l2.153,1.183l3.722-2.266c0.484-0.297,0.94-0.445,1.367-0.449c0.426-0.003,0.818,0.09,1.175,0.287c0.35,0.192,0.529,0.411,0.544,0.657c0.014,0.246-0.221,0.518-0.706,0.812l-3.722,2.267z"/>
|
||||
<path d="M593.196,700.539l5.085,2.794c0.125-0.415,0.33-0.794,0.615-1.133c0.285-0.339,0.647-0.641,1.084-0.907c0.693-0.422,1.45-0.72,2.271-0.898c0.822-0.178,1.71-0.209,2.667-0.095c0.957,0.112,1.893,0.419,2.806,0.923l4.475,2.456
|
||||
c0.51-0.31,0.904-0.466,1.184-0.473c0.57-0.006,1.033,0.09,1.389,0.286c0.356,0.195,0.542,0.416,0.553,0.662c0.013,0.246-0.235,0.523-0.744,0.832l-2.011,1.226c-0.508,0.309-0.975,0.467-1.401,0.474c-0.424,0.004-0.815-0.091-1.171-0.287s-0.543-0.455-0.56-0.78
|
||||
c-0.008-0.166,0.242-0.405,0.753-0.715l-4.314-2.368c-0.611-0.336-1.16-0.501-1.643-0.495c-0.641,0.006-1.263,0.19-1.866,0.558c-0.445,0.271-0.737,0.567-0.875,0.89c-0.14,0.322-0.159,0.849-0.061,1.576l4.464,2.451c0.51-0.309,0.901-0.463,1.176-0.466
|
||||
c0.575-0.01,1.042,0.084,1.397,0.279c0.357,0.197,0.542,0.416,0.554,0.663c0.013,0.246-0.236,0.522-0.744,0.833l-2.011,1.224c-0.508,0.311-0.976,0.468-1.4,0.474c-0.424,0.005-0.815-0.09-1.171-0.286c-0.357-0.196-0.542-0.458-0.553-0.784
|
||||
c-0.014-0.165,0.235-0.401,0.744-0.713l-10.32-5.666l-0.335,0.203c-0.509,0.311-0.976,0.468-1.399,0.473c-0.426,0.006-0.816-0.09-1.172-0.286c-0.358-0.195-0.542-0.415-0.556-0.662c-0.011-0.245,0.236-0.523,0.746-0.832l2.345-1.429z"/>
|
||||
<path d="M618.885,693.291l-8.598,5.234c-0.483,0.293-0.939,0.443-1.366,0.446c-0.427,0.005-0.818-0.092-1.174-0.287c-0.349-0.19-0.531-0.409-0.545-0.657c-0.014-0.246,0.22-0.518,0.705-0.813l8.597-5.231c0.484-0.296,0.938-0.445,1.366-0.451
|
||||
c0.427-0.004,0.818,0.093,1.175,0.289c0.349,0.189,0.53,0.41,0.545,0.656c0.014,0.249-0.221,0.517-0.705,0.813z M623.375,695.757l-8.598,5.232c-0.485,0.295-0.938,0.446-1.361,0.454c-0.422,0.005-0.811-0.089-1.168-0.285c-0.356-0.196-0.542-0.418-0.557-0.663
|
||||
c-0.015-0.248,0.221-0.519,0.705-0.813l8.597-5.234c0.485-0.294,0.94-0.444,1.366-0.447c0.427-0.005,0.819,0.091,1.176,0.287c0.356,0.196,0.54,0.416,0.55,0.66c0.011,0.243-0.226,0.515-0.71,0.809z"/>
|
||||
<path d="M616.656,687.063l2.575-1.567l5.079,3.517c0.262,0.183,0.398,0.34,0.406,0.469c0.01,0.13-0.072,0.246-0.242,0.35c-0.177,0.106-0.375,0.161-0.597,0.161c-0.221-0.001-0.491-0.07-0.811-0.208l-6.41-2.721z M620.823,684.527l2.575-1.568l5.079,3.517
|
||||
c0.263,0.183,0.4,0.338,0.411,0.465c0.013,0.127-0.071,0.246-0.247,0.352c-0.177,0.109-0.375,0.162-0.598,0.162c-0.221,0-0.491-0.07-0.811-0.206l-6.41-2.721z"/>
|
||||
<path d="M641.445,679.406c1.076-0.1,2.077-0.063,3.002,0.104c0.925,0.168,1.782,0.467,2.564,0.898c0.845,0.465,1.432,1.012,1.759,1.643c0.329,0.633,0.306,1.273-0.065,1.927c-0.372,0.652-1.158,1.343-2.354,2.071c-1.559,0.95-3.018,1.505-4.379,1.669
|
||||
c-0.763,0.086-1.373,0.007-1.821-0.24c-0.343-0.187-0.536-0.404-0.579-0.651c-0.043-0.248,0.072-0.456,0.347-0.624c0.19-0.115,0.464-0.19,0.823-0.23c0.524-0.046,0.952-0.125,1.287-0.238c0.502-0.178,1.097-0.479,1.785-0.896c1.172-0.714,1.84-1.33,2.003-1.848
|
||||
c0.163-0.518-0.085-0.957-0.747-1.32c-0.489-0.27-1.113-0.437-1.872-0.5c-0.76-0.065-1.518-0.011-2.276,0.164c-0.434,0.103-1.029,0.352-1.783,0.747c-0.356,0.19-0.734,0.279-1.134,0.269c-0.399-0.009-0.761-0.106-1.084-0.282c-0.34-0.187-0.526-0.403-0.561-0.65
|
||||
c-0.035-0.246,0.097-0.462,0.398-0.646c0.667-0.405,1.021-0.624,1.058-0.656c0.231-0.177,0.393-0.391,0.484-0.644c0.091-0.255,0.068-0.51-0.069-0.771c-0.139-0.26-0.366-0.479-0.683-0.652c-0.504-0.278-1.126-0.4-1.871-0.374c-0.744,0.026-1.493,0.27-2.245,0.728
|
||||
c-0.969,0.588-1.378,1.224-1.227,1.894c0.042,0.198,0.044,0.341,0.005,0.425c-0.052,0.132-0.164,0.247-0.334,0.353c-0.275,0.166-0.627,0.245-1.056,0.236c-0.429-0.006-0.813-0.104-1.154-0.293c-0.534-0.291-0.753-0.76-0.655-1.404
|
||||
c0.141-0.937,0.869-1.808,2.186-2.607c1.242-0.756,2.659-1.135,4.248-1.134c1.589,0.002,2.973,0.327,4.15,0.974c0.612,0.338,1.072,0.719,1.381,1.144c0.307,0.429,0.465,0.9,0.468,1.419z"/>
|
||||
<path d="M654.152,670.653l2.617,1.436c1.55,0.851,2.654,1.898,3.316,3.138c0.661,1.241,0.287,2.288-1.124,3.147c-0.814,0.496-1.712,0.797-2.695,0.906c-0.982,0.111-2.293,0.008-3.931-0.313c-1.637-0.318-3.09-0.827-4.361-1.524l-2.618-1.438
|
||||
c-1.541-0.845-2.646-1.891-3.316-3.131c-0.667-1.24-0.297-2.29,1.115-3.148c0.806-0.49,1.698-0.791,2.678-0.906c0.979-0.109,2.29-0.006,3.935,0.307c1.644,0.315,3.105,0.824,4.384,1.527z M652.14,671.875c-1.294-0.71-2.731-1.148-4.315-1.307
|
||||
c-0.885-0.079-1.643,0.072-2.275,0.456c-0.612,0.374-0.818,0.84-0.618,1.401c0.304,0.848,1.117,1.631,2.435,2.355l2.618,1.438c1.302,0.716,2.745,1.149,4.326,1.301c0.876,0.084,1.635-0.067,2.275-0.456c0.605-0.37,0.808-0.833,0.608-1.394
|
||||
c-0.306-0.848-1.118-1.633-2.435-2.357l-2.619-1.438z"/>
|
||||
<path d="M652.844,665.033l2.577-1.566l5.078,3.517c0.263,0.183,0.398,0.337,0.406,0.469c0.009,0.128-0.071,0.245-0.243,0.349c-0.176,0.107-0.375,0.16-0.596,0.159c-0.222,0.001-0.492-0.067-0.811-0.206l-6.411-2.721z M657.012,662.497l2.575-1.568l5.079,3.517
|
||||
c0.264,0.183,0.4,0.338,0.412,0.466c0.012,0.126-0.069,0.245-0.247,0.354c-0.177,0.107-0.375,0.161-0.597,0.161c-0.222-0.001-0.491-0.07-0.811-0.207l-6.411-2.722z"/>
|
||||
<path d="M425.65,843.611l5.805,3.189l2.87-1.746c0.508-0.312,0.977-0.468,1.4-0.473c0.424-0.006,0.815,0.089,1.172,0.283c0.356,0.197,0.541,0.418,0.554,0.663c0.012,0.246-0.235,0.522-0.745,0.835l-6.073,3.693c-0.509,0.31-0.976,0.467-1.401,0.475
|
||||
c-0.424,0.004-0.815-0.09-1.172-0.287c-0.357-0.194-0.542-0.416-0.554-0.661c-0.013-0.245,0.235-0.523,0.745-0.833l1.192-0.726l-5.804-3.19l-0.964,0.587c-0.509,0.311-0.976,0.469-1.399,0.473c-0.426,0.006-0.816-0.088-1.173-0.285
|
||||
c-0.357-0.196-0.541-0.417-0.554-0.661c-0.011-0.248,0.236-0.524,0.746-0.834l0.963-0.588l-0.905-0.498c-1.037-0.567-1.568-1.241-1.593-2.02c-0.023-0.778,0.59-1.55,1.844-2.313c0.559-0.34,1.265-0.698,2.117-1.079c0.853-0.379,1.49-0.573,1.914-0.581
|
||||
c0.424-0.006,0.807,0.085,1.148,0.271c0.364,0.199,0.568,0.418,0.611,0.657c0.045,0.237-0.068,0.437-0.338,0.604c-0.125,0.075-0.34,0.174-0.644,0.296c-1.03,0.402-1.867,0.8-2.512,1.192c-0.671,0.407-1.016,0.756-1.033,1.038
|
||||
c-0.018,0.284,0.147,0.521,0.495,0.715l0.905,0.493l3.099-1.886c0.509-0.311,0.977-0.468,1.401-0.472c0.425-0.007,0.815,0.089,1.172,0.285c0.356,0.195,0.542,0.417,0.554,0.66c0.012,0.247-0.236,0.525-0.746,0.836l-3.1,1.886z"/>
|
||||
<path d="M436.359,834.335l8.187,4.496l2.408-1.466c0.509-0.31,0.976-0.468,1.401-0.474c0.425-0.004,0.816,0.092,1.172,0.287c0.357,0.196,0.542,0.417,0.553,0.662c0.013,0.248-0.236,0.524-0.745,0.833l-6.826,4.157c-0.509,0.31-0.976,0.466-1.401,0.473
|
||||
c-0.424,0.005-0.815-0.091-1.172-0.286c-0.356-0.197-0.542-0.417-0.554-0.662c-0.013-0.246,0.236-0.525,0.745-0.834l2.408-1.465l-5.805-3.19l-1.612,0.983c-0.51,0.309-0.976,0.468-1.401,0.472c-0.424,0.005-0.815-0.09-1.172-0.285
|
||||
c-0.357-0.196-0.542-0.416-0.554-0.662c-0.013-0.246,0.235-0.524,0.745-0.833l3.623-2.206z M431.572,832.021l2.53,1.39l-2.387,1.454l-2.53-1.391l2.387-1.453z"/>
|
||||
<path d="M443.906,824.513l12.702,6.976l2.408-1.467c0.508-0.309,0.976-0.467,1.401-0.473c0.424-0.004,0.815,0.091,1.171,0.286c0.356,0.196,0.542,0.419,0.553,0.663c0.013,0.245-0.235,0.522-0.744,0.833l-6.827,4.155c-0.509,0.313-0.976,0.468-1.401,0.473
|
||||
c-0.425,0.007-0.814-0.089-1.172-0.284c-0.356-0.197-0.541-0.418-0.554-0.664c-0.013-0.245,0.236-0.523,0.745-0.831l2.408-1.467l-10.32-5.669l-1.613,0.98c-0.507,0.312-0.975,0.469-1.4,0.473c-0.424,0.007-0.814-0.089-1.172-0.283
|
||||
c-0.356-0.198-0.541-0.419-0.553-0.661c-0.012-0.247,0.235-0.526,0.745-0.836l3.622-2.204z"/>
|
||||
<path d="M455.97,817.169l12.702,6.978l2.408-1.468c0.509-0.31,0.976-0.466,1.401-0.473c0.426-0.005,0.815,0.09,1.172,0.286c0.356,0.196,0.541,0.416,0.553,0.663c0.013,0.244-0.235,0.523-0.744,0.833l-6.827,4.154c-0.508,0.312-0.975,0.469-1.399,0.474
|
||||
c-0.425,0.005-0.816-0.089-1.172-0.286c-0.356-0.195-0.542-0.417-0.554-0.662c-0.013-0.245,0.236-0.524,0.745-0.834l2.408-1.465l-10.319-5.669l-1.612,0.982c-0.509,0.309-0.977,0.466-1.402,0.472c-0.424,0.007-0.814-0.09-1.172-0.287
|
||||
c-0.355-0.193-0.541-0.415-0.554-0.66c-0.012-0.246,0.236-0.523,0.746-0.832l3.622-2.206z"/>
|
||||
<path d="M478.58,811.792l-8.597,5.234c-0.483,0.295-0.939,0.444-1.366,0.447c-0.427,0.006-0.818-0.091-1.175-0.286c-0.348-0.191-0.53-0.409-0.544-0.657c-0.015-0.246,0.22-0.517,0.705-0.811l8.597-5.235c0.483-0.295,0.939-0.444,1.367-0.448
|
||||
c0.427-0.003,0.819,0.091,1.175,0.287c0.35,0.191,0.529,0.411,0.545,0.658c0.014,0.246-0.221,0.517-0.706,0.811z M483.071,814.26l-8.598,5.233c-0.484,0.295-0.938,0.443-1.36,0.451c-0.423,0.008-0.812-0.088-1.168-0.282c-0.356-0.197-0.542-0.418-0.557-0.664
|
||||
c-0.015-0.247,0.221-0.518,0.705-0.813l8.596-5.234c0.486-0.293,0.941-0.444,1.367-0.447c0.427-0.005,0.819,0.092,1.175,0.285c0.357,0.197,0.54,0.417,0.55,0.661c0.012,0.244-0.226,0.516-0.709,0.81z"/>
|
||||
<path d="M476.351,805.565l2.577-1.566l5.078,3.518c0.264,0.182,0.399,0.336,0.406,0.466c0.01,0.132-0.071,0.247-0.242,0.351c-0.176,0.107-0.375,0.163-0.596,0.16c-0.221,0-0.492-0.067-0.811-0.204l-6.411-2.724z M480.519,803.03l2.575-1.568l5.079,3.517
|
||||
c0.263,0.183,0.4,0.337,0.411,0.465c0.012,0.128-0.07,0.245-0.247,0.354s-0.375,0.161-0.597,0.159c-0.221,0.001-0.491-0.067-0.811-0.206l-6.411-2.72z"/>
|
||||
<path d="M488.62,797.293l5.356,2.942c0.111-0.507,0.325-0.967,0.641-1.38c0.317-0.411,0.733-0.776,1.25-1.09c1.393-0.847,3.142-1.253,5.247-1.217c2.104,0.035,3.963,0.494,5.571,1.381c1.541,0.845,2.366,1.833,2.479,2.962c0.113,1.128-0.587,2.153-2.097,3.072
|
||||
c-0.537,0.324-1.135,0.594-1.794,0.807c-0.66,0.213-1.381,0.372-2.165,0.48l0.597,0.327l-2.347,1.428c-0.508,0.31-0.975,0.467-1.4,0.473c-0.425,0.007-0.815-0.089-1.172-0.286c-0.356-0.195-0.541-0.415-0.554-0.661c-0.012-0.245,0.236-0.522,0.745-0.834
|
||||
l0.336-0.204l-10.321-5.669l-0.334,0.204c-0.509,0.309-0.977,0.467-1.401,0.474c-0.425,0.005-0.816-0.091-1.172-0.288c-0.356-0.192-0.541-0.415-0.554-0.659c-0.012-0.247,0.237-0.523,0.745-0.834l2.345-1.428z M504.744,799.191
|
||||
c-0.982-0.538-2.104-0.819-3.366-0.84c-1.262-0.02-2.316,0.227-3.158,0.739c-0.838,0.51-1.206,1.129-1.106,1.856c0.099,0.729,0.628,1.354,1.587,1.882c0.875,0.48,1.853,0.717,2.937,0.706c1.083-0.011,2.102-0.306,3.057-0.886c0.954-0.581,1.413-1.187,1.379-1.814
|
||||
c-0.035-0.628-0.479-1.178-1.329-1.644z"/>
|
||||
<path d="M504.223,787.796l12.7,6.977l2.409-1.466c0.509-0.31,0.976-0.467,1.401-0.474c0.424-0.005,0.815,0.092,1.172,0.287c0.356,0.196,0.542,0.416,0.553,0.663c0.013,0.246-0.235,0.523-0.745,0.832l-6.825,4.154c-0.51,0.312-0.977,0.468-1.401,0.474
|
||||
c-0.425,0.007-0.815-0.091-1.173-0.286c-0.355-0.197-0.541-0.415-0.553-0.663c-0.013-0.245,0.236-0.521,0.745-0.831l2.408-1.466l-10.32-5.67l-1.612,0.982c-0.509,0.31-0.975,0.467-1.401,0.472c-0.424,0.006-0.814-0.09-1.172-0.284
|
||||
c-0.356-0.195-0.541-0.418-0.554-0.663c-0.012-0.245,0.237-0.522,0.745-0.835l3.623-2.203z"/>
|
||||
<path d="M524.066,780.944l8.188,4.496c0.507-0.309,0.975-0.467,1.4-0.472c0.424-0.007,0.815,0.089,1.171,0.284c0.356,0.197,0.542,0.417,0.555,0.663c0.012,0.245-0.236,0.523-0.745,0.832l-2.011,1.225l-0.569-0.313c-0.261,0.522-0.573,0.986-0.94,1.389
|
||||
c-0.367,0.406-0.785,0.751-1.256,1.037c-0.659,0.402-1.395,0.659-2.208,0.772c-0.813,0.114-1.65,0.096-2.513-0.051c-0.621-0.106-1.246-0.334-1.875-0.678l-5.128-2.817l-0.335,0.204c-0.509,0.31-0.976,0.468-1.4,0.473c-0.425,0.006-0.815-0.091-1.172-0.285
|
||||
c-0.356-0.196-0.542-0.416-0.553-0.662c-0.012-0.245,0.236-0.523,0.745-0.834l2.346-1.429l7.093,3.897c0.504,0.277,0.977,0.419,1.419,0.423c0.443,0.005,0.876-0.121,1.301-0.382c0.406-0.246,0.746-0.563,1.023-0.952c0.279-0.387,0.511-0.929,0.701-1.618
|
||||
l-4.862-2.671l-0.733,0.446c-0.509,0.311-0.977,0.466-1.401,0.472s-0.815-0.09-1.172-0.285c-0.356-0.195-0.541-0.417-0.554-0.664c-0.011-0.243,0.236-0.522,0.745-0.832l2.743-1.669z"/>
|
||||
<path d="M543.425,776.688l-8.27,5.034c0.825,0.212,1.694,0.259,2.606,0.14c0.911-0.115,1.822-0.451,2.733-1.006c0.746-0.455,1.55-1.163,2.413-2.12c0.356-0.397,0.632-0.654,0.83-0.773c0.268-0.163,0.605-0.239,1.013-0.227c0.407,0.01,0.781,0.11,1.121,0.296
|
||||
c0.31,0.169,0.474,0.373,0.494,0.612c0.023,0.316-0.342,0.854-1.097,1.615c-0.758,0.757-1.604,1.424-2.54,1.993c-1.61,0.98-3.436,1.469-5.479,1.465c-2.041-0.001-3.846-0.433-5.418-1.297c-1.671-0.918-2.511-1.983-2.514-3.196
|
||||
c-0.006-1.211,0.674-2.232,2.036-3.062c0.817-0.496,1.74-0.86,2.765-1.09c1.026-0.23,1.902-0.337,2.631-0.323c1.044,0.026,2.144,0.181,3.295,0.456c0.798,0.196,1.585,0.508,2.36,0.933l1.021,0.55z M538.824,776.729c-0.992-0.186-1.904-0.22-2.741-0.101
|
||||
c-0.835,0.117-1.599,0.386-2.288,0.807c-0.684,0.415-1.105,0.869-1.268,1.355c-0.162,0.489-0.06,1.018,0.307,1.585l5.989-3.646z"/>
|
||||
<path d="M536.667,768.85l2.575-1.568l5.08,3.519c0.261,0.182,0.397,0.337,0.405,0.467c0.01,0.13-0.071,0.247-0.24,0.35c-0.178,0.109-0.376,0.163-0.599,0.162c-0.221-0.001-0.49-0.07-0.81-0.207l-6.411-2.722z M540.833,766.313l2.576-1.566l5.08,3.518
|
||||
c0.262,0.182,0.4,0.337,0.411,0.465c0.013,0.127-0.07,0.244-0.247,0.351c-0.177,0.108-0.375,0.162-0.597,0.162c-0.222,0.002-0.493-0.069-0.811-0.207l-6.412-2.722z"/>
|
||||
<path d="M555.92,756.687l9.988,12.989c0.252,0.328,0.375,0.564,0.369,0.714c-0.003,0.192-0.126,0.363-0.367,0.508c-0.272,0.167-0.625,0.245-1.055,0.24c-0.43-0.008-0.793-0.092-1.087-0.255c-0.209-0.114-0.439-0.331-0.685-0.649l-9.986-12.99
|
||||
c-0.248-0.325-0.372-0.558-0.371-0.704c0.014-0.196,0.14-0.365,0.376-0.51c0.275-0.17,0.626-0.25,1.053-0.245c0.425,0.008,0.786,0.091,1.081,0.252c0.209,0.114,0.438,0.331,0.683,0.65z"/>
|
||||
<path d="M573.999,754.927l-10.869,1.618c-0.547,0.085-0.96,0.115-1.241,0.091c-0.277-0.024-0.546-0.109-0.806-0.253c-0.328-0.181-0.509-0.395-0.543-0.649c-0.034-0.253,0.087-0.464,0.362-0.63c0.171-0.104,0.544-0.202,1.123-0.294l16.107-2.396l-3.323,9.42
|
||||
c-0.122,0.342-0.267,0.565-0.437,0.669c-0.275,0.167-0.633,0.248-1.072,0.241c-0.438-0.006-0.827-0.101-1.163-0.286c-0.259-0.145-0.418-0.294-0.476-0.454c-0.058-0.157-0.026-0.397,0.094-0.72l2.243-6.356z"/>
|
||||
<path d="M344.934,927.463l10.864-1.621c0.548-0.087,0.96-0.116,1.238-0.091c0.278,0.025,0.547,0.107,0.806,0.25c0.329,0.18,0.512,0.401,0.549,0.654c0.038,0.256-0.078,0.466-0.346,0.628c-0.177,0.107-0.559,0.205-1.145,0.293l-16.097,2.403l3.312-9.425
|
||||
c0.128-0.338,0.278-0.562,0.448-0.665c0.275-0.166,0.633-0.247,1.072-0.241c0.439,0.007,0.824,0.1,1.152,0.281c0.259,0.142,0.418,0.294,0.475,0.453c0.057,0.158,0.026,0.4-0.095,0.72l-2.234,6.36z"/>
|
||||
<path d="M355.301,911.906l9.988,12.988c0.252,0.328,0.375,0.565,0.37,0.713c-0.005,0.195-0.127,0.365-0.367,0.511c-0.272,0.165-0.625,0.245-1.055,0.238c-0.43-0.007-0.794-0.093-1.089-0.255c-0.209-0.115-0.438-0.332-0.682-0.647l-9.987-12.991
|
||||
c-0.247-0.325-0.371-0.56-0.371-0.703c0.015-0.198,0.14-0.368,0.376-0.513c0.276-0.167,0.627-0.248,1.054-0.241c0.425,0.005,0.787,0.088,1.08,0.252c0.21,0.114,0.438,0.33,0.683,0.648z"/>
|
||||
<path d="M370.366,908.435l-0.718-0.396l2.345-1.425c0.509-0.313,0.976-0.47,1.4-0.474c0.424-0.006,0.815,0.089,1.172,0.285c0.355,0.196,0.541,0.419,0.553,0.663c0.013,0.244-0.236,0.522-0.746,0.833l-0.334,0.201l8.689,4.775c0.837,0.459,1.421,0.952,1.748,1.477
|
||||
c0.328,0.525,0.409,1.098,0.245,1.721c-0.165,0.622-0.633,1.167-1.405,1.637l-2.276,1.386c-0.484,0.294-0.938,0.444-1.366,0.447c-0.427,0.006-0.814-0.089-1.163-0.279c-0.356-0.196-0.542-0.416-0.556-0.664c-0.014-0.248,0.221-0.518,0.707-0.813l2.223-1.354
|
||||
c0.616-0.374,0.895-0.774,0.838-1.196c-0.057-0.422-0.387-0.798-0.99-1.131l-1.16-0.636c-0.106,0.457-0.306,0.871-0.597,1.246c-0.292,0.374-0.68,0.708-1.166,1.002c-1.368,0.835-3.055,1.235-5.062,1.201c-2.007-0.032-3.804-0.487-5.397-1.361
|
||||
c-1.6-0.879-2.481-1.896-2.641-3.055c-0.16-1.156,0.443-2.15,1.812-2.984c0.51-0.31,1.085-0.558,1.723-0.743c0.637-0.184,1.344-0.305,2.123-0.362z M374.944,910.948c-0.88-0.483-1.919-0.738-3.114-0.757c-1.194-0.023-2.176,0.2-2.943,0.667
|
||||
c-0.769,0.469-1.103,1.046-1.004,1.733c0.099,0.689,0.59,1.276,1.47,1.761c0.888,0.487,1.929,0.741,3.12,0.763c1.191,0.019,2.171-0.207,2.938-0.673c0.768-0.467,1.104-1.045,1.009-1.729c-0.096-0.689-0.587-1.275-1.476-1.765z"/>
|
||||
<path d="M385.443,902.804l-10.869,1.615c-0.548,0.087-0.961,0.118-1.24,0.092c-0.278-0.022-0.547-0.107-0.806-0.25c-0.328-0.18-0.509-0.397-0.543-0.651c-0.034-0.253,0.086-0.464,0.362-0.631c0.17-0.105,0.543-0.202,1.122-0.294l16.109-2.396l-3.325,9.42
|
||||
c-0.121,0.344-0.266,0.567-0.437,0.67c-0.274,0.168-0.63,0.248-1.071,0.242c-0.439-0.007-0.827-0.104-1.164-0.286c-0.26-0.144-0.418-0.295-0.475-0.453c-0.058-0.159-0.026-0.4,0.093-0.721l2.243-6.356z"/>
|
||||
<path d="M337.323,965.19l10.863-1.62c0.548-0.086,0.961-0.117,1.239-0.092c0.277,0.024,0.547,0.108,0.806,0.25c0.329,0.181,0.512,0.399,0.549,0.654c0.038,0.255-0.077,0.465-0.346,0.629c-0.176,0.106-0.558,0.204-1.145,0.293l-16.096,2.402l3.313-9.426
|
||||
c0.128-0.338,0.278-0.56,0.448-0.663c0.274-0.167,0.631-0.248,1.071-0.241c0.44,0.006,0.826,0.101,1.152,0.28c0.26,0.143,0.419,0.294,0.476,0.453c0.059,0.159,0.027,0.399-0.095,0.72l-2.233,6.36z"/>
|
||||
<path d="M347.691,949.631l9.988,12.991c0.251,0.329,0.374,0.566,0.369,0.716c-0.005,0.192-0.126,0.361-0.367,0.509c-0.273,0.165-0.625,0.245-1.056,0.236c-0.43-0.006-0.793-0.092-1.088-0.254c-0.209-0.116-0.437-0.332-0.683-0.647l-9.987-12.989
|
||||
c-0.247-0.328-0.371-0.562-0.37-0.706c0.015-0.195,0.139-0.368,0.376-0.511c0.276-0.167,0.627-0.249,1.053-0.243c0.425,0.006,0.787,0.09,1.081,0.25c0.21,0.116,0.438,0.333,0.683,0.648z"/>
|
||||
<path d="M364.781,947.34c-0.564,0.067-1.085,0.178-1.563,0.329c-0.478,0.152-0.912,0.348-1.303,0.586c-0.775,0.472-1.24,0.929-1.393,1.372c-0.072,0.196-0.029,0.335,0.125,0.421c0.178,0.097,0.49,0.109,0.932,0.037c0.333-0.059,0.919-0.275,1.757-0.653
|
||||
c1.545-0.691,2.689-1.136,3.432-1.334c0.973-0.265,1.931-0.353,2.869-0.27c0.94,0.083,1.722,0.294,2.35,0.638c0.851,0.47,1.246,1.055,1.185,1.755c-0.08,1.007-0.845,1.952-2.296,2.835c-0.582,0.354-1.177,0.649-1.79,0.885c-0.61,0.236-1.234,0.417-1.874,0.541
|
||||
c0.004,0.117-0.021,0.224-0.076,0.322c-0.057,0.101-0.144,0.185-0.262,0.258c-0.315,0.191-0.688,0.276-1.119,0.256c-0.431-0.021-0.935-0.189-1.509-0.504l-0.804-0.442c-0.574-0.316-0.891-0.597-0.947-0.845c-0.059-0.248,0.064-0.463,0.366-0.647
|
||||
c0.242-0.148,0.525-0.228,0.846-0.241c0.321-0.013,0.72,0.059,1.196,0.213c0.615-0.018,1.215-0.111,1.803-0.288c0.587-0.174,1.162-0.435,1.723-0.774c0.918-0.56,1.46-1.089,1.63-1.584c0.07-0.239,0.013-0.411-0.173-0.513c-0.309-0.17-0.737-0.206-1.283-0.106
|
||||
c-0.546,0.1-1.431,0.441-2.652,1.024c-1.809,0.869-3.273,1.312-4.388,1.326c-1.108,0.02-2.076-0.198-2.904-0.653c-0.852-0.468-1.257-1.041-1.214-1.72c0.048-0.927,0.738-1.793,2.071-2.605c0.462-0.282,0.959-0.525,1.49-0.729c0.529-0.205,1.096-0.367,1.701-0.489
|
||||
c0.014-0.135,0.048-0.25,0.102-0.346c0.053-0.097,0.125-0.173,0.216-0.227c0.274-0.167,0.626-0.24,1.052-0.216c0.427,0.021,0.928,0.191,1.502,0.505l0.583,0.32c0.519,0.287,0.821,0.512,0.901,0.68c0.147,0.323,0.041,0.594-0.318,0.811
|
||||
c-0.243,0.149-0.544,0.23-0.905,0.245s-0.713-0.044-1.059-0.172z"/>
|
||||
<path d="M379.574,943.988l-3.122-4.237c-0.503,0.307-0.889,0.461-1.154,0.466c-0.584,0.007-1.053-0.088-1.411-0.284c-0.357-0.195-0.542-0.419-0.554-0.662c-0.013-0.245,0.234-0.521,0.737-0.827l2.568-1.566c0.506-0.308,0.97-0.461,1.395-0.469
|
||||
c0.425-0.005,0.815,0.091,1.172,0.287c0.357,0.194,0.542,0.416,0.553,0.662c0.013,0.244-0.233,0.522-0.739,0.829l-0.336,0.203l4.821,6.547l-2.094,1.275l-11.553-2.448l-0.292,0.178c-0.506,0.308-0.971,0.464-1.396,0.47c-0.425,0.005-0.815-0.091-1.171-0.285
|
||||
c-0.356-0.196-0.542-0.417-0.555-0.662c-0.012-0.245,0.235-0.522,0.741-0.83l2.527-1.539c0.503-0.307,0.966-0.462,1.391-0.467s0.815,0.09,1.172,0.287c0.355,0.195,0.543,0.454,0.56,0.783c0.009,0.165-0.239,0.398-0.743,0.707l7.481,1.583z"/>
|
||||
<path d="M386.882,931.476l-0.719-0.395l2.344-1.427c0.51-0.311,0.977-0.469,1.401-0.473c0.425-0.007,0.816,0.088,1.172,0.284c0.357,0.195,0.542,0.416,0.554,0.662c0.012,0.244-0.236,0.522-0.745,0.835l-0.335,0.202l8.689,4.773
|
||||
c0.838,0.46,1.421,0.953,1.749,1.477c0.328,0.526,0.409,1.098,0.244,1.72s-0.634,1.169-1.406,1.638l-2.276,1.386c-0.484,0.297-0.938,0.445-1.366,0.448c-0.427,0.005-0.814-0.089-1.163-0.279c-0.356-0.195-0.542-0.419-0.557-0.664
|
||||
c-0.013-0.249,0.222-0.52,0.708-0.815l2.223-1.352c0.616-0.374,0.896-0.774,0.837-1.197c-0.056-0.421-0.387-0.799-0.99-1.13l-1.16-0.638c-0.106,0.457-0.307,0.872-0.597,1.248c-0.293,0.374-0.681,0.707-1.165,1.004c-1.369,0.831-3.055,1.232-5.063,1.199
|
||||
c-2.006-0.033-3.804-0.486-5.396-1.362c-1.601-0.88-2.479-1.896-2.641-3.054c-0.161-1.155,0.444-2.152,1.812-2.984c0.511-0.312,1.085-0.559,1.722-0.743c0.638-0.184,1.345-0.306,2.124-0.363z M391.459,933.989c-0.88-0.483-1.919-0.736-3.114-0.758
|
||||
c-1.194-0.022-2.176,0.201-2.944,0.669c-0.768,0.466-1.102,1.045-1.003,1.733c0.098,0.69,0.589,1.276,1.47,1.76c0.889,0.488,1.928,0.742,3.121,0.762c1.19,0.021,2.169-0.203,2.937-0.672c0.768-0.467,1.104-1.043,1.01-1.73c-0.096-0.688-0.588-1.274-1.476-1.764z"
|
||||
/>
|
||||
<path d="M401.959,925.846l-10.87,1.617c-0.547,0.085-0.961,0.115-1.241,0.088c-0.276-0.022-0.546-0.105-0.807-0.25c-0.327-0.18-0.508-0.396-0.543-0.65c-0.032-0.254,0.088-0.463,0.362-0.631c0.17-0.103,0.545-0.2,1.123-0.293l16.108-2.396l-3.324,9.418
|
||||
c-0.122,0.343-0.267,0.566-0.436,0.67c-0.275,0.166-0.632,0.249-1.072,0.241c-0.439-0.006-0.827-0.102-1.163-0.286c-0.259-0.144-0.417-0.294-0.475-0.453c-0.058-0.158-0.026-0.4,0.093-0.72l2.244-6.355z"/>
|
||||
</g>
|
||||
<g id="_x0034_rthBatik" style="fill:#000000;stroke:none;">
|
||||
<path d="M480.288,891.639l-27.513-14.832l11.012-6.823c2.351-1.456,4.846-2.237,7.483-2.341c2.638-0.105,5.133,0.477,7.486,1.746c1.501,0.809,2.438,1.673,2.81,2.598c0.372,0.922,0.138,1.817-0.702,2.685c1.949-0.757,3.845-1.08,5.689-0.976
|
||||
c1.844,0.11,3.675,0.653,5.493,1.634c2.572,1.388,3.788,2.881,3.649,4.486c-0.138,1.604-1.614,3.275-4.427,5.02l-10.98,6.804z M467.061,875.542l3.845,2.074l1.092-0.679c0.675-0.418,1.024-0.826,1.046-1.223c0.022-0.398-0.28-0.765-0.905-1.103
|
||||
c-0.624-0.337-1.277-0.482-1.955-0.438s-1.356,0.273-2.031,0.69l-1.092,0.678z M476.793,880.788l4.445,2.396l1.393-0.862c0.828-0.512,1.271-1.009,1.33-1.494c0.059-0.484-0.266-0.916-0.975-1.302c-0.722-0.388-1.496-0.547-2.321-0.476
|
||||
c-0.825,0.072-1.651,0.364-2.479,0.874l-1.392,0.864z"/>
|
||||
<path d="M513.589,871.006l-2.94-1.584c0.465,1.162,0.563,2.171,0.297,3.025c-0.268,0.853-0.919,1.602-1.958,2.245c-1.89,1.172-4.413,1.627-7.567,1.367c-3.155-0.259-6.238-1.201-9.25-2.823c-3.148-1.697-5.074-3.438-5.779-5.224
|
||||
c-0.706-1.787-0.082-3.282,1.872-4.493c1.008-0.624,2.181-1.054,3.523-1.284c1.342-0.231,2.906-0.273,4.695-0.124l-2.579-1.392l7.538-4.669l19.404,10.462l-7.256,4.493z M499.473,868.439c0.819,0.44,1.667,0.683,2.546,0.718c0.879,0.04,1.625-0.133,2.24-0.514
|
||||
c0.625-0.388,0.875-0.83,0.75-1.327s-0.603-0.97-1.434-1.418c-0.843-0.454-1.709-0.702-2.593-0.744c-0.887-0.04-1.636,0.129-2.25,0.511c-0.615,0.381-0.852,0.825-0.714,1.336c0.138,0.512,0.624,0.989,1.455,1.438z"/>
|
||||
<path d="M525.219,863.801l-12.255-6.605l-2.261,1.4l-7.149-3.854l2.262-1.4l-6.428-3.465l7.888-4.889l6.428,3.465l2.262-1.4l7.149,3.853l-2.262,1.402l12.255,6.608l-7.889,4.886z"/>
|
||||
<path d="M520.488,837.235c1.393,0.752,2.117,1.584,2.172,2.502c0.057,0.917-0.567,1.778-1.867,2.584c-1.311,0.813-2.769,1.235-4.373,1.271c-1.604,0.034-3.095-0.32-4.474-1.064c-1.38-0.744-2.086-1.566-2.116-2.47c-0.03-0.905,0.619-1.769,1.951-2.596
|
||||
c1.322-0.817,2.759-1.246,4.311-1.284c1.551-0.039,3.016,0.314,4.396,1.058z M537.756,856.033l-19.403-10.46l7.889-4.888l19.404,10.461l-7.89,4.887z"/>
|
||||
<path d="M549.209,848.938l-29.076-15.675l7.79-4.826l17.084,9.21l-4.096-6.051l9.246-5.728l3.556,8.604l16.149,1.669l-9.331,5.781l-10.795-1.726l7.262,3.915l-7.789,4.826z"/>
|
||||
</g>
|
||||
<g id="CSS_XSL" style="fill:#CF0E00;stroke:none;">
|
||||
<path d="M475.61,949.512c-0.75,0.024-1.409,0.108-1.979,0.247c-0.569,0.139-1.057,0.34-1.464,0.604c-0.673,0.435-0.986,0.895-0.942,1.38s0.433,0.916,1.164,1.293c0.7,0.358,1.465,0.526,2.297,0.502s1.557-0.237,2.177-0.639c0.389-0.251,0.675-0.558,0.859-0.921
|
||||
c0.183-0.364,0.27-0.779,0.259-1.247l6.632,3.409c-0.279,0.653-0.642,1.237-1.085,1.751c-0.446,0.512-0.975,0.969-1.593,1.366c-1.014,0.657-2.16,1.156-3.438,1.503c-1.278,0.344-2.656,0.524-4.135,0.541c-1.568,0.012-3.084-0.144-4.55-0.469
|
||||
c-1.464-0.322-2.813-0.801-4.043-1.434c-0.853-0.438-1.59-0.922-2.215-1.453c-0.624-0.529-1.116-1.098-1.477-1.702c-0.684-1.148-0.859-2.254-0.526-3.314c0.333-1.062,1.159-2.021,2.48-2.874c0.58-0.376,1.266-0.732,2.055-1.068
|
||||
c0.788-0.335,1.699-0.657,2.733-0.966l6.79,3.491z"/>
|
||||
<path d="M484.745,953.313l-3.409-3.788c1.332-0.163,2.458-0.361,3.377-0.594c0.918-0.235,1.592-0.489,2.024-0.769c0.352-0.228,0.537-0.443,0.555-0.649c0.018-0.205-0.124-0.385-0.424-0.54c-0.419-0.215-1.118-0.12-2.094,0.288
|
||||
c-0.329,0.139-0.589,0.245-0.782,0.318c-1.673,0.632-3.182,0.943-4.528,0.928c-1.347-0.012-2.645-0.339-3.897-0.983c-1.758-0.903-2.597-2.027-2.514-3.371c0.082-1.344,1.083-2.637,3.004-3.88c0.96-0.622,1.99-1.159,3.089-1.61
|
||||
c1.099-0.454,2.252-0.815,3.464-1.081l3.419,3.644c-1.122,0.14-2.056,0.304-2.802,0.492c-0.745,0.189-1.299,0.4-1.659,0.635c-0.3,0.193-0.464,0.393-0.492,0.592c-0.03,0.197,0.085,0.366,0.343,0.496c0.419,0.217,1.283,0.058,2.591-0.478
|
||||
c0.311-0.124,0.559-0.225,0.742-0.293c1.718-0.661,3.264-1,4.64-1.021c1.375-0.019,2.666,0.281,3.872,0.903c1.875,0.963,2.788,2.147,2.734,3.553c-0.054,1.403-1.092,2.763-3.118,4.072c-1.102,0.713-2.334,1.331-3.699,1.855c-1.365,0.528-2.844,0.954-4.437,1.281z
|
||||
"/>
|
||||
<path d="M497.945,944.771l-3.41-3.788c1.333-0.164,2.458-0.359,3.376-0.594c0.918-0.232,1.594-0.489,2.025-0.769c0.352-0.226,0.538-0.442,0.555-0.65c0.019-0.204-0.123-0.384-0.423-0.538c-0.419-0.216-1.117-0.119-2.094,0.287
|
||||
c-0.329,0.139-0.588,0.245-0.781,0.319c-1.673,0.631-3.182,0.942-4.529,0.93c-1.346-0.014-2.645-0.343-3.896-0.985c-1.759-0.903-2.597-2.026-2.515-3.371c0.083-1.346,1.084-2.636,3.004-3.879c0.961-0.623,1.99-1.159,3.089-1.612
|
||||
c1.099-0.453,2.253-0.813,3.465-1.082l3.419,3.646c-1.122,0.141-2.056,0.305-2.8,0.492c-0.746,0.189-1.3,0.401-1.661,0.635c-0.299,0.194-0.463,0.392-0.492,0.59c-0.03,0.2,0.085,0.366,0.343,0.5c0.419,0.215,1.282,0.056,2.591-0.479
|
||||
c0.311-0.125,0.559-0.224,0.742-0.293c1.719-0.661,3.264-1.001,4.639-1.02c1.375-0.021,2.666,0.282,3.873,0.9c1.875,0.965,2.787,2.149,2.735,3.553c-0.055,1.405-1.094,2.763-3.12,4.073c-1.101,0.712-2.334,1.33-3.698,1.857c-1.365,0.526-2.844,0.95-4.436,1.278z"
|
||||
/>
|
||||
<path d="M519.063,928.52c-1.066-0.549-1.619-1.253-1.652-2.113s0.472-1.631,1.52-2.308c1.047-0.679,2.318-1.059,3.809-1.141c1.49-0.082,2.771,0.152,3.838,0.7c1.067,0.55,1.619,1.254,1.653,2.116c0.033,0.86-0.478,1.632-1.534,2.314
|
||||
c-1.056,0.686-2.327,1.065-3.808,1.14c-1.483,0.077-2.758-0.159-3.826-0.709z"/>
|
||||
<path d="M528.339,922.518c-1.068-0.548-1.619-1.252-1.654-2.113c-0.033-0.86,0.474-1.63,1.521-2.308c1.047-0.678,2.317-1.057,3.809-1.14c1.49-0.081,2.771,0.151,3.838,0.7c1.067,0.55,1.618,1.255,1.653,2.115c0.033,0.86-0.478,1.633-1.534,2.316
|
||||
s-2.326,1.063-3.808,1.14c-1.482,0.075-2.757-0.161-3.825-0.711z"/>
|
||||
<path d="M537.614,916.518c-1.068-0.549-1.619-1.253-1.653-2.114c-0.034-0.861,0.472-1.632,1.52-2.308c1.048-0.678,2.317-1.058,3.809-1.141c1.491-0.081,2.771,0.152,3.838,0.699c1.068,0.551,1.62,1.256,1.654,2.116c0.032,0.861-0.478,1.634-1.534,2.317
|
||||
c-1.057,0.683-2.327,1.063-3.809,1.14c-1.482,0.075-2.756-0.161-3.825-0.71z"/>
|
||||
<path d="M557.828,907.396l-3.142-8.011l-13.188-0.834l7.478-4.839l3.342,0.673c0.417,0.08,0.792,0.163,1.126,0.248s0.641,0.174,0.921,0.267c-0.28-0.206-0.577-0.502-0.889-0.889c-0.087-0.107-0.156-0.188-0.205-0.243l-1.554-1.829l7.522-4.868l3.181,7.31
|
||||
l14.216,0.847l-7.871,5.092l-3.543-0.56c-0.354-0.061-0.708-0.135-1.063-0.225c-0.354-0.089-0.702-0.187-1.044-0.292c0.293,0.225,0.532,0.424,0.715,0.599c0.182,0.178,0.334,0.356,0.455,0.542l1.303,1.991l-7.76,5.021z"/>
|
||||
<path d="M574.484,895.249l-3.41-3.789c1.333-0.162,2.458-0.36,3.377-0.593c0.919-0.231,1.593-0.488,2.025-0.768c0.352-0.228,0.537-0.444,0.555-0.649c0.018-0.206-0.123-0.386-0.424-0.541c-0.419-0.215-1.117-0.117-2.094,0.288
|
||||
c-0.329,0.139-0.589,0.246-0.782,0.318c-1.673,0.633-3.182,0.942-4.529,0.929c-1.346-0.012-2.644-0.34-3.897-0.982c-1.757-0.904-2.596-2.027-2.513-3.372c0.083-1.344,1.083-2.637,3.004-3.879c0.961-0.624,1.99-1.159,3.09-1.614
|
||||
c1.099-0.451,2.252-0.812,3.464-1.079l3.419,3.644c-1.121,0.14-2.055,0.304-2.802,0.492c-0.745,0.19-1.298,0.401-1.659,0.635c-0.299,0.193-0.464,0.392-0.493,0.592s0.086,0.364,0.344,0.497c0.419,0.217,1.283,0.057,2.591-0.478
|
||||
c0.312-0.125,0.558-0.224,0.742-0.293c1.718-0.661,3.264-1,4.64-1.021c1.375-0.02,2.666,0.283,3.872,0.902c1.876,0.965,2.788,2.148,2.734,3.553s-1.093,2.763-3.118,4.073c-1.102,0.712-2.334,1.33-3.699,1.856s-2.843,0.951-4.436,1.279z"/>
|
||||
<path d="M590.416,886.313l-25.019-12.862l6.642-4.295l25.019,12.859l-6.642,4.298z"/>
|
||||
<path d="M605.367,872.681c-1.067-0.548-1.619-1.255-1.652-2.115c-0.034-0.862,0.472-1.63,1.52-2.308c1.048-0.68,2.317-1.058,3.809-1.141c1.49-0.081,2.771,0.152,3.837,0.701c1.068,0.549,1.619,1.253,1.654,2.113c0.032,0.861-0.478,1.635-1.533,2.317
|
||||
c-1.057,0.684-2.328,1.063-3.809,1.14c-1.482,0.077-2.756-0.16-3.825-0.708z"/>
|
||||
<path d="M614.643,866.678c-1.067-0.548-1.618-1.253-1.653-2.113c-0.034-0.861,0.473-1.631,1.52-2.309s2.317-1.058,3.809-1.141c1.491-0.082,2.771,0.152,3.838,0.703c1.069,0.548,1.619,1.253,1.652,2.113s-0.477,1.633-1.533,2.316
|
||||
c-1.057,0.684-2.326,1.064-3.808,1.14c-1.482,0.077-2.757-0.16-3.825-0.71z"/>
|
||||
<path d="M623.918,860.677c-1.068-0.549-1.62-1.253-1.652-2.114c-0.035-0.859,0.471-1.63,1.519-2.309c1.048-0.677,2.318-1.057,3.809-1.138c1.491-0.083,2.771,0.151,3.838,0.7c1.068,0.548,1.619,1.255,1.652,2.115c0.033,0.859-0.478,1.633-1.533,2.315
|
||||
c-1.057,0.684-2.326,1.063-3.809,1.141c-1.482,0.075-2.757-0.163-3.824-0.711z"/>
|
||||
<path d="M647.239,838.464c-0.749,0.025-1.408,0.108-1.977,0.246c-0.57,0.141-1.059,0.341-1.465,0.604c-0.673,0.434-0.986,0.895-0.942,1.38c0.044,0.486,0.433,0.916,1.165,1.293c0.7,0.358,1.465,0.526,2.297,0.501c0.832-0.022,1.557-0.236,2.177-0.637
|
||||
c0.389-0.254,0.675-0.56,0.859-0.923c0.183-0.363,0.269-0.777,0.258-1.244l6.632,3.407c-0.278,0.654-0.642,1.238-1.085,1.751c-0.446,0.513-0.976,0.968-1.592,1.368c-1.013,0.654-2.159,1.153-3.437,1.498c-1.278,0.347-2.657,0.527-4.135,0.543
|
||||
c-1.568,0.012-3.085-0.143-4.55-0.467s-2.813-0.802-4.043-1.434c-0.853-0.439-1.591-0.923-2.215-1.454c-0.624-0.529-1.116-1.098-1.478-1.702c-0.684-1.149-0.859-2.255-0.526-3.315c0.333-1.061,1.16-2.02,2.481-2.873c0.582-0.377,1.267-0.73,2.055-1.067
|
||||
s1.699-0.658,2.733-0.966l6.789,3.49z"/>
|
||||
<path d="M656.375,842.264l-3.411-3.788c1.333-0.164,2.458-0.36,3.377-0.594c0.918-0.232,1.593-0.488,2.024-0.768c0.352-0.229,0.538-0.444,0.556-0.649c0.018-0.205-0.123-0.385-0.425-0.538c-0.418-0.216-1.117-0.121-2.093,0.286
|
||||
c-0.329,0.139-0.589,0.245-0.782,0.318c-1.672,0.631-3.182,0.942-4.528,0.928c-1.346-0.012-2.644-0.339-3.896-0.983c-1.758-0.903-2.597-2.026-2.514-3.371c0.082-1.343,1.083-2.638,3.004-3.88c0.96-0.62,1.99-1.157,3.09-1.611c1.098-0.453,2.253-0.813,3.464-1.081
|
||||
l3.418,3.645c-1.121,0.14-2.055,0.304-2.802,0.493c-0.745,0.189-1.299,0.401-1.659,0.633c-0.301,0.193-0.464,0.392-0.494,0.591c-0.028,0.2,0.086,0.367,0.344,0.499c0.42,0.216,1.282,0.057,2.59-0.479c0.312-0.124,0.559-0.223,0.743-0.292
|
||||
c1.717-0.661,3.263-1.001,4.64-1.021c1.374-0.02,2.665,0.28,3.871,0.901c1.876,0.965,2.788,2.148,2.735,3.553c-0.054,1.405-1.094,2.762-3.119,4.073c-1.101,0.713-2.335,1.331-3.698,1.855c-1.365,0.528-2.845,0.953-4.436,1.28z"/>
|
||||
<path d="M669.574,833.723l-3.41-3.787c1.333-0.163,2.458-0.36,3.377-0.594c0.919-0.231,1.593-0.488,2.025-0.77c0.351-0.226,0.536-0.441,0.555-0.647c0.018-0.205-0.123-0.386-0.424-0.539c-0.42-0.216-1.117-0.12-2.094,0.287c-0.328,0.137-0.588,0.243-0.781,0.318
|
||||
c-1.673,0.631-3.182,0.941-4.529,0.93c-1.346-0.014-2.644-0.342-3.896-0.984c-1.757-0.904-2.597-2.027-2.514-3.372c0.082-1.344,1.083-2.638,3.004-3.881c0.96-0.62,1.989-1.156,3.089-1.61c1.099-0.453,2.253-0.813,3.464-1.081l3.418,3.645
|
||||
c-1.121,0.138-2.055,0.303-2.801,0.492c-0.745,0.189-1.3,0.402-1.66,0.635c-0.299,0.193-0.463,0.391-0.493,0.59s0.086,0.366,0.344,0.5c0.419,0.214,1.282,0.056,2.59-0.478c0.312-0.129,0.559-0.225,0.742-0.295c1.718-0.661,3.264-1.001,4.639-1.021
|
||||
c1.375-0.019,2.666,0.281,3.872,0.901c1.876,0.965,2.788,2.15,2.735,3.552c-0.054,1.405-1.093,2.765-3.118,4.075c-1.102,0.712-2.335,1.33-3.699,1.856c-1.365,0.524-2.844,0.951-4.437,1.277z"/>
|
||||
<path d="M690.693,817.472c-1.067-0.548-1.619-1.253-1.652-2.115c-0.035-0.859,0.472-1.63,1.52-2.307c1.048-0.677,2.318-1.059,3.809-1.139c1.491-0.082,2.771,0.151,3.838,0.7c1.068,0.548,1.619,1.252,1.653,2.113c0.033,0.861-0.478,1.633-1.533,2.316
|
||||
c-1.057,0.685-2.326,1.063-3.809,1.141c-1.482,0.076-2.757-0.16-3.825-0.71z"/>
|
||||
<path d="M699.968,811.47c-1.067-0.547-1.618-1.252-1.652-2.112c-0.034-0.861,0.472-1.63,1.519-2.31c1.048-0.678,2.317-1.056,3.81-1.139c1.491-0.083,2.771,0.152,3.837,0.7c1.068,0.55,1.62,1.255,1.654,2.115c0.033,0.861-0.478,1.633-1.534,2.315
|
||||
c-1.057,0.685-2.327,1.063-3.808,1.14c-1.482,0.076-2.757-0.159-3.826-0.71z"/>
|
||||
<path d="M709.243,805.47c-1.066-0.549-1.618-1.253-1.653-2.113c-0.033-0.862,0.472-1.632,1.521-2.309c1.047-0.678,2.317-1.058,3.808-1.141c1.491-0.08,2.771,0.153,3.838,0.7c1.067,0.55,1.619,1.254,1.653,2.116c0.033,0.861-0.479,1.632-1.534,2.316
|
||||
c-1.057,0.685-2.327,1.063-3.808,1.139c-1.482,0.076-2.757-0.161-3.825-0.709z"/>
|
||||
<path d="M729.457,796.35l-3.142-8.011l-13.188-0.835l7.478-4.838l3.343,0.671c0.417,0.081,0.792,0.164,1.125,0.249c0.334,0.085,0.641,0.174,0.922,0.267c-0.28-0.207-0.578-0.503-0.89-0.888c-0.087-0.107-0.154-0.188-0.204-0.245l-1.555-1.827l7.523-4.868
|
||||
l3.182,7.309l14.215,0.845l-7.871,5.095l-3.543-0.562c-0.354-0.06-0.708-0.134-1.063-0.223c-0.353-0.09-0.702-0.188-1.044-0.292c0.294,0.224,0.533,0.423,0.715,0.6c0.183,0.175,0.334,0.354,0.455,0.541l1.303,1.991l-7.76,5.021z"/>
|
||||
<path d="M746.113,784.2l-3.41-3.788c1.333-0.163,2.458-0.359,3.376-0.592c0.919-0.233,1.593-0.489,2.025-0.77c0.352-0.226,0.537-0.442,0.555-0.647c0.018-0.206-0.123-0.388-0.424-0.541c-0.418-0.215-1.117-0.119-2.094,0.287c-0.328,0.139-0.589,0.243-0.781,0.319
|
||||
c-1.672,0.632-3.182,0.94-4.529,0.929c-1.346-0.013-2.644-0.339-3.896-0.983c-1.759-0.904-2.597-2.027-2.515-3.372c0.083-1.343,1.084-2.637,3.005-3.879c0.961-0.623,1.99-1.159,3.089-1.612c1.098-0.452,2.253-0.813,3.464-1.081l3.419,3.645
|
||||
c-1.121,0.14-2.055,0.303-2.8,0.492c-0.746,0.188-1.301,0.401-1.661,0.635c-0.3,0.194-0.463,0.392-0.492,0.59c-0.029,0.2,0.085,0.366,0.344,0.499c0.419,0.216,1.282,0.057,2.591-0.479c0.311-0.125,0.558-0.224,0.742-0.293c1.718-0.66,3.264-1.001,4.639-1.021
|
||||
s2.666,0.28,3.873,0.9c1.875,0.967,2.787,2.149,2.734,3.554c-0.054,1.405-1.093,2.763-3.119,4.072c-1.101,0.713-2.334,1.333-3.699,1.857c-1.365,0.526-2.844,0.95-4.436,1.278z"/>
|
||||
<path d="M762.045,775.266l-25.018-12.864l6.641-4.295l25.018,12.86l-6.641,4.299z"/>
|
||||
</g>
|
||||
<g id="_x0032_ndBatik" style="fill:#000000;stroke:none;">
|
||||
<path d="M494.437,733.442L445.5,707.061l19.586-12.136c4.182-2.591,8.62-3.977,13.309-4.163c4.693-0.187,9.13,0.849,13.314,3.104c2.671,1.439,4.337,2.98,5,4.621c0.661,1.64,0.245,3.234-1.251,4.779c3.468-1.348,6.841-1.926,10.12-1.734
|
||||
c3.28,0.193,6.536,1.161,9.77,2.902c4.574,2.467,6.737,5.127,6.492,7.979c-0.246,2.854-2.871,5.829-7.874,8.93l-19.53,12.101z M470.91,704.812l6.838,3.687l1.942-1.202c1.201-0.745,1.822-1.47,1.861-2.177c0.039-0.707-0.497-1.362-1.61-1.961
|
||||
c-1.111-0.6-2.272-0.859-3.478-0.781c-1.206,0.078-2.412,0.487-3.611,1.232l-1.943,1.202z M488.219,714.144l7.907,4.263l2.477-1.535c1.473-0.911,2.262-1.797,2.365-2.658c0.104-0.861-0.473-1.631-1.735-2.313c-1.284-0.692-2.66-0.975-4.128-0.849
|
||||
c-1.466,0.129-2.937,0.646-4.408,1.559l-2.478,1.534z"/>
|
||||
<path d="M553.667,696.745l-5.229-2.819c0.827,2.069,1.002,3.862,0.528,5.381c-0.475,1.519-1.636,2.85-3.483,3.996c-3.363,2.082-7.849,2.893-13.46,2.432s-11.095-2.138-16.45-5.024c-5.6-3.02-9.025-6.115-10.279-9.289c-1.255-3.176-0.146-5.839,3.329-7.993
|
||||
c1.792-1.111,3.881-1.87,6.268-2.284c2.386-0.411,5.169-0.485,8.348-0.222l-4.583-2.471l13.406-8.307l34.511,18.606l-12.905,7.994z M528.56,692.179c1.456,0.785,2.965,1.212,4.528,1.278c1.563,0.069,2.891-0.237,3.984-0.915c1.112-0.688,1.558-1.476,1.334-2.36
|
||||
c-0.223-0.882-1.072-1.724-2.551-2.521c-1.5-0.809-3.038-1.25-4.612-1.323c-1.575-0.073-2.909,0.229-4,0.906c-1.094,0.677-1.516,1.471-1.269,2.377c0.244,0.91,1.107,1.761,2.586,2.559z"/>
|
||||
<path d="M574.353,683.929l-21.797-11.75l-4.022,2.491l-12.715-6.854l4.022-2.492l-11.433-6.164l14.032-8.693l11.433,6.163l4.021-2.491l12.715,6.854l-4.021,2.492l21.797,11.751l-14.031,8.692z"/>
|
||||
<path d="M565.938,636.678c2.478,1.337,3.764,2.819,3.863,4.451c0.099,1.63-1.009,3.163-3.322,4.594c-2.331,1.446-4.925,2.2-7.777,2.26c-2.852,0.063-5.503-0.569-7.958-1.892c-2.454-1.322-3.709-2.786-3.764-4.394c-0.054-1.607,1.102-3.146,3.473-4.612
|
||||
c2.35-1.456,4.905-2.219,7.665-2.287c2.759-0.07,5.365,0.559,7.82,1.88z M596.651,670.114l-34.512-18.605l14.032-8.693l34.512,18.605l-14.031,8.693z"/>
|
||||
<path d="M617.022,657.494l-51.714-27.88l13.853-8.583l30.386,16.382l-7.283-10.764l16.443-10.187l6.325,15.3l28.723,2.974l-16.594,10.279l-19.202-3.068l12.916,6.964l-13.852,8.583z"/>
|
||||
</g>
|
||||
<g id="BigBatik" style="fill:#000000;stroke:none;">
|
||||
<path d="M291.621,656.508l-112.936-60.217l45.202-27.697c9.651-5.916,19.892-9.082,30.717-9.506c10.829-0.426,21.069,1.938,30.724,7.086c6.165,3.287,10.01,6.803,11.539,10.546c1.525,3.744,0.565,7.381-2.885,10.909c8.002-3.078,15.787-4.396,23.354-3.958
|
||||
c7.57,0.439,15.084,2.646,22.547,6.625c10.557,5.63,15.55,11.7,14.984,18.212c-0.567,6.511-6.625,13.305-18.172,20.381l-45.073,27.619z M237.326,591.158l15.781,8.415l4.483-2.746c2.771-1.699,4.205-3.354,4.294-4.969c0.09-1.612-1.146-3.106-3.712-4.475
|
||||
c-2.566-1.369-5.245-1.962-8.028-1.784s-5.565,1.115-8.336,2.812l-4.483,2.747z M277.273,612.458l18.247,9.729l5.717-3.502c3.397-2.081,5.218-4.103,5.457-6.068c0.24-1.967-1.092-3.725-4.004-5.278c-2.962-1.579-6.139-2.225-9.527-1.937
|
||||
c-3.385,0.29-6.777,1.473-10.174,3.553l-5.716,3.504z"/>
|
||||
<path d="M428.313,572.746l-12.067-6.434c1.907,4.723,2.311,8.816,1.218,12.279c-1.098,3.467-3.776,6.509-8.039,9.121c-7.76,4.755-18.115,6.604-31.064,5.551c-12.949-1.055-25.604-4.877-37.964-11.467c-12.923-6.891-20.83-13.959-23.722-21.205
|
||||
c-2.896-7.247-0.336-13.328,7.682-18.24c4.138-2.536,8.958-4.272,14.465-5.214c5.507-0.94,11.929-1.11,19.266-0.507l-10.579-5.641l30.938-18.959l79.647,42.468l-29.782,18.247z M370.372,562.324c3.36,1.791,6.842,2.766,10.45,2.918
|
||||
c3.608,0.154,6.671-0.543,9.194-2.09c2.565-1.57,3.594-3.368,3.077-5.387c-0.513-2.018-2.473-3.938-5.886-5.758c-3.46-1.844-7.012-2.852-10.643-3.019c-3.636-0.167-6.714,0.524-9.235,2.068c-2.522,1.546-3.497,3.357-2.928,5.427c0.563,2.075,2.556,4.02,5.97,5.84
|
||||
z"/>
|
||||
<path d="M476.051,543.496l-50.304-26.822l-9.281,5.688l-29.343-15.646l9.281-5.687l-26.385-14.067l32.382-19.843l26.386,14.067l9.281-5.687l29.343,15.646l-9.281,5.688l50.304,26.82l-32.382,19.844z"/>
|
||||
<path d="M456.633,435.645c5.717,3.048,8.688,6.434,8.916,10.156c0.23,3.723-2.327,7.22-7.665,10.49c-5.382,3.298-11.368,5.018-17.95,5.157c-6.583,0.139-12.701-1.298-18.366-4.319c-5.664-3.02-8.559-6.362-8.685-10.029c-0.125-3.668,2.544-7.18,8.013-10.531
|
||||
c5.424-3.324,11.321-5.061,17.689-5.218c6.368-0.158,12.383,1.273,18.047,4.294z M527.511,511.963l-79.647-42.468l32.382-19.842l79.647,42.467l-32.382,19.843z"/>
|
||||
<path d="M574.524,483.154l-119.347-63.635l31.97-19.59l70.126,37.391l-16.811-24.566L578.41,389.5l14.599,34.926l66.286,6.784l-38.295,23.465l-44.315-7.006l29.81,15.895l-31.97,19.589z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,119 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd">
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Copyright (C) The Apache Software Foundation. All rights reserved. -->
|
||||
<!-- -->
|
||||
<!-- This software is published under the terms of the Apache Software License -->
|
||||
<!-- version 1.1, a copy of which has been included with this distribution in -->
|
||||
<!-- the LICENSE file. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Test description here -->
|
||||
<!-- -->
|
||||
<!-- @author vincent.hardy@eng.sun.com -->
|
||||
<!-- @version $Id: batik70.svg,v 1.1 2001/06/10 01:46:29 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Batik, 70's Mood</title>
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent" style="overflow:hidden">
|
||||
|
||||
<defs>
|
||||
<pattern id="backgroundPattern" patternUnits="userSpaceOnUse"
|
||||
x="0" y="0" width="20" height="10" style="overflow:hidden">
|
||||
<rect x="0" y="0" width="10" height="10" fill="rgb(110, 200, 255)" fill-opacity=".5" />
|
||||
<rect x="0" y="-5" width="8" height="20" fill="none" stroke="rgb(204, 102, 53)" stroke-width="1"/>
|
||||
</pattern>
|
||||
|
||||
<g id="batik">
|
||||
<path id="Batik_B" d="M50.037,12.141l0.463,3.236c0,1.465-0.039,2.484-0.115,3.063s-0.344,1.213-0.803,1.906l-1.834,3.234l-2.521,3.814c4.395,6.24,7.326,10.824,8.791,13.75l3.008,6.355l1.967,6.701c0.848,3.16,1.271,6.279,1.271,9.361
|
||||
c0,5.008-0.869,9.57-2.604,13.691s-4.145,7.453-7.229,9.996c-3.086,2.543-6.998,4.449-11.74,5.719s-9.543,1.906-14.4,1.906c-3.855,0-7.096-0.27-9.717-0.809c-3.238-0.461-5.688-1.193-7.346-2.195c-1.658-1-3.123-2.195-4.395-3.582
|
||||
C1.561,86.902,0.617,85.055,0,82.742c0-5.082,1.117-10.436,3.355-16.061l6.709-17.68c2.234-6.086,3.354-11.748,3.354-16.986c-0.232-2.156-0.617-4.197-1.156-6.123l-1.852-6.471c-0.695-2.311-2.121-5.008-4.279-8.09l-0.115-0.924V9.715
|
||||
c0-3.158,1.309-5.238,3.928-6.24c4.775-1.232,9.859-1.85,15.252-1.85c6.316,0,11.746,0.828,16.291,2.484s7.395,4.334,8.551,8.031z M29.518,12.625c-0.846,0.461-1.268,1.189-1.268,2.186c0,0.691,0.326,1.668,0.979,2.934s1.096,2.434,1.326,3.506
|
||||
c1.074-0.383,1.938-1.148,2.59-2.299s0.98-2.416,0.98-3.797c-0.23-0.842-0.787-1.512-1.67-2.012s-1.863-0.672-2.938-0.518z M30.537,33.979L29.496,45.66c0,0.617,0.203,1.119,0.609,1.504l1.826,0.463l2.193-0.463c0.645-0.23,1.363-1.039,2.152-2.428
|
||||
c0.645-1.387,0.969-3.045,0.969-4.975V38.49c0-0.539-0.078-1.041-0.232-1.504c0-0.617-0.502-1.389-1.504-2.314c-1.004-0.77-1.967-1.156-2.891-1.156c-0.771,0-1.465,0.154-2.082,0.463z"/>
|
||||
<path id="Batik_A" d="M105.245,27.799c0,2.086-0.695,5.736-2.082,10.951c-1.389,5.215-2.082,8.828-2.082,10.836c0,2.473,0.805,5.389,2.414,8.748c1.609,3.361,3.105,7.07,4.486,11.125c1.379,4.057,2.07,8.17,2.07,12.34
|
||||
c0,2.086-0.232,4.289-0.693,6.605c-2.082,2.086-4.898,3.787-8.445,5.1c-3.471,1.08-7.133,1.621-10.988,1.621h-4.049c-0.695,0-1.254-0.039-1.678-0.115c-0.424-0.08-1.561-0.311-3.41-0.697c-1.234-0.156-2.432-0.387-3.588-0.697
|
||||
c-1.156-0.309-2.391-0.734-3.699-1.277c-2.777-1.625-4.666-3.561-5.668-5.807l-1.967-5.807l-0.463-5.344l0.115-4.412c0-1.006,0.27-2.477,0.811-4.414c0-2.941,0.539-5.729,1.619-8.361c0.617-1.471,1.387-2.941,2.313-4.412s2.197-3.252,3.818-5.344
|
||||
c3.006-3.871,7.4-6.773,13.186-8.709c1.773-1.084,2.66-2.672,2.66-4.762c0-0.773-0.252-1.588-0.752-2.439c-0.502-0.852-1.408-1.277-2.719-1.277c-0.539,0-1.156,0.176-1.85,0.525c-0.695,0.35-1.621,1.883-2.777,4.598c-0.926,2.563-1.967,4.078-3.123,4.543
|
||||
l-2.66,0.465c-1.156,0-2.141-0.211-2.949-0.637c-0.811-0.424-1.447-1.137-1.908-2.141l-0.348-2.084l-0.115-1.621c0-2.314,0.676-4.494,2.027-6.539s3.688-3.762,7.01-5.15c3.32-1.389,6.836-2.084,10.545-2.084c1.699,0,2.914,0.039,3.648,0.115
|
||||
c0.734,0.078,1.932,0.385,3.592,0.922s3.186,1.266,4.576,2.186c1.387,0.691,2.428,1.842,3.123,3.451z M86.477,49.361c-1.164,0.541-2.172,1.582-3.023,3.123c-0.621,1.467-0.932,3.164-0.932,5.09l0.115,2.082c0,2.623,1.279,3.934,3.84,3.934
|
||||
c0.697-1.002,1.201-2.467,1.514-4.396l0.465-6.014v-3.818c-0.311-0.385-0.543-0.578-0.697-0.578l-1.281,0.578z"/>
|
||||
<path id="Batik_T" d="M140.626,11.268l0.578,2.082c0,1.158-0.605,2.797-1.813,4.918c-1.209,2.121-1.813,3.607-1.813,4.455c0,0.541,0.232,1.158,0.701,1.852c0.156,0.156,1.131,0.465,2.924,0.926h2.529c1.445,0,2.609,0.379,3.494,1.135
|
||||
l0.602,2.727v1.816c0,0.928-0.271,1.777-0.811,2.549c-0.311,0.232-2.088,0.656-5.332,1.273c-2.627,0-4.172,0.926-4.635,2.777l-0.348,3.008v1.273c0,4.783,2.07,11.225,6.211,19.324c4.141,8.102,6.211,14.234,6.211,18.398c0,1.391-0.078,2.393-0.23,3.008
|
||||
l-0.463,2.662c-0.078,0.85-0.541,2.084-1.389,3.703c-1.389,2.314-3.395,3.992-6.016,5.033s-5.396,1.563-8.326,1.563c-3.625,0-7.326-0.617-11.104-1.852c-2.082-1.387-3.74-3.277-4.975-5.67c-1.08-2.545-1.619-5.168-1.619-7.869c0-2.314,0.191-4.09,0.574-5.324
|
||||
l4.25-13.076c0.467-1.465,0.934-2.99,1.402-4.572s0.877-3.182,1.229-4.803c0.352-1.619,0.604-3.066,0.76-4.34s0.234-2.604,0.234-3.992c0-2.777-0.271-5.207-0.811-7.291c-0.463-0.693-2.006-1.387-4.629-2.082c-2.625-0.695-3.936-1.93-3.936-3.705v-2.082
|
||||
l0.596-2.547c0.238-0.926,0.914-1.426,2.027-1.504l1.072,0.115c1.271,0,2.266-0.346,2.98-1.041c0.715-0.693,1.074-1.504,1.074-2.43c0-0.848,0-1.465,0-1.852c0-0.617-0.355-1.582-1.066-2.895l-0.934-3.24c0-1.234,0.424-2.275,1.271-3.125
|
||||
c2.695-1.465,5.66-2.199,8.896-2.199c3.928,0,7.471,0.965,10.629,2.893z"/>
|
||||
<path id="Batik_I" d="M180.858,27.877l0.344,2.777c0,1.852-0.855,4.857-2.563,9.021c-1.709,4.164-2.563,7.25-2.563,9.254v2.43c0,3.701,1.77,9.195,5.313,16.482c3.541,7.287,5.313,12.473,5.313,15.557c0,2.16-0.654,4.318-1.961,6.479
|
||||
s-3.689,4.203-7.146,6.129c-2.613,1.078-5.535,1.619-8.762,1.619c-4.383,0-8.033-0.965-10.953-2.891c-1.844-2.004-3.229-3.971-4.15-5.898l-0.807-3.008l-0.346-3.355c0-3.547,1.666-8.943,5-16.193c3.332-7.248,5-12.723,5-16.424v-2.43v-1.734
|
||||
c0-1.695-0.896-4.318-2.688-7.865c-1.793-3.547-2.688-6.092-2.688-7.635c0-1.078,0.324-2.1,0.977-3.064s1.936-1.986,3.852-3.066l4.139-0.463l4.254-0.348c2.217,0,4.205,0.348,5.963,1.043s3.248,1.889,4.473,3.584z M169.567,0c2.52,0,4.965,0.852,7.332,2.553
|
||||
s3.553,3.75,3.553,6.145c0,3.094-0.783,5.896-2.35,8.408c-1.566,2.514-3.609,3.77-6.129,3.77c-3.285,0-6.131-0.889-8.537-2.666s-3.609-4.176-3.609-7.191c0-2.783,0.896-5.314,2.691-7.596S166.663,0,169.567,0z"/>
|
||||
<path id="Batik_K" d="M216.409,4.965v2.193v3.35c-0.084,0.387-0.252,1.098-0.504,2.137s-0.545,1.982-0.881,2.828c-0.422,1.848-0.715,3.119-0.883,3.811c-0.504,2.156-0.756,3.541-0.756,4.156l-0.352,5.773c0,3.313,0.469,6.699,1.41,10.162
|
||||
c1.309-0.922,3.391-4.27,6.242-10.041s6.127-8.658,9.826-8.658h1.387l2.08,0.463c1.85,0,3.449,0.213,4.797,0.635c1.348,0.424,2.447,1.328,3.295,2.711c0,2.924-2.082,5.732-6.246,8.424s-6.709,4.691-7.633,5.998l-2.314,2.652c-0.463,0.539-0.732,1.424-0.809,2.654
|
||||
l0.346,1.621c5.629,4.709,9.85,9.379,12.664,14.012s4.723,8.627,5.727,11.984c1.002,3.359,1.504,6.582,1.504,9.668c0,3.012-0.463,6.021-1.389,9.031c-0.85,1.313-2.201,2.434-4.053,3.359c-1.621,0.693-3.59,1.271-5.904,1.736c-2.934,0-5.363-0.367-7.293-1.1
|
||||
c-1.93-0.734-3.475-2.145-4.631-4.23c-0.311-0.926-0.6-2.027-0.869-3.303c-0.27-1.273-0.482-2.375-0.637-3.303l-0.375-7.418v-3.824l0.375-3.939c0-3.398-0.24-6.373-0.721-8.924c-0.48-2.549-1.602-5.215-3.363-7.996l-1.08-0.463c-0.391,0-0.818,0.232-1.283,0.695
|
||||
l-0.701,1.623c0,3.789,0.607,9.143,1.824,16.061c1.215,6.92,1.824,11.615,1.824,14.088c0,2.32-0.232,4.756-0.693,7.307c-0.461,1.469-1.75,2.688-3.867,3.652S208.03,96,205.491,96c-3.539,0-6.656-0.619-9.35-1.854c-1.617-1.004-2.809-2.512-3.578-4.521
|
||||
s-1.154-4.252-1.154-6.725v-3.479l0.463-3.016l0.346-2.318c0-0.773,0.191-1.584,0.578-2.436l4.283-15.303c2.469-8.813,3.705-16.078,3.705-21.799c0-3.398-0.27-6.451-0.805-9.158l-4.945-17.508c0-1.469,0.268-2.744,0.807-3.826c0.461-1.236,1.422-2.396,2.883-3.479
|
||||
L203.22,0h3.459c2.316,0,4.285,0.348,5.906,1.039c1.621,0.693,2.896,2.002,3.824,3.926z"/>
|
||||
</g>
|
||||
|
||||
<filter id="shadow" filterRes="200" x="-.2" y="-.1">
|
||||
<feGaussianBlur stdDeviation="3 3" />
|
||||
<feOffset dx="-10" dy="10" />
|
||||
</filter>
|
||||
|
||||
<filter id="innerShadow" filterRes="500" x="-.2" y="0">
|
||||
<feGaussianBlur stdDeviation="3 4" in="SourceAlpha"/>
|
||||
<feOffset dx="-10" dy="15" result="offsetShadow"/>
|
||||
<feComposite in2="SourceGraphic" in="offsetShadow" operator="out" />
|
||||
</filter>
|
||||
|
||||
|
||||
<path id="Outer_Ellipse" style="stroke:none;" d="M453.747,104.22C333.581-15.897,157.944-35.015,61.45,61.516c-96.493,96.533-77.301,272.161,42.866,392.278C224.48,573.911,400.117,593.031,496.61,496.498c96.493-96.533,77.302-272.161-42.863-392.278z
|
||||
M461.486,454.618c-74.193,74.224-222.251,46.516-330.696-61.886C22.343,284.329-5.426,136.283,68.766,62.059c74.193-74.222,222.251-46.516,330.698,61.887c108.445,108.402,136.214,256.449,62.021,330.672z"/>
|
||||
<path id="Inner_Ellipse" style="stroke:none;" d="M399.464,123.946C291.018,15.543,142.959-12.163,68.766,62.059c-74.192,74.224-46.423,222.27,62.023,330.672c108.445,108.402,256.503,136.11,330.696,61.886c74.192-74.223,46.424-222.27-62.021-330.672z
|
||||
M410.417,397.331c-58.115,58.14-179.371,31.157-270.832-60.267C48.124,245.64,21.092,124.396,79.207,66.256c58.116-58.139,179.372-31.157,270.833,60.267c91.46,91.424,118.493,212.668,60.377,270.808z"/>
|
||||
|
||||
</defs>
|
||||
|
||||
<rect x="0" y="0" width="100%" height="100%" fill="rgb(13, 97, 160)" />
|
||||
<g fill="rgb(255, 255, 20)">
|
||||
<circle cx="50" cy="150" r="120" />
|
||||
<circle cx="100" cy="300" r="60" />
|
||||
<circle cx="350" cy="200" r="90" />
|
||||
<circle cx="380" cy="400" r="70" />
|
||||
<circle cx="225" cy="275" r="40" />
|
||||
<circle cx="100" cy="450" r="35" />
|
||||
<circle cx="-20" cy="500" r="120" />
|
||||
</g>
|
||||
<rect x="0" y="0" width="100%" height="100%" style="overflow:hidden; fill:url(#backgroundPattern)" />
|
||||
|
||||
<g filter="url(#innerShadow)" opacity=".5">
|
||||
<use xlink:href="#Outer_Ellipse" fill-opacity="1"/>
|
||||
<use xlink:href="#Inner_Ellipse" fill-opacity="1"/>
|
||||
</g>
|
||||
|
||||
<use xlink:href="#Outer_Ellipse" fill="rgb(13, 97, 160)" fill-opacity=".75"/>
|
||||
<use xlink:href="#Inner_Ellipse" fill="rgb(255, 255, 20)" fill-opacity=".75" />
|
||||
|
||||
<g transform="translate(50, 154) scale(1.5, 1.5)">
|
||||
<use x="0" y="0" xlink:href="#batik"
|
||||
fill="black" fill-opacity=".5" filter="url(#shadow)"/>
|
||||
|
||||
<use x="0" y="0" xlink:href="#batik"
|
||||
fill="none" stroke-width="8" stroke="rgb(13, 97, 160)"/>
|
||||
|
||||
<use x="0" y="0" xlink:href="#batik"
|
||||
fill="rgb(255, 255, 20)" stroke="rgb(204, 102, 53)" stroke-width="1"/>
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
</svg>
|
|
@ -0,0 +1,205 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- @author bill.haneman@ireland.sun.com -->
|
||||
<!-- @version $Id: batikBatik.svg,v 1.1 2001/06/10 01:46:29 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<svg width="450" height="500" xml:space="preserve" viewBox="0 0 450 500">
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<defs>
|
||||
<filter id="tableRedOrangeTint" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.02" numOctaves="1"/>
|
||||
|
||||
<feComponentTransfer>
|
||||
<feFuncR type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
<feFuncG type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
<feFuncB type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
</feComponentTransfer>
|
||||
|
||||
<feColorMatrix type="luminanceToAlpha" />
|
||||
<feColorMatrix type="matrix" values="0 0 0 -1 1
|
||||
0 0 0 -1 1
|
||||
0 0 0 -1 1
|
||||
0 0 0 0 1" />
|
||||
<feComponentTransfer filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" >
|
||||
<feFuncR type="table" tableValues="1 1.0 0.95 0.85 0.6 0.4" />
|
||||
<feFuncG type="table" tableValues="1 1.0 0.75 0.55 0.3 0.3" />
|
||||
<feFuncB type="table" tableValues="1 0.4 0 0 0 0" />
|
||||
<feFuncA type="linear" slope="1" intercept="0"/>
|
||||
</feComponentTransfer>
|
||||
<feComponentTransfer>
|
||||
<feFuncR type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
<feFuncG type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
<feFuncB type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
</feComponentTransfer>
|
||||
<feComposite operator="in" in2="SourceGraphic" />
|
||||
</filter>
|
||||
|
||||
<filter id="tableBlueAquaTint" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.01" numOctaves="2"/>
|
||||
<feComponentTransfer>
|
||||
<feFuncR type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
<feFuncG type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
<feFuncB type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
</feComponentTransfer>
|
||||
<feColorMatrix type="luminanceToAlpha" />
|
||||
<feColorMatrix type="matrix" values="0 0 0 -1 1 0 0 0 -1 1 0 0 0 -1 1 0 0 0 0 1" />
|
||||
<feComponentTransfer filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" >
|
||||
<feFuncR type="table" tableValues="1 0.5 0 0 0 0" />
|
||||
<feFuncG type="table" tableValues="1 .9 .6 .4 .35 .2" />
|
||||
<feFuncB type="table" tableValues="1 .9 .8 .6 .5 .2" />
|
||||
<feFuncA type="linear" slope="1" intercept=".1" />
|
||||
</feComponentTransfer>
|
||||
<feComponentTransfer>
|
||||
<feFuncR type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
<feFuncG type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
<feFuncB type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
</feComponentTransfer>
|
||||
</filter>
|
||||
<filter id="tableBlueVioletTint" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.02" numOctaves="2"/>
|
||||
<feComponentTransfer>
|
||||
<feFuncR type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
<feFuncG type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
<feFuncB type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
</feComponentTransfer>
|
||||
<feColorMatrix type="luminanceToAlpha" />
|
||||
<feColorMatrix type="matrix" values="0 0 0 -1 1 0 0 0 -1 1 0 0 0 -1 1 0 0 0 0 1" />
|
||||
<feComponentTransfer filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" >
|
||||
<feFuncR type="table" tableValues="0 .1 .2 .3 .4 .5" />
|
||||
<feFuncG type="table" tableValues="0 0 0 0 0.2 .4" />
|
||||
<feFuncB type="table" tableValues=".1 .2 .6 .8 .7 .7" />
|
||||
<feFuncA type="linear" slope="1" intercept="0" />
|
||||
</feComponentTransfer>
|
||||
<feComponentTransfer>
|
||||
<feFuncR type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
<feFuncG type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
<feFuncB type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
</feComponentTransfer>
|
||||
<feComposite operator="in" in2="SourceGraphic" />
|
||||
</filter>
|
||||
<filter id="tableGreenTint" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.015" numOctaves="1"/>
|
||||
<feComponentTransfer>
|
||||
<feFuncR type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
<feFuncG type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
<feFuncB type="gamma" amplitude="1" exponent=".42" offset="0" />
|
||||
</feComponentTransfer>
|
||||
<feColorMatrix type="luminanceToAlpha" />
|
||||
<feColorMatrix type="matrix" values="0 0 0 -1 1 0 0 0 -1 1 0 0 0 -1 1 0 0 0 0 1" />
|
||||
<feComponentTransfer filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" >
|
||||
<feFuncR type="table" tableValues="0 0 0 0 0.5 1" />
|
||||
<feFuncG type="table" tableValues=".4 .4 .4 .6 .5 .3" />
|
||||
<feFuncB type="table" tableValues="0.1 .2 .3 .4 .4 .2" />
|
||||
<feFuncA type="linear" slope="1" intercept="0" />
|
||||
</feComponentTransfer>
|
||||
<feComponentTransfer>
|
||||
<feFuncR type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
<feFuncG type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
<feFuncB type="gamma" amplitude="1" exponent="2.4" offset="0" />
|
||||
</feComponentTransfer>
|
||||
</filter>
|
||||
|
||||
<path transform="scale(0.9)" id="logoText" d="M64.994,178.963V77.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.02c0-1.195,0.32-2.035,0.969-2.52
|
||||
c0.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.379s14.074,16.574,14.074,28.965
|
||||
c0,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.602c-6.078,0-13.367-0.293-21.871-0.875
|
||||
c-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.055c1.809-0.836,3.223-1.574,4.242-2.223
|
||||
c1.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 M82.994,110.209c0,3.648,0.453,5.93,1.367,6.84c0.914,0.914,2.816,1.367,5.711,1.367h16.555c12.023,0,20.758-2.031,26.203-6.098
|
||||
c5.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 M82.994,187.737c0,6.539,1.789,10.953,5.371,13.242
|
||||
c3.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.914H91.213c-3.578,0-5.84,0.477-6.793,1.426s-1.426,3.285-1.426,7.004v52.641zM238.275,198.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 M236.787,159.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
|
||||
M274.411,122.417h-8.586c-0.602,0-1.281-0.285-2.035-0.855s-1.129-1.164-1.129-1.773c0-0.531,1.648-2.246,4.953-5.141s6.398-5.941,9.285-9.141c2.051-2.207,4.309-5.48,6.777-9.824s4.309-6.516,5.527-6.516c0.68,0,1.137,0.195,1.363,0.578
|
||||
s0.344,1.152,0.344,2.301v21.121h20.266c4.555,0,8.539-0.902,11.953-2.711c0.984-0.523,1.668-0.789,2.051-0.789c0.301,0,0.527,0.133,0.68,0.395c0.152,0.266,0.23,0.695,0.23,1.297c0,3.086-0.93,5.777-2.789,8.07c-1.859,2.297-4.195,3.441-7.004,3.441
|
||||
c-0.453,0-1.137-0.074-2.047-0.227c-0.914-0.148-1.633-0.227-2.164-0.227h-21.176v64.957c0,5.688,1.383,9.992,4.156,12.914c2.77,2.922,6.813,4.379,12.125,4.379c4.93,0,10.055-1.441,15.367-4.324c1.594-0.832,2.617-1.25,3.074-1.25c0.68,0,1.23,0.117,1.648,0.344
|
||||
c0.418,0.23,0.629,0.574,0.629,1.031c0,2.75-2.816,5.598-8.441,8.539c-5.629,2.938-11.828,4.41-18.594,4.41c-9.43,0-16.199-2.379-20.305-7.133c-4.109-4.754-6.16-12.762-6.16-24.027v-59.84z
|
||||
M319.032,184.389V142.35c0-7.898-0.703-12.984-2.105-15.266c-1.406-2.277-4.043-3.418-7.91-3.418c-2.199,0-3.828-0.227-4.891-0.68s-1.594-1.137-1.594-2.051c0-1.516,1.863-2.766,5.598-3.754l0.23-0.016c1.75-0.301,3.484-0.719,5.199-1.25
|
||||
c1.711-0.531,3.484-1.211,5.313-2.047c2.207-0.906,4.988-2.25,8.34-4.031s5.559-2.672,6.625-2.672c0.992,0,1.676,0.23,2.059,0.684c0.379,0.457,0.57,1.48,0.57,3.074c0,0.305-0.039,1.484-0.117,3.531c-0.379,11.391-0.566,22.93-0.566,34.617v35.543
|
||||
c0,6.078,0.547,10.313,1.648,12.703c1.102,2.395,3.168,4.387,6.203,5.98c0.906,0.457,1.91,0.801,3.012,1.027s2.371,0.34,3.813,0.34c2.352,0.152,3.867,0.492,4.551,1.023c0.68,0.531,1.023,1.363,1.023,2.5c0,0.758-0.383,1.402-1.141,1.934
|
||||
c-0.758,0.527-1.707,0.793-2.848,0.793c-0.531,0-3.266-0.211-8.199-0.625c-4.938-0.414-9.566-0.625-13.895-0.625c-6.305,0-12.383,0.375-18.227,1.125c-0.914,0.082-1.48,0.125-1.707,0.125c-0.762,0-1.406-0.25-1.938-0.738c-0.531-0.492-0.797-1.082-0.797-1.766
|
||||
c0-0.758,0.223-1.422,0.676-1.992s1.281-1.156,2.488-1.766c0.227-0.148,0.602-0.379,1.129-0.684c1.656-1.211,2.859-2.238,3.617-3.074c1.43-1.82,2.426-3.828,2.992-6.031c0.563-2.203,0.848-5.695,0.848-10.477z M318.032,74.292c0-2.195,1.309-4.852,3.926-7.961
|
||||
s4.719-4.664,6.313-4.664c1.438,0,3.469,1.5,6.086,4.492c2.617,2.996,3.926,5.48,3.926,7.449c0,1.898-1.254,4.383-3.754,7.453c-2.504,3.07-4.742,4.605-6.711,4.605c-1.977,0-4.102-1.305-6.375-3.922s-3.41-5.102-3.41-7.453z
|
||||
M375.257,184.307V72.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.074c1.824-0.301,3.516-0.68,5.074-1.133
|
||||
s3.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.332c-0.078,1.254-0.113,2.375-0.113,3.359
|
||||
c-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.078c-0.305-0.074-0.566-0.148-0.793-0.227
|
||||
c-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.625c2.871,0,6.141-0.207,9.809-0.625
|
||||
c3.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.254c-7.332,2.891-13.758,7.07-19.273,12.543
|
||||
c-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.113c2.191,0.152,3.609,0.438,4.254,0.852
|
||||
c0.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.617c0,6.852,0.531,11.344,1.602,13.477
|
||||
c1.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.988s-1.594,0.738-2.734,0.738
|
||||
c-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.777c0-0.766,0.262-1.473,0.789-2.121
|
||||
c0.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"/>
|
||||
|
||||
<path id="leaf1" d="M210.,230. T 270.,290. 305.,355. 210.,230."/>
|
||||
|
||||
<path id="leaf2" d="M110.,320. T 220.,330. 255.,345. 110.,320."/>
|
||||
|
||||
<clipPath id="clipStalk1" fill="white">
|
||||
<path id="stalk1"
|
||||
d="M80.,350. T 225.,355. 290.,340. 85.,350."/>
|
||||
</clipPath>
|
||||
|
||||
<clipPath id="clipStalk2" fill="white">
|
||||
<path id="stalk2"
|
||||
d="M268.,332. T 360.,435. 385.,438. 263.,328"/>
|
||||
</clipPath>
|
||||
|
||||
</defs>
|
||||
|
||||
<rect width="100%" height="100%" filter="url(#tableBlueAquaTint)" />
|
||||
|
||||
<g x="50%" y="50%" style="fill:none; stroke:white; stroke-width:4.5; stroke-linecap:round; stroke-linejoin:round">
|
||||
<g>
|
||||
<use xlink:href="#logoText" stroke="none" fill="black" filter="url(#tableRedOrangeTint)"/>
|
||||
<use xlink:href="#logoText" stroke-width="5" opacity="0.75"/>
|
||||
</g>
|
||||
<g>
|
||||
<use xlink:href="#leaf2" stroke="none" fill="black" filter="url(#tableBlueVioletTint)"/>
|
||||
<use xlink:href="#leaf2" opacity="0.75"/>
|
||||
</g>
|
||||
<g transform="rotate(25) translate(110, -165)">
|
||||
<use xlink:href="#leaf1" stroke="none" fill="black" filter="url(#tableRedOrangeTint)" />
|
||||
<use xlink:href="#leaf1" opacity="0.75"/>
|
||||
</g>
|
||||
<g>
|
||||
<use xlink:href="#leaf1" stroke="none" fill="black" filter="url(#tableRedOrangeTint)" />
|
||||
<use xlink:href="#leaf1" opacity="0.75"/>
|
||||
</g>
|
||||
<g transform="rotate(-25) translate(-180, 90)">
|
||||
<use xlink:href="#leaf1" stroke="none" fill="black" filter="url(#tableRedOrangeTint)" />
|
||||
<use xlink:href="#leaf1" opacity="0.75"/>
|
||||
</g>
|
||||
<g transform="rotate(82) translate(120, -595)">
|
||||
<use xlink:href="#leaf2" stroke="none" fill="black" filter="url(#tableBlueVioletTint)"/>
|
||||
<use xlink:href="#leaf2" opacity="0.75"/>
|
||||
</g>
|
||||
<rect width="100%" height="100%" filter="url(#tableGreenTint)" style="clip-path:url(#clipStalk1)"/>
|
||||
<use xlink:href="#stalk1" opacity="0.75"/>
|
||||
<rect width="100%" height="100%" filter="url(#tableGreenTint)" style="clip-path:url(#clipStalk2)"/>
|
||||
<use xlink:href="#stalk2" opacity="0.75"/>
|
||||
</g>
|
||||
|
||||
</svg>
|
|
@ -0,0 +1,141 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd">
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Copyright (C) The Apache Software Foundation. All rights reserved. -->
|
||||
<!-- -->
|
||||
<!-- This software is published under the terms of the Apache Software License -->
|
||||
<!-- version 1.1, a copy of which has been included with this distribution in -->
|
||||
<!-- the LICENSE file. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Test description here -->
|
||||
<!-- -->
|
||||
<!-- @author vincent.hardy@eng.sun.com -->
|
||||
<!-- @version $Id: batikFX.svg,v 1.1 2001/06/10 01:46:29 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Batik, Futuristic Mood</title>
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent" style="overflow:hidden">
|
||||
|
||||
<defs>
|
||||
<pattern id="stripes" patternUnits="userSpaceOnUse" x="0" y="0" width="50" height="4">
|
||||
<rect width="50" height="2" fill="black" fill-opacity=".2" />
|
||||
</pattern>
|
||||
<radialGradient id="backgroundGradientOld" cx="0" cy="0" r="1.3" gradientTransform="translate(.5, .5) scale(1, .5)" >
|
||||
<stop offset="0" stop-color="rgb(125, 72, 255)" />
|
||||
<stop offset=".25" stop-color="rgb(124, 65, 239)" />
|
||||
<stop offset="1" stop-color="black" />
|
||||
</radialGradient>
|
||||
|
||||
<radialGradient id="backgroundGradient" cx="0" cy="0" r="1.2" >
|
||||
<stop offset="0" stop-color="white" />
|
||||
<stop offset=".25" stop-color="rgb(125, 72, 255)" />
|
||||
<stop offset=".5" stop-color="rgb(124, 65, 239)" />
|
||||
<stop offset="1" stop-color="black" />
|
||||
</radialGradient>
|
||||
|
||||
|
||||
<g id="batik">
|
||||
<path d="M0,83.61V6.721h36.79c7.876,0,14.018,1.846,18.429,5.539c4.41,3.692,6.615,8.83,6.615,15.411c0,4.201-1.044,7.693-3.129,10.474c-2.085,2.783-5.039,4.594-8.859,5.433c5.213,1.086,9.097,3.136,11.651,6.148c2.554,3.013,3.833,7.058,3.833,12.136
|
||||
c0,7.179-2.421,12.6-7.265,16.259c-4.843,3.661-11.97,5.49-21.377,5.49H0z M25.944,25.002v10.754h3.617c2.237,0,3.94-0.462,5.112-1.391c1.17-0.926,1.756-2.264,1.756-4.011c0-1.748-0.586-3.077-1.756-3.987c-1.172-0.909-2.875-1.365-5.112-1.365h-3.617z
|
||||
M25.944,52.29v12.367h4.612c2.747,0,4.863-0.536,6.341-1.611c1.479-1.075,2.22-2.598,2.22-4.572c0-2.008-0.742-3.539-2.22-4.598c-1.479-1.056-3.594-1.586-6.341-1.586h-4.612z"/>
|
||||
<path d="M111.327,83.61v-8.208c-2.627,3.495-5.377,6.074-8.248,7.734c-2.871,1.659-6.041,2.491-9.506,2.491c-6.305,0-11.53-2.676-15.681-8.031c-4.15-5.356-6.224-12.252-6.224-20.689c0-8.821,2.021-15.918,6.066-21.291c4.045-5.374,9.324-8.06,15.838-8.06
|
||||
c3.36,0,6.417,0.727,9.167,2.18c2.747,1.453,5.294,3.705,7.643,6.75v-7.183h25.272V83.61h-24.327z M96.939,56.266c0,2.31,0.619,4.176,1.863,5.594c1.243,1.417,2.879,2.125,4.91,2.125c2.065,0,3.709-0.7,4.936-2.101c1.225-1.398,1.838-3.272,1.838-5.619
|
||||
c0-2.377-0.622-4.284-1.866-5.721c-1.243-1.435-2.879-2.153-4.908-2.153c-2.031,0-3.667,0.727-4.91,2.18c-1.244,1.453-1.863,3.35-1.863,5.694z"/>
|
||||
<path d="M150.249,83.61V49.333h-7.528V29.304h7.528V11.292h26.346v18.013h7.528v20.029h-7.528V83.61h-26.346z"/>
|
||||
<path d="M219.526,12.438c0,3.883-1.277,6.971-3.831,9.263c-2.554,2.291-6,3.436-10.34,3.436c-4.373,0-7.855-1.153-10.442-3.463c-2.59-2.308-3.884-5.388-3.884-9.235c0-3.848,1.277-6.883,3.832-9.105C197.414,1.111,200.911,0,205.355,0
|
||||
c4.409,0,7.872,1.111,10.393,3.333c2.519,2.222,3.778,5.257,3.778,9.105z M192.104,83.61V29.304h26.347V83.61h-26.347z"/>
|
||||
<path d="M230.504,83.61V2.285h26.078v47.765l11.075-20.745h30.864l-19.264,26.103l20.34,28.203h-31.199l-11.816-20.325V83.61h-26.078z"/>
|
||||
</g>
|
||||
|
||||
<g id="batikUrl">
|
||||
<path d="M0,14.031V0.406h4.336v3.766c0,0.515-0.006,0.916-0.018,1.202S4.29,5.936,4.266,6.199c0.381-0.52,0.803-0.907,1.267-1.161C5.997,4.784,6.519,4.656,7.1,4.656c0.968,0,1.735,0.292,2.301,0.876c0.566,0.584,0.849,1.382,0.849,2.393v6.105H5.813V9.438
|
||||
c0-0.458-0.045-0.77-0.136-0.937S5.426,8.25,5.197,8.25c-0.258,0-0.454,0.1-0.589,0.299c-0.135,0.2-0.202,0.496-0.202,0.889v4.593H0z"/>
|
||||
<path d="M12.688,14.031v-5.75h-1.25V4.938h1.25v-3h4.406v3h1.25v3.344h-1.25v5.75h-4.406z"/>
|
||||
<path d="M20.211,14.031v-5.75h-1.25V4.938h1.25v-3h4.406v3h1.25v3.344h-1.25v5.75h-4.406z"/>
|
||||
<path d="M27.141,17.938v-13h4.22v1.205c0.386-0.501,0.812-0.874,1.277-1.119c0.465-0.245,0.979-0.367,1.54-0.367c1.094,0,1.976,0.446,2.646,1.338s1.005,2.081,1.005,3.567c0,1.41-0.344,2.56-1.031,3.449s-1.561,1.333-2.619,1.333c-0.573,0-1.094-0.13-1.562-0.391
|
||||
c-0.468-0.261-0.881-0.651-1.237-1.173c0.035,0.217,0.062,0.456,0.08,0.716s0.026,0.548,0.026,0.865v3.576h-4.344z M32.485,10.813c0.331,0,0.601-0.121,0.81-0.364c0.209-0.242,0.314-0.563,0.314-0.96s-0.105-0.719-0.314-0.964
|
||||
c-0.209-0.245-0.479-0.368-0.81-0.368c-0.337,0-0.609,0.123-0.815,0.368c-0.206,0.246-0.309,0.567-0.309,0.964s0.103,0.718,0.309,0.96c0.206,0.243,0.478,0.364,0.815,0.364z"/>
|
||||
<path d="M39.255,7.049c0-0.573,0.24-1.063,0.722-1.47s1.071-0.61,1.77-0.61s1.291,0.204,1.778,0.61s0.731,0.897,0.731,1.47c0,0.585-0.242,1.083-0.727,1.493s-1.078,0.614-1.782,0.614c-0.698,0-1.288-0.205-1.77-0.614s-0.722-0.907-0.722-1.493z M39.255,12.203
|
||||
c0-0.58,0.242-1.077,0.726-1.49s1.073-0.62,1.765-0.62c0.698,0,1.291,0.207,1.778,0.62s0.731,0.91,0.731,1.49s-0.242,1.077-0.727,1.49s-1.078,0.62-1.782,0.62c-0.698,0-1.288-0.205-1.77-0.615s-0.722-0.908-0.722-1.494z"/>
|
||||
<path d="M45.13,15.688l6.292-14.813h2.115l-6.283,14.813H45.13z"/>
|
||||
<path d="M53.55,15.688l6.292-14.813h2.115l-6.283,14.813H53.55z"/>
|
||||
<path d="M61.376,14.031l3.666-4.705l-3.385-4.389h4.947l0.597,1.328c0.076,0.164,0.139,0.317,0.188,0.458s0.089,0.275,0.119,0.404c0.035-0.182,0.117-0.41,0.246-0.686c0.035-0.076,0.062-0.135,0.079-0.176l0.588-1.328h4.986l-3.239,4.389l3.708,4.705h-5.235
|
||||
l-0.72-1.337c-0.07-0.135-0.132-0.277-0.185-0.426s-0.099-0.301-0.14-0.453c-0.041,0.193-0.085,0.359-0.132,0.497s-0.105,0.268-0.175,0.391l-0.755,1.328h-5.158z"/>
|
||||
<path d="M74.224,14.031V4.938h4.224v1.279c0.343-0.538,0.722-0.932,1.135-1.184c0.413-0.251,0.887-0.377,1.422-0.377c0.634,0,1.162,0.155,1.584,0.465c0.422,0.311,0.764,0.796,1.025,1.457c0.346-0.632,0.771-1.11,1.272-1.435s1.064-0.487,1.686-0.487
|
||||
c0.892,0,1.604,0.295,2.135,0.884s0.797,1.382,0.797,2.379v6.112h-4.25V9.466c0-0.462-0.043-0.775-0.13-0.939c-0.087-0.164-0.234-0.246-0.443-0.246c-0.239,0-0.417,0.097-0.533,0.29c-0.117,0.193-0.175,0.492-0.175,0.895v4.565h-4.188V9.466
|
||||
c0-0.45-0.042-0.76-0.125-0.93c-0.083-0.17-0.229-0.255-0.436-0.255c-0.235,0-0.409,0.097-0.521,0.29s-0.168,0.492-0.168,0.895v4.565h-4.313z"/>
|
||||
<path d="M91.442,14.031V0.406h4.406v13.625h-4.406z"/>
|
||||
<path d="M97.5,12.203c0-0.58,0.241-1.077,0.725-1.49s1.074-0.62,1.771-0.62s1.289,0.207,1.775,0.62s0.729,0.91,0.729,1.49s-0.242,1.077-0.725,1.49s-1.076,0.62-1.779,0.62s-1.295-0.207-1.775-0.62s-0.72-0.91-0.72-1.49z"/>
|
||||
<path d="M110.328,14.031v-1.373c-0.441,0.587-0.902,1.02-1.384,1.298c-0.482,0.278-1.014,0.418-1.596,0.418c-1.059,0-1.936-0.448-2.632-1.344c-0.697-0.896-1.045-2.05-1.045-3.462c0-1.476,0.339-2.664,1.019-3.563c0.679-0.899,1.565-1.349,2.659-1.349
|
||||
c0.564,0,1.077,0.122,1.539,0.365c0.461,0.243,0.889,0.619,1.283,1.128V4.938h4.219v9.094h-4.061z M107.889,9.466c0,0.384,0.105,0.694,0.316,0.93s0.488,0.354,0.833,0.354c0.351,0,0.629-0.116,0.837-0.349s0.312-0.544,0.312-0.935
|
||||
c0-0.396-0.105-0.713-0.316-0.952s-0.489-0.358-0.833-0.358c-0.345,0-0.622,0.121-0.833,0.362c-0.211,0.242-0.316,0.558-0.316,0.948z"/>
|
||||
<path d="M116.253,17.938v-13h4.22v1.205c0.386-0.501,0.812-0.874,1.277-1.119c0.465-0.245,0.979-0.367,1.54-0.367c1.094,0,1.976,0.446,2.646,1.338s1.005,2.081,1.005,3.567c0,1.41-0.344,2.56-1.031,3.449s-1.561,1.333-2.619,1.333
|
||||
c-0.573,0-1.094-0.13-1.562-0.391c-0.468-0.261-0.881-0.651-1.237-1.173c0.035,0.217,0.062,0.456,0.08,0.716s0.026,0.548,0.026,0.865v3.576h-4.344z M121.598,10.813c0.331,0,0.601-0.121,0.81-0.364c0.209-0.242,0.314-0.563,0.314-0.96s-0.105-0.719-0.314-0.964
|
||||
c-0.209-0.245-0.479-0.368-0.81-0.368c-0.337,0-0.609,0.123-0.815,0.368c-0.206,0.246-0.309,0.567-0.309,0.964s0.103,0.718,0.309,0.96c0.206,0.243,0.478,0.364,0.815,0.364z"/>
|
||||
<path d="M134.744,14.031v-1.373c-0.441,0.587-0.902,1.02-1.384,1.298c-0.482,0.278-1.014,0.418-1.596,0.418c-1.059,0-1.936-0.448-2.632-1.344c-0.697-0.896-1.045-2.05-1.045-3.462c0-1.476,0.339-2.664,1.019-3.563c0.679-0.899,1.565-1.349,2.659-1.349
|
||||
c0.564,0,1.077,0.122,1.539,0.365c0.461,0.243,0.889,0.619,1.283,1.128V4.938h4.219v9.094h-4.061z M132.305,9.466c0,0.384,0.105,0.694,0.316,0.93s0.488,0.354,0.833,0.354c0.351,0,0.629-0.116,0.837-0.349s0.312-0.544,0.312-0.935
|
||||
c0-0.396-0.105-0.713-0.316-0.952s-0.489-0.358-0.833-0.358c-0.345,0-0.622,0.121-0.833,0.362c-0.211,0.242-0.316,0.558-0.316,0.948z"/>
|
||||
<path d="M147.513,8.844c-0.233-0.208-0.472-0.364-0.717-0.469c-0.245-0.104-0.501-0.156-0.77-0.156c-0.443,0-0.796,0.118-1.058,0.354s-0.393,0.549-0.393,0.94c0,0.373,0.128,0.678,0.385,0.914c0.256,0.236,0.588,0.354,0.997,0.354
|
||||
c0.256,0,0.514-0.055,0.773-0.166s0.52-0.274,0.783-0.49v3.598c-0.457,0.224-0.897,0.388-1.321,0.494c-0.424,0.105-0.841,0.158-1.25,0.158c-0.673,0-1.296-0.113-1.869-0.338s-1.083-0.558-1.527-0.997c-0.468-0.469-0.825-1-1.07-1.595
|
||||
c-0.246-0.595-0.369-1.226-0.369-1.894c0-0.463,0.06-0.912,0.18-1.349s0.3-0.851,0.54-1.244c0.456-0.744,1.037-1.313,1.742-1.709s1.496-0.593,2.374-0.593c0.386,0,0.791,0.041,1.215,0.123c0.424,0.082,0.876,0.208,1.356,0.378v3.686z"/>
|
||||
<path d="M149.019,14.031V0.406h4.336v3.766c0,0.515-0.006,0.916-0.018,1.202s-0.029,0.562-0.052,0.824c0.381-0.52,0.803-0.907,1.267-1.161c0.463-0.254,0.985-0.381,1.566-0.381c0.968,0,1.735,0.292,2.301,0.876c0.566,0.584,0.849,1.382,0.849,2.393v6.105h-4.438
|
||||
V9.438c0-0.458-0.045-0.77-0.136-0.937s-0.25-0.251-0.479-0.251c-0.258,0-0.454,0.1-0.589,0.299c-0.135,0.2-0.202,0.496-0.202,0.889v4.593h-4.406z"/>
|
||||
<path d="M171.314,10.188l-6.264,0.009v0.14c0,0.467,0.083,0.814,0.25,1.042s0.421,0.341,0.761,0.341c0.205,0,0.384-0.061,0.536-0.184c0.152-0.123,0.273-0.301,0.361-0.535l4.092,0.278c-0.357,0.991-0.973,1.755-1.846,2.292c-0.874,0.537-1.943,0.805-3.209,0.805
|
||||
c-0.704,0-1.362-0.107-1.974-0.321s-1.162-0.525-1.648-0.936c-0.545-0.475-0.964-1.022-1.257-1.643s-0.439-1.274-0.439-1.96c0-0.691,0.147-1.349,0.443-1.973s0.713-1.167,1.252-1.63c0.486-0.416,1.034-0.729,1.643-0.94c0.609-0.211,1.268-0.316,1.977-0.316
|
||||
c0.972,0,1.845,0.194,2.618,0.582c0.773,0.388,1.417,0.953,1.933,1.693c0.263,0.379,0.461,0.798,0.593,1.256s0.198,0.958,0.198,1.501c0,0.141-0.001,0.246-0.004,0.315c-0.003,0.07-0.007,0.131-0.013,0.184z M165.085,8.219l1.996,0.009
|
||||
c-0.018-0.355-0.107-0.618-0.269-0.787s-0.4-0.253-0.716-0.253c-0.281,0-0.509,0.089-0.682,0.267s-0.283,0.433-0.33,0.765z"/>
|
||||
<path d="M172.348,12.203c0-0.58,0.241-1.077,0.725-1.49s1.074-0.62,1.771-0.62s1.289,0.207,1.775,0.62s0.729,0.91,0.729,1.49s-0.242,1.077-0.725,1.49s-1.076,0.62-1.779,0.62s-1.295-0.207-1.775-0.62s-0.72-0.91-0.72-1.49z"/>
|
||||
<path d="M189.08,9.516c0,0.686-0.146,1.339-0.439,1.96s-0.712,1.168-1.257,1.643c-0.475,0.41-1.018,0.722-1.63,0.936s-1.272,0.321-1.981,0.321s-1.368-0.105-1.978-0.316s-1.157-0.524-1.643-0.94c-0.539-0.457-0.957-1-1.252-1.63s-0.444-1.288-0.444-1.973
|
||||
c0-0.691,0.148-1.349,0.444-1.973s0.713-1.167,1.252-1.63c0.486-0.416,1.034-0.729,1.643-0.94s1.269-0.316,1.978-0.316s1.369,0.107,1.981,0.321s1.162,0.526,1.648,0.936c0.533,0.457,0.946,0.999,1.239,1.626s0.439,1.286,0.439,1.977z M183.772,10.75
|
||||
c0.312,0,0.566-0.114,0.763-0.341c0.196-0.228,0.295-0.525,0.295-0.893c0-0.373-0.097-0.672-0.291-0.897c-0.194-0.225-0.45-0.337-0.768-0.337c-0.324,0-0.583,0.113-0.776,0.337c-0.194,0.225-0.291,0.524-0.291,0.897c0,0.374,0.097,0.673,0.291,0.897
|
||||
c0.193,0.225,0.452,0.337,0.776,0.337z"/>
|
||||
<path d="M190.591,14.031V4.938h4.266v1.276c0.384-0.519,0.812-0.908,1.284-1.168s0.995-0.39,1.568-0.39c0.088,0,0.155,0.001,0.199,0.004c0.044,0.003,0.084,0.007,0.12,0.013v4.41c-0.248-0.135-0.476-0.234-0.683-0.299s-0.396-0.097-0.567-0.097
|
||||
c-0.567,0-1.006,0.152-1.316,0.457c-0.311,0.305-0.465,0.732-0.465,1.283v3.604h-4.406z"/>
|
||||
<path d="M205.496,13.214v-0.791c-0.412,0.451-0.847,0.785-1.305,1.001c-0.459,0.217-0.964,0.325-1.517,0.325c-1.064,0-1.943-0.4-2.637-1.2s-1.041-1.828-1.041-3.083c0-1.454,0.336-2.619,1.01-3.496c0.673-0.876,1.563-1.315,2.668-1.315
|
||||
c0.57,0,1.086,0.119,1.548,0.356c0.461,0.237,0.886,0.605,1.274,1.103V4.938h4.219v7.785c0,0.8-0.036,1.397-0.106,1.792c-0.07,0.394-0.185,0.754-0.343,1.082c-0.382,0.782-1.046,1.373-1.995,1.773c-0.948,0.4-2.159,0.6-3.633,0.6
|
||||
c-0.822,0-1.587-0.072-2.294-0.215c-0.708-0.144-1.355-0.356-1.942-0.637l0.953-2.93c0.506,0.315,1.002,0.55,1.488,0.706c0.486,0.154,0.967,0.232,1.444,0.232c0.718,0,1.266-0.163,1.643-0.489c0.377-0.326,0.565-0.8,0.565-1.422z M203.371,9.29
|
||||
c0,0.351,0.1,0.629,0.301,0.836c0.201,0.208,0.469,0.311,0.806,0.311c0.342,0,0.615-0.104,0.818-0.311c0.204-0.207,0.306-0.486,0.306-0.836c0-0.344-0.104-0.625-0.31-0.841c-0.207-0.216-0.478-0.324-0.814-0.324c-0.331,0-0.598,0.107-0.801,0.32
|
||||
c-0.204,0.213-0.305,0.495-0.305,0.845z"/>
|
||||
<path d="M210.61,15.688l6.292-14.813h2.115l-6.283,14.813h-2.124z"/>
|
||||
<path d="M219.937,0.406h4.313v4.215c0,0.37-0.007,0.684-0.022,0.942s-0.037,0.479-0.066,0.66c0.363-0.522,0.777-0.914,1.24-1.175s0.979-0.392,1.548-0.392c1.066,0,1.946,0.446,2.638,1.338c0.691,0.892,1.038,2.045,1.038,3.459c0,1.485-0.337,2.676-1.011,3.574
|
||||
c-0.674,0.898-1.563,1.347-2.664,1.347c-0.598,0-1.142-0.139-1.631-0.417c-0.49-0.278-0.925-0.698-1.306-1.259v1.333h-4.076V0.406z M226.405,9.514c0-0.4-0.104-0.722-0.313-0.963s-0.484-0.363-0.826-0.363c-0.342,0-0.617,0.121-0.826,0.363
|
||||
s-0.313,0.563-0.313,0.963c0,0.401,0.104,0.728,0.313,0.981s0.484,0.38,0.826,0.38c0.335,0,0.609-0.126,0.821-0.38s0.318-0.581,0.318-0.981z"/>
|
||||
<path d="M238.49,14.031v-1.373c-0.441,0.587-0.902,1.02-1.384,1.298c-0.482,0.278-1.014,0.418-1.596,0.418c-1.059,0-1.936-0.448-2.632-1.344c-0.697-0.896-1.045-2.05-1.045-3.462c0-1.476,0.339-2.664,1.019-3.563c0.679-0.899,1.565-1.349,2.659-1.349
|
||||
c0.564,0,1.077,0.122,1.539,0.365c0.461,0.243,0.889,0.619,1.283,1.128V4.938h4.219v9.094h-4.061z M236.051,9.466c0,0.384,0.105,0.694,0.316,0.93s0.488,0.354,0.833,0.354c0.351,0,0.629-0.116,0.837-0.349s0.312-0.544,0.312-0.935
|
||||
c0-0.396-0.105-0.713-0.316-0.952s-0.489-0.358-0.833-0.358c-0.345,0-0.622,0.121-0.833,0.362c-0.211,0.242-0.316,0.558-0.316,0.948z"/>
|
||||
<path d="M245.009,14.031v-5.75h-1.25V4.938h1.25v-3h4.406v3h1.25v3.344h-1.25v5.75h-4.406z"/>
|
||||
<path d="M256.595,2.087c0,0.652-0.214,1.17-0.643,1.555s-1.007,0.577-1.734,0.577c-0.734,0-1.318-0.193-1.752-0.581s-0.651-0.904-0.651-1.55c0-0.646,0.214-1.155,0.643-1.528S253.472,0,254.217,0c0.739,0,1.32,0.187,1.743,0.56s0.634,0.882,0.634,1.528z
|
||||
M252.001,14.031V4.938h4.406v9.094h-4.406z"/>
|
||||
<path d="M258.434,14.031V0.406h4.375v8.005l1.849-3.474h5.151l-3.215,4.371l3.403,4.723h-5.213l-1.975-3.403v3.403h-4.375z"/>
|
||||
</g>
|
||||
|
||||
|
||||
<filter id="blur" filterRes="200" x="-.2" y="-.2" width="1.4" height="1.4">
|
||||
<feGaussianBlur stdDeviation="10 10" result="blurred"/>
|
||||
<feMerge>
|
||||
<feMergeNode in="blurred" />
|
||||
<feMergeNode in="blurred" />
|
||||
<feMergeNode in="blurred" />
|
||||
</feMerge>
|
||||
</filter>
|
||||
|
||||
</defs>
|
||||
|
||||
<rect width="100%" height="100%" fill="url(#backgroundGradient)" />
|
||||
<rect width="100%" height="100%" fill="url(#stripes)" />
|
||||
|
||||
<use xlink:href="#batik" x="80" y="180" stroke="white" stroke-width="3" fill="white" filter="url(#blur)"/>
|
||||
<use xlink:href="#batik" x="80" y="180" fill="black"/>
|
||||
|
||||
<use y="460" x="100" xlink:href="#batikUrl" fill="white" />
|
||||
</g>
|
||||
|
||||
</svg>
|
|
@ -0,0 +1,154 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd">
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Copyright (C) The Apache Software Foundation. All rights reserved. -->
|
||||
<!-- -->
|
||||
<!-- This software is published under the terms of the Apache Software License -->
|
||||
<!-- version 1.1, a copy of which has been included with this distribution in -->
|
||||
<!-- the LICENSE file. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Test description here -->
|
||||
<!-- -->
|
||||
<!-- @author vincent.hardy@eng.sun.com -->
|
||||
<!-- @version $Id: batikLogo.svg,v 1.1 2001/06/10 01:46:29 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<svg id="body" width="450" height="500" xml:space="preserve" viewBox="0 0 450 500">
|
||||
<g id="content">
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<defs>
|
||||
<filter id="dropShadow" filterUnits="userSpaceOnUse" x="0" y="0" width="500" height="500" filterRes="200">
|
||||
<feGaussianBlur in="SourceAlpha" stdDeviation="5 5" x="0" y="0" width="500" height="500"/>
|
||||
<feOffset dx="10" dy="10" />
|
||||
<feComponentTransfer result="shadow">
|
||||
<feFuncA type="linear" slope=".5" intercept="0" />
|
||||
</feComponentTransfer>
|
||||
</filter>
|
||||
|
||||
<g id="Batik_Squiggle">
|
||||
<!-- The squiggle is defined as approx 54x57 units @ 0,0 -->
|
||||
<path id="Batik_Squiggle_Blue" style="fill:#6666FF;"
|
||||
d="M7,22c2.783-3.428,5.975-5.999,9.896-8.025c-1.157-1.682-2.313-3.363-3.47-5.045c-3.529,8.583-9.506,15.878-12.988,24.507c-1.424,3.528,1.087,7.368,4.788,4.606c4.628-3.453,9.209-6.988,12.807-11.548
|
||||
c-1.737-1.683-3.474-3.367-5.21-5.05c-1.203,2.039-2.795,3.63-4.451,5.306c1.724,1.675,3.448,3.35,5.171,5.025c1.737-2.343,4.278-3.896,6.66-5.5c-1.726-1.112-3.452-2.225-5.177-3.337c-0.412,1.82-1.716,3.448-2.165,5.333c-0.819,3.436,2.431,5.561,5.228,3.37
|
||||
c1.089-0.853,2.121-1.741,3.154-2.66c0.27-0.24,2.352-2.781,1.087-1.242c-1.901,0.256-3.802,0.513-5.703,0.769c-0.442-1.809-0.591-2.103-0.447-0.882c0.061,0.692,0.135,1.383,0.222,2.073c0.547,4.68,6.211-1.189,6.884-2.75c0.811-1.877,1.806-4.181,0.519-6.087
|
||||
c-1.083-1.603-3.412-1.174-4.709-0.111c-1.155,0.947-2.154,2.039-3.312,2.981c1.743,1.123,3.485,2.247,5.228,3.37c0.401-1.833,1.678-3.476,2.114-5.365c0.839-3.633-2.323-5.241-5.177-3.337c-4.064,2.711-7.516,5.554-10.458,9.476
|
||||
c-3.299,4.397,0.973,9.229,5.171,5.025c2.33-2.333,4.55-4.69,6.248-7.532c2.625-4.394-1.298-9.954-5.21-5.05c-3.095,3.878-6.791,6.867-10.729,9.847c1.596,1.536,3.192,3.071,4.788,4.606c3.412-8.649,9.323-16.011,12.686-24.702
|
||||
c0.948-2.451,0.194-7.002-3.47-5.045c-5.309,2.836-9.933,6.46-13.639,11.23c-1.319,1.697-3.073,4.564-1.681,6.745c1.318,2.063,4.239,0.358,5.343-1.001z"/>
|
||||
|
||||
<path id="Batik_Squiggle_Red" style="fill:#FF0000;"
|
||||
d="M36,13c1.095-1.054,2.151-1.838,3.493-2.567c-0.949-2.375-1.897-4.749-2.846-7.124c-1.96,3.858-3.554,8.012-5.898,11.658c-1.202,1.87-1.95,4.149-1.307,6.371c0.461,1.592,2.045,2.92,3.719,1.958
|
||||
c2.792-1.606,5.072-3.694,7.356-5.946c-1.631-1.296-3.263-2.592-4.895-3.888c0.423-2.181-0.838,1.04-1.041,1.472c-0.595,1.267-0.875,2.5-1.14,3.864c-0.396,2.038,1.298,6.281,4.05,4.513c3.503-2.25,7.211-4.155,10.708-6.416c-0.86-2.792-1.721-5.585-2.582-8.377
|
||||
c-2.26,3.495-4.161,7.205-6.419,10.698c-1.166,1.803-3.031,9.546,1.622,8.659c2.694-0.513,5.223-2.283,7.228-4.094c-1.4-2.216-2.8-4.432-4.2-6.648c-1.777,2.892-3.42,4.527-4.006,8.079c-0.355,2.152,1.243,6.147,4.078,4.521c2.237-1.284,4.184-2.972,6.395-4.286
|
||||
c2.267-1.346,3.457-4.071,3.249-6.675c-0.157-1.958-1.758-4.435-4.029-3.175c-2.268,1.258-4.202,2.985-6.443,4.271c1.359,1.507,2.719,3.014,4.078,4.521c-0.546,1.443-0.411,1.566,0.405,0.371c0.791-0.92,1.374-1.96,2.007-2.989
|
||||
c1.776-2.889-0.048-10.398-4.2-6.648c-0.903,0.816-2.232,2.09-3.469,2.326c0.541,2.886,1.081,5.772,1.622,8.659c2.26-3.495,4.161-7.205,6.419-10.698c1.215-1.88,1.976-4.14,1.287-6.376c-0.469-1.523-2.212-3.072-3.869-2.001
|
||||
c-3.493,2.259-7.202,4.153-10.688,6.422c1.35,1.504,2.7,3.008,4.05,4.513c-0.386,2.161,0.771-1.038,0.976-1.492c0.577-1.276,0.878-2.497,1.123-3.869c0.493-2.755-2.1-6.696-4.895-3.888c-1.704,1.712-3.375,3.525-5.479,4.751c0.804,2.776,1.608,5.553,2.413,8.329
|
||||
c2.776-4.455,4.699-9.286,6.938-14.016c0.902-1.905,1.375-9.486-2.846-7.124c-1.896,1.062-3.539,2.305-5.063,3.851c-1.783,1.808-2.738,4.762-2.12,7.262c0.545,2.203,2.574,2.816,4.221,1.232z"/>
|
||||
<path id="Batik_Squiggle_Green" style="fill:#33CC33;"
|
||||
d="M24,44c0.783-0.504,1.606-0.938,2.469-1.301c-1.583-1.209-3.166-2.419-4.748-3.628c-2.467,3.958-3.438,8.551-5.454,12.714c-2.352,4.856,3.013,5.929,6.132,3.061c3.375-3.103,7.41-5.351,10.752-8.495
|
||||
c-2.078-1.06-4.155-2.12-6.233-3.18c-1.059,2.217-1.887,4.529-3.542,6.382c-3.302,3.697,0.169,7.709,4.344,5.127c4.005-2.478,8.331-4.002,11.861-7.246c-2.243-0.696-4.485-1.393-6.728-2.089c-0.215,1.156-1.024,2.195-1.661,3.168
|
||||
c-3.016,4.607,3.391,6.075,6.246,3.195c2.925-2.951,5.072-5.702,6.501-9.646c1.441-3.978-3.187-4.057-5.543-2.891c-1.383,0.685-2.487,1.158-4.03,1.306c1.048,1.237,2.097,2.475,3.145,3.712c0.125-0.477,1.471-1.594,1.964-2.097
|
||||
c2.829-2.878,1.002-6.963-3.061-5.589c-2.886,0.976-5.777,1.933-8.535,3.236c0.28,2.457,0.561,4.913,0.841,7.369c0.352-0.233,0.71-0.457,1.068-0.681c0.451-0.278,0.911-0.541,1.379-0.791c-0.923,0.3-0.715,0.262,0.625-0.115c2.553-0.935,4.935-3.57,5.073-6.385
|
||||
c0.154-3.138-3.764-2.988-5.619-1.686c-2.035,1.429-3.433,2.693-4.696,4.823c0.983-0.965,1.966-1.93,2.949-2.895c-0.115,0.083-0.23,0.167-0.345,0.25c-1.448,1.045-2.816,2.212-3.498,3.921c-0.501,1.257-0.279,3.353,1.588,3.168
|
||||
c1.579-0.156,3.114-0.367,4.511-1.194c-0.039,0.023,3.256-2.522,1.495-1.309c-1.873-0.562-3.745-1.124-5.618-1.687c0.139-0.474,0.279-0.949,0.418-1.423c1.762-1.264,3.523-2.527,5.285-3.791c-2.419,0.446-4.606,1.661-6.651,2.991
|
||||
c-1.733,1.126-3.506,2.876-3.606,5.088c-0.11,2.417,2.563,3.155,4.448,2.281c2.775-1.286,5.681-2.224,8.582-3.182c-0.685-2.2-1.37-4.401-2.055-6.601c-2.17,2.169-4.635,4.408-5.459,7.474c-0.627,2.334,0.756,3.929,3.145,3.712c3.196-0.29,5.958-1.573,8.806-2.973
|
||||
c-1.848-0.963-3.695-1.927-5.543-2.891c-0.48,1.318-1.07,2.204-2.055,3.192c2.082,1.065,4.164,2.13,6.246,3.195c1.067-1.622,2.254-3.462,2.616-5.39c0.854-4.542-4.149-4.445-6.728-2.089c-2.762,2.523-6.394,3.631-9.534,5.592c1.448,1.709,2.896,3.418,4.344,5.127
|
||||
c2.271-2.566,3.568-5.538,5.016-8.597c2.284-4.825-3.085-6.168-6.233-3.18c-3.328,3.158-7.349,5.426-10.644,8.623c2.044,1.02,4.088,2.041,6.132,3.061c1.928-4.203,2.889-8.988,5.245-12.96c2.417-4.074-1.607-5.273-4.748-3.628
|
||||
c-3.403,1.783-6.204,3.945-8.23,7.255c-0.98,1.601-1.226,4.278,1.271,4.468c2.564,0.195,5.004-1.875,6.301-3.884z"/>
|
||||
</g> <!-- End Batik_Squiggle -->
|
||||
|
||||
|
||||
<g id="Batik_Logo" style="fill-rule:nonzero;clip-rule:nonzero;stroke:none;stroke-miterlimit:4;" >
|
||||
<g id="Batik_Logo_Text" >
|
||||
<!-- Approximately 445x370 user space units @ 0,0 -->
|
||||
<g id="Batik_Logo_Text_B" >
|
||||
<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> <!-- End Batik_Logo_Text_B -->
|
||||
|
||||
<path id="Batik_Logo_Text_A"
|
||||
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"/>
|
||||
<g id="Batik_Logo_Text_TI" style="fill:#FF0000;">
|
||||
<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> <!-- End Batik_Logo_Text_ti -->
|
||||
|
||||
<path id="Batik_Logo_Text_K"
|
||||
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"/>
|
||||
</g> <!-- End Batik_Logo_Text -->
|
||||
|
||||
<g id="Batik_Logo_Underline">
|
||||
<path d="M37.886,229.312c-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 -->
|
||||
|
||||
</g> <!-- End Batik_Logo -->
|
||||
|
||||
<g id="Batik_Logo_Shadow">
|
||||
<!-- pull in the Logo as a drow shadow -->
|
||||
<use xlink:href="#Batik_Logo" style="filter:url(#dropShadow)" />
|
||||
|
||||
<!-- Draw the Logo over the drop shadow -->
|
||||
<use xlink:href="#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>
|
||||
|
||||
<!-- This is what finially draws the logo -->
|
||||
<use transform="translate(65, 106) scale(.75, .75)"
|
||||
xlink:href="#Batik_Logo_Shadow" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="#Batik_Tag_Box" />
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,208 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Example that illustrates how event handlers can be invoked in Batik -->
|
||||
<!-- This example requires that you run on JDK1.3 or later -->
|
||||
<!-- @author cjolif@ilog.fr -->
|
||||
<!-- @version $Id: batikMusic.svg,v 1.1 2001/06/10 01:46:29 edburns%acm.org Exp $-->
|
||||
<!-- ========================================================================= -->
|
||||
<?xml-stylesheet type="text/css" href="tests/test.css" ?>
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Playing Music with Batik</title>
|
||||
|
||||
<use xlink:href="#musicText" x="125" y="30" />
|
||||
|
||||
<defs>
|
||||
<style type="text/css">
|
||||
#blank {fill:white;stroke:black}
|
||||
#black {fill:black;stroke:black}
|
||||
</style>
|
||||
<script type="text/ecmascript">
|
||||
var number = 0
|
||||
var midiChannel
|
||||
var lastId = -1
|
||||
importPackage(Packages.javax.sound.midi)
|
||||
synthesizer = MidiSystem.synthesizer
|
||||
synthesizer.open()
|
||||
sb = synthesizer.defaultSoundbank
|
||||
var instruments = synthesizer.defaultSoundbank.instruments
|
||||
loadInstrument()
|
||||
|
||||
function down(evt) {
|
||||
target = evt.currentTarget
|
||||
midiChannel.noteOn(target.id, 64)
|
||||
lastId = target.id
|
||||
}
|
||||
|
||||
function change(evt) {
|
||||
number = number + 1
|
||||
if (number >= instruments.length)
|
||||
number = 0
|
||||
loadInstrument()
|
||||
}
|
||||
|
||||
function drag(evt) {
|
||||
if (lastId != -1) {
|
||||
target = evt.currentTarget
|
||||
midiChannel.noteOn(target.id, 64)
|
||||
lastId = target.id
|
||||
}
|
||||
}
|
||||
|
||||
function up(evt) {
|
||||
if (lastId != -1) {
|
||||
midiChannel.allNotesOff()
|
||||
lastId = -1;
|
||||
}
|
||||
}
|
||||
|
||||
function loadInstrument() {
|
||||
System.out.println("-- "+instruments[number].name)
|
||||
synthesizer.loadInstrument(instruments[number])
|
||||
midiChannel = synthesizer.getChannels()[Math.floor(number/16)]
|
||||
midiChannel.programChange(number)
|
||||
midiChannel.noteOn(60, 64)
|
||||
}
|
||||
|
||||
function stop(evt) {
|
||||
midiChannel.noteOff(60)
|
||||
}
|
||||
</script>
|
||||
<rect id="blank" x="0" y="0" width="10" height="60"/>
|
||||
<rect id="black" x="0" y="0" width="6" height="33"/>
|
||||
</defs>
|
||||
<g onmousedown="change(evt)" onmouseup="stop(evt)" transform="translate(125, 120)" >
|
||||
<rect x="5" y="5" width="200" height="60" fill="rgb(198, 0, 0)"/>
|
||||
<g font-size="20" fill="white" font-family="Impact" text-anchor="middle" transform="translate(100, 30)">
|
||||
<text >
|
||||
Click here for </text>
|
||||
<text y="1em">next instrument
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<g transform="translate(225, 230)" text-anchor="middle" >
|
||||
<text>Mouse the mouse over the</text>
|
||||
<text y="10">keyboard to play music</text>
|
||||
</g>
|
||||
<clipPath>
|
||||
|
||||
</clipPath>
|
||||
|
||||
<g transform="translate(-100, 250) scale(2.4 3)">
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="24" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="26" x="10" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="25" x="7" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="28" x="20" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="27" x="17" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="29" x="30" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="31" x="40" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="30" x="37" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="33" x="50" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="32" x="47" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="35" x="60" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="34" x="57" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="36" x="70" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="38" x="80" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="37" x="77" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="40" x="90" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="39" x="87" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="41" x="100" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="43" x="110" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="42" x="107" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="45" x="120" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="44" x="117" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="47" x="130" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="46" x="127" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="48" x="140" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="50" x="150" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="49" x="147" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="52" x="160" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="51" x="157" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="53" x="170" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="55" x="180" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="54" x="177" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="57" x="190" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="56" x="187" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="59" x="200" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="58" x="197" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="60" x="210" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="62" x="220" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="61" x="217" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="64" x="230" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="63" x="227" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="65" x="240" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="67" x="250" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="66" x="247" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="69" x="260" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="68" x="257" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="71" x="270" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="70" x="267" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="72" x="280" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="74" x="290" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="73" x="287" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="76" x="300" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="75" x="297" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="77" x="310" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="79" x="320" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="78" x="317" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="81" x="330" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="80" x="327" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="83" x="340" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="82" x="337" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="84" x="350" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="86" x="360" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="85" x="357" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="88" x="370" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="87" x="367" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="89" x="380" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="91" x="390" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="90" x="387" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="93" x="400" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="92" x="397" xlink:href="#black"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="95" x="410" xlink:href="#blank"/>
|
||||
<use onmousedown="down(evt)" onmouseup="up(evt)" onmouseover="drag(evt)" id="94" x="407" xlink:href="#black"/>
|
||||
</g>
|
||||
|
||||
<defs>
|
||||
<g fill="black" stroke="none" id="musicText">
|
||||
<path d="M34.678,25.908c2.301-5.5,4.916-10.564,7.844-15.197C47.029,3.57,51.057,0,54.607,0c1.582,0,2.83,0.629,3.742,1.885c0.766,1.063,1.15,2.439,1.15,4.129c0,2.803-1.234,7.586-3.699,14.348c-0.912,2.4-2.855,7.225-5.832,14.473
|
||||
c4.799-9.418,8.016-15.426,9.648-18.023C64.176,9.506,68.641,4.652,73.008,2.25c2.256-1.25,3.793-1.875,4.609-1.875c0.91,0,1.367,0.674,1.367,2.021c0,0.289-1.344,3.732-4.031,10.326C66.65,33.037,62.5,44.566,62.5,47.309c0,1.879,0.984,2.816,2.953,2.816
|
||||
c3.072,0,7.129-1.4,12.172-4.203v1.016C72.914,49.646,68.66,51,64.863,51c-4.326,0-6.488-1.824-6.488-5.477c0-3.457,2.33-10.783,6.99-21.977c4.324-10.375,7.76-17.557,10.307-21.545C71.016,4.402,66,9.611,60.625,17.627c-4.514,6.816-8.09,13.344-10.729,19.584
|
||||
c-0.336,0.912-1.008,2.592-2.016,5.039l-0.504,1.08c-1.248,2.977-2.279,4.848-3.096,5.615c-1.586,0.529-3.002,1.105-4.248,1.729h-0.217c-0.191,0-0.287-0.096-0.287-0.287c0.35-1.766,0.949-3.484,1.801-5.156c2.379-5.047,5.568-13.072,9.568-24.078
|
||||
c3.65-10.078,5.477-16.078,5.477-18c0-1.582-0.719-2.375-2.156-2.375c-3.262,0-6.881,4.467-10.859,13.398c-6.041,13.543-10.068,21.852-12.08,24.926C25.432,48.035,18.672,52.5,11.002,52.5c-3.068,0-6.447-1.107-10.139-3.322C0.625,46.818,0.336,45.109,0,44.051
|
||||
c1.488,1.811,3.502,3.4,6.043,4.77c2.543,1.371,4.916,2.055,7.123,2.055c3.885,0,7.387-1.494,10.504-4.486c2.59-2.461,4.748-5.717,6.477-9.77c0.094-0.145,1.605-3.715,4.531-10.711z"/>
|
||||
<path d="M89.999,23.166l0.074,0.248c0,0.289-1.881,5.238-5.639,14.85c-2.117,5.068-3.176,8.408-3.176,10.018c0,0.996,0.652,1.754,1.959,2.273c0.24,0,0.457,0.023,0.652,0.07h0.652c1.354,0,2.949-0.545,4.787-1.639c0.918-0.523,2.369-1.498,4.352-2.924
|
||||
c0.629-3.23,1.691-6.793,3.191-10.691l3.992-10.527c1.285-0.531,2.998-1.063,5.141-1.594l0.285,0.211v0.213c-1.105,2.352-2.76,6.576-4.967,12.672c-2.447,6.645-3.67,10.604-3.67,11.875c0,1.604,1.199,2.404,3.6,2.404c3.07,0,6.791-1.592,11.158-4.775V47
|
||||
c-4.225,3.168-7.969,4.75-11.232,4.75c-1.488,0-2.953-0.385-4.393-1.15c-1.633-0.863-2.592-1.967-2.879-3.311c-3.361,2.809-6.553,4.211-9.576,4.211c-1.729,0-3.217-0.453-4.465-1.363c-1.391-1.004-2.088-2.32-2.088-3.949c0-1.865,0.961-5.406,2.881-10.623
|
||||
c0.592-1.578,1.975-5.191,4.148-10.84c2.301-0.949,3.943-1.523,4.93-1.725l0.281,0.166z"/>
|
||||
<path d="M125.22,22.25c1.666,0,2.5,1.078,2.5,3.234c0,2.254-1.139,5.104-3.414,8.553c1.109,3.979,1.664,6.494,1.664,7.547c0,3.164-1.707,6.039-5.121,8.625c1.59,0.527,3.109,0.791,4.559,0.791c3.23,0,6.752-1.596,10.563-4.789v1.162
|
||||
c-3.852,3.002-7.295,4.502-10.326,4.502c-1.445,0-3.299-0.377-5.561-1.129c-1.205,0.752-2.578,1.129-4.117,1.129c-3.082,0-4.621-1.246-4.621-3.738c0-1.102,0.408-2.133,1.225-3.092c2.207-1.727,4.824-4.219,7.848-7.479c-0.465-1.773-0.697-3.762-0.697-5.969
|
||||
c0-1.965,0.428-3.906,1.285-5.824c1.047-2.348,2.453-3.523,4.215-3.523z M122.095,45.418c0-1.008-0.17-2.207-0.506-3.6l-0.865-3.6c-0.723,0.961-1.984,2.232-3.789,3.816s-3.117,2.832-3.934,3.744c0.77,0.289,1.863,0.973,3.283,2.053
|
||||
c1.418,1.08,2.563,1.764,3.43,2.051c1.586-1.439,2.381-2.928,2.381-4.465z M126.47,25.979c0-1.344-0.369-2.23-1.105-2.664c-0.555,0-1.051,0.469-1.488,1.404c-0.438,0.938-0.656,1.74-0.656,2.412v1.799c0,1.105,0.275,2.496,0.83,4.176
|
||||
c1.613-2.975,2.42-5.326,2.42-7.055v-0.072z"/>
|
||||
<path d="M145.846,23.375c0.096,0,0.313,0,0.648,0c0.191,0,0.287,0.145,0.287,0.43c0,2.148-1.418,6.16-4.252,12.031c-2.836,5.873-4.252,9.955-4.252,12.246c0,1.863,1.102,2.793,3.307,2.793c2.396,0,5.92-1.627,10.568-4.881v0.936
|
||||
c-3.93,3.215-7.523,4.82-10.781,4.82c-1.82,0-3.354-0.48-4.6-1.436c-1.246-0.957-1.869-2.322-1.869-4.096c0-2.25,0.791-5.578,2.375-9.984c0.625-1.676,1.873-5.029,3.744-10.059c2.111-0.861,3.744-1.795,4.896-2.801h-0.072z M149.403,14.313
|
||||
c0,0.77-0.266,1.432-0.793,1.984c-0.529,0.553-1.178,0.828-1.947,0.828c-1.924,0-2.885-0.938-2.885-2.813s0.961-2.813,2.885-2.813c0.77,0,1.418,0.277,1.947,0.83c0.527,0.553,0.793,1.213,0.793,1.982z"/>
|
||||
<path d="M159.257,51.75c-5.664,0-8.496-2.273-8.496-6.824c0-4.406,1.92-9.027,5.76-13.865c4.031-5.123,8.184-7.686,12.457-7.686c1.152,0,2.111,0.406,2.881,1.219c0.768,0.813,1.152,1.793,1.152,2.941c0,2.008-0.938,4.352-2.809,7.027
|
||||
c-1.969,2.869-3.912,4.303-5.832,4.303h-0.217l-0.504-0.215l-0.432-0.572l-0.072-0.5c0.383-1.574,2.037-3.363,4.963-5.367c2.684-1.813,4.027-3.695,4.027-5.652c0-0.715-0.336-1.301-1.004-1.754c-0.67-0.453-1.387-0.68-2.152-0.68
|
||||
c-3.539,0-6.744,2.695-9.613,8.082c-2.488,4.674-3.73,8.988-3.73,12.945c0,3.816,1.844,5.723,5.531,5.723c2.346,0,5.074-0.613,8.188-1.844c2.777-1.088,5.268-2.412,7.471-3.973v1.15c-3.553,1.729-6.385,2.977-8.496,3.742c-3.217,1.199-6.24,1.799-9.072,1.799z"/>
|
||||
<path d="M187.259,48.973c0,1.686-0.857,2.527-2.572,2.527c-1.619,0-2.428-0.842-2.428-2.527c0-0.672,0.236-1.273,0.713-1.803s1.047-0.795,1.715-0.795c0.715,0,1.322,0.254,1.822,0.758c0.5,0.506,0.75,1.119,0.75,1.84z M201.195,6.25l-13.68,33.408l-0.793-0.145
|
||||
l8.496-32.256l5.977-1.008z"/>
|
||||
</g>
|
||||
</defs>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="batikLogo.svg#Batik_Tag_Box" />
|
||||
|
||||
</svg>
|
|
@ -0,0 +1,188 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd">
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Copyright (C) The Apache Software Foundation. All rights reserved. -->
|
||||
<!-- -->
|
||||
<!-- This software is published under the terms of the Apache Software License -->
|
||||
<!-- version 1.1, a copy of which has been included with this distribution in -->
|
||||
<!-- the LICENSE file. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Test description here -->
|
||||
<!-- -->
|
||||
<!-- @author vincent.hardy@eng.sun.com -->
|
||||
<!-- @version $Id: batikYin.svg,v 1.1 2001/06/10 01:46:29 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Batik, Yin-Yang</title>
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent" style="overflow:hidden">
|
||||
|
||||
<defs>
|
||||
<g id="batikYin">
|
||||
<g style="stroke:none;">
|
||||
<path d="M77.349,178.491c0.14-0.09,0.239-0.3,0.299-0.628l0.413-2.265c0.059-0.321,0.04-0.547-0.057-0.678c-0.096-0.13-0.335-0.23-0.718-0.3l-0.711,3.904c0.376,0.069,0.635,0.058,0.774-0.033z"/>
|
||||
<path d="M83.244,183.654l-0.191,1.89c-0.026,0.258-0.01,0.438,0.047,0.539c0.058,0.101,0.17,0.159,0.336,0.176c0.153,0.015,0.272-0.026,0.356-0.125c0.084-0.1,0.138-0.265,0.162-0.498l0.307-3.033c-0.041,0.022-0.096,0.056-0.165,0.101
|
||||
c-0.538,0.337-0.822,0.654-0.852,0.952z"/>
|
||||
<path d="M98.014,182.61l-0.039,0.001l0.209,5.295c0.307-0.012,0.616-0.019,0.921-0.033l-1.092-5.264z"/>
|
||||
<path d="M83.792,187.431l0.018-0.176l-0.039-0.004c-0.053,0.085-0.118,0.148-0.177,0.223c0.065,0.006,0.13,0.016,0.196,0.022c0.001-0.021,0-0.046,0.001-0.066z"/>
|
||||
<path d="M76.221,180.461l-0.829,4.55l0.15,0.027c0.283,0.051,0.492,0.028,0.63-0.069c0.138-0.098,0.233-0.291,0.286-0.58L77,181.418c0.052-0.289,0.031-0.503-0.063-0.643c-0.094-0.14-0.282-0.235-0.565-0.287l-0.15-0.027z"/>
|
||||
<path d="M51.054,173.952l-0.884,1.682c-0.121,0.23-0.174,0.402-0.158,0.517c0.016,0.115,0.098,0.211,0.246,0.289c0.136,0.072,0.262,0.078,0.377,0.017c0.115-0.061,0.228-0.194,0.336-0.401l1.418-2.699c-0.046,0.005-0.11,0.016-0.191,0.032
|
||||
c-0.625,0.111-1.007,0.3-1.146,0.564z"/>
|
||||
<path d="M50.232,177.503l-0.034-0.018c-0.001,0.001-0.003,0.001-0.005,0.003c0.012,0.006,0.024,0.012,0.037,0.019l0.002-0.004z"/>
|
||||
<path d="M44.46,172.044l1.639-2.539c0.159-0.246,0.222-0.452,0.188-0.617c-0.034-0.166-0.171-0.326-0.412-0.482l-0.128-0.083l-2.508,3.886l0.128,0.083c0.241,0.156,0.443,0.215,0.608,0.178c0.165-0.038,0.327-0.179,0.486-0.426z"/>
|
||||
<path d="M63.678,183.259c0.286,0.095,0.573,0.188,0.86,0.279l0.755-5.211l-0.037-0.012l-1.578,4.944z"/>
|
||||
<path d="M36.489,162.135l-0.03-0.025l-3.178,3.726c0.216,0.186,0.428,0.379,0.645,0.563l2.563-4.264z"/>
|
||||
<path d="M5.096,117.142l2.963-0.589c0.288-0.057,0.479-0.155,0.574-0.295c0.095-0.139,0.115-0.349,0.059-0.631l-0.03-0.15l-4.536,0.902l0.03,0.15c0.056,0.282,0.154,0.468,0.296,0.561c0.141,0.092,0.355,0.11,0.644,0.053z"/>
|
||||
<path d="M48.059,166.47l1.249-1.935c0.177-0.274,0.246-0.49,0.207-0.647s-0.222-0.342-0.548-0.552l-2.153,3.334c0.322,0.208,0.564,0.296,0.728,0.266s0.336-0.186,0.517-0.466z"/>
|
||||
<path d="M24.389,144.863c0.163,0.032,0.38-0.049,0.652-0.243l1.873-1.339c0.266-0.19,0.409-0.365,0.431-0.526c0.021-0.161-0.081-0.399-0.307-0.715l-3.229,2.309c0.223,0.311,0.416,0.483,0.579,0.515z"/>
|
||||
<path d="M6.475,124.876c0.125,0.036,0.299,0.017,0.521-0.057l2.892-0.965c-0.037-0.028-0.09-0.064-0.159-0.109c-0.529-0.353-0.935-0.481-1.218-0.386l-1.802,0.601c-0.247,0.082-0.404,0.17-0.472,0.264c-0.068,0.094-0.075,0.22-0.022,0.378
|
||||
c0.049,0.146,0.135,0.237,0.261,0.274z"/>
|
||||
<path d="M11.604,115.848l2.258-0.449c0.321-0.063,0.523-0.164,0.61-0.302c0.085-0.138,0.091-0.397,0.015-0.778l-3.893,0.774c0.075,0.375,0.18,0.611,0.315,0.708c0.136,0.097,0.367,0.112,0.694,0.047z"/>
|
||||
<g>
|
||||
<path d="M168.293,73.729l-2.114,0.563l0.652,2.446l2.114-0.564l-0.652-2.445z"/>
|
||||
<path d="M154.872,46.013l-1.778,1.274l1.474,2.058l1.778-1.274l-1.475-2.058z"/>
|
||||
<path d="M134.092,27.271l-2.213-1.228l-1.061,1.913l2.214,1.228l1.061-1.913z"/>
|
||||
<path d="M102.219,19.884l2.519,0.255l0.22-2.177l-2.519-0.254l-0.22,2.176z"/>
|
||||
<path d="M160.5,27.5C142.165,9.171,119.998,0,94,0C67.996,0,45.829,9.171,27.5,27.5C9.165,45.835,0,68.002,0,94c0,6.899,0.665,13.52,1.956,19.879l13.748-2.733l0.652,3.279c0.22,1.106,0.185,1.969-0.105,2.588c-0.29,0.619-0.838,1.009-1.646,1.169l-1.673,0.333
|
||||
c-0.762,0.152-1.354,0.103-1.777-0.147s-0.795-0.766-1.117-1.549l-0.077,0.016c0.083,0.75-0.027,1.342-0.33,1.776c-0.303,0.434-0.81,0.722-1.519,0.863l-2.187,0.435c-1.108,0.22-1.945,0.114-2.511-0.317c-0.049-0.037-0.09-0.096-0.137-0.139
|
||||
c0.262,0.97,0.527,1.938,0.82,2.894c0.236-0.221,0.56-0.404,0.984-0.545l2.313-0.771c0.572-0.191,1.074-0.244,1.503-0.156c0.429,0.087,0.844,0.318,1.243,0.693c0.13,0.121,0.308,0.293,0.535,0.519c0.766,0.748,1.36,1.052,1.781,0.912l0.786-0.262
|
||||
c0.237-0.079,0.396-0.171,0.479-0.276c0.083-0.106,0.098-0.238,0.045-0.396c-0.049-0.146-0.137-0.234-0.265-0.263c-0.127-0.029-0.31-0.003-0.546,0.076l-1.609,0.537l-0.811-2.431l1.59-0.531c0.827-0.276,1.531-0.245,2.11,0.094
|
||||
c0.579,0.339,1.026,0.978,1.34,1.917c0.342,1.025,0.352,1.834,0.03,2.426c-0.321,0.591-1.055,1.079-2.199,1.46l-6.65,2.219c-0.287,0.096-0.536,0.195-0.751,0.296c0.225,0.59,0.44,1.184,0.678,1.768c0.22-0.263,0.605-0.511,1.166-0.745l7.085-2.956l-0.245-0.587
|
||||
l1.702-0.71l0.245,0.587l1.961-0.818l0.986,2.365l-1.961,0.818l0.289,0.692l-1.702,0.71l-0.289-0.692l-6.48,2.704c-0.332,0.138-0.523,0.267-0.577,0.385c-0.053,0.119-0.029,0.299,0.072,0.542l0.034,0.082l-1.065,0.444c0.108,0.243,0.212,0.487,0.323,0.728
|
||||
l9.822-4.631l1.08,2.29l-9.81,4.625c0.199,0.402,0.404,0.802,0.61,1.201l12.007-6.543l1.211,2.223l-6.935,3.779l0.019,0.034l4.929-1.452l1.242,2.28l-4.979,1.279l-4.538,3.737c0.925,1.53,1.908,3.036,2.933,4.524l11.019-7.879l1.945,2.72
|
||||
c0.656,0.917,0.979,1.718,0.97,2.401c-0.009,0.684-0.348,1.265-1.018,1.744l-1.387,0.992c-0.632,0.452-1.192,0.651-1.68,0.598c-0.488-0.053-1.04-0.371-1.656-0.951l-0.064,0.046c0.384,0.649,0.528,1.234,0.431,1.754c-0.098,0.52-0.44,0.991-1.029,1.412
|
||||
l-1.813,1.297c-0.775,0.555-1.466,0.8-2.081,0.772c0.426,0.542,0.844,1.086,1.285,1.622c0.135-0.187,0.306-0.372,0.525-0.557l1.862-1.572c0.461-0.389,0.908-0.624,1.339-0.701c0.431-0.078,0.902-0.017,1.412,0.185c0.165,0.063,0.395,0.159,0.688,0.284
|
||||
c0.989,0.412,1.653,0.475,1.993,0.188l0.633-0.535c0.19-0.161,0.305-0.306,0.342-0.434c0.038-0.129,0.003-0.257-0.104-0.385c-0.1-0.118-0.214-0.167-0.343-0.146s-0.289,0.111-0.479,0.272l-1.296,1.094l-1.653-1.958l1.281-1.081
|
||||
c0.667-0.563,1.332-0.794,1.996-0.693s1.315,0.529,1.954,1.285c0.697,0.826,1.006,1.574,0.926,2.243s-0.581,1.392-1.503,2.17l-5.357,4.522c-0.121,0.102-0.205,0.192-0.306,0.288c0.367,0.396,0.751,0.785,1.127,1.178c0.146-0.216,0.343-0.447,0.604-0.697
|
||||
l5.551-5.304l-0.44-0.46l1.333-1.274l0.44,0.46l1.536-1.468l1.771,1.853l-1.537,1.468l0.518,0.542l-1.333,1.274l-0.518-0.542l-5.077,4.85c-0.26,0.249-0.393,0.437-0.4,0.566c-0.007,0.13,0.08,0.29,0.262,0.48l0.062,0.064l-0.519,0.496
|
||||
c0.18,0.177,0.363,0.344,0.543,0.52l7.207-7.502l1.825,1.754l-7.203,7.498c0.323,0.299,0.645,0.601,0.97,0.895l8.589-10.071l1.926,1.643l-5.125,6.009l0.03,0.025l4.083-3.119l1.976,1.685l-4.192,2.975l-2.693,4.747c1.441,1.154,2.903,2.257,4.386,3.311
|
||||
l7.182-11.124l2.809,1.814c0.947,0.611,1.542,1.237,1.786,1.876c0.243,0.639,0.141,1.304-0.305,1.995l-0.925,1.433c-0.422,0.653-0.869,1.044-1.342,1.174s-1.103,0.038-1.89-0.275l-0.042,0.066c0.596,0.463,0.945,0.954,1.046,1.474
|
||||
c0.101,0.519-0.045,1.083-0.438,1.691l-1.209,1.873c-0.475,0.736-0.979,1.212-1.509,1.441c0.573,0.352,1.157,0.679,1.736,1.016c0.057-0.199,0.134-0.406,0.251-0.628l1.134-2.158c0.281-0.534,0.606-0.919,0.977-1.154c0.37-0.234,0.829-0.354,1.377-0.36
|
||||
c0.177-0.003,0.425-0.001,0.745,0.003c1.071,0.01,1.71-0.182,1.917-0.576l0.385-0.733c0.116-0.221,0.167-0.398,0.154-0.531c-0.014-0.134-0.094-0.239-0.242-0.317c-0.137-0.072-0.261-0.074-0.373-0.006c-0.112,0.068-0.226,0.212-0.342,0.433l-0.789,1.502
|
||||
l-2.268-1.192l0.78-1.484c0.406-0.772,0.935-1.237,1.588-1.393c0.653-0.157,1.417-0.005,2.294,0.455c0.957,0.503,1.524,1.08,1.702,1.729c0.177,0.649-0.015,1.508-0.576,2.576l-3.262,6.206c-0.087,0.166-0.143,0.306-0.209,0.455
|
||||
c0.514,0.254,1.022,0.52,1.54,0.764c0.038-0.292,0.138-0.632,0.317-1.036l3.105-7.021l-0.583-0.257l0.746-1.686l0.583,0.257l0.859-1.943l2.344,1.037l-0.859,1.943l0.686,0.303l-0.746,1.686l-0.686-0.303l-2.84,6.421c-0.146,0.329-0.196,0.554-0.153,0.677
|
||||
s0.185,0.237,0.425,0.343l0.081,0.036l-0.37,0.836c0.241,0.103,0.476,0.218,0.717,0.318l3.851-9.914l2.36,0.917l-3.852,9.916c0.422,0.162,0.84,0.33,1.265,0.485l4.104-12.859l2.411,0.77l-2.401,7.524l0.037,0.012l2.56-4.456l2.473,0.79l-2.715,4.365
|
||||
l-0.686,5.744c1.738,0.501,3.502,0.941,5.284,1.339l2.43-13.341l3.29,0.599c1.109,0.202,1.898,0.552,2.368,1.049c0.469,0.498,0.63,1.151,0.483,1.96l-0.306,1.678c-0.14,0.765-0.403,1.297-0.791,1.599c-0.387,0.301-1.004,0.458-1.851,0.469l-0.014,0.077
|
||||
c0.728,0.199,1.239,0.519,1.53,0.96c0.292,0.441,0.374,1.018,0.244,1.73l-0.399,2.193c-0.191,1.048-0.57,1.753-1.123,2.139c0.75,0.118,1.499,0.237,2.256,0.338c-0.069-0.277-0.091-0.597-0.053-0.973l0.246-2.425c0.061-0.601,0.219-1.079,0.475-1.435
|
||||
c0.255-0.356,0.636-0.639,1.143-0.849c0.163-0.069,0.394-0.161,0.692-0.275c0.997-0.392,1.518-0.809,1.563-1.25l0.083-0.824c0.025-0.249,0.006-0.432-0.056-0.551c-0.063-0.119-0.176-0.187-0.343-0.203c-0.153-0.016-0.27,0.029-0.348,0.133
|
||||
c-0.078,0.104-0.13,0.281-0.155,0.529l-0.17,1.688l-2.55-0.258l0.169-1.668c0.088-0.868,0.405-1.497,0.952-1.886c0.547-0.39,1.313-0.535,2.298-0.435c1.075,0.109,1.817,0.432,2.225,0.968c0.407,0.536,0.55,1.404,0.429,2.605l-0.706,6.975
|
||||
c-0.027,0.269-0.035,0.501-0.034,0.72c0.565,0.041,1.13,0.083,1.7,0.115c-0.113-0.307-0.162-0.725-0.137-1.27l0.342-7.669l-0.636-0.028l0.082-1.842l0.636,0.029l0.095-2.123l2.56,0.114l-0.095,2.123l0.75,0.033l-0.083,1.842l-0.749-0.033l-0.313,7.014
|
||||
c-0.016,0.359,0.018,0.587,0.103,0.686c0.084,0.099,0.258,0.154,0.521,0.166l0.089,0.004l-0.048,1.078c0.24,0.006,0.481,0.011,0.722,0.016l0.085-10.775l2.531,0.02l-0.085,10.794c0.421-0.001,0.835-0.021,1.255-0.028l-0.539-13.613l2.529-0.1l0.312,7.892
|
||||
l0.039-0.001l0.884-5.062l2.594-0.103l-1.062,5.03l1.329,5.688c22.68-1.663,42.273-10.71,58.759-27.195C178.829,142.171,188,120.004,188,94c0-25.998-9.171-48.165-27.5-66.5z M178.192,67.119l-4.96,1.615l-0.012-0.038l4.683-2.436
|
||||
c0.093,0.287,0.199,0.57,0.289,0.858z M172.775,56.494l0.064,0.139l-4.199,1.938l-0.064-0.139c-0.12-0.261-0.15-0.47-0.09-0.627s0.223-0.298,0.489-0.421l2.744-1.266c0.267-0.123,0.479-0.156,0.638-0.1c0.159,0.057,0.298,0.215,0.418,0.476z M168.925,49.112
|
||||
c0.13,0.012,0.232,0.085,0.308,0.22c0.082,0.146,0.099,0.271,0.05,0.376c-0.049,0.105-0.187,0.221-0.414,0.349l-1.655,0.932c-0.26,0.146-0.683,0.097-1.269-0.148c-0.077-0.031-0.135-0.056-0.177-0.077l2.657-1.496c0.204-0.115,0.37-0.166,0.5-0.155z
|
||||
M160.947,36.945l-3.244,2.652l-0.025-0.03l2.782-3.168c0.163,0.182,0.326,0.364,0.487,0.547z M152.043,28.062c0.028-0.001,0.06,0.017,0.088,0.021c0.171,0.151,0.346,0.291,0.516,0.444l-3.035,3.333l-0.113-0.103c-0.212-0.193-0.321-0.375-0.327-0.543
|
||||
c-0.006-0.169,0.089-0.362,0.287-0.578l2.035-2.234c0.197-0.217,0.38-0.331,0.549-0.34z M145.918,22.999c0.199,0.148,0.392,0.312,0.59,0.462c-0.028,0.106-0.088,0.231-0.207,0.393l-1.129,1.528c-0.177,0.241-0.583,0.369-1.218,0.384
|
||||
c-0.083,0.003-0.146,0.004-0.193,0.002l1.812-2.452c0.122-0.165,0.236-0.264,0.346-0.316z M132.774,14.898c0.221,0.11,0.442,0.222,0.663,0.335l-1.772,3.806l-0.035-0.017l1.145-4.125z M120.329,14.564l0.863-2.896c0.084-0.281,0.2-0.463,0.348-0.544
|
||||
c0.147-0.082,0.358-0.082,0.634,0l0.146,0.043l-1.322,4.432l-0.146-0.044c-0.275-0.082-0.452-0.198-0.531-0.347c-0.079-0.149-0.076-0.364,0.008-0.645z M119.662,17.435c0.149-0.075,0.407-0.058,0.773,0.052l-1.134,3.803c-0.373-0.111-0.599-0.237-0.681-0.377
|
||||
c-0.082-0.141-0.076-0.367,0.018-0.68l0.658-2.207c0.095-0.319,0.217-0.517,0.366-0.591z M113.816,9.638c0.047-0.229,0.118-0.389,0.211-0.479c0.094-0.09,0.216-0.12,0.367-0.089c0.164,0.033,0.27,0.103,0.317,0.208c0.047,0.106,0.044,0.287-0.007,0.541
|
||||
l-0.381,1.861c-0.06,0.293-0.374,0.58-0.943,0.861c-0.074,0.038-0.131,0.065-0.174,0.083l0.61-2.987z M99.781,6.251l-0.255,5.064l-0.039-0.002L98.897,6.19c0.297,0.015,0.588,0.044,0.884,0.061z M19.753,130.544l-1.08-2.29l1.979-0.933l1.08,2.289l-1.979,0.933z
|
||||
M38.083,155.283l-1.826-1.753l1.516-1.578l1.825,1.753l-1.515,1.578z M58.744,102.819c-2.423,2.498-5.307,3.743-8.65,3.743c-3.425,0-6.349-1.225-8.772-3.675c-2.423-2.45-3.635-5.415-3.635-8.887c0-3.466,1.212-6.43,3.635-8.88
|
||||
c2.423-2.45,5.347-3.682,8.772-3.682c3.425,0,6.329,1.232,8.711,3.682c2.383,2.45,3.574,5.415,3.574,8.88c0,3.384-1.211,6.328-3.634,8.819z M64.12,171.393l-2.359-0.917l0.792-2.039l2.359,0.917l-0.792,2.039z M94.489,176.51l-2.531-0.02l0.017-2.188l2.531,0.02
|
||||
l-0.017,2.188z M138.069,137.751c-11.953,0-22.105-4.007-30.458-12.027c-8.353-8.021-12.82-18.065-13.408-30.14l-0.129-3.039c-0.677-12.075-5.171-22.14-13.476-30.201c-8.312-8.062-18.437-12.095-30.391-12.095c-12.548,0-22.552,3.709-30.011,11.127
|
||||
C12.738,68.794,8.075,79.671,6.213,93.993c1.436-25.957,10.315-47.102,26.634-63.434C49.167,14.234,69.573,6.064,94.075,6.064c0.734,0,1.456,0.033,2.184,0.049l0.785,5.585l-1.509,4.914l2.593,0.131l1.335-4.962l0.039,0.002l-0.398,7.888l2.528,0.127
|
||||
l0.675-13.375c0.422,0.036,0.842,0.077,1.262,0.119l-1.06,10.48l2.519,0.255l1.056-10.442c0.242,0.031,0.487,0.052,0.729,0.085L106.7,7.71l0.088,0.012c0.261,0.037,0.428,0.108,0.503,0.214c0.075,0.106,0.087,0.337,0.037,0.693l-0.981,6.952l-0.743-0.105
|
||||
l-0.258,1.826l0.743,0.105l-0.297,2.104l2.537,0.358l0.297-2.104l0.63,0.089l0.258-1.826l-0.63-0.089l1.073-7.602c0.049-0.352,0.061-0.65,0.043-0.906c0.536,0.093,1.076,0.175,1.608,0.278c-0.019,0.118-0.025,0.219-0.052,0.348l-1.404,6.869
|
||||
c-0.242,1.182-0.187,2.061,0.165,2.635c0.352,0.574,1.057,0.97,2.116,1.187c0.97,0.199,1.747,0.131,2.33-0.201c0.583-0.333,0.962-0.926,1.137-1.781l0.335-1.642l-2.51-0.513l-0.34,1.662c-0.05,0.245-0.119,0.415-0.208,0.511c-0.088,0.096-0.209,0.129-0.36,0.098
|
||||
c-0.164-0.034-0.27-0.113-0.32-0.237c-0.05-0.125-0.05-0.309,0-0.553l0.166-0.812c0.089-0.436,0.649-0.798,1.681-1.087c0.308-0.084,0.547-0.151,0.716-0.204c0.525-0.158,0.932-0.401,1.222-0.729c0.291-0.329,0.496-0.789,0.617-1.38l0.488-2.388
|
||||
c0.029-0.144,0.048-0.279,0.06-0.41c0.575,0.155,1.153,0.299,1.723,0.466c-0.332,0.371-0.607,0.879-0.811,1.562l-0.637,2.136c-0.207,0.693-0.189,1.276,0.053,1.746c0.242,0.471,0.714,0.845,1.416,1.122l-0.022,0.075c-0.842-0.081-1.473,0.007-1.891,0.264
|
||||
s-0.738,0.758-0.96,1.502l-0.487,1.635c-0.235,0.788-0.147,1.455,0.265,2.001c0.412,0.545,1.159,0.979,2.239,1.302l3.205,0.956l3.658-12.266c1.757,0.666,3.494,1.385,5.205,2.172l-1.181,4.708l-3.246,3.986l2.354,1.096l3.103-4.096l0.035,0.017l-3.334,7.16
|
||||
l2.294,1.068l5.255-11.283c0.393,0.216,0.78,0.445,1.169,0.667l-4.639,8.365l2.213,1.228l4.615-8.322c0.404,0.246,0.801,0.513,1.202,0.767c-0.009,0.131-0.075,0.308-0.233,0.561l-3.724,5.952l-0.636-0.398l-0.978,1.563l0.636,0.397l-1.127,1.802l2.173,1.359
|
||||
l1.127-1.801l0.54,0.337l0.978-1.563l-0.54-0.338l4.023-6.431c0.438,0.296,0.867,0.617,1.301,0.922l-3.76,5.091c-0.717,0.97-1.037,1.791-0.96,2.459c0.077,0.669,0.551,1.325,1.42,1.967c0.797,0.588,1.53,0.854,2.199,0.798c0.669-0.056,1.263-0.435,1.781-1.137
|
||||
l0.996-1.348l-2.062-1.522l-1.008,1.364c-0.148,0.201-0.282,0.326-0.403,0.376c-0.121,0.05-0.243,0.029-0.368-0.063c-0.134-0.099-0.197-0.216-0.19-0.35s0.084-0.301,0.233-0.502l0.492-0.667c0.264-0.357,0.925-0.45,1.982-0.278
|
||||
c0.315,0.053,0.56,0.093,0.735,0.117c0.542,0.078,1.015,0.028,1.416-0.147c0.401-0.175,0.781-0.507,1.14-0.992l1.155-1.563c0.41,0.33,0.819,0.662,1.226,1c-0.206,0.166-0.413,0.356-0.622,0.586l-1.501,1.648c-0.487,0.535-0.724,1.067-0.71,1.596
|
||||
s0.277,1.07,0.789,1.625l-0.053,0.058c-0.724-0.438-1.331-0.633-1.818-0.583c-0.488,0.05-0.994,0.362-1.517,0.937l-1.148,1.261c-0.554,0.608-0.764,1.247-0.629,1.918c0.135,0.67,0.619,1.385,1.452,2.144l2.473,2.251l8.222-9.029
|
||||
c0.395,0.376,0.797,0.734,1.189,1.119c0.957,0.94,1.876,1.894,2.78,2.854l-2.958,3.545l-4.656,2.18l1.644,2.01l4.574-2.341l0.025,0.03l-6.114,4.999l1.602,1.96l9.771-7.989c0.281,0.337,0.551,0.68,0.827,1.02l-7.994,5.729l1.474,2.058l8.101-5.805
|
||||
c0.152,0.199,0.292,0.403,0.443,0.604l-0.241,0.157l0.048,0.075c0.144,0.22,0.2,0.394,0.168,0.52c-0.031,0.126-0.197,0.287-0.498,0.483l-5.886,3.828l-0.409-0.629l-1.546,1.005l0.409,0.629l-1.782,1.159l1.397,2.148l1.781-1.158l0.347,0.534l1.545-1.005
|
||||
l-0.347-0.534l6.436-4.186c0.198-0.129,0.362-0.254,0.508-0.378c0.305,0.439,0.583,0.888,0.878,1.33c-0.045,0.027-0.075,0.051-0.123,0.078l-6.108,3.441c-1.051,0.592-1.679,1.209-1.882,1.851c-0.204,0.642-0.04,1.435,0.49,2.376
|
||||
c0.486,0.863,1.046,1.405,1.679,1.628s1.33,0.12,2.09-0.308l1.46-0.822l-1.258-2.233l-1.478,0.833c-0.217,0.123-0.391,0.182-0.521,0.178c-0.131-0.004-0.234-0.073-0.31-0.208c-0.082-0.146-0.092-0.278-0.031-0.397c0.061-0.119,0.2-0.24,0.418-0.362l0.722-0.407
|
||||
c0.387-0.218,1.028-0.032,1.922,0.557c0.265,0.178,0.473,0.314,0.624,0.408c0.463,0.292,0.914,0.441,1.352,0.445c0.438,0.004,0.921-0.143,1.447-0.438l2.124-1.196c0.203-0.114,0.369-0.236,0.518-0.361c0.323,0.568,0.632,1.141,0.94,1.714
|
||||
c-0.575-0.098-1.261,0.03-2.068,0.402l-2.024,0.934c-0.657,0.303-1.082,0.701-1.275,1.194c-0.193,0.492-0.162,1.094,0.094,1.804l-0.071,0.033c-0.496-0.686-0.979-1.101-1.448-1.245c-0.469-0.144-1.056-0.053-1.762,0.272l-1.549,0.715
|
||||
c-0.747,0.344-1.189,0.852-1.326,1.521c-0.137,0.67,0.031,1.517,0.503,2.541l1.401,3.036l12.245-5.649c0.722,1.638,1.398,3.293,2.006,4.973l-5.07,2.801l-5.129,0.346l0.804,2.469l5.111-0.525l0.012,0.037l-7.51,2.445l0.784,2.407l12.828-4.177
|
||||
c0.116,0.418,0.242,0.833,0.351,1.254l-10.281,2.743l0.652,2.446l10.213-2.725c0.055,0.245,0.111,0.488,0.165,0.733l-0.832,0.186l0.019,0.087c0.058,0.257,0.05,0.438-0.023,0.546s-0.285,0.2-0.635,0.278l-6.853,1.529L171.5,75.9l-1.799,0.401l0.164,0.732
|
||||
l-2.074,0.463l0.558,2.501l2.074-0.463l0.139,0.622l1.799-0.401l-0.139-0.622l7.493-1.672c0.36-0.08,0.654-0.178,0.892-0.291c0.097,0.55,0.197,1.098,0.283,1.651c-0.116,0.023-0.212,0.052-0.342,0.072l-6.927,1.081c-1.192,0.186-1.996,0.544-2.412,1.074
|
||||
c-0.416,0.53-0.541,1.329-0.374,2.397c0.153,0.979,0.487,1.683,1.002,2.114c0.515,0.431,1.204,0.579,2.065,0.444l1.656-0.258l-0.395-2.532l-1.676,0.262c-0.246,0.039-0.43,0.033-0.551-0.017c-0.121-0.049-0.193-0.15-0.217-0.303
|
||||
c-0.026-0.165,0.011-0.292,0.11-0.383c0.099-0.09,0.272-0.154,0.518-0.193l0.819-0.127c0.439-0.069,0.974,0.33,1.605,1.195c0.186,0.26,0.333,0.46,0.441,0.601c0.331,0.437,0.701,0.733,1.11,0.891c0.409,0.158,0.913,0.189,1.509,0.096l2.408-0.375
|
||||
c0.128-0.02,0.244-0.048,0.358-0.077c0.054,0.637,0.096,1.278,0.136,1.92c-0.444-0.163-0.984-0.241-1.646-0.209l-2.227,0.104c-0.723,0.034-1.266,0.244-1.63,0.627c-0.364,0.383-0.561,0.953-0.591,1.707l-0.079,0.004c-0.202-0.822-0.494-1.388-0.874-1.698
|
||||
c-0.381-0.31-0.959-0.446-1.736-0.41l-1.704,0.08c-0.822,0.039-1.422,0.343-1.801,0.912c-0.378,0.569-0.542,1.417-0.488,2.543l0.157,3.34l12.808-0.603c-0.132,12.532-4.338,23.075-12.637,31.621c-8.434,8.69-18.843,13.029-31.216,13.029z M148.287,33.315
|
||||
l-2.672,2.934c-0.288-0.262-0.438-0.474-0.45-0.635c-0.012-0.162,0.091-0.363,0.311-0.604l1.551-1.703c0.225-0.247,0.42-0.371,0.586-0.374c0.166-0.003,0.391,0.125,0.674,0.382z M166.852,59.395l-3.604,1.663c-0.163-0.353-0.218-0.606-0.167-0.76
|
||||
c0.052-0.154,0.226-0.299,0.522-0.436l2.091-0.964c0.303-0.14,0.531-0.179,0.686-0.117c0.155,0.063,0.312,0.267,0.472,0.615z M180.59,81.908c0.026,0.165-0.002,0.288-0.085,0.37c-0.083,0.081-0.252,0.142-0.509,0.182l-1.876,0.292
|
||||
c-0.295,0.046-0.674-0.148-1.136-0.583c-0.061-0.056-0.107-0.101-0.139-0.135l3.012-0.47c0.231-0.036,0.405-0.026,0.523,0.031c0.117,0.057,0.188,0.161,0.211,0.313z M181.341,90.25l-4.62,0.217l-0.007-0.153c-0.013-0.287,0.038-0.492,0.153-0.615
|
||||
c0.115-0.124,0.319-0.192,0.611-0.206l3.018-0.142c0.293-0.014,0.503,0.036,0.629,0.148s0.195,0.312,0.209,0.598l0.007,0.153z M174.755,90.56l-3.964,0.187c-0.019-0.388,0.025-0.644,0.13-0.767c0.105-0.124,0.321-0.193,0.647-0.208l2.3-0.108
|
||||
c0.333-0.016,0.56,0.035,0.679,0.15c0.12,0.116,0.189,0.365,0.207,0.747z"/>
|
||||
<path d="M137.813,81.438c-3.486,0-6.464,1.232-8.928,3.682c-2.463,2.45-3.695,5.415-3.695,8.88c0,3.472,1.232,6.437,3.695,8.887c2.464,2.45,5.441,3.675,8.928,3.675c3.397,0,6.335-1.225,8.799-3.675c2.463-2.45,3.703-5.415,3.703-8.887
|
||||
c0-3.466-1.212-6.43-3.635-8.88c-2.423-2.45-5.381-3.682-8.867-3.682z"/>
|
||||
</g>
|
||||
<path d="M15.802,136.348l-4.691,2.557c0.148,0.27,0.309,0.534,0.46,0.802l4.25-3.325l-0.019-0.034z"/>
|
||||
<path d="M19.035,148.696c0.167,0.026,0.37-0.046,0.608-0.217l2.458-1.757c0.238-0.17,0.373-0.339,0.402-0.505c0.029-0.166-0.039-0.366-0.206-0.6l-0.089-0.124l-3.762,2.69l0.089,0.125c0.167,0.233,0.333,0.363,0.5,0.389z"/>
|
||||
<path d="M5.03,125.21c0.031,0.089,0.057,0.181,0.088,0.271c0.058-0.024,0.119-0.055,0.173-0.073l0.167-0.056l-0.012-0.037c-0.15-0.02-0.283-0.063-0.416-0.105z"/>
|
||||
<path d="M24.162,154.592l2.33-1.967c-0.045-0.012-0.107-0.027-0.188-0.042c-0.622-0.132-1.046-0.102-1.274,0.091l-1.451,1.225c-0.199,0.167-0.313,0.308-0.341,0.42c-0.029,0.112,0.011,0.232,0.119,0.36c0.1,0.118,0.213,0.17,0.343,0.158s0.284-0.094,0.463-0.245z
|
||||
"/>
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<g id="yinBkg" transform="scale(.5, .5)" >
|
||||
<rect x="-10" y="-10" width="117" height="117" fill="url(#orangeGradient2)" />
|
||||
</g>
|
||||
|
||||
<g id="yinShadow" >
|
||||
<use xlink:href="#yinShape" filter="url(#shadow)"/>
|
||||
</g>
|
||||
|
||||
<g id="yinShape" transform="scale(.5, .5)" >
|
||||
<rect x="-10" y="-10" width="117" height="117" fill="url(#orangeGradient2)" />
|
||||
<path d="M95,47.5c0,13.14-4.634,24.342-13.896,33.604C71.838,90.369,60.637,95,47.5,95c-13.14,0-24.342-4.631-33.604-13.896C4.631,71.842,0,60.64,0,47.5c0-13.137,4.631-24.338,13.896-33.604C23.158,4.634,34.36,0,47.5,0
|
||||
c13.137,0,24.338,4.634,33.604,13.896C90.366,23.162,95,34.363,95,47.5z M47.538,46.765l0.065,1.536c0.297,6.102,2.555,11.177,6.775,15.23c4.22,4.053,9.351,6.078,15.391,6.078c6.252,0,11.513-2.193,15.774-6.584c4.261-4.388,6.392-9.816,6.392-16.284
|
||||
c0-11.902-4.381-22.156-13.141-30.765C70.036,7.37,59.618,3.064,47.538,3.064c-12.381,0-22.693,4.128-30.939,12.377C8.353,23.695,3.865,34.38,3.14,47.497c0.94-7.237,3.297-12.733,7.066-16.482s8.824-5.623,15.165-5.623c6.041,0,11.157,2.038,15.357,6.112
|
||||
c4.196,4.073,6.467,9.16,6.81,15.261z M31.521,47.5c0-1.751-0.602-3.25-1.806-4.487c-1.204-1.238-2.671-1.861-4.402-1.861c-1.73,0-3.208,0.623-4.433,1.861c-1.224,1.238-1.836,2.736-1.836,4.487c0,1.754,0.612,3.252,1.836,4.491
|
||||
c1.225,1.238,2.702,1.857,4.433,1.857c1.69,0,3.147-0.629,4.371-1.891c1.225-1.259,1.837-2.747,1.837-4.457z M75.957,47.5c0,1.754-0.626,3.252-1.871,4.491c-1.245,1.238-2.729,1.857-4.446,1.857c-1.762,0-3.266-0.619-4.511-1.857
|
||||
c-1.245-1.238-1.867-2.736-1.867-4.491c0-1.751,0.623-3.25,1.867-4.487c1.245-1.238,2.75-1.861,4.511-1.861s3.256,0.623,4.48,1.861c1.225,1.238,1.837,2.736,1.837,4.487z"/>
|
||||
</g>
|
||||
|
||||
<g id="yin">
|
||||
<use xlink:href="#yinBkg" />
|
||||
<use xlink:href="#yinShadow" opacity=".3"/>
|
||||
<use xlink:href="#yinShape" />
|
||||
</g>
|
||||
|
||||
<radialGradient id="orangeGradient"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="137" cy="246" r="500">
|
||||
<stop offset="0" stop-color="rgb(255, 255, 0)" />
|
||||
<stop offset=".6" stop-color="rgb(252, 180, 43)" />
|
||||
<stop offset="1" stop-color="rgb(255, 255, 0)" />
|
||||
</radialGradient>
|
||||
|
||||
<radialGradient id="orangeGradient2"
|
||||
cx=".5" cy=".5" r=".5">
|
||||
<stop offset="0" stop-color="rgb(255, 255, 0)" stop-opacity="1"/>
|
||||
<stop offset=".5" stop-color="rgb(255, 255, 0)" stop-opacity=".5"/>
|
||||
<stop offset="1" stop-color="rgb(252, 180, 43)" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
|
||||
<filter id="shadow" filterRes="200" x="0" y="0">
|
||||
<feGaussianBlur stdDeviation="2 3" />
|
||||
<feOffset dx="4" dy="4" />
|
||||
</filter>
|
||||
|
||||
</defs>
|
||||
|
||||
<rect width="100%" height="100%" fill="url(#orangeGradient)" />
|
||||
<use xlink:href="#batikYin" transform="translate(37, 62) scale(2, 2)"/>
|
||||
|
||||
<use x="10" y="10" xlink:href="#yin" />
|
||||
<use x="10" y="442.5" xlink:href="#yin" />
|
||||
<use x="392.5" y="10" xlink:href="#yin" />
|
||||
<use x="392.5" y="442.5" xlink:href="#yin" />
|
||||
</g>
|
||||
|
||||
|
||||
</svg>
|
|
@ -0,0 +1,95 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd">
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Copyright (C) The Apache Software Foundation. All rights reserved. -->
|
||||
<!-- -->
|
||||
<!-- This software is published under the terms of the Apache Software License -->
|
||||
<!-- version 1.1, a copy of which has been included with this distribution in -->
|
||||
<!-- the LICENSE file. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Test description here -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: chessboard.svg,v 1.1 2001/06/10 01:46:29 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<svg width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Chessboard</title>
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
<defs>
|
||||
|
||||
<filter id="whiteCellFilter" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="1" height="1">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.03" numOctaves="3"/>
|
||||
<feColorMatrix type="luminanceToAlpha"/>
|
||||
<feComponentTransfer>
|
||||
<feFuncA type="linear" slope=".5" intercept="0" />
|
||||
</feComponentTransfer>
|
||||
<feComponentTransfer>
|
||||
<feFuncA type="gamma" amplitude="1" exponent="1.5" offset="0" />
|
||||
</feComponentTransfer>
|
||||
</filter>
|
||||
|
||||
<filter id="blackCellFilter" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="1" height="1">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.03" numOctaves="3"/>
|
||||
<feColorMatrix type="luminanceToAlpha" />
|
||||
<feComponentTransfer>
|
||||
<feFuncA type="linear" slope="1.5" intercept="0" />
|
||||
</feComponentTransfer>
|
||||
<feColorMatrix type="matrix" values="0 0 0 -1 1 0 0 0 -1 1 0 0 0 -1 1 0 0 0 0 1" />
|
||||
</filter>
|
||||
|
||||
<pattern id="chessBoardPattern" patternUnits="userSpaceOnUse" x="25" y="25" width="100" height="100">
|
||||
<rect id="blackCellTop" width="50" height="50" fill="black" filter="url(#blackCellFilter)" />
|
||||
<rect id="whiteCellTop" transform="translate(30, 0)" x="20" y="0" width="50" height="50" fill="white" filter="url(#whiteCellFilter)"/>
|
||||
<rect id="whiteCellBottom" transform="translate(0, 50)" width="50" height="50" fill="black" filter="url(#whiteCellFilter)" />
|
||||
<rect id="blackCellBottom" transform="translate(50, 50)" width="50" height="50" fill="white" filter="url(#blackCellFilter)" />
|
||||
</pattern>
|
||||
|
||||
<radialGradient id="light" gradientUnits="userSpaceOnUse"
|
||||
cx="200" cy="250" fx="20" fy="20" r="400">
|
||||
<stop offset="30%" style="stop-color:black; stop-opacity:0" />
|
||||
<stop offset="100%" style="stop-color:black; stop-opacity:.5" />
|
||||
</radialGradient>
|
||||
|
||||
</defs>
|
||||
|
||||
|
||||
<rect id="chessboard" x="25" y="25" width="400" height="400" fill="url(#chessBoardPattern)"/>
|
||||
<rect id="lightSquare" x="25" y="25" width="400" height="400" style="fill:url(#light);"/>
|
||||
|
||||
<defs>
|
||||
<radialGradient id="psion" gradientUnits="objectBoundingBox" fx="20%" fy="24%" r="100%">
|
||||
<stop offset="0%" style="stop-color:white;" />
|
||||
<stop offset="50%" style="stop-color:black;" />
|
||||
</radialGradient>
|
||||
<radialGradient id="psion2" gradientUnits="objectBoundingBox" fx="20%" fy="24%" r="60%">
|
||||
<stop offset="0%" style="stop-color:white;" />
|
||||
<stop offset="100%" style="stop-color:black;" />
|
||||
</radialGradient>
|
||||
</defs>
|
||||
|
||||
<g id="shadow" style="fill:black; opacity:.6;" transform="translate(172 168) rotate(120)">
|
||||
<circle cx="19" cy="20" r="10"/>
|
||||
<path d="M13 28L24 28C27 28 24 42 32 48L8 48C13 42 13 34 13 28Z"/>
|
||||
<rect x="2" y="45" width="36" height="18"/>
|
||||
</g>
|
||||
|
||||
<circle cx="100" cy="150" r="18" style="fill:url(#psion2); stroke:black; stroke-width:2"/>
|
||||
<circle cx="100" cy="150" r="10" style="fill:url(#psion);"/>
|
||||
</g>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="batikLogo.svg#Batik_Tag_Box" />
|
||||
|
||||
</svg>
|
|
@ -0,0 +1,63 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd">
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Copyright (C) The Apache Software Foundation. All rights reserved. -->
|
||||
<!-- -->
|
||||
<!-- This software is published under the terms of the Apache Software License -->
|
||||
<!-- version 1.1, a copy of which has been included with this distribution in -->
|
||||
<!-- the LICENSE file. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Test description here -->
|
||||
<!-- -->
|
||||
<!-- @author vincent.hardy@eng.sun.com -->
|
||||
<!-- @version $Id: batikMark.svg,v 1.1 2001/06/10 01:46:30 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<svg width="450" height="500" viewBox="0 0 450 500">
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<defs>
|
||||
<g id="BatikTag" >
|
||||
<g style="fill-rule:nonzero;clip-rule:nonzero;fill:none;stroke:#000000;stroke-miterlimit:4;" transform="translate(410, 460) scale(.5, .5)">
|
||||
<path style="stroke:none;" d="M5.104,18.946c3.21-4.278,7.488-7.488,11.768-9.628c-3.209,8.559-9.628,16.047-12.837,24.604c4.279-3.209,8.558-6.417,11.768-10.697c-1.07,2.14-3.21,4.279-5.35,6.419c2.14-3.21,5.35-5.35,8.559-7.489c0,1.069-2.14,4.278-2.14,5.349
|
||||
c4.279-3.21,3.209-4.279,3.209-1.07"/>
|
||||
<path style="fill:#6666FF;stroke:none;" d="M6.936,21.818c2.783-3.428,5.975-6,9.896-8.026c-1.157-1.682-2.313-3.363-3.47-5.045C9.833,17.33,3.856,24.625,0.374,33.254c-1.424,3.527,1.087,7.367,4.788,4.606c4.627-3.453,9.209-6.988,12.807-11.547
|
||||
c-1.737-1.684-3.474-3.367-5.21-5.05c-1.203,2.039-2.795,3.63-4.451,5.307c1.724,1.675,3.448,3.35,5.171,5.025c1.737-2.343,4.278-3.897,6.66-5.501c-1.726-1.112-3.452-2.225-5.177-3.337c-0.412,1.82-1.716,3.448-2.165,5.333c-0.819,3.436,2.431,5.561,5.228,3.37
|
||||
c1.089-0.854,2.121-1.741,3.154-2.66c0.27-0.24,2.352-2.781,1.087-1.242c-1.901,0.256-3.802,0.513-5.703,0.769c-0.442-1.809-0.591-2.103-0.447-0.882c0.061,0.692,0.135,1.383,0.222,2.073c0.547,4.68,6.211-1.189,6.884-2.75c0.811-1.877,1.806-4.181,0.519-6.087
|
||||
c-1.083-1.603-3.412-1.174-4.709-0.111c-1.155,0.947-2.154,2.039-3.312,2.981c1.743,1.123,3.485,2.247,5.228,3.37c0.401-1.833,1.678-3.476,2.114-5.365c0.839-3.633-2.323-5.241-5.177-3.337c-4.064,2.711-7.516,5.555-10.458,9.477
|
||||
c-3.298,4.397,0.973,9.23,5.171,5.025c2.33-2.333,4.55-4.69,6.248-7.532c2.625-4.394-1.298-9.954-5.21-5.05c-3.095,3.879-6.791,6.867-10.729,9.846c1.596,1.536,3.192,3.071,4.788,4.606c3.412-8.648,9.323-16.01,12.686-24.701c0.948-2.451,0.194-7.002-3.47-5.045
|
||||
c-5.309,2.836-9.933,6.46-13.639,11.23c-1.319,1.698-3.073,4.564-1.681,6.745c1.318,2.063,4.239,0.358,5.343-1.001z"/>
|
||||
<path style="stroke:none;" d="M35.059,8.249c1.069-1.07,2.139-2.14,4.278-3.209c-2.14,4.278-4.278,9.628-6.418,12.837c2.14-1.07,4.278-3.209,6.418-5.349c0,1.069-2.14,4.278-2.14,5.349c3.21-2.14,7.489-4.279,10.698-6.419c-2.14,3.21-4.279,7.488-6.419,10.698
|
||||
c1.07,0,4.279-2.14,5.349-3.21c-1.069,2.14-3.209,3.21-3.209,5.349c2.14-1.069,4.279-3.209,6.419-4.278"/>
|
||||
<path style="fill:#FF0000;stroke:none;" d="M36.109,12.496c1.095-1.054,2.15-1.838,3.492-2.567c-0.948-2.375-1.896-4.749-2.846-7.124c-1.96,3.858-3.554,8.012-5.897,11.658c-1.202,1.87-1.95,4.148-1.307,6.371c0.462,1.592,2.045,2.92,3.72,1.958
|
||||
c2.792-1.606,5.072-3.694,7.356-5.946c-1.632-1.296-3.264-2.592-4.896-3.888c0.424-2.181-0.838,1.04-1.041,1.472c-0.595,1.267-0.875,2.5-1.14,3.864c-0.396,2.038,1.298,6.281,4.051,4.513c3.503-2.25,7.211-4.155,10.707-6.416c-0.86-2.792-1.721-5.585-2.581-8.377
|
||||
c-2.26,3.495-4.161,7.205-6.419,10.698c-1.165,1.803-3.031,9.546,1.621,8.659c2.694-0.513,5.224-2.283,7.229-4.094c-1.4-2.216-2.8-4.432-4.2-6.648c-1.777,2.892-3.42,4.527-4.006,8.079c-0.355,2.152,1.243,6.147,4.077,4.521c2.237-1.284,4.184-2.972,6.395-4.286
|
||||
c2.267-1.346,3.457-4.071,3.249-6.675c-0.156-1.958-1.758-4.435-4.028-3.175c-2.269,1.258-4.202,2.985-6.443,4.271c1.359,1.507,2.718,3.014,4.077,4.521c-0.546,1.443-0.411,1.566,0.405,0.371c0.791-0.92,1.374-1.96,2.007-2.989
|
||||
c1.776-2.889-0.048-10.398-4.2-6.648c-0.903,0.816-2.231,2.09-3.469,2.326c0.54,2.886,1.08,5.772,1.621,8.659c2.26-3.495,4.161-7.205,6.419-10.698c1.215-1.88,1.977-4.14,1.287-6.376c-0.469-1.523-2.212-3.072-3.868-2.001c-3.493,2.259-7.202,4.153-10.689,6.422
|
||||
c1.351,1.504,2.7,3.008,4.051,4.513c-0.387,2.161,0.771-1.038,0.976-1.492c0.576-1.276,0.877-2.497,1.123-3.869c0.492-2.755-2.101-6.696-4.896-3.888c-1.703,1.712-3.375,3.525-5.479,4.751c0.805,2.776,1.608,5.552,2.413,8.329
|
||||
c2.776-4.455,4.699-9.286,6.938-14.016c0.901-1.905,1.374-9.486-2.846-7.124c-1.896,1.062-3.539,2.305-5.064,3.851c-1.782,1.808-2.738,4.762-2.119,7.262c0.544,2.203,2.574,2.816,4.221,1.232z"/>
|
||||
<g>
|
||||
<path style="stroke:none;" d="M20.081,43.551c1.07-2.139,3.21-3.209,5.35-4.279c-2.14,3.209-3.21,8.559-5.35,12.838c3.21-3.209,7.488-5.35,10.698-8.559c-1.07,2.139-2.14,5.35-4.279,7.488c3.209-2.139,7.488-3.209,10.697-6.418c0,1.068-2.139,4.279-2.139,4.279
|
||||
c2.139-2.141,3.209-3.211,4.278-6.42c-2.14,1.07-4.278,2.141-6.418,2.141c0-1.07,2.14-3.209,3.209-4.279c-3.209,1.07-6.419,2.139-8.559,3.209c0,0,3.21-2.139,4.279-2.139c1.07-2.141-1.069,1.068-2.14,1.068"/>
|
||||
<path style="fill:#33CC33;stroke:none;" d="M23.867,43.843c0.783-0.505,1.606-0.938,2.469-1.303c-1.583-1.209-3.166-2.418-4.748-3.628c-2.467,3.958-3.438,8.552-5.454,12.715c-2.352,4.856,3.013,5.93,6.132,3.062c3.375-3.103,7.41-5.352,10.752-8.494
|
||||
c-2.077-1.061-4.155-2.12-6.233-3.181c-1.06,2.217-1.887,4.528-3.542,6.381c-3.303,3.697,0.169,7.708,4.344,5.127c4.006-2.477,8.331-4.001,11.86-7.244c-2.242-0.696-4.484-1.393-6.728-2.09c-0.215,1.156-1.023,2.195-1.66,3.169
|
||||
c-0.909,1.389-1.034,3.728,0.661,4.583c2.4,1.212,5.012-0.811,6.589-2.401c2.543-2.567,4.263-5.229,5.496-8.634c1.441-3.977-3.187-4.059-5.543-2.892c-1.384,0.686-2.486,1.159-4.03,1.308c1.048,1.237,2.097,2.475,3.145,3.712c0.126-0.477,1.472-1.595,1.965-2.097
|
||||
c2.829-2.879,1.002-6.963-3.061-5.589c-2.886,0.976-5.777,1.933-8.535,3.236c0.28,2.456,0.561,4.913,0.841,7.369c0.353-0.233,0.71-0.457,1.068-0.681c0.452-0.278,0.911-0.542,1.379-0.791c-0.923,0.301-0.715,0.262,0.625-0.115c2.554-0.936,4.936-3.57,5.073-6.386
|
||||
c0.154-3.139-3.763-2.987-5.618-1.686c-2.035,1.427-3.433,2.693-4.696,4.822c0.983-0.965,1.966-1.93,2.95-2.895c-0.115,0.083-0.23,0.166-0.346,0.249c-1.448,1.046-2.816,2.212-3.498,3.922c-0.501,1.257-0.279,3.353,1.588,3.168
|
||||
c1.578-0.156,3.114-0.367,4.511-1.193c-0.039,0.022,3.258-2.521,1.495-1.309c-1.873-0.563-3.745-1.124-5.618-1.687c0.139-0.475,0.279-0.948,0.418-1.423c1.762-1.264,3.523-2.527,5.284-3.79c-2.419,0.445-4.605,1.661-6.651,2.99
|
||||
c-1.733,1.127-3.506,2.876-3.606,5.088c-0.11,2.416,2.563,3.155,4.448,2.281c2.774-1.286,5.682-2.224,8.582-3.182c-0.685-2.2-1.37-4.4-2.055-6.601c-2.17,2.169-4.635,4.407-5.459,7.474c-0.628,2.334,0.756,3.929,3.145,3.712c3.196-0.29,5.958-1.573,8.806-2.974
|
||||
c-1.848-0.964-3.695-1.928-5.543-2.892c-0.48,1.317-1.07,2.204-2.056,3.192c2.082,1.065,4.164,2.13,6.245,3.195c1.067-1.622,2.254-3.462,2.617-5.39c0.854-4.543-4.149-4.445-6.728-2.09c-2.763,2.522-6.394,3.631-9.534,5.592c1.448,1.709,2.896,3.418,4.344,5.127
|
||||
c2.271-2.566,3.567-5.537,5.016-8.596c2.285-4.825-3.084-6.167-6.232-3.181c-3.328,3.158-7.349,5.427-10.644,8.623c2.044,1.021,4.088,2.041,6.132,3.062c1.928-4.204,2.889-8.989,5.246-12.961c2.416-4.073-1.608-5.275-4.749-3.628
|
||||
c-3.403,1.784-6.204,3.945-8.23,7.256c-0.98,1.602-1.226,4.278,1.271,4.469c2.564,0.194,5.004-1.876,6.301-3.885z"/>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="1" y="1" width="446" height="496" fill="none" stroke="black" />
|
||||
</g>
|
||||
</defs>
|
||||
</svg>
|
|
@ -0,0 +1,63 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: clipPath-clipPathUnits-invalid.svg,v 1.1 2001/06/10 01:46:30 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "clipPathUnits" on <clipPath> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "clipPathUnits" on <clipPath> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<clipPath id="good" clipPathUnits="objectBoundingBox">
|
||||
<circle cx=".3" cy=".5" r=".3"/>
|
||||
<circle cx=".7" cy=".5" r=".3"/>
|
||||
</clipPath>
|
||||
<clipPath id="bad" clipPathUnits="objectBoundingBoX">
|
||||
<circle cx=".3" cy=".5" r=".3"/>
|
||||
<circle cx=".7" cy=".5" r=".3"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A cliped rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A cliped rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
"clipPathUnits" on <clipPath> is invalid
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="clip-path:url(#good);"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="clip-path:url(#bad);"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: clipPath-empty.svg,v 1.1 2001/06/10 01:46:30 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Default: <clipPath> has no subelement</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Default: <clipPath> has no subelement
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<clipPath id="good" clipPathUnits="objectBoundingBox">
|
||||
<circle cx=".3" cy=".5" r=".3"/>
|
||||
<circle cx=".7" cy=".5" r=".3"/>
|
||||
</clipPath>
|
||||
<clipPath id="bad" clipPathUnits="objectBoundingBox"/>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A cliped rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A cliped rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
<clipPath> has no subelement
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="clip-path:url(#good);"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="clip-path:url(#bad);"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: clipPath-subelement-invalid.svg,v 1.1 2001/06/10 01:46:30 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: <clipPath> has an invalid subelement</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: <clipPath> has an invalid subelement
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<clipPath id="good" clipPathUnits="objectBoundingBox">
|
||||
<circle cx=".3" cy=".5" r=".3"/>
|
||||
<circle cx=".7" cy=".5" r=".3"/>
|
||||
</clipPath>
|
||||
<clipPath id="bad" clipPathUnits="objectBoundingBox">
|
||||
<circle cx=".3" cy=".5" r=".3"/>
|
||||
<circle/>
|
||||
</clipPath>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A cliped rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A cliped rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
<clipPath> has an invalid subelement
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="clip-path:url(#good);"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="clip-path:url(#bad);"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,61 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: clipPath-uri-illegal.svg,v 1.1 2001/06/10 01:46:30 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "clip-path" references an invalid element</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "clip-path" references an invalid element
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<clipPath id="good" clipPathUnits="objectBoundingBox">
|
||||
<circle cx=".3" cy=".5" r=".3"/>
|
||||
<circle cx=".7" cy=".5" r=".3"/>
|
||||
</clipPath>
|
||||
<circle id="bad" cx=".3" cy=".5" r=".3"/>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A cliped rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A cliped rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
"clip-path" references an invalid element
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="clip-path:url(#good);"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="clip-path:url(#bad);"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: css-invalid.svg,v 1.1 2001/06/10 01:46:30 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "fill" has an invalid value</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: CSS property "fill" has an invalid value
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A green <rect> element</text>
|
||||
<text x="225" y="400" class="legend">A <rect> element.</text>
|
||||
<text x="225" y="414" class="legend">The CSS property "fill" has an invalid value</text>
|
||||
|
||||
<rect x="70" y="120" width="300" height="100" style="fill:green"/>
|
||||
<rect x="70" y="280" width="300" height="100" style="fill:X"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: ellipse-missing-rx.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "rx" is missing on <ellipse></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "rx" is missing on <ellipse>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A green <ellipse> element</text>
|
||||
<text x="225" y="400" class="legend">A red <ellipse> element without the "rx" attribute</text>
|
||||
|
||||
<ellipse cx="220" cy="140" rx="150" ry="50" style="fill:green"/>
|
||||
<ellipse cx="220" cy="320" ry="50" style="fill:red"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: ellipse-missing-ry.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "ry" is missing on <ellipse></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "ry" is missing on <ellipse>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A green <ellipse> element</text>
|
||||
<text x="225" y="400" class="legend">A red <ellipse> element without the "ry" attribute</text>
|
||||
|
||||
<ellipse cx="220" cy="140" rx="150" ry="50" style="fill:green"/>
|
||||
<ellipse cx="220" cy="320" rx="150" style="fill:red"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: ellipse-negative-rx.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "rx" is negative on <ellipse></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "rx" is negative on <ellipse>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A green <ellipse> element</text>
|
||||
<text x="225" y="400" class="legend">A red <ellipse> element with a negative "rx" attribute</text>
|
||||
|
||||
<ellipse cx="220" cy="140" rx="150" ry="50" style="fill:green"/>
|
||||
<ellipse cx="220" cy="320" rx="-150" ry="50" style="fill:red"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: ellipse-negative-ry.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "ry" is negative on <ellipse></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "ry" is negative on <ellipse>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A green <ellipse> element</text>
|
||||
<text x="225" y="400" class="legend">A red <ellipse> element with a negative "ry" attribute</text>
|
||||
|
||||
<ellipse cx="220" cy="140" rx="150" ry="50" style="fill:green"/>
|
||||
<ellipse cx="220" cy="320" rx="150" ry="-50" style="fill:red"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feColorMatrix-type-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "type" is invalid on <feColorMatrix></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "type" on <feColorMatrix> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
<feColorMatrix filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%"
|
||||
type="luminanceToAlpha" />
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
<feColorMatrix filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%"
|
||||
type="luminanceToAlphaX" />
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feColorMatrix></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feColorMatrix>. The attribute "type" is invalid
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,70 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feColorMatrix-value-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "values" of <feColorMatrix>contains an invalid number</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "values" on <feColorMatrix>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
contains an invalid number
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2" stitchTiles="noStitch" seed="0" result="turb"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1" />
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2" stitchTiles="noStitch" seed="0" result="turb"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1.1.1" />
|
||||
</filter>
|
||||
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feColorMatrix></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feColorMatrix>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The attribute "values" contains an invalid number
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feColorMatrix-values-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "values" on <feColorMatrix> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "values" on <feColorMatrix> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2" stitchTiles="noStitch" seed="0" result="turb"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1" />
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2" stitchTiles="noStitch" seed="0" result="turb"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1" />
|
||||
</filter>
|
||||
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A rectangle with a <feColorMatrix> filter</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feColorMatrix>. The attribute "values" is invalid
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,82 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feComponentTransfert-type-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "type" on <feComponentTransfert> subelement is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "type" on <feComponentTransfert>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
subelement is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
<feComponentTransfer filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" >
|
||||
<feFuncR type="linear" slope="0" intercept="0" />
|
||||
<feFuncG type="linear" slope="1" intercept="0" />
|
||||
<feFuncB type="linear" slope="0" intercept="0" />
|
||||
<feFuncA type="linear" slope="0" intercept="1" />
|
||||
</feComponentTransfer>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
<feComponentTransfer filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" >
|
||||
<feFuncR type="linearX" slope="0" intercept="0" />
|
||||
<feFuncG type="linear" slope="1" intercept="0" />
|
||||
<feFuncB type="linear" slope="0" intercept="0" />
|
||||
<feFuncA type="linear" slope="0" intercept="1" />
|
||||
</feComponentTransfer>
|
||||
</filter>
|
||||
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feComponentTransfert></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feComponentTranfert>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The attribute "type" of a subelement is invalid
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,82 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feComponentTransfert-type-missing.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "type" on <feComponentTransfert> subelement is missing</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "type" on <feComponentTransfert>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
subelement is missing
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
<feComponentTransfer filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" >
|
||||
<feFuncR type="linear" slope="0" intercept="0" />
|
||||
<feFuncG type="linear" slope="1" intercept="0" />
|
||||
<feFuncB type="linear" slope="0" intercept="0" />
|
||||
<feFuncA type="linear" slope="0" intercept="1" />
|
||||
</feComponentTransfer>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
<feComponentTransfer filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" >
|
||||
<feFuncR slope="0" intercept="0" />
|
||||
<feFuncG type="linear" slope="1" intercept="0" />
|
||||
<feFuncB type="linear" slope="0" intercept="0" />
|
||||
<feFuncA type="linear" slope="0" intercept="1" />
|
||||
</feComponentTransfer>
|
||||
</filter>
|
||||
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feComponentTransfert></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feComponentTranfert>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The attribute "type" of a subelement is missing
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,81 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feComponentTransfert-value-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "type" on <feComponentTransfert> subelement is missing</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "tableValues" on
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
<feComponentTransfert> subelement is missing
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
<feComponentTransfer filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" >
|
||||
<feFuncR type="table" tableValues="1 0" />
|
||||
<feFuncG type="table" tableValues="1 0" />
|
||||
<feFuncB type="table" tableValues="1 0" />
|
||||
<feFuncA type="linear" slope="0" intercept="1" />
|
||||
</feComponentTransfer>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
<feComponentTransfer filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" >
|
||||
<feFuncR type="table" tableValues="1 0" />
|
||||
<feFuncG type="table" tableValues="1 0" />
|
||||
<feFuncB type="table" tableValues="1 0.2.2" />
|
||||
<feFuncA type="linear" slope="0" intercept="1" />
|
||||
</feComponentTransfer>
|
||||
</filter>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feComponentTransfert></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feComponentTranfert>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The attribute "tableValues" of a subelement contains an invalid number
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,78 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feComposite-in2-missing.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "in2" on <feComposite> is missing</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "in2" on <feComposite> is missing
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<circle id="Circle1" cx="40" cy="60" r="30" style="fill:orange" />
|
||||
|
||||
<circle id="Circle2" cx="80" cy="60" r="30" style="fill:blue" />
|
||||
|
||||
<filter id="feImage1" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#Circle1"/>
|
||||
</filter>
|
||||
|
||||
<filter id="feImage2" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#Circle2"/>
|
||||
</filter>
|
||||
|
||||
<filter id="good" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#Circle1" result="c1" />
|
||||
<feImage xlink:href="#Circle2" result="c2" />
|
||||
<feComposite in="c1" in2="c2" operator="over" />
|
||||
</filter>
|
||||
<filter id="bad" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#Circle1" result="c1" />
|
||||
<feImage xlink:href="#Circle2" result="c2" />
|
||||
<feComposite in="c1" operator="over" />
|
||||
</filter>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feComposite></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feComposite>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The attribute "in2" of <feComposite> is missing
|
||||
</text>
|
||||
|
||||
<rect x="165" y="100" width="120" height="100" style="filter:url(#good)"/>
|
||||
<rect x="165" y="300" width="120" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,78 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feComposite-operator-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "operator" on <feComposite> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "operator" on <feComposite> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<circle id="Circle1" cx="40" cy="60" r="30" style="fill:orange" />
|
||||
|
||||
<circle id="Circle2" cx="80" cy="60" r="30" style="fill:blue" />
|
||||
|
||||
<filter id="feImage1" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#Circle1"/>
|
||||
</filter>
|
||||
|
||||
<filter id="feImage2" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#Circle2"/>
|
||||
</filter>
|
||||
|
||||
<filter id="good" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#Circle1" result="c1" />
|
||||
<feImage xlink:href="#Circle2" result="c2" />
|
||||
<feComposite in="c1" in2="c2" operator="over" />
|
||||
</filter>
|
||||
<filter id="bad" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#Circle1" result="c1" />
|
||||
<feImage xlink:href="#Circle2" result="c2" />
|
||||
<feComposite in="c1" in2="c2" operator="overX" />
|
||||
</filter>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feComposite></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feComposite>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The attribute "operator" of <feComposite> is invalid
|
||||
</text>
|
||||
|
||||
<rect x="165" y="100" width="120" height="100" style="filter:url(#good)"/>
|
||||
<rect x="165" y="300" width="120" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
</g>
|
||||
|
||||
</svg>
|
|
@ -0,0 +1,87 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feDisplacementMap-channelSelector-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "channelSelector" on <feDisplacementMap> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "channelSelector" on
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
<feDisplacementMap> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<pattern id="pattern" patternUnits="userSpaceOnUse" x="0" y="0"
|
||||
width="20" height="20">
|
||||
<rect x="0" y="0" width="10" height="10" fill="red" />
|
||||
<rect x="10" y="10" width="10" height="10" fill="green" />
|
||||
</pattern>
|
||||
<rect id="displaced" x="0" y="0" width="100" height="100" fill="url(#pattern)" />
|
||||
<linearGradient id="redOnly" gradientUnits="objectBoundingBox" x1="0" y1="0" x2="1" y2="0">
|
||||
<stop offset="0" stop-color="rgb(255, 128, 128)" />
|
||||
<stop offset=".25" stop-color="rgb(0, 128, 128)" />
|
||||
<stop offset=".5" stop-color="rgb(255, 128, 128)" />
|
||||
<stop offset="1" stop-color="rgb(0, 128, 128)" />
|
||||
</linearGradient>
|
||||
<rect id="redOnlyMap" x="0" y="0" width="100" height="100" fill="url(#redOnly)" />
|
||||
|
||||
<filter id="good" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#redOnlyMap" result="map" />
|
||||
<feImage xlink:href="#displaced" result="displaced" />
|
||||
<feDisplacementMap in="displaced" in2="map"
|
||||
scale="30" xChannelSelector="G" yChannelSelector="R" />
|
||||
</filter>
|
||||
<filter id="bad" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#redOnlyMap" result="map" />
|
||||
<feImage xlink:href="#displaced" result="displaced" />
|
||||
<feDisplacementMap in="displaced" in2="map"
|
||||
scale="30" xChannelSelector="X" yChannelSelector="R" />
|
||||
</filter>
|
||||
|
||||
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feDisplacementMap></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feDisplacementMap>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The attribute "channelSelector" of <feDisplacementMap> is invalid
|
||||
</text>
|
||||
|
||||
<rect transform="translate(165 100)" x="0" y="0" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect transform="translate(165 300)" x="0" y="0" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,87 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feDisplacementMap-in2-missing.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "in2" on <feDisplacementMap> is missing</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "in2" on <feDisplacementMap>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
is missing
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<pattern id="pattern" patternUnits="userSpaceOnUse" x="0" y="0"
|
||||
width="20" height="20">
|
||||
<rect x="0" y="0" width="10" height="10" fill="red" />
|
||||
<rect x="10" y="10" width="10" height="10" fill="green" />
|
||||
</pattern>
|
||||
<rect id="displaced" x="0" y="0" width="100" height="100" fill="url(#pattern)" />
|
||||
<linearGradient id="redOnly" gradientUnits="objectBoundingBox" x1="0" y1="0" x2="1" y2="0">
|
||||
<stop offset="0" stop-color="rgb(255, 128, 128)" />
|
||||
<stop offset=".25" stop-color="rgb(0, 128, 128)" />
|
||||
<stop offset=".5" stop-color="rgb(255, 128, 128)" />
|
||||
<stop offset="1" stop-color="rgb(0, 128, 128)" />
|
||||
</linearGradient>
|
||||
<rect id="redOnlyMap" x="0" y="0" width="100" height="100" fill="url(#redOnly)" />
|
||||
|
||||
<filter id="good" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#redOnlyMap" result="map" />
|
||||
<feImage xlink:href="#displaced" result="displaced" />
|
||||
<feDisplacementMap in="displaced" in2="map"
|
||||
scale="30" xChannelSelector="G" yChannelSelector="R" />
|
||||
</filter>
|
||||
<filter id="bad" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#redOnlyMap" result="map" />
|
||||
<feImage xlink:href="#displaced" result="displaced" />
|
||||
<feDisplacementMap in="displaced"
|
||||
scale="30" xChannelSelector="G" yChannelSelector="R" />
|
||||
</filter>
|
||||
|
||||
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feDisplacementMap></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feDisplacementMap>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The attribute "in2" of <feDisplacementMap> is missing
|
||||
</text>
|
||||
|
||||
<rect transform="translate(165 100)" x="0" y="0" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect transform="translate(165 300)" x="0" y="0" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feGaussianBlur-stdDeviationX-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: first value of "stdDeviation" on <feGaussianBlur> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: The first value of "stdDeviation" on
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
<feGaussianBlur> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" >
|
||||
<feGaussianBlur stdDeviation="2 3"/>
|
||||
</filter>
|
||||
<filter id="bad" >
|
||||
<feGaussianBlur stdDeviation="-2 3"/>
|
||||
</filter>
|
||||
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feGaussianBlur></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feGaussianBlur>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The first value of the attribute "stdDeviation" is invalid
|
||||
</text>
|
||||
|
||||
<rect transform="translate(165 100)" x="0" y="0" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect transform="translate(165 300)" x="0" y="0" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feGaussianBlur-stdDeviationY-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: first second of "stdDeviation" on <feGaussianBlur> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: The second value of "stdDeviation" on
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
<feGaussianBlur> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" >
|
||||
<feGaussianBlur stdDeviation="2 3"/>
|
||||
</filter>
|
||||
<filter id="bad" >
|
||||
<feGaussianBlur stdDeviation="2 -3"/>
|
||||
</filter>
|
||||
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feGaussianBlur></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feGaussianBlur>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The second value of the attribute "stdDeviation" is invalid
|
||||
</text>
|
||||
|
||||
<rect transform="translate(165 100)" x="0" y="0" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect transform="translate(165 300)" x="0" y="0" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feImage-badurl.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: The URI on <feImage> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: The URI on <feImage> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<g id="elem1">
|
||||
<circle id="Circle1" cx="30" cy="50" r="25" style="fill:orange" />
|
||||
<circle id="Circle2" cx="70" cy="50" r="25" style="fill:blue" />
|
||||
</g>
|
||||
|
||||
<filter id="good" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#elem1"/>
|
||||
</filter>
|
||||
<filter id="bad" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#elem1x"/>
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feImage></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feImage>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The URI is invalid
|
||||
</text>
|
||||
|
||||
<rect transform="translate(165 100)" x="0" y="0" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect transform="translate(165 300)" x="0" y="0" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feMerge-feMergeNode-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: A subelement of <feMerge> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: a subelement of <feMerge> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<circle id="Circle1" cx="30" cy="50" r="25" style="fill:orange" />
|
||||
<circle id="Circle2" cx="70" cy="50" r="25" style="fill:blue" />
|
||||
|
||||
<filter id="good" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#Circle1" result="Circle1" />
|
||||
<feImage xlink:href="#Circle2" result="Circle2" />
|
||||
<feMerge>
|
||||
<feMergeNode in="Circle1"/>
|
||||
<feMergeNode in="Circle2"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<filter id="bad" x="0" y="0" width="1" height="1">
|
||||
<feImage xlink:href="#Circle1" result="Circle1" />
|
||||
<feImage xlink:href="#Circle2" result="Circle2" />
|
||||
<feMerge>
|
||||
<feMergeNode in="Circle1"/>
|
||||
<rect/> <!-- a validate XML parser will catch this one -->
|
||||
<feMergeNode in="Circle2"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feMerge></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feMerge>.
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
A subelement is not an <feMergeNode>
|
||||
</text>
|
||||
|
||||
<rect transform="translate(165 100)" x="0" y="0" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect transform="translate(165 300)" x="0" y="0" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feMorphology-operator-invalid.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "operator" on <feMorphology> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: The attribute "operator" on <feMorphology>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feMorphology operator="dilate" radius="6 2"/>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feMorphology operator="dilateX" radius="6 2"/>
|
||||
</filter>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feMorphology></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feMorphology>
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The value of the attribute "operator" is invalid
|
||||
</text>
|
||||
|
||||
<rect transform="translate(165 100)" x="0" y="0" width="100" height="100"
|
||||
style="stroke:black; stroke-width:8; fill:none; filter:url(#good)"/>
|
||||
<rect transform="translate(165 300)" x="0" y="0" width="100" height="100"
|
||||
style="stroke:black; stroke-width:8; fill:none; filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feMorphology-radiusX-negative.svg,v 1.1 2001/06/10 01:46:35 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: first value of "radius" on <feMorphology> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: The first value of "radius" on <feMorphology>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feMorphology operator="dilate" radius="6 2"/>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feMorphology operator="dilate" radius="-6 2"/>
|
||||
</filter>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feMorphology></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feMorphology>
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The first value of the attribute "radius" is negative
|
||||
</text>
|
||||
|
||||
<rect transform="translate(165 100)" x="0" y="0" width="100" height="100"
|
||||
style="stroke:black; stroke-width:8; fill:none; filter:url(#good)"/>
|
||||
<rect transform="translate(165 300)" x="0" y="0" width="100" height="100"
|
||||
style="stroke:black; stroke-width:8; fill:none; filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feMorphology-radiusY-negative.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: second value of "radius" on <feMorphology> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: The second value of "radius" on <feMorphology>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feMorphology operator="dilate" radius="6 2"/>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feMorphology operator="dilate" radius="6 -2"/>
|
||||
</filter>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feMorphology></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feMorphology>
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The second value of the attribute "radius" is negative
|
||||
</text>
|
||||
|
||||
<rect transform="translate(165 100)" x="0" y="0" width="100" height="100"
|
||||
style="stroke:black; stroke-width:8; fill:none; filter:url(#good)"/>
|
||||
<rect transform="translate(165 300)" x="0" y="0" width="100" height="100"
|
||||
style="stroke:black; stroke-width:8; fill:none; filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feTurbulence-stitchTiles.invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "stitchTiles" on <feTurbulence> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "stitchTiles" on <feTurbulence>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2" stitchTiles="stitch"/>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2" stitchTiles="stitchX"/>
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feTurbulence></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feTurbulence>
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The attribute "stitchTiles" is invalid
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: feTurbulence-type-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "type" on <feTurbulence> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "type" on <feTurbulence>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulenceX" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle using <feTurbulence></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle using <feTurbulence>
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The attribute "type" is invalid
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: filter-empty.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Default: <filter> has no filter primitive</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Default: <filter> has no filter primitive
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" filterRes="10 10"/>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
<filter> has no filter primitive
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: filter-filterPrimitive-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: <filter> has an invalid filter primitive</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: <filter> has an invalid filter primitive
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" filterRes="10 10">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" filterRes="10 10">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
<rect/> <!-- an validate XML parser will catch this one -->
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
<filter> has an invalid filter primitive
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,63 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: filter-filterResX-negative.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "filter" references an invalid element</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "filter" references an invalid element
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" filterRes="10 10">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" filterRes="-10 10">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
"filter" references an invalid element
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: filter-filterResY-negative.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: first value of "filterRes" on <filter> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: The second value of the attribute "filterRes"
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
on <filter> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" filterRes="10 10">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" filterRes="10 -10">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
The second value of "filterRes" is invalid
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: filter-filterUnits-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "filterUnits" on <filter> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "filterUnits" on <filter> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
<filter id="bad" filterUnits="objectBoundingBoX"
|
||||
x="0%" y="0%" width="100%" height="100%">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
"filterUnits" on <filter> is invalid
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,59 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: filter-uri-illegal.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "filter" references an invalid element</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "filter" references an invalid element
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<filter id="good" filterUnits="objectBoundingBox"
|
||||
x="0%" y="0%" width="100%" height="100%" filterRes="10 10">
|
||||
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</filter>
|
||||
<feTurbulence id="bad" type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A filtered rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A filtered rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
"filter" references an invalid element
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: image-badurl.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "xlink:href" on <image> has a bad URI</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "xlink:href" on <image> has a bad URI
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">An <image> element</text>
|
||||
<text x="225" y="440" class="legend">An <image> element with an invalid URI</text>
|
||||
|
||||
<image xlink:href="svg.svg" x="70" y="60" width="300" height="170" viewBox="0 0 210 170"/>
|
||||
|
||||
<image xlink:href="svg.svgX" x="70" y="260" width="300" height="170" viewBox="0 0 210 170"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: image-missing-height.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "height" is missing on <image></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "height" is missing on <image>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">An <image> element</text>
|
||||
<text x="225" y="440" class="legend">An <image> element without the "height" attribute</text>
|
||||
|
||||
<image xlink:href="svg.svg" x="70" y="60" width="300" height="170" viewBox="0 0 210 170"/>
|
||||
|
||||
<image xlink:href="svg.svg" x="70" y="260" width="300" viewBox="0 0 210 170"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: image-missing-width.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "width" is missing on <image></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "width" is missing on <image>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">An <image> element</text>
|
||||
<text x="225" y="440" class="legend">An <image> element without the "width" attribute</text>
|
||||
|
||||
<image xlink:href="svg.svg" x="70" y="60" width="300" height="170" viewBox="0 0 210 170"/>
|
||||
|
||||
<image xlink:href="svg.svg" x="70" y="260" height="170" viewBox="0 0 210 170"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: image-negative-height.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "height" is negative on <image></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "height" is negative on <image>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">An <image> element</text>
|
||||
<text x="225" y="440" class="legend">An <image> element with a negative "height" attribute</text>
|
||||
|
||||
<image xlink:href="svg.svg" x="70" y="60" width="300" height="170" viewBox="0 0 210 170"/>
|
||||
|
||||
<image xlink:href="svg.svg" x="70" y="260" width="300" height="-170" viewBox="0 0 210 170"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: image-negative-width.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "width" is negative on <image></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "width" is negative on <image>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">An <image> element</text>
|
||||
<text x="225" y="440" class="legend">An <image> element with a negative "width" attribute</text>
|
||||
|
||||
<image xlink:href="svg.svg" x="70" y="60" width="300" height="170" viewBox="0 0 210 170"/>
|
||||
|
||||
<image xlink:href="svg.svg" x="70" y="260" width="-300" height="170" viewBox="0 0 210 170"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,56 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: linearGradient-empty.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Default: <linearGradient> has no <stop></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Default: <linearGradient> has no <stop>
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<linearGradient id="good" x1="0%" y1="0%" x2="50%" y2="0%" spreadMethod="repeat">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop offset="100%" style="stop-color:green"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="bad" x1="0%" y1="0%" x2="50%" y2="0%" spreadMethod="repeat"/>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A rectangle filled with a <linearGradient></text>
|
||||
<text x="225" y="440" class="legend">A rectangle filled with a <linearGradient></text>
|
||||
<text x="225" y="454" class="legend"><linearGradient> has no <stop></text>
|
||||
|
||||
<rect x="70" y="120" width="300" height="100" style="fill:url(#good)"/>
|
||||
<rect x="70" y="280" width="300" height="100" style="fill:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,63 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: linearGradient-gradientUnits-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "gradientUnits" on <radialGradient> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "gradientUnits" on <radialGradient>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<linearGradient id="good" x1="0%" y1="0%" x2="50%" y2="0%" spreadMethod="repeat"
|
||||
gradientUnits="objectBoundingBox">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop offset="100%" style="stop-color:green"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="bad" x1="0%" y1="0%" x2="50%" y2="0%" spreadMethod="repeat"
|
||||
gradientUnits="objectBoundingBoX">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop offset="100%" style="stop-color:green"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A <radialGradient></text>
|
||||
<text x="225" y="440" class="legend">A <radialGradient> with an invalid "gradientUnits"</text>
|
||||
|
||||
<rect x="70" y="120" width="300" height="100" style="fill:url(#good)"/>
|
||||
<rect x="70" y="280" width="300" height="100" style="fill:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: linearGradient-missing-offset.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "offset" is missing on <stop></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "offset" is missing on <stop>
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<linearGradient id="good" x1="0%" y1="0%" x2="50%" y2="0%" spreadMethod="repeat">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop offset="100%" style="stop-color:green"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="bad" x1="0%" y1="0%" x2="50%" y2="0%" spreadMethod="repeat">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop style="stop-color:green"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A <linearGradient></text>
|
||||
<text x="225" y="440" class="legend">A <linearGradient> without an "offset" on its <stop></text>
|
||||
|
||||
<rect x="70" y="120" width="300" height="100" style="fill:url(#good)"/>
|
||||
<rect x="70" y="280" width="300" height="100" style="fill:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,61 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: linearGradient-spreadMethod-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "spreadMethod" is invalid on <linearGradient></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "spreadMethod" is invalid
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
on <linearGradient>
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<linearGradient id="good" x1="0%" y1="0%" x2="50%" y2="0%" spreadMethod="repeat">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop offset="100%" style="stop-color:green"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="bad" x1="0%" y1="0%" x2="50%" y2="0%" spreadMethod="repeatX">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop offset="100%" style="stop-color:green"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A <linearGradient></text>
|
||||
<text x="225" y="440" class="legend">A <linearGradient> with an invalid "spreadMethod"</text>
|
||||
|
||||
<rect x="70" y="120" width="300" height="100" style="fill:url(#good)"/>
|
||||
<rect x="70" y="280" width="300" height="100" style="fill:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,56 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: linearGradient-uri-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "fill" references an invalid element</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "fill" references an invalid element
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<linearGradient id="good" x1="0%" y1="0%" x2="50%" y2="0%" spreadMethod="repeat">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop offset="100%" style="stop-color:green"/>
|
||||
</linearGradient>
|
||||
<feTurbulence id="bad" type="turbulence" baseFrequency="0.05" numOctaves="2"/>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A rectangle filled with a <linearGradient></text>
|
||||
<text x="225" y="440" class="legend">A rectangle filled with a <linearGradient></text>
|
||||
<text x="225" y="454" class="legend">"fill" references an invalid element</text>
|
||||
|
||||
<rect x="70" y="120" width="300" height="100" style="fill:url(#good)"/>
|
||||
<rect x="70" y="280" width="300" height="100" style="fill:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,68 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: mask-empty.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Default: <mask> has no subelement</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Default: <mask> has no subelement
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<radialGradient id="maskedGradient" cx="50%" cy="50%" r="50%">
|
||||
<stop offset="0" stop-color="blue" />
|
||||
<stop offset="1" stop-color="red" />
|
||||
</radialGradient>
|
||||
|
||||
<mask id="good" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox">
|
||||
<circle cx=".25" cy=".25" r=".25" fill="#ffffff" />
|
||||
<circle cx="25%" cy="75%" r=".25" fill="#ffffff" />
|
||||
<circle cx="75%" cy=".25" r="25%" fill="#ffffff" />
|
||||
<circle cx=".75" cy="75%" r=".25" fill="#ffffff" />
|
||||
</mask>
|
||||
<mask id="bad" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox"/>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A masked rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A masked rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
<mask> has no subelement
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="fill:url(#maskedGradient); mask:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="fill:url(#maskedGradient); mask:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,73 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: mask-maskUnits-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "maskUnits" on <mask> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "maskUnits" on <mask> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<radialGradient id="maskedGradient" cx="50%" cy="50%" r="50%">
|
||||
<stop offset="0" stop-color="blue" />
|
||||
<stop offset="1" stop-color="red" />
|
||||
</radialGradient>
|
||||
|
||||
<mask id="good" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox">
|
||||
<circle cx=".25" cy=".25" r=".25" fill="#ffffff" />
|
||||
<circle cx="25%" cy="75%" r=".25" fill="#ffffff" />
|
||||
<circle cx="75%" cy=".25" r="25%" fill="#ffffff" />
|
||||
<circle cx=".75" cy="75%" r=".25" fill="#ffffff" />
|
||||
</mask>
|
||||
<mask id="bad" maskUnits="objectBoundingBoX" maskContentUnits="objectBoundingBox">
|
||||
<circle cx=".25" cy=".25" r=".25" fill="#ffffff" />
|
||||
<circle cx="25%" cy="75%" r=".25" fill="#ffffff" />
|
||||
<circle cx="75%" cy=".25" r="25%" fill="#ffffff" />
|
||||
<circle cx=".75" cy="75%" r=".25" fill="#ffffff" />
|
||||
</mask>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A masked rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A masked rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
"maskUnits" on <mask> is invalid
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="fill:url(#maskedGradient); mask:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="fill:url(#maskedGradient); mask:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,75 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: mask-subelement-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: <mask> has an invalid subelement</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: <mask> has an invalid subelement
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<radialGradient id="maskedGradient" cx="50%" cy="50%" r="50%">
|
||||
<stop offset="0" stop-color="blue" />
|
||||
<stop offset="1" stop-color="red" />
|
||||
</radialGradient>
|
||||
|
||||
<mask id="good" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox">
|
||||
<circle cx=".25" cy=".25" r=".25" fill="#ffffff" />
|
||||
<circle cx="25%" cy="75%" r=".25" fill="#ffffff" />
|
||||
<circle cx="75%" cy=".25" r="25%" fill="#ffffff" />
|
||||
<circle cx=".75" cy="75%" r=".25" fill="#ffffff" />
|
||||
</mask>
|
||||
<mask id="bad" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox">
|
||||
<circle cx=".25" cy=".25" r=".25" fill="#ffffff" />
|
||||
<circle cx="25%" cy="75%" r=".25" fill="#ffffff" />
|
||||
<circle/>
|
||||
<circle cx=".75" cy="75%" r=".25" fill="#ffffff" />
|
||||
</mask>
|
||||
|
||||
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A masked rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A masked rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
<mask> has an invalid subelement
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="fill:url(#maskedGradient); mask:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="fill:url(#maskedGradient); mask:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,67 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: mask-uri-illegal.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "mask" references an invalid element</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "mask" references an invalid element
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<radialGradient id="maskedGradient" cx="50%" cy="50%" r="50%">
|
||||
<stop offset="0" stop-color="blue" />
|
||||
<stop offset="1" stop-color="red" />
|
||||
</radialGradient>
|
||||
|
||||
<mask id="good" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox">
|
||||
<circle cx=".25" cy=".25" r=".25" fill="#ffffff" />
|
||||
<circle cx="25%" cy="75%" r=".25" fill="#ffffff" />
|
||||
<circle cx="75%" cy=".25" r="25%" fill="#ffffff" />
|
||||
<circle cx=".75" cy="75%" r=".25" fill="#ffffff" />
|
||||
</mask>
|
||||
<circle id="bad" cx=".25" cy=".25" r=".25" fill="#ffffff" />
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A masked rectangle</text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A masked rectangle
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
"mask" references an invalid element
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="fill:url(#maskedGradient); mask:url(#good)"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="fill:url(#maskedGradient); mask:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,88 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: path-invalid-d.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "d" is invalid on <path></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "d" is invalid on <path>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A <path> element</text>
|
||||
<text x="225" y="440" class="legend">An <path> element with an invalid "d" attribute</text>
|
||||
|
||||
<path transform="translate(80 60)"
|
||||
style="fill:none;stroke:#00C000;"
|
||||
d="
|
||||
M 250 130
|
||||
|
||||
C 185 130
|
||||
150 80
|
||||
150 80
|
||||
|
||||
S 115 25
|
||||
50 25
|
||||
|
||||
m 0 105
|
||||
|
||||
c 65 0
|
||||
100 -50
|
||||
100 -50
|
||||
|
||||
s 35 -55
|
||||
100 -55
|
||||
"
|
||||
/>
|
||||
|
||||
<path transform="translate(80 260)"
|
||||
style="fill:none;stroke:#00C000;"
|
||||
d="
|
||||
M 250 130
|
||||
|
||||
C 185 130
|
||||
150 80
|
||||
150 80
|
||||
|
||||
S 115 25
|
||||
50 25
|
||||
|
||||
m 0 105
|
||||
|
||||
c 65 0
|
||||
100 -50
|
||||
100 -50
|
||||
X
|
||||
s 35 -55
|
||||
100 -55
|
||||
"
|
||||
/> </g>
|
||||
</svg>
|
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: path-missing-d.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "d" is missing on <path></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "d" is missing on <path>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A <path> element</text>
|
||||
<text x="225" y="440" class="legend">An <path> element without the "d" attribute</text>
|
||||
|
||||
<path transform="translate(80 60)"
|
||||
style="fill:none;stroke:#00C000;"
|
||||
d="
|
||||
M 250 130
|
||||
|
||||
C 185 130
|
||||
150 80
|
||||
150 80
|
||||
|
||||
S 115 25
|
||||
50 25
|
||||
|
||||
m 0 105
|
||||
|
||||
c 65 0
|
||||
100 -50
|
||||
100 -50
|
||||
|
||||
s 35 -55
|
||||
100 -55
|
||||
"
|
||||
/>
|
||||
|
||||
<path transform="translate(80 260)"
|
||||
style="fill:none;stroke:#00C000;"/>
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: pattern-empty.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Default: <pattern> has no subelement</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Default: <pattern> has no subelement
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<pattern id="good" x="0" y="0" width=".75" height="50%">
|
||||
<circle cx="10" cy="10" r="10" style="fill:red" />
|
||||
<rect x="10" y="10" width="15" height="15" style="fill:green"/>
|
||||
</pattern>
|
||||
<pattern id="bad" x="0" y="0" width=".75" height="50%">
|
||||
</pattern>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A rectangle filled with a <pattern></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A rectangle filled with a <pattern>
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
<pattern> has no subelement
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="fill:url(#good);"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="fill:url(#bad);"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: pattern-patternUnits-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "patternUnits" on <pattern> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "patternUnits" on <pattern> is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<pattern id="good" x="0" y="0" width=".75" height="50%" patternUnits="objectBoundingBox" >
|
||||
<circle cx="10" cy="10" r="10" style="fill:red" />
|
||||
<rect x="10" y="10" width="15" height="15" style="fill:green"/>
|
||||
</pattern>
|
||||
<pattern id="bad" x="0" y="0" width=".75" height="50%" patternUnits="objectBoundingBoX">
|
||||
<circle cx="10" cy="10" r="10" style="fill:red" />
|
||||
<rect x="10" y="10" width="15" height="15" style="fill:green"/>
|
||||
</pattern>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A rectangle filled with a <pattern></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A rectangle filled with a <pattern>
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
"patternUnits" on <pattern> is invalid
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="fill:url(#good);"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="fill:url(#bad);"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: pattern-subelement-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: <pattern> has an invalid subelement</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: <pattern> has an invalid subelement
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<pattern id="good" x="0" y="0" width=".75" height="50%">
|
||||
<circle cx="10" cy="10" r="10" style="fill:red" />
|
||||
<rect x="10" y="10" width="15" height="15" style="fill:green"/>
|
||||
</pattern>
|
||||
<pattern id="bad" x="0" y="0" width=".75" height="50%">
|
||||
<circle/>
|
||||
<rect x="10" y="10" width="15" height="15" style="fill:green"/>
|
||||
</pattern>
|
||||
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A rectangle filled with a <pattern></text>
|
||||
<text x="225" y="440" class="legend">
|
||||
A rectangle filled with a <pattern>
|
||||
</text>
|
||||
<text x="225" y="454" class="legend">
|
||||
<pattern> has an invalid subelement
|
||||
</text>
|
||||
|
||||
<rect x="175" y="100" width="100" height="100" style="fill:url(#good);"/>
|
||||
<rect x="175" y="300" width="100" height="100" style="fill:url(#bad);"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: polygon-invalid-points.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "points" is invalid on <polygon></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "points" is invalid on <polygon>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A green <polygon> element</text>
|
||||
<text x="225" y="400" class="legend">A red <polygon> element with an invalid "points" attribute</text>
|
||||
|
||||
<polygon transform="translate(0 30)" style="fill:none; stroke:green; stroke-width:8"
|
||||
points="220,80,267,114,249,170,190,170,172,114" />
|
||||
|
||||
<polygon transform="translate(0 190)" style="fill:none; stroke:red; stroke-width:8"
|
||||
points="220,80,267,114,249,170,190,170,172,12.2.2" />
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: polygon-missing-points.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "points" is missing on <polygon></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "points" is missing on <polygon>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A green <polygon> element</text>
|
||||
<text x="225" y="400" class="legend">A red <polygon> element without the "points" attribute</text>
|
||||
|
||||
<polygon transform="translate(0 30)" style="fill:none; stroke:green; stroke-width:8"
|
||||
points="220,80,267,114,249,170,190,170,172,114" />
|
||||
|
||||
<polygon transform="translate(0 190)" style="fill:none; stroke:red; stroke-width:8"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: polyline-invalid-points.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "points" is invalid on <polyline></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "points" is invalid on <polyline>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A green <polyline> element</text>
|
||||
<text x="225" y="400" class="legend">A red <polyline> element with an invalid "points" attribute</text>
|
||||
|
||||
<polyline transform="translate(0 30)" style="fill:none; stroke:green; stroke-width:8"
|
||||
points="220,80,267,114,249,170,190,170,172,114" />
|
||||
|
||||
<polyline transform="translate(0 190)" style="fill:none; stroke:red; stroke-width:8"
|
||||
points="220,80,267,114,249,170,190,170,172,12.2.2" />
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: polyline-missing-points.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: attribute "points" is missing on <polyline></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: attribute "points" is missing on <polyline>
|
||||
</text>
|
||||
|
||||
|
||||
<text x="225" y="240" class="legend">A green <polyline> element</text>
|
||||
<text x="225" y="400" class="legend">A red <polyline> element without the "points" attribute</text>
|
||||
|
||||
<polyline transform="translate(0 30)" style="fill:none; stroke:green; stroke-width:8"
|
||||
points="220,80,267,114,249,170,190,170,172,114" />
|
||||
|
||||
<polyline transform="translate(0 190)" style="fill:none; stroke:red; stroke-width:8"/>
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: radialGradient-empty.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Default: <radialGradient> has no <stop></title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Default: <radialGradient> has no <stop>
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<radialGradient id="good" cx="50%" cy="50%" r="50%" fx="20%" fy="20%">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop offset="100%" style="stop-color:green"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="bad" cx="50%" cy="50%" r="50%" fx="20%" fy="20%"/>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A rectangle filled with a <radialGradient></text>
|
||||
<text x="225" y="440" class="legend">A rectangle filled with a <radialGradient></text>
|
||||
<text x="225" y="454" class="legend"><radialGradient> has no <stop></text>
|
||||
|
||||
|
||||
<circle cx="220" cy="140" r="70" style="fill:url(#good)"/>
|
||||
<circle cx="220" cy="330" r="70" style="fill:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
|
@ -0,0 +1,63 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
|
||||
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.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. -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<!-- ========================================================================= -->
|
||||
<!-- Error on rect -->
|
||||
<!-- -->
|
||||
<!-- @author tkormann@apache.org -->
|
||||
<!-- @version $Id: radialGradient-gradientUnits-invalid.svg,v 1.1 2001/06/10 01:46:36 edburns%acm.org Exp $ -->
|
||||
<!-- ========================================================================= -->
|
||||
|
||||
<?xml-stylesheet type="text/css" href="test.css" ?>
|
||||
|
||||
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
|
||||
<title>Error: "gradientUnits" on <radialGradient> is invalid</title>
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Batik sample mark -->
|
||||
<!-- ============================================================= -->
|
||||
<use xlink:href="./batikMark.svg#BatikTag" />
|
||||
|
||||
<!-- ============================================================= -->
|
||||
<!-- Test content -->
|
||||
<!-- ============================================================= -->
|
||||
<g id="testContent">
|
||||
|
||||
<text x="225" y="40" class="title">
|
||||
Error: "gradientUnits" on <radialGradient>
|
||||
</text>
|
||||
<text x="225" y="60" class="title">
|
||||
is invalid
|
||||
</text>
|
||||
|
||||
<defs>
|
||||
<radialGradient id="good" cx="50%" cy="50%" r="50%" fx="20%" fy="20%"
|
||||
gradientUnits="objectBoundingBox">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop offset="100%" style="stop-color:green"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="bad" cx="50%" cy="50%" r="-10" fx="20%" fy="20%"
|
||||
gradientUnits="objectBoundingBoX">
|
||||
<stop offset="0%" style="stop-color:yellow"/>
|
||||
<stop offset="100%" style="stop-color:green"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
|
||||
<text x="225" y="240" class="legend">A <radialGradient></text>
|
||||
<text x="225" y="440" class="legend">A <radialGradient> with an invalid "gradientUnits"</text>
|
||||
|
||||
<circle cx="220" cy="140" r="70" style="fill:url(#good)"/>
|
||||
<circle cx="220" cy="330" r="70" style="fill:url(#bad)"/>
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче