Initial commit

Version demonstrated on 37 Chaos Communication Congress (37c3),
sans badges, which will be committed after the Congress.
master
woju 2023-12-07 23:43:09 +01:00
commit c4e545555b
231 changed files with 11547 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
__pycache__

573
.pylintrc Normal file
View File

@ -0,0 +1,573 @@
[MESSAGES CONTROL]
disable=
c-extension-no-member,
trailing-comma-tuple,
fixme,
missing-docstring,
invalid-name,
#raw-checker-failed,
# bad-inline-option,
# locally-disabled,
# file-ignored,
# suppressed-message,
# useless-suppression,
# deprecated-pragma,
# use-symbolic-message-instead
enable=
[MASTER]
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code.
extension-pkg-allow-list=
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code. (This is an alternative name to extension-pkg-allow-list
# for backward compatibility.)
extension-pkg-whitelist=
# Return non-zero exit code if any of these messages/categories are detected,
# even if score is above --fail-under value. Syntax same as enable. Messages
# specified are enabled, while categories only check already-enabled messages.
fail-on=
# Specify a score threshold to be exceeded before program exits with error.
fail-under=10.0
# Files or directories to be skipped. They should be base names, not paths.
ignore=CVS
# Add files or directories matching the regex patterns to the ignore-list. The
# regex matches against paths and can be in Posix or Windows format.
ignore-paths=
# Files or directories matching the regex patterns are skipped. The regex
# matches against base names, not paths.
ignore-patterns=
# Python code to execute, usually for sys.path manipulation such as
# pygtk.require().
#init-hook=
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use.
jobs=0
# Control the amount of potential inferred values when inferring a single
# object. This can help the performance when dealing with large functions or
# complex, nested conditions.
limit-inference-results=100
# List of plugins (as comma separated values of python module names) to load,
# usually to register additional checkers.
load-plugins=
# Pickle collected data for later comparisons.
persistent=yes
# Minimum Python version to use for version dependent checks. Will default to
# the version used to run pylint.
py-version=3.10
# When enabled, pylint would attempt to guess common misconfiguration and emit
# user-friendly hints instead of false-positive error messages.
suggestion-mode=yes
# Allow loading of arbitrary C extensions. Extensions are imported into the
# active Python interpreter and may run arbitrary code.
unsafe-load-any-extension=no
[REPORTS]
# Python expression which should return a score less than or equal to 10. You
# have access to the variables 'error', 'warning', 'refactor', and 'convention'
# which contain the number of messages in each category, as well as 'statement'
# which is the total number of statements analyzed. This score is used by the
# global evaluation report (RP0004).
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
# Template used to display messages. This is a python new-style format string
# used to format the message information. See doc for all details.
#msg-template=
# Set the output format. Available formats are text, parseable, colorized, json
# and msvs (visual studio). You can also give a reporter class, e.g.
# mypackage.mymodule.MyReporterClass.
output-format=text
# Tells whether to display a full report or only the messages.
reports=no
# Activate the evaluation score.
score=yes
[REFACTORING]
# Maximum number of nested blocks for function / method body
max-nested-blocks=5
# Complete name of functions that never returns. When checking for
# inconsistent-return-statements if a never returning function is called then
# it will be considered as an explicit return statement and no message will be
# printed.
never-returning-functions=sys.exit,argparse.parse_error
[SIMILARITIES]
# Comments are removed from the similarity computation
ignore-comments=yes
# Docstrings are removed from the similarity computation
ignore-docstrings=yes
# Imports are removed from the similarity computation
ignore-imports=no
# Signatures are removed from the similarity computation
ignore-signatures=no
# Minimum lines number of a similarity.
min-similarity-lines=4
[TYPECHECK]
# List of decorators that produce context managers, such as
# contextlib.contextmanager. Add to this list to register other decorators that
# produce valid context managers.
contextmanager-decorators=contextlib.contextmanager
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
generated-members=
# Tells whether missing members accessed in mixin class should be ignored. A
# class is considered mixin if its name matches the mixin-class-rgx option.
ignore-mixin-members=yes
# Tells whether to warn about missing members when the owner of the attribute
# is inferred to be None.
ignore-none=yes
# This flag controls whether pylint should warn about no-member and similar
# checks whenever an opaque object is returned when inferring. The inference
# can return multiple potential results while evaluating a Python object, but
# some branches might not be evaluated, which results in partial inference. In
# that case, it might be useful to still emit no-member and other checks for
# the rest of the inferred objects.
ignore-on-opaque-inference=yes
# List of class names for which member attributes should not be checked (useful
# for classes with dynamically set attributes). This supports the use of
# qualified names.
ignored-classes=optparse.Values,thread._local,_thread._local
# List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus existing member attributes cannot be deduced by static analysis). It
# supports qualified module names, as well as Unix pattern matching.
ignored-modules=
# Show a hint with possible names when a member name was not found. The aspect
# of finding the hint is based on edit distance.
missing-member-hint=yes
# The minimum edit distance a name should have in order to be considered a
# similar match for a missing member name.
missing-member-hint-distance=1
# The total number of similar names that should be taken in consideration when
# showing a hint for a missing member.
missing-member-max-choices=1
# Regex pattern to define which classes are considered mixins ignore-mixin-
# members is set to 'yes'
mixin-class-rgx=.*[Mm]ixin
# List of decorators that change the signature of a decorated function.
signature-mutators=
[VARIABLES]
# List of additional names supposed to be defined in builtins. Remember that
# you should avoid defining new builtins when possible.
additional-builtins=
# Tells whether unused global variables should be treated as a violation.
allow-global-unused-variables=yes
# List of names allowed to shadow builtins
allowed-redefined-builtins=
# List of strings which can identify a callback function by name. A callback
# name must start or end with one of those strings.
callbacks=cb_,
_cb
# A regular expression matching the name of dummy variables (i.e. expected to
# not be used).
dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
# Argument names that match this expression will be ignored. Default to name
# with leading underscore.
ignored-argument-names=_.*|^ignored_|^unused_
# Tells whether we should check for unused import in __init__ files.
init-import=no
# List of qualified module names which can have objects that can redefine
# builtins.
redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io
[SPELLING]
# Limits count of emitted suggestions for spelling mistakes.
max-spelling-suggestions=4
# Spelling dictionary name. Available dictionaries: de_AT (hunspell),
# de_AT_frami (hunspell), de_CH (hunspell), de_CH_frami (hunspell), de_DE
# (hunspell), de_DE_frami (hunspell), en (aspell), en_AU (aspell), en_CA
# (aspell), en_GB (aspell), en_US (aspell), en_ZA (hunspell), es_AR (hunspell),
# es_BO (hunspell), es_CL (hunspell), es_CO (hunspell), es_CR (hunspell), es_CU
# (hunspell), es_DO (hunspell), es_EC (hunspell), es_ES (hunspell), es_GT
# (hunspell), es_HN (hunspell), es_MX (hunspell), es_NI (hunspell), es_PA
# (hunspell), es_PE (hunspell), es_PR (hunspell), es_PY (hunspell), es_SV
# (hunspell), es_US (hunspell), es_UY (hunspell), es_VE (hunspell), fr
# (hunspell), fr_BE (hunspell), fr_CA (hunspell), fr_CH (hunspell), fr_FR
# (hunspell), fr_LU (hunspell), fr_MC (hunspell), it_CH (hunspell), it_IT
# (hunspell), pt_BR (hunspell), pt_PT (hunspell), ru_RU (hunspell).
spelling-dict=
# List of comma separated words that should be considered directives if they
# appear and the beginning of a comment and should not be checked.
spelling-ignore-comment-directives=fmt: on,fmt: off,noqa:,noqa,nosec,isort:skip,mypy:
# List of comma separated words that should not be checked.
spelling-ignore-words=
# A path to a file that contains the private dictionary; one word per line.
spelling-private-dict-file=
# Tells whether to store unknown words to the private dictionary (see the
# --spelling-private-dict-file option) instead of raising a message.
spelling-store-unknown-words=no
[MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma.
notes=FIXME,
XXX,
TODO
# Regular expression of note tags to take in consideration.
#notes-rgx=
[LOGGING]
# The type of string formatting that logging methods do. `old` means using %
# formatting, `new` is for `{}` formatting.
logging-format-style=old
# Logging modules to check that the string format arguments are in logging
# function parameter format.
logging-modules=logging
[FORMAT]
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
expected-line-ending-format=
# Regexp for a line that is allowed to be longer than the limit.
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
# Number of spaces of indent required inside a hanging or continued line.
indent-after-paren=4
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
# tab).
indent-string=' '
# Maximum number of characters on a single line.
max-line-length=100
# Maximum number of lines in a module.
max-module-lines=1000
# Allow the body of a class to be on the same line as the declaration if body
# contains single statement.
single-line-class-stmt=no
# Allow the body of an if to be on the same line as the test if there is no
# else.
single-line-if-stmt=no
[BASIC]
# Naming style matching correct argument names.
argument-naming-style=snake_case
# Regular expression matching correct argument names. Overrides argument-
# naming-style.
#argument-rgx=
# Naming style matching correct attribute names.
attr-naming-style=snake_case
# Regular expression matching correct attribute names. Overrides attr-naming-
# style.
#attr-rgx=
# Bad variable names which should always be refused, separated by a comma.
bad-names=foo,
bar,
baz,
toto,
tutu,
tata
# Bad variable names regexes, separated by a comma. If names match any regex,
# they will always be refused
bad-names-rgxs=
# Naming style matching correct class attribute names.
class-attribute-naming-style=any
# Regular expression matching correct class attribute names. Overrides class-
# attribute-naming-style.
#class-attribute-rgx=
# Naming style matching correct class constant names.
class-const-naming-style=UPPER_CASE
# Regular expression matching correct class constant names. Overrides class-
# const-naming-style.
#class-const-rgx=
# Naming style matching correct class names.
class-naming-style=PascalCase
# Regular expression matching correct class names. Overrides class-naming-
# style.
#class-rgx=
# Naming style matching correct constant names.
const-naming-style=UPPER_CASE
# Regular expression matching correct constant names. Overrides const-naming-
# style.
#const-rgx=
# Minimum line length for functions/classes that require docstrings, shorter
# ones are exempt.
docstring-min-length=-1
# Naming style matching correct function names.
function-naming-style=snake_case
# Regular expression matching correct function names. Overrides function-
# naming-style.
#function-rgx=
# Good variable names which should always be accepted, separated by a comma.
good-names=i,
j,
k,
ex,
Run,
_
# Good variable names regexes, separated by a comma. If names match any regex,
# they will always be accepted
good-names-rgxs=
# Include a hint for the correct naming format with invalid-name.
include-naming-hint=no
# Naming style matching correct inline iteration names.
inlinevar-naming-style=any
# Regular expression matching correct inline iteration names. Overrides
# inlinevar-naming-style.
#inlinevar-rgx=
# Naming style matching correct method names.
method-naming-style=snake_case
# Regular expression matching correct method names. Overrides method-naming-
# style.
#method-rgx=
# Naming style matching correct module names.
module-naming-style=snake_case
# Regular expression matching correct module names. Overrides module-naming-
# style.
#module-rgx=
# Colon-delimited sets of names that determine each other's naming style when
# the name regexes allow several styles.
name-group=
# Regular expression which should only match function or class names that do
# not require a docstring.
no-docstring-rgx=^_
# List of decorators that produce properties, such as abc.abstractproperty. Add
# to this list to register other decorators that produce valid properties.
# These decorators are taken in consideration only for invalid-name.
property-classes=abc.abstractproperty
# Naming style matching correct variable names.
variable-naming-style=snake_case
# Regular expression matching correct variable names. Overrides variable-
# naming-style.
#variable-rgx=
[STRING]
# This flag controls whether inconsistent-quotes generates a warning when the
# character used as a quote delimiter is used inconsistently within a module.
check-quote-consistency=no
# This flag controls whether the implicit-str-concat should generate a warning
# on implicit string concatenation in sequences defined over several lines.
check-str-concat-over-line-jumps=no
[DESIGN]
# List of regular expressions of class ancestor names to ignore when counting
# public methods (see R0903)
exclude-too-few-public-methods=
# List of qualified class names to ignore when counting class parents (see
# R0901)
ignored-parents=
# Maximum number of arguments for function / method.
max-args=5
# Maximum number of attributes for a class (see R0902).
max-attributes=7
# Maximum number of boolean expressions in an if statement (see R0916).
max-bool-expr=5
# Maximum number of branch for function / method body.
max-branches=12
# Maximum number of locals for function / method body.
max-locals=15
# Maximum number of parents for a class (see R0901).
max-parents=7
# Maximum number of public methods for a class (see R0904).
max-public-methods=20
# Maximum number of return / yield for function / method body.
max-returns=6
# Maximum number of statements in function / method body.
max-statements=50
# Minimum number of public methods for a class (see R0903).
min-public-methods=2
[IMPORTS]
# List of modules that can be imported at any level, not just the top level
# one.
allow-any-import-level=
# Allow wildcard imports from modules that define __all__.
allow-wildcard-with-all=no
# Analyse import fallback blocks. This can be used to support both Python 2 and
# 3 compatible code, which means that the block might have code that exists
# only in one or another interpreter, leading to false positives when analysed.
analyse-fallback-blocks=no
# Deprecated modules which should not be used, separated by a comma.
deprecated-modules=
# Output a graph (.gv or any supported image format) of external dependencies
# to the given file (report RP0402 must not be disabled).
ext-import-graph=
# Output a graph (.gv or any supported image format) of all (i.e. internal and
# external) dependencies to the given file (report RP0402 must not be
# disabled).
import-graph=
# Output a graph (.gv or any supported image format) of internal dependencies
# to the given file (report RP0402 must not be disabled).
int-import-graph=
# Force import order to recognize a module as part of the standard
# compatibility libraries.
known-standard-library=
# Force import order to recognize a module as part of a third party library.
known-third-party=enchant
# Couples of modules and preferred modules, separated by a comma.
preferred-modules=
[CLASSES]
# Warn about protected attribute access inside special methods
check-protected-access-in-special-methods=no
# List of method names used to declare (i.e. assign) instance attributes.
defining-attr-methods=__init__,
__new__,
setUp,
__post_init__
# List of member names, which should be excluded from the protected access
# warning.
exclude-protected=_asdict,
_fields,
_replace,
_source,
_make
# List of valid names for the first argument in a class method.
valid-classmethod-first-arg=cls
# List of valid names for the first argument in a metaclass class method.
valid-metaclass-classmethod-first-arg=cls
[EXCEPTIONS]
# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
# vim: tw=80 ts=4 sts=4 sw=4 et

3
CONTRIBUTING Normal file
View File

@ -0,0 +1,3 @@
TODO
- coding style
- dependencies

661
COPYING Normal file
View File

@ -0,0 +1,661 @@
GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.
A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate. Many developers of free software are heartened and
encouraged by the resulting cooperation. However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.
The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community. It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server. Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.
An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals. This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing under
this license.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU Affero General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Remote Network Interaction; Use with the GNU General Public License.
Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your version
supports such interaction) an opportunity to receive the Corresponding
Source of your version by providing access to the Corresponding Source
from a network server at no charge, through some standard or customary
means of facilitating copying of software. This Corresponding Source
shall include the Corresponding Source for any work covered by version 3
of the GNU General Public License that is incorporated pursuant to the
following paragraph.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU Affero General Public License from time to time. Such new versions
will be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If your software can interact with users remotely through a computer
network, you should also make sure that it provides a way for users to
get its source. For example, if your program is a web application, its
interface could display a "Source" link that leads users to an archive
of the code. There are many ways you could offer source, and different
solutions will be better for different programs; see section 13 for the
specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
<https://www.gnu.org/licenses/>.

View File

@ -0,0 +1,23 @@
Glossary
========
It's important to distinguish terms that may seem to overlap, but the distiction
between them is actually important when they're processed in different stages of
the same pipeline. Therefore we should strive to be precise in terminology used
in this project, especially when used in documentation, names of variables, etc.
Here are the definitions that (I hope) provide some clarity.
.. glossary::
block
Piece with distinct aruco :term:`marker`. There might be several
distinct blocks with the same :term:`token` on them.
marker
Part of block layout, graphic detail that can be efficiently detected.
token
What is written on the tile (like "POWTÓRZ").
.. vim: tw=80 ts=4 sts=4 sw=4 et

140
README.rst Normal file
View File

@ -0,0 +1,140 @@
Tux Go
======
Hardware requirements
---------------------
Control box
^^^^^^^^^^^
- Raspberry Pi 4+ or later
- Camera (tested with Camera Module 3)
- Monitor that can be rotated to vertical (tested on 1024x1280)
- Keyboard
Robot
^^^^^
- bbc:microbit v1
- DFRobot Maqueen
It is technically possible to write firmware for any robot that can connect over
Bluetooth LE. Contributions are welcome.
Getting started
---------------
- Install RaspberryPi OS (at least 12/bookworm) on the SD card, as documented in
RPi documentation.
- Connect camera, keyboard and display.
- Start RPi and configure screen to vertical.
- Install dependencies:
.. code-block:: sh
sudo apt-get install \
python3-bleak \
python3-click \
python3-click-default-group \
python3-flask \
python3-funcparserlib \
python3-loguru
python3-matplotlib \
python3-opencv \
python3-werkzeug \
- Run the game:
.. code-block:: sh
python3 -m tuxgo
Acknowledgements
----------------
In rough order of the pipeline that processes data in this project, Author would
like to acknowledge the following projects and people:
Scottie Go
^^^^^^^^^^
Original game by BeCreo, for the idea. This thing is largely a reimplementation
of Scottie Go, because I wanted to drive a physical robot with the tiles and
AFAIK there's no way in ecosystem to do just that.
This project does not contain any code or assets from the original game, neither
the Author read the source code or reversed the binaries. But you can still
support BeCreo by buying original game from their store.
web page: https://scottiego.com/
support (online store): https://www.shop.scottiego.com/
Python
^^^^^^
This application was written in Python for the benefit of teachers and students
alike. Author feels that this language is a good choice to write an educational
app, since Python is taught in Polish schools as part of curriculum.
OpenCV
^^^^^^
The state-of-the-art image detection and marker recognition library, used to
detect ArUco markers on the game tiles.
web page: TBD support: TBD
numpy and matplotlib
^^^^^^^^^^^^^^^^^^^^
Maths libraries from the Python's scientific subculture. NumPy is used for
general computation (also at the interface of OpenCV) and matplotlib happens to
contain very useful modules for affine transforms and polygon collisions.
numpy Web page: https://numpy.org/
numpy Support: https://numpy.org/about/#donate
matplotlib web page: https://matplotlib.org/
matplotlib support: https://numfocus.org/donate-to-matplotlib
funcparserlib
^^^^^^^^^^^^^
Smart little tool for writing parsers. Used to parse detected pieces into
abstract syntax tree.
web page: https://funcparserlib.pirx.ru/
github repo: https://github.com/vlasovskikh/funcparserlib
support: *(please do not support .ru people unless they migrate out of Russia)*
PyGame
^^^^^^
Python framework for writing games. Used for the visual interface, which
displays simulation.
web page: https://www.pygame.org/
support: https://www.pygame.org/contribute.html
Johann C
^^^^^^^^
For isometric artwork, which I've reused for this game in simulation mode. The
artwork is available at OpenGameArt in public domain (CC0):
- https://opengameart.org/content/svg-isometric-robot
- https://opengameart.org/content/svg-isometric-tileset
AFAIK the artwork was originally made for a programming game called simply
“Robot”: https://jlodb.poufpoufproduction.fr/report.html?activity=robot, which
is very different in style. Try it yourself.
But this artwork was reused and adapted by various people for other little
games, of which I've particularly enjoyed “iNTRUDER - The nukebot” by looneybits
(https://looneybits.itch.io/intruder,
https://opengameart.org/content/intruder-the-nukebot).
web page: https://poufpoufproduction.fr/ (has link to Fedi account)
Various Python libraries' authors
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Pallets: For Flask and Werkzeug, which are used to serve a temporary HTTP server.
Dedication
----------
*To my Daughters: Marta, Ola and Klara.*
.. vim: tw=80 ts=4 sts=4 sw=4 et

71
TODO Normal file
View File

@ -0,0 +1,71 @@
- WSGI serwer z werkzeug owinięty w multiprocessing:
https://github.com/pallets/werkzeug/issues/1752#issuecomment-655600254
(albo concurrent.futures?)
- rożne formaty plików:
- po prostu zdjęcie
- zdjęcie z już rozpoznanym programem, może gdzieś w exifie?
- program (tekst)
- po prostu level
- trzeba, żeby format mapy uwzględniał początkową rotację robota i bobrów
- robot powinien umieć wystartować ze wzniesinia
- level z programem (demo -- program byc może nieskończony)
mniej-więcej z
' ' otchłań (ABYSS)
'.' podłoga (FLOOR or EMPTY)
':' wzniesienie (ELEVATED)
'#' przeszkoda (WALL)
'<v^>' pasy transmisyjne
'~' woda (WATER)
'@' robot (na podłodze)
'br' bobry (w wodzie)
'BR' bobry z robotem na głowie (w wodzie)
'?' lampa (zgaszona)
'!' lampa zapalona
- przemyśleć terminologię i nazewnictwo zmiennych:
- „blok”, ang. „block” -> blok kodu, termin w program
- „plansza” ang. „board” -> bloczki poukładane (i zrobione zdjęcie)
- „kafelek”, ang. „tile” -> element wirtualnej podłogi
- „bloczek”, ang. „piece” -> tekturowy element z gry
- „token”, ang. „token” -> polecenie (informatyczne) zawarte na kafelku (kilka
bloczków różniących się markerami może reprezentować ten sam token)
- „robot” czy „hero” czy „player”?
- mapa/plansza/level/zadanie/ćwiczenie
- przemyśleć zadania i ćwiczenia:
- ZADANIE 1: układanie programu
- ZADANIE 2: poruszanie się po planszy
- ZADANIE 3: pętla for
- ZADANIE : pętla while
- ZADANIE : instrukcja warunkowa
- adaptacja kafelków do bloczków ze Scottie Go:
- czerwony i niebieski bóbr: czerwony i niebieski kafelek, który robi za windę
(co z obracaniem? użyć pasów transmisyjnych, żeby był kierunek?)
- fioletowe kafelki: pomalowane przez RYSUJ
- żółty bóbr -> ?
- ? -> breakpoint
- różne pomysły na niekoniecznie kompatybilne rozszerzenia:
- sokoban (są do tego sprite'y!)
- obrót co 30° (albo nawet 15°), żeby można było rysować pod kątem, nie tylko
prostopadle
- parametr do obrotu (może być opcjonalny)
- opcjonalny parametr do kroku (default 1?)
- możliwość nadpisywania zmiennych (Scottie Go rzuca błedem, jeśli się próbuje
drugi raz przypisać do zmiennej)
- zmienne lokalne? nie do końca rozumiem po co
- code quality / project management:
- pozbyć się contains_point z matplotliba, jeśli się znajdzie lepsze narzędzie
- zrobić plik konfiguracyjny:
- MAC robota
- badże
- znaleźć lepszy font, który będzie wspierał pliterki
vim: tw=80 ts=2 sts=2 sw=2 et

1
firmware/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/.pio

71
firmware/README Normal file
View File

@ -0,0 +1,71 @@
BBC:MICROBIT v1
===============
Quickstart
----------
Installing PlatformIO (once per box)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
python3 -m venv --system-site-packages venv-platformio
./venv-platformio/bin/python3 -m pip install -U platformio
Preparing /etc/fstab for uploading (once per box)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
sudo mkdir -p /media/microbit
echo 'LABEL="MICROBIT" /media/microbit auto noauto,user 0 0' | sudo tee -a /etc/fstab
sudo systemctl daemon-reload
Compiling
^^^^^^^^^
./venv-platformio/bin/pio run
Uploading
^^^^^^^^^
mount /media/microbit; cp .pio/build/bbcmicrobit-maqueen/firmware.hex /media/microbit; umount /media/microbit
Random notes
------------
- what works:
- Arduino :(
- adafruit's microbit library
- obsolete maqueen library
- newping
- platformio
- bleak
- what does not work:
- platformio on raspberry pi: insist on embedded srecord, which is compiled
for eabihf and I couldn't get it to load
- makecode + bluetooth + maqueen: out of mem (020)
- dal/codal, yotta, mbed etc.: I coudn't get it to work, and I'm appalled
by the constant nagging by mbed to sign in
also plaformio doesn't support mbed for microbit (only arduino and zephyr)
- didn't try zephyr
- didn't try micropython, because LU docs say it won't have bluetooth
- bluezero: confuses tx and rx for some reason (works with makecode,
probably tested only against that one)
- didn't try gattlib
References
----------
General microbit description:
https://tech.microbit.org/hardware/
Error list:
https://support.microbit.org/support/solutions/folders/19000163393
SoftDevice for microbit v1:
https://www.nordicsemi.com/Products/Development-software/S110/Download?lang=en#infotabs
Documentation for microbit's mbed ecosystem, couldn't get it to compile:
https://lancaster-university.github.io/microbit-docs/
Documentation for micropython:
https://github.com/micropython/micropython-lib/tree/master/micropython/bluetooth/aioble
Won't work with bluetooth. Maybe I can get it to work on ESP32? Would
require another robot.
Maybe a source of inspiration:
https://microbit-challenges.readthedocs.io/
vim: tw=80

23
firmware/platformio.ini Normal file
View File

@ -0,0 +1,23 @@
[env:bbcmicrobit-maqueen]
platform = nordicnrf51
board = bbcmicrobit
framework = arduino
lib_deps =
adafruit/Adafruit microbit Library@^1.3.4
adafruit/Adafruit GFX Library@^1.11.9
adafruit/Adafruit BusIO@^1.14.5
Wire
SPI
kd8bxp/micro Maqueen
teckel12/NewPing
build_flags =
-DS110
-DNRF51_S110
monitor_speed = 115200
# IDK why this doesn't work
;upload_command =
; mount /media/microbit; cp -v $SOURCE /media/microbit; umount /media/microbit

94
firmware/src/main.cpp Normal file
View File

@ -0,0 +1,94 @@
/* SPDX-License-Identifier: AGPL-3.0-or-later
* SPDX-FileCopyrightText: 2023 Wojtek Porczyk <woju@hackerspace.pl>
*/
#include <Maqueen.h>
#include <Adafruit_Microbit.h>
#ifndef TUXGO_SPIN_DELAY
# define TUXGO_SPIN_DELAY 340
#endif
#ifndef TUXGO_DRIVE_DELAY
# define TUXGO_DRIVE_DELAY 500
#endif
Maqueen bot;
Adafruit_Microbit microbit;
NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE);
void setup()
{
Serial.begin(115200);
Serial.println("init");
bot.begin();
microbit.BTLESerial.setLocalName("tuxgo");
microbit.BTLESerial.begin();
microbit.begin();
}
void loop()
{
microbit.BTLESerial.poll();
if (microbit.BTLESerial) { /* if is connected */
if (microbit.BTLESerial.available()) {
int c = microbit.BTLESerial.read();
Serial.print("recv ");
Serial.println(c);
switch (c) {
case 'H':
Serial.println("backward");
bot.setSpeed(50);
bot.spinLeft();
delay(TUXGO_SPIN_DELAY);
bot.stop();
Serial.println("F");
microbit.BTLESerial.write('F');
Serial.println("sent");
break;
case 'J':
Serial.println("backward");
bot.setSpeed(50);
bot.backward();
delay(TUXGO_DRIVE_DELAY);
bot.stop();
Serial.println("F");
microbit.BTLESerial.write('F');
Serial.println("sent");
break;
case 'K':
Serial.println("forward");
bot.setSpeed(50);
bot.forward();
delay(TUXGO_DRIVE_DELAY);
bot.stop();
Serial.println("F");
microbit.BTLESerial.write('F');
Serial.println("sent");
break;
case 'L':
Serial.println("backward");
bot.setSpeed(50);
bot.spinRight();
delay(TUXGO_SPIN_DELAY);
bot.stop();
Serial.println("F");
microbit.BTLESerial.write('F');
Serial.println("sent");
break;
case 'S':
Serial.println("sonar");
unsigned int range = sonar.ping_cm();
microbit.BTLESerial.write(range < 256 ? range : 255);
Serial.print(range);
Serial.println(" cm");
break;
}
}
}
}

36
pyproject.toml Normal file
View File

@ -0,0 +1,36 @@
[build-system]
requires = ['setuptools>=66']
build-backend = 'setuptools.build_meta'
[project]
name = 'tuxgo'
version = '0a0'
authors = [
{ name = 'Wojtek Porczyk', email = 'woju@hackerspace.pl' },
]
dependencies = [
'Flask',
'Werkzeug',
'click',
'click-default-group',
'funcparserlib',
'matplotlib',
'opencv-python',
'pygame',
'bleak',
'loguru',
# 'tomli',
]
[tool.setuptools.packges.find]
where = ['.']
include = ['tuxgo', 'tuxgo.*']
[tool.mypy]
[tool.pytest.ini_options]
testpaths = [
'tests',
]
# vim: tw=80 ts=4 sts=4 sw=4 et

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 MiB

51
tests/test_detector.py Normal file
View File

@ -0,0 +1,51 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
# SPDX-FileCopyrightText: 2023 Wojtek Porczyk <woju@hackerspace.pl>
import os
import pathlib
import cv2
import pytest
from tuxgo import (
blocks,
detector,
)
@pytest.fixture
def load_frame():
def load_frame(filename):
return cv2.imread(os.fspath(pathlib.Path(__file__).parent / filename))
return load_frame
@pytest.fixture
def detect_markers_in_frame(load_frame):
def detect_markers_in_frame(frame):
return detector.Detector().detect_markers(load_frame(frame))
return detect_markers_in_frame
def test_trivial(detect_markers_in_frame):
analyser = detector.Analyser(detect_markers_in_frame('test_trivial.jpg'))
assert list(analyser.get_programme()) == [
(blocks.Token.BEGIN,),
(blocks.Token.END,),
]
rotate_programme = [
(blocks.Token.BEGIN,),
(blocks.Token.STEP, blocks.Token.DIGIT_6),
(blocks.Token.REPEAT, blocks.Token.DIGIT_3),
(blocks.Token.TURN_RIGHT,),
(blocks.Token.STEP, blocks.Token.DIGIT_2),
(blocks.Token.PICK_UP,),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
]
@pytest.mark.parametrize('rot', [0, 45, 90])
def test_rotate(detect_markers_in_frame, rot):
analyser = detector.Analyser(detect_markers_in_frame(
f'test_rotate_{rot:02d}.jpg'))
assert list(analyser.get_programme()) == rotate_programme
# vim: tw=80 ts=4 sts=4 sw=4 et

134
tests/test_engine.py Normal file
View File

@ -0,0 +1,134 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
# SPDX-FileCopyrightText: 2023 Wojtek Porczyk <woju@hackerspace.pl>
from tuxgo import (
ast,
blocks,
engine,
parser,
)
class Engine(engine.ExecEngine):
def __init__(self, *args, **kwds):
super().__init__(*args, **kwds)
self.steps = 0
self.turns = 0
self.jumps = 0
def step(self, counter: int):
self.steps += counter
def turn_left(self):
self.turns += 1
def turn_right(self):
self.turns -= 1
def jump(self):
self.jumps += 1
def pick_up(self):
pass
def place(self, direction: ast.Direction):
pass
def activate(self):
pass
def draw(self):
pass
def detect(self, direction: ast.Direction, obj: ast.Object):
if direction == ast.Direction.IN_FRONT:
if obj == ast.Object.OBSTACLE:
return self.steps >= 10
else:
return self.steps < 10
if direction == ast.Direction.HERE:
return obj != ast.Object.EMPTY
raise NotImplementedError()
def test_step():
programme = parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.STEP, blocks.Token.DIGIT_6),
(blocks.Token.STEP, blocks.Token.DIGIT_9),
(blocks.Token.END,),
])
engine = Engine()
programme.execute(engine)
assert engine.steps == 15
def test_turns():
programme = parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.TURN_LEFT,),
(blocks.Token.TURN_LEFT,),
(blocks.Token.TURN_RIGHT,),
(blocks.Token.END,),
])
engine = Engine()
programme.execute(engine)
assert engine.turns == 1
def test_if():
programme = parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.TURN_LEFT,),
(blocks.Token.ELSE,),
(blocks.Token.TURN_RIGHT,),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
])
engine = Engine()
programme.execute(engine)
assert engine.turns == -1
def test_repeat():
programme = parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.REPEAT, blocks.Token.DIGIT_4, blocks.Token.DIGIT_2),
(blocks.Token.TURN_LEFT,),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
])
engine = Engine()
programme.execute(engine)
assert engine.turns == 42
def test_repeat_forever():
programme = parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.REPEAT, blocks.Token.FOREVER),
(blocks.Token.STEP, blocks.Token.DIGIT_1),
(blocks.Token.IF, blocks.Token.IN_FRONT, blocks.Token.OBSTACLE),
(blocks.Token.BREAK,),
(blocks.Token.END_BLOCK,),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
])
engine = Engine()
programme.execute(engine)
assert engine.steps == 10
def test_repeat_while():
programme = parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.REPEAT_WHILE, blocks.Token.IN_FRONT, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_1),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
])
engine = Engine()
programme.execute(engine)
assert engine.steps == 10
# vim: tw=80 ts=4 sts=4 sw=4 et

BIN
tests/test_params.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 MiB

101
tests/test_parser.py Normal file
View File

@ -0,0 +1,101 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
# SPDX-FileCopyrightText: 2023 Wojtek Porczyk <woju@hackerspace.pl>
import pprint
from tuxgo import (
blocks,
parser,
)
def test_parser():
parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.STEP, blocks.Token.DIGIT_6),
(blocks.Token.REPEAT, blocks.Token.DIGIT_3),
(blocks.Token.TURN_RIGHT,),
(blocks.Token.STEP, blocks.Token.DIGIT_2),
(blocks.Token.IF, blocks.Token.HERE, blocks.Token.COLLECTABLE),
(blocks.Token.PICK_UP,),
(blocks.Token.ELSE_IF, blocks.Token.IN_FRONT, blocks.Token.MARK_1),
(blocks.Token.BREAK,),
(blocks.Token.ELSE,),
(blocks.Token.CALL_FUNCTION, blocks.Token.A),
(blocks.Token.END_BLOCK,),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
])
def test_if():
parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_1),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
])
def test_if_else():
parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_1),
(blocks.Token.ELSE,),
(blocks.Token.STEP, blocks.Token.DIGIT_2),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
])
def test_if_elif():
parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_1),
(blocks.Token.ELSE_IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_2),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
])
def test_if_elif_else():
parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_1),
(blocks.Token.ELSE_IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_2),
(blocks.Token.ELSE,),
(blocks.Token.STEP, blocks.Token.DIGIT_3),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
])
def test_if_elif_elif():
pprint.pprint(parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_1),
(blocks.Token.ELSE_IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_2),
(blocks.Token.ELSE_IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_3),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
]))
def test_if_elif_elif_else():
pprint.pprint(parser.parse([
(blocks.Token.BEGIN,),
(blocks.Token.IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_1),
(blocks.Token.ELSE_IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_2),
(blocks.Token.ELSE_IF, blocks.Token.HERE, blocks.Token.EMPTY),
(blocks.Token.STEP, blocks.Token.DIGIT_3),
(blocks.Token.ELSE,),
(blocks.Token.STEP, blocks.Token.DIGIT_4),
(blocks.Token.END_BLOCK,),
(blocks.Token.END,),
]))
# vim: tw=80 ts=4 sts=4 sw=4 et

BIN
tests/test_rotate_00.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 MiB

BIN
tests/test_rotate_45.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 MiB

BIN
tests/test_rotate_90.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 MiB

BIN
tests/test_trivial.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 MiB

3
tuxgo/__init__.py Normal file
View File

@ -0,0 +1,3 @@
import importlib.resources as _importlib_resources
assets = _importlib_resources.files(__package__) / 'assets'

82
tuxgo/__main__.py Normal file
View File

@ -0,0 +1,82 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
# SPDX-FileCopyrightText: 2023 Wojtek Porczyk <woju@hackerspace.pl>
import pprint
import click
import click_default_group
import cv2
import pygame
import pygame.display
from loguru import logger
from . import (
detector as _detector,
game_bt,
bluetooth,
)
@click.group(cls=click_default_group.DefaultGroup, default='game',
default_if_no_args=True)
def cli():
pass
@cli.command('game')
@click.option('--mac', required=True)
def game(mac):
logger.debug('pygame.init()')
pygame.init()
pygame.display.set_caption('tuxgo')
screen = pygame.display.set_mode(flags=pygame.FULLSCREEN)
bot = bluetooth.BluetoothBot(mac)
game = game_bt.Game(screen, bot)
game.run()
@cli.command('debug-image')
@click.argument('inpath', type=click.Path(file_okay=True, dir_okay=False))
@click.argument('outpath', type=click.Path(file_okay=True, dir_okay=False))
def debug_image(inpath, outpath):
detector = _detector.Detector()
frame = cv2.imread(inpath)
#frame = cv2.blur(frame, (5, 5))
detections = list(detector.detect_markers(frame))
analyser = _detector.Analyser(detections)
try:
programme = list(analyser.get_programme(debug_frame=frame))
pprint.pprint(programme)
finally:
cv2.imwrite(outpath, frame)
@cli.command('debug-video')
def debug_video():
vc = cv2.VideoCapture(0)
detector = _detector.Detector()
try:
while True:
ret, frame = vc.read()
if not ret:
click.echo('frame dropped', err=True)
continue
flipped = cv2.flip(frame, 1)
for detection in detector.detect_markers(frame):
detection.debug_draw_flipped(flipped)
cv2.imshow('tuxgo-debug', flipped)
key = cv2.waitKey(1)
if key & 0xff == ord('q'):
break
elif key & 0xff == ord('f'):
cv2.imwrite('screenshot.png', flipped)
finally:
vc.release()
cv2.destroyAllWindows()
if __name__ == '__main__':
cli()

View File

@ -0,0 +1,7 @@
url_template = '{token}'
badge = [
# { token = '', image = '' },
]
# vim: ts=4 sts=4 sw=4 et

1032
tuxgo/assets/blocks.toml Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,5 @@
...
. .
..@..
. .
. .

View File

@ -0,0 +1,9 @@
.....#.#.###
......#.#.#..
........###.###
........#.#...#
....@...#.#.###
...............
...............
...............
...............

View File

@ -0,0 +1,7 @@
.....................
.#.:.###...#.#.##..#.#.
.#.:.#.....#.#...#.#.#.
.###.###.@.###.###.###.
.#.#...#...###.#.#.###.
.#.#.###...###.###.###.
.....................

View File

@ -0,0 +1,13 @@
. . .
. .
. . @... . . .
. . . . . . . .
.. .. . . . . .
. . .... . ....
.
... ?
... ...
. . .
. . . .
... ...

View File

@ -0,0 +1,5 @@
BEGIN
REPEAT FOREVER
TURN-RIGHT
END-BLOCK
END

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<path d="M 13.90,20.93 C 13.87,20.94 13.84,20.93 13.81,20.93 C 12.97,21.10 12.07,21.20 11.28,21.40 C 9.01,21.96 7.23,23.93 6.65,26.15 C 6.46,26.88 6.45,27.73 6.71,28.46" id="p3881-6-0-0" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.80;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.98,30.79 L 24.98,39.73" id="p3111-6" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.41,23.39 L 24.91,30.64 L 39.41,23.39" id="p2993-7-9-4-0" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 16.71,22.09 C 16.64,22.96 16.68,23.83 17.56,24.87 C 18.85,26.39 21.38,27.27 23.21,26.87 C 24.92,26.5 25.28,25.29 25.03,23.78" id="p4109-4" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.80;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.97,12.67 L 21.47,18.92 L 21.47,23.26 L 8.97,17.01 L 8.97,12.67 z" id="p2993-7-9-8-8-5-59" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.39,18.53 L 22.39,24.77" id="p5148-2" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 29.98,14.7 L 22.35,18.51 L 7.85,11.26" id="p2993-7-9-8-8-57-9" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-2-6" style="fill:none;stroke:#070707;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.99,31.47 C 44.31,31.47 44.61,31.56 44.87,31.72 C 45.91,32.36 45.88,34.08 44.84,35.56 C 44.28,36.36 43.69,36.98 43.02,37.35 L 36.68,40.59 C 36.41,40.79 36.12,40.93 35.84,41.06 C 34.69,41.62 33.53,41.73 32.65,41.19 C 31.08,40.21 31.1,37.61 32.68,35.37 C 33.69,33.95 35.09,33.05 36.37,32.81 L 36.37,32.78 C 36.63,32.76 43.61,31.49 43.87,31.47 C 43.89,31.47 43.91,31.47 43.93,31.47 C 43.95,31.47 43.97,31.47 43.99,31.47 L 43.99,31.47 z" id="p3881-5-4" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.81,40.3 28.85,39.47 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-6-4" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.80;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27" id="p3881-7-3-7-9-7" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05" id="p3881-7-3-7-7-7-5" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 C 38.71,33.46 40.89,32.96 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-8-6" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23,31.26 L 23,38.26 L 16.85,41.35 L 16.85,34.35 L 23,31.26 z" id="p4502-0-7" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 21.35,30.76 L 12.83,26.52" id="p5229-81" style="fill:none;stroke:#131313;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 22.58,38.5 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54" id="p4502-0-2-0-6" style="fill:none;stroke:#070707;stroke-width:0.80;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 13.4,26.48 L 13.4,33.48 L 7.24,36.57 L 7.24,29.57 L 13.4,26.48 L 13.4,26.48 z" id="p4502-0-1-2" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.98,33.72 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76" id="p4502-0-2-0-9-1" style="fill:none;stroke:#070707;stroke-width:0.80;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 13.51,16.88 L 10.66,15.41" id="p5093-4" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 19.66,19.99 L 16.8,18.51" id="p5093-1-8" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 29.98,18.67 L 39.45,23.40 L 39.45,29.07" id="p3294" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.32,38.63 L 24.88,39.86 L 27.24,38.72" id="p3296" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.77,33.80 L 15.51,35.13" id="p3298" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.50,26.61 L 10.50,23.30 L 14.66,21.32" id="p3300" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 26.01,23.11 L 29.42,24.82 L 35.85,21.60" id="p3305" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<path d="M 38.34,31.37 C 39.53,30.78 40.64,30.19 41.31,29.84 C 42.58,29.52 43.07,27.91 42.43,26.25 C 42.10,25.35 41.70,24.62 41.12,24.09 L 35.53,19.31 C 35.30,19.05 35.09,18.83 34.84,18.62 C 33.95,17.89 32.92,17.50 31.96,17.59 C 31.83,17.60 31.72,17.61 31.59,17.65 C 30.32,18.20 29.57,18.56 28.93,18.87" id="p3881-5-2-4-3-0-5" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.80;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 11.21,22.71 L 6.43,20.31 C 6.38,20.34 5.28,20.99 5.21,21.03 L 5.21,28.03 L 8.09,29.46" id="p4502-0-2-5" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.80;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 5.21,21.04 L 5.21,21.04 L 9.81,23.30" id="p4502-0-16" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.80;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23.77,31 L 23.77,39.94" id="p3111-7" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 28.73,21.96 L 20.17,26.21 L 26.64,29.46 L 35.2,25.18 L 28.73,21.96 L 28.73,21.96 z" id="p2993-7-9-7-2" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.34,23.6 L 23.84,30.85 L 9.34,23.6" id="p2993-7-9-4-2" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.77,29.06 L 20.81,31.58 L 20.81,34.01" id="p4705-2" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.37,39.34 L 23.84,40.09 L 38.34,32.84 C 38.34,29.81 38.34,26.08 38.34,23.59 L 26.06,17.43" id="p2734" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.90,21.31 L 9.34,23.59 C 9.34,25.43 9.34,27.09 9.34,28.81" id="p2993-7-3-0" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 16.71,22.09 C 16.92,22.81 17.46,23.36 18.5,23.59 C 20.34,23.99 22.83,23.08 24.12,21.56 C 25.12,20.38 25.08,19.42 24.96,18.43 C 24.96,18.27 24.97,18.15 24.96,18" id="p4109-9" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.80;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 16.07,15.82 L 16.07,22.05" id="p5148-5" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.49,11.99 L 16.11,15.8 L 30.61,8.55" id="p2993-7-9-8-8-57-8" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 C 8.49,14.66 8.49,17.26 8.49,18.61 L 16.11,22.42 L 30.61,15.17 C 30.61,12.92 30.61,10.22 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-2-7" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,42.41 C 15.8,42.49 16.13,42.49 16.45,42.41 C 17.72,42.1 18.21,40.48 17.58,38.82 C 17.24,37.92 16.82,37.17 16.24,36.64 L 10.68,31.87 C 10.46,31.62 10.2,31.41 9.95,31.2 C 8.93,30.36 7.76,29.94 6.7,30.21 C 4.78,30.69 4.01,33.12 4.97,35.64 C 5.58,37.25 6.75,38.48 8,39.05 L 7.99,39.08 C 8.25,39.17 15.08,42.28 15.34,42.37 C 15.36,42.38 15.38,42.38 15.4,42.39 C 15.42,42.4 15.45,42.4 15.47,42.41 L 15.47,42.41 z" id="p3881-5-2-4" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.18,27.63 C 12.05,27.64 11.91,27.68 11.78,27.71 C 8.57,29.12 8.41,29.32 6.04,30.47 C 5.84,30.58 5.65,30.73 5.49,30.9 C 5.16,31.23 4.91,31.66 4.75,32.15 C 4.43,33.13 4.47,34.37 4.95,35.63 C 5.56,37.24 6.73,38.49 7.99,39.06 L 7.99,39.09 C 8.25,39.18 15.07,42.28 15.33,42.37 C 15.35,42.38 15.37,42.37 15.39,42.37 C 15.42,42.38 15.44,42.4 15.46,42.41 C 15.79,42.49 16.12,42.49 16.44,42.41 C 18.37,41.59 20.46,40.44 21.51,39.9 C 22.78,39.58 23.28,37.98 22.64,36.31 C 22.3,35.42 21.9,34.67 21.31,34.14 L 15.73,29.36 C 15.51,29.1 15.28,28.89 15.03,28.68 C 14.14,27.95 13.14,27.54 12.18,27.63 z" id="p3881-5-2-4-3-0" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.80;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.12,31.75 C 8.09,31.76 8.06,31.76 8.03,31.78 C 7.58,31.97 7.28,32.12 6.78,32.4 C 5.95,32.91 5.98,34.26 6.81,35.43 C 7.63,36.6 8.95,37.13 9.78,36.62 C 10.31,36.29 10.6,36.25 11,36 C 11.63,35.6 11.78,34.71 11.43,33.78" id="p3881-7-2-2-4" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.59,35.68 C 13.52,35.67 13.44,35.65 13.37,35.65 C 13.2,35.65 13.04,35.69 12.9,35.78 C 12.64,35.9 12.44,36.05 12.21,36.18 C 11.65,36.53 11.65,37.47 12.21,38.28 C 12.78,39.08 13.71,39.44 14.28,39.09 C 14.53,39.01 14.71,38.82 14.93,38.68 C 15.38,38.4 15.48,37.75 15.21,37.09" id="p3881-7-2-6-3-8" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.53,41.44 C 14.82,41.55 15.12,41.6 15.42,41.59 C 16.59,41.55 17.17,40.49 16.72,39.23 C 16.49,38.56 16.17,37.98 15.68,37.53 L 11,33.4 C 10.82,33.2 10.6,33.01 10.39,32.83 C 9.53,32.1 8.5,31.64 7.51,31.67 C 5.73,31.74 4.85,33.33 5.52,35.22 C 5.95,36.43 6.92,37.45 8.01,38.04 L 8,38.05 C 8.23,38.15 14.19,41.3 14.41,41.4 C 14.43,41.41 14.45,41.41 14.47,41.42 C 14.49,41.43 14.51,41.43 14.53,41.44 L 14.53,41.44 z" id="p3881-5-2-4-6-5" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070707;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 9.1 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="g2482">
<path d="M 29.73,20.24 C 29.05,20.27 28.47,20.71 27.85,20.96 C 26.81,21.41 25.94,21.88 24.94,22.32 C 24.38,22.59 23.78,22.83 23.23,23.1 C 22.29,23.78 22.42,25.14 22.85,26.07 C 23.36,27.32 24.34,28.3 25.51,28.88 C 27.54,29.84 29.63,30.89 31.6,32.01 C 32.72,32.69 34.2,33.25 35.44,32.57 C 37.32,31.64 39.29,30.82 41.13,29.91 C 42.26,29.16 42.42,27.59 42.1,26.38 C 41.52,24.16 39.75,22.17 37.48,21.61 C 36.69,21.41 35.78,21.31 34.94,21.14 C 33.21,20.85 31.47,20.48 29.73,20.24 L 29.73,20.24 z" id="p3881-2" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.53,24.13 L 36,21.55" id="p4082-6" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 40.97,24.04 L 34.84,26.95 C 34.84,26.95 32.18,29.11 29.81,31.04 C 30.41,31.36 31.02,31.68 31.59,32.01 C 32.71,32.69 34.19,33.25 35.44,32.57 C 36.25,32.19 37.07,31.81 37.88,31.41 C 37.91,31.4 37.94,31.39 37.97,31.38 C 38.05,31.34 38.14,31.3 38.22,31.26 C 38.26,31.24 38.31,31.25 38.34,31.23 C 39.27,30.8 40.21,30.36 41.13,29.91 C 42.25,29.16 42.41,27.59 42.09,26.38 C 41.88,25.55 41.49,24.75 40.97,24.04 L 40.97,24.04 z" id="p4122-0" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 42.13,26.48 L 30.66,31.51 C 30.97,31.68 31.29,31.84 31.59,32.01 C 32.71,32.69 34.19,33.25 35.44,32.57 C 36.25,32.19 37.07,31.81 37.88,31.41 C 37.91,31.4 37.94,31.39 37.97,31.38 C 38.05,31.34 38.14,31.3 38.22,31.26 C 38.26,31.24 38.31,31.25 38.34,31.23 C 39.27,30.8 40.21,30.36 41.13,29.91 C 42.22,29.18 42.41,27.67 42.13,26.48 L 42.13,26.48 z" id="p4239-2" style="fill:#b77711;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 33.66,25.23 L 39.45,22.63" id="p4080-7" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.11,28.23 L 41.67,25.6" id="p4078-2-1" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 35.88,27.85 L 41.44,25.23" id="p4078-5" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.27,31.04 L 42,28.39" id="p4076-6-9" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.25,30.59 L 41.97,27.93" id="p4076-7" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 29.73,20.24 C 29.05,20.27 28.47,20.71 27.85,20.96 C 26.81,21.41 25.94,21.88 24.94,22.32 C 24.38,22.59 23.78,22.83 23.23,23.1 C 22.29,23.78 22.42,25.14 22.85,26.07 C 23.36,27.32 24.34,28.3 25.51,28.88 C 27.54,29.84 29.63,30.89 31.6,32.01 C 32.72,32.69 34.2,33.25 35.44,32.57 C 37.36,31.64 39.31,30.8 41.13,29.91 C 42.26,29.16 42.42,27.59 42.1,26.38 C 41.52,24.16 39.75,22.17 37.48,21.61 C 36.69,21.41 35.78,21.31 34.94,21.14 C 33.21,20.85 31.47,20.48 29.73,20.24 L 29.73,20.24 z" id="p3881-6-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g4448">
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7" style="fill:#0000ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 14.27,21.14 L 9.34,23.61 L 9.34,32.86 L 23.77,40.07 L 23.77,28.95 L 14.27,21.14 L 14.27,21.14 z" id="p4502" style="fill:#000094;fill-opacity:1;stroke:none"/>
<path d="M 23.84,30.85 L 9.34,23.6 L 23.84,16.35 L 38.34,23.6 L 23.84,30.85 z" id="p2993-7-9" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.77,31 L 23.77,39.94" id="p3111" style="fill:none;stroke:#2559b9;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 21.43,17.56 L 12.87,21.81 L 19.34,25.06 L 27.9,20.78 L 21.43,17.56 z" id="p2993-7-9-7" style="fill:none;stroke:#21365d;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 38.34,23.6 L 23.84,30.85 L 9.34,23.6" id="p2993-7-9-4" style="fill:none;stroke:#859eef;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 11.81,29.81 L 11.81,26.87 L 16.85,29.38 L 16.85,31.81" id="p4705" style="fill:none;stroke:#2f46ab;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-3" style="fill:none;stroke:#00003c;stroke-opacity:1;display:inline"/>
<path d="M 29.46,18.54 C 27.73,18.46 25.65,19.33 24.52,20.66 C 23.52,21.84 23.33,22.94 23.77,23.69 C 23.42,25.36 23.71,26.7 25.52,27.1 C 27.36,27.5 29.89,26.59 31.18,25.07 C 32.18,23.89 32.13,22.95 32.02,21.96 C 31.96,20.13 32,19.03 30.18,18.63 C 29.95,18.58 29.71,18.55 29.46,18.54 L 29.46,18.54 z" id="p4109" style="fill:#00003c;fill-opacity:1;fill-rule:nonzero;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 C 18.77,17.59 18.77,20.19 18.77,21.54 L 26.4,25.35 L 40.9,18.1 C 40.9,15.85 40.9,13.14 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8" style="fill:#0000ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 39.77,12.88 L 27.27,19.13 L 27.27,23.47 L 39.77,17.22 L 39.77,12.88 z" id="p2993-7-9-8-8-5" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 22.06,13.25 L 18.77,14.91 L 18.77,21.54 L 26.37,25.35 L 26.37,17.29 L 26.46,16.97 L 22.06,13.25 z" id="p4170" style="fill:#000094;fill-opacity:1;stroke:none"/>
<path d="M 26.36,18.74 L 26.36,24.98" id="p5148" style="fill:none;stroke:#2559b9;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 L 26.4,18.72 L 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8-8" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 18.77,14.91 L 26.4,18.72 L 40.9,11.47" id="p2993-7-9-8-8-57" style="fill:none;stroke:#859eef;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 C 18.77,17.59 18.77,20.19 18.77,21.54 L 26.4,25.35 L 40.9,18.1 C 40.9,15.85 40.9,13.14 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8-2" style="fill:none;stroke:#00003c;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.77,12.88 L 35.49,15.04 L 39.77,17.16 L 39.77,12.88 z" id="p2993-7-9-8-8-5-5" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 27.28,31.43 L 35.79,27.19" id="p5229-8" style="fill:none;stroke:#5353ff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 26.96,30.75 C 26.92,30.78 25.82,31.42 25.75,31.47 L 25.75,38.47 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.84 L 26.96,30.75 z" id="p4502-0-2" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 33.12,33.94 L 25.75,38.19 L 25.75,38.47 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.94 z" id="p4925" style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 25.75,31.47 L 25.75,38.47 L 31.9,41.56 L 31.9,34.56 L 25.75,31.47 z" id="p4502-0" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 27.4,30.97 L 35.91,26.73" id="p5229" style="fill:none;stroke:#0f0e3a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 26.17,38.71 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.84 L 26.96,30.75" id="p4502-0-2-0" style="fill:none;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.57,25.97 C 36.52,26 35.42,26.64 35.35,26.69 L 35.35,33.69 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.06 L 36.57,25.97 z" id="p4502-0-2-4" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 42.72,29.16 L 35.35,33.41 L 35.35,33.69 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.16 z" id="p4925-0" style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.35,26.69 L 35.35,33.69 L 41.5,36.78 L 41.5,29.78 L 35.35,26.69 L 35.35,26.69 z" id="p4502-0-1" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 35.77,33.93 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.06 L 36.57,25.97" id="p4502-0-2-0-9" style="fill:none;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 39.28,13.12 L 27.28,19.12 L 27.28,22.9 L 39.28,16.9 L 39.28,13.12 z" id="p2993-7-9-8-8-5-9" style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline"/>
</g>
<g id="g2514">
<path d="M 10.31,29.11 C 9.63,29.14 9.06,29.58 8.44,29.82 C 7.4,30.28 6.52,30.75 5.53,31.2 C 4.97,31.47 4.37,31.71 3.81,31.98 C 2.87,32.66 3.01,34.01 3.44,34.95 C 3.94,36.2 4.93,37.18 6.09,37.76 C 8.13,38.72 10.22,39.77 12.19,40.89 C 13.3,41.57 14.78,42.13 16.03,41.45 C 17.91,40.52 19.88,39.7 21.72,38.79 C 22.84,38.04 23.01,36.47 22.69,35.26 C 22.1,33.04 20.34,31.04 18.06,30.48 C 17.27,30.28 16.37,30.18 15.53,30.01 C 13.79,29.72 12.05,29.35 10.31,29.11 L 10.31,29.11 z" id="p3881" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.8,32.45 L 13.57,29.72" id="p4084" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 5.38,31.96 L 11.24,29.23" id="p4084-9" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 11.12,33.01 L 16.59,30.42" id="p4082" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 21.56,32.92 L 15.43,35.82 C 15.43,35.82 12.77,37.99 10.4,39.92 C 11,40.24 11.6,40.56 12.18,40.89 C 13.3,41.57 14.78,42.13 16.02,41.45 C 16.83,41.07 17.65,40.69 18.46,40.29 C 18.49,40.28 18.52,40.27 18.56,40.26 C 18.64,40.22 18.72,40.18 18.81,40.14 C 18.85,40.12 18.89,40.13 18.93,40.11 C 19.85,39.68 20.79,39.24 21.71,38.79 C 22.83,38.04 23,36.47 22.68,35.26 C 22.46,34.43 22.07,33.63 21.56,32.92 z" id="p4122" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.71,35.36 L 11.24,40.39 C 11.56,40.56 11.88,40.72 12.18,40.89 C 13.3,41.57 14.78,42.13 16.02,41.45 C 16.83,41.07 17.65,40.69 18.46,40.29 C 18.49,40.28 18.52,40.27 18.56,40.26 C 18.64,40.22 18.72,40.18 18.81,40.14 C 18.85,40.12 18.89,40.13 18.93,40.11 C 19.85,39.68 20.79,39.24 21.71,38.79 C 22.81,38.06 23,36.55 22.71,35.36 z" id="p4239" style="fill:#b77711;fill-opacity:1;stroke:none"/>
<path d="M 14.25,34.11 L 20.04,31.51" id="p4080" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 16.7,37.11 L 22.26,34.48" id="p4078-2" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.47,36.73 L 22.03,34.11" id="p4078" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 16.86,39.92 L 22.59,37.27" id="p4076-6" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.83,39.47 L 22.56,36.81" id="p4076" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 4.75,31.68 C 4.43,31.68 4.14,31.77 3.88,31.93 C 2.84,32.58 2.87,34.3 3.91,35.77 C 4.47,36.57 5.06,37.19 5.73,37.56 L 12.07,40.81 C 12.34,41 12.63,41.14 12.91,41.27 C 14.06,41.83 15.22,41.94 16.1,41.4 C 17.67,40.42 17.65,37.82 16.07,35.59 C 15.06,34.17 13.66,33.26 12.38,33.02 L 12.38,32.99 C 12.12,32.97 5.14,31.7 4.88,31.68 C 4.86,31.68 4.84,31.68 4.82,31.68 C 4.8,31.68 4.77,31.68 4.75,31.68 L 4.75,31.68 z" id="p3881-5" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 5.64,32.71 C 5.36,32.7 5.11,32.74 4.87,32.84 C 3.95,33.25 3.87,34.5 4.69,35.63 C 5.12,36.24 5.59,36.73 6.15,37.04 L 11.4,39.77 C 11.63,39.93 11.87,40.05 12.1,40.16 C 13.06,40.64 14.05,40.78 14.83,40.44 C 16.24,39.83 16.36,37.94 15.13,36.23 C 14.35,35.14 13.2,34.4 12.11,34.15 L 12.11,34.13 C 11.89,34.1 5.97,32.76 5.75,32.72 C 5.73,32.72 5.71,32.72 5.69,32.72 C 5.68,32.72 5.66,32.72 5.64,32.71 L 5.64,32.71 z" id="p3881-5-7" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 6.41,32.89 C 6.43,33.34 6.62,33.81 6.97,34.29 C 7.41,34.9 7.88,35.39 8.44,35.7 L 13.69,38.45 C 13.91,38.61 14.14,38.71 14.37,38.82 C 14.87,39.07 15.39,39.25 15.87,39.29 C 16.15,38.44 15.89,37.3 15.12,36.23 C 14.34,35.14 13.21,34.39 12.12,34.14 C 11.93,34.11 7.55,33.13 6.41,32.89 L 6.41,32.89 z" id="p3881-5-7-4" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.31,29.11 C 9.63,29.14 9.06,29.58 8.44,29.82 C 7.4,30.28 6.52,30.75 5.53,31.2 C 4.97,31.47 4.37,31.71 3.81,31.98 C 2.87,32.66 3.01,34.01 3.44,34.95 C 3.94,36.2 4.93,37.18 6.09,37.76 C 8.13,38.72 10.22,39.77 12.19,40.89 C 13.3,41.57 14.78,42.13 16.03,41.45 C 17.94,40.52 19.9,39.68 21.72,38.79 C 22.84,38.04 23.01,36.47 22.69,35.26 C 22.1,33.04 20.34,31.04 18.06,30.48 C 17.27,30.28 16.37,30.18 15.53,30.01 C 13.79,29.72 12.05,29.35 10.31,29.11 L 10.31,29.11 z" id="p3881-6" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,33.11 C 7.2,33.2 6.91,33.35 6.65,33.45 C 6.06,33.81 6.06,34.78 6.65,35.61 C 7.24,36.44 8.19,36.81 8.77,36.45 C 9.07,36.32 9.3,36.21 9.56,36.11 C 10.14,35.74 10.14,34.78 9.56,33.95 C 9.42,33.76 9.25,33.62 9.09,33.48 C 8.53,33.36 7.99,33.23 7.43,33.11 L 7.43,33.11 z" id="p3881-7-3-7" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.75,36.15 C 8.18,36.51 7.25,36.14 6.68,35.34 C 6.10,34.53 6.10,33.59 6.66,33.23 C 7.23,32.88 8.16,33.24 8.74,34.05 C 9.31,34.85 9.32,35.79 8.75,36.15 L 8.75,36.15 z" id="p3881-7-3" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.99,34.45 C 12.9,34.48 12.79,34.49 12.71,34.54 C 12.4,34.67 12.03,34.88 11.68,35.01 C 10.89,35.5 10.89,36.8 11.68,37.92 C 12.47,39.04 13.76,39.57 14.56,39.07 C 14.96,38.9 15.24,38.74 15.59,38.61 C 15.73,38.52 15.87,38.4 15.96,38.26 C 15.89,37.62 15.6,36.91 15.12,36.23 C 14.55,35.43 13.79,34.82 12.99,34.45 z" id="p3881-7-3-7-7" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.41,38.93 C 13.63,39.40 12.37,38.88 11.59,37.76 C 10.81,36.64 10.82,35.34 11.60,34.87 C 12.38,34.40 13.65,34.92 14.42,36.04 C 15.20,37.16 15.19,38.46 14.41,38.93 L 14.41,38.93 z" id="p3881-7-3-8" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,33.11 C 7.2,33.2 6.91,33.35 6.65,33.45 C 6.06,33.81 6.06,34.78 6.65,35.61 C 7.24,36.44 8.19,36.81 8.77,36.45 C 9.07,36.32 9.3,36.21 9.56,36.11 C 10.14,35.74 10.14,34.78 9.56,33.95 C 9.42,33.76 9.25,33.62 9.09,33.48" id="p3881-7-3-7-9" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.99,34.45 C 12.9,34.48 12.79,34.49 12.71,34.54 C 12.4,34.67 12.03,34.88 11.68,35.01 C 10.89,35.5 10.89,36.8 11.68,37.92 C 12.47,39.04 13.76,39.57 14.56,39.07 C 14.96,38.9 15.24,38.74 15.59,38.61 C 15.73,38.52 15.87,38.4 15.96,38.26" id="p3881-7-3-7-7-7" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 5.64,32.71 C 5.36,32.7 5.11,32.74 4.87,32.84 C 3.95,33.25 3.87,34.5 4.69,35.63 C 5.12,36.24 5.59,36.73 6.15,37.04 L 11.4,39.77 C 11.63,39.93 11.87,40.05 12.1,40.16 C 13.06,40.64 14.05,40.78 14.83,40.44 C 16.24,39.83 16.36,37.94 15.13,36.23 C 14.35,35.14 13.2,34.4 12.11,34.15 C 10.04,33.67 7.86,33.17 5.75,32.72 C 5.73,32.72 5.71,32.72 5.69,32.72 C 5.68,32.72 5.66,32.72 5.64,32.71 L 5.64,32.71 z" id="p3881-5-7-8" style="fill:none;stroke:#2c1b06;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.30,35.71 C 8.00,35.91 7.49,35.71 7.17,35.25 C 6.86,34.79 6.85,34.25 7.16,34.04 C 7.47,33.84 7.97,34.05 8.29,34.51 C 8.61,34.97 8.61,35.50 8.30,35.71 L 8.30,35.71 z" id="p3881-7-3-1" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,34.04 C 7.28,34.3 7.32,34.7 7.59,35.07 C 7.83,35.42 8.16,35.63 8.46,35.64 C 8.47,35.64 8.48,35.64 8.49,35.64 C 8.63,35.38 8.56,34.94 8.31,34.57 C 8.07,34.24 7.72,34.06 7.43,34.04 L 7.43,34.04 z" id="p3881-7-3-1-6" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 39.28,14.47 L 27.28,20.53 L 27.28,21.62 L 39.28,15.56 L 39.28,14.47 z" id="p5068" style="fill:#900000;fill-opacity:1;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.24,17.1 L 38.09,15.62" id="p5093" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 29.09,20.2 L 31.95,18.73" id="p5093-1" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline" width="960" height="960">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2458">
<path d="M 19.03,20.03 C 19.71,20.06 20.29,20.5 20.91,20.75 C 21.95,21.2 22.82,21.67 23.82,22.11 C 24.38,22.38 24.98,22.62 25.53,22.89 C 26.47,23.57 26.34,24.93 25.91,25.86 C 25.4,27.11 24.42,28.09 23.25,28.67 C 21.22,29.63 19.13,30.68 17.16,31.8 C 16.04,32.48 14.56,33.04 13.32,32.36 C 11.44,31.43 9.47,30.61 7.63,29.7 C 6.5,28.95 6.34,27.38 6.66,26.17 C 7.24,23.95 9.01,21.96 11.28,21.4 C 12.07,21.2 12.98,21.1 13.82,20.93 C 15.55,20.64 17.29,20.27 19.03,20.03 L 19.03,20.03 z" id="p3881-2-7" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 18.23,23.92 L 12.76,21.34" id="p4082-6-4" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 7.79,23.83 L 13.92,26.74 C 13.92,26.74 16.58,28.9 18.95,30.83 C 18.35,31.15 17.74,31.47 17.17,31.8 C 16.05,32.48 14.57,33.04 13.32,32.36 C 12.51,31.98 11.69,31.6 10.88,31.2 C 10.85,31.19 10.82,31.18 10.79,31.17 C 10.71,31.13 10.62,31.09 10.54,31.05 C 10.5,31.03 10.45,31.04 10.42,31.02 C 9.49,30.59 8.55,30.15 7.63,29.7 C 6.51,28.95 6.35,27.38 6.67,26.17 C 6.88,25.34 7.27,24.54 7.79,23.83 L 7.79,23.83 z" id="p4122-0-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 6.63,26.27 L 18.1,31.3 C 17.79,31.47 17.47,31.63 17.17,31.8 C 16.05,32.48 14.57,33.04 13.32,32.36 C 12.51,31.98 11.69,31.6 10.88,31.2 C 10.85,31.19 10.82,31.18 10.79,31.17 C 10.71,31.13 10.62,31.09 10.54,31.05 C 10.5,31.03 10.45,31.04 10.42,31.02 C 9.49,30.59 8.55,30.15 7.63,29.7 C 6.54,28.97 6.35,27.46 6.63,26.27 L 6.63,26.27 z" id="p4239-2-9" style="fill:#b77711;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 15.1,25.02 L 9.31,22.42" id="p4080-7-3" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.65,28.02 L 7.09,25.39" id="p4078-2-1-7" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.88,27.64 L 7.32,25.02" id="p4078-5-9" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.49,30.83 L 6.76,28.18" id="p4076-6-9-2" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.51,30.38 L 6.79,27.72" id="p4076-7-4" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 19.03,20.03 C 19.71,20.06 20.29,20.5 20.91,20.75 C 21.95,21.2 22.82,21.67 23.82,22.11 C 24.38,22.38 24.98,22.62 25.53,22.89 C 26.47,23.57 26.34,24.93 25.91,25.86 C 25.4,27.11 24.42,28.09 23.25,28.67 C 21.22,29.63 19.13,30.68 17.16,31.8 C 16.04,32.48 14.56,33.04 13.32,32.36 C 11.4,31.43 9.45,30.59 7.63,29.7 C 6.5,28.95 6.34,27.38 6.66,26.17 C 7.24,23.95 9.01,21.96 11.28,21.4 C 12.07,21.2 12.98,21.1 13.82,20.93 C 15.55,20.64 17.29,20.27 19.03,20.03 L 19.03,20.03 z" id="p3881-6-0-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 24.91,16.14 L 39.41,23.39 C 39.41,26.66 39.41,29.66 39.41,32.64 L 24.91,39.89 L 10.41,32.64 C 10.41,29.61 10.41,25.88 10.41,23.39 L 24.91,16.14 z" id="p2993-7-32" style="fill:#0000ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 34.47,20.93 L 39.41,23.39 L 39.41,32.64 L 24.97,39.86 L 24.97,28.74 L 34.47,20.93 L 34.47,20.93 z" id="p4502-8" style="fill:#000094;fill-opacity:1;stroke:none"/>
<path d="M 24.91,30.64 L 39.41,23.39 L 24.91,16.14 L 10.41,23.39 L 24.91,30.64 z" id="p2993-7-9-49" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 24.98,30.79 L 24.98,39.73" id="p3111-6" style="fill:none;stroke:#2559b9;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.32,17.35 L 35.88,21.6 L 29.41,24.85 L 20.85,20.57 L 27.32,17.35 z" id="p2993-7-9-7-0" style="fill:none;stroke:#21365d;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 10.41,23.39 L 24.91,30.64 L 39.41,23.39" id="p2993-7-9-4-0" style="fill:none;stroke:#859eef;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 36.94,29.6 L 36.94,26.65 L 31.9,29.17 L 31.9,31.6" id="p4705-4" style="fill:none;stroke:#2f46ab;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24.91,16.14 L 39.41,23.39 C 39.41,26.66 39.41,29.66 39.41,32.64 L 24.91,39.89 L 10.41,32.64 C 10.41,29.61 10.41,25.88 10.41,23.39 L 24.91,16.14 z" id="p2993-7-3-6" style="fill:none;stroke:#00003c;stroke-opacity:1;display:inline"/>
<path d="M 19.29,18.32 C 21.02,18.25 23.09,19.12 24.22,20.45 C 25.22,21.63 25.42,22.73 24.98,23.48 C 25.33,25.14 25.04,26.49 23.22,26.89 C 21.39,27.29 18.86,26.38 17.57,24.86 C 16.57,23.68 16.62,22.73 16.73,21.74 C 16.79,19.92 16.75,18.81 18.57,18.42 C 18.8,18.37 19.04,18.33 19.29,18.32 L 19.29,18.32 z" id="p4109-4" style="fill:#00003c;fill-opacity:1;fill-rule:nonzero;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-29" style="fill:#0000ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 8.97,12.67 L 21.47,18.92 L 21.47,23.26 L 8.97,17.01 L 8.97,12.67 z" id="p2993-7-9-8-8-5-59" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 26.69,13.04 L 29.97,14.7 L 29.97,21.32 L 22.38,25.14 L 22.38,17.07 L 22.29,16.76 L 26.69,13.04 z" id="p4170-7" style="fill:#000094;fill-opacity:1;stroke:none"/>
<path d="M 22.39,18.53 L 22.39,24.77" id="p5148-2" style="fill:none;stroke:#2559b9;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.48,7.45 L 29.98,14.7 L 22.35,18.51 L 7.85,11.26 L 15.48,7.45 z" id="p2993-7-9-8-8-51" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 29.98,14.7 L 22.35,18.51 L 7.85,11.26" id="p2993-7-9-8-8-57-9" style="fill:none;stroke:#859eef;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-2-6" style="fill:none;stroke:#00003c;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.97,12.67 L 13.26,14.82 L 8.97,16.95 L 8.97,12.67 z" id="p2993-7-9-8-8-5-5-0" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 21.47,31.22 L 12.96,26.98" id="p5229-8-1" style="fill:none;stroke:#5353ff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 21.78,30.54 C 21.83,30.56 22.93,31.21 23,31.26 L 23,38.26 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54 z" id="p4502-0-2-8" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 15.63,33.72 L 23,37.97 L 23,38.26 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.72 z" id="p4925-8" style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23,31.26 L 23,38.26 L 16.85,41.35 L 16.85,34.35 L 23,31.26 z" id="p4502-0-7" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 21.35,30.76 L 12.83,26.52" id="p5229-81" style="fill:none;stroke:#0f0e3a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 22.58,38.5 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54" id="p4502-0-2-0-6" style="fill:none;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.18,25.76 C 12.23,25.78 13.33,26.43 13.4,26.48 L 13.4,33.48 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76 z" id="p4502-0-2-4-0" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 6.03,28.94 L 13.4,33.19 L 13.4,33.48 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.94 z" id="p4925-0-0" style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.4,26.48 L 13.4,33.48 L 7.24,36.57 L 7.24,29.57 L 13.4,26.48 L 13.4,26.48 z" id="p4502-0-1-2" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 12.98,33.72 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76" id="p4502-0-2-0-9-1" style="fill:none;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 9.47,12.91 L 21.47,18.91 L 21.47,22.69 L 9.47,16.69 L 9.47,12.91 z" id="p2993-7-9-8-8-5-9-2" style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 9.47,14.26 L 21.47,20.32 L 21.47,21.41 L 9.47,15.35 L 9.47,14.26 z" id="p5068-5" style="fill:#900000;fill-opacity:1;stroke:none;marker:none;visibility:visible"/>
<path d="M 13.51,16.88 L 10.66,15.41" id="p5093-4" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 19.66,19.99 L 16.8,18.51" id="p5093-1-8" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<g id="g2493">
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.84,40.31 28.87,39.49 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-3" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 40.95,32.24 L 35.18,29.51" id="p4084-7" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 43.36,31.75 L 37.51,29.02" id="p4084-9-0" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 37.63,32.8 L 32.16,30.21" id="p4082-64" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.19,32.71 L 33.32,35.61 C 33.32,35.61 35.98,37.77 38.35,39.71 C 37.75,40.02 37.15,40.35 36.57,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 31.92,40.86 31.1,40.47 30.29,40.08 C 30.26,40.07 30.22,40.06 30.19,40.05 C 30.11,40.01 30.03,39.97 29.94,39.93 C 29.9,39.91 29.86,39.92 29.82,39.89 C 28.9,39.46 27.95,39.03 27.04,38.58 C 25.91,37.82 25.75,36.26 26.07,35.05 C 26.29,34.22 26.68,33.41 27.19,32.71 z" id="p4122-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 26.04,35.14 L 37.51,40.18 C 37.19,40.34 36.87,40.5 36.57,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 31.92,40.86 31.1,40.47 30.29,40.08 C 30.26,40.07 30.22,40.06 30.19,40.05 C 30.11,40.01 30.03,39.97 29.94,39.93 C 29.9,39.91 29.86,39.92 29.82,39.89 C 28.9,39.46 27.95,39.03 27.04,38.58 C 25.94,37.84 25.75,36.34 26.04,35.14 z" id="p4239-0" style="fill:#b77711;fill-opacity:1;stroke:none"/>
<path d="M 34.5,33.9 L 28.71,31.3" id="p4080-1" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.05,36.89 L 26.49,34.27" id="p4078-2-15" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 32.28,36.52 L 26.72,33.9" id="p4078-3" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 31.89,39.71 L 26.16,37.05" id="p4076-6-1" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.91,39.26 L 26.19,36.6" id="p4076-0" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 43.99,31.47 C 44.31,31.47 44.61,31.56 44.87,31.72 C 45.91,32.36 45.88,34.08 44.84,35.56 C 44.28,36.36 43.69,36.98 43.02,37.35 L 36.68,40.59 C 36.41,40.79 36.12,40.93 35.84,41.06 C 34.69,41.62 33.53,41.73 32.65,41.19 C 31.08,40.21 31.1,37.61 32.68,35.37 C 33.69,33.95 35.09,33.05 36.37,32.81 L 36.37,32.78 C 36.63,32.76 43.61,31.49 43.87,31.47 C 43.89,31.47 43.91,31.47 43.93,31.47 C 43.95,31.47 43.97,31.47 43.99,31.47 L 43.99,31.47 z" id="p3881-5-4" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 L 36.64,33.91 C 36.86,33.88 42.78,32.54 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-7" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 42.34,32.68 C 42.31,33.12 42.13,33.6 41.78,34.08 C 41.34,34.69 40.87,35.18 40.31,35.49 L 35.06,38.24 C 34.84,38.39 34.61,38.5 34.37,38.61 C 33.88,38.86 33.36,39.04 32.87,39.08 C 32.6,38.23 32.85,37.09 33.62,36.02 C 34.41,34.93 35.54,34.18 36.62,33.93 C 36.82,33.9 41.2,32.92 42.34,32.68 L 42.34,32.68 z" id="p3881-5-7-4-0" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.81,40.3 28.85,39.47 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-6-4" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27 C 40.22,33.14 40.76,33.02 41.32,32.89 L 41.32,32.89 z" id="p3881-7-3-7-3" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.31,33.10 C 40.85,33.19 40.35,33.54 40,34.04 C 39.42,34.85 39.43,35.78 40,36.14 C 40.56,36.49 41.48,36.13 42.06,35.32 C 42.63,34.52 42.66,33.58 42.09,33.23 C 41.88,33.10 41.58,33.05 41.31,33.10 z" id="p3881-7-3-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05 C 32.85,37.41 33.14,36.7 33.63,36.02 C 34.2,35.22 34.96,34.61 35.76,34.24 z" id="p3881-7-3-7-7-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.46,34.5 C 35.74,34.49 34.89,35.00 34.31,35.84 C 33.53,36.96 33.56,38.24 34.34,38.71 C 35.12,39.19 36.38,38.68 37.15,37.56 C 37.93,36.44 37.93,35.13 37.15,34.65 C 36.96,34.53 36.70,34.50 36.46,34.5 z" id="p3881-7-3-8-5" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27" id="p3881-7-3-7-9-7" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05" id="p3881-7-3-7-7-7-5" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 C 38.71,33.46 40.89,32.96 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-8-6" style="fill:none;stroke:#2c1b06;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.31,33.75 C 41.02,33.74 40.70,33.96 40.46,34.31 C 40.15,34.77 40.12,35.29 40.43,35.5 C 40.74,35.70 41.24,35.49 41.56,35.03 C 41.87,34.57 41.90,34.04 41.59,33.84 C 41.51,33.79 41.40,33.75 41.31,33.75 z" id="p3881-7-3-1-4" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.35,33.73 C 41.50,33.99 41.45,34.39 41.19,34.76 C 40.95,35.10 40.62,35.32 40.32,35.33 C 40.31,35.33 40.30,35.33 40.29,35.33 C 40.15,35.06 40.22,34.62 40.47,34.26 C 40.71,33.93 41.05,33.75 41.35,33.73 L 41.35,33.73 z" id="p3881-7-3-1-6-7" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2458">
<path d="M 19.03,20.03 C 19.71,20.06 20.29,20.5 20.91,20.75 C 21.95,21.2 22.82,21.67 23.82,22.11 C 24.38,22.38 24.98,22.62 25.53,22.89 C 26.47,23.57 26.34,24.93 25.91,25.86 C 25.4,27.11 24.42,28.09 23.25,28.67 C 21.22,29.63 19.13,30.68 17.16,31.8 C 16.04,32.48 14.56,33.04 13.32,32.36 C 11.44,31.43 9.47,30.61 7.63,29.7 C 6.5,28.95 6.34,27.38 6.66,26.17 C 7.24,23.95 9.01,21.96 11.28,21.4 C 12.07,21.2 12.98,21.1 13.82,20.93 C 15.55,20.64 17.29,20.27 19.03,20.03 L 19.03,20.03 z" id="p3881-2-7" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 18.23,23.92 L 12.76,21.34" id="p4082-6-4" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 7.79,23.83 L 13.92,26.74 C 13.92,26.74 16.58,28.9 18.95,30.83 C 18.35,31.15 17.74,31.47 17.17,31.8 C 16.05,32.48 14.57,33.04 13.32,32.36 C 12.51,31.98 11.69,31.6 10.88,31.2 C 10.85,31.19 10.82,31.18 10.79,31.17 C 10.71,31.13 10.62,31.09 10.54,31.05 C 10.5,31.03 10.45,31.04 10.42,31.02 C 9.49,30.59 8.55,30.15 7.63,29.7 C 6.51,28.95 6.35,27.38 6.67,26.17 C 6.88,25.34 7.27,24.54 7.79,23.83 L 7.79,23.83 z" id="p4122-0-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 6.63,26.27 L 18.1,31.3 C 17.79,31.47 17.47,31.63 17.17,31.8 C 16.05,32.48 14.57,33.04 13.32,32.36 C 12.51,31.98 11.69,31.6 10.88,31.2 C 10.85,31.19 10.82,31.18 10.79,31.17 C 10.71,31.13 10.62,31.09 10.54,31.05 C 10.5,31.03 10.45,31.04 10.42,31.02 C 9.49,30.59 8.55,30.15 7.63,29.7 C 6.54,28.97 6.35,27.46 6.63,26.27 L 6.63,26.27 z" id="p4239-2-9" style="fill:#b77711;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 15.1,25.02 L 9.31,22.42" id="p4080-7-3" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.65,28.02 L 7.09,25.39" id="p4078-2-1-7" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.88,27.64 L 7.32,25.02" id="p4078-5-9" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.49,30.83 L 6.76,28.18" id="p4076-6-9-2" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.51,30.38 L 6.79,27.72" id="p4076-7-4" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 19.03,20.03 C 19.71,20.06 20.29,20.5 20.91,20.75 C 21.95,21.2 22.82,21.67 23.82,22.11 C 24.38,22.38 24.98,22.62 25.53,22.89 C 26.47,23.57 26.34,24.93 25.91,25.86 C 25.4,27.11 24.42,28.09 23.25,28.67 C 21.22,29.63 19.13,30.68 17.16,31.8 C 16.04,32.48 14.56,33.04 13.32,32.36 C 11.4,31.43 9.45,30.59 7.63,29.7 C 6.5,28.95 6.34,27.38 6.66,26.17 C 7.24,23.95 9.01,21.96 11.28,21.4 C 12.07,21.2 12.98,21.1 13.82,20.93 C 15.55,20.64 17.29,20.27 19.03,20.03 L 19.03,20.03 z" id="p3881-6-0-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 24.91,16.14 L 39.41,23.39 C 39.41,26.66 39.41,29.66 39.41,32.64 L 24.91,39.89 L 10.41,32.64 C 10.41,29.61 10.41,25.88 10.41,23.39 L 24.91,16.14 z" id="p2993-7-32" style="fill:#0000ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 34.47,20.93 L 39.41,23.39 L 39.41,32.64 L 24.97,39.86 L 24.97,28.74 L 34.47,20.93 L 34.47,20.93 z" id="p4502-8" style="fill:#000094;fill-opacity:1;stroke:none"/>
<path d="M 24.91,30.64 L 39.41,23.39 L 24.91,16.14 L 10.41,23.39 L 24.91,30.64 z" id="p2993-7-9-49" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 24.98,30.79 L 24.98,39.73" id="p3111-6" style="fill:none;stroke:#2559b9;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.32,17.35 L 35.88,21.6 L 29.41,24.85 L 20.85,20.57 L 27.32,17.35 z" id="p2993-7-9-7-0" style="fill:none;stroke:#21365d;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 10.41,23.39 L 24.91,30.64 L 39.41,23.39" id="p2993-7-9-4-0" style="fill:none;stroke:#859eef;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 36.94,29.6 L 36.94,26.65 L 31.9,29.17 L 31.9,31.6" id="p4705-4" style="fill:none;stroke:#2f46ab;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24.91,16.14 L 39.41,23.39 C 39.41,26.66 39.41,29.66 39.41,32.64 L 24.91,39.89 L 10.41,32.64 C 10.41,29.61 10.41,25.88 10.41,23.39 L 24.91,16.14 z" id="p2993-7-3-6" style="fill:none;stroke:#00003c;stroke-opacity:1;display:inline"/>
<path d="M 19.29,18.32 C 21.02,18.25 23.09,19.12 24.22,20.45 C 25.22,21.63 25.42,22.73 24.98,23.48 C 25.33,25.14 25.04,26.49 23.22,26.89 C 21.39,27.29 18.86,26.38 17.57,24.86 C 16.57,23.68 16.62,22.73 16.73,21.74 C 16.79,19.92 16.75,18.81 18.57,18.42 C 18.8,18.37 19.04,18.33 19.29,18.32 L 19.29,18.32 z" id="p4109-4" style="fill:#00003c;fill-opacity:1;fill-rule:nonzero;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-29" style="fill:#0000ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 8.97,12.67 L 21.47,18.92 L 21.47,23.26 L 8.97,17.01 L 8.97,12.67 z" id="p2993-7-9-8-8-5-59" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 26.69,13.04 L 29.97,14.7 L 29.97,21.32 L 22.38,25.14 L 22.38,17.07 L 22.29,16.76 L 26.69,13.04 z" id="p4170-7" style="fill:#000094;fill-opacity:1;stroke:none"/>
<path d="M 22.39,18.53 L 22.39,24.77" id="p5148-2" style="fill:none;stroke:#2559b9;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.48,7.45 L 29.98,14.7 L 22.35,18.51 L 7.85,11.26 L 15.48,7.45 z" id="p2993-7-9-8-8-51" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 29.98,14.7 L 22.35,18.51 L 7.85,11.26" id="p2993-7-9-8-8-57-9" style="fill:none;stroke:#859eef;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-2-6" style="fill:none;stroke:#00003c;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.97,12.67 L 13.26,14.82 L 8.97,16.95 L 8.97,12.67 z" id="p2993-7-9-8-8-5-5-0" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 21.47,31.22 L 12.96,26.98" id="p5229-8-1" style="fill:none;stroke:#5353ff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 21.78,30.54 C 21.83,30.56 22.93,31.21 23,31.26 L 23,38.26 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54 z" id="p4502-0-2-8" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 15.63,33.72 L 23,37.97 L 23,38.26 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.72 z" id="p4925-8" style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23,31.26 L 23,38.26 L 16.85,41.35 L 16.85,34.35 L 23,31.26 z" id="p4502-0-7" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 21.35,30.76 L 12.83,26.52" id="p5229-81" style="fill:none;stroke:#0f0e3a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 22.58,38.5 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54" id="p4502-0-2-0-6" style="fill:none;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.18,25.76 C 12.23,25.78 13.33,26.43 13.4,26.48 L 13.4,33.48 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76 z" id="p4502-0-2-4-0" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 6.03,28.94 L 13.4,33.19 L 13.4,33.48 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.94 z" id="p4925-0-0" style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.4,26.48 L 13.4,33.48 L 7.24,36.57 L 7.24,29.57 L 13.4,26.48 L 13.4,26.48 z" id="p4502-0-1-2" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 12.98,33.72 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76" id="p4502-0-2-0-9-1" style="fill:none;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 9.47,12.91 L 21.47,18.91 L 21.47,22.69 L 9.47,16.69 L 9.47,12.91 z" id="p2993-7-9-8-8-5-9-2" style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 9.47,14.26 L 21.47,20.32 L 21.47,21.41 L 9.47,15.35 L 9.47,14.26 z" id="p5068-5" style="fill:#900000;fill-opacity:1;stroke:none;marker:none;visibility:visible"/>
<path d="M 13.51,16.88 L 10.66,15.41" id="p5093-4" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 19.66,19.99 L 16.8,18.51" id="p5093-1-8" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<g id="g2493">
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.84,40.31 28.87,39.49 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-3" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 40.95,32.24 L 35.18,29.51" id="p4084-7" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 43.36,31.75 L 37.51,29.02" id="p4084-9-0" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 37.63,32.8 L 32.16,30.21" id="p4082-64" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.19,32.71 L 33.32,35.61 C 33.32,35.61 35.98,37.77 38.35,39.71 C 37.75,40.02 37.15,40.35 36.57,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 31.92,40.86 31.1,40.47 30.29,40.08 C 30.26,40.07 30.22,40.06 30.19,40.05 C 30.11,40.01 30.03,39.97 29.94,39.93 C 29.9,39.91 29.86,39.92 29.82,39.89 C 28.9,39.46 27.95,39.03 27.04,38.58 C 25.91,37.82 25.75,36.26 26.07,35.05 C 26.29,34.22 26.68,33.41 27.19,32.71 z" id="p4122-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 26.04,35.14 L 37.51,40.18 C 37.19,40.34 36.87,40.5 36.57,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 31.92,40.86 31.1,40.47 30.29,40.08 C 30.26,40.07 30.22,40.06 30.19,40.05 C 30.11,40.01 30.03,39.97 29.94,39.93 C 29.9,39.91 29.86,39.92 29.82,39.89 C 28.9,39.46 27.95,39.03 27.04,38.58 C 25.94,37.84 25.75,36.34 26.04,35.14 z" id="p4239-0" style="fill:#b77711;fill-opacity:1;stroke:none"/>
<path d="M 34.5,33.9 L 28.71,31.3" id="p4080-1" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.05,36.89 L 26.49,34.27" id="p4078-2-15" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 32.28,36.52 L 26.72,33.9" id="p4078-3" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 31.89,39.71 L 26.16,37.05" id="p4076-6-1" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.91,39.26 L 26.19,36.6" id="p4076-0" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 43.99,31.47 C 44.31,31.47 44.61,31.56 44.87,31.72 C 45.91,32.36 45.88,34.08 44.84,35.56 C 44.28,36.36 43.69,36.98 43.02,37.35 L 36.68,40.59 C 36.41,40.79 36.12,40.93 35.84,41.06 C 34.69,41.62 33.53,41.73 32.65,41.19 C 31.08,40.21 31.1,37.61 32.68,35.37 C 33.69,33.95 35.09,33.05 36.37,32.81 L 36.37,32.78 C 36.63,32.76 43.61,31.49 43.87,31.47 C 43.89,31.47 43.91,31.47 43.93,31.47 C 43.95,31.47 43.97,31.47 43.99,31.47 L 43.99,31.47 z" id="p3881-5-4" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 L 36.64,33.91 C 36.86,33.88 42.78,32.54 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-7" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 42.34,32.68 C 42.31,33.12 42.13,33.6 41.78,34.08 C 41.34,34.69 40.87,35.18 40.31,35.49 L 35.06,38.24 C 34.84,38.39 34.61,38.5 34.37,38.61 C 33.88,38.86 33.36,39.04 32.87,39.08 C 32.6,38.23 32.85,37.09 33.62,36.02 C 34.41,34.93 35.54,34.18 36.62,33.93 C 36.82,33.9 41.2,32.92 42.34,32.68 L 42.34,32.68 z" id="p3881-5-7-4-0" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.81,40.3 28.85,39.47 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-6-4" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27 C 40.22,33.14 40.76,33.02 41.32,32.89 L 41.32,32.89 z" id="p3881-7-3-7-3" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.31,33.10 C 40.85,33.19 40.35,33.54 40,34.04 C 39.42,34.85 39.43,35.78 40,36.14 C 40.56,36.49 41.48,36.13 42.06,35.32 C 42.63,34.52 42.66,33.58 42.09,33.23 C 41.88,33.10 41.58,33.05 41.31,33.10 z" id="p3881-7-3-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05 C 32.85,37.41 33.14,36.7 33.63,36.02 C 34.2,35.22 34.96,34.61 35.76,34.24 z" id="p3881-7-3-7-7-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.46,34.5 C 35.74,34.49 34.89,35.00 34.31,35.84 C 33.53,36.96 33.56,38.24 34.34,38.71 C 35.12,39.19 36.38,38.68 37.15,37.56 C 37.93,36.44 37.93,35.13 37.15,34.65 C 36.96,34.53 36.70,34.50 36.46,34.5 z" id="p3881-7-3-8-5" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27" id="p3881-7-3-7-9-7" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05" id="p3881-7-3-7-7-7-5" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 C 38.71,33.46 40.89,32.96 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-8-6" style="fill:none;stroke:#2c1b06;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.31,33.75 C 41.02,33.74 40.70,33.96 40.46,34.31 C 40.15,34.77 40.12,35.29 40.43,35.5 C 40.74,35.70 41.24,35.49 41.56,35.03 C 41.87,34.57 41.90,34.04 41.59,33.84 C 41.51,33.79 41.40,33.75 41.31,33.75 z" id="p3881-7-3-1-4" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.35,33.73 C 41.50,33.99 41.45,34.39 41.19,34.76 C 40.95,35.10 40.62,35.32 40.32,35.33 C 40.31,35.33 40.30,35.33 40.29,35.33 C 40.15,35.06 40.22,34.62 40.47,34.26 C 40.71,33.93 41.05,33.75 41.35,33.73 L 41.35,33.73 z" id="p3881-7-3-1-6-7" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2451">
<path d="M 31.98,17.58 C 31.85,17.59 31.71,17.63 31.58,17.67 C 28.37,19.07 28.21,19.27 25.84,20.42 C 25.64,20.54 25.46,20.68 25.29,20.85 C 24.96,21.18 24.71,21.61 24.55,22.09 C 24.24,23.08 24.28,24.31 24.75,25.58 C 25.36,27.18 26.54,28.43 27.79,29.01 L 27.79,29.04 C 28.05,29.13 34.87,32.22 35.13,32.32 C 35.15,32.32 35.18,32.31 35.2,32.32 C 35.22,32.32 35.24,32.34 35.26,32.35 C 35.6,32.43 35.92,32.43 36.24,32.36 C 38.18,31.53 40.26,30.39 41.31,29.84 C 42.58,29.52 43.08,27.92 42.44,26.26 C 42.11,25.36 41.7,24.62 41.12,24.09 L 35.54,19.31 C 35.31,19.05 35.08,18.84 34.83,18.63 C 33.94,17.9 32.94,17.49 31.98,17.58 z" id="p3881-5-2-4-3-07" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 34.69,26.49 L 40.48,23.89" id="p4080-79-8-3" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.64,24.26 L 38.12,21.69" id="p4082-5-3-6" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 30.16,22.4 L 35.94,19.68" id="p4084-5-3-8" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 42.11,25.5 L 32.77,29.97 C 32.77,29.97 32.58,30.97 32.55,31.16 C 33.7,31.67 35.05,32.28 35.14,32.31 C 35.16,32.32 35.18,32.31 35.2,32.31 C 35.22,32.32 35.24,32.34 35.27,32.34 C 35.6,32.43 35.92,32.42 36.23,32.34 C 38.17,31.52 40.25,30.39 41.3,29.84 C 42.57,29.53 43.09,27.92 42.45,26.25 C 42.35,25.98 42.23,25.74 42.11,25.5 z" id="p7129-9" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.85,29 L 42.41,26.37" id="p4078-2-4-8-0" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 42.64,27 L 33.05,31.38 C 33.88,31.75 35.07,32.29 35.14,32.31 C 35.16,32.32 35.18,32.31 35.2,32.31 C 35.22,32.32 35.24,32.34 35.27,32.34 C 35.6,32.43 35.92,32.42 36.23,32.34 C 38.17,31.52 40.25,30.39 41.3,29.84 C 42.37,29.58 42.89,28.37 42.64,27 z" id="p7131-2" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.91,31.13 L 42.64,28.28" id="p4076-6-5-6-2" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.62,28.62 L 42.18,26" id="p4078-4-2-8" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 36.89,30.67 L 42.61,27.83" id="p4076-2-4-5" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.9,20.84 L 33.75,18.11" id="p4084-9-2-2-2" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.98,17.58 C 31.85,17.59 31.71,17.63 31.58,17.67 C 28.37,19.07 28.21,19.27 25.84,20.42 C 25.64,20.54 25.46,20.68 25.29,20.85 C 24.96,21.18 24.71,21.61 24.55,22.09 C 24.24,23.08 24.28,24.31 24.75,25.58 C 25.36,27.18 26.54,28.43 27.79,29.01 L 27.79,29.04 C 28.05,29.13 34.87,32.22 35.13,32.32 C 35.15,32.32 35.18,32.31 35.2,32.32 C 35.22,32.32 35.24,32.34 35.26,32.35 C 35.6,32.43 35.92,32.43 36.24,32.36 C 38.18,31.53 40.26,30.39 41.31,29.84 C 42.58,29.52 43.08,27.92 42.44,26.26 C 42.11,25.36 41.7,24.62 41.12,24.09 L 35.54,19.31 C 35.31,19.05 35.08,18.84 34.83,18.63 C 33.94,17.9 32.94,17.49 31.98,17.58 z" id="p3881-5-2-4-3-0-5" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g2468">
<path d="M 6.43,20.32 C 6.38,20.35 5.28,21 5.21,21.04 L 5.21,28.03 L 11.36,31.13 C 11.44,31.08 12.52,30.44 12.58,30.41 L 12.58,23.41 L 6.43,20.32 z" id="p4502-0-2-5" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 5.21,21.04 L 5.21,28.03 L 11.36,31.13 L 11.36,24.13 L 5.21,21.04 L 5.21,21.04 z" id="p4502-0-16" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 6.43,20.32 C 6.38,20.35 5.28,21 5.21,21.04 L 5.21,28.03 L 11.36,31.13 C 11.44,31.08 12.52,30.44 12.58,30.41 L 12.58,23.41 L 6.43,20.32 z" id="p4502-0-2-5-1" style="fill:none;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-4" style="fill:#0000ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 14.27,21.14 L 9.34,23.61 L 9.34,32.86 L 23.77,40.07 L 23.77,28.95 L 14.27,21.14 z" id="p4502-88" style="fill:#000094;fill-opacity:1;stroke:none"/>
<path d="M 23.84,30.85 L 9.34,23.6 L 23.84,16.35 L 38.34,23.6 L 23.84,30.85 z" id="p2993-7-9-85" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.77,31 L 23.77,39.94" id="p3111-7" style="fill:none;stroke:#2559b9;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 28.73,21.96 L 20.17,26.21 L 26.64,29.46 L 35.2,25.18 L 28.73,21.96 L 28.73,21.96 z" id="p2993-7-9-7-2" style="fill:none;stroke:#21365d;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 38.34,23.6 L 23.84,30.85 L 9.34,23.6" id="p2993-7-9-4-2" style="fill:none;stroke:#859eef;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 15.77,32.01 L 15.77,29.06 L 20.81,31.58 L 20.81,34.01" id="p4705-2" style="fill:none;stroke:#2f46ab;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-3-0" style="fill:none;stroke:#00003c;stroke-opacity:1;display:inline"/>
<path d="M 22.43,15.02 C 20.69,14.94 18.62,15.81 17.49,17.14 C 16.49,18.32 16.29,19.43 16.73,20.17 C 16.39,21.84 16.67,23.18 18.49,23.58 C 20.33,23.98 22.85,23.07 24.14,21.55 C 25.14,20.37 25.1,19.43 24.98,18.44 C 24.92,16.61 24.96,15.51 23.14,15.11 C 22.91,15.06 22.67,15.03 22.43,15.02 L 22.43,15.02 z" id="p4109-9" style="fill:#00003c;fill-opacity:1;fill-rule:nonzero;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 C 8.49,14.66 8.49,17.26 8.49,18.61 L 16.11,22.42 L 30.61,15.17 C 30.61,12.92 30.61,10.22 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-7" style="fill:#0000ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 11.77,10.33 L 8.49,11.99 L 8.49,18.61 L 16.08,22.42 L 16.08,14.36 L 16.18,14.05 L 11.77,10.33 z" id="p4170-3" style="fill:#000094;fill-opacity:1;stroke:none"/>
<path d="M 16.07,15.82 L 16.07,22.05" id="p5148-5" style="fill:none;stroke:#2559b9;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 L 16.11,15.8 L 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-8-7" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 8.49,11.99 L 16.11,15.8 L 30.61,8.55" id="p2993-7-9-8-8-57-8" style="fill:none;stroke:#859eef;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 C 8.49,14.66 8.49,17.26 8.49,18.61 L 16.11,22.42 L 30.61,15.17 C 30.61,12.92 30.61,10.22 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-2-7" style="fill:none;stroke:#00003c;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g2497">
<path d="M 12.18,27.63 C 12.05,27.64 11.91,27.68 11.78,27.71 C 8.57,29.12 8.41,29.32 6.04,30.47 C 5.84,30.58 5.65,30.73 5.49,30.9 C 5.16,31.23 4.91,31.66 4.75,32.15 C 4.43,33.13 4.47,34.37 4.95,35.63 C 5.56,37.24 6.73,38.49 7.99,39.06 L 7.99,39.09 C 8.25,39.18 15.07,42.28 15.33,42.37 C 15.35,42.38 15.37,42.37 15.39,42.37 C 15.42,42.38 15.44,42.4 15.46,42.41 C 15.79,42.49 16.12,42.49 16.44,42.41 C 18.37,41.59 20.46,40.44 21.51,39.9 C 22.78,39.58 23.28,37.98 22.64,36.31 C 22.3,35.42 21.9,34.67 21.31,34.14 L 15.73,29.36 C 15.51,29.1 15.28,28.89 15.03,28.68 C 14.14,27.95 13.14,27.54 12.18,27.63 z" id="p3881-5-2-4-3" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.89,36.55 L 20.68,33.95" id="p4080-79-8" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 12.84,34.32 L 18.31,31.73" id="p4082-5-3" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 10.36,32.46 L 16.13,29.73" id="p4084-5-3" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 22.31,35.56 L 12.96,40.03 C 12.96,40.03 12.78,41.03 12.75,41.21 C 13.89,41.73 15.25,42.34 15.34,42.37 C 15.36,42.38 15.38,42.36 15.4,42.37 C 15.42,42.38 15.44,42.4 15.46,42.4 C 15.8,42.49 16.12,42.48 16.43,42.4 C 18.37,41.58 20.45,40.45 21.5,39.9 C 22.76,39.58 23.28,37.98 22.65,36.31 C 22.55,36.04 22.43,35.8 22.31,35.56 z" id="p7129" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 17.04,39.05 L 22.61,36.43" id="p4078-2-4-8" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 22.84,37.06 L 13.25,41.43 C 14.08,41.81 15.27,42.34 15.34,42.37 C 15.36,42.38 15.38,42.36 15.4,42.37 C 15.42,42.38 15.44,42.4 15.46,42.4 C 15.8,42.49 16.12,42.48 16.43,42.4 C 18.37,41.58 20.45,40.45 21.5,39.9 C 22.57,39.63 23.09,38.43 22.84,37.06 z" id="p7131" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 17.11,41.18 L 22.84,38.34" id="p4076-6-5-6" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.82,38.68 L 22.38,36.06" id="p4078-4-2" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 17.08,40.73 L 22.81,37.89" id="p4076-2-4" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 8.09,30.89 L 13.95,28.16" id="p4084-9-2-2" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 15.47,42.41 C 15.8,42.49 16.13,42.49 16.45,42.41 C 17.72,42.1 18.21,40.48 17.58,38.82 C 17.24,37.92 16.82,37.17 16.24,36.64 L 10.68,31.87 C 10.46,31.62 10.2,31.41 9.95,31.2 C 8.93,30.36 7.76,29.94 6.7,30.21 C 4.78,30.69 4.01,33.12 4.97,35.64 C 5.58,37.25 6.75,38.48 8,39.05 L 7.99,39.08 C 8.25,39.17 15.08,42.28 15.34,42.37 C 15.36,42.38 15.38,42.38 15.4,42.39 C 15.42,42.4 15.45,42.4 15.47,42.41 L 15.47,42.41 z" id="p3881-5-2-4" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.18,27.63 C 12.05,27.64 11.91,27.68 11.78,27.71 C 8.57,29.12 8.41,29.32 6.04,30.47 C 5.84,30.58 5.65,30.73 5.49,30.9 C 5.16,31.23 4.91,31.66 4.75,32.15 C 4.43,33.13 4.47,34.37 4.95,35.63 C 5.56,37.24 6.73,38.49 7.99,39.06 L 7.99,39.09 C 8.25,39.18 15.07,42.28 15.33,42.37 C 15.35,42.38 15.37,42.37 15.39,42.37 C 15.42,42.38 15.44,42.4 15.46,42.41 C 15.79,42.49 16.12,42.49 16.44,42.41 C 18.37,41.59 20.46,40.44 21.51,39.9 C 22.78,39.58 23.28,37.98 22.64,36.31 C 22.3,35.42 21.9,34.67 21.31,34.14 L 15.73,29.36 C 15.51,29.1 15.28,28.89 15.03,28.68 C 14.14,27.95 13.14,27.54 12.18,27.63 z" id="p3881-5-2-4-3-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.53,41.44 C 14.82,41.55 15.12,41.6 15.42,41.59 C 16.59,41.55 17.17,40.49 16.72,39.23 C 16.49,38.56 16.17,37.98 15.68,37.53 L 11,33.4 C 10.82,33.2 10.6,33.01 10.39,32.83 C 9.53,32.1 8.5,31.64 7.51,31.67 C 5.73,31.74 4.85,33.33 5.52,35.22 C 5.95,36.43 6.92,37.45 8.01,38.04 L 8,38.05 C 8.23,38.15 14.19,41.3 14.41,41.4 C 14.43,41.41 14.45,41.41 14.47,41.42 C 14.49,41.43 14.51,41.43 14.53,41.44 L 14.53,41.44 z" id="p3881-5-2-4-6" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.68,31.68 C 7.52,32.25 7.55,32.93 7.81,33.65 C 8.23,34.86 9.21,35.88 10.31,36.46 L 10.28,36.5 C 10.51,36.59 16.46,39.74 16.68,39.84 C 16.7,39.85 16.73,39.86 16.75,39.87 C 16.76,39.88 16.79,39.86 16.81,39.87 C 16.82,39.87 16.83,39.87 16.84,39.87 C 16.82,39.66 16.79,39.47 16.71,39.25 C 16.48,38.57 16.17,37.98 15.68,37.53 L 11,33.4 C 10.81,33.19 10.61,33.02 10.4,32.84 C 9.59,32.15 8.62,31.7 7.68,31.68 z" id="p3881-5-2-4-6-7" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.12,31.75 C 8.09,31.76 8.06,31.76 8.03,31.78 C 7.58,31.97 7.28,32.12 6.78,32.4 C 5.95,32.91 5.98,34.26 6.81,35.43 C 7.63,36.6 8.95,37.13 9.78,36.62 C 10.31,36.29 10.6,36.25 11,36 C 11.63,35.6 11.78,34.71 11.43,33.78 L 11,33.4 C 10.81,33.19 10.61,33.02 10.4,32.84 C 9.72,32.26 8.91,31.87 8.12,31.75 z" id="p3881-7-2-2" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 9.72,36.50 C 8.92,37.00 7.61,36.47 6.80,35.32 C 6.00,34.17 6.00,32.83 6.81,32.34 C 7.61,31.84 8.92,32.37 9.72,33.52 C 10.53,34.67 10.53,36.00 9.72,36.50 L 9.72,36.50 z" id="p3881-7-2" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.12,31.75 C 8.09,31.76 8.06,31.76 8.03,31.78 C 7.58,31.97 7.28,32.12 6.78,32.4 C 5.95,32.91 5.98,34.26 6.81,35.43 C 7.63,36.6 8.95,37.13 9.78,36.62 C 10.31,36.29 10.6,36.25 11,36 C 11.63,35.6 11.78,34.71 11.43,33.78" id="p3881-7-2-2-4" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.37,35.65 C 13.2,35.65 13.04,35.69 12.9,35.78 C 12.64,35.9 12.44,36.05 12.21,36.18 C 11.65,36.53 11.65,37.47 12.21,38.28 C 12.78,39.08 13.71,39.44 14.28,39.09 C 14.53,39.01 14.71,38.82 14.93,38.68 C 15.38,38.4 15.48,37.75 15.21,37.09 L 13.59,35.68 C 13.52,35.67 13.44,35.65 13.37,35.65 z" id="p3881-7-2-6-3" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.27,38.96 C 13.72,39.29 12.84,38.93 12.29,38.16 C 11.74,37.38 11.74,36.48 12.29,36.15 C 12.83,35.82 13.72,36.18 14.26,36.95 C 14.81,37.73 14.81,38.63 14.27,38.96 L 14.27,38.96 z" id="p3881-7-2-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.59,35.68 C 13.52,35.67 13.44,35.65 13.37,35.65 C 13.2,35.65 13.04,35.69 12.9,35.78 C 12.64,35.9 12.44,36.05 12.21,36.18 C 11.65,36.53 11.65,37.47 12.21,38.28 C 12.78,39.08 13.71,39.44 14.28,39.09 C 14.53,39.01 14.71,38.82 14.93,38.68 C 15.38,38.4 15.48,37.75 15.21,37.09" id="p3881-7-2-6-3-8" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.53,41.44 C 14.82,41.55 15.12,41.6 15.42,41.59 C 16.59,41.55 17.17,40.49 16.72,39.23 C 16.49,38.56 16.17,37.98 15.68,37.53 L 11,33.4 C 10.82,33.2 10.6,33.01 10.39,32.83 C 9.53,32.1 8.5,31.64 7.51,31.67 C 5.73,31.74 4.85,33.33 5.52,35.22 C 5.95,36.43 6.92,37.45 8.01,38.04 L 8,38.05 C 8.23,38.15 14.19,41.3 14.41,41.4 C 14.43,41.41 14.45,41.41 14.47,41.42 C 14.49,41.43 14.51,41.43 14.53,41.44 L 14.53,41.44 z" id="p3881-5-2-4-6-5" style="fill:none;stroke:#2c1b06;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.83,38.36 C 13.53,38.56 13.02,38.36 12.70,37.90 C 12.39,37.44 12.38,36.90 12.69,36.69 C 13.00,36.49 13.50,36.70 13.82,37.16 C 14.14,37.62 14.14,38.15 13.83,38.36 L 13.83,38.36 z" id="p3881-7-3-1-5-5" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.97,36.62 C 12.82,36.88 12.86,37.28 13.12,37.65 C 13.36,37.99 13.7,38.20 14,38.21 C 14.01,38.21 14.02,38.21 14.03,38.21 C 14.17,37.95 14.1,37.51 13.84,37.15 C 13.61,36.82 13.26,36.64 12.97,36.62 z" id="p3881-7-3-1-6-5-5" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2451">
<path d="M 15.29,17.58 C 15.42,17.59 15.56,17.63 15.69,17.67 C 18.9,19.07 19.06,19.27 21.43,20.42 C 21.63,20.54 21.81,20.68 21.98,20.85 C 22.31,21.18 22.56,21.61 22.72,22.09 C 23.03,23.08 22.99,24.31 22.52,25.58 C 21.91,27.18 20.73,28.43 19.48,29.01 L 19.48,29.04 C 19.22,29.13 12.4,32.22 12.14,32.32 C 12.12,32.32 12.09,32.31 12.07,32.32 C 12.05,32.32 12.03,32.34 12.01,32.35 C 11.67,32.43 11.35,32.43 11.03,32.36 C 9.09,31.53 7.01,30.39 5.96,29.84 C 4.69,29.52 4.19,27.92 4.83,26.26 C 5.16,25.36 5.57,24.62 6.15,24.09 L 11.73,19.31 C 11.96,19.05 12.19,18.84 12.44,18.63 C 13.33,17.9 14.33,17.49 15.29,17.58 z" id="p3881-5-2-4-3-07-8" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.58,26.49 L 6.79,23.89" id="p4080-79-8-3-8" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 14.63,24.26 L 9.15,21.69" id="p4082-5-3-6-5" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 17.11,22.4 L 11.33,19.68" id="p4084-5-3-8-1" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 5.16,25.5 L 14.5,29.97 C 14.5,29.97 14.69,30.97 14.72,31.16 C 13.57,31.67 12.22,32.28 12.13,32.31 C 12.11,32.32 12.09,32.31 12.07,32.31 C 12.05,32.32 12.03,32.34 12,32.34 C 11.67,32.43 11.35,32.42 11.04,32.34 C 9.1,31.52 7.02,30.39 5.97,29.84 C 4.7,29.53 4.18,27.92 4.82,26.25 C 4.92,25.98 5.04,25.74 5.16,25.5 z" id="p7129-9-5" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.42,29 L 4.86,26.37" id="p4078-2-4-8-0-2" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 4.63,27 L 14.22,31.38 C 13.39,31.75 12.2,32.29 12.13,32.31 C 12.11,32.32 12.09,32.31 12.07,32.31 C 12.05,32.32 12.03,32.34 12,32.34 C 11.67,32.43 11.35,32.42 11.04,32.34 C 9.1,31.52 7.02,30.39 5.97,29.84 C 4.9,29.58 4.38,28.37 4.63,27 z" id="p7131-2-6" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.36,31.13 L 4.63,28.28" id="p4076-6-5-6-2-9" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 10.65,28.62 L 5.09,26" id="p4078-4-2-8-2" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 10.38,30.67 L 4.66,27.83" id="p4076-2-4-5-1" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 19.37,20.84 L 13.52,18.11" id="p4084-9-2-2-2-8" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 15.29,17.58 C 15.42,17.59 15.56,17.63 15.69,17.67 C 18.9,19.07 19.06,19.27 21.43,20.42 C 21.63,20.54 21.81,20.68 21.98,20.85 C 22.31,21.18 22.56,21.61 22.72,22.09 C 23.03,23.08 22.99,24.31 22.52,25.58 C 21.91,27.18 20.73,28.43 19.48,29.01 L 19.48,29.04 C 19.22,29.13 12.4,32.22 12.14,32.32 C 12.12,32.32 12.09,32.31 12.07,32.32 C 12.05,32.32 12.03,32.34 12.01,32.35 C 11.67,32.43 11.35,32.43 11.03,32.36 C 9.09,31.53 7.01,30.39 5.96,29.84 C 4.69,29.52 4.19,27.92 4.83,26.26 C 5.16,25.36 5.57,24.62 6.15,24.09 L 11.73,19.31 C 11.96,19.05 12.19,18.84 12.44,18.63 C 13.33,17.9 14.33,17.49 15.29,17.58 z" id="p3881-5-2-4-3-0-5-6" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g2468">
<path d="M 40.84,20.32 C 40.89,20.35 41.99,21 42.06,21.04 L 42.06,28.03 L 35.91,31.13 C 35.83,31.08 34.75,30.44 34.69,30.41 L 34.69,23.41 L 40.84,20.32 z" id="p4502-0-2-5-2" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 42.06,21.04 L 42.06,28.03 L 35.91,31.13 L 35.91,24.13 L 42.06,21.04 L 42.06,21.04 z" id="p4502-0-16-1" style="fill:#000094;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 40.84,20.32 C 40.89,20.35 41.99,21 42.06,21.04 L 42.06,28.03 L 35.91,31.13 C 35.83,31.08 34.75,30.44 34.69,30.41 L 34.69,23.41 L 40.84,20.32 z" id="p4502-0-2-5-1-3" style="fill:none;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 23.43,16.35 L 37.93,23.6 C 37.93,26.87 37.93,29.87 37.93,32.85 L 23.43,40.1 L 8.93,32.85 C 8.93,29.82 8.93,26.09 8.93,23.6 L 23.43,16.35 z" id="p2993-7-4-6" style="fill:#0000ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 32.99,21.14 L 37.93,23.61 L 37.93,32.86 L 23.49,40.07 L 23.49,28.95 L 32.99,21.14 z" id="p4502-88-3" style="fill:#000094;fill-opacity:1;stroke:none"/>
<path d="M 23.43,30.85 L 37.93,23.6 L 23.43,16.35 L 8.93,23.6 L 23.43,30.85 z" id="p2993-7-9-85-8" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.49,31 L 23.49,39.94" id="p3111-7-9" style="fill:none;stroke:#2559b9;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 18.53,21.96 L 27.09,26.21 L 20.62,29.46 L 12.06,25.18 L 18.53,21.96 L 18.53,21.96 z" id="p2993-7-9-7-2-4" style="fill:none;stroke:#21365d;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 8.93,23.6 L 23.43,30.85 L 37.93,23.6" id="p2993-7-9-4-2-9" style="fill:none;stroke:#859eef;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 31.49,32.01 L 31.49,29.06 L 26.46,31.58 L 26.46,34.01" id="p4705-2-7" style="fill:none;stroke:#2f46ab;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.43,16.35 L 37.93,23.6 C 37.93,26.87 37.93,29.87 37.93,32.85 L 23.43,40.1 L 8.93,32.85 C 8.93,29.82 8.93,26.09 8.93,23.6 L 23.43,16.35 z" id="p2993-7-3-0-2" style="fill:none;stroke:#00003c;stroke-opacity:1;display:inline"/>
<path d="M 24.84,15.02 C 26.57,14.94 28.65,15.81 29.78,17.14 C 30.77,18.32 30.97,19.43 30.53,20.17 C 30.88,21.84 30.59,23.18 28.78,23.58 C 26.94,23.98 24.41,23.07 23.12,21.55 C 22.12,20.37 22.17,19.43 22.28,18.44 C 22.34,16.61 22.3,15.51 24.12,15.11 C 24.35,15.06 24.59,15.03 24.84,15.02 L 24.84,15.02 z" id="p4109-9-7" style="fill:#00003c;fill-opacity:1;fill-rule:nonzero;stroke:#00003c;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.27,4.74 L 38.77,11.99 C 38.77,14.66 38.77,17.26 38.77,18.61 L 31.15,22.42 L 16.65,15.17 C 16.65,12.92 16.65,10.22 16.65,8.55 L 24.27,4.74 z" id="p2993-7-9-8-7-2" style="fill:#0000ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 35.49,10.33 L 38.77,11.99 L 38.77,18.61 L 31.18,22.42 L 31.18,14.36 L 31.09,14.05 L 35.49,10.33 z" id="p4170-3-4" style="fill:#000094;fill-opacity:1;stroke:none"/>
<path d="M 31.19,15.82 L 31.19,22.05" id="p5148-5-1" style="fill:none;stroke:#2559b9;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.28,4.74 L 38.78,11.99 L 31.15,15.8 L 16.65,8.55 L 24.28,4.74 z" id="p2993-7-9-8-8-7-2" style="fill:#5363ff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 38.78,11.99 L 31.15,15.8 L 16.65,8.55" id="p2993-7-9-8-8-57-8-6" style="fill:none;stroke:#859eef;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.27,4.74 L 38.77,11.99 C 38.77,14.66 38.77,17.26 38.77,18.61 L 31.15,22.42 L 16.65,15.17 C 16.65,12.92 16.65,10.22 16.65,8.55 L 24.27,4.74 z" id="p2993-7-9-8-2-7-8" style="fill:none;stroke:#00003c;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g2497">
<path d="M 35.09,27.63 C 35.22,27.64 35.36,27.68 35.49,27.71 C 38.7,29.12 38.86,29.32 41.23,30.47 C 41.43,30.58 41.62,30.73 41.78,30.9 C 42.11,31.23 42.36,31.66 42.52,32.15 C 42.84,33.13 42.8,34.37 42.32,35.63 C 41.71,37.24 40.54,38.49 39.28,39.06 L 39.28,39.09 C 39.02,39.18 32.2,42.28 31.94,42.37 C 31.92,42.38 31.9,42.37 31.88,42.37 C 31.85,42.38 31.83,42.4 31.81,42.41 C 31.48,42.49 31.15,42.49 30.83,42.41 C 28.9,41.59 26.81,40.44 25.76,39.9 C 24.49,39.58 23.99,37.98 24.63,36.31 C 24.97,35.42 25.37,34.67 25.96,34.14 L 31.54,29.36 C 31.76,29.1 31.99,28.89 32.24,28.68 C 33.13,27.95 34.13,27.54 35.09,27.63 z" id="p3881-5-2-4-3-4" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.38,36.55 L 26.59,33.95" id="p4080-79-8-34" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 34.43,34.32 L 28.96,31.73" id="p4082-5-3-1" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 36.91,32.46 L 31.14,29.73" id="p4084-5-3-5" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24.96,35.56 L 34.31,40.03 C 34.31,40.03 34.49,41.03 34.52,41.21 C 33.38,41.73 32.02,42.34 31.93,42.37 C 31.91,42.38 31.89,42.36 31.87,42.37 C 31.85,42.38 31.83,42.4 31.81,42.4 C 31.47,42.49 31.15,42.48 30.84,42.4 C 28.9,41.58 26.82,40.45 25.77,39.9 C 24.51,39.58 23.99,37.98 24.62,36.31 C 24.72,36.04 24.84,35.8 24.96,35.56 z" id="p7129-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.23,39.05 L 24.66,36.43" id="p4078-2-4-8-00" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 24.43,37.06 L 34.02,41.43 C 33.19,41.81 32,42.34 31.93,42.37 C 31.91,42.38 31.89,42.36 31.87,42.37 C 31.85,42.38 31.83,42.4 31.81,42.4 C 31.47,42.49 31.15,42.48 30.84,42.4 C 28.9,41.58 26.82,40.45 25.77,39.9 C 24.7,39.63 24.18,38.43 24.43,37.06 z" id="p7131-28" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.16,41.18 L 24.43,38.34" id="p4076-6-5-6-6" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 30.45,38.68 L 24.89,36.06" id="p4078-4-2-5" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 30.19,40.73 L 24.46,37.89" id="p4076-2-4-0" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 39.18,30.89 L 33.32,28.16" id="p4084-9-2-2-9" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.8,42.41 C 31.47,42.49 31.14,42.49 30.82,42.41 C 29.55,42.1 29.06,40.48 29.69,38.82 C 30.03,37.92 30.45,37.17 31.03,36.64 L 36.59,31.87 C 36.81,31.62 37.07,31.41 37.32,31.2 C 38.34,30.36 39.51,29.94 40.57,30.21 C 42.49,30.69 43.26,33.12 42.3,35.64 C 41.69,37.25 40.52,38.48 39.27,39.05 L 39.28,39.08 C 39.02,39.17 32.19,42.28 31.93,42.37 C 31.91,42.38 31.89,42.38 31.87,42.39 C 31.85,42.4 31.82,42.4 31.8,42.41 L 31.8,42.41 z" id="p3881-5-2-4-0" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.09,27.63 C 35.22,27.64 35.36,27.68 35.49,27.71 C 38.7,29.12 38.86,29.32 41.23,30.47 C 41.43,30.58 41.62,30.73 41.78,30.9 C 42.11,31.23 42.36,31.66 42.52,32.15 C 42.84,33.13 42.8,34.37 42.32,35.63 C 41.71,37.24 40.54,38.49 39.28,39.06 L 39.28,39.09 C 39.02,39.18 32.2,42.28 31.94,42.37 C 31.92,42.38 31.9,42.37 31.88,42.37 C 31.85,42.38 31.83,42.4 31.81,42.41 C 31.48,42.49 31.15,42.49 30.83,42.41 C 28.9,41.59 26.81,40.44 25.76,39.9 C 24.49,39.58 23.99,37.98 24.63,36.31 C 24.97,35.42 25.37,34.67 25.96,34.14 L 31.54,29.36 C 31.76,29.1 31.99,28.89 32.24,28.68 C 33.13,27.95 34.13,27.54 35.09,27.63 z" id="p3881-5-2-4-3-0-9" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.74,41.44 C 32.45,41.55 32.15,41.6 31.85,41.59 C 30.68,41.55 30.1,40.49 30.55,39.23 C 30.78,38.56 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.45,33.2 36.67,33.01 36.88,32.83 C 37.74,32.1 38.77,31.64 39.76,31.67 C 41.54,31.74 42.42,33.33 41.75,35.22 C 41.32,36.43 40.35,37.45 39.26,38.04 L 39.27,38.05 C 39.04,38.15 33.08,41.3 32.86,41.4 C 32.84,41.41 32.82,41.41 32.8,41.42 C 32.78,41.43 32.76,41.43 32.74,41.44 L 32.74,41.44 z" id="p3881-5-2-4-6-2" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.59,31.68 C 39.75,32.25 39.72,32.93 39.46,33.65 C 39.04,34.86 38.06,35.88 36.96,36.46 L 36.99,36.5 C 36.76,36.59 30.81,39.74 30.59,39.84 C 30.57,39.85 30.54,39.86 30.52,39.87 C 30.51,39.88 30.48,39.86 30.46,39.87 C 30.45,39.87 30.44,39.87 30.43,39.87 C 30.45,39.66 30.48,39.47 30.56,39.25 C 30.79,38.57 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.46,33.19 36.66,33.02 36.87,32.84 C 37.68,32.15 38.65,31.7 39.59,31.68 z" id="p3881-5-2-4-6-7-8" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.15,31.75 C 39.18,31.76 39.21,31.76 39.24,31.78 C 39.69,31.97 39.99,32.12 40.49,32.4 C 41.32,32.91 41.29,34.26 40.46,35.43 C 39.64,36.6 38.32,37.13 37.49,36.62 C 36.96,36.29 36.67,36.25 36.27,36 C 35.64,35.6 35.49,34.71 35.84,33.78 L 36.27,33.4 C 36.46,33.19 36.66,33.02 36.87,32.84 C 37.55,32.26 38.36,31.87 39.15,31.75 z" id="p3881-7-2-2-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 37.58,36.52 C 38.38,37.02 39.69,36.49 40.49,35.34 C 41.30,34.19 41.30,32.86 40.49,32.36 C 39.68,31.86 38.38,32.39 37.57,33.54 C 36.77,34.69 36.77,36.02 37.58,36.52 L 37.58,36.52 z" id="p3881-7-2-69" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.15,31.75 C 39.18,31.76 39.21,31.76 39.24,31.78 C 39.69,31.97 39.99,32.12 40.49,32.4 C 41.32,32.91 41.29,34.26 40.46,35.43 C 39.64,36.6 38.32,37.13 37.49,36.62 C 36.96,36.29 36.67,36.25 36.27,36 C 35.64,35.6 35.49,34.71 35.84,33.78" id="p3881-7-2-2-4-0" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.9,35.65 C 34.07,35.65 34.23,35.69 34.37,35.78 C 34.63,35.9 34.83,36.05 35.06,36.18 C 35.62,36.53 35.62,37.47 35.06,38.28 C 34.49,39.08 33.56,39.44 32.99,39.09 C 32.74,39.01 32.56,38.82 32.34,38.68 C 31.89,38.4 31.79,37.75 32.06,37.09 L 33.68,35.68 C 33.75,35.67 33.83,35.65 33.9,35.65 z" id="p3881-7-2-6-3-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.07,39.01 C 33.61,39.34 34.50,38.98 35.04,38.20 C 35.59,37.43 35.59,36.53 35.05,36.19 C 34.50,35.86 33.61,36.22 33.07,37.00 C 32.52,37.78 32.52,38.67 33.07,39.01 L 33.07,39.01 z" id="p3881-7-2-6-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.68,35.68 C 33.75,35.67 33.83,35.65 33.9,35.65 C 34.07,35.65 34.23,35.69 34.37,35.78 C 34.63,35.9 34.83,36.05 35.06,36.18 C 35.62,36.53 35.62,37.47 35.06,38.28 C 34.49,39.08 33.56,39.44 32.99,39.09 C 32.74,39.01 32.56,38.82 32.34,38.68 C 31.89,38.4 31.79,37.75 32.06,37.09" id="p3881-7-2-6-3-8-2" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.74,41.44 C 32.45,41.55 32.15,41.6 31.85,41.59 C 30.68,41.55 30.1,40.49 30.55,39.23 C 30.78,38.56 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.45,33.2 36.67,33.01 36.88,32.83 C 37.74,32.1 38.77,31.64 39.76,31.67 C 41.54,31.74 42.42,33.33 41.75,35.22 C 41.32,36.43 40.35,37.45 39.26,38.04 L 39.27,38.05 C 39.04,38.15 33.08,41.3 32.86,41.4 C 32.84,41.41 32.82,41.41 32.8,41.42 C 32.78,41.43 32.76,41.43 32.74,41.44 L 32.74,41.44 z" id="p3881-5-2-4-6-5-5" style="fill:none;stroke:#2c1b06;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.43,38.36 C 33.73,38.56 34.24,38.36 34.56,37.90 C 34.87,37.44 34.88,36.90 34.57,36.69 C 34.26,36.49 33.76,36.70 33.44,37.16 C 33.12,37.62 33.12,38.15 33.43,38.36 L 33.43,38.36 z" id="p3881-7-3-1-5-5-7" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 34.33,36.59 C 34.48,36.85 34.44,37.25 34.18,37.62 C 33.94,37.96 33.60,38.17 33.30,38.18 C 33.29,38.18 33.28,38.18 33.27,38.18 C 33.13,37.92 33.20,37.48 33.46,37.12 C 33.69,36.79 34.04,36.61 34.33,36.59 z" id="p3881-7-3-1-6-5-5-5" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="g2458">
<path d="M 29.73,20.24 C 29.05,20.27 28.47,20.71 27.85,20.96 C 26.81,21.41 25.94,21.88 24.94,22.32 C 24.38,22.59 23.78,22.83 23.23,23.1 C 22.29,23.78 22.42,25.14 22.85,26.07 C 23.36,27.32 24.34,28.3 25.51,28.88 C 27.54,29.84 29.63,30.89 31.6,32.01 C 32.72,32.69 34.2,33.25 35.44,32.57 C 37.32,31.64 39.29,30.82 41.13,29.91 C 42.26,29.16 42.42,27.59 42.1,26.38 C 41.52,24.16 39.75,22.17 37.48,21.61 C 36.69,21.41 35.78,21.31 34.94,21.14 C 33.21,20.85 31.47,20.48 29.73,20.24 L 29.73,20.24 z" id="p3881-2" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.53,24.13 L 36,21.55" id="p4082-6" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 40.97,24.04 L 34.84,26.95 C 34.84,26.95 32.18,29.11 29.81,31.04 C 30.41,31.36 31.02,31.68 31.59,32.01 C 32.71,32.69 34.19,33.25 35.44,32.57 C 36.25,32.19 37.07,31.81 37.88,31.41 C 37.91,31.4 37.94,31.39 37.97,31.38 C 38.05,31.34 38.14,31.3 38.22,31.26 C 38.26,31.24 38.31,31.25 38.34,31.23 C 39.27,30.8 40.21,30.36 41.13,29.91 C 42.25,29.16 42.41,27.59 42.09,26.38 C 41.88,25.55 41.49,24.75 40.97,24.04 L 40.97,24.04 z" id="p4122-0" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 42.13,26.48 L 30.66,31.51 C 30.97,31.68 31.29,31.84 31.59,32.01 C 32.71,32.69 34.19,33.25 35.44,32.57 C 36.25,32.19 37.07,31.81 37.88,31.41 C 37.91,31.4 37.94,31.39 37.97,31.38 C 38.05,31.34 38.14,31.3 38.22,31.26 C 38.26,31.24 38.31,31.25 38.34,31.23 C 39.27,30.8 40.21,30.36 41.13,29.91 C 42.22,29.18 42.41,27.67 42.13,26.48 L 42.13,26.48 z" id="p4239-2" style="fill:#b77711;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 33.66,25.23 L 39.45,22.63" id="p4080-7" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.11,28.23 L 41.67,25.6" id="p4078-2-1" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 35.88,27.85 L 41.44,25.23" id="p4078-5" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.27,31.04 L 42,28.39" id="p4076-6-9" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.25,30.59 L 41.97,27.93" id="p4076-7" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 29.73,20.24 C 29.05,20.27 28.47,20.71 27.85,20.96 C 26.81,21.41 25.94,21.88 24.94,22.32 C 24.38,22.59 23.78,22.83 23.23,23.1 C 22.29,23.78 22.42,25.14 22.85,26.07 C 23.36,27.32 24.34,28.3 25.51,28.88 C 27.54,29.84 29.63,30.89 31.6,32.01 C 32.72,32.69 34.2,33.25 35.44,32.57 C 37.36,31.64 39.31,30.8 41.13,29.91 C 42.26,29.16 42.42,27.59 42.1,26.38 C 41.52,24.16 39.75,22.17 37.48,21.61 C 36.69,21.41 35.78,21.31 34.94,21.14 C 33.21,20.85 31.47,20.48 29.73,20.24 L 29.73,20.24 z" id="p3881-6-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g4448">
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7" style="fill:#be0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 14.27,21.14 L 9.34,23.61 L 9.34,32.86 L 23.77,40.07 L 23.77,28.95 L 14.27,21.14 L 14.27,21.14 z" id="p4502" style="fill:#7b0000;fill-opacity:1;stroke:none"/>
<path d="M 23.84,30.85 L 9.34,23.6 L 23.84,16.35 L 38.34,23.6 L 23.84,30.85 z" id="p2993-7-9" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.77,31 L 23.77,39.94" id="p3111" style="fill:none;stroke:#f63e35;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 21.43,17.56 L 12.87,21.81 L 19.34,25.06 L 27.9,20.78 L 21.43,17.56 z" id="p2993-7-9-7" style="fill:none;stroke:#5d2121;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 38.34,23.6 L 23.84,30.85 L 9.34,23.6" id="p2993-7-9-4" style="fill:none;stroke:#ff6d56;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 11.81,29.81 L 11.81,26.87 L 16.85,29.38 L 16.85,31.81" id="p4705" style="fill:none;stroke:#b02a2a;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-3" style="fill:none;stroke:#2e0000;stroke-opacity:1;display:inline"/>
<path d="M 29.46,18.54 C 27.73,18.46 25.65,19.33 24.52,20.66 C 23.52,21.84 23.33,22.94 23.77,23.69 C 23.42,25.36 23.71,26.7 25.52,27.1 C 27.36,27.5 29.89,26.59 31.18,25.07 C 32.18,23.89 32.13,22.95 32.02,21.96 C 31.96,20.13 32,19.03 30.18,18.63 C 29.95,18.58 29.71,18.55 29.46,18.54 L 29.46,18.54 z" id="p4109" style="fill:#2e0000;fill-opacity:1;fill-rule:nonzero;stroke:#2e0000;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 C 18.77,17.59 18.77,20.19 18.77,21.54 L 26.4,25.35 L 40.9,18.1 C 40.9,15.85 40.9,13.14 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8" style="fill:#be0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 39.77,12.88 L 27.27,19.13 L 27.27,23.47 L 39.77,17.22 L 39.77,12.88 z" id="p2993-7-9-8-8-5" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 22.06,13.25 L 18.77,14.91 L 18.77,21.54 L 26.37,25.35 L 26.37,17.29 L 26.46,16.97 L 22.06,13.25 z" id="p4170" style="fill:#7b0000;fill-opacity:1;stroke:none"/>
<path d="M 26.36,18.74 L 26.36,24.98" id="p5148" style="fill:none;stroke:#f63e35;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 L 26.4,18.72 L 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8-8" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 18.77,14.91 L 26.4,18.72 L 40.9,11.47" id="p2993-7-9-8-8-57" style="fill:none;stroke:#ff6d56;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 C 18.77,17.59 18.77,20.19 18.77,21.54 L 26.4,25.35 L 40.9,18.1 C 40.9,15.85 40.9,13.14 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8-2" style="fill:none;stroke:#2e0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.77,12.88 L 35.49,15.04 L 39.77,17.16 L 39.77,12.88 z" id="p2993-7-9-8-8-5-5" style="fill:#7b0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 27.28,31.43 L 35.79,27.19" id="p5229-8" style="fill:none;stroke:#ff5d5d;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 26.96,30.75 C 26.92,30.78 25.82,31.42 25.75,31.47 L 25.75,38.47 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.84 L 26.96,30.75 z" id="p4502-0-2" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 33.12,33.94 L 25.75,38.19 L 25.75,38.47 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.94 z" id="p4925" style="fill:#be0000;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 25.75,31.47 L 25.75,38.47 L 31.9,41.56 L 31.9,34.56 L 25.75,31.47 z" id="p4502-0" style="fill:#7b0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 27.4,30.97 L 35.91,26.73" id="p5229" style="fill:none;stroke:#3a0e0e;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 26.17,38.71 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.84 L 26.96,30.75" id="p4502-0-2-0" style="fill:none;stroke:#2e0000;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.57,25.97 C 36.52,26 35.42,26.64 35.35,26.69 L 35.35,33.69 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.06 L 36.57,25.97 z" id="p4502-0-2-4" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 42.72,29.16 L 35.35,33.41 L 35.35,33.69 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.16 z" id="p4925-0" style="fill:#be0000;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.35,26.69 L 35.35,33.69 L 41.5,36.78 L 41.5,29.78 L 35.35,26.69 L 35.35,26.69 z" id="p4502-0-1" style="fill:#7b0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 35.77,33.93 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.06 L 36.57,25.97" id="p4502-0-2-0-9" style="fill:none;stroke:#2e0000;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 39.28,13.12 L 27.28,19.12 L 27.28,22.9 L 39.28,16.9 L 39.28,13.12 z" id="p2993-7-9-8-8-5-9" style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline"/>
</g>
<g id="g2514">
<path d="M 10.31,29.11 C 9.63,29.14 9.06,29.58 8.44,29.82 C 7.4,30.28 6.52,30.75 5.53,31.2 C 4.97,31.47 4.37,31.71 3.81,31.98 C 2.87,32.66 3.01,34.01 3.44,34.95 C 3.94,36.2 4.93,37.18 6.09,37.76 C 8.13,38.72 10.22,39.77 12.19,40.89 C 13.3,41.57 14.78,42.13 16.03,41.45 C 17.91,40.52 19.88,39.7 21.72,38.79 C 22.84,38.04 23.01,36.47 22.69,35.26 C 22.1,33.04 20.34,31.04 18.06,30.48 C 17.27,30.28 16.37,30.18 15.53,30.01 C 13.79,29.72 12.05,29.35 10.31,29.11 L 10.31,29.11 z" id="p3881" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.8,32.45 L 13.57,29.72" id="p4084" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 5.38,31.96 L 11.24,29.23" id="p4084-9" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 11.12,33.01 L 16.59,30.42" id="p4082" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 21.56,32.92 L 15.43,35.82 C 15.43,35.82 12.77,37.99 10.4,39.92 C 11,40.24 11.6,40.56 12.18,40.89 C 13.3,41.57 14.78,42.13 16.02,41.45 C 16.83,41.07 17.65,40.69 18.46,40.29 C 18.49,40.28 18.52,40.27 18.56,40.26 C 18.64,40.22 18.72,40.18 18.81,40.14 C 18.85,40.12 18.89,40.13 18.93,40.11 C 19.85,39.68 20.79,39.24 21.71,38.79 C 22.83,38.04 23,36.47 22.68,35.26 C 22.46,34.43 22.07,33.63 21.56,32.92 z" id="p4122" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.71,35.36 L 11.24,40.39 C 11.56,40.56 11.88,40.72 12.18,40.89 C 13.3,41.57 14.78,42.13 16.02,41.45 C 16.83,41.07 17.65,40.69 18.46,40.29 C 18.49,40.28 18.52,40.27 18.56,40.26 C 18.64,40.22 18.72,40.18 18.81,40.14 C 18.85,40.12 18.89,40.13 18.93,40.11 C 19.85,39.68 20.79,39.24 21.71,38.79 C 22.81,38.06 23,36.55 22.71,35.36 z" id="p4239" style="fill:#b77711;fill-opacity:1;stroke:none"/>
<path d="M 14.25,34.11 L 20.04,31.51" id="p4080" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 16.7,37.11 L 22.26,34.48" id="p4078-2" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.47,36.73 L 22.03,34.11" id="p4078" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 16.86,39.92 L 22.59,37.27" id="p4076-6" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.83,39.47 L 22.56,36.81" id="p4076" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 4.75,31.68 C 4.43,31.68 4.14,31.77 3.88,31.93 C 2.84,32.58 2.87,34.3 3.91,35.77 C 4.47,36.57 5.06,37.19 5.73,37.56 L 12.07,40.81 C 12.34,41 12.63,41.14 12.91,41.27 C 14.06,41.83 15.22,41.94 16.1,41.4 C 17.67,40.42 17.65,37.82 16.07,35.59 C 15.06,34.17 13.66,33.26 12.38,33.02 L 12.38,32.99 C 12.12,32.97 5.14,31.7 4.88,31.68 C 4.86,31.68 4.84,31.68 4.82,31.68 C 4.8,31.68 4.77,31.68 4.75,31.68 L 4.75,31.68 z" id="p3881-5" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 5.64,32.71 C 5.36,32.7 5.11,32.74 4.87,32.84 C 3.95,33.25 3.87,34.5 4.69,35.63 C 5.12,36.24 5.59,36.73 6.15,37.04 L 11.4,39.77 C 11.63,39.93 11.87,40.05 12.1,40.16 C 13.06,40.64 14.05,40.78 14.83,40.44 C 16.24,39.83 16.36,37.94 15.13,36.23 C 14.35,35.14 13.2,34.4 12.11,34.15 L 12.11,34.13 C 11.89,34.1 5.97,32.76 5.75,32.72 C 5.73,32.72 5.71,32.72 5.69,32.72 C 5.68,32.72 5.66,32.72 5.64,32.71 L 5.64,32.71 z" id="p3881-5-7" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 6.41,32.89 C 6.43,33.34 6.62,33.81 6.97,34.29 C 7.41,34.9 7.88,35.39 8.44,35.7 L 13.69,38.45 C 13.91,38.61 14.14,38.71 14.37,38.82 C 14.87,39.07 15.39,39.25 15.87,39.29 C 16.15,38.44 15.89,37.3 15.12,36.23 C 14.34,35.14 13.21,34.39 12.12,34.14 C 11.93,34.11 7.55,33.13 6.41,32.89 L 6.41,32.89 z" id="p3881-5-7-4" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.31,29.11 C 9.63,29.14 9.06,29.58 8.44,29.82 C 7.4,30.28 6.52,30.75 5.53,31.2 C 4.97,31.47 4.37,31.71 3.81,31.98 C 2.87,32.66 3.01,34.01 3.44,34.95 C 3.94,36.2 4.93,37.18 6.09,37.76 C 8.13,38.72 10.22,39.77 12.19,40.89 C 13.3,41.57 14.78,42.13 16.03,41.45 C 17.94,40.52 19.9,39.68 21.72,38.79 C 22.84,38.04 23.01,36.47 22.69,35.26 C 22.1,33.04 20.34,31.04 18.06,30.48 C 17.27,30.28 16.37,30.18 15.53,30.01 C 13.79,29.72 12.05,29.35 10.31,29.11 L 10.31,29.11 z" id="p3881-6" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,33.11 C 7.2,33.2 6.91,33.35 6.65,33.45 C 6.06,33.81 6.06,34.78 6.65,35.61 C 7.24,36.44 8.19,36.81 8.77,36.45 C 9.07,36.32 9.3,36.21 9.56,36.11 C 10.14,35.74 10.14,34.78 9.56,33.95 C 9.42,33.76 9.25,33.62 9.09,33.48 C 8.53,33.36 7.99,33.23 7.43,33.11 L 7.43,33.11 z" id="p3881-7-3-7" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.75,36.15 C 8.18,36.51 7.25,36.14 6.68,35.34 C 6.10,34.53 6.10,33.59 6.66,33.23 C 7.23,32.88 8.16,33.24 8.74,34.05 C 9.31,34.85 9.32,35.79 8.75,36.15 L 8.75,36.15 z" id="p3881-7-3" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.99,34.45 C 12.9,34.48 12.79,34.49 12.71,34.54 C 12.4,34.67 12.03,34.88 11.68,35.01 C 10.89,35.5 10.89,36.8 11.68,37.92 C 12.47,39.04 13.76,39.57 14.56,39.07 C 14.96,38.9 15.24,38.74 15.59,38.61 C 15.73,38.52 15.87,38.4 15.96,38.26 C 15.89,37.62 15.6,36.91 15.12,36.23 C 14.55,35.43 13.79,34.82 12.99,34.45 z" id="p3881-7-3-7-7" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.41,38.93 C 13.63,39.40 12.37,38.88 11.59,37.76 C 10.81,36.64 10.82,35.34 11.60,34.87 C 12.38,34.40 13.65,34.92 14.42,36.04 C 15.20,37.16 15.19,38.46 14.41,38.93 L 14.41,38.93 z" id="p3881-7-3-8" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,33.11 C 7.2,33.2 6.91,33.35 6.65,33.45 C 6.06,33.81 6.06,34.78 6.65,35.61 C 7.24,36.44 8.19,36.81 8.77,36.45 C 9.07,36.32 9.3,36.21 9.56,36.11 C 10.14,35.74 10.14,34.78 9.56,33.95 C 9.42,33.76 9.25,33.62 9.09,33.48" id="p3881-7-3-7-9" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.99,34.45 C 12.9,34.48 12.79,34.49 12.71,34.54 C 12.4,34.67 12.03,34.88 11.68,35.01 C 10.89,35.5 10.89,36.8 11.68,37.92 C 12.47,39.04 13.76,39.57 14.56,39.07 C 14.96,38.9 15.24,38.74 15.59,38.61 C 15.73,38.52 15.87,38.4 15.96,38.26" id="p3881-7-3-7-7-7" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 5.64,32.71 C 5.36,32.7 5.11,32.74 4.87,32.84 C 3.95,33.25 3.87,34.5 4.69,35.63 C 5.12,36.24 5.59,36.73 6.15,37.04 L 11.4,39.77 C 11.63,39.93 11.87,40.05 12.1,40.16 C 13.06,40.64 14.05,40.78 14.83,40.44 C 16.24,39.83 16.36,37.94 15.13,36.23 C 14.35,35.14 13.2,34.4 12.11,34.15 C 10.04,33.67 7.86,33.17 5.75,32.72 C 5.73,32.72 5.71,32.72 5.69,32.72 C 5.68,32.72 5.66,32.72 5.64,32.71 L 5.64,32.71 z" id="p3881-5-7-8" style="fill:none;stroke:#2c1b06;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.30,35.71 C 8.00,35.91 7.49,35.71 7.17,35.25 C 6.86,34.79 6.85,34.25 7.16,34.04 C 7.47,33.84 7.97,34.05 8.29,34.51 C 8.61,34.97 8.61,35.50 8.30,35.71 L 8.30,35.71 z" id="p3881-7-3-1" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,34.04 C 7.28,34.3 7.32,34.7 7.59,35.07 C 7.83,35.42 8.16,35.63 8.46,35.64 C 8.47,35.64 8.48,35.64 8.49,35.64 C 8.63,35.38 8.56,34.94 8.31,34.57 C 8.07,34.24 7.72,34.06 7.43,34.04 L 7.43,34.04 z" id="p3881-7-3-1-6" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 39.28,14.47 L 27.28,20.53 L 27.28,21.62 L 39.28,15.56 L 39.28,14.47 z" id="p5068" style="fill:#900000;fill-opacity:1;stroke:none;marker:none;visibility:visible;display:inline"/>
<path d="M 35.24,17.1 L 38.09,15.62" id="p5093" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 29.09,20.2 L 31.95,18.73" id="p5093-1" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2458">
<path d="M 19.03,20.03 C 19.71,20.06 20.29,20.5 20.91,20.75 C 21.95,21.2 22.82,21.67 23.82,22.11 C 24.38,22.38 24.98,22.62 25.53,22.89 C 26.47,23.57 26.34,24.93 25.91,25.86 C 25.4,27.11 24.42,28.09 23.25,28.67 C 21.22,29.63 19.13,30.68 17.16,31.8 C 16.04,32.48 14.56,33.04 13.32,32.36 C 11.44,31.43 9.47,30.61 7.63,29.7 C 6.5,28.95 6.34,27.38 6.66,26.17 C 7.24,23.95 9.01,21.96 11.28,21.4 C 12.07,21.2 12.98,21.1 13.82,20.93 C 15.55,20.64 17.29,20.27 19.03,20.03 L 19.03,20.03 z" id="p3881-2-7" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 18.23,23.92 L 12.76,21.34" id="p4082-6-4" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 7.79,23.83 L 13.92,26.74 C 13.92,26.74 16.58,28.9 18.95,30.83 C 18.35,31.15 17.74,31.47 17.17,31.8 C 16.05,32.48 14.57,33.04 13.32,32.36 C 12.51,31.98 11.69,31.6 10.88,31.2 C 10.85,31.19 10.82,31.18 10.79,31.17 C 10.71,31.13 10.62,31.09 10.54,31.05 C 10.5,31.03 10.45,31.04 10.42,31.02 C 9.49,30.59 8.55,30.15 7.63,29.7 C 6.51,28.95 6.35,27.38 6.67,26.17 C 6.88,25.34 7.27,24.54 7.79,23.83 L 7.79,23.83 z" id="p4122-0-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 6.63,26.27 L 18.1,31.3 C 17.79,31.47 17.47,31.63 17.17,31.8 C 16.05,32.48 14.57,33.04 13.32,32.36 C 12.51,31.98 11.69,31.6 10.88,31.2 C 10.85,31.19 10.82,31.18 10.79,31.17 C 10.71,31.13 10.62,31.09 10.54,31.05 C 10.5,31.03 10.45,31.04 10.42,31.02 C 9.49,30.59 8.55,30.15 7.63,29.7 C 6.54,28.97 6.35,27.46 6.63,26.27 L 6.63,26.27 z" id="p4239-2-9" style="fill:#b77711;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 15.1,25.02 L 9.31,22.42" id="p4080-7-3" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.65,28.02 L 7.09,25.39" id="p4078-2-1-7" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.88,27.64 L 7.32,25.02" id="p4078-5-9" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.49,30.83 L 6.76,28.18" id="p4076-6-9-2" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.51,30.38 L 6.79,27.72" id="p4076-7-4" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 19.03,20.03 C 19.71,20.06 20.29,20.5 20.91,20.75 C 21.95,21.2 22.82,21.67 23.82,22.11 C 24.38,22.38 24.98,22.62 25.53,22.89 C 26.47,23.57 26.34,24.93 25.91,25.86 C 25.4,27.11 24.42,28.09 23.25,28.67 C 21.22,29.63 19.13,30.68 17.16,31.8 C 16.04,32.48 14.56,33.04 13.32,32.36 C 11.4,31.43 9.45,30.59 7.63,29.7 C 6.5,28.95 6.34,27.38 6.66,26.17 C 7.24,23.95 9.01,21.96 11.28,21.4 C 12.07,21.2 12.98,21.1 13.82,20.93 C 15.55,20.64 17.29,20.27 19.03,20.03 L 19.03,20.03 z" id="p3881-6-0-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 24.91,16.14 L 39.41,23.39 C 39.41,26.66 39.41,29.66 39.41,32.64 L 24.91,39.89 L 10.41,32.64 C 10.41,29.61 10.41,25.88 10.41,23.39 L 24.91,16.14 z" id="p2993-7-32" style="fill:#be0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 34.47,20.93 L 39.41,23.39 L 39.41,32.64 L 24.97,39.86 L 24.97,28.74 L 34.47,20.93 L 34.47,20.93 z" id="p4502-8" style="fill:#7b0000;fill-opacity:1;stroke:none"/>
<path d="M 24.91,30.64 L 39.41,23.39 L 24.91,16.14 L 10.41,23.39 L 24.91,30.64 z" id="p2993-7-9-49" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 24.98,30.79 L 24.98,39.73" id="p3111-6" style="fill:none;stroke:#f63e35;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.32,17.35 L 35.88,21.6 L 29.41,24.85 L 20.85,20.57 L 27.32,17.35 z" id="p2993-7-9-7-0" style="fill:none;stroke:#5d2121;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 10.41,23.39 L 24.91,30.64 L 39.41,23.39" id="p2993-7-9-4-0" style="fill:none;stroke:#ff6d56;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 36.94,29.6 L 36.94,26.65 L 31.9,29.17 L 31.9,31.6" id="p4705-4" style="fill:none;stroke:#b02a2a;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24.91,16.14 L 39.41,23.39 C 39.41,26.66 39.41,29.66 39.41,32.64 L 24.91,39.89 L 10.41,32.64 C 10.41,29.61 10.41,25.88 10.41,23.39 L 24.91,16.14 z" id="p2993-7-3-6" style="fill:none;stroke:#2e0000;stroke-opacity:1;display:inline"/>
<path d="M 19.29,18.32 C 21.02,18.25 23.09,19.12 24.22,20.45 C 25.22,21.63 25.42,22.73 24.98,23.48 C 25.33,25.14 25.04,26.49 23.22,26.89 C 21.39,27.29 18.86,26.38 17.57,24.86 C 16.57,23.68 16.62,22.73 16.73,21.74 C 16.79,19.92 16.75,18.81 18.57,18.42 C 18.8,18.37 19.04,18.33 19.29,18.32 L 19.29,18.32 z" id="p4109-4" style="fill:#2e0000;fill-opacity:1;fill-rule:nonzero;stroke:#2e0000;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-29" style="fill:#be0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 8.97,12.67 L 21.47,18.92 L 21.47,23.26 L 8.97,17.01 L 8.97,12.67 z" id="p2993-7-9-8-8-5-59" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 26.69,13.04 L 29.97,14.7 L 29.97,21.32 L 22.38,25.14 L 22.38,17.07 L 22.29,16.76 L 26.69,13.04 z" id="p4170-7" style="fill:#7b0000;fill-opacity:1;stroke:none"/>
<path d="M 22.39,18.53 L 22.39,24.77" id="p5148-2" style="fill:none;stroke:#f63e35;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.48,7.45 L 29.98,14.7 L 22.35,18.51 L 7.85,11.26 L 15.48,7.45 z" id="p2993-7-9-8-8-51" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 29.98,14.7 L 22.35,18.51 L 7.85,11.26" id="p2993-7-9-8-8-57-9" style="fill:none;stroke:#ff6d56;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-2-6" style="fill:none;stroke:#2e0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.97,12.67 L 13.26,14.82 L 8.97,16.95 L 8.97,12.67 z" id="p2993-7-9-8-8-5-5-0" style="fill:#7b0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 21.47,31.22 L 12.96,26.98" id="p5229-8-1" style="fill:none;stroke:#ff5d5d;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 21.78,30.54 C 21.83,30.56 22.93,31.21 23,31.26 L 23,38.26 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54 z" id="p4502-0-2-8" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 15.63,33.72 L 23,37.97 L 23,38.26 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.72 z" id="p4925-8" style="fill:#be0000;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23,31.26 L 23,38.26 L 16.85,41.35 L 16.85,34.35 L 23,31.26 z" id="p4502-0-7" style="fill:#7b0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 21.35,30.76 L 12.83,26.52" id="p5229-81" style="fill:none;stroke:#3a0e0e;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 22.58,38.5 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54" id="p4502-0-2-0-6" style="fill:none;stroke:#2e0000;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.18,25.76 C 12.23,25.78 13.33,26.43 13.4,26.48 L 13.4,33.48 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76 z" id="p4502-0-2-4-0" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 6.03,28.94 L 13.4,33.19 L 13.4,33.48 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.94 z" id="p4925-0-0" style="fill:#be0000;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.4,26.48 L 13.4,33.48 L 7.24,36.57 L 7.24,29.57 L 13.4,26.48 L 13.4,26.48 z" id="p4502-0-1-2" style="fill:#7b0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 12.98,33.72 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76" id="p4502-0-2-0-9-1" style="fill:none;stroke:#2e0000;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 9.47,12.91 L 21.47,18.91 L 21.47,22.69 L 9.47,16.69 L 9.47,12.91 z" id="p2993-7-9-8-8-5-9-2" style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 9.47,14.26 L 21.47,20.32 L 21.47,21.41 L 9.47,15.35 L 9.47,14.26 z" id="p5068-5" style="fill:#900000;fill-opacity:1;stroke:none;marker:none;visibility:visible"/>
<path d="M 13.51,16.88 L 10.66,15.41" id="p5093-4" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 19.66,19.99 L 16.8,18.51" id="p5093-1-8" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<g id="g2493">
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.84,40.31 28.87,39.49 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-3" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 40.95,32.24 L 35.18,29.51" id="p4084-7" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 43.36,31.75 L 37.51,29.02" id="p4084-9-0" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 37.63,32.8 L 32.16,30.21" id="p4082-64" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.19,32.71 L 33.32,35.61 C 33.32,35.61 35.98,37.77 38.35,39.71 C 37.75,40.02 37.15,40.35 36.57,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 31.92,40.86 31.1,40.47 30.29,40.08 C 30.26,40.07 30.22,40.06 30.19,40.05 C 30.11,40.01 30.03,39.97 29.94,39.93 C 29.9,39.91 29.86,39.92 29.82,39.89 C 28.9,39.46 27.95,39.03 27.04,38.58 C 25.91,37.82 25.75,36.26 26.07,35.05 C 26.29,34.22 26.68,33.41 27.19,32.71 z" id="p4122-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 26.04,35.14 L 37.51,40.18 C 37.19,40.34 36.87,40.5 36.57,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 31.92,40.86 31.1,40.47 30.29,40.08 C 30.26,40.07 30.22,40.06 30.19,40.05 C 30.11,40.01 30.03,39.97 29.94,39.93 C 29.9,39.91 29.86,39.92 29.82,39.89 C 28.9,39.46 27.95,39.03 27.04,38.58 C 25.94,37.84 25.75,36.34 26.04,35.14 z" id="p4239-0" style="fill:#b77711;fill-opacity:1;stroke:none"/>
<path d="M 34.5,33.9 L 28.71,31.3" id="p4080-1" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.05,36.89 L 26.49,34.27" id="p4078-2-15" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 32.28,36.52 L 26.72,33.9" id="p4078-3" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 31.89,39.71 L 26.16,37.05" id="p4076-6-1" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.91,39.26 L 26.19,36.6" id="p4076-0" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 43.99,31.47 C 44.31,31.47 44.61,31.56 44.87,31.72 C 45.91,32.36 45.88,34.08 44.84,35.56 C 44.28,36.36 43.69,36.98 43.02,37.35 L 36.68,40.59 C 36.41,40.79 36.12,40.93 35.84,41.06 C 34.69,41.62 33.53,41.73 32.65,41.19 C 31.08,40.21 31.1,37.61 32.68,35.37 C 33.69,33.95 35.09,33.05 36.37,32.81 L 36.37,32.78 C 36.63,32.76 43.61,31.49 43.87,31.47 C 43.89,31.47 43.91,31.47 43.93,31.47 C 43.95,31.47 43.97,31.47 43.99,31.47 L 43.99,31.47 z" id="p3881-5-4" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 L 36.64,33.91 C 36.86,33.88 42.78,32.54 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-7" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 42.34,32.68 C 42.31,33.12 42.13,33.6 41.78,34.08 C 41.34,34.69 40.87,35.18 40.31,35.49 L 35.06,38.24 C 34.84,38.39 34.61,38.5 34.37,38.61 C 33.88,38.86 33.36,39.04 32.87,39.08 C 32.6,38.23 32.85,37.09 33.62,36.02 C 34.41,34.93 35.54,34.18 36.62,33.93 C 36.82,33.9 41.2,32.92 42.34,32.68 L 42.34,32.68 z" id="p3881-5-7-4-0" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.81,40.3 28.85,39.47 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-6-4" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27 C 40.22,33.14 40.76,33.02 41.32,32.89 L 41.32,32.89 z" id="p3881-7-3-7-3" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.31,33.10 C 40.85,33.19 40.35,33.54 40,34.04 C 39.42,34.85 39.43,35.78 40,36.14 C 40.56,36.49 41.48,36.13 42.06,35.32 C 42.63,34.52 42.66,33.58 42.09,33.23 C 41.88,33.10 41.58,33.05 41.31,33.10 z" id="p3881-7-3-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05 C 32.85,37.41 33.14,36.7 33.63,36.02 C 34.2,35.22 34.96,34.61 35.76,34.24 z" id="p3881-7-3-7-7-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.46,34.5 C 35.74,34.49 34.89,35.00 34.31,35.84 C 33.53,36.96 33.56,38.24 34.34,38.71 C 35.12,39.19 36.38,38.68 37.15,37.56 C 37.93,36.44 37.93,35.13 37.15,34.65 C 36.96,34.53 36.70,34.50 36.46,34.5 z" id="p3881-7-3-8-5" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27" id="p3881-7-3-7-9-7" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05" id="p3881-7-3-7-7-7-5" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 C 38.71,33.46 40.89,32.96 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-8-6" style="fill:none;stroke:#2c1b06;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.31,33.75 C 41.02,33.74 40.70,33.96 40.46,34.31 C 40.15,34.77 40.12,35.29 40.43,35.5 C 40.74,35.70 41.24,35.49 41.56,35.03 C 41.87,34.57 41.90,34.04 41.59,33.84 C 41.51,33.79 41.40,33.75 41.31,33.75 z" id="p3881-7-3-1-4" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.35,33.73 C 41.50,33.99 41.45,34.39 41.19,34.76 C 40.95,35.10 40.62,35.32 40.32,35.33 C 40.31,35.33 40.30,35.33 40.29,35.33 C 40.15,35.06 40.22,34.62 40.47,34.26 C 40.71,33.93 41.05,33.75 41.35,33.73 L 41.35,33.73 z" id="p3881-7-3-1-6-7" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2459">
<path d="M 31.98,17.58 C 31.85,17.59 31.71,17.63 31.58,17.67 C 28.37,19.07 28.21,19.27 25.84,20.42 C 25.64,20.54 25.46,20.68 25.29,20.85 C 24.96,21.18 24.71,21.61 24.55,22.09 C 24.24,23.08 24.28,24.31 24.75,25.58 C 25.36,27.18 26.54,28.43 27.79,29.01 L 27.79,29.04 C 28.05,29.13 34.87,32.22 35.13,32.32 C 35.15,32.32 35.18,32.31 35.2,32.32 C 35.22,32.32 35.24,32.34 35.26,32.35 C 35.6,32.43 35.92,32.43 36.24,32.36 C 38.18,31.53 40.26,30.39 41.31,29.84 C 42.58,29.52 43.08,27.92 42.44,26.26 C 42.11,25.36 41.7,24.62 41.12,24.09 L 35.54,19.31 C 35.31,19.05 35.08,18.84 34.83,18.63 C 33.94,17.9 32.94,17.49 31.98,17.58 z" id="p3881-5-2-4-3-07" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 34.69,26.49 L 40.48,23.89" id="p4080-79-8-3" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.64,24.26 L 38.12,21.69" id="p4082-5-3-6" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 30.16,22.4 L 35.94,19.68" id="p4084-5-3-8" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 42.11,25.5 L 32.77,29.97 C 32.77,29.97 32.58,30.97 32.55,31.16 C 33.7,31.67 35.05,32.28 35.14,32.31 C 35.16,32.32 35.18,32.31 35.2,32.31 C 35.22,32.32 35.24,32.34 35.27,32.34 C 35.6,32.43 35.92,32.42 36.23,32.34 C 38.17,31.52 40.25,30.39 41.3,29.84 C 42.57,29.53 43.09,27.92 42.45,26.25 C 42.35,25.98 42.23,25.74 42.11,25.5 z" id="p7129-9" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.85,29 L 42.41,26.37" id="p4078-2-4-8-0" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 42.64,27 L 33.05,31.38 C 33.88,31.75 35.07,32.29 35.14,32.31 C 35.16,32.32 35.18,32.31 35.2,32.31 C 35.22,32.32 35.24,32.34 35.27,32.34 C 35.6,32.43 35.92,32.42 36.23,32.34 C 38.17,31.52 40.25,30.39 41.3,29.84 C 42.37,29.58 42.89,28.37 42.64,27 z" id="p7131-2" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.91,31.13 L 42.64,28.28" id="p4076-6-5-6-2" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.62,28.62 L 42.18,26" id="p4078-4-2-8" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 36.89,30.67 L 42.61,27.83" id="p4076-2-4-5" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.9,20.84 L 33.75,18.11" id="p4084-9-2-2-2" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.98,17.58 C 31.85,17.59 31.71,17.63 31.58,17.67 C 28.37,19.07 28.21,19.27 25.84,20.42 C 25.64,20.54 25.46,20.68 25.29,20.85 C 24.96,21.18 24.71,21.61 24.55,22.09 C 24.24,23.08 24.28,24.31 24.75,25.58 C 25.36,27.18 26.54,28.43 27.79,29.01 L 27.79,29.04 C 28.05,29.13 34.87,32.22 35.13,32.32 C 35.15,32.32 35.18,32.31 35.2,32.32 C 35.22,32.32 35.24,32.34 35.26,32.35 C 35.6,32.43 35.92,32.43 36.24,32.36 C 38.18,31.53 40.26,30.39 41.31,29.84 C 42.58,29.52 43.08,27.92 42.44,26.26 C 42.11,25.36 41.7,24.62 41.12,24.09 L 35.54,19.31 C 35.31,19.05 35.08,18.84 34.83,18.63 C 33.94,17.9 32.94,17.49 31.98,17.58 z" id="p3881-5-2-4-3-0-5" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g2442">
<path d="M 6.43,20.32 C 6.38,20.35 5.28,21 5.21,21.04 L 5.21,28.03 L 11.36,31.13 C 11.44,31.08 12.52,30.44 12.58,30.41 L 12.58,23.41 L 6.43,20.32 z" id="p4502-0-2-5" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 5.21,21.04 L 5.21,28.03 L 11.36,31.13 L 11.36,24.13 L 5.21,21.04 L 5.21,21.04 z" id="p4502-0-16" style="fill:#7b0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 6.43,20.32 C 6.38,20.35 5.28,21 5.21,21.04 L 5.21,28.03 L 11.36,31.13 C 11.44,31.08 12.52,30.44 12.58,30.41 L 12.58,23.41 L 6.43,20.32 z" id="p4502-0-2-5-1" style="fill:none;stroke:#2e0000;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-4" style="fill:#be0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 14.27,21.14 L 9.34,23.61 L 9.34,32.86 L 23.77,40.07 L 23.77,28.95 L 14.27,21.14 z" id="p4502-88" style="fill:#7b0000;fill-opacity:1;stroke:none"/>
<path d="M 23.84,30.85 L 9.34,23.6 L 23.84,16.35 L 38.34,23.6 L 23.84,30.85 z" id="p2993-7-9-85" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.77,31 L 23.77,39.94" id="p3111-7" style="fill:none;stroke:#f63e35;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 28.73,21.96 L 20.17,26.21 L 26.64,29.46 L 35.2,25.18 L 28.73,21.96 L 28.73,21.96 z" id="p2993-7-9-7-2" style="fill:none;stroke:#5d2121;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 38.34,23.6 L 23.84,30.85 L 9.34,23.6" id="p2993-7-9-4-2" style="fill:none;stroke:#ff6d56;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 15.77,32.01 L 15.77,29.06 L 20.81,31.58 L 20.81,34.01" id="p4705-2" style="fill:none;stroke:#b02a2a;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-3-0" style="fill:none;stroke:#2e0000;stroke-opacity:1;display:inline"/>
<path d="M 22.43,15.02 C 20.69,14.94 18.62,15.81 17.49,17.14 C 16.49,18.32 16.29,19.43 16.73,20.17 C 16.39,21.84 16.67,23.18 18.49,23.58 C 20.33,23.98 22.85,23.07 24.14,21.55 C 25.14,20.37 25.1,19.43 24.98,18.44 C 24.92,16.61 24.96,15.51 23.14,15.11 C 22.91,15.06 22.67,15.03 22.43,15.02 L 22.43,15.02 z" id="p4109-9" style="fill:#2e0000;fill-opacity:1;fill-rule:nonzero;stroke:#2e0000;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 C 8.49,14.66 8.49,17.26 8.49,18.61 L 16.11,22.42 L 30.61,15.17 C 30.61,12.92 30.61,10.22 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-7" style="fill:#be0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 11.77,10.33 L 8.49,11.99 L 8.49,18.61 L 16.08,22.42 L 16.08,14.36 L 16.18,14.05 L 11.77,10.33 z" id="p4170-3" style="fill:#7b0000;fill-opacity:1;stroke:none"/>
<path d="M 16.07,15.82 L 16.07,22.05" id="p5148-5" style="fill:none;stroke:#f63e35;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 L 16.11,15.8 L 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-8-7" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 8.49,11.99 L 16.11,15.8 L 30.61,8.55" id="p2993-7-9-8-8-57-8" style="fill:none;stroke:#ff6d56;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 C 8.49,14.66 8.49,17.26 8.49,18.61 L 16.11,22.42 L 30.61,15.17 C 30.61,12.92 30.61,10.22 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-2-7" style="fill:none;stroke:#2e0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g2497">
<path d="M 12.18,27.63 C 12.05,27.64 11.91,27.68 11.78,27.71 C 8.57,29.12 8.41,29.32 6.04,30.47 C 5.84,30.58 5.65,30.73 5.49,30.9 C 5.16,31.23 4.91,31.66 4.75,32.15 C 4.43,33.13 4.47,34.37 4.95,35.63 C 5.56,37.24 6.73,38.49 7.99,39.06 L 7.99,39.09 C 8.25,39.18 15.07,42.28 15.33,42.37 C 15.35,42.38 15.37,42.37 15.39,42.37 C 15.42,42.38 15.44,42.4 15.46,42.41 C 15.79,42.49 16.12,42.49 16.44,42.41 C 18.37,41.59 20.46,40.44 21.51,39.9 C 22.78,39.58 23.28,37.98 22.64,36.31 C 22.3,35.42 21.9,34.67 21.31,34.14 L 15.73,29.36 C 15.51,29.1 15.28,28.89 15.03,28.68 C 14.14,27.95 13.14,27.54 12.18,27.63 z" id="p3881-5-2-4-3" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.89,36.55 L 20.68,33.95" id="p4080-79-8" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 12.84,34.32 L 18.31,31.73" id="p4082-5-3" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 10.36,32.46 L 16.13,29.73" id="p4084-5-3" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 22.31,35.56 L 12.96,40.03 C 12.96,40.03 12.78,41.03 12.75,41.21 C 13.89,41.73 15.25,42.34 15.34,42.37 C 15.36,42.38 15.38,42.36 15.4,42.37 C 15.42,42.38 15.44,42.4 15.46,42.4 C 15.8,42.49 16.12,42.48 16.43,42.4 C 18.37,41.58 20.45,40.45 21.5,39.9 C 22.76,39.58 23.28,37.98 22.65,36.31 C 22.55,36.04 22.43,35.8 22.31,35.56 z" id="p7129" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 17.04,39.05 L 22.61,36.43" id="p4078-2-4-8" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 22.84,37.06 L 13.25,41.43 C 14.08,41.81 15.27,42.34 15.34,42.37 C 15.36,42.38 15.38,42.36 15.4,42.37 C 15.42,42.38 15.44,42.4 15.46,42.4 C 15.8,42.49 16.12,42.48 16.43,42.4 C 18.37,41.58 20.45,40.45 21.5,39.9 C 22.57,39.63 23.09,38.43 22.84,37.06 z" id="p7131" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 17.11,41.18 L 22.84,38.34" id="p4076-6-5-6" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.82,38.68 L 22.38,36.06" id="p4078-4-2" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 17.08,40.73 L 22.81,37.89" id="p4076-2-4" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 8.09,30.89 L 13.95,28.16" id="p4084-9-2-2" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 15.47,42.41 C 15.8,42.49 16.13,42.49 16.45,42.41 C 17.72,42.1 18.21,40.48 17.58,38.82 C 17.24,37.92 16.82,37.17 16.24,36.64 L 10.68,31.87 C 10.46,31.62 10.2,31.41 9.95,31.2 C 8.93,30.36 7.76,29.94 6.7,30.21 C 4.78,30.69 4.01,33.12 4.97,35.64 C 5.58,37.25 6.75,38.48 8,39.05 L 7.99,39.08 C 8.25,39.17 15.08,42.28 15.34,42.37 C 15.36,42.38 15.38,42.38 15.4,42.39 C 15.42,42.4 15.45,42.4 15.47,42.41 L 15.47,42.41 z" id="p3881-5-2-4" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.18,27.63 C 12.05,27.64 11.91,27.68 11.78,27.71 C 8.57,29.12 8.41,29.32 6.04,30.47 C 5.84,30.58 5.65,30.73 5.49,30.9 C 5.16,31.23 4.91,31.66 4.75,32.15 C 4.43,33.13 4.47,34.37 4.95,35.63 C 5.56,37.24 6.73,38.49 7.99,39.06 L 7.99,39.09 C 8.25,39.18 15.07,42.28 15.33,42.37 C 15.35,42.38 15.37,42.37 15.39,42.37 C 15.42,42.38 15.44,42.4 15.46,42.41 C 15.79,42.49 16.12,42.49 16.44,42.41 C 18.37,41.59 20.46,40.44 21.51,39.9 C 22.78,39.58 23.28,37.98 22.64,36.31 C 22.3,35.42 21.9,34.67 21.31,34.14 L 15.73,29.36 C 15.51,29.1 15.28,28.89 15.03,28.68 C 14.14,27.95 13.14,27.54 12.18,27.63 z" id="p3881-5-2-4-3-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.53,41.44 C 14.82,41.55 15.12,41.6 15.42,41.59 C 16.59,41.55 17.17,40.49 16.72,39.23 C 16.49,38.56 16.17,37.98 15.68,37.53 L 11,33.4 C 10.82,33.2 10.6,33.01 10.39,32.83 C 9.53,32.1 8.5,31.64 7.51,31.67 C 5.73,31.74 4.85,33.33 5.52,35.22 C 5.95,36.43 6.92,37.45 8.01,38.04 L 8,38.05 C 8.23,38.15 14.19,41.3 14.41,41.4 C 14.43,41.41 14.45,41.41 14.47,41.42 C 14.49,41.43 14.51,41.43 14.53,41.44 L 14.53,41.44 z" id="p3881-5-2-4-6" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.68,31.68 C 7.52,32.25 7.55,32.93 7.81,33.65 C 8.23,34.86 9.21,35.88 10.31,36.46 L 10.28,36.5 C 10.51,36.59 16.46,39.74 16.68,39.84 C 16.7,39.85 16.73,39.86 16.75,39.87 C 16.76,39.88 16.79,39.86 16.81,39.87 C 16.82,39.87 16.83,39.87 16.84,39.87 C 16.82,39.66 16.79,39.47 16.71,39.25 C 16.48,38.57 16.17,37.98 15.68,37.53 L 11,33.4 C 10.81,33.19 10.61,33.02 10.4,32.84 C 9.59,32.15 8.62,31.7 7.68,31.68 z" id="p3881-5-2-4-6-7" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.12,31.75 C 8.09,31.76 8.06,31.76 8.03,31.78 C 7.58,31.97 7.28,32.12 6.78,32.4 C 5.95,32.91 5.98,34.26 6.81,35.43 C 7.63,36.6 8.95,37.13 9.78,36.62 C 10.31,36.29 10.6,36.25 11,36 C 11.63,35.6 11.78,34.71 11.43,33.78 L 11,33.4 C 10.81,33.19 10.61,33.02 10.4,32.84 C 9.72,32.26 8.91,31.87 8.12,31.75 z" id="p3881-7-2-2" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 9.72,36.50 C 8.92,37.00 7.61,36.47 6.80,35.32 C 6.00,34.17 6.00,32.83 6.81,32.34 C 7.61,31.84 8.92,32.37 9.72,33.52 C 10.53,34.67 10.53,36.00 9.72,36.50 L 9.72,36.50 z" id="p3881-7-2" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.12,31.75 C 8.09,31.76 8.06,31.76 8.03,31.78 C 7.58,31.97 7.28,32.12 6.78,32.4 C 5.95,32.91 5.98,34.26 6.81,35.43 C 7.63,36.6 8.95,37.13 9.78,36.62 C 10.31,36.29 10.6,36.25 11,36 C 11.63,35.6 11.78,34.71 11.43,33.78" id="p3881-7-2-2-4" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.37,35.65 C 13.2,35.65 13.04,35.69 12.9,35.78 C 12.64,35.9 12.44,36.05 12.21,36.18 C 11.65,36.53 11.65,37.47 12.21,38.28 C 12.78,39.08 13.71,39.44 14.28,39.09 C 14.53,39.01 14.71,38.82 14.93,38.68 C 15.38,38.4 15.48,37.75 15.21,37.09 L 13.59,35.68 C 13.52,35.67 13.44,35.65 13.37,35.65 z" id="p3881-7-2-6-3" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.27,38.96 C 13.72,39.29 12.84,38.93 12.29,38.16 C 11.74,37.38 11.74,36.48 12.29,36.15 C 12.83,35.82 13.72,36.18 14.26,36.95 C 14.81,37.73 14.81,38.63 14.27,38.96 L 14.27,38.96 z" id="p3881-7-2-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.59,35.68 C 13.52,35.67 13.44,35.65 13.37,35.65 C 13.2,35.65 13.04,35.69 12.9,35.78 C 12.64,35.9 12.44,36.05 12.21,36.18 C 11.65,36.53 11.65,37.47 12.21,38.28 C 12.78,39.08 13.71,39.44 14.28,39.09 C 14.53,39.01 14.71,38.82 14.93,38.68 C 15.38,38.4 15.48,37.75 15.21,37.09" id="p3881-7-2-6-3-8" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.53,41.44 C 14.82,41.55 15.12,41.6 15.42,41.59 C 16.59,41.55 17.17,40.49 16.72,39.23 C 16.49,38.56 16.17,37.98 15.68,37.53 L 11,33.4 C 10.82,33.2 10.6,33.01 10.39,32.83 C 9.53,32.1 8.5,31.64 7.51,31.67 C 5.73,31.74 4.85,33.33 5.52,35.22 C 5.95,36.43 6.92,37.45 8.01,38.04 L 8,38.05 C 8.23,38.15 14.19,41.3 14.41,41.4 C 14.43,41.41 14.45,41.41 14.47,41.42 C 14.49,41.43 14.51,41.43 14.53,41.44 L 14.53,41.44 z" id="p3881-5-2-4-6-5" style="fill:none;stroke:#2c1b06;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.83,38.36 C 13.53,38.56 13.02,38.36 12.70,37.90 C 12.39,37.44 12.38,36.90 12.69,36.69 C 13.00,36.49 13.50,36.70 13.82,37.16 C 14.14,37.62 14.14,38.15 13.83,38.36 L 13.83,38.36 z" id="p3881-7-3-1-5-5" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.97,36.62 C 12.82,36.88 12.86,37.28 13.12,37.65 C 13.36,37.99 13.7,38.20 14,38.21 C 14.01,38.21 14.02,38.21 14.03,38.21 C 14.17,37.95 14.1,37.51 13.84,37.15 C 13.61,36.82 13.26,36.64 12.97,36.62 z" id="p3881-7-3-1-6-5-5" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2451">
<path d="M 15.29,17.58 C 15.42,17.59 15.56,17.63 15.69,17.67 C 18.9,19.07 19.06,19.27 21.43,20.42 C 21.63,20.54 21.81,20.68 21.98,20.85 C 22.31,21.18 22.56,21.61 22.72,22.09 C 23.03,23.08 22.99,24.31 22.52,25.58 C 21.91,27.18 20.73,28.43 19.48,29.01 L 19.48,29.04 C 19.22,29.13 12.4,32.22 12.14,32.32 C 12.12,32.32 12.09,32.31 12.07,32.32 C 12.05,32.32 12.03,32.34 12.01,32.35 C 11.67,32.43 11.35,32.43 11.03,32.36 C 9.09,31.53 7.01,30.39 5.96,29.84 C 4.69,29.52 4.19,27.92 4.83,26.26 C 5.16,25.36 5.57,24.62 6.15,24.09 L 11.73,19.31 C 11.96,19.05 12.19,18.84 12.44,18.63 C 13.33,17.9 14.33,17.49 15.29,17.58 z" id="p3881-5-2-4-3-07-8" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.58,26.49 L 6.79,23.89" id="p4080-79-8-3-8" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 14.63,24.26 L 9.15,21.69" id="p4082-5-3-6-5" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 17.11,22.4 L 11.33,19.68" id="p4084-5-3-8-1" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 5.16,25.5 L 14.5,29.97 C 14.5,29.97 14.69,30.97 14.72,31.16 C 13.57,31.67 12.22,32.28 12.13,32.31 C 12.11,32.32 12.09,32.31 12.07,32.31 C 12.05,32.32 12.03,32.34 12,32.34 C 11.67,32.43 11.35,32.42 11.04,32.34 C 9.1,31.52 7.02,30.39 5.97,29.84 C 4.7,29.53 4.18,27.92 4.82,26.25 C 4.92,25.98 5.04,25.74 5.16,25.5 z" id="p7129-9-5" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.42,29 L 4.86,26.37" id="p4078-2-4-8-0-2" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 4.63,27 L 14.22,31.38 C 13.39,31.75 12.2,32.29 12.13,32.31 C 12.11,32.32 12.09,32.31 12.07,32.31 C 12.05,32.32 12.03,32.34 12,32.34 C 11.67,32.43 11.35,32.42 11.04,32.34 C 9.1,31.52 7.02,30.39 5.97,29.84 C 4.9,29.58 4.38,28.37 4.63,27 z" id="p7131-2-6" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.36,31.13 L 4.63,28.28" id="p4076-6-5-6-2-9" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 10.65,28.62 L 5.09,26" id="p4078-4-2-8-2" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 10.38,30.67 L 4.66,27.83" id="p4076-2-4-5-1" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 19.37,20.84 L 13.52,18.11" id="p4084-9-2-2-2-8" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 15.29,17.58 C 15.42,17.59 15.56,17.63 15.69,17.67 C 18.9,19.07 19.06,19.27 21.43,20.42 C 21.63,20.54 21.81,20.68 21.98,20.85 C 22.31,21.18 22.56,21.61 22.72,22.09 C 23.03,23.08 22.99,24.31 22.52,25.58 C 21.91,27.18 20.73,28.43 19.48,29.01 L 19.48,29.04 C 19.22,29.13 12.4,32.22 12.14,32.32 C 12.12,32.32 12.09,32.31 12.07,32.32 C 12.05,32.32 12.03,32.34 12.01,32.35 C 11.67,32.43 11.35,32.43 11.03,32.36 C 9.09,31.53 7.01,30.39 5.96,29.84 C 4.69,29.52 4.19,27.92 4.83,26.26 C 5.16,25.36 5.57,24.62 6.15,24.09 L 11.73,19.31 C 11.96,19.05 12.19,18.84 12.44,18.63 C 13.33,17.9 14.33,17.49 15.29,17.58 z" id="p3881-5-2-4-3-0-5-6" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g2468">
<path d="M 40.84,20.32 C 40.89,20.35 41.99,21 42.06,21.04 L 42.06,28.03 L 35.91,31.13 C 35.83,31.08 34.75,30.44 34.69,30.41 L 34.69,23.41 L 40.84,20.32 z" id="p4502-0-2-5-2" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 42.06,21.04 L 42.06,28.03 L 35.91,31.13 L 35.91,24.13 L 42.06,21.04 L 42.06,21.04 z" id="p4502-0-16-1" style="fill:#7b0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 40.84,20.32 C 40.89,20.35 41.99,21 42.06,21.04 L 42.06,28.03 L 35.91,31.13 C 35.83,31.08 34.75,30.44 34.69,30.41 L 34.69,23.41 L 40.84,20.32 z" id="p4502-0-2-5-1-3" style="fill:none;stroke:#2e0000;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 23.43,16.35 L 37.93,23.6 C 37.93,26.87 37.93,29.87 37.93,32.85 L 23.43,40.1 L 8.93,32.85 C 8.93,29.82 8.93,26.09 8.93,23.6 L 23.43,16.35 z" id="p2993-7-4-6" style="fill:#be0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 32.99,21.14 L 37.93,23.61 L 37.93,32.86 L 23.49,40.07 L 23.49,28.95 L 32.99,21.14 z" id="p4502-88-3" style="fill:#7b0000;fill-opacity:1;stroke:none"/>
<path d="M 23.43,30.85 L 37.93,23.6 L 23.43,16.35 L 8.93,23.6 L 23.43,30.85 z" id="p2993-7-9-85-8" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.49,31 L 23.49,39.94" id="p3111-7-9" style="fill:none;stroke:#f63e35;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 18.53,21.96 L 27.09,26.21 L 20.62,29.46 L 12.06,25.18 L 18.53,21.96 L 18.53,21.96 z" id="p2993-7-9-7-2-4" style="fill:none;stroke:#5d2121;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 8.93,23.6 L 23.43,30.85 L 37.93,23.6" id="p2993-7-9-4-2-9" style="fill:none;stroke:#ff6d56;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 31.49,32.01 L 31.49,29.06 L 26.46,31.58 L 26.46,34.01" id="p4705-2-7" style="fill:none;stroke:#b02a2a;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.43,16.35 L 37.93,23.6 C 37.93,26.87 37.93,29.87 37.93,32.85 L 23.43,40.1 L 8.93,32.85 C 8.93,29.82 8.93,26.09 8.93,23.6 L 23.43,16.35 z" id="p2993-7-3-0-2" style="fill:none;stroke:#2e0000;stroke-opacity:1;display:inline"/>
<path d="M 24.84,15.02 C 26.57,14.94 28.65,15.81 29.78,17.14 C 30.77,18.32 30.97,19.43 30.53,20.17 C 30.88,21.84 30.59,23.18 28.78,23.58 C 26.94,23.98 24.41,23.07 23.12,21.55 C 22.12,20.37 22.17,19.43 22.28,18.44 C 22.34,16.61 22.3,15.51 24.12,15.11 C 24.35,15.06 24.59,15.03 24.84,15.02 L 24.84,15.02 z" id="p4109-9-7" style="fill:#2e0000;fill-opacity:1;fill-rule:nonzero;stroke:#2e0000;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.27,4.74 L 38.77,11.99 C 38.77,14.66 38.77,17.26 38.77,18.61 L 31.15,22.42 L 16.65,15.17 C 16.65,12.92 16.65,10.22 16.65,8.55 L 24.27,4.74 z" id="p2993-7-9-8-7-2" style="fill:#be0000;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 35.49,10.33 L 38.77,11.99 L 38.77,18.61 L 31.18,22.42 L 31.18,14.36 L 31.09,14.05 L 35.49,10.33 z" id="p4170-3-4" style="fill:#7b0000;fill-opacity:1;stroke:none"/>
<path d="M 31.19,15.82 L 31.19,22.05" id="p5148-5-1" style="fill:none;stroke:#f63e35;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.28,4.74 L 38.78,11.99 L 31.15,15.8 L 16.65,8.55 L 24.28,4.74 z" id="p2993-7-9-8-8-7-2" style="fill:#ff3030;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 38.78,11.99 L 31.15,15.8 L 16.65,8.55" id="p2993-7-9-8-8-57-8-6" style="fill:none;stroke:#ff6d56;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.27,4.74 L 38.77,11.99 C 38.77,14.66 38.77,17.26 38.77,18.61 L 31.15,22.42 L 16.65,15.17 C 16.65,12.92 16.65,10.22 16.65,8.55 L 24.27,4.74 z" id="p2993-7-9-8-2-7-8" style="fill:none;stroke:#2e0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g2497">
<path d="M 35.09,27.63 C 35.22,27.64 35.36,27.68 35.49,27.71 C 38.7,29.12 38.86,29.32 41.23,30.47 C 41.43,30.58 41.62,30.73 41.78,30.9 C 42.11,31.23 42.36,31.66 42.52,32.15 C 42.84,33.13 42.8,34.37 42.32,35.63 C 41.71,37.24 40.54,38.49 39.28,39.06 L 39.28,39.09 C 39.02,39.18 32.2,42.28 31.94,42.37 C 31.92,42.38 31.9,42.37 31.88,42.37 C 31.85,42.38 31.83,42.4 31.81,42.41 C 31.48,42.49 31.15,42.49 30.83,42.41 C 28.9,41.59 26.81,40.44 25.76,39.9 C 24.49,39.58 23.99,37.98 24.63,36.31 C 24.97,35.42 25.37,34.67 25.96,34.14 L 31.54,29.36 C 31.76,29.1 31.99,28.89 32.24,28.68 C 33.13,27.95 34.13,27.54 35.09,27.63 z" id="p3881-5-2-4-3-4" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.38,36.55 L 26.59,33.95" id="p4080-79-8-34" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 34.43,34.32 L 28.96,31.73" id="p4082-5-3-1" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 36.91,32.46 L 31.14,29.73" id="p4084-5-3-5" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24.96,35.56 L 34.31,40.03 C 34.31,40.03 34.49,41.03 34.52,41.21 C 33.38,41.73 32.02,42.34 31.93,42.37 C 31.91,42.38 31.89,42.36 31.87,42.37 C 31.85,42.38 31.83,42.4 31.81,42.4 C 31.47,42.49 31.15,42.48 30.84,42.4 C 28.9,41.58 26.82,40.45 25.77,39.9 C 24.51,39.58 23.99,37.98 24.62,36.31 C 24.72,36.04 24.84,35.8 24.96,35.56 z" id="p7129-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.23,39.05 L 24.66,36.43" id="p4078-2-4-8-00" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 24.43,37.06 L 34.02,41.43 C 33.19,41.81 32,42.34 31.93,42.37 C 31.91,42.38 31.89,42.36 31.87,42.37 C 31.85,42.38 31.83,42.4 31.81,42.4 C 31.47,42.49 31.15,42.48 30.84,42.4 C 28.9,41.58 26.82,40.45 25.77,39.9 C 24.7,39.63 24.18,38.43 24.43,37.06 z" id="p7131-28" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.16,41.18 L 24.43,38.34" id="p4076-6-5-6-6" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 30.45,38.68 L 24.89,36.06" id="p4078-4-2-5" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 30.19,40.73 L 24.46,37.89" id="p4076-2-4-0" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 39.18,30.89 L 33.32,28.16" id="p4084-9-2-2-9" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.8,42.41 C 31.47,42.49 31.14,42.49 30.82,42.41 C 29.55,42.1 29.06,40.48 29.69,38.82 C 30.03,37.92 30.45,37.17 31.03,36.64 L 36.59,31.87 C 36.81,31.62 37.07,31.41 37.32,31.2 C 38.34,30.36 39.51,29.94 40.57,30.21 C 42.49,30.69 43.26,33.12 42.3,35.64 C 41.69,37.25 40.52,38.48 39.27,39.05 L 39.28,39.08 C 39.02,39.17 32.19,42.28 31.93,42.37 C 31.91,42.38 31.89,42.38 31.87,42.39 C 31.85,42.4 31.82,42.4 31.8,42.41 L 31.8,42.41 z" id="p3881-5-2-4-0" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.09,27.63 C 35.22,27.64 35.36,27.68 35.49,27.71 C 38.7,29.12 38.86,29.32 41.23,30.47 C 41.43,30.58 41.62,30.73 41.78,30.9 C 42.11,31.23 42.36,31.66 42.52,32.15 C 42.84,33.13 42.8,34.37 42.32,35.63 C 41.71,37.24 40.54,38.49 39.28,39.06 L 39.28,39.09 C 39.02,39.18 32.2,42.28 31.94,42.37 C 31.92,42.38 31.9,42.37 31.88,42.37 C 31.85,42.38 31.83,42.4 31.81,42.41 C 31.48,42.49 31.15,42.49 30.83,42.41 C 28.9,41.59 26.81,40.44 25.76,39.9 C 24.49,39.58 23.99,37.98 24.63,36.31 C 24.97,35.42 25.37,34.67 25.96,34.14 L 31.54,29.36 C 31.76,29.1 31.99,28.89 32.24,28.68 C 33.13,27.95 34.13,27.54 35.09,27.63 z" id="p3881-5-2-4-3-0-9" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.74,41.44 C 32.45,41.55 32.15,41.6 31.85,41.59 C 30.68,41.55 30.1,40.49 30.55,39.23 C 30.78,38.56 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.45,33.2 36.67,33.01 36.88,32.83 C 37.74,32.1 38.77,31.64 39.76,31.67 C 41.54,31.74 42.42,33.33 41.75,35.22 C 41.32,36.43 40.35,37.45 39.26,38.04 L 39.27,38.05 C 39.04,38.15 33.08,41.3 32.86,41.4 C 32.84,41.41 32.82,41.41 32.8,41.42 C 32.78,41.43 32.76,41.43 32.74,41.44 L 32.74,41.44 z" id="p3881-5-2-4-6-2" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.59,31.68 C 39.75,32.25 39.72,32.93 39.46,33.65 C 39.04,34.86 38.06,35.88 36.96,36.46 L 36.99,36.5 C 36.76,36.59 30.81,39.74 30.59,39.84 C 30.57,39.85 30.54,39.86 30.52,39.87 C 30.51,39.88 30.48,39.86 30.46,39.87 C 30.45,39.87 30.44,39.87 30.43,39.87 C 30.45,39.66 30.48,39.47 30.56,39.25 C 30.79,38.57 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.46,33.19 36.66,33.02 36.87,32.84 C 37.68,32.15 38.65,31.7 39.59,31.68 z" id="p3881-5-2-4-6-7-8" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.15,31.75 C 39.18,31.76 39.21,31.76 39.24,31.78 C 39.69,31.97 39.99,32.12 40.49,32.4 C 41.32,32.91 41.29,34.26 40.46,35.43 C 39.64,36.6 38.32,37.13 37.49,36.62 C 36.96,36.29 36.67,36.25 36.27,36 C 35.64,35.6 35.49,34.71 35.84,33.78 L 36.27,33.4 C 36.46,33.19 36.66,33.02 36.87,32.84 C 37.55,32.26 38.36,31.87 39.15,31.75 z" id="p3881-7-2-2-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 37.58,36.52 C 38.38,37.02 39.69,36.49 40.49,35.34 C 41.30,34.19 41.30,32.86 40.49,32.36 C 39.68,31.86 38.38,32.39 37.57,33.54 C 36.77,34.69 36.77,36.02 37.58,36.52 L 37.58,36.52 z" id="p3881-7-2-69" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.15,31.75 C 39.18,31.76 39.21,31.76 39.24,31.78 C 39.69,31.97 39.99,32.12 40.49,32.4 C 41.32,32.91 41.29,34.26 40.46,35.43 C 39.64,36.6 38.32,37.13 37.49,36.62 C 36.96,36.29 36.67,36.25 36.27,36 C 35.64,35.6 35.49,34.71 35.84,33.78" id="p3881-7-2-2-4-0" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.9,35.65 C 34.07,35.65 34.23,35.69 34.37,35.78 C 34.63,35.9 34.83,36.05 35.06,36.18 C 35.62,36.53 35.62,37.47 35.06,38.28 C 34.49,39.08 33.56,39.44 32.99,39.09 C 32.74,39.01 32.56,38.82 32.34,38.68 C 31.89,38.4 31.79,37.75 32.06,37.09 L 33.68,35.68 C 33.75,35.67 33.83,35.65 33.9,35.65 z" id="p3881-7-2-6-3-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.07,39.01 C 33.61,39.34 34.50,38.98 35.04,38.20 C 35.59,37.43 35.59,36.53 35.05,36.19 C 34.50,35.86 33.61,36.22 33.07,37.00 C 32.52,37.78 32.52,38.67 33.07,39.01 L 33.07,39.01 z" id="p3881-7-2-6-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.68,35.68 C 33.75,35.67 33.83,35.65 33.9,35.65 C 34.07,35.65 34.23,35.69 34.37,35.78 C 34.63,35.9 34.83,36.05 35.06,36.18 C 35.62,36.53 35.62,37.47 35.06,38.28 C 34.49,39.08 33.56,39.44 32.99,39.09 C 32.74,39.01 32.56,38.82 32.34,38.68 C 31.89,38.4 31.79,37.75 32.06,37.09" id="p3881-7-2-6-3-8-2" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.74,41.44 C 32.45,41.55 32.15,41.6 31.85,41.59 C 30.68,41.55 30.1,40.49 30.55,39.23 C 30.78,38.56 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.45,33.2 36.67,33.01 36.88,32.83 C 37.74,32.1 38.77,31.64 39.76,31.67 C 41.54,31.74 42.42,33.33 41.75,35.22 C 41.32,36.43 40.35,37.45 39.26,38.04 L 39.27,38.05 C 39.04,38.15 33.08,41.3 32.86,41.4 C 32.84,41.41 32.82,41.41 32.8,41.42 C 32.78,41.43 32.76,41.43 32.74,41.44 L 32.74,41.44 z" id="p3881-5-2-4-6-5-5" style="fill:none;stroke:#2c1b06;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.43,38.36 C 33.73,38.56 34.24,38.36 34.56,37.90 C 34.87,37.44 34.88,36.90 34.57,36.69 C 34.26,36.49 33.76,36.70 33.44,37.16 C 33.12,37.62 33.12,38.15 33.43,38.36 L 33.43,38.36 z" id="p3881-7-3-1-5-5-7" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 34.33,36.59 C 34.48,36.85 34.44,37.25 34.18,37.62 C 33.94,37.96 33.60,38.17 33.30,38.18 C 33.29,38.18 33.28,38.18 33.27,38.18 C 33.13,37.92 33.20,37.48 33.46,37.12 C 33.69,36.79 34.04,36.61 34.33,36.59 z" id="p3881-7-3-1-6-5-5-5" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="g2458">
<path d="M 29.73,20.24 C 29.05,20.27 28.47,20.71 27.85,20.96 C 26.81,21.41 25.94,21.88 24.94,22.32 C 24.38,22.59 23.78,22.83 23.23,23.1 C 22.29,23.78 22.42,25.14 22.85,26.07 C 23.36,27.32 24.34,28.3 25.51,28.88 C 27.54,29.84 29.63,30.89 31.6,32.01 C 32.72,32.69 34.2,33.25 35.44,32.57 C 37.32,31.64 39.29,30.82 41.13,29.91 C 42.26,29.16 42.42,27.59 42.1,26.38 C 41.52,24.16 39.75,22.17 37.48,21.61 C 36.69,21.41 35.78,21.31 34.94,21.14 C 33.21,20.85 31.47,20.48 29.73,20.24 L 29.73,20.24 z" id="p3881-2" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.53,24.13 L 36,21.55" id="p4082-6" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 40.97,24.04 L 34.84,26.95 C 34.84,26.95 32.18,29.11 29.81,31.04 C 30.41,31.36 31.02,31.68 31.59,32.01 C 32.71,32.69 34.19,33.25 35.44,32.57 C 36.25,32.19 37.07,31.81 37.88,31.41 C 37.91,31.4 37.94,31.39 37.97,31.38 C 38.05,31.34 38.14,31.3 38.22,31.26 C 38.26,31.24 38.31,31.25 38.34,31.23 C 39.27,30.8 40.21,30.36 41.13,29.91 C 42.25,29.16 42.41,27.59 42.09,26.38 C 41.88,25.55 41.49,24.75 40.97,24.04 L 40.97,24.04 z" id="p4122-0" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 42.13,26.48 L 30.66,31.51 C 30.97,31.68 31.29,31.84 31.59,32.01 C 32.71,32.69 34.19,33.25 35.44,32.57 C 36.25,32.19 37.07,31.81 37.88,31.41 C 37.91,31.4 37.94,31.39 37.97,31.38 C 38.05,31.34 38.14,31.3 38.22,31.26 C 38.26,31.24 38.31,31.25 38.34,31.23 C 39.27,30.8 40.21,30.36 41.13,29.91 C 42.22,29.18 42.41,27.67 42.13,26.48 L 42.13,26.48 z" id="p4239-2" style="fill:#b77711;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 33.66,25.23 L 39.45,22.63" id="p4080-7" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.11,28.23 L 41.67,25.6" id="p4078-2-1" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 35.88,27.85 L 41.44,25.23" id="p4078-5" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.27,31.04 L 42,28.39" id="p4076-6-9" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.25,30.59 L 41.97,27.93" id="p4076-7" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 29.73,20.24 C 29.05,20.27 28.47,20.71 27.85,20.96 C 26.81,21.41 25.94,21.88 24.94,22.32 C 24.38,22.59 23.78,22.83 23.23,23.1 C 22.29,23.78 22.42,25.14 22.85,26.07 C 23.36,27.32 24.34,28.3 25.51,28.88 C 27.54,29.84 29.63,30.89 31.6,32.01 C 32.72,32.69 34.2,33.25 35.44,32.57 C 37.36,31.64 39.31,30.8 41.13,29.91 C 42.26,29.16 42.42,27.59 42.1,26.38 C 41.52,24.16 39.75,22.17 37.48,21.61 C 36.69,21.41 35.78,21.31 34.94,21.14 C 33.21,20.85 31.47,20.48 29.73,20.24 L 29.73,20.24 z" id="p3881-6-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g4448">
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7" style="fill:#1bac25;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 14.27,21.14 L 9.34,23.61 L 9.34,32.86 L 23.77,40.07 L 23.77,28.95 L 14.27,21.14 L 14.27,21.14 z" id="p4502" style="fill:#004c05;fill-opacity:1;stroke:none"/>
<path d="M 23.84,30.85 L 9.34,23.6 L 23.84,16.35 L 38.34,23.6 L 23.84,30.85 z" id="p2993-7-9" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.77,31 L 23.77,39.94" id="p3111" style="fill:none;stroke:#67e442;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 21.43,17.56 L 12.87,21.81 L 19.34,25.06 L 27.9,20.78 L 21.43,17.56 z" id="p2993-7-9-7" style="fill:none;stroke:#1d5f22;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 38.34,23.6 L 23.84,30.85 L 9.34,23.6" id="p2993-7-9-4" style="fill:none;stroke:#97fd85;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 11.81,29.81 L 11.81,26.87 L 16.85,29.38 L 16.85,31.81" id="p4705" style="fill:none;stroke:#278e2e;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-3" style="fill:none;stroke:#042d08;stroke-opacity:1;display:inline"/>
<path d="M 29.46,18.54 C 27.73,18.46 25.65,19.33 24.52,20.66 C 23.52,21.84 23.33,22.94 23.77,23.69 C 23.42,25.36 23.71,26.7 25.52,27.1 C 27.36,27.5 29.89,26.59 31.18,25.07 C 32.18,23.89 32.13,22.95 32.02,21.96 C 31.96,20.13 32,19.03 30.18,18.63 C 29.95,18.58 29.71,18.55 29.46,18.54 L 29.46,18.54 z" id="p4109" style="fill:#042d08;fill-opacity:1;fill-rule:nonzero;stroke:#042d08;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 C 18.77,17.59 18.77,20.19 18.77,21.54 L 26.4,25.35 L 40.9,18.1 C 40.9,15.85 40.9,13.14 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8" style="fill:#1bac25;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 39.77,12.88 L 27.27,19.13 L 27.27,23.47 L 39.77,17.22 L 39.77,12.88 z" id="p2993-7-9-8-8-5" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 22.06,13.25 L 18.77,14.91 L 18.77,21.54 L 26.37,25.35 L 26.37,17.29 L 26.46,16.97 L 22.06,13.25 z" id="p4170" style="fill:#004c05;fill-opacity:1;stroke:none"/>
<path d="M 26.36,18.74 L 26.36,24.98" id="p5148" style="fill:none;stroke:#67e442;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 L 26.4,18.72 L 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8-8" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 18.77,14.91 L 26.4,18.72 L 40.9,11.47" id="p2993-7-9-8-8-57" style="fill:none;stroke:#97fd85;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 C 18.77,17.59 18.77,20.19 18.77,21.54 L 26.4,25.35 L 40.9,18.1 C 40.9,15.85 40.9,13.14 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8-2" style="fill:none;stroke:#042d08;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.77,12.88 L 35.49,15.04 L 39.77,17.16 L 39.77,12.88 z" id="p2993-7-9-8-8-5-5" style="fill:#004c05;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 27.28,31.43 L 35.79,27.19" id="p5229-8" style="fill:none;stroke:#58ed3e;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 26.96,30.75 C 26.92,30.78 25.82,31.42 25.75,31.47 L 25.75,38.47 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.84 L 26.96,30.75 z" id="p4502-0-2" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 33.12,33.94 L 25.75,38.19 L 25.75,38.47 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.94 z" id="p4925" style="fill:#1bac25;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 25.75,31.47 L 25.75,38.47 L 31.9,41.56 L 31.9,34.56 L 25.75,31.47 z" id="p4502-0" style="fill:#004c05;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 27.4,30.97 L 35.91,26.73" id="p5229" style="fill:none;stroke:#0b3b0e;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 26.17,38.71 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.84 L 26.96,30.75" id="p4502-0-2-0" style="fill:none;stroke:#042d08;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.57,25.97 C 36.52,26 35.42,26.64 35.35,26.69 L 35.35,33.69 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.06 L 36.57,25.97 z" id="p4502-0-2-4" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 42.72,29.16 L 35.35,33.41 L 35.35,33.69 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.16 z" id="p4925-0" style="fill:#1bac25;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.35,26.69 L 35.35,33.69 L 41.5,36.78 L 41.5,29.78 L 35.35,26.69 L 35.35,26.69 z" id="p4502-0-1" style="fill:#004c05;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 35.77,33.93 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.06 L 36.57,25.97" id="p4502-0-2-0-9" style="fill:none;stroke:#042d08;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 39.28,13.12 L 27.28,19.12 L 27.28,22.9 L 39.28,16.9 L 39.28,13.12 z" id="p2993-7-9-8-8-5-9" style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline"/>
</g>
<g id="g2514">
<path d="M 10.31,29.11 C 9.63,29.14 9.06,29.58 8.44,29.82 C 7.4,30.28 6.52,30.75 5.53,31.2 C 4.97,31.47 4.37,31.71 3.81,31.98 C 2.87,32.66 3.01,34.01 3.44,34.95 C 3.94,36.2 4.93,37.18 6.09,37.76 C 8.13,38.72 10.22,39.77 12.19,40.89 C 13.3,41.57 14.78,42.13 16.03,41.45 C 17.91,40.52 19.88,39.7 21.72,38.79 C 22.84,38.04 23.01,36.47 22.69,35.26 C 22.1,33.04 20.34,31.04 18.06,30.48 C 17.27,30.28 16.37,30.18 15.53,30.01 C 13.79,29.72 12.05,29.35 10.31,29.11 L 10.31,29.11 z" id="p3881" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.8,32.45 L 13.57,29.72" id="p4084" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 5.38,31.96 L 11.24,29.23" id="p4084-9" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 11.12,33.01 L 16.59,30.42" id="p4082" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 21.56,32.92 L 15.43,35.82 C 15.43,35.82 12.77,37.99 10.4,39.92 C 11,40.24 11.6,40.56 12.18,40.89 C 13.3,41.57 14.78,42.13 16.02,41.45 C 16.83,41.07 17.65,40.69 18.46,40.29 C 18.49,40.28 18.52,40.27 18.56,40.26 C 18.64,40.22 18.72,40.18 18.81,40.14 C 18.85,40.12 18.89,40.13 18.93,40.11 C 19.85,39.68 20.79,39.24 21.71,38.79 C 22.83,38.04 23,36.47 22.68,35.26 C 22.46,34.43 22.07,33.63 21.56,32.92 z" id="p4122" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.71,35.36 L 11.24,40.39 C 11.56,40.56 11.88,40.72 12.18,40.89 C 13.3,41.57 14.78,42.13 16.02,41.45 C 16.83,41.07 17.65,40.69 18.46,40.29 C 18.49,40.28 18.52,40.27 18.56,40.26 C 18.64,40.22 18.72,40.18 18.81,40.14 C 18.85,40.12 18.89,40.13 18.93,40.11 C 19.85,39.68 20.79,39.24 21.71,38.79 C 22.81,38.06 23,36.55 22.71,35.36 z" id="p4239" style="fill:#b77711;fill-opacity:1;stroke:none"/>
<path d="M 14.25,34.11 L 20.04,31.51" id="p4080" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 16.7,37.11 L 22.26,34.48" id="p4078-2" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.47,36.73 L 22.03,34.11" id="p4078" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 16.86,39.92 L 22.59,37.27" id="p4076-6" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.83,39.47 L 22.56,36.81" id="p4076" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 4.75,31.68 C 4.43,31.68 4.14,31.77 3.88,31.93 C 2.84,32.58 2.87,34.3 3.91,35.77 C 4.47,36.57 5.06,37.19 5.73,37.56 L 12.07,40.81 C 12.34,41 12.63,41.14 12.91,41.27 C 14.06,41.83 15.22,41.94 16.1,41.4 C 17.67,40.42 17.65,37.82 16.07,35.59 C 15.06,34.17 13.66,33.26 12.38,33.02 L 12.38,32.99 C 12.12,32.97 5.14,31.7 4.88,31.68 C 4.86,31.68 4.84,31.68 4.82,31.68 C 4.8,31.68 4.77,31.68 4.75,31.68 L 4.75,31.68 z" id="p3881-5" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 5.64,32.71 C 5.36,32.7 5.11,32.74 4.87,32.84 C 3.95,33.25 3.87,34.5 4.69,35.63 C 5.12,36.24 5.59,36.73 6.15,37.04 L 11.4,39.77 C 11.63,39.93 11.87,40.05 12.1,40.16 C 13.06,40.64 14.05,40.78 14.83,40.44 C 16.24,39.83 16.36,37.94 15.13,36.23 C 14.35,35.14 13.2,34.4 12.11,34.15 L 12.11,34.13 C 11.89,34.1 5.97,32.76 5.75,32.72 C 5.73,32.72 5.71,32.72 5.69,32.72 C 5.68,32.72 5.66,32.72 5.64,32.71 L 5.64,32.71 z" id="p3881-5-7" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 6.41,32.89 C 6.43,33.34 6.62,33.81 6.97,34.29 C 7.41,34.9 7.88,35.39 8.44,35.7 L 13.69,38.45 C 13.91,38.61 14.14,38.71 14.37,38.82 C 14.87,39.07 15.39,39.25 15.87,39.29 C 16.15,38.44 15.89,37.3 15.12,36.23 C 14.34,35.14 13.21,34.39 12.12,34.14 C 11.93,34.11 7.55,33.13 6.41,32.89 L 6.41,32.89 z" id="p3881-5-7-4" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.31,29.11 C 9.63,29.14 9.06,29.58 8.44,29.82 C 7.4,30.28 6.52,30.75 5.53,31.2 C 4.97,31.47 4.37,31.71 3.81,31.98 C 2.87,32.66 3.01,34.01 3.44,34.95 C 3.94,36.2 4.93,37.18 6.09,37.76 C 8.13,38.72 10.22,39.77 12.19,40.89 C 13.3,41.57 14.78,42.13 16.03,41.45 C 17.94,40.52 19.9,39.68 21.72,38.79 C 22.84,38.04 23.01,36.47 22.69,35.26 C 22.1,33.04 20.34,31.04 18.06,30.48 C 17.27,30.28 16.37,30.18 15.53,30.01 C 13.79,29.72 12.05,29.35 10.31,29.11 L 10.31,29.11 z" id="p3881-6" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,33.11 C 7.2,33.2 6.91,33.35 6.65,33.45 C 6.06,33.81 6.06,34.78 6.65,35.61 C 7.24,36.44 8.19,36.81 8.77,36.45 C 9.07,36.32 9.3,36.21 9.56,36.11 C 10.14,35.74 10.14,34.78 9.56,33.95 C 9.42,33.76 9.25,33.62 9.09,33.48 C 8.53,33.36 7.99,33.23 7.43,33.11 L 7.43,33.11 z" id="p3881-7-3-7" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.75,36.15 C 8.18,36.51 7.25,36.14 6.68,35.34 C 6.10,34.53 6.10,33.59 6.66,33.23 C 7.23,32.88 8.16,33.24 8.74,34.05 C 9.31,34.85 9.32,35.79 8.75,36.15 L 8.75,36.15 z" id="p3881-7-3" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.99,34.45 C 12.9,34.48 12.79,34.49 12.71,34.54 C 12.4,34.67 12.03,34.88 11.68,35.01 C 10.89,35.5 10.89,36.8 11.68,37.92 C 12.47,39.04 13.76,39.57 14.56,39.07 C 14.96,38.9 15.24,38.74 15.59,38.61 C 15.73,38.52 15.87,38.4 15.96,38.26 C 15.89,37.62 15.6,36.91 15.12,36.23 C 14.55,35.43 13.79,34.82 12.99,34.45 z" id="p3881-7-3-7-7" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.41,38.93 C 13.63,39.40 12.37,38.88 11.59,37.76 C 10.81,36.64 10.82,35.34 11.60,34.87 C 12.38,34.40 13.65,34.92 14.42,36.04 C 15.20,37.16 15.19,38.46 14.41,38.93 L 14.41,38.93 z" id="p3881-7-3-8" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,33.11 C 7.2,33.2 6.91,33.35 6.65,33.45 C 6.06,33.81 6.06,34.78 6.65,35.61 C 7.24,36.44 8.19,36.81 8.77,36.45 C 9.07,36.32 9.3,36.21 9.56,36.11 C 10.14,35.74 10.14,34.78 9.56,33.95 C 9.42,33.76 9.25,33.62 9.09,33.48" id="p3881-7-3-7-9" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.99,34.45 C 12.9,34.48 12.79,34.49 12.71,34.54 C 12.4,34.67 12.03,34.88 11.68,35.01 C 10.89,35.5 10.89,36.8 11.68,37.92 C 12.47,39.04 13.76,39.57 14.56,39.07 C 14.96,38.9 15.24,38.74 15.59,38.61 C 15.73,38.52 15.87,38.4 15.96,38.26" id="p3881-7-3-7-7-7" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 5.64,32.71 C 5.36,32.7 5.11,32.74 4.87,32.84 C 3.95,33.25 3.87,34.5 4.69,35.63 C 5.12,36.24 5.59,36.73 6.15,37.04 L 11.4,39.77 C 11.63,39.93 11.87,40.05 12.1,40.16 C 13.06,40.64 14.05,40.78 14.83,40.44 C 16.24,39.83 16.36,37.94 15.13,36.23 C 14.35,35.14 13.2,34.4 12.11,34.15 C 10.04,33.67 7.86,33.17 5.75,32.72 C 5.73,32.72 5.71,32.72 5.69,32.72 C 5.68,32.72 5.66,32.72 5.64,32.71 L 5.64,32.71 z" id="p3881-5-7-8" style="fill:none;stroke:#2c1b06;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.30,35.71 C 8.00,35.91 7.49,35.71 7.17,35.25 C 6.86,34.79 6.85,34.25 7.16,34.04 C 7.47,33.84 7.97,34.05 8.29,34.51 C 8.61,34.97 8.61,35.50 8.30,35.71 L 8.30,35.71 z" id="p3881-7-3-1" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,34.04 C 7.28,34.3 7.32,34.7 7.59,35.07 C 7.83,35.42 8.16,35.63 8.46,35.64 C 8.47,35.64 8.48,35.64 8.49,35.64 C 8.63,35.38 8.56,34.94 8.31,34.57 C 8.07,34.24 7.72,34.06 7.43,34.04 L 7.43,34.04 z" id="p3881-7-3-1-6" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 39.28,14.47 L 27.28,20.53 L 27.28,21.62 L 39.28,15.56 L 39.28,14.47 z" id="p5068" style="fill:#900000;fill-opacity:1;stroke:none;marker:none;visibility:visible;display:inline"/>
<path d="M 35.24,17.1 L 38.09,15.62" id="p5093" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 29.09,20.2 L 31.95,18.73" id="p5093-1" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2458">
<path d="M 19.03,20.03 C 19.71,20.06 20.29,20.5 20.91,20.75 C 21.95,21.2 22.82,21.67 23.82,22.11 C 24.38,22.38 24.98,22.62 25.53,22.89 C 26.47,23.57 26.34,24.93 25.91,25.86 C 25.4,27.11 24.42,28.09 23.25,28.67 C 21.22,29.63 19.13,30.68 17.16,31.8 C 16.04,32.48 14.56,33.04 13.32,32.36 C 11.44,31.43 9.47,30.61 7.63,29.7 C 6.5,28.95 6.34,27.38 6.66,26.17 C 7.24,23.95 9.01,21.96 11.28,21.4 C 12.07,21.2 12.98,21.1 13.82,20.93 C 15.55,20.64 17.29,20.27 19.03,20.03 L 19.03,20.03 z" id="p3881-2-7" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 18.23,23.92 L 12.76,21.34" id="p4082-6-4" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 7.79,23.83 L 13.92,26.74 C 13.92,26.74 16.58,28.9 18.95,30.83 C 18.35,31.15 17.74,31.47 17.17,31.8 C 16.05,32.48 14.57,33.04 13.32,32.36 C 12.51,31.98 11.69,31.6 10.88,31.2 C 10.85,31.19 10.82,31.18 10.79,31.17 C 10.71,31.13 10.62,31.09 10.54,31.05 C 10.5,31.03 10.45,31.04 10.42,31.02 C 9.49,30.59 8.55,30.15 7.63,29.7 C 6.51,28.95 6.35,27.38 6.67,26.17 C 6.88,25.34 7.27,24.54 7.79,23.83 L 7.79,23.83 z" id="p4122-0-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 6.63,26.27 L 18.1,31.3 C 17.79,31.47 17.47,31.63 17.17,31.8 C 16.05,32.48 14.57,33.04 13.32,32.36 C 12.51,31.98 11.69,31.6 10.88,31.2 C 10.85,31.19 10.82,31.18 10.79,31.17 C 10.71,31.13 10.62,31.09 10.54,31.05 C 10.5,31.03 10.45,31.04 10.42,31.02 C 9.49,30.59 8.55,30.15 7.63,29.7 C 6.54,28.97 6.35,27.46 6.63,26.27 L 6.63,26.27 z" id="p4239-2-9" style="fill:#b77711;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 15.1,25.02 L 9.31,22.42" id="p4080-7-3" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.65,28.02 L 7.09,25.39" id="p4078-2-1-7" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.88,27.64 L 7.32,25.02" id="p4078-5-9" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.49,30.83 L 6.76,28.18" id="p4076-6-9-2" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.51,30.38 L 6.79,27.72" id="p4076-7-4" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 19.03,20.03 C 19.71,20.06 20.29,20.5 20.91,20.75 C 21.95,21.2 22.82,21.67 23.82,22.11 C 24.38,22.38 24.98,22.62 25.53,22.89 C 26.47,23.57 26.34,24.93 25.91,25.86 C 25.4,27.11 24.42,28.09 23.25,28.67 C 21.22,29.63 19.13,30.68 17.16,31.8 C 16.04,32.48 14.56,33.04 13.32,32.36 C 11.4,31.43 9.45,30.59 7.63,29.7 C 6.5,28.95 6.34,27.38 6.66,26.17 C 7.24,23.95 9.01,21.96 11.28,21.4 C 12.07,21.2 12.98,21.1 13.82,20.93 C 15.55,20.64 17.29,20.27 19.03,20.03 L 19.03,20.03 z" id="p3881-6-0-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 24.91,16.14 L 39.41,23.39 C 39.41,26.66 39.41,29.66 39.41,32.64 L 24.91,39.89 L 10.41,32.64 C 10.41,29.61 10.41,25.88 10.41,23.39 L 24.91,16.14 z" id="p2993-7-32" style="fill:#1bac25;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 34.47,20.93 L 39.41,23.39 L 39.41,32.64 L 24.97,39.86 L 24.97,28.74 L 34.47,20.93 L 34.47,20.93 z" id="p4502-8" style="fill:#004c05;fill-opacity:1;stroke:none"/>
<path d="M 24.91,30.64 L 39.41,23.39 L 24.91,16.14 L 10.41,23.39 L 24.91,30.64 z" id="p2993-7-9-49" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 24.98,30.79 L 24.98,39.73" id="p3111-6" style="fill:none;stroke:#67e442;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.32,17.35 L 35.88,21.6 L 29.41,24.85 L 20.85,20.57 L 27.32,17.35 z" id="p2993-7-9-7-0" style="fill:none;stroke:#1d5f22;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 10.41,23.39 L 24.91,30.64 L 39.41,23.39" id="p2993-7-9-4-0" style="fill:none;stroke:#97fd85;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 36.94,29.6 L 36.94,26.65 L 31.9,29.17 L 31.9,31.6" id="p4705-4" style="fill:none;stroke:#278e2e;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24.91,16.14 L 39.41,23.39 C 39.41,26.66 39.41,29.66 39.41,32.64 L 24.91,39.89 L 10.41,32.64 C 10.41,29.61 10.41,25.88 10.41,23.39 L 24.91,16.14 z" id="p2993-7-3-6" style="fill:none;stroke:#042d08;stroke-opacity:1;display:inline"/>
<path d="M 19.29,18.32 C 21.02,18.25 23.09,19.12 24.22,20.45 C 25.22,21.63 25.42,22.73 24.98,23.48 C 25.33,25.14 25.04,26.49 23.22,26.89 C 21.39,27.29 18.86,26.38 17.57,24.86 C 16.57,23.68 16.62,22.73 16.73,21.74 C 16.79,19.92 16.75,18.81 18.57,18.42 C 18.8,18.37 19.04,18.33 19.29,18.32 L 19.29,18.32 z" id="p4109-4" style="fill:#042d08;fill-opacity:1;fill-rule:nonzero;stroke:#042d08;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-29" style="fill:#1bac25;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 8.97,12.67 L 21.47,18.92 L 21.47,23.26 L 8.97,17.01 L 8.97,12.67 z" id="p2993-7-9-8-8-5-59" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 26.69,13.04 L 29.97,14.7 L 29.97,21.32 L 22.38,25.14 L 22.38,17.07 L 22.29,16.76 L 26.69,13.04 z" id="p4170-7" style="fill:#004c05;fill-opacity:1;stroke:none"/>
<path d="M 22.39,18.53 L 22.39,24.77" id="p5148-2" style="fill:none;stroke:#67e442;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.48,7.45 L 29.98,14.7 L 22.35,18.51 L 7.85,11.26 L 15.48,7.45 z" id="p2993-7-9-8-8-51" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 29.98,14.7 L 22.35,18.51 L 7.85,11.26" id="p2993-7-9-8-8-57-9" style="fill:none;stroke:#97fd85;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-2-6" style="fill:none;stroke:#042d08;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.97,12.67 L 13.26,14.82 L 8.97,16.95 L 8.97,12.67 z" id="p2993-7-9-8-8-5-5-0" style="fill:#004c05;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 21.47,31.22 L 12.96,26.98" id="p5229-8-1" style="fill:none;stroke:#58ed3e;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 21.78,30.54 C 21.83,30.56 22.93,31.21 23,31.26 L 23,38.26 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54 z" id="p4502-0-2-8" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 15.63,33.72 L 23,37.97 L 23,38.26 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.72 z" id="p4925-8" style="fill:#1bac25;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23,31.26 L 23,38.26 L 16.85,41.35 L 16.85,34.35 L 23,31.26 z" id="p4502-0-7" style="fill:#004c05;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 21.35,30.76 L 12.83,26.52" id="p5229-81" style="fill:none;stroke:#0b3b0e;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 22.58,38.5 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54" id="p4502-0-2-0-6" style="fill:none;stroke:#042d08;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.18,25.76 C 12.23,25.78 13.33,26.43 13.4,26.48 L 13.4,33.48 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76 z" id="p4502-0-2-4-0" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 6.03,28.94 L 13.4,33.19 L 13.4,33.48 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.94 z" id="p4925-0-0" style="fill:#1bac25;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.4,26.48 L 13.4,33.48 L 7.24,36.57 L 7.24,29.57 L 13.4,26.48 L 13.4,26.48 z" id="p4502-0-1-2" style="fill:#004c05;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 12.98,33.72 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76" id="p4502-0-2-0-9-1" style="fill:none;stroke:#042d08;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 9.47,12.91 L 21.47,18.91 L 21.47,22.69 L 9.47,16.69 L 9.47,12.91 z" id="p2993-7-9-8-8-5-9-2" style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 9.47,14.26 L 21.47,20.32 L 21.47,21.41 L 9.47,15.35 L 9.47,14.26 z" id="p5068-5" style="fill:#900000;fill-opacity:1;stroke:none;marker:none;visibility:visible"/>
<path d="M 13.51,16.88 L 10.66,15.41" id="p5093-4" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 19.66,19.99 L 16.8,18.51" id="p5093-1-8" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<g id="g2493">
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.84,40.31 28.87,39.49 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-3" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 40.95,32.24 L 35.18,29.51" id="p4084-7" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 43.36,31.75 L 37.51,29.02" id="p4084-9-0" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 37.63,32.8 L 32.16,30.21" id="p4082-64" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.19,32.71 L 33.32,35.61 C 33.32,35.61 35.98,37.77 38.35,39.71 C 37.75,40.02 37.15,40.35 36.57,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 31.92,40.86 31.1,40.47 30.29,40.08 C 30.26,40.07 30.22,40.06 30.19,40.05 C 30.11,40.01 30.03,39.97 29.94,39.93 C 29.9,39.91 29.86,39.92 29.82,39.89 C 28.9,39.46 27.95,39.03 27.04,38.58 C 25.91,37.82 25.75,36.26 26.07,35.05 C 26.29,34.22 26.68,33.41 27.19,32.71 z" id="p4122-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 26.04,35.14 L 37.51,40.18 C 37.19,40.34 36.87,40.5 36.57,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 31.92,40.86 31.1,40.47 30.29,40.08 C 30.26,40.07 30.22,40.06 30.19,40.05 C 30.11,40.01 30.03,39.97 29.94,39.93 C 29.9,39.91 29.86,39.92 29.82,39.89 C 28.9,39.46 27.95,39.03 27.04,38.58 C 25.94,37.84 25.75,36.34 26.04,35.14 z" id="p4239-0" style="fill:#b77711;fill-opacity:1;stroke:none"/>
<path d="M 34.5,33.9 L 28.71,31.3" id="p4080-1" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.05,36.89 L 26.49,34.27" id="p4078-2-15" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 32.28,36.52 L 26.72,33.9" id="p4078-3" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 31.89,39.71 L 26.16,37.05" id="p4076-6-1" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.91,39.26 L 26.19,36.6" id="p4076-0" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 43.99,31.47 C 44.31,31.47 44.61,31.56 44.87,31.72 C 45.91,32.36 45.88,34.08 44.84,35.56 C 44.28,36.36 43.69,36.98 43.02,37.35 L 36.68,40.59 C 36.41,40.79 36.12,40.93 35.84,41.06 C 34.69,41.62 33.53,41.73 32.65,41.19 C 31.08,40.21 31.1,37.61 32.68,35.37 C 33.69,33.95 35.09,33.05 36.37,32.81 L 36.37,32.78 C 36.63,32.76 43.61,31.49 43.87,31.47 C 43.89,31.47 43.91,31.47 43.93,31.47 C 43.95,31.47 43.97,31.47 43.99,31.47 L 43.99,31.47 z" id="p3881-5-4" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 L 36.64,33.91 C 36.86,33.88 42.78,32.54 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-7" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 42.34,32.68 C 42.31,33.12 42.13,33.6 41.78,34.08 C 41.34,34.69 40.87,35.18 40.31,35.49 L 35.06,38.24 C 34.84,38.39 34.61,38.5 34.37,38.61 C 33.88,38.86 33.36,39.04 32.87,39.08 C 32.6,38.23 32.85,37.09 33.62,36.02 C 34.41,34.93 35.54,34.18 36.62,33.93 C 36.82,33.9 41.2,32.92 42.34,32.68 L 42.34,32.68 z" id="p3881-5-7-4-0" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.81,40.3 28.85,39.47 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-6-4" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27 C 40.22,33.14 40.76,33.02 41.32,32.89 L 41.32,32.89 z" id="p3881-7-3-7-3" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.31,33.10 C 40.85,33.19 40.35,33.54 40,34.04 C 39.42,34.85 39.43,35.78 40,36.14 C 40.56,36.49 41.48,36.13 42.06,35.32 C 42.63,34.52 42.66,33.58 42.09,33.23 C 41.88,33.10 41.58,33.05 41.31,33.10 z" id="p3881-7-3-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05 C 32.85,37.41 33.14,36.7 33.63,36.02 C 34.2,35.22 34.96,34.61 35.76,34.24 z" id="p3881-7-3-7-7-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.46,34.5 C 35.74,34.49 34.89,35.00 34.31,35.84 C 33.53,36.96 33.56,38.24 34.34,38.71 C 35.12,39.19 36.38,38.68 37.15,37.56 C 37.93,36.44 37.93,35.13 37.15,34.65 C 36.96,34.53 36.70,34.50 36.46,34.5 z" id="p3881-7-3-8-5" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27" id="p3881-7-3-7-9-7" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05" id="p3881-7-3-7-7-7-5" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 C 38.71,33.46 40.89,32.96 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-8-6" style="fill:none;stroke:#2c1b06;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.31,33.75 C 41.02,33.74 40.70,33.96 40.46,34.31 C 40.15,34.77 40.12,35.29 40.43,35.5 C 40.74,35.70 41.24,35.49 41.56,35.03 C 41.87,34.57 41.90,34.04 41.59,33.84 C 41.51,33.79 41.40,33.75 41.31,33.75 z" id="p3881-7-3-1-4" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.35,33.73 C 41.50,33.99 41.45,34.39 41.19,34.76 C 40.95,35.10 40.62,35.32 40.32,35.33 C 40.31,35.33 40.30,35.33 40.29,35.33 C 40.15,35.06 40.22,34.62 40.47,34.26 C 40.71,33.93 41.05,33.75 41.35,33.73 L 41.35,33.73 z" id="p3881-7-3-1-6-7" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2459">
<path d="M 31.98,17.58 C 31.85,17.59 31.71,17.63 31.58,17.67 C 28.37,19.07 28.21,19.27 25.84,20.42 C 25.64,20.54 25.46,20.68 25.29,20.85 C 24.96,21.18 24.71,21.61 24.55,22.09 C 24.24,23.08 24.28,24.31 24.75,25.58 C 25.36,27.18 26.54,28.43 27.79,29.01 L 27.79,29.04 C 28.05,29.13 34.87,32.22 35.13,32.32 C 35.15,32.32 35.18,32.31 35.2,32.32 C 35.22,32.32 35.24,32.34 35.26,32.35 C 35.6,32.43 35.92,32.43 36.24,32.36 C 38.18,31.53 40.26,30.39 41.31,29.84 C 42.58,29.52 43.08,27.92 42.44,26.26 C 42.11,25.36 41.7,24.62 41.12,24.09 L 35.54,19.31 C 35.31,19.05 35.08,18.84 34.83,18.63 C 33.94,17.9 32.94,17.49 31.98,17.58 z" id="p3881-5-2-4-3-07" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 34.69,26.49 L 40.48,23.89" id="p4080-79-8-3" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.64,24.26 L 38.12,21.69" id="p4082-5-3-6" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 30.16,22.4 L 35.94,19.68" id="p4084-5-3-8" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 42.11,25.5 L 32.77,29.97 C 32.77,29.97 32.58,30.97 32.55,31.16 C 33.7,31.67 35.05,32.28 35.14,32.31 C 35.16,32.32 35.18,32.31 35.2,32.31 C 35.22,32.32 35.24,32.34 35.27,32.34 C 35.6,32.43 35.92,32.42 36.23,32.34 C 38.17,31.52 40.25,30.39 41.3,29.84 C 42.57,29.53 43.09,27.92 42.45,26.25 C 42.35,25.98 42.23,25.74 42.11,25.5 z" id="p7129-9" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.85,29 L 42.41,26.37" id="p4078-2-4-8-0" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 42.64,27 L 33.05,31.38 C 33.88,31.75 35.07,32.29 35.14,32.31 C 35.16,32.32 35.18,32.31 35.2,32.31 C 35.22,32.32 35.24,32.34 35.27,32.34 C 35.6,32.43 35.92,32.42 36.23,32.34 C 38.17,31.52 40.25,30.39 41.3,29.84 C 42.37,29.58 42.89,28.37 42.64,27 z" id="p7131-2" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.91,31.13 L 42.64,28.28" id="p4076-6-5-6-2" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.62,28.62 L 42.18,26" id="p4078-4-2-8" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 36.89,30.67 L 42.61,27.83" id="p4076-2-4-5" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.9,20.84 L 33.75,18.11" id="p4084-9-2-2-2" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.98,17.58 C 31.85,17.59 31.71,17.63 31.58,17.67 C 28.37,19.07 28.21,19.27 25.84,20.42 C 25.64,20.54 25.46,20.68 25.29,20.85 C 24.96,21.18 24.71,21.61 24.55,22.09 C 24.24,23.08 24.28,24.31 24.75,25.58 C 25.36,27.18 26.54,28.43 27.79,29.01 L 27.79,29.04 C 28.05,29.13 34.87,32.22 35.13,32.32 C 35.15,32.32 35.18,32.31 35.2,32.32 C 35.22,32.32 35.24,32.34 35.26,32.35 C 35.6,32.43 35.92,32.43 36.24,32.36 C 38.18,31.53 40.26,30.39 41.31,29.84 C 42.58,29.52 43.08,27.92 42.44,26.26 C 42.11,25.36 41.7,24.62 41.12,24.09 L 35.54,19.31 C 35.31,19.05 35.08,18.84 34.83,18.63 C 33.94,17.9 32.94,17.49 31.98,17.58 z" id="p3881-5-2-4-3-0-5" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g2442">
<path d="M 6.43,20.32 C 6.38,20.35 5.28,21 5.21,21.04 L 5.21,28.03 L 11.36,31.13 C 11.44,31.08 12.52,30.44 12.58,30.41 L 12.58,23.41 L 6.43,20.32 z" id="p4502-0-2-5" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 5.21,21.04 L 5.21,28.03 L 11.36,31.13 L 11.36,24.13 L 5.21,21.04 L 5.21,21.04 z" id="p4502-0-16" style="fill:#004c05;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 6.43,20.32 C 6.38,20.35 5.28,21 5.21,21.04 L 5.21,28.03 L 11.36,31.13 C 11.44,31.08 12.52,30.44 12.58,30.41 L 12.58,23.41 L 6.43,20.32 z" id="p4502-0-2-5-1" style="fill:none;stroke:#042d08;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-4" style="fill:#1bac25;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 14.27,21.14 L 9.34,23.61 L 9.34,32.86 L 23.77,40.07 L 23.77,28.95 L 14.27,21.14 z" id="p4502-88" style="fill:#004c05;fill-opacity:1;stroke:none"/>
<path d="M 23.84,30.85 L 9.34,23.6 L 23.84,16.35 L 38.34,23.6 L 23.84,30.85 z" id="p2993-7-9-85" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.77,31 L 23.77,39.94" id="p3111-7" style="fill:none;stroke:#67e442;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 28.73,21.96 L 20.17,26.21 L 26.64,29.46 L 35.2,25.18 L 28.73,21.96 L 28.73,21.96 z" id="p2993-7-9-7-2" style="fill:none;stroke:#1d5f22;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 38.34,23.6 L 23.84,30.85 L 9.34,23.6" id="p2993-7-9-4-2" style="fill:none;stroke:#97fd85;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 15.77,32.01 L 15.77,29.06 L 20.81,31.58 L 20.81,34.01" id="p4705-2" style="fill:none;stroke:#278e2e;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-3-0" style="fill:none;stroke:#042d08;stroke-opacity:1;display:inline"/>
<path d="M 22.43,15.02 C 20.69,14.94 18.62,15.81 17.49,17.14 C 16.49,18.32 16.29,19.43 16.73,20.17 C 16.39,21.84 16.67,23.18 18.49,23.58 C 20.33,23.98 22.85,23.07 24.14,21.55 C 25.14,20.37 25.1,19.43 24.98,18.44 C 24.92,16.61 24.96,15.51 23.14,15.11 C 22.91,15.06 22.67,15.03 22.43,15.02 L 22.43,15.02 z" id="p4109-9" style="fill:#042d08;fill-opacity:1;fill-rule:nonzero;stroke:#042d08;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 C 8.49,14.66 8.49,17.26 8.49,18.61 L 16.11,22.42 L 30.61,15.17 C 30.61,12.92 30.61,10.22 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-7" style="fill:#1bac25;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 11.77,10.33 L 8.49,11.99 L 8.49,18.61 L 16.08,22.42 L 16.08,14.36 L 16.18,14.05 L 11.77,10.33 z" id="p4170-3" style="fill:#004c05;fill-opacity:1;stroke:none"/>
<path d="M 16.07,15.82 L 16.07,22.05" id="p5148-5" style="fill:none;stroke:#67e442;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 L 16.11,15.8 L 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-8-7" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 8.49,11.99 L 16.11,15.8 L 30.61,8.55" id="p2993-7-9-8-8-57-8" style="fill:none;stroke:#97fd85;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 C 8.49,14.66 8.49,17.26 8.49,18.61 L 16.11,22.42 L 30.61,15.17 C 30.61,12.92 30.61,10.22 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-2-7" style="fill:none;stroke:#042d08;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g2497">
<path d="M 12.18,27.63 C 12.05,27.64 11.91,27.68 11.78,27.71 C 8.57,29.12 8.41,29.32 6.04,30.47 C 5.84,30.58 5.65,30.73 5.49,30.9 C 5.16,31.23 4.91,31.66 4.75,32.15 C 4.43,33.13 4.47,34.37 4.95,35.63 C 5.56,37.24 6.73,38.49 7.99,39.06 L 7.99,39.09 C 8.25,39.18 15.07,42.28 15.33,42.37 C 15.35,42.38 15.37,42.37 15.39,42.37 C 15.42,42.38 15.44,42.4 15.46,42.41 C 15.79,42.49 16.12,42.49 16.44,42.41 C 18.37,41.59 20.46,40.44 21.51,39.9 C 22.78,39.58 23.28,37.98 22.64,36.31 C 22.3,35.42 21.9,34.67 21.31,34.14 L 15.73,29.36 C 15.51,29.1 15.28,28.89 15.03,28.68 C 14.14,27.95 13.14,27.54 12.18,27.63 z" id="p3881-5-2-4-3" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.89,36.55 L 20.68,33.95" id="p4080-79-8" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 12.84,34.32 L 18.31,31.73" id="p4082-5-3" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 10.36,32.46 L 16.13,29.73" id="p4084-5-3" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 22.31,35.56 L 12.96,40.03 C 12.96,40.03 12.78,41.03 12.75,41.21 C 13.89,41.73 15.25,42.34 15.34,42.37 C 15.36,42.38 15.38,42.36 15.4,42.37 C 15.42,42.38 15.44,42.4 15.46,42.4 C 15.8,42.49 16.12,42.48 16.43,42.4 C 18.37,41.58 20.45,40.45 21.5,39.9 C 22.76,39.58 23.28,37.98 22.65,36.31 C 22.55,36.04 22.43,35.8 22.31,35.56 z" id="p7129" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 17.04,39.05 L 22.61,36.43" id="p4078-2-4-8" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 22.84,37.06 L 13.25,41.43 C 14.08,41.81 15.27,42.34 15.34,42.37 C 15.36,42.38 15.38,42.36 15.4,42.37 C 15.42,42.38 15.44,42.4 15.46,42.4 C 15.8,42.49 16.12,42.48 16.43,42.4 C 18.37,41.58 20.45,40.45 21.5,39.9 C 22.57,39.63 23.09,38.43 22.84,37.06 z" id="p7131" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 17.11,41.18 L 22.84,38.34" id="p4076-6-5-6" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.82,38.68 L 22.38,36.06" id="p4078-4-2" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 17.08,40.73 L 22.81,37.89" id="p4076-2-4" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 8.09,30.89 L 13.95,28.16" id="p4084-9-2-2" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 15.47,42.41 C 15.8,42.49 16.13,42.49 16.45,42.41 C 17.72,42.1 18.21,40.48 17.58,38.82 C 17.24,37.92 16.82,37.17 16.24,36.64 L 10.68,31.87 C 10.46,31.62 10.2,31.41 9.95,31.2 C 8.93,30.36 7.76,29.94 6.7,30.21 C 4.78,30.69 4.01,33.12 4.97,35.64 C 5.58,37.25 6.75,38.48 8,39.05 L 7.99,39.08 C 8.25,39.17 15.08,42.28 15.34,42.37 C 15.36,42.38 15.38,42.38 15.4,42.39 C 15.42,42.4 15.45,42.4 15.47,42.41 L 15.47,42.41 z" id="p3881-5-2-4" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.18,27.63 C 12.05,27.64 11.91,27.68 11.78,27.71 C 8.57,29.12 8.41,29.32 6.04,30.47 C 5.84,30.58 5.65,30.73 5.49,30.9 C 5.16,31.23 4.91,31.66 4.75,32.15 C 4.43,33.13 4.47,34.37 4.95,35.63 C 5.56,37.24 6.73,38.49 7.99,39.06 L 7.99,39.09 C 8.25,39.18 15.07,42.28 15.33,42.37 C 15.35,42.38 15.37,42.37 15.39,42.37 C 15.42,42.38 15.44,42.4 15.46,42.41 C 15.79,42.49 16.12,42.49 16.44,42.41 C 18.37,41.59 20.46,40.44 21.51,39.9 C 22.78,39.58 23.28,37.98 22.64,36.31 C 22.3,35.42 21.9,34.67 21.31,34.14 L 15.73,29.36 C 15.51,29.1 15.28,28.89 15.03,28.68 C 14.14,27.95 13.14,27.54 12.18,27.63 z" id="p3881-5-2-4-3-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.53,41.44 C 14.82,41.55 15.12,41.6 15.42,41.59 C 16.59,41.55 17.17,40.49 16.72,39.23 C 16.49,38.56 16.17,37.98 15.68,37.53 L 11,33.4 C 10.82,33.2 10.6,33.01 10.39,32.83 C 9.53,32.1 8.5,31.64 7.51,31.67 C 5.73,31.74 4.85,33.33 5.52,35.22 C 5.95,36.43 6.92,37.45 8.01,38.04 L 8,38.05 C 8.23,38.15 14.19,41.3 14.41,41.4 C 14.43,41.41 14.45,41.41 14.47,41.42 C 14.49,41.43 14.51,41.43 14.53,41.44 L 14.53,41.44 z" id="p3881-5-2-4-6" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.68,31.68 C 7.52,32.25 7.55,32.93 7.81,33.65 C 8.23,34.86 9.21,35.88 10.31,36.46 L 10.28,36.5 C 10.51,36.59 16.46,39.74 16.68,39.84 C 16.7,39.85 16.73,39.86 16.75,39.87 C 16.76,39.88 16.79,39.86 16.81,39.87 C 16.82,39.87 16.83,39.87 16.84,39.87 C 16.82,39.66 16.79,39.47 16.71,39.25 C 16.48,38.57 16.17,37.98 15.68,37.53 L 11,33.4 C 10.81,33.19 10.61,33.02 10.4,32.84 C 9.59,32.15 8.62,31.7 7.68,31.68 z" id="p3881-5-2-4-6-7" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.12,31.75 C 8.09,31.76 8.06,31.76 8.03,31.78 C 7.58,31.97 7.28,32.12 6.78,32.4 C 5.95,32.91 5.98,34.26 6.81,35.43 C 7.63,36.6 8.95,37.13 9.78,36.62 C 10.31,36.29 10.6,36.25 11,36 C 11.63,35.6 11.78,34.71 11.43,33.78 L 11,33.4 C 10.81,33.19 10.61,33.02 10.4,32.84 C 9.72,32.26 8.91,31.87 8.12,31.75 z" id="p3881-7-2-2" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 9.72,36.50 C 8.92,37.00 7.61,36.47 6.80,35.32 C 6.00,34.17 6.00,32.83 6.81,32.34 C 7.61,31.84 8.92,32.37 9.72,33.52 C 10.53,34.67 10.53,36.00 9.72,36.50 L 9.72,36.50 z" id="p3881-7-2" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.12,31.75 C 8.09,31.76 8.06,31.76 8.03,31.78 C 7.58,31.97 7.28,32.12 6.78,32.4 C 5.95,32.91 5.98,34.26 6.81,35.43 C 7.63,36.6 8.95,37.13 9.78,36.62 C 10.31,36.29 10.6,36.25 11,36 C 11.63,35.6 11.78,34.71 11.43,33.78" id="p3881-7-2-2-4" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.37,35.65 C 13.2,35.65 13.04,35.69 12.9,35.78 C 12.64,35.9 12.44,36.05 12.21,36.18 C 11.65,36.53 11.65,37.47 12.21,38.28 C 12.78,39.08 13.71,39.44 14.28,39.09 C 14.53,39.01 14.71,38.82 14.93,38.68 C 15.38,38.4 15.48,37.75 15.21,37.09 L 13.59,35.68 C 13.52,35.67 13.44,35.65 13.37,35.65 z" id="p3881-7-2-6-3" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.27,38.96 C 13.72,39.29 12.84,38.93 12.29,38.16 C 11.74,37.38 11.74,36.48 12.29,36.15 C 12.83,35.82 13.72,36.18 14.26,36.95 C 14.81,37.73 14.81,38.63 14.27,38.96 L 14.27,38.96 z" id="p3881-7-2-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.59,35.68 C 13.52,35.67 13.44,35.65 13.37,35.65 C 13.2,35.65 13.04,35.69 12.9,35.78 C 12.64,35.9 12.44,36.05 12.21,36.18 C 11.65,36.53 11.65,37.47 12.21,38.28 C 12.78,39.08 13.71,39.44 14.28,39.09 C 14.53,39.01 14.71,38.82 14.93,38.68 C 15.38,38.4 15.48,37.75 15.21,37.09" id="p3881-7-2-6-3-8" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.53,41.44 C 14.82,41.55 15.12,41.6 15.42,41.59 C 16.59,41.55 17.17,40.49 16.72,39.23 C 16.49,38.56 16.17,37.98 15.68,37.53 L 11,33.4 C 10.82,33.2 10.6,33.01 10.39,32.83 C 9.53,32.1 8.5,31.64 7.51,31.67 C 5.73,31.74 4.85,33.33 5.52,35.22 C 5.95,36.43 6.92,37.45 8.01,38.04 L 8,38.05 C 8.23,38.15 14.19,41.3 14.41,41.4 C 14.43,41.41 14.45,41.41 14.47,41.42 C 14.49,41.43 14.51,41.43 14.53,41.44 L 14.53,41.44 z" id="p3881-5-2-4-6-5" style="fill:none;stroke:#2c1b06;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.83,38.36 C 13.53,38.56 13.02,38.36 12.70,37.90 C 12.39,37.44 12.38,36.90 12.69,36.69 C 13.00,36.49 13.50,36.70 13.82,37.16 C 14.14,37.62 14.14,38.15 13.83,38.36 L 13.83,38.36 z" id="p3881-7-3-1-5-5" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.97,36.62 C 12.82,36.88 12.86,37.28 13.12,37.65 C 13.36,37.99 13.7,38.20 14,38.21 C 14.01,38.21 14.02,38.21 14.03,38.21 C 14.17,37.95 14.1,37.51 13.84,37.15 C 13.61,36.82 13.26,36.64 12.97,36.62 z" id="p3881-7-3-1-6-5-5" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2451">
<path d="M 15.29,17.58 C 15.42,17.59 15.56,17.63 15.69,17.67 C 18.9,19.07 19.06,19.27 21.43,20.42 C 21.63,20.54 21.81,20.68 21.98,20.85 C 22.31,21.18 22.56,21.61 22.72,22.09 C 23.03,23.08 22.99,24.31 22.52,25.58 C 21.91,27.18 20.73,28.43 19.48,29.01 L 19.48,29.04 C 19.22,29.13 12.4,32.22 12.14,32.32 C 12.12,32.32 12.09,32.31 12.07,32.32 C 12.05,32.32 12.03,32.34 12.01,32.35 C 11.67,32.43 11.35,32.43 11.03,32.36 C 9.09,31.53 7.01,30.39 5.96,29.84 C 4.69,29.52 4.19,27.92 4.83,26.26 C 5.16,25.36 5.57,24.62 6.15,24.09 L 11.73,19.31 C 11.96,19.05 12.19,18.84 12.44,18.63 C 13.33,17.9 14.33,17.49 15.29,17.58 z" id="p3881-5-2-4-3-07-8" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.58,26.49 L 6.79,23.89" id="p4080-79-8-3-8" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 14.63,24.26 L 9.15,21.69" id="p4082-5-3-6-5" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 17.11,22.4 L 11.33,19.68" id="p4084-5-3-8-1" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 5.16,25.5 L 14.5,29.97 C 14.5,29.97 14.69,30.97 14.72,31.16 C 13.57,31.67 12.22,32.28 12.13,32.31 C 12.11,32.32 12.09,32.31 12.07,32.31 C 12.05,32.32 12.03,32.34 12,32.34 C 11.67,32.43 11.35,32.42 11.04,32.34 C 9.1,31.52 7.02,30.39 5.97,29.84 C 4.7,29.53 4.18,27.92 4.82,26.25 C 4.92,25.98 5.04,25.74 5.16,25.5 z" id="p7129-9-5" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.42,29 L 4.86,26.37" id="p4078-2-4-8-0-2" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 4.63,27 L 14.22,31.38 C 13.39,31.75 12.2,32.29 12.13,32.31 C 12.11,32.32 12.09,32.31 12.07,32.31 C 12.05,32.32 12.03,32.34 12,32.34 C 11.67,32.43 11.35,32.42 11.04,32.34 C 9.1,31.52 7.02,30.39 5.97,29.84 C 4.9,29.58 4.38,28.37 4.63,27 z" id="p7131-2-6" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.36,31.13 L 4.63,28.28" id="p4076-6-5-6-2-9" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 10.65,28.62 L 5.09,26" id="p4078-4-2-8-2" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 10.38,30.67 L 4.66,27.83" id="p4076-2-4-5-1" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 19.37,20.84 L 13.52,18.11" id="p4084-9-2-2-2-8" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 15.29,17.58 C 15.42,17.59 15.56,17.63 15.69,17.67 C 18.9,19.07 19.06,19.27 21.43,20.42 C 21.63,20.54 21.81,20.68 21.98,20.85 C 22.31,21.18 22.56,21.61 22.72,22.09 C 23.03,23.08 22.99,24.31 22.52,25.58 C 21.91,27.18 20.73,28.43 19.48,29.01 L 19.48,29.04 C 19.22,29.13 12.4,32.22 12.14,32.32 C 12.12,32.32 12.09,32.31 12.07,32.32 C 12.05,32.32 12.03,32.34 12.01,32.35 C 11.67,32.43 11.35,32.43 11.03,32.36 C 9.09,31.53 7.01,30.39 5.96,29.84 C 4.69,29.52 4.19,27.92 4.83,26.26 C 5.16,25.36 5.57,24.62 6.15,24.09 L 11.73,19.31 C 11.96,19.05 12.19,18.84 12.44,18.63 C 13.33,17.9 14.33,17.49 15.29,17.58 z" id="p3881-5-2-4-3-0-5-6" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g2468">
<path d="M 40.84,20.32 C 40.89,20.35 41.99,21 42.06,21.04 L 42.06,28.03 L 35.91,31.13 C 35.83,31.08 34.75,30.44 34.69,30.41 L 34.69,23.41 L 40.84,20.32 z" id="p4502-0-2-5-2" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 42.06,21.04 L 42.06,28.03 L 35.91,31.13 L 35.91,24.13 L 42.06,21.04 L 42.06,21.04 z" id="p4502-0-16-1" style="fill:#004c05;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 40.84,20.32 C 40.89,20.35 41.99,21 42.06,21.04 L 42.06,28.03 L 35.91,31.13 C 35.83,31.08 34.75,30.44 34.69,30.41 L 34.69,23.41 L 40.84,20.32 z" id="p4502-0-2-5-1-3" style="fill:none;stroke:#042d08;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 23.43,16.35 L 37.93,23.6 C 37.93,26.87 37.93,29.87 37.93,32.85 L 23.43,40.1 L 8.93,32.85 C 8.93,29.82 8.93,26.09 8.93,23.6 L 23.43,16.35 z" id="p2993-7-4-6" style="fill:#1bac25;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 32.99,21.14 L 37.93,23.61 L 37.93,32.86 L 23.49,40.07 L 23.49,28.95 L 32.99,21.14 z" id="p4502-88-3" style="fill:#004c05;fill-opacity:1;stroke:none"/>
<path d="M 23.43,30.85 L 37.93,23.6 L 23.43,16.35 L 8.93,23.6 L 23.43,30.85 z" id="p2993-7-9-85-8" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.49,31 L 23.49,39.94" id="p3111-7-9" style="fill:none;stroke:#67e442;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 18.53,21.96 L 27.09,26.21 L 20.62,29.46 L 12.06,25.18 L 18.53,21.96 L 18.53,21.96 z" id="p2993-7-9-7-2-4" style="fill:none;stroke:#1d5f22;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 8.93,23.6 L 23.43,30.85 L 37.93,23.6" id="p2993-7-9-4-2-9" style="fill:none;stroke:#97fd85;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 31.49,32.01 L 31.49,29.06 L 26.46,31.58 L 26.46,34.01" id="p4705-2-7" style="fill:none;stroke:#278e2e;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.43,16.35 L 37.93,23.6 C 37.93,26.87 37.93,29.87 37.93,32.85 L 23.43,40.1 L 8.93,32.85 C 8.93,29.82 8.93,26.09 8.93,23.6 L 23.43,16.35 z" id="p2993-7-3-0-2" style="fill:none;stroke:#042d08;stroke-opacity:1;display:inline"/>
<path d="M 24.84,15.02 C 26.57,14.94 28.65,15.81 29.78,17.14 C 30.77,18.32 30.97,19.43 30.53,20.17 C 30.88,21.84 30.59,23.18 28.78,23.58 C 26.94,23.98 24.41,23.07 23.12,21.55 C 22.12,20.37 22.17,19.43 22.28,18.44 C 22.34,16.61 22.3,15.51 24.12,15.11 C 24.35,15.06 24.59,15.03 24.84,15.02 L 24.84,15.02 z" id="p4109-9-7" style="fill:#042d08;fill-opacity:1;fill-rule:nonzero;stroke:#042d08;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.27,4.74 L 38.77,11.99 C 38.77,14.66 38.77,17.26 38.77,18.61 L 31.15,22.42 L 16.65,15.17 C 16.65,12.92 16.65,10.22 16.65,8.55 L 24.27,4.74 z" id="p2993-7-9-8-7-2" style="fill:#1bac25;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 35.49,10.33 L 38.77,11.99 L 38.77,18.61 L 31.18,22.42 L 31.18,14.36 L 31.09,14.05 L 35.49,10.33 z" id="p4170-3-4" style="fill:#004c05;fill-opacity:1;stroke:none"/>
<path d="M 31.19,15.82 L 31.19,22.05" id="p5148-5-1" style="fill:none;stroke:#67e442;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.28,4.74 L 38.78,11.99 L 31.15,15.8 L 16.65,8.55 L 24.28,4.74 z" id="p2993-7-9-8-8-7-2" style="fill:#4fda61;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 38.78,11.99 L 31.15,15.8 L 16.65,8.55" id="p2993-7-9-8-8-57-8-6" style="fill:none;stroke:#97fd85;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.27,4.74 L 38.77,11.99 C 38.77,14.66 38.77,17.26 38.77,18.61 L 31.15,22.42 L 16.65,15.17 C 16.65,12.92 16.65,10.22 16.65,8.55 L 24.27,4.74 z" id="p2993-7-9-8-2-7-8" style="fill:none;stroke:#042d08;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g2497">
<path d="M 35.09,27.63 C 35.22,27.64 35.36,27.68 35.49,27.71 C 38.7,29.12 38.86,29.32 41.23,30.47 C 41.43,30.58 41.62,30.73 41.78,30.9 C 42.11,31.23 42.36,31.66 42.52,32.15 C 42.84,33.13 42.8,34.37 42.32,35.63 C 41.71,37.24 40.54,38.49 39.28,39.06 L 39.28,39.09 C 39.02,39.18 32.2,42.28 31.94,42.37 C 31.92,42.38 31.9,42.37 31.88,42.37 C 31.85,42.38 31.83,42.4 31.81,42.41 C 31.48,42.49 31.15,42.49 30.83,42.41 C 28.9,41.59 26.81,40.44 25.76,39.9 C 24.49,39.58 23.99,37.98 24.63,36.31 C 24.97,35.42 25.37,34.67 25.96,34.14 L 31.54,29.36 C 31.76,29.1 31.99,28.89 32.24,28.68 C 33.13,27.95 34.13,27.54 35.09,27.63 z" id="p3881-5-2-4-3-4" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.38,36.55 L 26.59,33.95" id="p4080-79-8-34" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 34.43,34.32 L 28.96,31.73" id="p4082-5-3-1" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 36.91,32.46 L 31.14,29.73" id="p4084-5-3-5" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24.96,35.56 L 34.31,40.03 C 34.31,40.03 34.49,41.03 34.52,41.21 C 33.38,41.73 32.02,42.34 31.93,42.37 C 31.91,42.38 31.89,42.36 31.87,42.37 C 31.85,42.38 31.83,42.4 31.81,42.4 C 31.47,42.49 31.15,42.48 30.84,42.4 C 28.9,41.58 26.82,40.45 25.77,39.9 C 24.51,39.58 23.99,37.98 24.62,36.31 C 24.72,36.04 24.84,35.8 24.96,35.56 z" id="p7129-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.23,39.05 L 24.66,36.43" id="p4078-2-4-8-00" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 24.43,37.06 L 34.02,41.43 C 33.19,41.81 32,42.34 31.93,42.37 C 31.91,42.38 31.89,42.36 31.87,42.37 C 31.85,42.38 31.83,42.4 31.81,42.4 C 31.47,42.49 31.15,42.48 30.84,42.4 C 28.9,41.58 26.82,40.45 25.77,39.9 C 24.7,39.63 24.18,38.43 24.43,37.06 z" id="p7131-28" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.16,41.18 L 24.43,38.34" id="p4076-6-5-6-6" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 30.45,38.68 L 24.89,36.06" id="p4078-4-2-5" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 30.19,40.73 L 24.46,37.89" id="p4076-2-4-0" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 39.18,30.89 L 33.32,28.16" id="p4084-9-2-2-9" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.8,42.41 C 31.47,42.49 31.14,42.49 30.82,42.41 C 29.55,42.1 29.06,40.48 29.69,38.82 C 30.03,37.92 30.45,37.17 31.03,36.64 L 36.59,31.87 C 36.81,31.62 37.07,31.41 37.32,31.2 C 38.34,30.36 39.51,29.94 40.57,30.21 C 42.49,30.69 43.26,33.12 42.3,35.64 C 41.69,37.25 40.52,38.48 39.27,39.05 L 39.28,39.08 C 39.02,39.17 32.19,42.28 31.93,42.37 C 31.91,42.38 31.89,42.38 31.87,42.39 C 31.85,42.4 31.82,42.4 31.8,42.41 L 31.8,42.41 z" id="p3881-5-2-4-0" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.09,27.63 C 35.22,27.64 35.36,27.68 35.49,27.71 C 38.7,29.12 38.86,29.32 41.23,30.47 C 41.43,30.58 41.62,30.73 41.78,30.9 C 42.11,31.23 42.36,31.66 42.52,32.15 C 42.84,33.13 42.8,34.37 42.32,35.63 C 41.71,37.24 40.54,38.49 39.28,39.06 L 39.28,39.09 C 39.02,39.18 32.2,42.28 31.94,42.37 C 31.92,42.38 31.9,42.37 31.88,42.37 C 31.85,42.38 31.83,42.4 31.81,42.41 C 31.48,42.49 31.15,42.49 30.83,42.41 C 28.9,41.59 26.81,40.44 25.76,39.9 C 24.49,39.58 23.99,37.98 24.63,36.31 C 24.97,35.42 25.37,34.67 25.96,34.14 L 31.54,29.36 C 31.76,29.1 31.99,28.89 32.24,28.68 C 33.13,27.95 34.13,27.54 35.09,27.63 z" id="p3881-5-2-4-3-0-9" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.74,41.44 C 32.45,41.55 32.15,41.6 31.85,41.59 C 30.68,41.55 30.1,40.49 30.55,39.23 C 30.78,38.56 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.45,33.2 36.67,33.01 36.88,32.83 C 37.74,32.1 38.77,31.64 39.76,31.67 C 41.54,31.74 42.42,33.33 41.75,35.22 C 41.32,36.43 40.35,37.45 39.26,38.04 L 39.27,38.05 C 39.04,38.15 33.08,41.3 32.86,41.4 C 32.84,41.41 32.82,41.41 32.8,41.42 C 32.78,41.43 32.76,41.43 32.74,41.44 L 32.74,41.44 z" id="p3881-5-2-4-6-2" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.59,31.68 C 39.75,32.25 39.72,32.93 39.46,33.65 C 39.04,34.86 38.06,35.88 36.96,36.46 L 36.99,36.5 C 36.76,36.59 30.81,39.74 30.59,39.84 C 30.57,39.85 30.54,39.86 30.52,39.87 C 30.51,39.88 30.48,39.86 30.46,39.87 C 30.45,39.87 30.44,39.87 30.43,39.87 C 30.45,39.66 30.48,39.47 30.56,39.25 C 30.79,38.57 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.46,33.19 36.66,33.02 36.87,32.84 C 37.68,32.15 38.65,31.7 39.59,31.68 z" id="p3881-5-2-4-6-7-8" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.15,31.75 C 39.18,31.76 39.21,31.76 39.24,31.78 C 39.69,31.97 39.99,32.12 40.49,32.4 C 41.32,32.91 41.29,34.26 40.46,35.43 C 39.64,36.6 38.32,37.13 37.49,36.62 C 36.96,36.29 36.67,36.25 36.27,36 C 35.64,35.6 35.49,34.71 35.84,33.78 L 36.27,33.4 C 36.46,33.19 36.66,33.02 36.87,32.84 C 37.55,32.26 38.36,31.87 39.15,31.75 z" id="p3881-7-2-2-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 37.58,36.52 C 38.38,37.02 39.69,36.49 40.49,35.34 C 41.30,34.19 41.30,32.86 40.49,32.36 C 39.68,31.86 38.38,32.39 37.57,33.54 C 36.77,34.69 36.77,36.02 37.58,36.52 L 37.58,36.52 z" id="p3881-7-2-69" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.15,31.75 C 39.18,31.76 39.21,31.76 39.24,31.78 C 39.69,31.97 39.99,32.12 40.49,32.4 C 41.32,32.91 41.29,34.26 40.46,35.43 C 39.64,36.6 38.32,37.13 37.49,36.62 C 36.96,36.29 36.67,36.25 36.27,36 C 35.64,35.6 35.49,34.71 35.84,33.78" id="p3881-7-2-2-4-0" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.9,35.65 C 34.07,35.65 34.23,35.69 34.37,35.78 C 34.63,35.9 34.83,36.05 35.06,36.18 C 35.62,36.53 35.62,37.47 35.06,38.28 C 34.49,39.08 33.56,39.44 32.99,39.09 C 32.74,39.01 32.56,38.82 32.34,38.68 C 31.89,38.4 31.79,37.75 32.06,37.09 L 33.68,35.68 C 33.75,35.67 33.83,35.65 33.9,35.65 z" id="p3881-7-2-6-3-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.07,39.01 C 33.61,39.34 34.50,38.98 35.04,38.20 C 35.59,37.43 35.59,36.53 35.05,36.19 C 34.50,35.86 33.61,36.22 33.07,37.00 C 32.52,37.78 32.52,38.67 33.07,39.01 L 33.07,39.01 z" id="p3881-7-2-6-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.68,35.68 C 33.75,35.67 33.83,35.65 33.9,35.65 C 34.07,35.65 34.23,35.69 34.37,35.78 C 34.63,35.9 34.83,36.05 35.06,36.18 C 35.62,36.53 35.62,37.47 35.06,38.28 C 34.49,39.08 33.56,39.44 32.99,39.09 C 32.74,39.01 32.56,38.82 32.34,38.68 C 31.89,38.4 31.79,37.75 32.06,37.09" id="p3881-7-2-6-3-8-2" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.74,41.44 C 32.45,41.55 32.15,41.6 31.85,41.59 C 30.68,41.55 30.1,40.49 30.55,39.23 C 30.78,38.56 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.45,33.2 36.67,33.01 36.88,32.83 C 37.74,32.1 38.77,31.64 39.76,31.67 C 41.54,31.74 42.42,33.33 41.75,35.22 C 41.32,36.43 40.35,37.45 39.26,38.04 L 39.27,38.05 C 39.04,38.15 33.08,41.3 32.86,41.4 C 32.84,41.41 32.82,41.41 32.8,41.42 C 32.78,41.43 32.76,41.43 32.74,41.44 L 32.74,41.44 z" id="p3881-5-2-4-6-5-5" style="fill:none;stroke:#2c1b06;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.43,38.36 C 33.73,38.56 34.24,38.36 34.56,37.90 C 34.87,37.44 34.88,36.90 34.57,36.69 C 34.26,36.49 33.76,36.70 33.44,37.16 C 33.12,37.62 33.12,38.15 33.43,38.36 L 33.43,38.36 z" id="p3881-7-3-1-5-5-7" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 34.33,36.59 C 34.48,36.85 34.44,37.25 34.18,37.62 C 33.94,37.96 33.60,38.17 33.30,38.18 C 33.29,38.18 33.28,38.18 33.27,38.18 C 33.13,37.92 33.20,37.48 33.46,37.12 C 33.69,36.79 34.04,36.61 34.33,36.59 z" id="p3881-7-3-1-6-5-5-5" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="g2458">
<path d="M 29.73,20.24 C 29.05,20.27 28.47,20.71 27.85,20.96 C 26.81,21.41 25.94,21.88 24.94,22.32 C 24.38,22.59 23.78,22.83 23.23,23.1 C 22.29,23.78 22.42,25.14 22.85,26.07 C 23.36,27.32 24.34,28.3 25.51,28.88 C 27.54,29.84 29.63,30.89 31.6,32.01 C 32.72,32.69 34.2,33.25 35.44,32.57 C 37.32,31.64 39.29,30.82 41.13,29.91 C 42.26,29.16 42.42,27.59 42.1,26.38 C 41.52,24.16 39.75,22.17 37.48,21.61 C 36.69,21.41 35.78,21.31 34.94,21.14 C 33.21,20.85 31.47,20.48 29.73,20.24 L 29.73,20.24 z" id="p3881-2" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.53,24.13 L 36,21.55" id="p4082-6" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 40.97,24.04 L 34.84,26.95 C 34.84,26.95 32.18,29.11 29.81,31.04 C 30.41,31.36 31.02,31.68 31.59,32.01 C 32.71,32.69 34.19,33.25 35.44,32.57 C 36.25,32.19 37.07,31.81 37.88,31.41 C 37.91,31.4 37.94,31.39 37.97,31.38 C 38.05,31.34 38.14,31.3 38.22,31.26 C 38.26,31.24 38.31,31.25 38.34,31.23 C 39.27,30.8 40.21,30.36 41.13,29.91 C 42.25,29.16 42.41,27.59 42.09,26.38 C 41.88,25.55 41.49,24.75 40.97,24.04 L 40.97,24.04 z" id="p4122-0" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 42.13,26.48 L 30.66,31.51 C 30.97,31.68 31.29,31.84 31.59,32.01 C 32.71,32.69 34.19,33.25 35.44,32.57 C 36.25,32.19 37.07,31.81 37.88,31.41 C 37.91,31.4 37.94,31.39 37.97,31.38 C 38.05,31.34 38.14,31.3 38.22,31.26 C 38.26,31.24 38.31,31.25 38.34,31.23 C 39.27,30.8 40.21,30.36 41.13,29.91 C 42.22,29.18 42.41,27.67 42.13,26.48 L 42.13,26.48 z" id="p4239-2" style="fill:#b77711;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 33.66,25.23 L 39.45,22.63" id="p4080-7" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.11,28.23 L 41.67,25.6" id="p4078-2-1" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 35.88,27.85 L 41.44,25.23" id="p4078-5" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.27,31.04 L 42,28.39" id="p4076-6-9" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.25,30.59 L 41.97,27.93" id="p4076-7" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 29.73,20.24 C 29.05,20.27 28.47,20.71 27.85,20.96 C 26.81,21.41 25.94,21.88 24.94,22.32 C 24.38,22.59 23.78,22.83 23.23,23.1 C 22.29,23.78 22.42,25.14 22.85,26.07 C 23.36,27.32 24.34,28.3 25.51,28.88 C 27.54,29.84 29.63,30.89 31.6,32.01 C 32.72,32.69 34.2,33.25 35.44,32.57 C 37.36,31.64 39.31,30.8 41.13,29.91 C 42.26,29.16 42.42,27.59 42.1,26.38 C 41.52,24.16 39.75,22.17 37.48,21.61 C 36.69,21.41 35.78,21.31 34.94,21.14 C 33.21,20.85 31.47,20.48 29.73,20.24 L 29.73,20.24 z" id="p3881-6-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g4448">
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7" style="fill:#be00b6;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 14.27,21.14 L 9.34,23.61 L 9.34,32.86 L 23.77,40.07 L 23.77,28.95 L 14.27,21.14 L 14.27,21.14 z" id="p4502" style="fill:#7e007f;fill-opacity:1;stroke:none"/>
<path d="M 23.84,30.85 L 9.34,23.6 L 23.84,16.35 L 38.34,23.6 L 23.84,30.85 z" id="p2993-7-9" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.77,31 L 23.77,39.94" id="p3111" style="fill:none;stroke:#d838d5;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 21.43,17.56 L 12.87,21.81 L 19.34,25.06 L 27.9,20.78 L 21.43,17.56 z" id="p2993-7-9-7" style="fill:none;stroke:#5b215d;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 38.34,23.6 L 23.84,30.85 L 9.34,23.6" id="p2993-7-9-4" style="fill:none;stroke:#ec85ef;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 11.81,29.81 L 11.81,26.87 L 16.85,29.38 L 16.85,31.81" id="p4705" style="fill:none;stroke:#a72fab;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-3" style="fill:none;stroke:#3c003b;stroke-opacity:1;display:inline"/>
<path d="M 29.46,18.54 C 27.73,18.46 25.65,19.33 24.52,20.66 C 23.52,21.84 23.33,22.94 23.77,23.69 C 23.42,25.36 23.71,26.7 25.52,27.1 C 27.36,27.5 29.89,26.59 31.18,25.07 C 32.18,23.89 32.13,22.95 32.02,21.96 C 31.96,20.13 32,19.03 30.18,18.63 C 29.95,18.58 29.71,18.55 29.46,18.54 L 29.46,18.54 z" id="p4109" style="fill:#3c003b;fill-opacity:1;fill-rule:nonzero;stroke:#3c003b;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 C 18.77,17.59 18.77,20.19 18.77,21.54 L 26.4,25.35 L 40.9,18.1 C 40.9,15.85 40.9,13.14 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8" style="fill:#be00b6;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 39.77,12.88 L 27.27,19.13 L 27.27,23.47 L 39.77,17.22 L 39.77,12.88 z" id="p2993-7-9-8-8-5" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 22.06,13.25 L 18.77,14.91 L 18.77,21.54 L 26.37,25.35 L 26.37,17.29 L 26.46,16.97 L 22.06,13.25 z" id="p4170" style="fill:#7e007f;fill-opacity:1;stroke:none"/>
<path d="M 26.36,18.74 L 26.36,24.98" id="p5148" style="fill:none;stroke:#d838d5;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 L 26.4,18.72 L 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8-8" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 18.77,14.91 L 26.4,18.72 L 40.9,11.47" id="p2993-7-9-8-8-57" style="fill:none;stroke:#ec85ef;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.27,7.66 L 18.77,14.91 C 18.77,17.59 18.77,20.19 18.77,21.54 L 26.4,25.35 L 40.9,18.1 C 40.9,15.85 40.9,13.14 40.9,11.47 L 33.27,7.66 z" id="p2993-7-9-8-2" style="fill:none;stroke:#3c003b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.77,12.88 L 35.49,15.04 L 39.77,17.16 L 39.77,12.88 z" id="p2993-7-9-8-8-5-5" style="fill:#7e007f;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 27.28,31.43 L 35.79,27.19" id="p5229-8" style="fill:none;stroke:#ff7bff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 26.96,30.75 C 26.92,30.78 25.82,31.42 25.75,31.47 L 25.75,38.47 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.84 L 26.96,30.75 z" id="p4502-0-2" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 33.12,33.94 L 25.75,38.19 L 25.75,38.47 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.94 z" id="p4925" style="fill:#be00b6;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 25.75,31.47 L 25.75,38.47 L 31.9,41.56 L 31.9,34.56 L 25.75,31.47 z" id="p4502-0" style="fill:#7e007f;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 27.4,30.97 L 35.91,26.73" id="p5229" style="fill:none;stroke:#390e3a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 26.17,38.71 L 31.9,41.56 C 31.98,41.52 33.06,40.88 33.12,40.84 L 33.12,33.84 L 26.96,30.75" id="p4502-0-2-0" style="fill:none;stroke:#3c003b;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.57,25.97 C 36.52,26 35.42,26.64 35.35,26.69 L 35.35,33.69 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.06 L 36.57,25.97 z" id="p4502-0-2-4" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 42.72,29.16 L 35.35,33.41 L 35.35,33.69 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.16 z" id="p4925-0" style="fill:#be00b6;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.35,26.69 L 35.35,33.69 L 41.5,36.78 L 41.5,29.78 L 35.35,26.69 L 35.35,26.69 z" id="p4502-0-1" style="fill:#7e007f;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 35.77,33.93 L 41.5,36.78 C 41.58,36.74 42.66,36.1 42.72,36.06 L 42.72,29.06 L 36.57,25.97" id="p4502-0-2-0-9" style="fill:none;stroke:#3c003b;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 39.28,13.12 L 27.28,19.12 L 27.28,22.9 L 39.28,16.9 L 39.28,13.12 z" id="p2993-7-9-8-8-5-9" style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline"/>
</g>
<g id="g2514">
<path d="M 10.31,29.11 C 9.63,29.14 9.06,29.58 8.44,29.82 C 7.4,30.28 6.52,30.75 5.53,31.2 C 4.97,31.47 4.37,31.71 3.81,31.98 C 2.87,32.66 3.01,34.01 3.44,34.95 C 3.94,36.2 4.93,37.18 6.09,37.76 C 8.13,38.72 10.22,39.77 12.19,40.89 C 13.3,41.57 14.78,42.13 16.03,41.45 C 17.91,40.52 19.88,39.7 21.72,38.79 C 22.84,38.04 23.01,36.47 22.69,35.26 C 22.1,33.04 20.34,31.04 18.06,30.48 C 17.27,30.28 16.37,30.18 15.53,30.01 C 13.79,29.72 12.05,29.35 10.31,29.11 L 10.31,29.11 z" id="p3881" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.8,32.45 L 13.57,29.72" id="p4084" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 5.38,31.96 L 11.24,29.23" id="p4084-9" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 11.12,33.01 L 16.59,30.42" id="p4082" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 21.56,32.92 L 15.43,35.82 C 15.43,35.82 12.77,37.99 10.4,39.92 C 11,40.24 11.6,40.56 12.18,40.89 C 13.3,41.57 14.78,42.13 16.02,41.45 C 16.83,41.07 17.65,40.69 18.46,40.29 C 18.49,40.28 18.52,40.27 18.56,40.26 C 18.64,40.22 18.72,40.18 18.81,40.14 C 18.85,40.12 18.89,40.13 18.93,40.11 C 19.85,39.68 20.79,39.24 21.71,38.79 C 22.83,38.04 23,36.47 22.68,35.26 C 22.46,34.43 22.07,33.63 21.56,32.92 z" id="p4122" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.71,35.36 L 11.24,40.39 C 11.56,40.56 11.88,40.72 12.18,40.89 C 13.3,41.57 14.78,42.13 16.02,41.45 C 16.83,41.07 17.65,40.69 18.46,40.29 C 18.49,40.28 18.52,40.27 18.56,40.26 C 18.64,40.22 18.72,40.18 18.81,40.14 C 18.85,40.12 18.89,40.13 18.93,40.11 C 19.85,39.68 20.79,39.24 21.71,38.79 C 22.81,38.06 23,36.55 22.71,35.36 z" id="p4239" style="fill:#b77711;fill-opacity:1;stroke:none"/>
<path d="M 14.25,34.11 L 20.04,31.51" id="p4080" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 16.7,37.11 L 22.26,34.48" id="p4078-2" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.47,36.73 L 22.03,34.11" id="p4078" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 16.86,39.92 L 22.59,37.27" id="p4076-6" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.83,39.47 L 22.56,36.81" id="p4076" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 4.75,31.68 C 4.43,31.68 4.14,31.77 3.88,31.93 C 2.84,32.58 2.87,34.3 3.91,35.77 C 4.47,36.57 5.06,37.19 5.73,37.56 L 12.07,40.81 C 12.34,41 12.63,41.14 12.91,41.27 C 14.06,41.83 15.22,41.94 16.1,41.4 C 17.67,40.42 17.65,37.82 16.07,35.59 C 15.06,34.17 13.66,33.26 12.38,33.02 L 12.38,32.99 C 12.12,32.97 5.14,31.7 4.88,31.68 C 4.86,31.68 4.84,31.68 4.82,31.68 C 4.8,31.68 4.77,31.68 4.75,31.68 L 4.75,31.68 z" id="p3881-5" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 5.64,32.71 C 5.36,32.7 5.11,32.74 4.87,32.84 C 3.95,33.25 3.87,34.5 4.69,35.63 C 5.12,36.24 5.59,36.73 6.15,37.04 L 11.4,39.77 C 11.63,39.93 11.87,40.05 12.1,40.16 C 13.06,40.64 14.05,40.78 14.83,40.44 C 16.24,39.83 16.36,37.94 15.13,36.23 C 14.35,35.14 13.2,34.4 12.11,34.15 L 12.11,34.13 C 11.89,34.1 5.97,32.76 5.75,32.72 C 5.73,32.72 5.71,32.72 5.69,32.72 C 5.68,32.72 5.66,32.72 5.64,32.71 L 5.64,32.71 z" id="p3881-5-7" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 6.41,32.89 C 6.43,33.34 6.62,33.81 6.97,34.29 C 7.41,34.9 7.88,35.39 8.44,35.7 L 13.69,38.45 C 13.91,38.61 14.14,38.71 14.37,38.82 C 14.87,39.07 15.39,39.25 15.87,39.29 C 16.15,38.44 15.89,37.3 15.12,36.23 C 14.34,35.14 13.21,34.39 12.12,34.14 C 11.93,34.11 7.55,33.13 6.41,32.89 L 6.41,32.89 z" id="p3881-5-7-4" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.31,29.11 C 9.63,29.14 9.06,29.58 8.44,29.82 C 7.4,30.28 6.52,30.75 5.53,31.2 C 4.97,31.47 4.37,31.71 3.81,31.98 C 2.87,32.66 3.01,34.01 3.44,34.95 C 3.94,36.2 4.93,37.18 6.09,37.76 C 8.13,38.72 10.22,39.77 12.19,40.89 C 13.3,41.57 14.78,42.13 16.03,41.45 C 17.94,40.52 19.9,39.68 21.72,38.79 C 22.84,38.04 23.01,36.47 22.69,35.26 C 22.1,33.04 20.34,31.04 18.06,30.48 C 17.27,30.28 16.37,30.18 15.53,30.01 C 13.79,29.72 12.05,29.35 10.31,29.11 L 10.31,29.11 z" id="p3881-6" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,33.11 C 7.2,33.2 6.91,33.35 6.65,33.45 C 6.06,33.81 6.06,34.78 6.65,35.61 C 7.24,36.44 8.19,36.81 8.77,36.45 C 9.07,36.32 9.3,36.21 9.56,36.11 C 10.14,35.74 10.14,34.78 9.56,33.95 C 9.42,33.76 9.25,33.62 9.09,33.48 C 8.53,33.36 7.99,33.23 7.43,33.11 L 7.43,33.11 z" id="p3881-7-3-7" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.75,36.15 C 8.18,36.51 7.25,36.14 6.68,35.34 C 6.10,34.53 6.10,33.59 6.66,33.23 C 7.23,32.88 8.16,33.24 8.74,34.05 C 9.31,34.85 9.32,35.79 8.75,36.15 L 8.75,36.15 z" id="p3881-7-3" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.99,34.45 C 12.9,34.48 12.79,34.49 12.71,34.54 C 12.4,34.67 12.03,34.88 11.68,35.01 C 10.89,35.5 10.89,36.8 11.68,37.92 C 12.47,39.04 13.76,39.57 14.56,39.07 C 14.96,38.9 15.24,38.74 15.59,38.61 C 15.73,38.52 15.87,38.4 15.96,38.26 C 15.89,37.62 15.6,36.91 15.12,36.23 C 14.55,35.43 13.79,34.82 12.99,34.45 z" id="p3881-7-3-7-7" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.41,38.93 C 13.63,39.40 12.37,38.88 11.59,37.76 C 10.81,36.64 10.82,35.34 11.60,34.87 C 12.38,34.40 13.65,34.92 14.42,36.04 C 15.20,37.16 15.19,38.46 14.41,38.93 L 14.41,38.93 z" id="p3881-7-3-8" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,33.11 C 7.2,33.2 6.91,33.35 6.65,33.45 C 6.06,33.81 6.06,34.78 6.65,35.61 C 7.24,36.44 8.19,36.81 8.77,36.45 C 9.07,36.32 9.3,36.21 9.56,36.11 C 10.14,35.74 10.14,34.78 9.56,33.95 C 9.42,33.76 9.25,33.62 9.09,33.48" id="p3881-7-3-7-9" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.99,34.45 C 12.9,34.48 12.79,34.49 12.71,34.54 C 12.4,34.67 12.03,34.88 11.68,35.01 C 10.89,35.5 10.89,36.8 11.68,37.92 C 12.47,39.04 13.76,39.57 14.56,39.07 C 14.96,38.9 15.24,38.74 15.59,38.61 C 15.73,38.52 15.87,38.4 15.96,38.26" id="p3881-7-3-7-7-7" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 5.64,32.71 C 5.36,32.7 5.11,32.74 4.87,32.84 C 3.95,33.25 3.87,34.5 4.69,35.63 C 5.12,36.24 5.59,36.73 6.15,37.04 L 11.4,39.77 C 11.63,39.93 11.87,40.05 12.1,40.16 C 13.06,40.64 14.05,40.78 14.83,40.44 C 16.24,39.83 16.36,37.94 15.13,36.23 C 14.35,35.14 13.2,34.4 12.11,34.15 C 10.04,33.67 7.86,33.17 5.75,32.72 C 5.73,32.72 5.71,32.72 5.69,32.72 C 5.68,32.72 5.66,32.72 5.64,32.71 L 5.64,32.71 z" id="p3881-5-7-8" style="fill:none;stroke:#2c1b06;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.30,35.71 C 8.00,35.91 7.49,35.71 7.17,35.25 C 6.86,34.79 6.85,34.25 7.16,34.04 C 7.47,33.84 7.97,34.05 8.29,34.51 C 8.61,34.97 8.61,35.50 8.30,35.71 L 8.30,35.71 z" id="p3881-7-3-1" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.43,34.04 C 7.28,34.3 7.32,34.7 7.59,35.07 C 7.83,35.42 8.16,35.63 8.46,35.64 C 8.47,35.64 8.48,35.64 8.49,35.64 C 8.63,35.38 8.56,34.94 8.31,34.57 C 8.07,34.24 7.72,34.06 7.43,34.04 L 7.43,34.04 z" id="p3881-7-3-1-6" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 39.28,14.47 L 27.28,20.53 L 27.28,21.62 L 39.28,15.56 L 39.28,14.47 z" id="p5068" style="fill:#900000;fill-opacity:1;stroke:none;marker:none;visibility:visible;display:inline"/>
<path d="M 35.24,17.1 L 38.09,15.62" id="p5093" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 29.09,20.2 L 31.95,18.73" id="p5093-1" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2458">
<path d="M 19.03,20.03 C 19.71,20.06 20.29,20.5 20.91,20.75 C 21.95,21.2 22.82,21.67 23.82,22.11 C 24.38,22.38 24.98,22.62 25.53,22.89 C 26.47,23.57 26.34,24.93 25.91,25.86 C 25.4,27.11 24.42,28.09 23.25,28.67 C 21.22,29.63 19.13,30.68 17.16,31.8 C 16.04,32.48 14.56,33.04 13.32,32.36 C 11.44,31.43 9.47,30.61 7.63,29.7 C 6.5,28.95 6.34,27.38 6.66,26.17 C 7.24,23.95 9.01,21.96 11.28,21.4 C 12.07,21.2 12.98,21.1 13.82,20.93 C 15.55,20.64 17.29,20.27 19.03,20.03 L 19.03,20.03 z" id="p3881-2-7" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 18.23,23.92 L 12.76,21.34" id="p4082-6-4" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 7.79,23.83 L 13.92,26.74 C 13.92,26.74 16.58,28.9 18.95,30.83 C 18.35,31.15 17.74,31.47 17.17,31.8 C 16.05,32.48 14.57,33.04 13.32,32.36 C 12.51,31.98 11.69,31.6 10.88,31.2 C 10.85,31.19 10.82,31.18 10.79,31.17 C 10.71,31.13 10.62,31.09 10.54,31.05 C 10.5,31.03 10.45,31.04 10.42,31.02 C 9.49,30.59 8.55,30.15 7.63,29.7 C 6.51,28.95 6.35,27.38 6.67,26.17 C 6.88,25.34 7.27,24.54 7.79,23.83 L 7.79,23.83 z" id="p4122-0-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 6.63,26.27 L 18.1,31.3 C 17.79,31.47 17.47,31.63 17.17,31.8 C 16.05,32.48 14.57,33.04 13.32,32.36 C 12.51,31.98 11.69,31.6 10.88,31.2 C 10.85,31.19 10.82,31.18 10.79,31.17 C 10.71,31.13 10.62,31.09 10.54,31.05 C 10.5,31.03 10.45,31.04 10.42,31.02 C 9.49,30.59 8.55,30.15 7.63,29.7 C 6.54,28.97 6.35,27.46 6.63,26.27 L 6.63,26.27 z" id="p4239-2-9" style="fill:#b77711;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 15.1,25.02 L 9.31,22.42" id="p4080-7-3" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.65,28.02 L 7.09,25.39" id="p4078-2-1-7" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.88,27.64 L 7.32,25.02" id="p4078-5-9" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.49,30.83 L 6.76,28.18" id="p4076-6-9-2" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.51,30.38 L 6.79,27.72" id="p4076-7-4" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 19.03,20.03 C 19.71,20.06 20.29,20.5 20.91,20.75 C 21.95,21.2 22.82,21.67 23.82,22.11 C 24.38,22.38 24.98,22.62 25.53,22.89 C 26.47,23.57 26.34,24.93 25.91,25.86 C 25.4,27.11 24.42,28.09 23.25,28.67 C 21.22,29.63 19.13,30.68 17.16,31.8 C 16.04,32.48 14.56,33.04 13.32,32.36 C 11.4,31.43 9.45,30.59 7.63,29.7 C 6.5,28.95 6.34,27.38 6.66,26.17 C 7.24,23.95 9.01,21.96 11.28,21.4 C 12.07,21.2 12.98,21.1 13.82,20.93 C 15.55,20.64 17.29,20.27 19.03,20.03 L 19.03,20.03 z" id="p3881-6-0-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 24.91,16.14 L 39.41,23.39 C 39.41,26.66 39.41,29.66 39.41,32.64 L 24.91,39.89 L 10.41,32.64 C 10.41,29.61 10.41,25.88 10.41,23.39 L 24.91,16.14 z" id="p2993-7-32" style="fill:#be00b6;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 34.47,20.93 L 39.41,23.39 L 39.41,32.64 L 24.97,39.86 L 24.97,28.74 L 34.47,20.93 L 34.47,20.93 z" id="p4502-8" style="fill:#7e007f;fill-opacity:1;stroke:none"/>
<path d="M 24.91,30.64 L 39.41,23.39 L 24.91,16.14 L 10.41,23.39 L 24.91,30.64 z" id="p2993-7-9-49" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 24.98,30.79 L 24.98,39.73" id="p3111-6" style="fill:none;stroke:#d838d5;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.32,17.35 L 35.88,21.6 L 29.41,24.85 L 20.85,20.57 L 27.32,17.35 z" id="p2993-7-9-7-0" style="fill:none;stroke:#5b215d;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 10.41,23.39 L 24.91,30.64 L 39.41,23.39" id="p2993-7-9-4-0" style="fill:none;stroke:#ec85ef;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 36.94,29.6 L 36.94,26.65 L 31.9,29.17 L 31.9,31.6" id="p4705-4" style="fill:none;stroke:#a72fab;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24.91,16.14 L 39.41,23.39 C 39.41,26.66 39.41,29.66 39.41,32.64 L 24.91,39.89 L 10.41,32.64 C 10.41,29.61 10.41,25.88 10.41,23.39 L 24.91,16.14 z" id="p2993-7-3-6" style="fill:none;stroke:#3c003b;stroke-opacity:1;display:inline"/>
<path d="M 19.29,18.32 C 21.02,18.25 23.09,19.12 24.22,20.45 C 25.22,21.63 25.42,22.73 24.98,23.48 C 25.33,25.14 25.04,26.49 23.22,26.89 C 21.39,27.29 18.86,26.38 17.57,24.86 C 16.57,23.68 16.62,22.73 16.73,21.74 C 16.79,19.92 16.75,18.81 18.57,18.42 C 18.8,18.37 19.04,18.33 19.29,18.32 L 19.29,18.32 z" id="p4109-4" style="fill:#3c003b;fill-opacity:1;fill-rule:nonzero;stroke:#3c003b;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-29" style="fill:#be00b6;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 8.97,12.67 L 21.47,18.92 L 21.47,23.26 L 8.97,17.01 L 8.97,12.67 z" id="p2993-7-9-8-8-5-59" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 26.69,13.04 L 29.97,14.7 L 29.97,21.32 L 22.38,25.14 L 22.38,17.07 L 22.29,16.76 L 26.69,13.04 z" id="p4170-7" style="fill:#7e007f;fill-opacity:1;stroke:none"/>
<path d="M 22.39,18.53 L 22.39,24.77" id="p5148-2" style="fill:none;stroke:#d838d5;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.48,7.45 L 29.98,14.7 L 22.35,18.51 L 7.85,11.26 L 15.48,7.45 z" id="p2993-7-9-8-8-51" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 29.98,14.7 L 22.35,18.51 L 7.85,11.26" id="p2993-7-9-8-8-57-9" style="fill:none;stroke:#ec85ef;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 15.47,7.45 L 29.97,14.7 C 29.97,17.38 29.97,19.97 29.97,21.32 L 22.35,25.14 L 7.85,17.89 C 7.85,15.64 7.85,12.93 7.85,11.26 L 15.47,7.45 z" id="p2993-7-9-8-2-6" style="fill:none;stroke:#3c003b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.97,12.67 L 13.26,14.82 L 8.97,16.95 L 8.97,12.67 z" id="p2993-7-9-8-8-5-5-0" style="fill:#7e007f;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 21.47,31.22 L 12.96,26.98" id="p5229-8-1" style="fill:none;stroke:#ff7bff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 21.78,30.54 C 21.83,30.56 22.93,31.21 23,31.26 L 23,38.26 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54 z" id="p4502-0-2-8" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 15.63,33.72 L 23,37.97 L 23,38.26 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.72 z" id="p4925-8" style="fill:#be00b6;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23,31.26 L 23,38.26 L 16.85,41.35 L 16.85,34.35 L 23,31.26 z" id="p4502-0-7" style="fill:#7e007f;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 21.35,30.76 L 12.83,26.52" id="p5229-81" style="fill:none;stroke:#390e3a;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 22.58,38.5 L 16.85,41.35 C 16.77,41.31 15.69,40.67 15.63,40.63 L 15.63,33.63 L 21.78,30.54" id="p4502-0-2-0-6" style="fill:none;stroke:#3c003b;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 12.18,25.76 C 12.23,25.78 13.33,26.43 13.4,26.48 L 13.4,33.48 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76 z" id="p4502-0-2-4-0" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 6.03,28.94 L 13.4,33.19 L 13.4,33.48 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.94 z" id="p4925-0-0" style="fill:#be00b6;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.4,26.48 L 13.4,33.48 L 7.24,36.57 L 7.24,29.57 L 13.4,26.48 L 13.4,26.48 z" id="p4502-0-1-2" style="fill:#7e007f;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 12.98,33.72 L 7.24,36.57 C 7.17,36.53 6.09,35.89 6.03,35.85 L 6.03,28.85 L 12.18,25.76" id="p4502-0-2-0-9-1" style="fill:none;stroke:#3c003b;stroke-width:0.60;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 9.47,12.91 L 21.47,18.91 L 21.47,22.69 L 9.47,16.69 L 9.47,12.91 z" id="p2993-7-9-8-8-5-9-2" style="fill:#1a1a1a;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 9.47,14.26 L 21.47,20.32 L 21.47,21.41 L 9.47,15.35 L 9.47,14.26 z" id="p5068-5" style="fill:#900000;fill-opacity:1;stroke:none;marker:none;visibility:visible"/>
<path d="M 13.51,16.88 L 10.66,15.41" id="p5093-4" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 19.66,19.99 L 16.8,18.51" id="p5093-1-8" style="fill:none;stroke:#ff0b0b;stroke-width:1.38;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<g id="g2493">
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.84,40.31 28.87,39.49 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-3" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 40.95,32.24 L 35.18,29.51" id="p4084-7" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 43.36,31.75 L 37.51,29.02" id="p4084-9-0" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 37.63,32.8 L 32.16,30.21" id="p4082-64" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.19,32.71 L 33.32,35.61 C 33.32,35.61 35.98,37.77 38.35,39.71 C 37.75,40.02 37.15,40.35 36.57,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 31.92,40.86 31.1,40.47 30.29,40.08 C 30.26,40.07 30.22,40.06 30.19,40.05 C 30.11,40.01 30.03,39.97 29.94,39.93 C 29.9,39.91 29.86,39.92 29.82,39.89 C 28.9,39.46 27.95,39.03 27.04,38.58 C 25.91,37.82 25.75,36.26 26.07,35.05 C 26.29,34.22 26.68,33.41 27.19,32.71 z" id="p4122-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 26.04,35.14 L 37.51,40.18 C 37.19,40.34 36.87,40.5 36.57,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 31.92,40.86 31.1,40.47 30.29,40.08 C 30.26,40.07 30.22,40.06 30.19,40.05 C 30.11,40.01 30.03,39.97 29.94,39.93 C 29.9,39.91 29.86,39.92 29.82,39.89 C 28.9,39.46 27.95,39.03 27.04,38.58 C 25.94,37.84 25.75,36.34 26.04,35.14 z" id="p4239-0" style="fill:#b77711;fill-opacity:1;stroke:none"/>
<path d="M 34.5,33.9 L 28.71,31.3" id="p4080-1" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.05,36.89 L 26.49,34.27" id="p4078-2-15" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 32.28,36.52 L 26.72,33.9" id="p4078-3" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 31.89,39.71 L 26.16,37.05" id="p4076-6-1" style="fill:none;stroke:#d6bb68;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.91,39.26 L 26.19,36.6" id="p4076-0" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 43.99,31.47 C 44.31,31.47 44.61,31.56 44.87,31.72 C 45.91,32.36 45.88,34.08 44.84,35.56 C 44.28,36.36 43.69,36.98 43.02,37.35 L 36.68,40.59 C 36.41,40.79 36.12,40.93 35.84,41.06 C 34.69,41.62 33.53,41.73 32.65,41.19 C 31.08,40.21 31.1,37.61 32.68,35.37 C 33.69,33.95 35.09,33.05 36.37,32.81 L 36.37,32.78 C 36.63,32.76 43.61,31.49 43.87,31.47 C 43.89,31.47 43.91,31.47 43.93,31.47 C 43.95,31.47 43.97,31.47 43.99,31.47 L 43.99,31.47 z" id="p3881-5-4" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 L 36.64,33.91 C 36.86,33.88 42.78,32.54 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-7" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 42.34,32.68 C 42.31,33.12 42.13,33.6 41.78,34.08 C 41.34,34.69 40.87,35.18 40.31,35.49 L 35.06,38.24 C 34.84,38.39 34.61,38.5 34.37,38.61 C 33.88,38.86 33.36,39.04 32.87,39.08 C 32.6,38.23 32.85,37.09 33.62,36.02 C 34.41,34.93 35.54,34.18 36.62,33.93 C 36.82,33.9 41.2,32.92 42.34,32.68 L 42.34,32.68 z" id="p3881-5-7-4-0" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.44,28.89 C 39.12,28.93 39.69,29.37 40.31,29.61 C 41.35,30.06 42.23,30.54 43.22,30.99 C 43.78,31.26 44.38,31.49 44.94,31.77 C 45.87,32.45 45.74,33.8 45.31,34.74 C 44.81,35.98 43.82,36.97 42.66,37.55 C 40.62,38.51 38.53,39.56 36.56,40.68 C 35.45,41.36 33.97,41.92 32.72,41.24 C 30.81,40.3 28.85,39.47 27.03,38.58 C 25.91,37.82 25.74,36.26 26.06,35.05 C 26.65,32.82 28.41,30.82 30.69,30.27 C 31.47,30.07 32.38,29.97 33.22,29.8 C 34.95,29.51 36.7,29.13 38.44,28.89 L 38.44,28.89 z" id="p3881-6-4" style="fill:none;stroke:#2c1b06;stroke-width:0.69;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27 C 40.22,33.14 40.76,33.02 41.32,32.89 L 41.32,32.89 z" id="p3881-7-3-7-3" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.31,33.10 C 40.85,33.19 40.35,33.54 40,34.04 C 39.42,34.85 39.43,35.78 40,36.14 C 40.56,36.49 41.48,36.13 42.06,35.32 C 42.63,34.52 42.66,33.58 42.09,33.23 C 41.88,33.10 41.58,33.05 41.31,33.10 z" id="p3881-7-3-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05 C 32.85,37.41 33.14,36.7 33.63,36.02 C 34.2,35.22 34.96,34.61 35.76,34.24 z" id="p3881-7-3-7-7-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.46,34.5 C 35.74,34.49 34.89,35.00 34.31,35.84 C 33.53,36.96 33.56,38.24 34.34,38.71 C 35.12,39.19 36.38,38.68 37.15,37.56 C 37.93,36.44 37.93,35.13 37.15,34.65 C 36.96,34.53 36.70,34.50 36.46,34.5 z" id="p3881-7-3-8-5" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.32,32.89 C 41.55,32.99 41.84,33.14 42.1,33.24 C 42.68,33.6 42.69,34.56 42.1,35.39 C 41.51,36.23 40.56,36.6 39.97,36.24 C 39.68,36.11 39.45,35.99 39.19,35.89 C 38.61,35.53 38.61,34.57 39.19,33.74 C 39.33,33.55 39.5,33.41 39.66,33.27" id="p3881-7-3-7-9-7" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.76,34.24 C 35.85,34.26 35.96,34.28 36.04,34.33 C 36.35,34.45 36.72,34.67 37.07,34.8 C 37.86,35.29 37.86,36.58 37.07,37.71 C 36.27,38.83 34.98,39.35 34.19,38.86 C 33.79,38.69 33.51,38.53 33.16,38.39 C 33.02,38.3 32.88,38.19 32.79,38.05" id="p3881-7-3-7-7-7-5" style="fill:none;stroke:#191919;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 43.11,32.5 C 43.38,32.49 43.64,32.53 43.87,32.63 C 44.8,33.04 44.88,34.29 44.06,35.42 C 43.63,36.03 43.16,36.52 42.6,36.83 L 37.34,39.56 C 37.12,39.71 36.88,39.83 36.65,39.95 C 35.69,40.42 34.7,40.57 33.92,40.23 C 32.51,39.62 32.38,37.73 33.62,36.02 C 34.4,34.93 35.55,34.19 36.64,33.94 C 38.71,33.46 40.89,32.96 43,32.51 C 43.02,32.51 43.04,32.51 43.06,32.51 C 43.07,32.51 43.09,32.5 43.11,32.5 L 43.11,32.5 z" id="p3881-5-7-8-6" style="fill:none;stroke:#2c1b06;stroke-width:0.30;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.31,33.75 C 41.02,33.74 40.70,33.96 40.46,34.31 C 40.15,34.77 40.12,35.29 40.43,35.5 C 40.74,35.70 41.24,35.49 41.56,35.03 C 41.87,34.57 41.90,34.04 41.59,33.84 C 41.51,33.79 41.40,33.75 41.31,33.75 z" id="p3881-7-3-1-4" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 41.35,33.73 C 41.50,33.99 41.45,34.39 41.19,34.76 C 40.95,35.10 40.62,35.32 40.32,35.33 C 40.31,35.33 40.30,35.33 40.29,35.33 C 40.15,35.06 40.22,34.62 40.47,34.26 C 40.71,33.93 41.05,33.75 41.35,33.73 L 41.35,33.73 z" id="p3881-7-3-1-6-7" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2459">
<path d="M 31.98,17.58 C 31.85,17.59 31.71,17.63 31.58,17.67 C 28.37,19.07 28.21,19.27 25.84,20.42 C 25.64,20.54 25.46,20.68 25.29,20.85 C 24.96,21.18 24.71,21.61 24.55,22.09 C 24.24,23.08 24.28,24.31 24.75,25.58 C 25.36,27.18 26.54,28.43 27.79,29.01 L 27.79,29.04 C 28.05,29.13 34.87,32.22 35.13,32.32 C 35.15,32.32 35.18,32.31 35.2,32.32 C 35.22,32.32 35.24,32.34 35.26,32.35 C 35.6,32.43 35.92,32.43 36.24,32.36 C 38.18,31.53 40.26,30.39 41.31,29.84 C 42.58,29.52 43.08,27.92 42.44,26.26 C 42.11,25.36 41.7,24.62 41.12,24.09 L 35.54,19.31 C 35.31,19.05 35.08,18.84 34.83,18.63 C 33.94,17.9 32.94,17.49 31.98,17.58 z" id="p3881-5-2-4-3-07" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 34.69,26.49 L 40.48,23.89" id="p4080-79-8-3" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.64,24.26 L 38.12,21.69" id="p4082-5-3-6" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 30.16,22.4 L 35.94,19.68" id="p4084-5-3-8" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 42.11,25.5 L 32.77,29.97 C 32.77,29.97 32.58,30.97 32.55,31.16 C 33.7,31.67 35.05,32.28 35.14,32.31 C 35.16,32.32 35.18,32.31 35.2,32.31 C 35.22,32.32 35.24,32.34 35.27,32.34 C 35.6,32.43 35.92,32.42 36.23,32.34 C 38.17,31.52 40.25,30.39 41.3,29.84 C 42.57,29.53 43.09,27.92 42.45,26.25 C 42.35,25.98 42.23,25.74 42.11,25.5 z" id="p7129-9" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.85,29 L 42.41,26.37" id="p4078-2-4-8-0" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 42.64,27 L 33.05,31.38 C 33.88,31.75 35.07,32.29 35.14,32.31 C 35.16,32.32 35.18,32.31 35.2,32.31 C 35.22,32.32 35.24,32.34 35.27,32.34 C 35.6,32.43 35.92,32.42 36.23,32.34 C 38.17,31.52 40.25,30.39 41.3,29.84 C 42.37,29.58 42.89,28.37 42.64,27 z" id="p7131-2" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.91,31.13 L 42.64,28.28" id="p4076-6-5-6-2" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 36.62,28.62 L 42.18,26" id="p4078-4-2-8" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 36.89,30.67 L 42.61,27.83" id="p4076-2-4-5" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 27.9,20.84 L 33.75,18.11" id="p4084-9-2-2-2" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.98,17.58 C 31.85,17.59 31.71,17.63 31.58,17.67 C 28.37,19.07 28.21,19.27 25.84,20.42 C 25.64,20.54 25.46,20.68 25.29,20.85 C 24.96,21.18 24.71,21.61 24.55,22.09 C 24.24,23.08 24.28,24.31 24.75,25.58 C 25.36,27.18 26.54,28.43 27.79,29.01 L 27.79,29.04 C 28.05,29.13 34.87,32.22 35.13,32.32 C 35.15,32.32 35.18,32.31 35.2,32.32 C 35.22,32.32 35.24,32.34 35.26,32.35 C 35.6,32.43 35.92,32.43 36.24,32.36 C 38.18,31.53 40.26,30.39 41.31,29.84 C 42.58,29.52 43.08,27.92 42.44,26.26 C 42.11,25.36 41.7,24.62 41.12,24.09 L 35.54,19.31 C 35.31,19.05 35.08,18.84 34.83,18.63 C 33.94,17.9 32.94,17.49 31.98,17.58 z" id="p3881-5-2-4-3-0-5" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g2442">
<path d="M 6.43,20.32 C 6.38,20.35 5.28,21 5.21,21.04 L 5.21,28.03 L 11.36,31.13 C 11.44,31.08 12.52,30.44 12.58,30.41 L 12.58,23.41 L 6.43,20.32 z" id="p4502-0-2-5" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 5.21,21.04 L 5.21,28.03 L 11.36,31.13 L 11.36,24.13 L 5.21,21.04 L 5.21,21.04 z" id="p4502-0-16" style="fill:#7e007f;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 6.43,20.32 C 6.38,20.35 5.28,21 5.21,21.04 L 5.21,28.03 L 11.36,31.13 C 11.44,31.08 12.52,30.44 12.58,30.41 L 12.58,23.41 L 6.43,20.32 z" id="p4502-0-2-5-1" style="fill:none;stroke:#3c003b;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-4" style="fill:#be00b6;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 14.27,21.14 L 9.34,23.61 L 9.34,32.86 L 23.77,40.07 L 23.77,28.95 L 14.27,21.14 z" id="p4502-88" style="fill:#7e007f;fill-opacity:1;stroke:none"/>
<path d="M 23.84,30.85 L 9.34,23.6 L 23.84,16.35 L 38.34,23.6 L 23.84,30.85 z" id="p2993-7-9-85" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.77,31 L 23.77,39.94" id="p3111-7" style="fill:none;stroke:#d838d5;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 28.73,21.96 L 20.17,26.21 L 26.64,29.46 L 35.2,25.18 L 28.73,21.96 L 28.73,21.96 z" id="p2993-7-9-7-2" style="fill:none;stroke:#5b215d;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 38.34,23.6 L 23.84,30.85 L 9.34,23.6" id="p2993-7-9-4-2" style="fill:none;stroke:#ec85ef;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 15.77,32.01 L 15.77,29.06 L 20.81,31.58 L 20.81,34.01" id="p4705-2" style="fill:none;stroke:#a72fab;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.84,16.35 L 9.34,23.6 C 9.34,26.87 9.34,29.87 9.34,32.85 L 23.84,40.1 L 38.34,32.85 C 38.34,29.82 38.34,26.09 38.34,23.6 L 23.84,16.35 z" id="p2993-7-3-0" style="fill:none;stroke:#3c003b;stroke-opacity:1;display:inline"/>
<path d="M 22.43,15.02 C 20.69,14.94 18.62,15.81 17.49,17.14 C 16.49,18.32 16.29,19.43 16.73,20.17 C 16.39,21.84 16.67,23.18 18.49,23.58 C 20.33,23.98 22.85,23.07 24.14,21.55 C 25.14,20.37 25.1,19.43 24.98,18.44 C 24.92,16.61 24.96,15.51 23.14,15.11 C 22.91,15.06 22.67,15.03 22.43,15.02 L 22.43,15.02 z" id="p4109-9" style="fill:#3c003b;fill-opacity:1;fill-rule:nonzero;stroke:#3c003b;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 C 8.49,14.66 8.49,17.26 8.49,18.61 L 16.11,22.42 L 30.61,15.17 C 30.61,12.92 30.61,10.22 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-7" style="fill:#be00b6;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 11.77,10.33 L 8.49,11.99 L 8.49,18.61 L 16.08,22.42 L 16.08,14.36 L 16.18,14.05 L 11.77,10.33 z" id="p4170-3" style="fill:#7e007f;fill-opacity:1;stroke:none"/>
<path d="M 16.07,15.82 L 16.07,22.05" id="p5148-5" style="fill:none;stroke:#d838d5;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 L 16.11,15.8 L 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-8-7" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 8.49,11.99 L 16.11,15.8 L 30.61,8.55" id="p2993-7-9-8-8-57-8" style="fill:none;stroke:#ec85ef;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.99,4.74 L 8.49,11.99 C 8.49,14.66 8.49,17.26 8.49,18.61 L 16.11,22.42 L 30.61,15.17 C 30.61,12.92 30.61,10.22 30.61,8.55 L 22.99,4.74 z" id="p2993-7-9-8-2-7" style="fill:none;stroke:#3c003b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g2497">
<path d="M 12.18,27.63 C 12.05,27.64 11.91,27.68 11.78,27.71 C 8.57,29.12 8.41,29.32 6.04,30.47 C 5.84,30.58 5.65,30.73 5.49,30.9 C 5.16,31.23 4.91,31.66 4.75,32.15 C 4.43,33.13 4.47,34.37 4.95,35.63 C 5.56,37.24 6.73,38.49 7.99,39.06 L 7.99,39.09 C 8.25,39.18 15.07,42.28 15.33,42.37 C 15.35,42.38 15.37,42.37 15.39,42.37 C 15.42,42.38 15.44,42.4 15.46,42.41 C 15.79,42.49 16.12,42.49 16.44,42.41 C 18.37,41.59 20.46,40.44 21.51,39.9 C 22.78,39.58 23.28,37.98 22.64,36.31 C 22.3,35.42 21.9,34.67 21.31,34.14 L 15.73,29.36 C 15.51,29.1 15.28,28.89 15.03,28.68 C 14.14,27.95 13.14,27.54 12.18,27.63 z" id="p3881-5-2-4-3" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.89,36.55 L 20.68,33.95" id="p4080-79-8" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 12.84,34.32 L 18.31,31.73" id="p4082-5-3" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 10.36,32.46 L 16.13,29.73" id="p4084-5-3" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 22.31,35.56 L 12.96,40.03 C 12.96,40.03 12.78,41.03 12.75,41.21 C 13.89,41.73 15.25,42.34 15.34,42.37 C 15.36,42.38 15.38,42.36 15.4,42.37 C 15.42,42.38 15.44,42.4 15.46,42.4 C 15.8,42.49 16.12,42.48 16.43,42.4 C 18.37,41.58 20.45,40.45 21.5,39.9 C 22.76,39.58 23.28,37.98 22.65,36.31 C 22.55,36.04 22.43,35.8 22.31,35.56 z" id="p7129" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 17.04,39.05 L 22.61,36.43" id="p4078-2-4-8" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 22.84,37.06 L 13.25,41.43 C 14.08,41.81 15.27,42.34 15.34,42.37 C 15.36,42.38 15.38,42.36 15.4,42.37 C 15.42,42.38 15.44,42.4 15.46,42.4 C 15.8,42.49 16.12,42.48 16.43,42.4 C 18.37,41.58 20.45,40.45 21.5,39.9 C 22.57,39.63 23.09,38.43 22.84,37.06 z" id="p7131" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 17.11,41.18 L 22.84,38.34" id="p4076-6-5-6" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 16.82,38.68 L 22.38,36.06" id="p4078-4-2" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 17.08,40.73 L 22.81,37.89" id="p4076-2-4" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 8.09,30.89 L 13.95,28.16" id="p4084-9-2-2" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 15.47,42.41 C 15.8,42.49 16.13,42.49 16.45,42.41 C 17.72,42.1 18.21,40.48 17.58,38.82 C 17.24,37.92 16.82,37.17 16.24,36.64 L 10.68,31.87 C 10.46,31.62 10.2,31.41 9.95,31.2 C 8.93,30.36 7.76,29.94 6.7,30.21 C 4.78,30.69 4.01,33.12 4.97,35.64 C 5.58,37.25 6.75,38.48 8,39.05 L 7.99,39.08 C 8.25,39.17 15.08,42.28 15.34,42.37 C 15.36,42.38 15.38,42.38 15.4,42.39 C 15.42,42.4 15.45,42.4 15.47,42.41 L 15.47,42.41 z" id="p3881-5-2-4" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.18,27.63 C 12.05,27.64 11.91,27.68 11.78,27.71 C 8.57,29.12 8.41,29.32 6.04,30.47 C 5.84,30.58 5.65,30.73 5.49,30.9 C 5.16,31.23 4.91,31.66 4.75,32.15 C 4.43,33.13 4.47,34.37 4.95,35.63 C 5.56,37.24 6.73,38.49 7.99,39.06 L 7.99,39.09 C 8.25,39.18 15.07,42.28 15.33,42.37 C 15.35,42.38 15.37,42.37 15.39,42.37 C 15.42,42.38 15.44,42.4 15.46,42.41 C 15.79,42.49 16.12,42.49 16.44,42.41 C 18.37,41.59 20.46,40.44 21.51,39.9 C 22.78,39.58 23.28,37.98 22.64,36.31 C 22.3,35.42 21.9,34.67 21.31,34.14 L 15.73,29.36 C 15.51,29.1 15.28,28.89 15.03,28.68 C 14.14,27.95 13.14,27.54 12.18,27.63 z" id="p3881-5-2-4-3-0" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.53,41.44 C 14.82,41.55 15.12,41.6 15.42,41.59 C 16.59,41.55 17.17,40.49 16.72,39.23 C 16.49,38.56 16.17,37.98 15.68,37.53 L 11,33.4 C 10.82,33.2 10.6,33.01 10.39,32.83 C 9.53,32.1 8.5,31.64 7.51,31.67 C 5.73,31.74 4.85,33.33 5.52,35.22 C 5.95,36.43 6.92,37.45 8.01,38.04 L 8,38.05 C 8.23,38.15 14.19,41.3 14.41,41.4 C 14.43,41.41 14.45,41.41 14.47,41.42 C 14.49,41.43 14.51,41.43 14.53,41.44 L 14.53,41.44 z" id="p3881-5-2-4-6" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 7.68,31.68 C 7.52,32.25 7.55,32.93 7.81,33.65 C 8.23,34.86 9.21,35.88 10.31,36.46 L 10.28,36.5 C 10.51,36.59 16.46,39.74 16.68,39.84 C 16.7,39.85 16.73,39.86 16.75,39.87 C 16.76,39.88 16.79,39.86 16.81,39.87 C 16.82,39.87 16.83,39.87 16.84,39.87 C 16.82,39.66 16.79,39.47 16.71,39.25 C 16.48,38.57 16.17,37.98 15.68,37.53 L 11,33.4 C 10.81,33.19 10.61,33.02 10.4,32.84 C 9.59,32.15 8.62,31.7 7.68,31.68 z" id="p3881-5-2-4-6-7" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.12,31.75 C 8.09,31.76 8.06,31.76 8.03,31.78 C 7.58,31.97 7.28,32.12 6.78,32.4 C 5.95,32.91 5.98,34.26 6.81,35.43 C 7.63,36.6 8.95,37.13 9.78,36.62 C 10.31,36.29 10.6,36.25 11,36 C 11.63,35.6 11.78,34.71 11.43,33.78 L 11,33.4 C 10.81,33.19 10.61,33.02 10.4,32.84 C 9.72,32.26 8.91,31.87 8.12,31.75 z" id="p3881-7-2-2" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 9.72,36.50 C 8.92,37.00 7.61,36.47 6.80,35.32 C 6.00,34.17 6.00,32.83 6.81,32.34 C 7.61,31.84 8.92,32.37 9.72,33.52 C 10.53,34.67 10.53,36.00 9.72,36.50 L 9.72,36.50 z" id="p3881-7-2" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 8.12,31.75 C 8.09,31.76 8.06,31.76 8.03,31.78 C 7.58,31.97 7.28,32.12 6.78,32.4 C 5.95,32.91 5.98,34.26 6.81,35.43 C 7.63,36.6 8.95,37.13 9.78,36.62 C 10.31,36.29 10.6,36.25 11,36 C 11.63,35.6 11.78,34.71 11.43,33.78" id="p3881-7-2-2-4" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.37,35.65 C 13.2,35.65 13.04,35.69 12.9,35.78 C 12.64,35.9 12.44,36.05 12.21,36.18 C 11.65,36.53 11.65,37.47 12.21,38.28 C 12.78,39.08 13.71,39.44 14.28,39.09 C 14.53,39.01 14.71,38.82 14.93,38.68 C 15.38,38.4 15.48,37.75 15.21,37.09 L 13.59,35.68 C 13.52,35.67 13.44,35.65 13.37,35.65 z" id="p3881-7-2-6-3" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.27,38.96 C 13.72,39.29 12.84,38.93 12.29,38.16 C 11.74,37.38 11.74,36.48 12.29,36.15 C 12.83,35.82 13.72,36.18 14.26,36.95 C 14.81,37.73 14.81,38.63 14.27,38.96 L 14.27,38.96 z" id="p3881-7-2-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.59,35.68 C 13.52,35.67 13.44,35.65 13.37,35.65 C 13.2,35.65 13.04,35.69 12.9,35.78 C 12.64,35.9 12.44,36.05 12.21,36.18 C 11.65,36.53 11.65,37.47 12.21,38.28 C 12.78,39.08 13.71,39.44 14.28,39.09 C 14.53,39.01 14.71,38.82 14.93,38.68 C 15.38,38.4 15.48,37.75 15.21,37.09" id="p3881-7-2-6-3-8" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.53,41.44 C 14.82,41.55 15.12,41.6 15.42,41.59 C 16.59,41.55 17.17,40.49 16.72,39.23 C 16.49,38.56 16.17,37.98 15.68,37.53 L 11,33.4 C 10.82,33.2 10.6,33.01 10.39,32.83 C 9.53,32.1 8.5,31.64 7.51,31.67 C 5.73,31.74 4.85,33.33 5.52,35.22 C 5.95,36.43 6.92,37.45 8.01,38.04 L 8,38.05 C 8.23,38.15 14.19,41.3 14.41,41.4 C 14.43,41.41 14.45,41.41 14.47,41.42 C 14.49,41.43 14.51,41.43 14.53,41.44 L 14.53,41.44 z" id="p3881-5-2-4-6-5" style="fill:none;stroke:#2c1b06;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 13.83,38.36 C 13.53,38.56 13.02,38.36 12.70,37.90 C 12.39,37.44 12.38,36.90 12.69,36.69 C 13.00,36.49 13.50,36.70 13.82,37.16 C 14.14,37.62 14.14,38.15 13.83,38.36 L 13.83,38.36 z" id="p3881-7-3-1-5-5" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.97,36.62 C 12.82,36.88 12.86,37.28 13.12,37.65 C 13.36,37.99 13.7,38.20 14,38.21 C 14.01,38.21 14.02,38.21 14.03,38.21 C 14.17,37.95 14.1,37.51 13.84,37.15 C 13.61,36.82 13.26,36.64 12.97,36.62 z" id="p3881-7-3-1-6-5-5" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2985" style="display:inline">
<defs id="defs3"/>
<g id="layer3" style="display:inline">
<g id="g2451">
<path d="M 15.29,17.58 C 15.42,17.59 15.56,17.63 15.69,17.67 C 18.9,19.07 19.06,19.27 21.43,20.42 C 21.63,20.54 21.81,20.68 21.98,20.85 C 22.31,21.18 22.56,21.61 22.72,22.09 C 23.03,23.08 22.99,24.31 22.52,25.58 C 21.91,27.18 20.73,28.43 19.48,29.01 L 19.48,29.04 C 19.22,29.13 12.4,32.22 12.14,32.32 C 12.12,32.32 12.09,32.31 12.07,32.32 C 12.05,32.32 12.03,32.34 12.01,32.35 C 11.67,32.43 11.35,32.43 11.03,32.36 C 9.09,31.53 7.01,30.39 5.96,29.84 C 4.69,29.52 4.19,27.92 4.83,26.26 C 5.16,25.36 5.57,24.62 6.15,24.09 L 11.73,19.31 C 11.96,19.05 12.19,18.84 12.44,18.63 C 13.33,17.9 14.33,17.49 15.29,17.58 z" id="p3881-5-2-4-3-07-8" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 12.58,26.49 L 6.79,23.89" id="p4080-79-8-3-8" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 14.63,24.26 L 9.15,21.69" id="p4082-5-3-6-5" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 17.11,22.4 L 11.33,19.68" id="p4084-5-3-8-1" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 5.16,25.5 L 14.5,29.97 C 14.5,29.97 14.69,30.97 14.72,31.16 C 13.57,31.67 12.22,32.28 12.13,32.31 C 12.11,32.32 12.09,32.31 12.07,32.31 C 12.05,32.32 12.03,32.34 12,32.34 C 11.67,32.43 11.35,32.42 11.04,32.34 C 9.1,31.52 7.02,30.39 5.97,29.84 C 4.7,29.53 4.18,27.92 4.82,26.25 C 4.92,25.98 5.04,25.74 5.16,25.5 z" id="p7129-9-5" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.42,29 L 4.86,26.37" id="p4078-2-4-8-0-2" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 4.63,27 L 14.22,31.38 C 13.39,31.75 12.2,32.29 12.13,32.31 C 12.11,32.32 12.09,32.31 12.07,32.31 C 12.05,32.32 12.03,32.34 12,32.34 C 11.67,32.43 11.35,32.42 11.04,32.34 C 9.1,31.52 7.02,30.39 5.97,29.84 C 4.9,29.58 4.38,28.37 4.63,27 z" id="p7131-2-6" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10.36,31.13 L 4.63,28.28" id="p4076-6-5-6-2-9" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 10.65,28.62 L 5.09,26" id="p4078-4-2-8-2" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 10.38,30.67 L 4.66,27.83" id="p4076-2-4-5-1" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 19.37,20.84 L 13.52,18.11" id="p4084-9-2-2-2-8" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 15.29,17.58 C 15.42,17.59 15.56,17.63 15.69,17.67 C 18.9,19.07 19.06,19.27 21.43,20.42 C 21.63,20.54 21.81,20.68 21.98,20.85 C 22.31,21.18 22.56,21.61 22.72,22.09 C 23.03,23.08 22.99,24.31 22.52,25.58 C 21.91,27.18 20.73,28.43 19.48,29.01 L 19.48,29.04 C 19.22,29.13 12.4,32.22 12.14,32.32 C 12.12,32.32 12.09,32.31 12.07,32.32 C 12.05,32.32 12.03,32.34 12.01,32.35 C 11.67,32.43 11.35,32.43 11.03,32.36 C 9.09,31.53 7.01,30.39 5.96,29.84 C 4.69,29.52 4.19,27.92 4.83,26.26 C 5.16,25.36 5.57,24.62 6.15,24.09 L 11.73,19.31 C 11.96,19.05 12.19,18.84 12.44,18.63 C 13.33,17.9 14.33,17.49 15.29,17.58 z" id="p3881-5-2-4-3-0-5-6" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g2468">
<path d="M 40.84,20.32 C 40.89,20.35 41.99,21 42.06,21.04 L 42.06,28.03 L 35.91,31.13 C 35.83,31.08 34.75,30.44 34.69,30.41 L 34.69,23.41 L 40.84,20.32 z" id="p4502-0-2-5-2" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 42.06,21.04 L 42.06,28.03 L 35.91,31.13 L 35.91,24.13 L 42.06,21.04 L 42.06,21.04 z" id="p4502-0-16-1" style="fill:#7e007f;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 40.84,20.32 C 40.89,20.35 41.99,21 42.06,21.04 L 42.06,28.03 L 35.91,31.13 C 35.83,31.08 34.75,30.44 34.69,30.41 L 34.69,23.41 L 40.84,20.32 z" id="p4502-0-2-5-1-3" style="fill:none;stroke:#3c003b;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 23.43,16.35 L 37.93,23.6 C 37.93,26.87 37.93,29.87 37.93,32.85 L 23.43,40.1 L 8.93,32.85 C 8.93,29.82 8.93,26.09 8.93,23.6 L 23.43,16.35 z" id="p2993-7-4-6" style="fill:#be00b6;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 32.99,21.14 L 37.93,23.61 L 37.93,32.86 L 23.49,40.07 L 23.49,28.95 L 32.99,21.14 z" id="p4502-88-3" style="fill:#7e007f;fill-opacity:1;stroke:none"/>
<path d="M 23.43,30.85 L 37.93,23.6 L 23.43,16.35 L 8.93,23.6 L 23.43,30.85 z" id="p2993-7-9-85-8" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 23.49,31 L 23.49,39.94" id="p3111-7-9" style="fill:none;stroke:#d838d5;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 18.53,21.96 L 27.09,26.21 L 20.62,29.46 L 12.06,25.18 L 18.53,21.96 L 18.53,21.96 z" id="p2993-7-9-7-2-4" style="fill:none;stroke:#5b215d;stroke-width:0.40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 8.93,23.6 L 23.43,30.85 L 37.93,23.6" id="p2993-7-9-4-2-9" style="fill:none;stroke:#ec85ef;stroke-linejoin:bevel;stroke-opacity:1;display:inline"/>
<path d="M 31.49,32.01 L 31.49,29.06 L 26.46,31.58 L 26.46,34.01" id="p4705-2-7" style="fill:none;stroke:#a72fab;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 23.43,16.35 L 37.93,23.6 C 37.93,26.87 37.93,29.87 37.93,32.85 L 23.43,40.1 L 8.93,32.85 C 8.93,29.82 8.93,26.09 8.93,23.6 L 23.43,16.35 z" id="p2993-7-3-0-2" style="fill:none;stroke:#3c003b;stroke-opacity:1;display:inline"/>
<path d="M 24.84,15.02 C 26.57,14.94 28.65,15.81 29.78,17.14 C 30.77,18.32 30.97,19.43 30.53,20.17 C 30.88,21.84 30.59,23.18 28.78,23.58 C 26.94,23.98 24.41,23.07 23.12,21.55 C 22.12,20.37 22.17,19.43 22.28,18.44 C 22.34,16.61 22.3,15.51 24.12,15.11 C 24.35,15.06 24.59,15.03 24.84,15.02 L 24.84,15.02 z" id="p4109-9-7" style="fill:#3c003b;fill-opacity:1;fill-rule:nonzero;stroke:#3c003b;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.27,4.74 L 38.77,11.99 C 38.77,14.66 38.77,17.26 38.77,18.61 L 31.15,22.42 L 16.65,15.17 C 16.65,12.92 16.65,10.22 16.65,8.55 L 24.27,4.74 z" id="p2993-7-9-8-7-2" style="fill:#be00b6;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 35.49,10.33 L 38.77,11.99 L 38.77,18.61 L 31.18,22.42 L 31.18,14.36 L 31.09,14.05 L 35.49,10.33 z" id="p4170-3-4" style="fill:#7e007f;fill-opacity:1;stroke:none"/>
<path d="M 31.19,15.82 L 31.19,22.05" id="p5148-5-1" style="fill:none;stroke:#d838d5;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.28,4.74 L 38.78,11.99 L 31.15,15.8 L 16.65,8.55 L 24.28,4.74 z" id="p2993-7-9-8-8-7-2" style="fill:#fe3aff;fill-opacity:1;stroke:none;display:inline"/>
<path d="M 38.78,11.99 L 31.15,15.8 L 16.65,8.55" id="p2993-7-9-8-8-57-8-6" style="fill:none;stroke:#ec85ef;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24.27,4.74 L 38.77,11.99 C 38.77,14.66 38.77,17.26 38.77,18.61 L 31.15,22.42 L 16.65,15.17 C 16.65,12.92 16.65,10.22 16.65,8.55 L 24.27,4.74 z" id="p2993-7-9-8-2-7-8" style="fill:none;stroke:#3c003b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g2497">
<path d="M 35.09,27.63 C 35.22,27.64 35.36,27.68 35.49,27.71 C 38.7,29.12 38.86,29.32 41.23,30.47 C 41.43,30.58 41.62,30.73 41.78,30.9 C 42.11,31.23 42.36,31.66 42.52,32.15 C 42.84,33.13 42.8,34.37 42.32,35.63 C 41.71,37.24 40.54,38.49 39.28,39.06 L 39.28,39.09 C 39.02,39.18 32.2,42.28 31.94,42.37 C 31.92,42.38 31.9,42.37 31.88,42.37 C 31.85,42.38 31.83,42.4 31.81,42.41 C 31.48,42.49 31.15,42.49 30.83,42.41 C 28.9,41.59 26.81,40.44 25.76,39.9 C 24.49,39.58 23.99,37.98 24.63,36.31 C 24.97,35.42 25.37,34.67 25.96,34.14 L 31.54,29.36 C 31.76,29.1 31.99,28.89 32.24,28.68 C 33.13,27.95 34.13,27.54 35.09,27.63 z" id="p3881-5-2-4-3-4" style="fill:#ffc453;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.38,36.55 L 26.59,33.95" id="p4080-79-8-34" style="fill:none;stroke:#975e29;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 34.43,34.32 L 28.96,31.73" id="p4082-5-3-1" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 36.91,32.46 L 31.14,29.73" id="p4084-5-3-5" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24.96,35.56 L 34.31,40.03 C 34.31,40.03 34.49,41.03 34.52,41.21 C 33.38,41.73 32.02,42.34 31.93,42.37 C 31.91,42.38 31.89,42.36 31.87,42.37 C 31.85,42.38 31.83,42.4 31.81,42.4 C 31.47,42.49 31.15,42.48 30.84,42.4 C 28.9,41.58 26.82,40.45 25.77,39.9 C 24.51,39.58 23.99,37.98 24.62,36.31 C 24.72,36.04 24.84,35.8 24.96,35.56 z" id="p7129-1" style="fill:#df9e1f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.23,39.05 L 24.66,36.43" id="p4078-2-4-8-00" style="fill:none;stroke:#f1c057;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 24.43,37.06 L 34.02,41.43 C 33.19,41.81 32,42.34 31.93,42.37 C 31.91,42.38 31.89,42.36 31.87,42.37 C 31.85,42.38 31.83,42.4 31.81,42.4 C 31.47,42.49 31.15,42.48 30.84,42.4 C 28.9,41.58 26.82,40.45 25.77,39.9 C 24.7,39.63 24.18,38.43 24.43,37.06 z" id="p7131-28" style="fill:#b77711;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 30.16,41.18 L 24.43,38.34" id="p4076-6-5-6-6" style="fill:none;stroke:#d6bb68;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 30.45,38.68 L 24.89,36.06" id="p4078-4-2-5" style="fill:none;stroke:#975e29;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 30.19,40.73 L 24.46,37.89" id="p4076-2-4-0" style="fill:none;stroke:#975e29;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 39.18,30.89 L 33.32,28.16" id="p4084-9-2-2-9" style="fill:none;stroke:#975e29;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 31.8,42.41 C 31.47,42.49 31.14,42.49 30.82,42.41 C 29.55,42.1 29.06,40.48 29.69,38.82 C 30.03,37.92 30.45,37.17 31.03,36.64 L 36.59,31.87 C 36.81,31.62 37.07,31.41 37.32,31.2 C 38.34,30.36 39.51,29.94 40.57,30.21 C 42.49,30.69 43.26,33.12 42.3,35.64 C 41.69,37.25 40.52,38.48 39.27,39.05 L 39.28,39.08 C 39.02,39.17 32.19,42.28 31.93,42.37 C 31.91,42.38 31.89,42.38 31.87,42.39 C 31.85,42.4 31.82,42.4 31.8,42.41 L 31.8,42.41 z" id="p3881-5-2-4-0" style="fill:#945b00;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35.09,27.63 C 35.22,27.64 35.36,27.68 35.49,27.71 C 38.7,29.12 38.86,29.32 41.23,30.47 C 41.43,30.58 41.62,30.73 41.78,30.9 C 42.11,31.23 42.36,31.66 42.52,32.15 C 42.84,33.13 42.8,34.37 42.32,35.63 C 41.71,37.24 40.54,38.49 39.28,39.06 L 39.28,39.09 C 39.02,39.18 32.2,42.28 31.94,42.37 C 31.92,42.38 31.9,42.37 31.88,42.37 C 31.85,42.38 31.83,42.4 31.81,42.41 C 31.48,42.49 31.15,42.49 30.83,42.41 C 28.9,41.59 26.81,40.44 25.76,39.9 C 24.49,39.58 23.99,37.98 24.63,36.31 C 24.97,35.42 25.37,34.67 25.96,34.14 L 31.54,29.36 C 31.76,29.1 31.99,28.89 32.24,28.68 C 33.13,27.95 34.13,27.54 35.09,27.63 z" id="p3881-5-2-4-3-0-9" style="fill:none;stroke:#2c1b06;stroke-width:0.69;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.74,41.44 C 32.45,41.55 32.15,41.6 31.85,41.59 C 30.68,41.55 30.1,40.49 30.55,39.23 C 30.78,38.56 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.45,33.2 36.67,33.01 36.88,32.83 C 37.74,32.1 38.77,31.64 39.76,31.67 C 41.54,31.74 42.42,33.33 41.75,35.22 C 41.32,36.43 40.35,37.45 39.26,38.04 L 39.27,38.05 C 39.04,38.15 33.08,41.3 32.86,41.4 C 32.84,41.41 32.82,41.41 32.8,41.42 C 32.78,41.43 32.76,41.43 32.74,41.44 L 32.74,41.44 z" id="p3881-5-2-4-6-2" style="fill:#39200b;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.59,31.68 C 39.75,32.25 39.72,32.93 39.46,33.65 C 39.04,34.86 38.06,35.88 36.96,36.46 L 36.99,36.5 C 36.76,36.59 30.81,39.74 30.59,39.84 C 30.57,39.85 30.54,39.86 30.52,39.87 C 30.51,39.88 30.48,39.86 30.46,39.87 C 30.45,39.87 30.44,39.87 30.43,39.87 C 30.45,39.66 30.48,39.47 30.56,39.25 C 30.79,38.57 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.46,33.19 36.66,33.02 36.87,32.84 C 37.68,32.15 38.65,31.7 39.59,31.68 z" id="p3881-5-2-4-6-7-8" style="fill:#643c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.15,31.75 C 39.18,31.76 39.21,31.76 39.24,31.78 C 39.69,31.97 39.99,32.12 40.49,32.4 C 41.32,32.91 41.29,34.26 40.46,35.43 C 39.64,36.6 38.32,37.13 37.49,36.62 C 36.96,36.29 36.67,36.25 36.27,36 C 35.64,35.6 35.49,34.71 35.84,33.78 L 36.27,33.4 C 36.46,33.19 36.66,33.02 36.87,32.84 C 37.55,32.26 38.36,31.87 39.15,31.75 z" id="p3881-7-2-2-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 37.58,36.52 C 38.38,37.02 39.69,36.49 40.49,35.34 C 41.30,34.19 41.30,32.86 40.49,32.36 C 39.68,31.86 38.38,32.39 37.57,33.54 C 36.77,34.69 36.77,36.02 37.58,36.52 L 37.58,36.52 z" id="p3881-7-2-69" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 39.15,31.75 C 39.18,31.76 39.21,31.76 39.24,31.78 C 39.69,31.97 39.99,32.12 40.49,32.4 C 41.32,32.91 41.29,34.26 40.46,35.43 C 39.64,36.6 38.32,37.13 37.49,36.62 C 36.96,36.29 36.67,36.25 36.27,36 C 35.64,35.6 35.49,34.71 35.84,33.78" id="p3881-7-2-2-4-0" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.9,35.65 C 34.07,35.65 34.23,35.69 34.37,35.78 C 34.63,35.9 34.83,36.05 35.06,36.18 C 35.62,36.53 35.62,37.47 35.06,38.28 C 34.49,39.08 33.56,39.44 32.99,39.09 C 32.74,39.01 32.56,38.82 32.34,38.68 C 31.89,38.4 31.79,37.75 32.06,37.09 L 33.68,35.68 C 33.75,35.67 33.83,35.65 33.9,35.65 z" id="p3881-7-2-6-3-0" style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.07,39.01 C 33.61,39.34 34.50,38.98 35.04,38.20 C 35.59,37.43 35.59,36.53 35.05,36.19 C 34.50,35.86 33.61,36.22 33.07,37.00 C 32.52,37.78 32.52,38.67 33.07,39.01 L 33.07,39.01 z" id="p3881-7-2-6-6" style="fill:#363636;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.68,35.68 C 33.75,35.67 33.83,35.65 33.9,35.65 C 34.07,35.65 34.23,35.69 34.37,35.78 C 34.63,35.9 34.83,36.05 35.06,36.18 C 35.62,36.53 35.62,37.47 35.06,38.28 C 34.49,39.08 33.56,39.44 32.99,39.09 C 32.74,39.01 32.56,38.82 32.34,38.68 C 31.89,38.4 31.79,37.75 32.06,37.09" id="p3881-7-2-6-3-8-2" style="fill:none;stroke:#191919;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.74,41.44 C 32.45,41.55 32.15,41.6 31.85,41.59 C 30.68,41.55 30.1,40.49 30.55,39.23 C 30.78,38.56 31.1,37.98 31.59,37.53 L 36.27,33.4 C 36.45,33.2 36.67,33.01 36.88,32.83 C 37.74,32.1 38.77,31.64 39.76,31.67 C 41.54,31.74 42.42,33.33 41.75,35.22 C 41.32,36.43 40.35,37.45 39.26,38.04 L 39.27,38.05 C 39.04,38.15 33.08,41.3 32.86,41.4 C 32.84,41.41 32.82,41.41 32.8,41.42 C 32.78,41.43 32.76,41.43 32.74,41.44 L 32.74,41.44 z" id="p3881-5-2-4-6-5-5" style="fill:none;stroke:#2c1b06;stroke-width:0.30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.43,38.36 C 33.73,38.56 34.24,38.36 34.56,37.90 C 34.87,37.44 34.88,36.90 34.57,36.69 C 34.26,36.49 33.76,36.70 33.44,37.16 C 33.12,37.62 33.12,38.15 33.43,38.36 L 33.43,38.36 z" id="p3881-7-3-1-5-5-7" style="fill:#535353;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 34.33,36.59 C 34.48,36.85 34.44,37.25 34.18,37.62 C 33.94,37.96 33.60,38.17 33.30,38.18 C 33.29,38.18 33.28,38.18 33.27,38.18 C 33.13,37.92 33.20,37.48 33.46,37.12 C 33.69,36.79 34.04,36.61 34.33,36.59 z" id="p3881-7-3-1-6-5-5-5" style="fill:#202020;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 48" id="svg2383">
<defs id="defs2385"/>
<g id="layer1">
<path d="M 4.06,4 C 2.67,4 1.56,5.11 1.56,6.5 L 1.56,33.5 C 1.56,34.88 2.67,36 4.06,36 L 19.12,36 L 23.96,44.2 L 28.56,36 L 43.93,36 C 45.32,36 46.43,34.88 46.43,33.5 L 46.43,6.5 C 46.43,5.11 45.32,4 43.93,4 L 4.06,4 z" id="r2393" style="opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 14.34,4 C 12.8,4.46 11.27,5.01 9.84,5.71 C 6.14,7.54 3.34,10.03 1.56,12.81 L 1.56,26.96 C 2.12,27.79 2.78,28.59 3.56,29.37 C 10.37,36.14 24.13,38.25 33.9,33.28 C 42.42,28.93 45.01,20.22 38.59,14.09 C 33.09,8.84 22.19,7.28 14.59,11.37 C 8.24,14.79 6.37,21.46 11.56,26.06 C 15.75,29.77 23.86,30.83 29.28,27.59 C 33.45,25.09 34.6,20.37 30.56,17.34 C 29.11,16.25 27.14,15.61 25.06,15.5 C 22.98,15.38 20.69,15.85 19.12,17.12 C 18.12,17.93 17.6,18.99 17.62,20.09 C 17.64,21.19 18.48,22.46 20.21,23.06 C 21.5,23.5 22.31,23.4 23.4,23.09 C 23.95,22.93 24.64,22.7 25.06,22.09 C 25.48,21.47 25.33,20.64 24.9,20.15 C 24.62,19.8 24.14,19.56 23.59,19.46 C 23.03,19.37 22.44,19.43 21.96,19.65 C 22.06,19.44 22.14,19.17 22.28,19.06 C 22.92,18.54 23.74,18.35 24.75,18.4 C 25.75,18.46 26.83,18.82 27.53,19.34 C 29.77,21.02 29.02,23.85 26.53,25.34 C 23.05,27.42 17.65,26.71 14.84,24.21 C 11.21,21 12.54,16.15 17.12,13.68 C 22.76,10.64 31.07,11.86 35.25,15.84 C 40.22,20.58 38.2,27.46 31.5,30.87 C 23.69,34.85 12.47,33.16 6.96,27.68 C 0.66,21.42 3.44,12.5 12.28,8.15 C 22.24,3.24 36.29,5.42 43.12,12.4 C 44.67,13.98 45.77,15.7 46.43,17.46 L 46.43,10.59 C 43.41,7.57 39.23,5.33 34.59,4 L 14.34,4 z M 46.43,26.18 C 45.04,30.01 41.84,33.53 37.15,36 L 43.43,36 C 44.54,35.16 45.54,34.28 46.43,33.34 L 46.43,26.18 z" id="p3168" style="fill:#e4e4e4;fill-opacity:1;fill-rule:evenodd;stroke:none"/>
<path d="M 4.06,4 C 2.67,4 1.56,5.11 1.56,6.5 L 1.56,33.5 C 1.56,34.88 2.67,36 4.06,36 L 19.12,36 L 23.96,44.2 L 28.56,36 L 43.93,36 C 45.32,36 46.43,34.88 46.43,33.5 L 46.43,6.5 C 46.43,5.11 45.32,4 43.93,4 L 4.06,4 z" id="p3170" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#858585;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.7 L 24,11.82" id="p3156" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 0.5,23.51 L 24,11.76 L 47.5,23.52" id="p3158" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.80;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.80;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" id="svg2985" viewBox="0 0 48 36" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.70 L 0.5,12.30 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 18.37,3.37 L 12.40,6.34 L 18.34,9.31 L 12.43,12.28 L 6.53,9.31 L 0.59,12.31 L 6.53,15.28 L 12.43,12.34 L 18.37,15.28 L 24.31,12.31 L 18.40,9.34 L 24.34,6.37 L 30.25,9.31 L 24.34,12.31 L 30.28,15.28 L 36.15,12.34 L 42.03,15.28 L 47.96,12.31 L 42.03,9.31 L 36.15,12.25 L 30.31,9.34 L 36.25,6.37 L 30.28,3.37 L 24.31,6.34 L 18.37,3.37 z M 30.28,15.28 L 24.31,18.25 L 18.37,15.28 L 12.40,18.25 L 18.37,21.25 L 24.34,18.28 L 30.28,21.25 L 36.25,18.28 L 30.28,15.28 z" id="p2429" style="fill:#000080;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" id="svg2985" viewBox="0 0 48 36" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 20.77,2.72 L 25.68,11.22 L 27.58,10.12 C 28.50,10.65 29.08,11.36 29.08,12.15 C 29.08,12.98 28.47,13.72 27.49,14.25 L 32.11,16.90 C 34.33,15.70 35.71,14.02 35.71,12.15 C 35.71,10.32 34.36,8.67 32.21,7.47 L 34.33,6.22 L 20.77,2.72 z M 15.61,7.40 C 13.40,8.61 12.02,10.29 12.02,12.15 C 12.02,13.97 13.34,15.61 15.46,16.81 L 13.36,18.03 L 26.90,21.53 L 21.99,13.03 L 20.08,14.15 C 19.21,13.63 18.68,12.93 18.68,12.15 C 18.68,11.33 19.27,10.60 20.24,10.06 L 15.61,7.40 z" id="p4493" style="fill:#cdf4f9;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.70 L 0.5,12.30 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" id="svg2985" viewBox="0 0 48 36" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 20.77,21.53 L 25.68,13.03 L 27.58,14.12 C 28.50,13.59 29.08,12.88 29.08,12.09 C 29.08,11.27 28.47,10.52 27.49,10.00 L 32.11,7.34 C 34.33,8.54 35.71,10.23 35.71,12.09 C 35.71,13.93 34.36,15.58 32.21,16.78 L 34.33,18.03 L 20.77,21.53 z M 15.61,16.84 C 13.40,15.64 12.02,13.96 12.02,12.09 C 12.02,10.27 13.34,8.63 15.46,7.43 L 13.36,6.22 L 26.90,2.72 L 21.99,11.22 L 20.08,10.09 C 19.21,10.61 18.68,11.32 18.68,12.09 C 18.68,12.91 19.27,13.65 20.24,14.18 L 15.61,16.84 z" id="p4493" style="fill:#cdf4f9;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.70 L 0.5,12.30 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 24,0.12 L 12.18,6.03 L 34.93,6.03 L 35.18,18.43 L 47.87,12.12 L 24,0.12 z M 0,12 L 24,24 L 24,12 L 0,12 z" id="p2387" style="fill:#cdf4f9;fill-opacity:1;fill-rule:evenodd;stroke:none;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 12.18,18.09 L 34.93,18.09 L 35.18,5.68 L 47.87,12 L 24,24 z M 0,12.12 L 24,0.12 L 24,12.12 L 0,12.12 z" id="p2387" style="fill:#cdf4f9;fill-opacity:1;fill-rule:evenodd;stroke:none;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 23.87,24 L 35.68,18.09 L 12.93,18.09 L 12.68,5.68 L 0,12 L 23.87,24 z M 47.87,12.12 L 23.87,0.12 L 23.87,12.12 L 47.87,12.12 z" id="p2387" style="fill:#cdf4f9;fill-opacity:1;fill-rule:evenodd;stroke:none;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 23.87,0.12 L 35.68,6.03 L 12.93,6.03 L 12.68,18.43 L 0,12.12 L 23.87,0.12 z M 47.87,12 L 23.87,24 L 23.87,12 L 47.87,12 z" id="p2387" style="fill:#cdf4f9;fill-opacity:1;fill-rule:evenodd;stroke:none;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.70 L 24,11.82" id="p3156" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:0.50;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 0.5,23.51 L 24,11.76 L 47.5,23.52" id="p3158" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:0.50;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.29,9.91 C 36.22,11.91 36.46,13.92 36.09,15.92 C 35.94,17.43 32.02,18.74 27.35,18.90 C 23.29,19.04 18.61,19.01 15.37,18.10 C 12.23,17.20 11.78,15.78 11.89,14.50 C 11.95,12.56 11.76,10.61 12.03,8.66 C 12.15,7.56 13.23,6.34 16.43,5.77 C 21.39,4.83 28.24,4.94 32.82,6.07 C 36.39,6.99 36.24,8.58 36.29,9.91 L 36.29,9.91 z M 25.95,8.79 C 26.17,8.13 25.88,6.70 22.83,7.35 C 21.88,8.02 22.35,8.79 22.24,9.50 C 22.28,11.74 22.14,13.98 22.32,16.21 C 21.88,17.29 26.83,16.99 25.90,16.02 C 26.01,13.61 25.92,11.20 25.95,8.79 L 25.95,8.79 z" style="fill:#4a96b6;fill-opacity:1;"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 29.95,5.40 C 29.95,9.84 29.95,14.27 29.95,18.71 C 26.50,18.71 23.06,18.71 19.61,18.71 C 19.59,16.00 19.65,13.30 19.58,10.59 C 19.44,10.17 19.80,9.62 18.57,9.34 C 17.04,9.04 15.13,9.11 13.41,9.08 C 12.99,9.07 12.24,9.16 12.47,8.93 C 12.47,8.47 12.47,8.00 12.47,7.53 C 16.84,7.24 21.11,6.56 23.86,5.40 C 25.89,5.40 27.92,5.40 29.95,5.40 L 29.95,5.40 z" style="fill:#4a96b6;fill-opacity:1;"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 35.12,16.44 C 35.12,17.20 35.12,17.95 35.12,18.71 C 27.53,18.71 19.95,18.71 12.36,18.71 C 12.36,18.08 12.36,17.45 12.36,16.81 C 16.40,14.66 20.57,12.54 24.24,10.33 C 25.44,9.49 26.95,8.54 25.96,7.61 C 25.37,7.03 22.34,7.06 21.95,7.67 C 21.42,8.41 21.70,9.18 21.63,9.93 C 18.54,9.93 15.45,9.93 12.36,9.93 C 12.43,8.82 12.07,7.62 14.00,6.65 C 15.85,5.59 19.73,5.12 23.35,5.15 C 27.24,5.11 31.54,5.46 33.95,6.52 C 36.74,7.66 36.41,9.27 34.86,10.56 C 33.08,11.99 30.24,13.25 27.70,14.55 C 26.41,15.19 25.10,15.82 23.78,16.44 C 27.56,16.44 31.34,16.44 35.12,16.44 L 35.12,16.44 z" style="fill:#4a96b6;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 31.81,11.38 C 34.01,11.59 35.85,12.20 36.06,12.95 C 36.59,14.19 36.69,15.47 35.98,16.71 C 35.50,17.70 33.33,18.57 30.36,18.89 C 26.81,19.28 22.89,19.27 19.26,19.00 C 15.96,18.74 12.84,17.91 12.49,16.77 C 11.96,15.73 12.09,14.68 12.07,13.64 C 15.52,13.64 18.97,13.64 22.42,13.64 C 22.46,14.63 22.31,15.64 22.54,16.63 C 22.39,17.31 25.96,17.28 25.91,16.63 C 26.23,15.73 26.14,14.83 26.08,13.93 C 26.07,13.38 25.10,12.74 23.15,12.73 C 22.17,12.55 19.66,12.92 19.93,12.40 C 19.93,11.84 19.93,11.28 19.93,10.73 C 21.58,10.70 23.33,10.78 24.89,10.58 C 26.38,10.23 26.07,9.56 26.13,9.03 C 26.04,8.53 26.43,7.95 25.42,7.53 C 24.07,7.16 22.14,7.60 22.47,8.14 C 22.37,8.67 22.43,9.20 22.42,9.73 C 18.97,9.73 15.52,9.73 12.07,9.73 C 12.14,8.60 11.65,7.36 13.73,6.37 C 15.73,5.54 19.29,5.40 22.33,5.35 C 25.94,5.34 29.94,5.37 32.91,6.11 C 36.07,7.03 36.46,8.54 35.85,9.82 C 35.58,10.56 33.74,11.06 31.81,11.38 L 31.81,11.38 z" style="fill:#4a96b6;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 33.99,5.40 L 33.99,14.10 L 36.93,14.10 L 36.93,16.37 L 33.99,16.37 L 33.99,18.71 L 23.65,18.71 L 23.65,16.37 L 11.36,16.37 L 11.36,14.10 L 20.30,5.40 L 33.99,5.40 M 23.65,14.10 L 23.65,8.43 L 19.09,14.10 L 23.65,14.10" style="fill:#4a96b6;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 34.56,6.03 C 34.56,6.74 34.56,7.45 34.56,8.16 C 30.29,8.16 26.01,8.16 21.74,8.16 C 21.74,8.92 21.74,9.67 21.74,10.42 C 23.65,9.64 26.98,9.38 29.94,9.56 C 32.64,9.66 35.15,10.27 35.81,11.14 C 36.95,12.42 36.49,13.77 36.58,15.09 C 36.51,16.23 36.76,17.51 34.36,18.44 C 31.70,19.48 27.18,19.65 23.25,19.59 C 19.44,19.52 15.15,19.09 13.28,17.92 C 11.65,16.81 11.86,15.55 11.83,14.35 C 15.28,14.35 18.73,14.35 22.17,14.35 C 22.21,15.28 22.03,16.22 22.55,17.14 C 23.23,17.90 26.88,17.49 26.18,16.75 C 26.25,15.31 26.29,13.87 26.19,12.43 C 26.48,11.85 24.55,11.26 22.94,11.70 C 21.44,11.89 23.11,12.81 21.48,12.74 C 18.29,12.74 15.11,12.74 11.93,12.74 C 12.08,10.51 12.22,8.27 12.37,6.03 C 19.77,6.03 27.16,6.03 34.56,6.03 L 34.56,6.03 z" style="fill:#4a96b6;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 36.13,9.78 C 32.68,9.78 29.23,9.78 25.79,9.78 C 25.55,9.22 26.48,8.38 24.46,8.08 C 22.28,7.81 21.30,8.61 21.65,9.17 C 21.63,10.02 21.64,10.86 21.64,11.71 C 22.87,10.80 26.33,10.53 29.14,10.67 C 32.49,10.81 35.62,11.68 35.85,12.80 C 36.30,13.95 36.10,15.11 36.07,16.26 C 36.04,17.11 35.70,18.02 33.82,18.66 C 30.82,19.74 25.95,19.90 21.72,19.77 C 17.95,19.69 14.00,19.10 12.44,17.94 C 11.01,16.97 11.48,15.87 11.31,14.84 C 11.33,12.87 11.18,10.90 11.50,8.93 C 11.84,7.63 15.00,6.49 18.95,6.18 C 22.62,5.88 26.65,5.89 30.21,6.33 C 33.26,6.69 35.39,7.61 35.83,8.64 C 36.05,9.01 36.13,9.40 36.13,9.78 M 25.79,13.93 C 25.77,13.48 25.81,12.76 23.98,12.70 C 22.09,12.60 21.56,13.29 21.65,13.76 C 21.67,14.83 21.56,15.92 21.73,16.99 C 21.48,17.55 23.49,18.03 24.89,17.60 C 26.03,17.23 25.72,16.65 25.79,16.16 C 25.79,15.42 25.79,14.68 25.79,13.93 L 25.79,13.93 z" style="fill:#4a96b6;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 33.64,6.24 L 33.64,9.15 L 27.03,19.55 L 16.74,19.55 L 24.09,8.64 L 13.88,8.64 L 13.88,6.24 L 33.64,6.24" style="fill:#4a96b6;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 31.53,11.59 C 33.80,11.86 35.68,12.50 35.88,13.30 C 36.38,14.53 36.47,15.79 35.85,17.02 C 35.44,18.11 32.52,18.91 29.35,19.18 C 25.76,19.47 21.89,19.48 18.33,19.15 C 15.15,18.83 12.46,17.96 12.05,16.88 C 11.44,15.56 11.47,14.20 12.29,12.90 C 12.43,12.28 15.06,11.82 15.61,11.55 C 12.63,11.06 11.90,9.88 12.01,8.90 C 11.97,7.81 13.31,6.64 16.41,6.09 C 20.04,5.46 24.42,5.49 28.39,5.70 C 31.02,5.83 33.56,6.32 34.68,7.13 C 36.10,8.10 36.21,9.24 35.50,10.28 C 35.01,10.91 33.18,11.29 31.53,11.59 L 31.53,11.59 z M 25.72,8.72 C 25.86,8.25 25.52,7.45 23.46,7.63 C 21.91,7.80 22.28,8.43 22.19,8.85 C 22.27,9.42 21.94,10.02 22.60,10.57 C 23.87,11.14 26.24,10.56 25.70,9.96 C 25.74,9.55 25.72,9.14 25.72,8.72 z M 25.93,14.26 C 25.89,13.81 26.02,13.07 24.16,13.00 C 22.24,12.90 21.93,13.62 21.99,14.07 C 22.03,14.97 21.86,15.87 22.14,16.76 C 22.08,17.30 24.43,17.55 25.44,17.15 C 26.20,16.56 25.85,15.89 25.93,15.26 C 25.93,14.92 25.93,14.59 25.93,14.26 L 25.93,14.26 z" style="fill:#4a96b6;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 11.74,15.81 C 15.18,15.81 18.63,15.81 22.08,15.81 C 22.32,16.37 21.39,17.22 23.43,17.51 C 25.62,17.78 26.57,16.98 26.22,16.42 C 26.23,15.57 26.22,14.72 26.23,13.88 C 25.19,14.68 22.29,15.00 19.76,14.94 C 16.16,14.93 12.46,14.09 12.07,12.89 C 11.54,11.73 11.78,10.56 11.78,9.39 C 11.81,8.53 12.12,7.59 14.05,6.93 C 17.03,5.85 21.92,5.69 26.16,5.81 C 29.83,5.90 33.65,6.46 35.30,7.57 C 36.86,8.50 36.38,9.60 36.55,10.62 C 36.54,12.64 36.69,14.65 36.36,16.66 C 36.03,18.01 32.64,19.16 28.56,19.44 C 24.86,19.71 20.82,19.69 17.29,19.21 C 14.27,18.81 12.33,17.84 11.97,16.82 C 11.80,16.49 11.74,16.15 11.74,15.81 M 22.08,11.66 C 21.92,12.19 22.41,13.03 24.65,12.87 C 26.34,12.74 26.17,12.06 26.23,11.62 C 26.18,10.59 26.34,9.55 26.10,8.52 C 26.29,7.94 23.99,7.57 22.80,8.04 C 21.76,8.54 22.16,9.18 22.08,9.75 C 22.08,10.38 22.08,11.02 22.08,11.66 L 22.08,11.66 z" id="p6187" style="fill:#4a96b6;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g3219">
<path d="M 36.61,12 C 36.61,16.06 30.96,19.35 23.99,19.35 C 17.02,19.35 11.38,16.06 11.38,12 C 11.38,7.93 17.02,4.64 23.99,4.64 C 30.96,4.64 36.61,7.93 36.61,12 z" id="p2394" style="opacity:1;fill:#4a96b6;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 11.38,12 C 11.38,7.93 17.03,4.64 24,4.64 C 30.96,4.64 36.61,7.93 36.61,12" id="p3168" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 31.84,7.75 L 19.56,10.46 L 15.87,17.62 C 18.07,18.7 20.9,19.34 24,19.34 C 30.14,19.34 35.26,16.77 36.37,13.37 L 31.84,7.75 z" id="p3174" style="opacity:1;fill:#6da4b7;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 27.25,11.09 L 21.93,11.34 L 20.25,19.03 C 21.43,19.24 22.69,19.34 24,19.34 C 26.35,19.34 28.55,18.96 30.43,18.31 L 27.25,11.09 z" id="p3177" style="opacity:1;fill:#7db2c5;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23.93,5.25 C 18.64,5.25 14.34,7.44 14.34,10.12 C 14.34,12.80 18.64,14.96 23.93,14.96 C 29.23,14.96 33.53,12.80 33.53,10.12 C 33.53,7.44 29.23,5.24 23.93,5.25 z" id="p3166" style="opacity:1;fill:#90cce0;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.61,10.61 C 33.61,13.3 29.3,15.48 24,15.48 C 18.69,15.48 14.38,13.3 14.38,10.61" id="p3185" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#cdf4f9;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 21.18,6.4 L 21.93,11.34 L 26.12,11.34 L 26.87,6.4 L 21.18,6.4 z M 24.03,11.96 C 22.66,11.96 21.56,12.45 21.56,13.09 C 21.56,13.72 22.66,14.25 24.03,14.25 C 25.39,14.25 26.53,13.72 26.53,13.09 C 26.53,12.45 25.39,11.96 24.03,11.96 z" id="p3188" style="opacity:1;fill:#4a96b6;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g3299">
<path d="M 36.61,12 C 36.61,16.06 30.96,19.35 23.99,19.35 C 17.02,19.35 11.38,16.06 11.38,12 C 11.38,7.93 17.02,4.64 23.99,4.64 C 30.96,4.64 36.61,7.93 36.61,12 z" id="p2394" style="fill:#4a96b6;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,4.65 C 20.01,4.65 16.46,5.71 14.15,7.4 L 19.21,12.78 L 16.56,17.93 C 16.57,17.94 16.58,17.93 16.59,17.93 C 17.03,18.12 17.51,18.31 18,18.46 C 18.07,18.49 18.14,18.5 18.21,18.53 C 18.79,18.7 19.4,18.84 20.03,18.96 C 20.65,19.08 21.3,19.18 21.96,19.25 C 22.63,19.31 23.3,19.34 24,19.34 C 24.68,19.34 25.37,19.31 26.03,19.25 C 27.35,19.12 28.6,18.87 29.75,18.53 C 30.21,18.39 30.63,18.26 31.06,18.09 C 31.16,18.05 31.26,18.01 31.37,17.96 C 31.4,17.95 31.43,17.95 31.46,17.93 C 31.84,17.77 32.19,17.58 32.53,17.4 C 32.65,17.33 32.78,17.25 32.9,17.18 C 33.11,17.06 33.3,16.97 33.5,16.84 C 33.57,16.79 33.64,16.73 33.71,16.68 C 33.84,16.59 33.97,16.5 34.09,16.4 C 34.28,16.25 34.48,16.09 34.65,15.93 C 34.81,15.79 34.95,15.64 35.09,15.5 C 35.1,15.48 35.1,15.45 35.12,15.43 C 35.29,15.24 35.48,15.07 35.62,14.87 C 35.73,14.72 35.81,14.56 35.9,14.4 L 31.84,9.37 L 30.18,9.75 L 31.56,6.12 C 29.45,5.2 26.83,4.65 24,4.65 z" id="p3174" style="fill:#6da4b7;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,4.65 C 21.27,4.65 18.74,5.14 16.68,6 L 21.68,14.12 L 20.59,19.09 C 20.67,19.1 20.76,19.11 20.84,19.12 C 21.27,19.18 21.7,19.24 22.15,19.28 C 22.34,19.29 22.52,19.3 22.71,19.31 C 23.13,19.33 23.56,19.34 24,19.34 C 24.52,19.34 25.05,19.31 25.56,19.28 C 26.06,19.24 26.54,19.19 27.03,19.12 C 27.51,19.05 28,18.97 28.46,18.87 C 28.61,18.84 28.75,18.81 28.9,18.78 C 29.21,18.7 29.51,18.62 29.81,18.53 L 27.25,12.71 L 27.06,12.71 L 28.31,5.09 C 26.96,4.8 25.51,4.65 24,4.65 z" id="p3177" style="fill:#7db2c5;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23.93,6.87 C 18.64,6.87 14.34,9.03 14.34,11.71 C 14.34,14.39 18.64,16.59 23.93,16.59 C 29.23,16.59 33.53,14.39 33.53,11.71 C 33.53,9.03 29.23,6.87 23.93,6.87 z" id="p3166" style="fill:#90cce0;fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.61,12.24 C 33.61,14.92 29.3,17.1 24,17.1 C 18.69,17.1 14.38,14.92 14.38,12.24" id="p3185" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#cdf4f9;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 21.18,8.03 L 21.93,12.96 L 26.12,12.96 L 26.87,8.03 L 21.18,8.03 z M 24.03,13.59 C 22.66,13.59 21.56,14.08 21.56,14.71 C 21.56,15.35 22.66,15.87 24.03,15.87 C 25.39,15.87 26.53,15.35 26.53,14.71 C 26.53,14.08 25.39,13.59 24.03,13.59 z" id="p3188" style="fill:#7db2c5;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 24.65,1.37 C 23.45,1.35 22.25,1.45 21.06,1.59 L 7.71,8.28 C 6.15,10.53 5.75,13.01 6.56,15.28 L 12.65,18.31 C 8.38,15.54 8.10,10.77 12,7.34 C 16.82,3.09 26.07,2.19 32.15,5.09 C 38.20,7.97 39.51,13.60 35.93,18.06 L 40.40,15.84 C 41.41,13.14 41.12,10.34 39.5,7.90 L 26.75,1.5 C 26.05,1.43 25.36,1.38 24.65,1.37 z M 23.78,5.31 C 20.09,5.31 16.34,6.47 14.03,8.68 C 10.93,11.64 11.61,15.79 16.18,17.65 C 19.89,19.16 25.34,18.54 27.90,15.81 C 29.88,13.70 29.29,10.76 25.84,9.62 C 24.60,9.21 23.18,9.14 21.81,9.40 C 20.43,9.66 19.06,10.28 18.40,11.28 C 17.98,11.92 17.95,12.63 18.28,13.28 C 18.60,13.93 19.49,14.57 20.81,14.65 C 21.82,14.72 22.35,14.52 23,14.15 C 23.32,13.97 23.70,13.70 23.81,13.25 C 23.91,12.79 23.52,12.29 23.09,12.06 C 22.56,11.78 21.79,11.78 21.21,12.06 C 21.22,12.04 21.21,12.01 21.21,12 C 21.45,11.64 21.87,11.45 22.46,11.34 C 23.06,11.23 23.78,11.26 24.31,11.43 C 26.06,12.01 26.38,13.67 25.28,14.84 C 23.73,16.48 20.28,16.86 17.93,15.90 C 14.89,14.66 14.42,11.79 16.56,9.75 C 19.19,7.22 24.58,6.65 28.18,8.25 C 32.48,10.15 33.07,14.28 29.87,17.18 C 26.38,20.35 19.77,21.21 14.96,19.46 L 20.78,22.37 C 25.14,22.25 29.51,20.88 32.34,18.31 C 36.54,14.49 35.78,9.08 30.03,6.53 C 28.18,5.71 25.99,5.30 23.78,5.31 z M 43.09,9.71 C 43.18,10.44 43.26,11.20 43.31,12 C 43.35,12.76 43.37,13.56 43.37,14.34 L 46.03,13.03 C 46.01,12.63 46.02,12.23 46,11.84 C 45.98,11.60 45.95,11.38 45.93,11.15 L 43.09,9.71 z M 4.09,10.09 L 1.31,11.46 C 1.31,11.86 1.32,12.25 1.34,12.65 L 4.15,14.06 C 4.13,13.77 4.08,13.50 4.06,13.21 C 3.99,12.15 4.00,11.09 4.09,10.09 z" id="p2386" style="fill:#4a96b6;fill-opacity:1;fill-rule:evenodd;stroke:none;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 0.75,15.43 L 24,27.06 L 47.31,15.40" id="p2401" style="fill:none;stroke:#cdf4f9;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 19.46,5.87 L 20.66,13.79 L 27.38,13.79 L 28.58,5.87 L 19.46,5.87 z M 24.03,14.78 C 21.83,14.78 20.07,15.56 20.07,16.59 C 20.07,17.60 21.83,18.45 24.03,18.45 C 26.21,18.45 28.03,17.60 28.03,16.59 C 28.03,15.56 26.21,14.78 24.03,14.78 z" id="p3188" style="fill:#4a96b6;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 0.75,15.43 L 24,27.06 L 47.31,15.4" id="p2401" style="fill:none;stroke:#cdf4f9;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,4.46 C 23.9,4.46 20.44,9.06 20.37,9.09 C 20.29,9.12 11.43,9.54 11.40,9.59 C 11.37,9.64 18.12,12.88 18.15,12.93 C 18.17,12.98 16.13,17.84 16.21,17.87 C 16.28,17.90 23.9,15.31 24,15.31 C 24.09,15.31 31.71,17.90 31.78,17.87 C 31.86,17.84 29.82,12.98 29.84,12.93 C 29.87,12.88 36.62,9.64 36.59,9.59 C 36.56,9.54 27.67,9.12 27.59,9.09 C 27.52,9.06 24.09,4.46 24,4.46 z" id="p2388" style="opacity:1;fill:#4a96b6;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 132" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="g2438">
<path d="M 24,96.19 L 0.12,108.22 L 0.19,119.83 L 24,131.77 L 24,96.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,96.41 L 23.97,131.81 L 47.93,119.87 L 47.93,108.12 L 23.96,96.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,120 L 24,131.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,120 L 0.16,108.06 L 24,96.12 L 47.87,108.12 L 24,120 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 0.75,108.37 L 24,120 L 47.31,108.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,96.55 L 47.5,108.31 L 47.5,119.69 L 24,131.44 L 0.5,119.7 L 0.5,108.3 L 24,96.55 z" id="p3034" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g4256">
<path d="M 24,90.28 C 15.9,90.28 9.34,93.24 9.34,96.87 C 9.34,101.18 9.34,104.47 9.34,107.71 C 9.34,111.34 15.9,114.28 24,114.28 C 32.09,114.28 38.65,111.34 38.65,107.71 C 38.65,104.04 38.65,101.65 38.65,96.87 C 38.65,93.24 32.09,90.28 24,90.28 z" id="p2398" style="opacity:1;fill:#484848;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.9,101.36 C 38.9,103.77 36.01,105.87 31.71,107.02 M 38.87,101.08 C 38.88,101.18 38.9,101.27 38.9,101.36 C 38.9,101.27 38.9,101.17 38.9,101.08 L 38.87,101.08 z" id="p4234" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#858585;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 21.93,90.34 C 18.1,90.58 14.75,91.5 12.46,92.81 L 12.46,111.78 C 14.75,113.08 18.1,113.97 21.93,114.21 L 21.93,90.34 z" id="p4158" style="opacity:1;fill:#3f3f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23.87,90 C 15.82,90 9.31,92.90 9.31,96.46 C 9.31,100.03 15.82,102.90 23.87,102.90 C 31.91,102.90 38.43,100.03 38.43,96.46 C 38.43,92.90 31.91,89.99 23.87,90 z" id="p2400" style="opacity:1;fill:#bcbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,85.18 C 17.17,85.18 11.62,87.66 11.62,90.71 C 13.67,94.16 12.56,93.42 11.62,96.87 C 11.62,99.93 17.17,102.4 24,102.4 C 30.82,102.4 36.37,99.93 36.37,96.87 C 34.32,93.41 35.43,94.16 36.37,90.71 C 36.37,87.66 30.82,85.18 24,85.18 z" id="p2402" style="opacity:1;fill:#5d5d5d;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35,88.21 L 32.93,88.93 L 34.56,91.9 L 34.28,91.9 C 34.3,92.03 34.31,92.15 34.31,92.28 C 34.31,92.34 34.31,92.4 34.31,92.46 L 33.87,92.46 C 34,92.6 34.12,92.73 34.21,92.87 C 34.11,93.18 33.92,93.49 33.62,93.81 C 33.13,94.32 32.37,94.83 31.43,95.25 C 29.56,96.08 26.92,96.62 24,96.62 C 21.07,96.62 18.43,96.08 16.56,95.25 C 15.62,94.83 14.86,94.32 14.37,93.81 C 14.07,93.49 13.88,93.18 13.78,92.87 C 13.78,92.86 13.77,92.84 13.78,92.84 C 13.72,92.65 13.68,92.47 13.68,92.28 C 13.68,92.15 13.69,92.03 13.71,91.9 L 13.53,91.9 L 15.62,91 L 14.15,88.65 L 12.28,88.93 C 11.86,89.49 11.62,90.09 11.62,90.71 C 12.55,92.27 12.81,92.97 12.75,93.59 L 12.78,93.59 C 12.77,93.63 12.75,93.67 12.75,93.71 C 12.74,93.73 12.75,93.76 12.75,93.78 C 12.73,93.85 12.71,93.92 12.68,94 C 12.65,94.1 12.6,94.2 12.56,94.31 C 12.54,94.36 12.52,94.41 12.5,94.46 C 12.43,94.61 12.38,94.76 12.31,94.93 C 12.21,95.16 12.11,95.35 12,95.65 C 11.99,95.66 12,95.67 12,95.68 C 11.99,95.72 12,95.77 12,95.81 C 12,96.67 12.38,97.47 13.03,98.15 C 13.67,98.83 14.57,99.42 15.65,99.9 C 17.82,100.87 20.76,101.46 24,101.46 C 27.23,101.46 30.17,100.87 32.34,99.9 C 33.42,99.42 34.32,98.83 34.96,98.15 C 35.52,97.56 35.87,96.88 35.96,96.15 C 35.94,96.1 35.93,96.07 35.9,96.03 C 35.76,95.77 35.65,95.54 35.56,95.34 C 35.54,95.31 35.54,95.27 35.53,95.25 C 35.43,95.01 35.35,94.8 35.31,94.62 C 35.03,93.48 35.72,93.08 36.37,90.71 C 36.37,89.81 35.86,88.97 35,88.21 z M 13.43,94.25 C 13.5,94.33 13.57,94.41 13.65,94.5 C 14.26,95.14 15.1,95.69 16.12,96.15 C 18.17,97.07 20.94,97.62 24,97.62 C 27.05,97.62 29.82,97.07 31.87,96.15 C 32.89,95.69 33.73,95.14 34.34,94.5 C 34.42,94.41 34.49,94.33 34.56,94.25 C 34.49,94.69 34.25,95.12 33.84,95.56 C 33.34,96.09 32.58,96.6 31.62,97.03 C 29.7,97.89 26.99,98.43 24,98.43 C 21,98.43 18.29,97.89 16.37,97.03 C 15.41,96.6 14.65,96.09 14.15,95.56 C 13.74,95.12 13.5,94.69 13.43,94.25 z M 13,95.71 C 13.12,95.89 13.28,96.08 13.43,96.25 C 14.06,96.91 14.92,97.46 15.96,97.93 C 18.06,98.87 20.87,99.43 24,99.43 C 27.12,99.43 29.93,98.87 32.03,97.93 C 33.07,97.46 33.93,96.91 34.56,96.25 C 34.71,96.08 34.87,95.89 35,95.71 C 35,95.74 35,95.78 35,95.81 C 35,96.37 34.73,96.94 34.21,97.5 C 33.69,98.05 32.93,98.55 31.93,99 C 29.94,99.89 27.11,100.46 24,100.46 C 20.88,100.46 18.05,99.89 16.06,99 C 15.06,98.55 14.3,98.05 13.78,97.5 C 13.26,96.94 13,96.37 13,95.81 C 13,95.78 12.99,95.74 13,95.71 z" id="p4163" style="opacity:1;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,85.18 C 20.46,85.18 17.28,85.84 15.03,86.9 C 15.97,90.71 15.68,94.58 13.56,99.81 C 15.45,101.14 18.57,102.1 22.21,102.34 C 21.3,98.26 22.66,92.56 32.4,86.65 C 30.19,85.74 27.24,85.18 24,85.18 z" id="p4210" style="fill:#212121;fill-opacity:0.27;fill-rule:evenodd;stroke:none"/>
<path d="M 24,85.18 C 17.17,85.18 11.62,87.66 11.62,90.71 C 12.44,92.08 12.75,92.8 12.78,93.37 C 14.96,95.14 19.17,96.34 24,96.34 C 29.03,96.34 33.4,95.05 35.5,93.15 C 35.72,92.61 36.04,91.92 36.37,90.71 C 36.37,87.66 30.82,85.18 24,85.18 z" id="p3271" style="opacity:1;fill:#101010;fill-opacity:0.56;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.65,107.71 C 38.65,104.04 38.65,101.65 38.65,96.87 C 38.65,95.36 37.5,93.98 35.59,92.87 C 35.81,92.37 36.09,91.73 36.37,90.71 C 36.37,87.66 30.82,85.18 24,85.18 C 17.17,85.18 11.62,87.66 11.62,90.71 C 12.16,91.61 12.46,92.24 12.62,92.71 C 10.57,93.85 9.34,95.3 9.34,96.87 C 9.34,101.18 9.34,104.47 9.34,107.71" id="p4046" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3d3d3d;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,73.59 C 14.77,73.59 7.28,76.96 7.28,81.09 C 7.28,83.03 7.28,84.39 7.28,86.34 C 7.28,90.47 14.77,93.84 24,93.84 C 33.22,93.84 40.71,90.47 40.71,86.34 C 40.71,84.84 40.71,83.21 40.71,81.09 C 40.71,76.96 33.22,73.59 24,73.59 z" id="p2406" style="opacity:1;fill:#323232;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10,84.03 L 10,90.43 C 12.27,91.99 15.8,93.12 19.93,93.59 L 19.93,87.21 L 10,84.03 z" id="p4039" style="opacity:1;fill:#292929;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23.90,73.15 C 14.70,73.15 7.25,76.41 7.25,80.43 C 7.25,84.45 14.70,87.71 23.90,87.71 C 33.09,87.71 40.56,84.45 40.56,80.43 C 40.56,76.41 33.09,73.15 23.90,73.15 z" id="p2408" style="opacity:1;fill:#656565;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,73.59 C 14.77,73.59 7.28,76.96 7.28,81.09 C 7.28,83.03 7.28,84.39 7.28,86.34 C 7.28,90.47 14.77,93.84 24,93.84 C 33.22,93.84 40.71,90.47 40.71,86.34 C 40.71,84.84 40.71,83.21 40.71,81.09 C 40.71,76.96 33.22,73.59 24,73.59 z" id="p4044" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#29292a;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23.87,74.81 C 16.4,74.81 10.31,77.51 10.31,80.84 C 10.31,84.17 16.39,86.87 23.87,86.87 C 31.34,86.87 37.37,84.17 37.37,80.84 C 37.37,77.51 31.34,74.81 23.87,74.81 z" id="p3268" style="opacity:1;fill:#919191;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.72,82.69 C 32.72,84.85 28.81,86.6 23.99,86.6 C 19.18,86.6 15.27,84.85 15.27,82.69 C 15.27,80.53 19.18,78.78 23.99,78.78 C 28.81,78.78 32.72,80.53 32.72,82.69 L 32.72,82.69 z" id="p3173" style="opacity:1;fill:#272727;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.37,85.86 C 35.25,85.39 37.30,84.36 38.09,83.44" id="p3276" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#838383;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.5,68.52 C 23.15,68.52 25.14,68.52 25.92,68.52 C 26.63,68.52 26.55,69.63 26.03,69.63 C 25.9,69.63 25.82,69.64 25.63,69.64 C 25.61,70.06 25.34,77.69 25.35,78.19 C 25.37,79.08 27.05,78.4 27.07,79.33 C 27.07,79.81 26.91,83.78 26.83,84.25 C 26.76,84.62 21.35,84.46 21.24,84.07 C 21.16,83.73 21.16,80.82 21.16,79.94 C 21.16,78.7 21.98,79.47 22.37,79 C 22.54,78.79 22.84,78.53 22.83,78.21 C 22.81,77.64 22.89,70.03 22.88,69.43 C 22.78,69.43 22.68,69.45 22.5,69.43 C 21.87,69.41 21.86,68.51 22.5,68.51 L 22.5,68.51 L 22.5,68.52 z" id="p3909" style="fill:#bebcb7;fill-opacity:0.5;stroke:none;display:inline"/>
<path d="M 30.88,62.11 C 30.88,62.11 26.92,75.21 26.73,75.88 C 26.54,76.53 26.33,77.58 26.21,78.18 C 26.16,78.44 26.2,78.74 26.2,78.74" id="p3911" style="fill:none;stroke:#000000;stroke-width:0.47;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.82;display:inline"/>
<path d="M 16.83,61.12 L 18.47,61.32 C 18.47,61.32 24.06,62.22 24.59,62.5 C 25.11,62.76 26.63,63.15 26.63,63.15 C 26.63,63.15 30.18,62.95 30.59,63.02 C 30.97,63.08 31.17,63.21 31.17,63.21" id="p3913" style="fill:none;stroke:#404040;stroke-width:0.63;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.62;display:inline"/>
<path d="M 17.04,61.12 L 21.32,77.59 C 21.32,77.59 21.69,78.05 21.77,78.71 C 21.79,78.92 21.79,79.17 21.79,79.17" id="p3915" style="fill:none;stroke:#000000;stroke-width:0.47;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.82;display:inline"/>
<path d="M 31.28,62.11 L 31.15,63.36" id="p3917" style="fill:none;stroke:#272727;stroke-width:0.47;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 22.47,69.01 L 26.02,69.04" id="p3919" style="fill:none;stroke:#000000;stroke-width:0.80;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.62"/>
<path d="M 23.8,69.14 L 24.93,69.17" id="p3921" style="fill:none;stroke:#f6f6f6;stroke-width:0.97;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.81"/>
<path d="M 22.42,79.02 C 22.42,79.04 22.39,79.05 22.37,79.07 C 21.98,79.54 21.17,78.73 21.16,79.98 C 21.16,80.56 21.17,81.87 21.21,82.91 C 22.16,83.28 23.04,82.96 23.33,82.81 C 23.64,82.63 24.64,83.88 25.14,83.62 C 25.63,83.36 25.66,82.83 25.39,82.92 C 25.14,83 24.5,82.79 24.04,82.15 C 23.59,81.51 23.57,81.68 23.38,82 C 23.2,82.32 22.49,83.1 22.23,82.5 C 21.98,82 22.05,80.85 22.42,79.02 z" id="p3927" style="fill:#444e52;fill-opacity:0.66;stroke:none;display:inline"/>
<path d="M 21.51,83.34 C 21.97,83.47 22.15,83.52 22.6,83.21 C 23.05,82.91 23.09,82.76 23.59,83.3 C 24.07,83.83 25.18,84.2 25.5,84.06 C 25.81,83.93 26.68,83.2 26.68,83.2" id="p3929" style="fill:none;stroke:#e9e9e9;stroke-width:0.80;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.76;display:inline"/>
<path d="M 23.85,79.72 C 23.69,79.73 23.51,79.81 23.3,79.91 C 22.89,80.09 23.35,81.27 22.96,81.27 C 22.52,81.29 22.63,80.23 22.63,80.23 C 22.63,80.23 22.62,81.27 22.34,81.5 C 22.15,81.66 21.74,81.5 21.19,81.04 C 21.19,81.27 21.19,81.43 21.19,81.69 C 22.2,82.05 22.91,81.61 23.22,81.5 C 23.57,81.37 24.71,81.95 24.98,82.05 C 25.24,82.13 25.34,80.96 25.43,80.64 C 25.52,80.33 25.08,79.93 24.53,79.78 C 24.22,79.7 24.01,79.68 23.85,79.72 z" id="p3931" style="fill:#ededeb;fill-opacity:0.51;stroke:none;display:inline"/>
<path d="M 21.19,83.34 C 21.55,83.47 22.28,83.6 22.6,83.34 C 22.91,83.09 23.13,83.04 23.64,83.52 C 24.12,84.01 24.72,84.11 24.72,84.11" id="p3933" style="fill:none;stroke:#f8f8f8;stroke-width:0.47;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.62;display:inline"/>
<path d="M 24.03,78.7 C 24.06,79.33 23.8,81.01 24.03,81.42 C 24.25,81.82 26.34,82.4 26.39,81.87 C 26.42,81.34 26.42,79 26.42,79 C 26.42,79 24.43,78.37 24.03,78.7 z" id="p3935" style="fill:#ededeb;fill-opacity:0.31;stroke:none"/>
<path d="M 26.44,79.02 L 26.36,82.15" id="p3937" style="fill:none;stroke:#403e29;stroke-width:0.31;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54"/>
<path d="M 21.22,83.04 C 20.56,83.99 20.32,84.6 20.14,85.77" id="p3943" style="fill:none;stroke:#939a9f;stroke-width:0.63;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61;display:inline"/>
<path d="M 22.5,68.52 C 23.15,68.52 25.14,68.52 25.92,68.52 C 26.63,68.52 26.55,69.63 26.03,69.63 C 25.9,69.63 25.82,69.64 25.63,69.64 C 25.61,70.06 25.34,77.69 25.35,78.19 C 25.37,79.08 27.05,78.4 27.07,79.33 C 27.07,79.81 26.91,83.78 26.83,84.25 C 26.76,84.62 21.35,84.46 21.24,84.07 C 21.16,83.73 21.16,80.82 21.16,79.94 C 21.16,78.7 21.98,79.47 22.37,79 C 22.54,78.79 22.84,78.53 22.83,78.21 C 22.81,77.64 22.89,70.03 22.88,69.43 C 22.78,69.43 22.68,69.45 22.5,69.43 C 21.87,69.41 21.86,68.51 22.5,68.51 L 22.5,68.51 L 22.5,68.52 z" id="p3951" style="fill:none;stroke:#7b7b7b;stroke-width:0.47;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.98;display:inline"/>
<path d="M 23.83,68.9 C 24.03,68.9 24.48,68.44 24.82,67.84 C 25.14,67.26 26.86,63.18 26.86,63.18" id="p3953" style="fill:none;stroke:#252525;stroke-width:0.31;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61;display:inline"/>
<path d="M 21.2,69.21 L 24.74,69.24" id="p3987" style="fill:none;stroke:#000000;stroke-width:0.80;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.62"/>
<path d="M 25.74,69.04 C 26.26,68.91 26.92,68.65 27.85,67.86 C 28.76,67.08 31.99,64.04 32.25,63.78 C 32.51,63.52 32.32,62.53 31.61,62.79 C 30.89,63.05 30.89,63.7 31.28,63.91 C 31.67,64.1 32.19,63.91 32.53,63.71 C 32.85,63.52 33.18,63 33.18,63" id="p3955" style="fill:none;stroke:#252525;stroke-width:0.31;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61;display:inline"/>
<path d="M 26.03,84.35 L 25.81,86.5" id="p3959" style="fill:none;stroke:#000000;stroke-width:0.31;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.86;display:inline"/>
<path d="M 21.73,80.02 L 21.63,86.1" id="p3963" style="fill:none;stroke:#521515;stroke-width:0.47;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 23.46,84.4 C 24.16,84.46 25.39,84.46 25.39,84.46" id="p3965" style="fill:none;stroke:#eeeeee;stroke-width:0.63;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.76"/>
<path d="M 26.34,84.3 C 26.73,84.25 26.71,84.06 26.73,83.78 C 26.73,83.51 26.81,82.21 26.81,82.21" id="p3969" style="fill:none;stroke:#e6e6e6;stroke-width:0.63;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.67"/>
<path d="M 24.74,84.43 L 25.58,84.46" id="p3971" style="fill:none;stroke:#f6f6f6;stroke-width:0.63;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.67"/>
<path d="M 22.52,69.34 L 23.66,69.37" id="p3989" style="fill:none;stroke:#f6f6f6;stroke-width:0.97;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.81"/>
<path d="M 30.01,62.31 L 29.88,63.56" id="p3985" style="fill:none;stroke:#272727;stroke-width:0.47;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 27.18,108.46 C 26.22,108.50 25.37,109.16 25.28,109.96 C 25.19,110.77 25.88,111.40 26.84,111.37 C 27.80,111.34 28.66,110.64 28.75,109.84 C 28.83,109.03 28.14,108.43 27.18,108.46 z" id="p4215" style="opacity:1;fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 26.62,109.06 C 25.99,109.08 25.43,109.53 25.37,110.06 C 25.31,110.59 25.77,110.98 26.40,110.96 C 27.03,110.94 27.56,110.52 27.62,110 C 27.68,109.47 27.25,109.04 26.62,109.06 z" id="p4217" style="opacity:1;fill:#3e3e3e;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 27.31,109.1 L 25.75,111.24" id="p4219" style="fill:none;fill-rule:evenodd;stroke:#2d2d2d;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.82,101.20 C 33.63,100.81 35.06,100.22 36.22,99.17" id="p4221" style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#cfcfcf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.65,101.06 C 38.65,103.46 35.77,105.57 31.46,106.71 L 31.46,113.16 M 38.62,100.78 C 38.63,100.87 38.65,100.96 38.65,101.06 C 38.65,100.97 38.65,100.87 38.65,100.78 L 38.62,100.78 z" id="p4225" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3d3d3d;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 24,45.78 C 12.51,45.78 3.18,55.1 3.18,66.59 C 3.18,76.25 9.79,84.37 18.71,86.71 C 18.75,86.72 18.78,86.74 18.81,86.75 C 20.41,87.05 22.15,87.21 24,87.21 C 25.84,87.21 27.58,87.05 29.18,86.75 C 29.21,86.74 29.24,86.72 29.28,86.71 C 38.2,84.37 44.81,76.25 44.81,66.59 C 44.81,55.1 35.48,45.78 24,45.78 z" id="bg" style="fill:#002f41;fill-opacity:0.6;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g2455">
<path d="M 24,45.78 C 13.08,45.78 4.11,54.2 3.25,64.9 C 5.11,61.4 7.02,60.47 9.15,59.25 C 12.59,57.29 14.22,53.24 16.34,52.59 C 18.46,51.94 19.43,48.14 23.37,48.46 C 27.29,48.79 29.26,47.16 33.68,51.25 C 38.1,55.34 38.43,57.63 40.25,60.9 C 41.06,62.38 43.12,64.78 44.78,65.71 C 44.31,54.64 35.19,45.78 24,45.78 z" id="p3975" style="fill:#bdbdc6;fill-opacity:0.12;stroke:none;display:inline"/>
<path d="M 12.75,57.28 C 10.73,57.34 7.44,58.34 4.25,60 C 3.55,62.07 3.18,64.28 3.18,66.59 C 3.18,68.83 3.53,70.97 4.18,73 C 6.33,67.03 7.42,66.27 8.75,65.5 C 10.33,64.57 12.9,63.21 12.9,63.21 C 12.9,63.21 16.06,66.8 17,67.06 C 17.92,67.32 22.96,64.44 24.03,64.71 C 25.08,64.97 25.75,64.06 25.75,63 C 25.75,61.94 17,57.15 12.75,57.28 z" id="p3977" style="fill:#dfdfe3;fill-opacity:0.12;stroke:none;display:inline"/>
<path d="M 26.52,50.04 C 24.69,50.12 22.83,50.47 21.51,50.55 C 18.91,50.71 21.19,52.17 18.74,52.67 C 17.21,52.98 15.73,54.58 15.46,56.77 C 16.38,56.91 17.21,57.15 17.77,57.58 C 19.89,55.62 32.98,56.93 34.62,59.7 C 35.09,59.44 35.8,59.44 36.58,59.65 C 36.25,58.14 34.96,57.28 34.96,57.28 C 34.96,57.28 36.22,57.27 36.06,55.62 C 35.91,53.96 34.15,52.85 31.52,51.05 C 30.21,50.14 28.37,49.96 26.52,50.04 z" id="p3979" style="fill:#fbfbfc;fill-opacity:0.18;stroke:none;display:inline"/>
</g>
<path d="M 35.59,83.84 C 41.14,80.1 44.81,73.78 44.81,66.59 C 44.81,55.1 35.48,45.78 24,45.78 C 12.51,45.78 3.18,55.1 3.18,66.59 C 3.18,73.78 6.85,80.1 12.4,83.84" id="fg" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#18313b;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 132" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="g2438">
<path d="M 24,96.19 L 0.12,108.22 L 0.19,119.83 L 24,131.77 L 24,96.19 z" id="p3863" style="fill:#4a96b6;fill-opacity:1;stroke:none"/>
<path d="M 23.96,96.41 L 23.97,131.81 L 47.93,119.87 L 47.93,108.12 L 23.96,96.41 z" id="p3863-0" style="fill:#6da4b7;fill-opacity:1;stroke:none"/>
<path d="M 24,120 L 24,131.12" id="p3976" style="fill:none;stroke:#7db2c5;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,120 L 0.16,108.06 L 24,96.12 L 47.87,108.12 L 24,120 z" id="p2993" style="fill:#90cce0;fill-opacity:1;stroke:none"/>
<path d="M 0.75,108.37 L 24,120 L 47.31,108.34" id="p2993-8" style="fill:none;stroke:#cdf4f9;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,96.55 L 47.5,108.31 L 47.5,119.69 L 24,131.44 L 0.5,119.7 L 0.5,108.3 L 24,96.55 z" id="p3034" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4a96b6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g id="g4256">
<path d="M 24,90.28 C 15.9,90.28 9.34,93.24 9.34,96.87 C 9.34,101.18 9.34,104.47 9.34,107.71 C 9.34,111.34 15.9,114.28 24,114.28 C 32.09,114.28 38.65,111.34 38.65,107.71 C 38.65,104.04 38.65,101.65 38.65,96.87 C 38.65,93.24 32.09,90.28 24,90.28 z" id="p2398" style="opacity:1;fill:#484848;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.9,101.36 C 38.9,103.77 36.01,105.87 31.71,107.02 M 38.87,101.08 C 38.88,101.18 38.9,101.27 38.9,101.36 C 38.9,101.27 38.9,101.17 38.9,101.08 L 38.87,101.08 z" id="p4234" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#858585;stroke-width:0.60;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 21.93,90.34 C 18.1,90.58 14.75,91.5 12.46,92.81 L 12.46,111.78 C 14.75,113.08 18.1,113.97 21.93,114.21 L 21.93,90.34 z" id="p4158" style="opacity:1;fill:#3f3f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23.87,90 C 15.82,90 9.31,92.90 9.31,96.46 C 9.31,100.03 15.82,102.90 23.87,102.90 C 31.91,102.90 38.43,100.03 38.43,96.46 C 38.43,92.90 31.91,89.99 23.87,90 z" id="p2400" style="opacity:1;fill:#bcbcbc;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,85.18 C 17.17,85.18 11.62,87.66 11.62,90.71 C 13.67,94.16 12.56,93.42 11.62,96.87 C 11.62,99.93 17.17,102.4 24,102.4 C 30.82,102.4 36.37,99.93 36.37,96.87 C 34.32,93.41 35.43,94.16 36.37,90.71 C 36.37,87.66 30.82,85.18 24,85.18 z" id="p2402" style="opacity:1;fill:#5d5d5d;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 35,88.21 L 32.93,88.93 L 34.56,91.9 L 34.28,91.9 C 34.3,92.03 34.31,92.15 34.31,92.28 C 34.31,92.34 34.31,92.4 34.31,92.46 L 33.87,92.46 C 34,92.6 34.12,92.73 34.21,92.87 C 34.11,93.18 33.92,93.49 33.62,93.81 C 33.13,94.32 32.37,94.83 31.43,95.25 C 29.56,96.08 26.92,96.62 24,96.62 C 21.07,96.62 18.43,96.08 16.56,95.25 C 15.62,94.83 14.86,94.32 14.37,93.81 C 14.07,93.49 13.88,93.18 13.78,92.87 C 13.78,92.86 13.77,92.84 13.78,92.84 C 13.72,92.65 13.68,92.47 13.68,92.28 C 13.68,92.15 13.69,92.03 13.71,91.9 L 13.53,91.9 L 15.62,91 L 14.15,88.65 L 12.28,88.93 C 11.86,89.49 11.62,90.09 11.62,90.71 C 12.55,92.27 12.81,92.97 12.75,93.59 L 12.78,93.59 C 12.77,93.63 12.75,93.67 12.75,93.71 C 12.74,93.73 12.75,93.76 12.75,93.78 C 12.73,93.85 12.71,93.92 12.68,94 C 12.65,94.1 12.6,94.2 12.56,94.31 C 12.54,94.36 12.52,94.41 12.5,94.46 C 12.43,94.61 12.38,94.76 12.31,94.93 C 12.21,95.16 12.11,95.35 12,95.65 C 11.99,95.66 12,95.67 12,95.68 C 11.99,95.72 12,95.77 12,95.81 C 12,96.67 12.38,97.47 13.03,98.15 C 13.67,98.83 14.57,99.42 15.65,99.9 C 17.82,100.87 20.76,101.46 24,101.46 C 27.23,101.46 30.17,100.87 32.34,99.9 C 33.42,99.42 34.32,98.83 34.96,98.15 C 35.52,97.56 35.87,96.88 35.96,96.15 C 35.94,96.1 35.93,96.07 35.9,96.03 C 35.76,95.77 35.65,95.54 35.56,95.34 C 35.54,95.31 35.54,95.27 35.53,95.25 C 35.43,95.01 35.35,94.8 35.31,94.62 C 35.03,93.48 35.72,93.08 36.37,90.71 C 36.37,89.81 35.86,88.97 35,88.21 z M 13.43,94.25 C 13.5,94.33 13.57,94.41 13.65,94.5 C 14.26,95.14 15.1,95.69 16.12,96.15 C 18.17,97.07 20.94,97.62 24,97.62 C 27.05,97.62 29.82,97.07 31.87,96.15 C 32.89,95.69 33.73,95.14 34.34,94.5 C 34.42,94.41 34.49,94.33 34.56,94.25 C 34.49,94.69 34.25,95.12 33.84,95.56 C 33.34,96.09 32.58,96.6 31.62,97.03 C 29.7,97.89 26.99,98.43 24,98.43 C 21,98.43 18.29,97.89 16.37,97.03 C 15.41,96.6 14.65,96.09 14.15,95.56 C 13.74,95.12 13.5,94.69 13.43,94.25 z M 13,95.71 C 13.12,95.89 13.28,96.08 13.43,96.25 C 14.06,96.91 14.92,97.46 15.96,97.93 C 18.06,98.87 20.87,99.43 24,99.43 C 27.12,99.43 29.93,98.87 32.03,97.93 C 33.07,97.46 33.93,96.91 34.56,96.25 C 34.71,96.08 34.87,95.89 35,95.71 C 35,95.74 35,95.78 35,95.81 C 35,96.37 34.73,96.94 34.21,97.5 C 33.69,98.05 32.93,98.55 31.93,99 C 29.94,99.89 27.11,100.46 24,100.46 C 20.88,100.46 18.05,99.89 16.06,99 C 15.06,98.55 14.3,98.05 13.78,97.5 C 13.26,96.94 13,96.37 13,95.81 C 13,95.78 12.99,95.74 13,95.71 z" id="p4163" style="opacity:1;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,85.18 C 20.46,85.18 17.28,85.84 15.03,86.9 C 15.97,90.71 15.68,94.58 13.56,99.81 C 15.45,101.14 18.57,102.1 22.21,102.34 C 21.3,98.26 22.66,92.56 32.4,86.65 C 30.19,85.74 27.24,85.18 24,85.18 z" id="p4210" style="fill:#212121;fill-opacity:0.27;fill-rule:evenodd;stroke:none"/>
<path d="M 24,85.18 C 17.17,85.18 11.62,87.66 11.62,90.71 C 12.44,92.08 12.75,92.8 12.78,93.37 C 14.96,95.14 19.17,96.34 24,96.34 C 29.03,96.34 33.4,95.05 35.5,93.15 C 35.72,92.61 36.04,91.92 36.37,90.71 C 36.37,87.66 30.82,85.18 24,85.18 z" id="p3271" style="opacity:1;fill:#101010;fill-opacity:0.56;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.65,107.71 C 38.65,104.04 38.65,101.65 38.65,96.87 C 38.65,95.36 37.5,93.98 35.59,92.87 C 35.81,92.37 36.09,91.73 36.37,90.71 C 36.37,87.66 30.82,85.18 24,85.18 C 17.17,85.18 11.62,87.66 11.62,90.71 C 12.16,91.61 12.46,92.24 12.62,92.71 C 10.57,93.85 9.34,95.3 9.34,96.87 C 9.34,101.18 9.34,104.47 9.34,107.71" id="p4046" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3d3d3d;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,73.59 C 14.77,73.59 7.28,76.96 7.28,81.09 C 7.28,83.03 7.28,84.39 7.28,86.34 C 7.28,90.47 14.77,93.84 24,93.84 C 33.22,93.84 40.71,90.47 40.71,86.34 C 40.71,84.84 40.71,83.21 40.71,81.09 C 40.71,76.96 33.22,73.59 24,73.59 z" id="p2406" style="opacity:1;fill:#323232;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 10,84.03 L 10,90.43 C 12.27,91.99 15.8,93.12 19.93,93.59 L 19.93,87.21 L 10,84.03 z" id="p4039" style="opacity:1;fill:#292929;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23.90,73.15 C 14.70,73.15 7.25,76.41 7.25,80.43 C 7.25,84.45 14.70,87.71 23.90,87.71 C 33.09,87.71 40.56,84.45 40.56,80.43 C 40.56,76.41 33.09,73.15 23.90,73.15 z" id="p2408" style="opacity:1;fill:#656565;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,73.59 C 14.77,73.59 7.28,76.96 7.28,81.09 C 7.28,83.03 7.28,84.39 7.28,86.34 C 7.28,90.47 14.77,93.84 24,93.84 C 33.22,93.84 40.71,90.47 40.71,86.34 C 40.71,84.84 40.71,83.21 40.71,81.09 C 40.71,76.96 33.22,73.59 24,73.59 z" id="p4044" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#29292a;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 23.87,74.81 C 16.4,74.81 10.31,77.51 10.31,80.84 C 10.31,84.17 16.39,86.87 23.87,86.87 C 31.34,86.87 37.37,84.17 37.37,80.84 C 37.37,77.51 31.34,74.81 23.87,74.81 z" id="p3268" style="opacity:1;fill:#919191;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 32.72,82.69 C 32.72,84.85 28.81,86.6 23.99,86.6 C 19.18,86.6 15.27,84.85 15.27,82.69 C 15.27,80.53 19.18,78.78 23.99,78.78 C 28.81,78.78 32.72,80.53 32.72,82.69 L 32.72,82.69 z" id="p3173" style="opacity:1;fill:#272727;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 33.37,85.86 C 35.25,85.39 37.30,84.36 38.09,83.44" id="p3276" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#838383;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 22.5,68.52 C 23.15,68.52 25.14,68.52 25.92,68.52 C 26.63,68.52 26.55,69.63 26.03,69.63 C 25.9,69.63 25.82,69.64 25.63,69.64 C 25.61,70.06 25.34,77.69 25.35,78.19 C 25.37,79.08 27.05,78.4 27.07,79.33 C 27.07,79.81 26.91,83.78 26.83,84.25 C 26.76,84.62 21.35,84.46 21.24,84.07 C 21.16,83.73 21.16,80.82 21.16,79.94 C 21.16,78.7 21.98,79.47 22.37,79 C 22.54,78.79 22.84,78.53 22.83,78.21 C 22.81,77.64 22.89,70.03 22.88,69.43 C 22.78,69.43 22.68,69.45 22.5,69.43 C 21.87,69.41 21.86,68.51 22.5,68.51 L 22.5,68.51 L 22.5,68.52 z" id="p3909" style="fill:#bebcb7;fill-opacity:0.5;stroke:none;display:inline"/>
<path d="M 30.88,62.11 C 30.88,62.11 26.92,75.21 26.73,75.88 C 26.54,76.53 26.33,77.58 26.21,78.18 C 26.16,78.44 26.2,78.74 26.2,78.74" id="p3911" style="fill:none;stroke:#000000;stroke-width:0.47;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.82;display:inline"/>
<path d="M 16.83,61.12 L 18.47,61.32 C 18.47,61.32 24.06,62.22 24.59,62.5 C 25.11,62.76 26.63,63.15 26.63,63.15 C 26.63,63.15 30.18,62.95 30.59,63.02 C 30.97,63.08 31.17,63.21 31.17,63.21" id="p3913" style="fill:none;stroke:#404040;stroke-width:0.63;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.62;display:inline"/>
<path d="M 17.04,61.12 L 21.32,77.59 C 21.32,77.59 21.69,78.05 21.77,78.71 C 21.79,78.92 21.79,79.17 21.79,79.17" id="p3915" style="fill:none;stroke:#000000;stroke-width:0.47;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.82;display:inline"/>
<path d="M 31.28,62.11 L 31.15,63.36" id="p3917" style="fill:none;stroke:#272727;stroke-width:0.47;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 22.47,69.01 L 26.02,69.04" id="p3919" style="fill:none;stroke:#000000;stroke-width:0.80;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.62"/>
<path d="M 23.8,69.14 L 24.93,69.17" id="p3921" style="fill:none;stroke:#f6f6f6;stroke-width:0.97;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.81"/>
<path d="M 22.42,79.02 C 22.42,79.04 22.39,79.05 22.37,79.07 C 21.98,79.54 21.17,78.73 21.16,79.98 C 21.16,80.56 21.17,81.87 21.21,82.91 C 22.16,83.28 23.04,82.96 23.33,82.81 C 23.64,82.63 24.64,83.88 25.14,83.62 C 25.63,83.36 25.66,82.83 25.39,82.92 C 25.14,83 24.5,82.79 24.04,82.15 C 23.59,81.51 23.57,81.68 23.38,82 C 23.2,82.32 22.49,83.1 22.23,82.5 C 21.98,82 22.05,80.85 22.42,79.02 z" id="p3927" style="fill:#444e52;fill-opacity:0.66;stroke:none;display:inline"/>
<path d="M 21.51,83.34 C 21.97,83.47 22.15,83.52 22.6,83.21 C 23.05,82.91 23.09,82.76 23.59,83.3 C 24.07,83.83 25.18,84.2 25.5,84.06 C 25.81,83.93 26.68,83.2 26.68,83.2" id="p3929" style="fill:none;stroke:#e9e9e9;stroke-width:0.80;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.76;display:inline"/>
<path d="M 23.85,79.72 C 23.69,79.73 23.51,79.81 23.3,79.91 C 22.89,80.09 23.35,81.27 22.96,81.27 C 22.52,81.29 22.63,80.23 22.63,80.23 C 22.63,80.23 22.62,81.27 22.34,81.5 C 22.15,81.66 21.74,81.5 21.19,81.04 C 21.19,81.27 21.19,81.43 21.19,81.69 C 22.2,82.05 22.91,81.61 23.22,81.5 C 23.57,81.37 24.71,81.95 24.98,82.05 C 25.24,82.13 25.34,80.96 25.43,80.64 C 25.52,80.33 25.08,79.93 24.53,79.78 C 24.22,79.7 24.01,79.68 23.85,79.72 z" id="p3931" style="fill:#ededeb;fill-opacity:0.51;stroke:none;display:inline"/>
<path d="M 21.19,83.34 C 21.55,83.47 22.28,83.6 22.6,83.34 C 22.91,83.09 23.13,83.04 23.64,83.52 C 24.12,84.01 24.72,84.11 24.72,84.11" id="p3933" style="fill:none;stroke:#f8f8f8;stroke-width:0.47;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.62;display:inline"/>
<path d="M 24.03,78.7 C 24.06,79.33 23.8,81.01 24.03,81.42 C 24.25,81.82 26.34,82.4 26.39,81.87 C 26.42,81.34 26.42,79 26.42,79 C 26.42,79 24.43,78.37 24.03,78.7 z" id="p3935" style="fill:#ededeb;fill-opacity:0.31;stroke:none"/>
<path d="M 26.44,79.02 L 26.36,82.15" id="p3937" style="fill:none;stroke:#403e29;stroke-width:0.31;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54"/>
<path d="M 21.22,83.04 C 20.56,83.99 20.32,84.6 20.14,85.77" id="p3943" style="fill:none;stroke:#939a9f;stroke-width:0.63;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61;display:inline"/>
<path d="M 22.5,68.52 C 23.15,68.52 25.14,68.52 25.92,68.52 C 26.63,68.52 26.55,69.63 26.03,69.63 C 25.9,69.63 25.82,69.64 25.63,69.64 C 25.61,70.06 25.34,77.69 25.35,78.19 C 25.37,79.08 27.05,78.4 27.07,79.33 C 27.07,79.81 26.91,83.78 26.83,84.25 C 26.76,84.62 21.35,84.46 21.24,84.07 C 21.16,83.73 21.16,80.82 21.16,79.94 C 21.16,78.7 21.98,79.47 22.37,79 C 22.54,78.79 22.84,78.53 22.83,78.21 C 22.81,77.64 22.89,70.03 22.88,69.43 C 22.78,69.43 22.68,69.45 22.5,69.43 C 21.87,69.41 21.86,68.51 22.5,68.51 L 22.5,68.51 L 22.5,68.52 z" id="p3951" style="fill:none;stroke:#7b7b7b;stroke-width:0.47;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.98;display:inline"/>
<path d="M 23.83,68.9 C 24.03,68.9 24.48,68.44 24.82,67.84 C 25.14,67.26 26.86,63.18 26.86,63.18" id="p3953" style="fill:none;stroke:#252525;stroke-width:0.31;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61;display:inline"/>
<path d="M 21.2,69.21 L 24.74,69.24" id="p3987" style="fill:none;stroke:#000000;stroke-width:0.80;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.62"/>
<path d="M 25.74,69.04 C 26.26,68.91 26.92,68.65 27.85,67.86 C 28.76,67.08 31.99,64.04 32.25,63.78 C 32.51,63.52 32.32,62.53 31.61,62.79 C 30.89,63.05 30.89,63.7 31.28,63.91 C 31.67,64.1 32.19,63.91 32.53,63.71 C 32.85,63.52 33.18,63 33.18,63" id="p3955" style="fill:none;stroke:#252525;stroke-width:0.31;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61;display:inline"/>
<path d="M 26.03,84.35 L 25.81,86.5" id="p3959" style="fill:none;stroke:#000000;stroke-width:0.31;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.86;display:inline"/>
<path d="M 21.73,80.02 L 21.63,86.1" id="p3963" style="fill:none;stroke:#521515;stroke-width:0.47;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 23.46,84.4 C 24.16,84.46 25.39,84.46 25.39,84.46" id="p3965" style="fill:none;stroke:#eeeeee;stroke-width:0.63;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.76"/>
<path d="M 26.34,84.3 C 26.73,84.25 26.71,84.06 26.73,83.78 C 26.73,83.51 26.81,82.21 26.81,82.21" id="p3969" style="fill:none;stroke:#e6e6e6;stroke-width:0.63;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.67"/>
<path d="M 24.74,84.43 L 25.58,84.46" id="p3971" style="fill:none;stroke:#f6f6f6;stroke-width:0.63;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.67"/>
<path d="M 22.52,69.34 L 23.66,69.37" id="p3989" style="fill:none;stroke:#f6f6f6;stroke-width:0.97;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.81"/>
<path d="M 30.01,62.31 L 29.88,63.56" id="p3985" style="fill:none;stroke:#272727;stroke-width:0.47;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"/>
<path d="M 27.18,108.46 C 26.22,108.50 25.37,109.16 25.28,109.96 C 25.19,110.77 25.88,111.40 26.84,111.37 C 27.80,111.34 28.66,110.64 28.75,109.84 C 28.83,109.03 28.14,108.43 27.18,108.46 z" id="p4215" style="opacity:1;fill:#2d2d2d;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 26.62,109.06 C 25.99,109.08 25.43,109.53 25.37,110.06 C 25.31,110.59 25.77,110.98 26.40,110.96 C 27.03,110.94 27.56,110.52 27.62,110 C 27.68,109.47 27.25,109.04 26.62,109.06 z" id="p4217" style="opacity:1;fill:#3e3e3e;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 27.31,109.1 L 25.75,111.24" id="p4219" style="fill:none;fill-rule:evenodd;stroke:#2d2d2d;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 32.82,101.20 C 33.63,100.81 35.06,100.22 36.22,99.17" id="p4221" style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#cfcfcf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 38.65,101.06 C 38.65,103.46 35.77,105.57 31.46,106.71 L 31.46,113.16 M 38.62,100.78 C 38.63,100.87 38.65,100.96 38.65,101.06 C 38.65,100.97 38.65,100.87 38.65,100.78 L 38.62,100.78 z" id="p4225" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3d3d3d;stroke-width:0.40;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<path d="M 24,45.78 C 12.51,45.78 3.18,55.1 3.18,66.59 C 3.18,76.25 9.79,84.37 18.71,86.71 C 18.75,86.72 18.78,86.74 18.81,86.75 C 20.41,87.05 22.15,87.21 24,87.21 C 25.84,87.21 27.58,87.05 29.18,86.75 C 29.21,86.74 29.24,86.72 29.28,86.71 C 38.2,84.37 44.81,76.25 44.81,66.59 C 44.81,55.1 35.48,45.78 24,45.78 z" id="bg" style="fill:#41bee8;fill-opacity:0.9;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g id="g2455">
<path d="M 24,45.78 C 13.08,45.78 4.11,54.2 3.25,64.9 C 5.11,61.4 7.02,60.47 9.15,59.25 C 12.59,57.29 14.22,53.24 16.34,52.59 C 18.46,51.94 19.43,48.14 23.37,48.46 C 27.29,48.79 29.26,47.16 33.68,51.25 C 38.1,55.34 38.43,57.63 40.25,60.9 C 41.06,62.38 43.12,64.78 44.78,65.71 C 44.31,54.64 35.19,45.78 24,45.78 z" id="p3975" style="fill:#bdbdc6;fill-opacity:0.12;stroke:none;display:inline"/>
<path d="M 12.75,57.28 C 10.73,57.34 7.44,58.34 4.25,60 C 3.55,62.07 3.18,64.28 3.18,66.59 C 3.18,68.83 3.53,70.97 4.18,73 C 6.33,67.03 7.42,66.27 8.75,65.5 C 10.33,64.57 12.9,63.21 12.9,63.21 C 12.9,63.21 16.06,66.8 17,67.06 C 17.92,67.32 22.96,64.44 24.03,64.71 C 25.08,64.97 25.75,64.06 25.75,63 C 25.75,61.94 17,57.15 12.75,57.28 z" id="p3977" style="fill:#dfdfe3;fill-opacity:0.12;stroke:none;display:inline"/>
<path d="M 26.52,50.04 C 24.69,50.12 22.83,50.47 21.51,50.55 C 18.91,50.71 21.19,52.17 18.74,52.67 C 17.21,52.98 15.73,54.58 15.46,56.77 C 16.38,56.91 17.21,57.15 17.77,57.58 C 19.89,55.62 32.98,56.93 34.62,59.7 C 35.09,59.44 35.8,59.44 36.58,59.65 C 36.25,58.14 34.96,57.28 34.96,57.28 C 34.96,57.28 36.22,57.27 36.06,55.62 C 35.91,53.96 34.15,52.85 31.52,51.05 C 30.21,50.14 28.37,49.96 26.52,50.04 z" id="p3979" style="fill:#fbfbfc;fill-opacity:0.18;stroke:none;display:inline"/>
</g>
<path d="M 35.59,83.84 C 41.14,80.1 44.81,73.78 44.81,66.59 C 44.81,55.1 35.48,45.78 24,45.78 C 12.51,45.78 3.18,55.1 3.18,66.59 C 3.18,73.78 6.85,80.1 12.4,83.84" id="fg" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#49b5dd;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 18.37,3.37 L 12.40,6.34 L 18.34,9.31 L 12.43,12.28 L 6.53,9.31 L 0.59,12.31 L 6.53,15.28 L 12.43,12.34 L 18.37,15.28 L 24.31,12.31 L 18.40,9.34 L 24.34,6.37 L 30.25,9.31 L 24.34,12.31 L 30.28,15.28 L 36.15,12.34 L 42.03,15.28 L 47.96,12.31 L 42.03,9.31 L 36.15,12.25 L 30.31,9.34 L 36.25,6.37 L 30.28,3.37 L 24.31,6.34 L 18.37,3.37 z M 30.28,15.28 L 24.31,18.25 L 18.37,15.28 L 12.40,18.25 L 18.37,21.25 L 24.34,18.28 L 30.28,21.25 L 36.25,18.28 L 30.28,15.28 z" id="p2429" style="fill:#800000;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 20.77,2.72 L 25.68,11.22 L 27.58,10.12 C 28.50,10.65 29.08,11.36 29.08,12.15 C 29.08,12.98 28.47,13.72 27.49,14.25 L 32.11,16.90 C 34.33,15.70 35.71,14.02 35.71,12.15 C 35.71,10.32 34.36,8.67 32.21,7.47 L 34.33,6.22 L 20.77,2.72 z M 15.61,7.40 C 13.40,8.61 12.02,10.29 12.02,12.15 C 12.02,13.97 13.34,15.61 15.46,16.81 L 13.36,18.03 L 26.90,21.53 L 21.99,13.03 L 20.08,14.15 C 19.21,13.63 18.68,12.93 18.68,12.15 C 18.68,11.33 19.27,10.60 20.24,10.06 L 15.61,7.40 z" id="p4493" style="fill:#f9cdcd;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 20.77,21.53 L 25.68,13.03 L 27.58,14.12 C 28.50,13.59 29.08,12.88 29.08,12.09 C 29.08,11.27 28.47,10.52 27.49,10.00 L 32.11,7.34 C 34.33,8.54 35.71,10.23 35.71,12.09 C 35.71,13.93 34.36,15.58 32.21,16.78 L 34.33,18.03 L 20.77,21.53 z M 15.61,16.84 C 13.40,15.64 12.02,13.96 12.02,12.09 C 12.02,10.27 13.34,8.63 15.46,7.43 L 13.36,6.22 L 26.90,2.72 L 21.99,11.22 L 20.08,10.09 C 19.21,10.61 18.68,11.32 18.68,12.09 C 18.68,12.91 19.27,13.65 20.24,14.18 L 15.61,16.84 z" id="p4493" style="fill:#f9cdcd;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 24,0.12 L 12.18,6.03 L 34.93,6.03 L 35.18,18.43 L 47.87,12.12 L 24,0.12 z M 0,12 L 24,24 L 24,12 L 0,12 z" id="p2387" style="fill:#f9cdcd;fill-opacity:1;fill-rule:evenodd;stroke:none;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 12.18,18.09 L 34.93,18.09 L 35.18,5.68 L 47.87,12 L 24,24 z M 0,12.12 L 24,0.12 L 24,12.12 L 0,12.12 z" id="p2387" style="fill:#f9cdcd;fill-opacity:1;fill-rule:evenodd;stroke:none;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 23.87,24 L 35.68,18.09 L 12.93,18.09 L 12.68,5.68 L 0,12 L 23.87,24 z M 47.87,12.12 L 23.87,0.12 L 23.87,12.12 L 47.87,12.12 z" id="p2387" style="fill:#f9cdcd;fill-opacity:1;fill-rule:evenodd;stroke:none;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 23.87,0.12 L 35.68,6.03 L 12.93,6.03 L 12.68,18.43 L 0,12.12 L 23.87,0.12 z M 47.87,12 L 23.87,24 L 23.87,12 L 47.87,12 z" id="p2387" style="fill:#f9cdcd;fill-opacity:1;fill-rule:evenodd;stroke:none;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.70 L 24,11.82" id="p3156" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:0.50;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 0.5,23.51 L 24,11.76 L 47.5,23.52" id="p3158" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:0.50;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:1, 3;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 36.29,9.91 C 36.22,11.91 36.46,13.92 36.09,15.92 C 35.94,17.43 32.02,18.74 27.35,18.90 C 23.29,19.04 18.61,19.01 15.37,18.10 C 12.23,17.20 11.78,15.78 11.89,14.50 C 11.95,12.56 11.76,10.61 12.03,8.66 C 12.15,7.56 13.23,6.34 16.43,5.77 C 21.39,4.83 28.24,4.94 32.82,6.07 C 36.39,6.99 36.24,8.58 36.29,9.91 L 36.29,9.91 z M 25.95,8.79 C 26.17,8.13 25.88,6.70 22.83,7.35 C 21.88,8.02 22.35,8.79 22.24,9.50 C 22.28,11.74 22.14,13.98 22.32,16.21 C 21.88,17.29 26.83,16.99 25.90,16.02 C 26.01,13.61 25.92,11.20 25.95,8.79 L 25.95,8.79 z" style="fill:#b64a4a;fill-opacity:1;"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 29.95,5.40 C 29.95,9.84 29.95,14.27 29.95,18.71 C 26.50,18.71 23.06,18.71 19.61,18.71 C 19.59,16.00 19.65,13.30 19.58,10.59 C 19.44,10.17 19.80,9.62 18.57,9.34 C 17.04,9.04 15.13,9.11 13.41,9.08 C 12.99,9.07 12.24,9.16 12.47,8.93 C 12.47,8.47 12.47,8.00 12.47,7.53 C 16.84,7.24 21.11,6.56 23.86,5.40 C 25.89,5.40 27.92,5.40 29.95,5.40 L 29.95,5.40 z" style="fill:#b64a4a;fill-opacity:1;"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 35.12,16.44 C 35.12,17.20 35.12,17.95 35.12,18.71 C 27.53,18.71 19.95,18.71 12.36,18.71 C 12.36,18.08 12.36,17.45 12.36,16.81 C 16.40,14.66 20.57,12.54 24.24,10.33 C 25.44,9.49 26.95,8.54 25.96,7.61 C 25.37,7.03 22.34,7.06 21.95,7.67 C 21.42,8.41 21.70,9.18 21.63,9.93 C 18.54,9.93 15.45,9.93 12.36,9.93 C 12.43,8.82 12.07,7.62 14.00,6.65 C 15.85,5.59 19.73,5.12 23.35,5.15 C 27.24,5.11 31.54,5.46 33.95,6.52 C 36.74,7.66 36.41,9.27 34.86,10.56 C 33.08,11.99 30.24,13.25 27.70,14.55 C 26.41,15.19 25.10,15.82 23.78,16.44 C 27.56,16.44 31.34,16.44 35.12,16.44 L 35.12,16.44 z" style="fill:#b64a4a;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 48 36" id="svg2985" style="display:inline">
<defs id="defs2987"/>
<g id="layer1" style="display:inline">
<path d="M 24,0.19 L 0.12,12.22 L 0.19,23.83 L 24,35.77 L 24,0.19 z" id="p3863" style="fill:#b64a4a;fill-opacity:1;stroke:none"/>
<path d="M 23.96,0.41 L 23.97,35.81 L 47.93,23.87 L 47.93,12.12 L 23.96,0.41 z" id="p3863-0" style="fill:#c16363;fill-opacity:1;stroke:none"/>
<path d="M 24,24 L 24,35.12" id="p3976" style="fill:none;stroke:#c57d7d;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<path d="M 24,24 L 0.16,12.06 L 24,0.12 L 47.87,12.12 L 24,24 z" id="p2993" style="fill:#e09090;fill-opacity:1;stroke:none"/>
<path d="M 31.81,11.38 C 34.01,11.59 35.85,12.20 36.06,12.95 C 36.59,14.19 36.69,15.47 35.98,16.71 C 35.50,17.70 33.33,18.57 30.36,18.89 C 26.81,19.28 22.89,19.27 19.26,19.00 C 15.96,18.74 12.84,17.91 12.49,16.77 C 11.96,15.73 12.09,14.68 12.07,13.64 C 15.52,13.64 18.97,13.64 22.42,13.64 C 22.46,14.63 22.31,15.64 22.54,16.63 C 22.39,17.31 25.96,17.28 25.91,16.63 C 26.23,15.73 26.14,14.83 26.08,13.93 C 26.07,13.38 25.10,12.74 23.15,12.73 C 22.17,12.55 19.66,12.92 19.93,12.40 C 19.93,11.84 19.93,11.28 19.93,10.73 C 21.58,10.70 23.33,10.78 24.89,10.58 C 26.38,10.23 26.07,9.56 26.13,9.03 C 26.04,8.53 26.43,7.95 25.42,7.53 C 24.07,7.16 22.14,7.60 22.47,8.14 C 22.37,8.67 22.43,9.20 22.42,9.73 C 18.97,9.73 15.52,9.73 12.07,9.73 C 12.14,8.60 11.65,7.36 13.73,6.37 C 15.73,5.54 19.29,5.40 22.33,5.35 C 25.94,5.34 29.94,5.37 32.91,6.11 C 36.07,7.03 36.46,8.54 35.85,9.82 C 35.58,10.56 33.74,11.06 31.81,11.38 L 31.81,11.38 z" style="fill:#b64a4a;"/>
<path d="M 0.75,12.37 L 24,24 L 47.31,12.34" id="p2993-8" style="fill:none;stroke:#f9cdcd;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path d="M 24,0.55 L 47.5,12.31 L 47.5,23.69 L 24,35.44 L 0.5,23.7 L 0.5,12.3 L 24,0.55 z" id="p3034" style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#b64a4a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Some files were not shown because too many files have changed in this diff Show More