Update analysis

This commit is contained in:
Thomas Dehaeze 2021-08-11 00:28:02 +02:00
parent 1c2d1f3a91
commit 3f2d54dc7f
158 changed files with 86846 additions and 6843 deletions

3
.gitmodules vendored
View File

@ -1,3 +1,6 @@
[submodule "matlab/nass-simscape"]
path = matlab/nass-simscape
url = https://git.tdehaeze.xyz/tdehaeze/nass-simscape
[submodule "matlab/vibration-table"]
path = matlab/vibration-table
url = https://git.tdehaeze.xyz/tdehaeze/vibration-table

98
.latexmkrc Normal file
View File

@ -0,0 +1,98 @@
#!/bin/env perl
# Shebang is only to get syntax highlighting right across GitLab, GitHub and IDEs.
# This file is not meant to be run, but read by `latexmk`.
# ======================================================================================
# Perl `latexmk` configuration file
# ======================================================================================
# ======================================================================================
# PDF Generation/Building/Compilation
# ======================================================================================
@default_files=('test-bench-nano-hexapod.tex');
# PDF-generating modes are:
# 1: pdflatex, as specified by $pdflatex variable (still largely in use)
# 2: postscript conversion, as specified by the $ps2pdf variable (useless)
# 3: dvi conversion, as specified by the $dvipdf variable (useless)
# 4: lualatex, as specified by the $lualatex variable (best)
# 5: xelatex, as specified by the $xelatex variable (second best)
$pdf_mode = 1;
# Treat undefined references and citations as well as multiply defined references as
# ERRORS instead of WARNINGS.
# This is only checked in the *last* run, since naturally, there are undefined references
# in initial runs.
# This setting is potentially annoying when debugging/editing, but highly desirable
# in the CI pipeline, where such a warning should result in a failed pipeline, since the
# final document is incomplete/corrupted.
#
# However, I could not eradicate all warnings, so that `latexmk` currently fails with
# this option enabled.
# Specifically, `microtype` fails together with `fontawesome`/`fontawesome5`, see:
# https://tex.stackexchange.com/a/547514/120853
# The fix in that answer did not help.
# Setting `verbose=silent` to mute `microtype` warnings did not work.
# Switching between `fontawesome` and `fontawesome5` did not help.
$warnings_as_errors = 0;
# Show used CPU time. Looks like: https://tex.stackexchange.com/a/312224/120853
$show_time = 1;
# Default is 5; we seem to need more owed to the complexity of the document.
# Actual documents probably don't need this many since they won't use all features,
# plus won't be compiling from cold each time.
$max_repeat=7;
# --shell-escape option (execution of code outside of latex) is required for the
#'svg' package.
# It converts raw SVG files to the PDF+PDF_TEX combo using InkScape.
#
# SyncTeX allows to jump between source (code) and output (PDF) in IDEs with support
# (many have it). A value of `1` is enabled (gzipped), `-1` is enabled but uncompressed,
# `0` is off.
# Testing in VSCode w/ LaTeX Workshop only worked for the compressed version.
# Adjust this as needed. Of course, only relevant for local use, no effect on a remote
# CI pipeline (except for slower compilation, probably).
#
# %O and %S will forward Options and the Source file, respectively, given to latexmk.
#
# `set_tex_cmds` applies to all *latex commands (latex, xelatex, lualatex, ...), so
# no need to specify these each. This allows to simply change `$pdf_mode` to get a
# different engine. Check if this works with `latexmk --commands`.
set_tex_cmds("--shell-escape -interaction=nonstopmode --synctex=1 %O %S");
# Use default pdf viewer
$pdf_previewer = 'zathura';
# option 2 is same as 1 (run biber when necessary), but also deletes the
# regeneratable bbl-file in a clenaup (`latexmk -c`). Do not use if original
# bib file is not available!
$bibtex_use = 2; # default: 1
# Change default `biber` call, help catch errors faster/clearer. See
# https://web.archive.org/web/20200526101657/https://www.semipol.de/2018/06/12/latex-best-practices.html#database-entries
$biber = "biber --validate-datamodel %O %S";
# ======================================================================================
# Auxiliary Files
# ======================================================================================
# Let latexmk know about generated files, so they can be used to detect if a
# rerun is required, or be deleted in a cleanup.
# loe: List of Examples (KOMAScript)
# lol: List of Listings (`listings` and `minted` packages)
# run.xml: biber runs
# glg: glossaries log
# glstex: generated from glossaries-extra
push @generated_exts, 'loe', 'lol', 'run.xml', 'glg', 'glstex';
# Also delete the *.glstex files from package glossaries-extra. Problem is,
# that that package generates files of the form "basename-digit.glstex" if
# multiple glossaries are present. Latexmk looks for "basename.glstex" and so
# does not find those. For that purpose, use wildcard.
# Also delete files generated by gnuplot/pgfplots contour plots
# (.dat, .script, .table).
$clean_ext = "%R-*.glstex %R_contourtmp*.*";

BIN
doc/PD200-V7-R1.pdf Normal file

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 207 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 380 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="389.372pt" height="116.677pt" viewBox="0 0 389.372 116.677" version="1.2">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="414.473pt" height="116.677pt" viewBox="0 0 414.473 116.677" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
@ -20,33 +20,6 @@
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.296875 -1.234375 L 3.296875 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.96875 L 3.140625 -3.96875 L 3.140625 -4.28125 L 1.71875 -4.28125 L 1.71875 -6.109375 L 1.46875 -6.109375 C 1.453125 -5.296875 1.15625 -4.234375 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.296875 -0.59375 3.296875 -1.234375 Z M 3.296875 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.3125 0 L 3.3125 -0.3125 L 3.046875 -0.3125 C 2.265625 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -6.015625 C 2.234375 -6.375 2.265625 -6.484375 3.046875 -6.484375 L 3.3125 -6.484375 L 3.3125 -6.78125 C 2.96875 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.40625 -6.75 0.625 -6.75 0.28125 -6.78125 L 0.28125 -6.484375 L 0.53125 -6.484375 C 1.328125 -6.484375 1.34375 -6.375 1.34375 -6.015625 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.53125 -0.3125 L 0.28125 -0.3125 L 0.28125 0 C 0.625 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.171875 -0.03125 2.96875 -0.03125 3.3125 0 Z M 3.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 5.046875 -3.96875 L 5.046875 -4.28125 C 4.8125 -4.265625 4.53125 -4.25 4.296875 -4.25 L 3.4375 -4.28125 L 3.4375 -3.96875 C 3.8125 -3.96875 3.921875 -3.734375 3.921875 -3.546875 C 3.921875 -3.453125 3.890625 -3.421875 3.859375 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.546875 C 1.671875 -3.671875 1.671875 -3.71875 1.671875 -3.71875 C 1.671875 -3.96875 2.0625 -3.96875 2.234375 -3.96875 L 2.234375 -4.28125 L 1.15625 -4.25 C 0.890625 -4.25 0.484375 -4.265625 0.1875 -4.28125 L 0.1875 -3.96875 C 0.8125 -3.96875 0.859375 -3.921875 0.984375 -3.609375 L 2.421875 -0.078125 C 2.46875 0.0625 2.5 0.109375 2.625 0.109375 C 2.75 0.109375 2.796875 0.015625 2.828125 -0.078125 L 4.140625 -3.3125 C 4.21875 -3.53125 4.390625 -3.96875 5.046875 -3.96875 Z M 5.046875 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.046875 -1.296875 4 -1.296875 C 3.90625 -1.296875 3.890625 -1.25 3.859375 -1.15625 C 3.515625 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.5 C 4.125 -3.484375 3.59375 -4.453125 2.34375 -4.453125 C 1.1875 -4.453125 0.28125 -3.421875 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.671875 0.109375 4.125 -1 4.125 -1.1875 Z M 3.46875 -2.5 L 1.109375 -2.5 C 1.171875 -3.984375 2 -4.234375 2.34375 -4.234375 C 3.375 -4.234375 3.46875 -2.890625 3.46875 -2.5 Z M 3.46875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 3.625 -3.78125 C 3.625 -4.109375 3.3125 -4.390625 2.875 -4.390625 C 2.15625 -4.390625 1.796875 -3.734375 1.65625 -3.296875 L 1.65625 -4.390625 L 0.28125 -4.28125 L 0.28125 -3.96875 C 0.96875 -3.96875 1.046875 -3.90625 1.046875 -3.421875 L 1.046875 -0.75 C 1.046875 -0.3125 0.9375 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.40625 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.671875 0 L 2.671875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.703125 -0.421875 1.703125 -0.78125 L 1.703125 -2.3125 C 1.703125 -3.296875 2.125 -4.171875 2.875 -4.171875 C 2.953125 -4.171875 2.96875 -4.171875 2.984375 -4.15625 C 2.96875 -4.15625 2.765625 -4.03125 2.765625 -3.78125 C 2.765625 -3.5 2.96875 -3.34375 3.1875 -3.34375 C 3.375 -3.34375 3.625 -3.46875 3.625 -3.78125 Z M 3.625 -3.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.578125 -1.265625 C 3.578125 -1.796875 3.28125 -2.09375 3.15625 -2.21875 C 2.828125 -2.53125 2.4375 -2.609375 2.03125 -2.6875 C 1.46875 -2.796875 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.859375 1.0625 -4.265625 1.921875 -4.265625 C 3.015625 -4.265625 3.0625 -3.375 3.078125 -3.0625 C 3.09375 -2.96875 3.203125 -2.96875 3.203125 -2.96875 C 3.328125 -2.96875 3.328125 -3.015625 3.328125 -3.203125 L 3.328125 -4.21875 C 3.328125 -4.375 3.328125 -4.453125 3.21875 -4.453125 C 3.171875 -4.453125 3.15625 -4.453125 3.015625 -4.328125 C 2.984375 -4.296875 2.890625 -4.203125 2.859375 -4.171875 C 2.46875 -4.453125 2.0625 -4.453125 1.921875 -4.453125 C 0.703125 -4.453125 0.328125 -3.78125 0.328125 -3.234375 C 0.328125 -2.875 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.125 1.34375 -2.0625 2.0625 -1.921875 C 2.28125 -1.890625 3.09375 -1.734375 3.09375 -1.015625 C 3.09375 -0.5 2.75 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.4375 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.765625 0.109375 1.984375 0.109375 C 3.125 0.109375 3.578125 -0.5625 3.578125 -1.265625 Z M 3.578125 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 7.3125 0 L 7.3125 -0.3125 C 6.78125 -0.3125 6.5625 -0.34375 6.265625 -0.78125 L 3.96875 -4.15625 L 5.765625 -5.890625 C 5.84375 -5.96875 6.375 -6.46875 7.171875 -6.484375 L 7.171875 -6.78125 C 6.921875 -6.75 6.59375 -6.75 6.328125 -6.75 C 5.96875 -6.75 5.40625 -6.75 5.0625 -6.78125 L 5.0625 -6.484375 C 5.46875 -6.46875 5.53125 -6.234375 5.53125 -6.15625 C 5.53125 -6 5.421875 -5.890625 5.34375 -5.828125 L 2.234375 -2.859375 L 2.234375 -6.015625 C 2.234375 -6.375 2.25 -6.484375 3.015625 -6.484375 L 3.265625 -6.484375 L 3.265625 -6.78125 C 2.90625 -6.75 2.171875 -6.75 1.796875 -6.75 C 1.421875 -6.75 0.671875 -6.75 0.328125 -6.78125 L 0.328125 -6.484375 L 0.5625 -6.484375 C 1.328125 -6.484375 1.34375 -6.375 1.34375 -6.015625 L 1.34375 -0.78125 C 1.34375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.40625 -0.03125 1.78125 -0.03125 C 2.171875 -0.03125 2.90625 -0.03125 3.265625 0 L 3.265625 -0.3125 L 3.015625 -0.3125 C 2.25 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -2.515625 L 3.390625 -3.609375 L 5.1875 -0.9375 C 5.25 -0.859375 5.34375 -0.71875 5.34375 -0.609375 C 5.34375 -0.3125 4.953125 -0.3125 4.75 -0.3125 L 4.75 0 C 5.09375 -0.03125 5.796875 -0.03125 6.171875 -0.03125 Z M 7.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 2.453125 0 L 2.453125 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.390625 L 0.375 -4.28125 L 0.375 -3.96875 C 1.015625 -3.96875 1.109375 -3.921875 1.109375 -3.421875 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.765625 -0.03125 2.109375 -0.015625 2.453125 0 Z M 1.90625 -6 C 1.90625 -6.265625 1.671875 -6.53125 1.375 -6.53125 C 1.046875 -6.53125 0.84375 -6.25 0.84375 -6 C 0.84375 -5.734375 1.078125 -5.46875 1.375 -5.46875 C 1.703125 -5.46875 1.90625 -5.75 1.90625 -6 Z M 1.90625 -6 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 8.078125 0 L 8.078125 -0.3125 C 7.5625 -0.3125 7.3125 -0.3125 7.296875 -0.609375 L 7.296875 -2.5 C 7.296875 -3.359375 7.296875 -3.671875 7 -4.03125 C 6.859375 -4.1875 6.53125 -4.390625 5.953125 -4.390625 C 5.125 -4.390625 4.6875 -3.796875 4.515625 -3.421875 C 4.375 -4.28125 3.640625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 L 5.3125 0 L 5.3125 -0.3125 C 4.65625 -0.3125 4.546875 -0.3125 4.546875 -0.75 L 4.546875 -2.578125 C 4.546875 -3.625 5.25 -4.171875 5.890625 -4.171875 C 6.515625 -4.171875 6.625 -3.640625 6.625 -3.078125 L 6.625 -0.75 C 6.625 -0.3125 6.515625 -0.3125 5.84375 -0.3125 L 5.84375 0 L 6.96875 -0.03125 Z M 8.078125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.90625 -1.28125 3.890625 -1.25 3.859375 -1.1875 C 3.578125 -0.265625 2.9375 -0.140625 2.5625 -0.140625 C 2.03125 -0.140625 1.15625 -0.5625 1.15625 -2.171875 C 1.15625 -3.78125 1.984375 -4.203125 2.5 -4.203125 C 2.59375 -4.203125 3.21875 -4.1875 3.5625 -3.828125 C 3.15625 -3.8125 3.09375 -3.515625 3.09375 -3.375 C 3.09375 -3.125 3.28125 -2.921875 3.5625 -2.921875 C 3.8125 -2.921875 4.015625 -3.09375 4.015625 -3.390625 C 4.015625 -4.0625 3.265625 -4.453125 2.5 -4.453125 C 1.25 -4.453125 0.34375 -3.375 0.34375 -2.140625 C 0.34375 -0.875 1.328125 0.109375 2.46875 0.109375 C 3.8125 0.109375 4.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
@ -78,214 +51,290 @@
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 11.5625 -4.28125 C 11.5625 -4.578125 11.28125 -4.578125 11.03125 -4.578125 L 6.46875 -4.578125 L 6.46875 -9.140625 C 6.46875 -9.375 6.46875 -9.671875 6.1875 -9.671875 C 5.875 -9.671875 5.875 -9.390625 5.875 -9.140625 L 5.875 -4.578125 L 1.328125 -4.578125 C 1.078125 -4.578125 0.796875 -4.578125 0.796875 -4.296875 C 0.796875 -3.984375 1.0625 -3.984375 1.328125 -3.984375 L 5.875 -3.984375 L 5.875 0.5625 C 5.875 0.8125 5.875 1.09375 6.171875 1.09375 C 6.46875 1.09375 6.46875 0.828125 6.46875 0.5625 L 6.46875 -3.984375 L 11.03125 -3.984375 C 11.265625 -3.984375 11.5625 -3.984375 11.5625 -4.28125 Z M 11.5625 -4.28125 "/>
<path style="stroke:none;" d="M 3.984375 -2.4375 C 3.984375 -2.96875 3.328125 -3.390625 2.53125 -3.390625 L 0.421875 -3.390625 L 0.421875 -3.171875 L 0.578125 -3.171875 C 0.96875 -3.171875 0.96875 -3.125 0.96875 -2.96875 L 0.96875 -0.421875 C 0.96875 -0.265625 0.96875 -0.21875 0.578125 -0.21875 L 0.421875 -0.21875 L 0.421875 0 L 1.234375 -0.015625 L 2.046875 0 L 2.046875 -0.21875 L 1.90625 -0.21875 C 1.5 -0.21875 1.5 -0.265625 1.5 -0.421875 L 1.5 -1.515625 L 2.59375 -1.515625 C 3.25 -1.515625 3.984375 -1.890625 3.984375 -2.4375 Z M 3.40625 -2.4375 C 3.40625 -2.03125 3.203125 -1.703125 2.421875 -1.703125 L 1.484375 -1.703125 L 1.484375 -2.984375 C 1.484375 -3.140625 1.484375 -3.171875 1.71875 -3.171875 L 2.421875 -3.171875 C 3.234375 -3.171875 3.40625 -2.828125 3.40625 -2.4375 Z M 3.40625 -2.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 4.5 -1.671875 C 4.5 -2.59375 3.671875 -3.390625 2.609375 -3.390625 L 0.421875 -3.390625 L 0.421875 -3.171875 C 0.546875 -3.171875 0.6875 -3.171875 0.796875 -3.171875 C 0.96875 -3.15625 0.96875 -3.078125 0.96875 -2.96875 L 0.96875 -0.4375 C 0.96875 -0.3125 0.96875 -0.25 0.796875 -0.234375 C 0.6875 -0.21875 0.53125 -0.21875 0.421875 -0.21875 L 0.421875 0 L 2.609375 0 C 3.65625 0 4.5 -0.75 4.5 -1.671875 Z M 3.9375 -1.671875 C 3.9375 -1.234375 3.84375 -0.859375 3.5625 -0.59375 C 3.390625 -0.4375 3.046875 -0.21875 2.46875 -0.21875 L 1.734375 -0.21875 C 1.484375 -0.21875 1.484375 -0.25 1.484375 -0.421875 L 1.484375 -2.96875 C 1.484375 -3.140625 1.484375 -3.171875 1.734375 -3.171875 L 2.46875 -3.171875 C 3.0625 -3.171875 3.40625 -2.921875 3.546875 -2.796875 C 3.71875 -2.609375 3.9375 -2.328125 3.9375 -1.671875 Z M 3.9375 -1.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 2.921875 -0.953125 L 2.71875 -0.953125 C 2.703125 -0.859375 2.65625 -0.5625 2.578125 -0.5 C 2.53125 -0.484375 2.109375 -0.484375 2.046875 -0.484375 L 1.0625 -0.484375 C 1.390625 -0.71875 1.765625 -1 2.0625 -1.203125 C 2.515625 -1.5 2.921875 -1.796875 2.921875 -2.328125 C 2.921875 -2.953125 2.328125 -3.3125 1.609375 -3.3125 C 0.9375 -3.3125 0.453125 -2.921875 0.453125 -2.4375 C 0.453125 -2.171875 0.671875 -2.125 0.734375 -2.125 C 0.875 -2.125 1.03125 -2.21875 1.03125 -2.421875 C 1.03125 -2.609375 0.90625 -2.703125 0.75 -2.71875 C 0.890625 -2.9375 1.171875 -3.09375 1.515625 -3.09375 C 2 -3.09375 2.390625 -2.796875 2.390625 -2.3125 C 2.390625 -1.890625 2.109375 -1.578125 1.71875 -1.25 L 0.515625 -0.234375 C 0.46875 -0.1875 0.453125 -0.1875 0.453125 -0.15625 L 0.453125 0 L 2.765625 0 Z M 2.921875 -0.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 2.984375 -1.59375 C 2.984375 -1.953125 2.984375 -3.3125 1.6875 -3.3125 C 0.390625 -3.3125 0.390625 -1.953125 0.390625 -1.59375 C 0.390625 -1.234375 0.390625 0.109375 1.6875 0.109375 C 2.984375 0.109375 2.984375 -1.234375 2.984375 -1.59375 Z M 2.484375 -1.65625 C 2.484375 -1.3125 2.484375 -0.90625 2.421875 -0.609375 C 2.28125 -0.125 1.890625 -0.046875 1.6875 -0.046875 C 1.5 -0.046875 1.09375 -0.125 0.96875 -0.625 C 0.890625 -0.890625 0.890625 -1.234375 0.890625 -1.65625 C 0.890625 -2.015625 0.890625 -2.359375 0.96875 -2.640625 C 1.09375 -3.0625 1.46875 -3.140625 1.6875 -3.140625 C 2.0625 -3.140625 2.328125 -2.953125 2.421875 -2.609375 C 2.484375 -2.359375 2.484375 -1.9375 2.484375 -1.65625 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 2.078125 0 L 2.078125 -0.21875 L 1.90625 -0.21875 C 1.484375 -0.21875 1.484375 -0.265625 1.484375 -0.421875 L 1.484375 -2.96875 C 1.484375 -3.125 1.484375 -3.171875 1.90625 -3.171875 L 2.078125 -3.171875 L 2.078125 -3.390625 L 1.234375 -3.375 L 0.375 -3.390625 L 0.375 -3.171875 L 0.546875 -3.171875 C 0.96875 -3.171875 0.96875 -3.125 0.96875 -2.96875 L 0.96875 -0.421875 C 0.96875 -0.265625 0.96875 -0.21875 0.546875 -0.21875 L 0.375 -0.21875 L 0.375 0 L 1.234375 -0.015625 Z M 2.078125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-6">
<path style="stroke:none;" d="M 3.390625 0 L 3.390625 -0.21875 L 3.296875 -0.21875 C 2.984375 -0.21875 2.984375 -0.265625 2.984375 -0.421875 L 2.984375 -1.5 C 2.984375 -2.046875 2.609375 -2.203125 2.140625 -2.203125 C 1.609375 -2.203125 1.34375 -1.90625 1.21875 -1.703125 L 1.21875 -2.203125 L 0.40625 -2.140625 L 0.40625 -1.921875 C 0.78125 -1.921875 0.8125 -1.890625 0.8125 -1.640625 L 0.8125 -0.421875 C 0.8125 -0.265625 0.8125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.625 -0.015625 0.828125 -0.015625 1.046875 -0.015625 C 1.25 -0.015625 1.46875 -0.015625 1.671875 0 L 1.671875 -0.21875 L 1.578125 -0.21875 C 1.265625 -0.21875 1.265625 -0.265625 1.265625 -0.421875 L 1.265625 -1.28125 C 1.265625 -1.84375 1.78125 -2.03125 2.09375 -2.03125 C 2.453125 -2.03125 2.53125 -1.828125 2.53125 -1.5 L 2.53125 -0.421875 C 2.53125 -0.265625 2.53125 -0.21875 2.21875 -0.21875 L 2.125 -0.21875 L 2.125 0 C 2.34375 -0.015625 2.546875 -0.015625 2.765625 -0.015625 C 2.96875 -0.015625 3.1875 -0.015625 3.390625 0 Z M 3.390625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 3.265625 -1.921875 L 3.265625 -2.140625 C 3.140625 -2.125 3.015625 -2.125 2.84375 -2.125 C 2.84375 -2.125 2.515625 -2.125 2.328125 -2.140625 L 2.328125 -1.921875 C 2.46875 -1.921875 2.546875 -1.859375 2.546875 -1.75 C 2.546875 -1.6875 2.53125 -1.640625 2.53125 -1.640625 L 1.890625 -0.40625 L 1.21875 -1.734375 C 1.203125 -1.765625 1.1875 -1.78125 1.1875 -1.8125 C 1.1875 -1.921875 1.359375 -1.921875 1.453125 -1.921875 L 1.453125 -2.140625 C 1.234375 -2.125 0.875 -2.125 0.828125 -2.125 C 0.640625 -2.125 0.484375 -2.125 0.28125 -2.140625 L 0.28125 -1.921875 C 0.578125 -1.921875 0.640625 -1.921875 0.71875 -1.78125 L 1.59375 -0.0625 C 1.640625 0.015625 1.65625 0.046875 1.78125 0.046875 C 1.890625 0.046875 1.90625 0 1.953125 -0.0625 L 2.75 -1.625 C 2.828125 -1.78125 2.96875 -1.921875 3.265625 -1.921875 Z M 3.265625 -1.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-8">
<path style="stroke:none;" d="M 2.71875 -0.59375 C 2.71875 -0.671875 2.640625 -0.671875 2.609375 -0.671875 C 2.53125 -0.671875 2.53125 -0.65625 2.5 -0.59375 C 2.359375 -0.25 2 -0.125 1.71875 -0.125 C 1.3125 -0.125 1.09375 -0.34375 1.015625 -0.4375 C 0.8125 -0.671875 0.8125 -0.984375 0.8125 -1.125 L 2.5625 -1.125 C 2.671875 -1.125 2.71875 -1.125 2.71875 -1.234375 C 2.71875 -1.5625 2.53125 -2.21875 1.609375 -2.21875 C 0.859375 -2.21875 0.328125 -1.6875 0.328125 -1.09375 C 0.328125 -0.46875 0.921875 0.046875 1.6875 0.046875 C 2.46875 0.046875 2.71875 -0.5 2.71875 -0.59375 Z M 2.328125 -1.265625 L 0.828125 -1.265625 C 0.890625 -1.921875 1.375 -2.0625 1.609375 -2.0625 C 2.296875 -2.0625 2.328125 -1.421875 2.328125 -1.265625 Z M 2.328125 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-9">
<path style="stroke:none;" d="M 2.375 -1.859375 C 2.375 -2.046875 2.203125 -2.203125 1.9375 -2.203125 C 1.6875 -2.203125 1.375 -2.0625 1.171875 -1.65625 L 1.171875 -2.203125 L 0.375 -2.140625 L 0.375 -1.921875 C 0.75 -1.921875 0.796875 -1.890625 0.796875 -1.640625 L 0.796875 -0.421875 C 0.796875 -0.265625 0.796875 -0.21875 0.46875 -0.21875 L 0.375 -0.21875 L 0.375 0 C 0.59375 -0.015625 0.8125 -0.015625 1.015625 -0.015625 L 1.734375 0 L 1.734375 -0.21875 L 1.59375 -0.21875 C 1.21875 -0.21875 1.21875 -0.265625 1.21875 -0.421875 L 1.21875 -1.109375 C 1.21875 -1.578125 1.46875 -2.015625 1.953125 -2.03125 C 1.953125 -2.03125 1.875 -1.96875 1.875 -1.859375 C 1.875 -1.671875 2.015625 -1.59375 2.125 -1.59375 C 2.25 -1.59375 2.375 -1.6875 2.375 -1.859375 Z M 2.375 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-10">
<path style="stroke:none;" d="M 2.375 -0.625 C 2.375 -0.84375 2.25 -1.015625 2.0625 -1.140625 C 1.859375 -1.25 1.71875 -1.28125 1.296875 -1.34375 C 0.984375 -1.390625 0.59375 -1.453125 0.59375 -1.71875 C 0.59375 -1.890625 0.796875 -2.078125 1.328125 -2.078125 C 1.75 -2.078125 1.984375 -1.90625 2.015625 -1.5625 C 2.015625 -1.5 2.015625 -1.46875 2.109375 -1.46875 C 2.21875 -1.46875 2.21875 -1.5 2.21875 -1.609375 L 2.21875 -2.09375 C 2.21875 -2.171875 2.21875 -2.21875 2.140625 -2.21875 C 2.109375 -2.21875 2.09375 -2.21875 2.0625 -2.1875 C 2.03125 -2.171875 1.953125 -2.09375 1.921875 -2.09375 C 1.921875 -2.09375 1.90625 -2.09375 1.890625 -2.109375 C 1.765625 -2.171875 1.578125 -2.21875 1.34375 -2.21875 C 0.515625 -2.21875 0.34375 -1.84375 0.34375 -1.625 C 0.34375 -1.15625 0.921875 -1.0625 1.375 -1 C 1.671875 -0.953125 2.125 -0.875 2.125 -0.546875 C 2.125 -0.375 1.984375 -0.109375 1.375 -0.109375 C 1.046875 -0.109375 0.71875 -0.234375 0.5625 -0.765625 C 0.546875 -0.84375 0.53125 -0.859375 0.453125 -0.859375 C 0.34375 -0.859375 0.34375 -0.828125 0.34375 -0.71875 L 0.34375 -0.078125 C 0.34375 0 0.34375 0.046875 0.421875 0.046875 C 0.46875 0.046875 0.46875 0.046875 0.5625 -0.046875 L 0.703125 -0.171875 C 0.9375 0.046875 1.25 0.046875 1.375 0.046875 C 2.21875 0.046875 2.375 -0.375 2.375 -0.625 Z M 2.375 -0.625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-11">
<path style="stroke:none;" d="M 4.640625 0 L 4.640625 -0.21875 C 4.265625 -0.21875 4.1875 -0.25 4.015625 -0.453125 L 2.625 -2.0625 L 3.75 -2.90625 C 3.90625 -3.03125 4.171875 -3.171875 4.5625 -3.171875 L 4.5625 -3.390625 C 4.359375 -3.375 4.265625 -3.375 4.046875 -3.375 L 3.328125 -3.390625 L 3.328125 -3.171875 C 3.359375 -3.171875 3.484375 -3.171875 3.484375 -3.0625 C 3.484375 -3 3.453125 -2.953125 3.375 -2.890625 L 1.484375 -1.453125 L 1.484375 -2.96875 C 1.484375 -3.125 1.484375 -3.171875 1.890625 -3.171875 L 2.046875 -3.171875 L 2.046875 -3.390625 L 1.234375 -3.375 L 0.40625 -3.390625 L 0.40625 -3.171875 L 0.5625 -3.171875 C 0.96875 -3.171875 0.96875 -3.125 0.96875 -2.96875 L 0.96875 -0.421875 C 0.96875 -0.265625 0.96875 -0.21875 0.5625 -0.21875 L 0.40625 -0.21875 L 0.40625 0 L 1.234375 -0.015625 L 2.046875 0 L 2.046875 -0.21875 L 1.890625 -0.21875 C 1.484375 -0.21875 1.484375 -0.265625 1.484375 -0.421875 L 1.484375 -1.203125 L 2.25 -1.78125 L 3.359375 -0.484375 C 3.390625 -0.46875 3.4375 -0.390625 3.4375 -0.34375 C 3.4375 -0.21875 3.28125 -0.21875 3.1875 -0.21875 L 3.1875 0 L 3.984375 -0.015625 C 4.21875 -0.015625 4.390625 -0.015625 4.640625 0 Z M 4.640625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-12">
<path style="stroke:none;" d="M 1.625 0 L 1.625 -0.21875 C 1.28125 -0.21875 1.25 -0.21875 1.25 -0.421875 L 1.25 -2.203125 L 0.4375 -2.140625 L 0.4375 -1.921875 C 0.78125 -1.921875 0.828125 -1.890625 0.828125 -1.640625 L 0.828125 -0.421875 C 0.828125 -0.265625 0.828125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.609375 -0.015625 0.828125 -0.015625 1.03125 -0.015625 C 1.21875 -0.015625 1.4375 -0.015625 1.625 0 Z M 1.296875 -2.984375 C 1.296875 -3.15625 1.171875 -3.28125 1 -3.28125 C 0.828125 -3.28125 0.703125 -3.15625 0.703125 -2.984375 C 0.703125 -2.8125 0.828125 -2.671875 1 -2.671875 C 1.15625 -2.671875 1.296875 -2.8125 1.296875 -2.984375 Z M 1.296875 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-13">
<path style="stroke:none;" d="M 5.125 0 L 5.125 -0.21875 L 5.03125 -0.21875 C 4.703125 -0.21875 4.703125 -0.265625 4.703125 -0.421875 L 4.703125 -1.5 C 4.703125 -2.109375 4.25 -2.203125 3.875 -2.203125 C 3.390625 -2.203125 3.09375 -1.953125 2.96875 -1.734375 C 2.84375 -2.1875 2.328125 -2.203125 2.140625 -2.203125 C 1.640625 -2.203125 1.34375 -1.921875 1.21875 -1.703125 L 1.21875 -2.203125 L 0.40625 -2.140625 L 0.40625 -1.921875 C 0.78125 -1.921875 0.8125 -1.890625 0.8125 -1.640625 L 0.8125 -0.421875 C 0.8125 -0.265625 0.8125 -0.21875 0.5 -0.21875 L 0.40625 -0.21875 L 0.40625 0 C 0.625 -0.015625 0.828125 -0.015625 1.046875 -0.015625 C 1.25 -0.015625 1.46875 -0.015625 1.671875 0 L 1.671875 -0.21875 L 1.578125 -0.21875 C 1.265625 -0.21875 1.265625 -0.265625 1.265625 -0.421875 L 1.265625 -1.28125 C 1.265625 -1.828125 1.765625 -2.03125 2.09375 -2.03125 C 2.453125 -2.03125 2.546875 -1.828125 2.546875 -1.5 L 2.546875 -0.421875 C 2.546875 -0.265625 2.546875 -0.21875 2.21875 -0.21875 L 2.125 -0.21875 L 2.125 0 C 2.34375 -0.015625 2.546875 -0.015625 2.765625 -0.015625 C 2.96875 -0.015625 3.1875 -0.015625 3.40625 0 L 3.40625 -0.21875 L 3.3125 -0.21875 C 2.984375 -0.21875 2.984375 -0.265625 2.984375 -0.421875 L 2.984375 -1.28125 C 2.984375 -1.828125 3.5 -2.03125 3.8125 -2.03125 C 4.171875 -2.03125 4.265625 -1.828125 4.265625 -1.5 L 4.265625 -0.421875 C 4.265625 -0.265625 4.265625 -0.21875 3.9375 -0.21875 L 3.859375 -0.21875 L 3.859375 0 C 4.0625 -0.015625 4.28125 -0.015625 4.484375 -0.015625 C 4.703125 -0.015625 4.90625 -0.015625 5.125 0 Z M 5.125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-14">
<path style="stroke:none;" d="M 3.15625 -0.453125 L 3.15625 -0.71875 L 2.953125 -0.71875 L 2.953125 -0.453125 C 2.953125 -0.40625 2.953125 -0.1875 2.75 -0.1875 C 2.546875 -0.1875 2.546875 -0.40625 2.546875 -0.453125 L 2.546875 -1.46875 C 2.546875 -1.953125 2.046875 -2.21875 1.4375 -2.21875 C 1.125 -2.21875 0.546875 -2.21875 0.546875 -1.78125 C 0.546875 -1.609375 0.6875 -1.515625 0.8125 -1.515625 C 0.953125 -1.515625 1.078125 -1.609375 1.078125 -1.78125 C 1.078125 -1.90625 1.015625 -1.984375 0.96875 -2 C 1.125 -2.0625 1.359375 -2.0625 1.421875 -2.0625 C 1.84375 -2.0625 2.109375 -1.828125 2.109375 -1.46875 L 2.109375 -1.34375 C 1.625 -1.3125 1.359375 -1.296875 0.96875 -1.171875 C 0.640625 -1.046875 0.359375 -0.84375 0.359375 -0.515625 C 0.359375 -0.046875 0.9375 0.046875 1.328125 0.046875 C 1.71875 0.046875 2.015625 -0.09375 2.171875 -0.359375 C 2.1875 -0.171875 2.296875 0.03125 2.546875 0.03125 C 2.59375 0.03125 3.15625 0.03125 3.15625 -0.453125 Z M 2.109375 -0.703125 C 2.109375 -0.15625 1.515625 -0.109375 1.390625 -0.109375 C 1.09375 -0.109375 0.8125 -0.265625 0.8125 -0.515625 C 0.8125 -0.6875 0.921875 -1.140625 2.109375 -1.1875 Z M 2.109375 -0.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-15">
<path style="stroke:none;" d="M 2.203125 -0.625 L 2.203125 -0.90625 L 2 -0.90625 L 2 -0.640625 C 2 -0.265625 1.78125 -0.125 1.609375 -0.125 C 1.21875 -0.125 1.21875 -0.515625 1.21875 -0.625 L 1.21875 -1.921875 L 2.109375 -1.921875 L 2.109375 -2.140625 L 1.21875 -2.140625 L 1.21875 -3.0625 L 1.015625 -3.0625 C 1.015625 -2.59375 0.765625 -2.109375 0.25 -2.09375 L 0.25 -1.921875 L 0.78125 -1.921875 L 0.78125 -0.625 C 0.78125 -0.0625 1.25 0.046875 1.5625 0.046875 C 1.921875 0.046875 2.203125 -0.21875 2.203125 -0.625 Z M 2.203125 -0.625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-16">
<path style="stroke:none;" d="M 2.71875 -0.59375 C 2.71875 -0.671875 2.640625 -0.671875 2.609375 -0.671875 C 2.53125 -0.671875 2.53125 -0.65625 2.5 -0.59375 C 2.328125 -0.171875 1.96875 -0.125 1.75 -0.125 C 1.328125 -0.125 0.859375 -0.40625 0.859375 -1.078125 C 0.859375 -1.296875 0.90625 -1.5625 1.078125 -1.78125 C 1.328125 -2.046875 1.609375 -2.046875 1.765625 -2.046875 C 1.921875 -2.046875 2.0625 -2.046875 2.234375 -2 C 2.15625 -1.953125 2.125 -1.875 2.125 -1.78125 C 2.125 -1.625 2.25 -1.515625 2.390625 -1.515625 C 2.5 -1.515625 2.640625 -1.59375 2.640625 -1.78125 C 2.640625 -2.21875 2.09375 -2.21875 1.75 -2.21875 C 0.78125 -2.21875 0.359375 -1.5625 0.359375 -1.078125 C 0.359375 -0.453125 0.9375 0.046875 1.6875 0.046875 C 2.546875 0.046875 2.71875 -0.546875 2.71875 -0.59375 Z M 2.71875 -0.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 5.125 -0.984375 C 5.125 -1.015625 5.109375 -1.046875 5.0625 -1.046875 C 4.953125 -1.046875 4.5 -0.890625 4.421875 -0.609375 C 4.3125 -0.3125 4.234375 -0.3125 4.0625 -0.3125 C 3.6875 -0.3125 3.1875 -0.4375 2.84375 -0.53125 C 2.484375 -0.625 2.109375 -0.703125 1.75 -0.703125 C 1.71875 -0.703125 1.578125 -0.703125 1.484375 -0.6875 C 1.859375 -1.234375 1.953125 -1.578125 2.0625 -2.015625 C 2.203125 -2.53125 2.40625 -3.25 2.75 -3.828125 C 3.09375 -4.390625 3.265625 -4.421875 3.5 -4.421875 C 3.828125 -4.421875 4.046875 -4.1875 4.046875 -3.84375 C 4.046875 -3.734375 4.03125 -3.65625 4.03125 -3.625 C 4.03125 -3.59375 4.046875 -3.5625 4.109375 -3.5625 C 4.125 -3.5625 4.296875 -3.59375 4.546875 -3.765625 C 4.6875 -3.859375 4.765625 -3.9375 4.765625 -4.203125 C 4.765625 -4.46875 4.609375 -4.890625 4.0625 -4.890625 C 3.453125 -4.890625 2.78125 -4.484375 2.421875 -4.046875 C 1.953125 -3.515625 1.640625 -2.8125 1.359375 -1.671875 C 1.1875 -1.03125 0.9375 -0.5 0.609375 -0.234375 C 0.546875 -0.171875 0.359375 0 0.359375 0.09375 C 0.359375 0.140625 0.421875 0.140625 0.4375 0.140625 C 0.6875 0.140625 1 -0.15625 1.09375 -0.25 C 1.296875 -0.25 1.578125 -0.234375 2.203125 -0.078125 C 2.734375 0.0625 3.109375 0.140625 3.5 0.140625 C 4.375 0.140625 5.125 -0.65625 5.125 -0.984375 Z M 5.125 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.890625 1.671875 -3.890625 C 1.390625 -3.890625 1.328125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.359375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 5.3125 -0.6875 C 5.3125 -0.734375 5.265625 -0.734375 5.234375 -0.734375 C 5.125 -0.734375 4.84375 -0.625 4.703125 -0.421875 C 4.46875 -0.421875 4.203125 -0.421875 4.078125 -1.0625 L 3.875 -2.46875 C 3.875 -2.5 3.890625 -2.515625 3.90625 -2.53125 L 4.15625 -2.65625 C 6.21875 -3.78125 6.21875 -4.09375 6.21875 -4.34375 C 6.21875 -4.546875 6.109375 -4.75 5.828125 -4.75 C 5.609375 -4.75 5.265625 -4.5 5.265625 -4.390625 C 5.265625 -4.328125 5.296875 -4.328125 5.34375 -4.328125 C 5.515625 -4.296875 5.578125 -4.15625 5.578125 -4.015625 C 5.578125 -3.875 5.578125 -3.796875 4.9375 -3.40625 C 4.8125 -3.3125 4.671875 -3.21875 3.84375 -2.78125 C 3.75 -3.28125 3.703125 -3.84375 3.640625 -4.09375 C 3.515625 -4.65625 3.265625 -4.75 2.953125 -4.75 C 2.1875 -4.75 1.78125 -4.234375 1.78125 -4.078125 C 1.78125 -4.015625 1.828125 -4.015625 1.859375 -4.015625 C 1.984375 -4.015625 2.265625 -4.125 2.40625 -4.328125 C 2.625 -4.328125 2.875 -4.328125 3 -3.75 L 3.1875 -2.421875 C 2.796875 -2.21875 2.0625 -1.828125 1.640625 -1.578125 C 0.546875 -0.890625 0.484375 -0.625 0.484375 -0.40625 C 0.484375 -0.203125 0.59375 0 0.890625 0 C 1.09375 0 1.453125 -0.234375 1.453125 -0.375 C 1.453125 -0.421875 1.390625 -0.421875 1.359375 -0.421875 C 1.203125 -0.4375 1.140625 -0.5625 1.140625 -0.734375 C 1.140625 -0.890625 1.140625 -0.984375 1.984375 -1.484375 L 3.21875 -2.15625 C 3.328125 -1.625 3.40625 -0.921875 3.421875 -0.78125 C 3.53125 -0.3125 3.640625 0 4.140625 0 C 4.90625 0 5.3125 -0.5 5.3125 -0.6875 Z M 5.3125 -0.6875 "/>
<path style="stroke:none;" d="M 11.5625 -4.28125 C 11.5625 -4.578125 11.28125 -4.578125 11.03125 -4.578125 L 6.46875 -4.578125 L 6.46875 -9.140625 C 6.46875 -9.375 6.46875 -9.671875 6.1875 -9.671875 C 5.875 -9.671875 5.875 -9.390625 5.875 -9.140625 L 5.875 -4.578125 L 1.328125 -4.578125 C 1.078125 -4.578125 0.796875 -4.578125 0.796875 -4.296875 C 0.796875 -3.984375 1.0625 -3.984375 1.328125 -3.984375 L 5.875 -3.984375 L 5.875 0.5625 C 5.875 0.8125 5.875 1.09375 6.171875 1.09375 C 6.46875 1.09375 6.46875 0.828125 6.46875 0.5625 L 6.46875 -3.984375 L 11.03125 -3.984375 C 11.265625 -3.984375 11.5625 -3.984375 11.5625 -4.28125 Z M 11.5625 -4.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.6875 6.703125 -2.6875 6.5625 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
<path style="stroke:none;" d="M 5.125 -0.984375 C 5.125 -1.015625 5.109375 -1.046875 5.0625 -1.046875 C 4.953125 -1.046875 4.5 -0.890625 4.421875 -0.609375 C 4.3125 -0.3125 4.234375 -0.3125 4.0625 -0.3125 C 3.6875 -0.3125 3.1875 -0.4375 2.84375 -0.53125 C 2.484375 -0.625 2.109375 -0.703125 1.75 -0.703125 C 1.71875 -0.703125 1.578125 -0.703125 1.484375 -0.6875 C 1.859375 -1.234375 1.953125 -1.578125 2.0625 -2.015625 C 2.203125 -2.53125 2.40625 -3.25 2.75 -3.828125 C 3.09375 -4.390625 3.265625 -4.421875 3.5 -4.421875 C 3.828125 -4.421875 4.046875 -4.1875 4.046875 -3.84375 C 4.046875 -3.734375 4.03125 -3.65625 4.03125 -3.625 C 4.03125 -3.59375 4.046875 -3.5625 4.109375 -3.5625 C 4.125 -3.5625 4.296875 -3.59375 4.546875 -3.765625 C 4.6875 -3.859375 4.765625 -3.9375 4.765625 -4.203125 C 4.765625 -4.46875 4.609375 -4.890625 4.0625 -4.890625 C 3.453125 -4.890625 2.78125 -4.484375 2.421875 -4.046875 C 1.953125 -3.515625 1.640625 -2.8125 1.359375 -1.671875 C 1.1875 -1.03125 0.9375 -0.5 0.609375 -0.234375 C 0.546875 -0.171875 0.359375 0 0.359375 0.09375 C 0.359375 0.140625 0.421875 0.140625 0.4375 0.140625 C 0.6875 0.140625 1 -0.15625 1.09375 -0.25 C 1.296875 -0.25 1.578125 -0.234375 2.203125 -0.078125 C 2.734375 0.0625 3.109375 0.140625 3.5 0.140625 C 4.375 0.140625 5.125 -0.65625 5.125 -0.984375 Z M 5.125 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.890625 1.671875 -3.890625 C 1.390625 -3.890625 1.328125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.359375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 5.3125 -0.6875 C 5.3125 -0.734375 5.265625 -0.734375 5.234375 -0.734375 C 5.125 -0.734375 4.84375 -0.625 4.703125 -0.421875 C 4.46875 -0.421875 4.203125 -0.421875 4.078125 -1.0625 L 3.875 -2.46875 C 3.875 -2.5 3.890625 -2.515625 3.90625 -2.53125 L 4.15625 -2.65625 C 6.21875 -3.78125 6.21875 -4.09375 6.21875 -4.34375 C 6.21875 -4.546875 6.109375 -4.75 5.828125 -4.75 C 5.609375 -4.75 5.265625 -4.5 5.265625 -4.390625 C 5.265625 -4.328125 5.296875 -4.328125 5.34375 -4.328125 C 5.515625 -4.296875 5.578125 -4.15625 5.578125 -4.015625 C 5.578125 -3.875 5.578125 -3.796875 4.9375 -3.40625 C 4.8125 -3.3125 4.671875 -3.21875 3.84375 -2.78125 C 3.75 -3.28125 3.703125 -3.84375 3.640625 -4.09375 C 3.515625 -4.65625 3.265625 -4.75 2.953125 -4.75 C 2.1875 -4.75 1.78125 -4.234375 1.78125 -4.078125 C 1.78125 -4.015625 1.828125 -4.015625 1.859375 -4.015625 C 1.984375 -4.015625 2.265625 -4.125 2.40625 -4.328125 C 2.625 -4.328125 2.875 -4.328125 3 -3.75 L 3.1875 -2.421875 C 2.796875 -2.21875 2.0625 -1.828125 1.640625 -1.578125 C 0.546875 -0.890625 0.484375 -0.625 0.484375 -0.40625 C 0.484375 -0.203125 0.59375 0 0.890625 0 C 1.09375 0 1.453125 -0.234375 1.453125 -0.375 C 1.453125 -0.421875 1.390625 -0.421875 1.359375 -0.421875 C 1.203125 -0.4375 1.140625 -0.5625 1.140625 -0.734375 C 1.140625 -0.890625 1.140625 -0.984375 1.984375 -1.484375 L 3.21875 -2.15625 C 3.328125 -1.625 3.40625 -0.921875 3.421875 -0.78125 C 3.53125 -0.3125 3.640625 0 4.140625 0 C 4.90625 0 5.3125 -0.5 5.3125 -0.6875 Z M 5.3125 -0.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 6.703125 -1 C 6.703125 -1.078125 6.625 -1.078125 6.59375 -1.078125 C 6.5 -1.078125 6.5 -1.046875 6.46875 -0.96875 C 6.3125 -0.40625 6 -0.125 5.734375 -0.125 C 5.578125 -0.125 5.5625 -0.21875 5.5625 -0.375 C 5.5625 -0.53125 5.59375 -0.625 5.71875 -0.9375 C 5.796875 -1.140625 6.078125 -1.890625 6.078125 -2.28125 C 6.078125 -2.390625 6.078125 -2.671875 5.828125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.1875 -3.0625 C 4.546875 -3.0625 4.171875 -2.65625 3.953125 -2.359375 C 3.890625 -2.953125 3.40625 -3.0625 3.046875 -3.0625 C 2.46875 -3.0625 2.078125 -2.71875 1.875 -2.4375 C 1.828125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.4375 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.59375 -2.125 C 0.703125 -2.53125 0.828125 -2.875 1.109375 -2.875 C 1.28125 -2.875 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.40625 1.265625 -2.140625 1.21875 -1.953125 L 1.078125 -1.328125 L 0.84375 -0.4375 C 0.828125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.328125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.453125 1.6875 -1.609375 C 1.765625 -1.890625 1.765625 -1.953125 1.96875 -2.234375 C 2.171875 -2.515625 2.5 -2.875 3.015625 -2.875 C 3.421875 -2.875 3.421875 -2.515625 3.421875 -2.390625 C 3.421875 -2.21875 3.40625 -2.125 3.3125 -1.734375 L 3.015625 -0.5625 C 2.984375 -0.421875 2.921875 -0.1875 2.921875 -0.15625 C 2.921875 0 3.046875 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.46875 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.75 -1.296875 3.796875 -1.453125 3.828125 -1.609375 C 3.90625 -1.90625 3.90625 -1.921875 4.046875 -2.140625 C 4.265625 -2.46875 4.609375 -2.875 5.15625 -2.875 C 5.546875 -2.875 5.5625 -2.546875 5.5625 -2.390625 C 5.5625 -1.96875 5.265625 -1.203125 5.15625 -0.90625 C 5.078125 -0.703125 5.046875 -0.640625 5.046875 -0.53125 C 5.046875 -0.15625 5.359375 0.0625 5.703125 0.0625 C 6.40625 0.0625 6.703125 -0.890625 6.703125 -1 Z M 6.703125 -1 "/>
</symbol>
<symbol overflow="visible" id="glyph6-2">
<path style="stroke:none;" d="M 3.96875 -1 C 3.96875 -1.078125 3.875 -1.078125 3.859375 -1.078125 C 3.765625 -1.078125 3.75 -1.0625 3.703125 -0.875 C 3.625 -0.53125 3.484375 -0.125 3.203125 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.59375 2.984375 -0.65625 3 -0.75 L 3.96875 -4.609375 C 3.984375 -4.625 4 -4.734375 4 -4.734375 C 4 -4.765625 3.96875 -4.828125 3.890625 -4.828125 C 3.75 -4.828125 3.171875 -4.765625 3 -4.75 C 2.9375 -4.75 2.84375 -4.734375 2.84375 -4.59375 C 2.84375 -4.5 2.9375 -4.5 3.03125 -4.5 C 3.359375 -4.5 3.359375 -4.453125 3.359375 -4.390625 C 3.359375 -4.34375 3.34375 -4.296875 3.328125 -4.234375 L 2.9375 -2.65625 C 2.78125 -2.890625 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.09375 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.1875 -0.140625 2.46875 -0.421875 C 2.59375 0 3 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.609375 -0.078125 3.734375 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -1 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.140625 -0.40625 C 2.078125 -0.34375 1.796875 -0.125 1.5 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.9375 1.34375 -2.21875 C 1.671875 -2.765625 2.015625 -2.875 2.21875 -2.875 C 2.703125 -2.875 2.84375 -2.34375 2.84375 -2.265625 C 2.84375 -2.234375 2.828125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.6875 6.703125 -2.6875 6.5625 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 4.953125 -1.421875 C 4.953125 -1.515625 4.859375 -1.515625 4.828125 -1.515625 C 4.734375 -1.515625 4.71875 -1.484375 4.6875 -1.34375 C 4.515625 -0.703125 4.34375 -0.109375 3.9375 -0.109375 C 3.671875 -0.109375 3.640625 -0.375 3.640625 -0.5625 C 3.640625 -0.8125 3.65625 -0.875 3.703125 -1.046875 L 5.125 -6.78125 C 5.125 -6.78125 5.125 -6.890625 5 -6.890625 C 4.84375 -6.890625 3.90625 -6.8125 3.734375 -6.78125 C 3.65625 -6.78125 3.59375 -6.734375 3.59375 -6.59375 C 3.59375 -6.484375 3.6875 -6.484375 3.828125 -6.484375 C 4.3125 -6.484375 4.328125 -6.40625 4.328125 -6.3125 L 4.296875 -6.109375 L 3.703125 -3.75 C 3.53125 -4.125 3.234375 -4.390625 2.796875 -4.390625 C 1.625 -4.390625 0.390625 -2.9375 0.390625 -1.484375 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.4375 0.109375 3.921875 0.109375 C 4.265625 0.109375 4.484375 -0.125 4.65625 -0.4375 C 4.8125 -0.796875 4.953125 -1.421875 4.953125 -1.421875 Z M 3.5625 -3.125 L 3.0625 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.21875 C 1.953125 -3.8125 2.40625 -4.171875 2.796875 -4.171875 C 3.453125 -4.171875 3.59375 -3.359375 3.59375 -3.296875 C 3.59375 -3.234375 3.5625 -3.1875 3.5625 -3.125 Z M 3.5625 -3.125 "/>
<path style="stroke:none;" d="M 6.703125 -1 C 6.703125 -1.078125 6.625 -1.078125 6.59375 -1.078125 C 6.5 -1.078125 6.5 -1.046875 6.46875 -0.96875 C 6.3125 -0.40625 6 -0.125 5.734375 -0.125 C 5.578125 -0.125 5.5625 -0.21875 5.5625 -0.375 C 5.5625 -0.53125 5.59375 -0.625 5.71875 -0.9375 C 5.796875 -1.140625 6.078125 -1.890625 6.078125 -2.28125 C 6.078125 -2.390625 6.078125 -2.671875 5.828125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.1875 -3.0625 C 4.546875 -3.0625 4.171875 -2.65625 3.953125 -2.359375 C 3.890625 -2.953125 3.40625 -3.0625 3.046875 -3.0625 C 2.46875 -3.0625 2.078125 -2.71875 1.875 -2.4375 C 1.828125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.4375 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.59375 -2.125 C 0.703125 -2.53125 0.828125 -2.875 1.109375 -2.875 C 1.28125 -2.875 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.40625 1.265625 -2.140625 1.21875 -1.953125 L 1.078125 -1.328125 L 0.84375 -0.4375 C 0.828125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.328125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.453125 1.6875 -1.609375 C 1.765625 -1.890625 1.765625 -1.953125 1.96875 -2.234375 C 2.171875 -2.515625 2.5 -2.875 3.015625 -2.875 C 3.421875 -2.875 3.421875 -2.515625 3.421875 -2.390625 C 3.421875 -2.21875 3.40625 -2.125 3.3125 -1.734375 L 3.015625 -0.5625 C 2.984375 -0.421875 2.921875 -0.1875 2.921875 -0.15625 C 2.921875 0 3.046875 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.46875 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.75 -1.296875 3.796875 -1.453125 3.828125 -1.609375 C 3.90625 -1.90625 3.90625 -1.921875 4.046875 -2.140625 C 4.265625 -2.46875 4.609375 -2.875 5.15625 -2.875 C 5.546875 -2.875 5.5625 -2.546875 5.5625 -2.390625 C 5.5625 -1.96875 5.265625 -1.203125 5.15625 -0.90625 C 5.078125 -0.703125 5.046875 -0.640625 5.046875 -0.53125 C 5.046875 -0.15625 5.359375 0.0625 5.703125 0.0625 C 6.40625 0.0625 6.703125 -0.890625 6.703125 -1 Z M 6.703125 -1 "/>
</symbol>
<symbol overflow="visible" id="glyph7-2">
<path style="stroke:none;" d="M 3.96875 -1 C 3.96875 -1.078125 3.875 -1.078125 3.859375 -1.078125 C 3.765625 -1.078125 3.75 -1.0625 3.703125 -0.875 C 3.625 -0.53125 3.484375 -0.125 3.203125 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.578125 3.03125 -0.828125 3.078125 -1.015625 L 3.21875 -1.640625 C 3.296875 -1.890625 3.296875 -1.9375 3.359375 -2.171875 C 3.40625 -2.34375 3.484375 -2.671875 3.484375 -2.71875 C 3.484375 -2.859375 3.359375 -2.9375 3.25 -2.9375 C 3.140625 -2.9375 2.96875 -2.84375 2.9375 -2.65625 C 2.78125 -2.890625 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.09375 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.1875 -0.140625 2.46875 -0.421875 C 2.59375 0 3 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.609375 -0.078125 3.734375 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -1 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.140625 -0.40625 C 2.078125 -0.34375 1.796875 -0.125 1.5 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.9375 1.34375 -2.21875 C 1.671875 -2.765625 2.015625 -2.875 2.21875 -2.875 C 2.703125 -2.875 2.84375 -2.34375 2.84375 -2.265625 C 2.84375 -2.234375 2.828125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-3">
<path style="stroke:none;" d="M 3.96875 -1 C 3.96875 -1.078125 3.875 -1.078125 3.859375 -1.078125 C 3.765625 -1.078125 3.75 -1.0625 3.703125 -0.875 C 3.625 -0.53125 3.484375 -0.125 3.203125 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.59375 2.984375 -0.65625 3 -0.75 L 3.96875 -4.609375 C 3.984375 -4.625 4 -4.734375 4 -4.734375 C 4 -4.765625 3.96875 -4.828125 3.890625 -4.828125 C 3.75 -4.828125 3.171875 -4.765625 3 -4.75 C 2.9375 -4.75 2.84375 -4.734375 2.84375 -4.59375 C 2.84375 -4.5 2.9375 -4.5 3.03125 -4.5 C 3.359375 -4.5 3.359375 -4.453125 3.359375 -4.390625 C 3.359375 -4.34375 3.34375 -4.296875 3.328125 -4.234375 L 2.9375 -2.65625 C 2.78125 -2.890625 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.09375 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.1875 -0.140625 2.46875 -0.421875 C 2.59375 0 3 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.609375 -0.078125 3.734375 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -1 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.140625 -0.40625 C 2.078125 -0.34375 1.796875 -0.125 1.5 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.9375 1.34375 -2.21875 C 1.671875 -2.765625 2.015625 -2.875 2.21875 -2.875 C 2.703125 -2.875 2.84375 -2.34375 2.84375 -2.265625 C 2.84375 -2.234375 2.828125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph8-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph8-1">
<path style="stroke:none;" d="M 7.46875 -1.546875 C 7.46875 -1.65625 7.328125 -1.65625 7.296875 -1.65625 C 6.984375 -1.65625 6.125 -1.265625 6.015625 -0.75 C 5.53125 -0.75 5.171875 -0.8125 4.375 -0.953125 C 4.015625 -1.03125 3.234375 -1.171875 2.65625 -1.171875 C 2.578125 -1.171875 2.46875 -1.171875 2.390625 -1.15625 C 2.71875 -1.71875 2.859375 -2.1875 3.015625 -2.84375 C 3.21875 -3.625 3.625 -5.03125 4.375 -5.875 C 4.5 -6.015625 4.546875 -6.0625 4.796875 -6.0625 C 5.25 -6.0625 5.4375 -5.703125 5.4375 -5.375 C 5.4375 -5.265625 5.40625 -5.15625 5.40625 -5.125 C 5.40625 -5.015625 5.53125 -4.984375 5.578125 -4.984375 C 5.71875 -4.984375 6.015625 -5.0625 6.40625 -5.328125 C 6.796875 -5.59375 6.84375 -5.78125 6.84375 -6.0625 C 6.84375 -6.5625 6.546875 -6.984375 5.890625 -6.984375 C 5.25 -6.984375 4.359375 -6.671875 3.53125 -5.96875 C 2.390625 -4.953125 1.890625 -3.3125 1.609375 -2.1875 C 1.453125 -1.59375 1.25 -0.78125 0.828125 -0.453125 C 0.71875 -0.375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.15625 0.5 0.171875 0.5625 0.171875 C 0.640625 0.171875 0.9375 0.15625 1.5 -0.25 C 1.875 -0.25 2.203125 -0.234375 3.109375 -0.0625 C 3.5625 0.03125 4.28125 0.171875 4.84375 0.171875 C 6.1875 0.171875 7.46875 -1 7.46875 -1.546875 Z M 7.46875 -1.546875 "/>
<path style="stroke:none;" d="M 4.953125 -1.421875 C 4.953125 -1.515625 4.859375 -1.515625 4.828125 -1.515625 C 4.734375 -1.515625 4.71875 -1.484375 4.6875 -1.34375 C 4.515625 -0.703125 4.34375 -0.109375 3.9375 -0.109375 C 3.671875 -0.109375 3.640625 -0.375 3.640625 -0.5625 C 3.640625 -0.8125 3.65625 -0.875 3.703125 -1.046875 L 5.125 -6.78125 C 5.125 -6.78125 5.125 -6.890625 5 -6.890625 C 4.84375 -6.890625 3.90625 -6.8125 3.734375 -6.78125 C 3.65625 -6.78125 3.59375 -6.734375 3.59375 -6.59375 C 3.59375 -6.484375 3.6875 -6.484375 3.828125 -6.484375 C 4.3125 -6.484375 4.328125 -6.40625 4.328125 -6.3125 L 4.296875 -6.109375 L 3.703125 -3.75 C 3.53125 -4.125 3.234375 -4.390625 2.796875 -4.390625 C 1.625 -4.390625 0.390625 -2.9375 0.390625 -1.484375 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.4375 0.109375 3.921875 0.109375 C 4.265625 0.109375 4.484375 -0.125 4.65625 -0.4375 C 4.8125 -0.796875 4.953125 -1.421875 4.953125 -1.421875 Z M 3.5625 -3.125 L 3.0625 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.21875 C 1.953125 -3.8125 2.40625 -4.171875 2.796875 -4.171875 C 3.453125 -4.171875 3.59375 -3.359375 3.59375 -3.296875 C 3.59375 -3.234375 3.5625 -3.1875 3.5625 -3.125 Z M 3.5625 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph9-1">
<path style="stroke:none;" d="M 3.46875 -0.765625 C 3.421875 -0.609375 3.359375 -0.34375 3.359375 -0.296875 C 3.359375 -0.046875 3.546875 0.0625 3.734375 0.0625 C 4.125 0.0625 4.21875 -0.296875 4.265625 -0.5 C 4.359375 -0.90625 4.359375 -0.921875 4.46875 -1.3125 C 4.5625 -1.703125 4.5625 -1.71875 4.59375 -1.796875 C 4.640625 -2 4.9375 -2.34375 5.125 -2.5 C 5.25 -2.625 5.546875 -2.828125 5.90625 -2.828125 C 6.25 -2.828125 6.3125 -2.640625 6.3125 -2.40625 C 6.3125 -2.015625 6 -1.25 5.875 -0.96875 C 5.796875 -0.75 5.765625 -0.6875 5.765625 -0.578125 C 5.765625 -0.171875 6.21875 0.0625 6.671875 0.0625 C 7.453125 0.0625 7.875 -0.828125 7.875 -1.03125 C 7.875 -1.15625 7.765625 -1.15625 7.65625 -1.15625 C 7.484375 -1.15625 7.46875 -1.140625 7.421875 -1 C 7.3125 -0.609375 7.015625 -0.265625 6.703125 -0.265625 C 6.671875 -0.265625 6.59375 -0.265625 6.59375 -0.4375 C 6.59375 -0.5625 6.625 -0.640625 6.75 -0.953125 C 6.8125 -1.109375 7.140625 -1.921875 7.140625 -2.296875 C 7.140625 -3.140625 6.1875 -3.140625 5.96875 -3.140625 C 5.46875 -3.140625 5 -2.90625 4.65625 -2.53125 C 4.484375 -3.140625 3.703125 -3.140625 3.5 -3.140625 C 2.9375 -3.140625 2.578125 -2.890625 2.25 -2.59375 C 2.09375 -3.140625 1.34375 -3.140625 1.28125 -3.140625 C 0.546875 -3.140625 0.3125 -2.109375 0.3125 -2.0625 C 0.3125 -1.9375 0.421875 -1.9375 0.53125 -1.9375 C 0.703125 -1.9375 0.71875 -1.9375 0.75 -2.09375 C 0.828125 -2.390625 0.96875 -2.828125 1.234375 -2.828125 C 1.40625 -2.828125 1.421875 -2.640625 1.421875 -2.546875 C 1.421875 -2.453125 1.40625 -2.375 1.34375 -2.15625 C 1.28125 -1.890625 1.28125 -1.875 1.21875 -1.609375 L 1.03125 -0.90625 C 0.984375 -0.703125 0.890625 -0.34375 0.890625 -0.296875 C 0.890625 -0.046875 1.078125 0.0625 1.265625 0.0625 C 1.65625 0.0625 1.75 -0.296875 1.796875 -0.5 C 1.890625 -0.90625 1.890625 -0.921875 2 -1.3125 C 2.09375 -1.71875 2.09375 -1.734375 2.125 -1.796875 C 2.171875 -1.984375 2.46875 -2.359375 2.65625 -2.515625 C 2.875 -2.6875 3.125 -2.828125 3.4375 -2.828125 C 3.78125 -2.828125 3.84375 -2.640625 3.84375 -2.40625 C 3.84375 -2.265625 3.8125 -2.15625 3.734375 -1.84375 Z M 3.46875 -0.765625 "/>
<path style="stroke:none;" d="M 7.46875 -1.546875 C 7.46875 -1.65625 7.328125 -1.65625 7.296875 -1.65625 C 6.984375 -1.65625 6.125 -1.265625 6.015625 -0.75 C 5.53125 -0.75 5.171875 -0.8125 4.375 -0.953125 C 4.015625 -1.03125 3.234375 -1.171875 2.65625 -1.171875 C 2.578125 -1.171875 2.46875 -1.171875 2.390625 -1.15625 C 2.71875 -1.71875 2.859375 -2.1875 3.015625 -2.84375 C 3.21875 -3.625 3.625 -5.03125 4.375 -5.875 C 4.5 -6.015625 4.546875 -6.0625 4.796875 -6.0625 C 5.25 -6.0625 5.4375 -5.703125 5.4375 -5.375 C 5.4375 -5.265625 5.40625 -5.15625 5.40625 -5.125 C 5.40625 -5.015625 5.53125 -4.984375 5.578125 -4.984375 C 5.71875 -4.984375 6.015625 -5.0625 6.40625 -5.328125 C 6.796875 -5.59375 6.84375 -5.78125 6.84375 -6.0625 C 6.84375 -6.5625 6.546875 -6.984375 5.890625 -6.984375 C 5.25 -6.984375 4.359375 -6.671875 3.53125 -5.96875 C 2.390625 -4.953125 1.890625 -3.3125 1.609375 -2.1875 C 1.453125 -1.59375 1.25 -0.78125 0.828125 -0.453125 C 0.71875 -0.375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.15625 0.5 0.171875 0.5625 0.171875 C 0.640625 0.171875 0.9375 0.15625 1.5 -0.25 C 1.875 -0.25 2.203125 -0.234375 3.109375 -0.0625 C 3.5625 0.03125 4.28125 0.171875 4.84375 0.171875 C 6.1875 0.171875 7.46875 -1 7.46875 -1.546875 Z M 7.46875 -1.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph10-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph10-1">
<path style="stroke:none;" d="M 3.46875 -0.765625 C 3.421875 -0.609375 3.359375 -0.34375 3.359375 -0.296875 C 3.359375 -0.046875 3.546875 0.0625 3.734375 0.0625 C 4.125 0.0625 4.21875 -0.296875 4.265625 -0.5 C 4.359375 -0.90625 4.359375 -0.921875 4.46875 -1.3125 C 4.5625 -1.703125 4.5625 -1.71875 4.59375 -1.796875 C 4.640625 -2 4.9375 -2.34375 5.125 -2.5 C 5.25 -2.625 5.546875 -2.828125 5.90625 -2.828125 C 6.25 -2.828125 6.3125 -2.640625 6.3125 -2.40625 C 6.3125 -2.015625 6 -1.25 5.875 -0.96875 C 5.796875 -0.75 5.765625 -0.6875 5.765625 -0.578125 C 5.765625 -0.171875 6.21875 0.0625 6.671875 0.0625 C 7.453125 0.0625 7.875 -0.828125 7.875 -1.03125 C 7.875 -1.15625 7.765625 -1.15625 7.65625 -1.15625 C 7.484375 -1.15625 7.46875 -1.140625 7.421875 -1 C 7.3125 -0.609375 7.015625 -0.265625 6.703125 -0.265625 C 6.671875 -0.265625 6.59375 -0.265625 6.59375 -0.4375 C 6.59375 -0.5625 6.625 -0.640625 6.75 -0.953125 C 6.8125 -1.109375 7.140625 -1.921875 7.140625 -2.296875 C 7.140625 -3.140625 6.1875 -3.140625 5.96875 -3.140625 C 5.46875 -3.140625 5 -2.90625 4.65625 -2.53125 C 4.484375 -3.140625 3.703125 -3.140625 3.5 -3.140625 C 2.9375 -3.140625 2.578125 -2.890625 2.25 -2.59375 C 2.09375 -3.140625 1.34375 -3.140625 1.28125 -3.140625 C 0.546875 -3.140625 0.3125 -2.109375 0.3125 -2.0625 C 0.3125 -1.9375 0.421875 -1.9375 0.53125 -1.9375 C 0.703125 -1.9375 0.71875 -1.9375 0.75 -2.09375 C 0.828125 -2.390625 0.96875 -2.828125 1.234375 -2.828125 C 1.40625 -2.828125 1.421875 -2.640625 1.421875 -2.546875 C 1.421875 -2.453125 1.40625 -2.375 1.34375 -2.15625 C 1.28125 -1.890625 1.28125 -1.875 1.21875 -1.609375 L 1.03125 -0.90625 C 0.984375 -0.703125 0.890625 -0.34375 0.890625 -0.296875 C 0.890625 -0.046875 1.078125 0.0625 1.265625 0.0625 C 1.65625 0.0625 1.75 -0.296875 1.796875 -0.5 C 1.890625 -0.90625 1.890625 -0.921875 2 -1.3125 C 2.09375 -1.71875 2.09375 -1.734375 2.125 -1.796875 C 2.171875 -1.984375 2.46875 -2.359375 2.65625 -2.515625 C 2.875 -2.6875 3.125 -2.828125 3.4375 -2.828125 C 3.78125 -2.828125 3.84375 -2.640625 3.84375 -2.40625 C 3.84375 -2.265625 3.8125 -2.15625 3.734375 -1.84375 Z M 3.46875 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph11-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph11-1">
<path style="stroke:none;" d="M 3.9375 -0.71875 C 3.9375 -0.78125 3.84375 -0.78125 3.828125 -0.78125 C 3.734375 -0.78125 3.734375 -0.765625 3.703125 -0.671875 C 3.609375 -0.375 3.390625 -0.109375 3.140625 -0.109375 C 3.03125 -0.109375 3 -0.1875 3 -0.296875 C 3 -0.40625 3.015625 -0.453125 3.0625 -0.5625 C 3.140625 -0.765625 3.375 -1.328125 3.375 -1.609375 C 3.375 -1.96875 3.109375 -2.203125 2.640625 -2.203125 C 2.1875 -2.203125 1.875 -1.921875 1.703125 -1.703125 C 1.671875 -2.109375 1.28125 -2.203125 1.09375 -2.203125 C 0.59375 -2.203125 0.453125 -1.421875 0.453125 -1.421875 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.65625 -1.390625 0.671875 -1.453125 C 0.75 -1.734375 0.859375 -2.03125 1.0625 -2.03125 C 1.234375 -2.03125 1.265625 -1.875 1.265625 -1.765625 C 1.265625 -1.6875 1.21875 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.96875 -0.484375 C 0.9375 -0.359375 0.890625 -0.140625 0.890625 -0.125 C 0.890625 -0.015625 0.96875 0.046875 1.0625 0.046875 C 1.140625 0.046875 1.25 0.015625 1.3125 -0.109375 L 1.40625 -0.5 C 1.5625 -1.171875 1.5625 -1.171875 1.578125 -1.203125 C 1.640625 -1.328125 2 -2.03125 2.609375 -2.03125 C 2.859375 -2.03125 2.953125 -1.890625 2.953125 -1.671875 C 2.953125 -1.390625 2.75 -0.875 2.640625 -0.59375 C 2.609375 -0.53125 2.578125 -0.46875 2.578125 -0.375 C 2.578125 -0.125 2.828125 0.046875 3.125 0.046875 C 3.65625 0.046875 3.9375 -0.59375 3.9375 -0.71875 Z M 3.9375 -0.71875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 367 36 L 388.519531 36 L 388.519531 69 L 367 69 Z M 367 36 "/>
<path d="M 392 48 L 413.636719 48 L 413.636719 80 L 392 80 Z M 392 48 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 367 71 L 388.519531 71 L 388.519531 103 L 367 103 Z M 367 71 "/>
<path d="M 346 85 L 379 85 L 379 116.355469 L 346 116.355469 Z M 346 85 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 0.222656 69 L 26 69 L 26 71 L 0.222656 71 Z M 0.222656 69 "/>
<path d="M 392 13 L 413.636719 13 L 413.636719 45 L 392 45 Z M 392 13 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 0.308594 46 L 26 46 L 26 48 L 0.308594 48 Z M 0.308594 46 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.519521 -28.34814 L 42.519934 -28.34814 L 42.519934 28.347441 L -42.519521 28.347441 Z M -42.519521 -28.34814 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.519044 -28.345103 L 42.52041 -28.345103 L 42.52041 28.346561 L -42.519044 28.346561 Z M -42.519044 -28.345103 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="304.560831" y="73.254208"/>
<use xlink:href="#glyph0-2" x="311.322657" y="73.254208"/>
<use xlink:href="#glyph0-3" x="314.082627" y="73.254208"/>
<use xlink:href="#glyph0-4" x="319.050175" y="73.254208"/>
<use xlink:href="#glyph0-1" x="329.677543" y="49.944737"/>
<use xlink:href="#glyph0-2" x="336.43937" y="49.944737"/>
<use xlink:href="#glyph0-3" x="339.19934" y="49.944737"/>
<use xlink:href="#glyph0-4" x="344.166888" y="49.944737"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="324.291932" y="73.254208"/>
<use xlink:href="#glyph0-5" x="349.408645" y="49.944737"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.007684 40.682275 L 17.008098 40.682275 L 17.008098 69.030066 L -17.007684 69.030066 Z M -17.007684 40.682275 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.007208 -69.027727 L 17.008574 -69.027727 L 17.008574 -40.679937 L -17.007208 -40.679937 Z M -17.007208 -69.027727 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="304.724378" y="17.791747"/>
<use xlink:href="#glyph1-1" x="329.84109" y="103.888403"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="314.372668" y="19.281622"/>
<use xlink:href="#glyph2-2" x="317.24281" y="19.281622"/>
<use xlink:href="#glyph2-2" x="322.369007" y="19.281622"/>
<use xlink:href="#glyph2-1" x="339.490378" y="105.379276"/>
<use xlink:href="#glyph2-2" x="342.36052" y="105.379276"/>
<use xlink:href="#glyph2-2" x="347.486717" y="105.379276"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.364778 -0.000349094 C -71.364778 5.503126 -75.826314 9.964661 -81.329789 9.964661 C -86.829346 9.964661 -91.290882 5.503126 -91.290882 -0.000349094 C -91.290882 -5.503824 -86.829346 -9.961442 -81.329789 -9.961442 C -75.826314 -9.961442 -71.364778 -5.503824 -71.364778 -0.000349094 Z M -71.364778 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(79.998779%,88.938904%,94.819641%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -100.20956 -14.173166 L -66.193778 -14.173166 L -66.193778 14.174624 L -100.20956 14.174624 Z M -100.20956 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="229.076795" y="73.986182"/>
<use xlink:href="#glyph3-1" x="248.703705" y="48.233474"/>
<use xlink:href="#glyph3-2" x="253.174499" y="48.233474"/>
<use xlink:href="#glyph3-3" x="258.162911" y="48.233474"/>
<use xlink:href="#glyph3-4" x="261.543824" y="48.233474"/>
<use xlink:href="#glyph3-4" x="264.924737" y="48.233474"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -154.151921 -14.172286 L -120.136139 -14.172286 L -120.136139 14.171588 L -154.151921 14.171588 Z M -154.151921 -14.172286 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -123.386826 -0.00122955 C -123.386826 5.502245 -127.844445 9.963781 -133.347919 9.963781 C -138.851394 9.963781 -143.31293 5.502245 -143.31293 -0.00122955 C -143.31293 -5.500787 -138.851394 -9.962323 -133.347919 -9.962323 C -127.844445 -9.962323 -123.386826 -5.500787 -123.386826 -0.00122955 Z M -123.386826 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="171.769441" y="72.494312"/>
<use xlink:href="#glyph4-1" x="202.318116" y="50.67671"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -200.502061 -14.173166 L -166.486279 -14.173166 L -166.486279 14.174624 L -200.502061 14.174624 Z M -200.502061 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="150.664111" y="49.185838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="181.418728" y="73.984188"/>
<use xlink:href="#glyph5-1" x="160.312401" y="50.675713"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -182.997179 -0.000349094 C -182.997179 5.503126 -187.458714 9.964661 -192.958272 9.964661 C -198.461747 9.964661 -202.923282 5.503126 -202.923282 -0.000349094 C -202.923282 -5.503824 -198.461747 -9.961442 -192.958272 -9.961442 C -187.458714 -9.961442 -182.997179 -5.503824 -182.997179 -0.000349094 Z M -182.997179 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -223.679327 -0.00122955 C -223.679327 5.502245 -228.140863 9.963781 -233.64042 9.963781 C -239.143895 9.963781 -243.60543 5.502245 -243.60543 -0.00122955 C -243.60543 -5.500787 -239.143895 -9.962323 -233.64042 -9.962323 C -228.140863 -9.962323 -223.679327 -5.500787 -223.679327 -0.00122955 Z M -223.679327 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="117.75497" y="73.986182"/>
<use xlink:href="#glyph4-1" x="102.30299" y="50.67671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="114.219757" y="87.548637"/>
<use xlink:href="#glyph6-1" x="110.469383" y="33.772507"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -287.17149 -14.172286 L -231.76854 -14.172286 L -231.76854 14.171588 L -287.17149 14.171588 Z M -287.17149 -14.172286 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -312.271558 -14.173166 L -272.450688 -14.173166 L -272.450688 14.174624 L -312.271558 14.174624 Z M -312.271558 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="42.389606" y="67.291715"/>
<use xlink:href="#glyph0-4" x="45.977169" y="67.291715"/>
<use xlink:href="#glyph3-5" x="39.486886" y="42.272975"/>
<use xlink:href="#glyph3-6" x="41.942841" y="42.272975"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="51.218926" y="67.291715"/>
<use xlink:href="#glyph3-7" x="45.494638" y="42.272975"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="56.184487" y="67.291715"/>
<use xlink:href="#glyph0-9" x="60.600638" y="67.291715"/>
<use xlink:href="#glyph0-10" x="64.492215" y="67.291715"/>
<use xlink:href="#glyph0-8" x="68.411611" y="67.291715"/>
<use xlink:href="#glyph3-8" x="48.879029" y="42.272975"/>
<use xlink:href="#glyph3-9" x="51.914698" y="42.272975"/>
<use xlink:href="#glyph3-10" x="54.605619" y="42.272975"/>
<use xlink:href="#glyph3-8" x="57.330816" y="42.272975"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="33.295781" y="79.214708"/>
<use xlink:href="#glyph0-12" x="41.023299" y="79.214708"/>
<use xlink:href="#glyph0-4" x="43.783269" y="79.214708"/>
<use xlink:href="#glyph0-8" x="49.303208" y="79.214708"/>
<use xlink:href="#glyph0-13" x="53.719358" y="79.214708"/>
<use xlink:href="#glyph0-3" x="61.998274" y="79.214708"/>
<use xlink:href="#glyph0-5" x="66.965823" y="79.214708"/>
<use xlink:href="#glyph0-12" x="70.829582" y="79.214708"/>
<use xlink:href="#glyph0-14" x="73.589551" y="79.214708"/>
<use xlink:href="#glyph0-10" x="78.005702" y="79.214708"/>
<use xlink:href="#glyph3-11" x="33.380789" y="54.194971"/>
<use xlink:href="#glyph3-12" x="38.424341" y="54.194971"/>
<use xlink:href="#glyph3-6" x="40.425269" y="54.194971"/>
<use xlink:href="#glyph3-8" x="44.150931" y="54.194971"/>
<use xlink:href="#glyph3-13" x="47.186599" y="54.194971"/>
<use xlink:href="#glyph3-14" x="52.636993" y="54.194971"/>
<use xlink:href="#glyph3-15" x="56.017906" y="54.194971"/>
<use xlink:href="#glyph3-12" x="58.708827" y="54.194971"/>
<use xlink:href="#glyph3-16" x="60.709756" y="54.194971"/>
<use xlink:href="#glyph3-10" x="63.745424" y="54.194971"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017401 17.305239 L 66.731305 17.305239 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 386.113281 52.574219 L 381.679688 50.894531 L 383.15625 52.574219 L 381.679688 54.25 Z M 386.113281 52.574219 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017877 -17.306817 L 66.731781 -17.306817 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 411.230469 63.78125 L 406.796875 62.101562 L 408.273438 63.78125 L 406.796875 65.460938 Z M 411.230469 63.78125 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054144 -0.00190134 L 1.608277 1.682436 L 3.088927 -0.00190134 L 1.608277 -1.682322 Z M 6.054144 -0.00190134 " transform="matrix(0.997239,0,0,-0.997239,380.07585,52.572323)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054621 0.000322692 L 1.608753 1.68466 L 3.089403 0.000322692 L 1.608753 -1.684015 Z M 6.054621 0.000322692 " transform="matrix(0.997239,0,0,-0.997239,405.192563,63.781572)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="370.996914" y="60.795698"/>
<use xlink:href="#glyph1-2" x="396.113626" y="58.4831"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="376.170591" y="62.285573"/>
<use xlink:href="#glyph7-1" x="401.288301" y="59.973972"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025292 17.305239 L 60.025292 54.854212 L 22.139451 54.854212 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054718 0.000817998 L 1.608851 1.681238 L 3.085584 0.000817998 L 1.608851 -1.683519 Z M 6.054718 0.000817998 " transform="matrix(-0.997239,0,0,0.997239,341.268472,15.128091)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 378.207031 52.574219 C 378.207031 51.476562 377.316406 50.585938 376.21875 50.585938 C 375.121094 50.585938 374.234375 51.476562 374.234375 52.574219 C 374.234375 53.667969 375.121094 54.558594 376.21875 54.558594 C 377.316406 54.558594 378.207031 53.667969 378.207031 52.574219 Z M 378.207031 52.574219 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.505151 54.854212 L -81.329789 54.854212 L -81.329789 14.594631 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052202 -0.00187855 L 1.610251 1.682459 L 3.086984 -0.00187855 L 1.610251 -1.682299 Z M 6.052202 -0.00187855 " transform="matrix(0,0.997239,0.997239,0,235.25578,52.444975)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.364778 -0.000349094 L -47.650874 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051538 -0.000349094 L 1.609588 1.683988 L 3.086321 -0.000349094 L 1.609588 -1.684687 Z M 6.051538 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,266.008137,69.831683)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="262.885202" y="66.023226"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017401 -17.305937 L 66.731305 -17.305937 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 386.113281 87.089844 L 381.679688 85.414062 L 383.15625 87.089844 L 381.679688 88.769531 Z M 386.113281 87.089844 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025768 -17.306817 L 60.025768 -54.855791 L 22.139927 -54.855791 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 360.347656 101.226562 L 364.78125 102.902344 L 363.304688 101.226562 L 364.78125 99.546875 Z M 360.347656 101.226562 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054144 0.00120315 L 1.608277 1.681624 L 3.088927 0.00120315 L 1.608277 -1.683134 Z M 6.054144 0.00120315 " transform="matrix(0.997239,0,0,-0.997239,380.07585,87.091044)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054242 0.000760649 L 1.608375 1.681181 L 3.089025 0.000760649 L 1.608375 -1.683577 Z M 6.054242 0.000760649 " transform="matrix(-0.997239,0,0,0.997239,366.385185,101.225804)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 403.324219 63.78125 C 403.324219 62.683594 402.433594 61.792969 401.335938 61.792969 C 400.238281 61.792969 399.351562 62.683594 399.351562 63.78125 C 399.351562 64.878906 400.238281 65.769531 401.335938 65.769531 C 402.433594 65.769531 403.324219 64.878906 403.324219 63.78125 Z M 403.324219 63.78125 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.504675 -54.855791 L -133.347919 -54.855791 L -133.347919 -14.596209 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05454 -0.000610716 L 1.608673 1.683727 L 3.089323 -0.000610716 L 1.608673 -1.684948 Z M 6.05454 -0.000610716 " transform="matrix(0,-0.997239,-0.997239,0,208.495485,63.908919)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -123.386826 -0.00122955 L -105.340913 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055306 -0.00122955 L 1.609439 1.683108 L 3.086172 -0.00122955 L 1.609439 -1.68165 Z M 6.055306 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,233.594223,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="230.473173" y="42.714752"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -65.696311 -0.00122955 L -47.650398 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052014 -0.00122955 L 1.610064 1.683108 L 3.086797 -0.00122955 L 1.610064 -1.68165 Z M 6.052014 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,291.12485,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="283.196219" y="41.223879"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="362.026746" y="81.791574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph8-1" x="367.197432" y="81.791574"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph9-1" x="375.028752" y="83.282447"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025292 -17.305937 L 60.025292 -45.653727 L -192.958272 -45.653727 L -192.958272 -14.595329 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051504 -0.00116801 L 1.609553 1.683169 L 3.086286 -0.00116801 L 1.609553 -1.681588 Z M 6.051504 -0.00116801 " transform="matrix(0,-0.997239,-0.997239,0,123.932429,87.218391)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 378.207031 87.089844 C 378.207031 85.992188 377.316406 85.105469 376.21875 85.105469 C 375.121094 85.105469 374.234375 85.992188 374.234375 87.089844 C 374.234375 88.1875 375.121094 89.078125 376.21875 89.078125 C 377.316406 89.078125 378.207031 88.1875 378.207031 87.089844 Z M 378.207031 87.089844 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -182.997179 -0.000349094 L -159.283275 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054585 -0.000349094 L 1.608717 1.683988 L 3.089367 -0.000349094 L 1.608717 -1.684687 Z M 6.054585 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,154.684786,69.831683)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="143.389007" y="64.533351"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="148.190714" y="66.023226"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="152.327263" y="66.023226"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -119.638672 -0.000349094 L -95.924768 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053901 -0.000349094 L 1.608034 1.683988 L 3.088684 -0.000349094 L 1.608034 -1.684687 Z M 6.053901 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,217.869062,69.831683)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="211.960179" y="66.023226"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="218.725451" y="62.418206"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -231.267156 -0.000349094 L -207.557169 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053031 -0.000349094 L 1.607163 1.683988 L 3.087813 -0.000349094 L 1.607163 -1.684687 Z M 6.053031 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,106.545711,69.831683)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="94.799518" y="64.533351"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="100.052975" y="66.023226"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="104.188527" y="66.023226"/>
<use xlink:href="#glyph7-2" x="289.962487" y="42.714752"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017877 17.308275 L 66.731781 17.308275 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 411.230469 29.261719 L 406.796875 27.585938 L 408.273438 29.261719 L 406.796875 30.941406 Z M 411.230469 29.261719 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -292.302843 -0.000349094 L -316.016748 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,316.359169,69.831683)"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053846 -0.000349094 L 1.607979 1.683988 L 3.088629 -0.000349094 L 1.607979 -1.684687 Z M 6.053846 -0.000349094 " transform="matrix(0.997239,0,0,-0.997239,22.033179,69.831683)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="9.363034" y="63.539103"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054621 0.00113527 L 1.608753 1.681556 L 3.089403 0.00113527 L 1.608753 -1.683202 Z M 6.054621 0.00113527 " transform="matrix(0.997239,0,0,-0.997239,405.192563,29.262851)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="14.616491" y="65.029976"/>
<use xlink:href="#glyph8-1" x="387.143459" y="39.971346"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph10-1" x="20.310728" y="66.023226"/>
<use xlink:href="#glyph9-1" x="392.314145" y="39.971346"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph10-1" x="400.145465" y="41.461222"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025768 17.308275 L 60.025768 45.652149 L -233.64042 45.652149 L -233.64042 14.597667 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053082 0.00105984 L 1.607215 1.68148 L 3.087865 0.00105984 L 1.607215 -1.683278 Z M 6.053082 0.00105984 " transform="matrix(0,0.997239,0.997239,0,108.479412,29.135503)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 403.324219 29.261719 C 403.324219 28.164062 402.433594 27.277344 401.335938 27.277344 C 400.238281 27.277344 399.351562 28.164062 399.351562 29.261719 C 399.351562 30.359375 400.238281 31.25 401.335938 31.25 C 402.433594 31.25 403.324219 30.359375 403.324219 29.261719 Z M 403.324219 29.261719 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -223.679327 -0.00122955 L -205.633414 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051848 -0.00122955 L 1.609898 1.683108 L 3.086631 -0.00122955 L 1.609898 -1.68165 Z M 6.051848 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,133.57814,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="122.283677" y="41.223879"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-3" x="127.085384" y="42.714752"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="131.220936" y="42.714752"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -165.988812 -0.00122955 L -147.946816 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052463 -0.00122955 L 1.610513 1.683108 L 3.087246 -0.00122955 L 1.610513 -1.68165 Z M 6.052463 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,191.108777,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="185.200503" y="42.714752"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="191.966772" y="39.108734"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -271.949304 -0.00122955 L -248.239317 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052913 -0.00122955 L 1.607045 1.683108 L 3.087695 -0.00122955 L 1.607045 -1.68165 Z M 6.052913 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,91.092704,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="79.347538" y="41.223879"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-3" x="84.599998" y="42.714752"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="88.736547" y="42.714752"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -317.402912 -0.00122955 L -341.116816 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,341.475882,46.522211)"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05162 -0.00122955 L 1.60967 1.683108 L 3.086403 -0.00122955 L 1.60967 -1.68165 Z M 6.05162 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,22.11743,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="9.448043" y="40.230628"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="14.7015" y="41.720504"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph11-1" x="20.395736" y="42.714752"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,285 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="408.666pt" height="116.677pt" viewBox="0 0 408.666 116.677" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 6.203125 -4.9375 C 6.203125 -5.90625 5.21875 -6.78125 3.859375 -6.78125 L 0.34375 -6.78125 L 0.34375 -6.484375 L 0.59375 -6.484375 C 1.34375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.34375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.28125 0 L 3.28125 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.25 -0.421875 2.25 -0.78125 L 2.25 -3.140625 L 3.9375 -3.140625 C 5.125 -3.140625 6.203125 -3.9375 6.203125 -4.9375 Z M 5.171875 -4.9375 C 5.171875 -4.46875 5.171875 -3.40625 3.59375 -3.40625 L 2.21875 -3.40625 L 2.21875 -6.078125 C 2.21875 -6.40625 2.25 -6.484375 2.71875 -6.484375 L 3.59375 -6.484375 C 5.171875 -6.484375 5.171875 -5.421875 5.171875 -4.9375 Z M 5.171875 -4.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.53125 0 L 2.53125 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.890625 L 0.328125 -6.78125 L 0.328125 -6.484375 C 1.03125 -6.484375 1.109375 -6.40625 1.109375 -5.921875 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.53125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.796875 -0.890625 L 4.796875 -1.4375 L 4.546875 -1.4375 L 4.546875 -0.890625 C 4.546875 -0.3125 4.296875 -0.25 4.1875 -0.25 C 3.859375 -0.25 3.828125 -0.703125 3.828125 -0.75 L 3.828125 -2.734375 C 3.828125 -3.15625 3.828125 -3.53125 3.46875 -3.90625 C 3.078125 -4.296875 2.578125 -4.453125 2.109375 -4.453125 C 1.296875 -4.453125 0.609375 -3.984375 0.609375 -3.328125 C 0.609375 -3.03125 0.8125 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.0625 1.515625 -3.3125 C 1.515625 -3.4375 1.46875 -3.765625 1.015625 -3.78125 C 1.28125 -4.125 1.765625 -4.234375 2.09375 -4.234375 C 2.578125 -4.234375 3.140625 -3.84375 3.140625 -2.96875 L 3.140625 -2.59375 C 2.640625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.890625 0.3125 -1.375 0.3125 -0.9375 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.015625 -0.28125 3.203125 -0.75 C 3.25 -0.359375 3.515625 0.0625 3.984375 0.0625 C 4.1875 0.0625 4.796875 -0.078125 4.796875 -0.890625 Z M 3.140625 -1.390625 C 3.140625 -0.453125 2.421875 -0.109375 1.984375 -0.109375 C 1.484375 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.328125 3.140625 -2.390625 Z M 3.140625 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 5.3125 0 L 5.3125 -0.3125 C 4.796875 -0.3125 4.546875 -0.3125 4.546875 -0.609375 L 4.546875 -2.5 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.1875 3.765625 -4.390625 3.1875 -4.390625 C 2.46875 -4.390625 2 -3.96875 1.71875 -3.34375 L 1.71875 -4.390625 L 0.3125 -4.28125 L 0.3125 -3.96875 C 1.015625 -3.96875 1.09375 -3.90625 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.4375 -0.03125 L 2.546875 0 L 2.546875 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.578125 C 1.78125 -3.625 2.484375 -4.171875 3.125 -4.171875 C 3.75 -4.171875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.296875 -1.234375 L 3.296875 -1.796875 L 3.046875 -1.796875 L 3.046875 -1.25 C 3.046875 -0.515625 2.75 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.96875 L 3.140625 -3.96875 L 3.140625 -4.28125 L 1.71875 -4.28125 L 1.71875 -6.109375 L 1.46875 -6.109375 C 1.453125 -5.296875 1.15625 -4.234375 0.1875 -4.1875 L 0.1875 -3.96875 L 1.03125 -3.96875 L 1.03125 -1.234375 C 1.03125 -0.015625 1.953125 0.109375 2.3125 0.109375 C 3.015625 0.109375 3.296875 -0.59375 3.296875 -1.234375 Z M 3.296875 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.859375 -4.171875 C 6.515625 -4.640625 8.34375 -5.921875 8.6875 -6.109375 C 8.90625 -6.21875 9.125 -6.328125 9.625 -6.34375 C 9.8125 -6.359375 9.96875 -6.359375 9.96875 -6.640625 C 9.96875 -6.734375 9.890625 -6.8125 9.78125 -6.8125 C 9.546875 -6.8125 9.25 -6.78125 9 -6.78125 C 8.59375 -6.78125 8.15625 -6.8125 7.75 -6.8125 C 7.671875 -6.8125 7.46875 -6.8125 7.46875 -6.53125 C 7.46875 -6.34375 7.65625 -6.34375 7.71875 -6.34375 C 7.796875 -6.34375 8 -6.34375 8.171875 -6.28125 L 3.640625 -3.15625 L 4.421875 -6.3125 C 4.640625 -6.34375 4.984375 -6.34375 5.09375 -6.34375 C 5.234375 -6.34375 5.421875 -6.34375 5.46875 -6.375 C 5.5625 -6.453125 5.578125 -6.625 5.578125 -6.640625 C 5.578125 -6.765625 5.46875 -6.8125 5.359375 -6.8125 C 5.109375 -6.8125 4.84375 -6.796875 4.59375 -6.796875 C 4.359375 -6.796875 4.109375 -6.78125 3.859375 -6.78125 C 3.59375 -6.78125 3.34375 -6.796875 3.09375 -6.796875 C 2.828125 -6.796875 2.5625 -6.8125 2.3125 -6.8125 C 2.21875 -6.8125 2.015625 -6.8125 2.015625 -6.53125 C 2.015625 -6.34375 2.140625 -6.34375 2.4375 -6.34375 C 2.640625 -6.34375 2.828125 -6.34375 3.046875 -6.328125 L 1.625 -0.671875 C 1.578125 -0.5 1.5625 -0.5 1.390625 -0.484375 C 1.21875 -0.46875 1.03125 -0.46875 0.859375 -0.46875 C 0.609375 -0.46875 0.59375 -0.46875 0.546875 -0.453125 C 0.421875 -0.375 0.421875 -0.21875 0.421875 -0.171875 C 0.421875 -0.15625 0.4375 0 0.640625 0 C 0.890625 0 1.15625 -0.015625 1.40625 -0.015625 C 1.65625 -0.015625 1.90625 -0.03125 2.15625 -0.03125 C 2.421875 -0.03125 2.671875 -0.015625 2.921875 -0.015625 C 3.1875 -0.015625 3.453125 0 3.703125 0 C 3.796875 0 3.859375 0 3.921875 -0.0625 C 3.96875 -0.125 3.984375 -0.265625 3.984375 -0.28125 C 3.984375 -0.46875 3.84375 -0.46875 3.578125 -0.46875 C 3.375 -0.46875 3.1875 -0.484375 2.96875 -0.484375 L 3.484375 -2.546875 L 4.71875 -3.40625 L 6.203125 -0.53125 C 6 -0.46875 5.703125 -0.46875 5.671875 -0.46875 C 5.53125 -0.46875 5.46875 -0.46875 5.421875 -0.390625 C 5.375 -0.34375 5.359375 -0.203125 5.359375 -0.171875 C 5.359375 -0.171875 5.359375 0 5.5625 0 C 5.890625 0 6.703125 -0.03125 7.03125 -0.03125 C 7.25 -0.03125 7.46875 -0.015625 7.671875 -0.015625 C 7.875 -0.015625 8.078125 0 8.265625 0 C 8.34375 0 8.53125 0 8.53125 -0.28125 C 8.53125 -0.46875 8.375 -0.46875 8.21875 -0.46875 C 7.765625 -0.46875 7.734375 -0.5 7.65625 -0.671875 Z M 5.859375 -4.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 5.984375 -6.15625 C 6.015625 -6.3125 6.03125 -6.3125 6.109375 -6.328125 C 6.21875 -6.34375 6.359375 -6.34375 6.484375 -6.34375 C 6.734375 -6.34375 6.890625 -6.34375 6.890625 -6.640625 C 6.890625 -6.65625 6.890625 -6.8125 6.6875 -6.8125 C 6.484375 -6.8125 6.265625 -6.796875 6.0625 -6.796875 C 5.84375 -6.796875 5.609375 -6.78125 5.375 -6.78125 C 4.984375 -6.78125 4.03125 -6.8125 3.640625 -6.8125 C 3.53125 -6.8125 3.34375 -6.8125 3.34375 -6.53125 C 3.34375 -6.34375 3.515625 -6.34375 3.6875 -6.34375 L 4.03125 -6.34375 C 4.421875 -6.34375 4.4375 -6.34375 4.6875 -6.3125 L 3.484375 -1.5 C 3.234375 -0.484375 2.609375 -0.1875 2.140625 -0.1875 C 2.0625 -0.1875 1.625 -0.203125 1.328125 -0.421875 C 1.875 -0.5625 2.046875 -1.03125 2.046875 -1.296875 C 2.046875 -1.625 1.78125 -1.859375 1.4375 -1.859375 C 1.046875 -1.859375 0.5625 -1.546875 0.5625 -0.921875 C 0.5625 -0.234375 1.25 0.171875 2.203125 0.171875 C 3.3125 0.171875 4.515625 -0.28125 4.796875 -1.453125 Z M 5.984375 -6.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.46875 -3.453125 L 5.3125 -3.453125 C 5.515625 -3.453125 5.640625 -3.453125 5.796875 -3.609375 C 6 -3.78125 6 -4 6 -4.03125 C 6 -4.40625 5.640625 -4.40625 5.46875 -4.40625 L 2.203125 -4.40625 C 2 -4.40625 1.5625 -4.40625 1.046875 -3.9375 C 0.703125 -3.625 0.3125 -3.109375 0.3125 -3.015625 C 0.3125 -2.875 0.421875 -2.875 0.53125 -2.875 C 0.6875 -2.875 0.703125 -2.875 0.78125 -2.984375 C 1.15625 -3.453125 1.8125 -3.453125 2 -3.453125 L 2.90625 -3.453125 L 2.546875 -2.40625 C 2.453125 -2.15625 2.234375 -1.515625 2.15625 -1.265625 C 2.046875 -0.953125 1.859375 -0.421875 1.859375 -0.3125 C 1.859375 -0.046875 2.078125 0.125 2.328125 0.125 C 2.390625 0.125 2.90625 0.125 3 -0.53125 Z M 3.46875 -3.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 5.59375 -3.15625 C 5.671875 -3.421875 5.78125 -3.90625 5.78125 -3.96875 C 5.78125 -4.1875 5.625 -4.40625 5.3125 -4.40625 C 5.15625 -4.40625 4.796875 -4.328125 4.65625 -3.890625 C 4.625 -3.75 4.171875 -1.953125 4.09375 -1.625 C 4.03125 -1.390625 3.96875 -1.109375 3.9375 -0.921875 C 3.765625 -0.6875 3.375 -0.28125 2.875 -0.28125 C 2.28125 -0.28125 2.28125 -0.78125 2.28125 -1 C 2.28125 -1.609375 2.578125 -2.390625 2.859375 -3.09375 C 2.96875 -3.359375 2.984375 -3.421875 2.984375 -3.59375 C 2.984375 -4.171875 2.421875 -4.484375 1.875 -4.484375 C 0.8125 -4.484375 0.3125 -3.140625 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.75 -2.796875 0.78125 -2.9375 C 1.109375 -4.03125 1.65625 -4.140625 1.8125 -4.140625 C 1.875 -4.140625 1.984375 -4.140625 1.984375 -3.921875 C 1.984375 -3.703125 1.859375 -3.421875 1.8125 -3.296875 C 1.40625 -2.25 1.21875 -1.703125 1.21875 -1.21875 C 1.21875 -0.078125 2.203125 0.078125 2.796875 0.078125 C 3.078125 0.078125 3.515625 0.046875 4.046875 -0.46875 C 4.375 0.015625 4.953125 0.078125 5.1875 0.078125 C 5.5625 0.078125 5.84375 -0.125 6.046875 -0.484375 C 6.296875 -0.890625 6.421875 -1.421875 6.421875 -1.46875 C 6.421875 -1.609375 6.28125 -1.609375 6.1875 -1.609375 C 6.078125 -1.609375 6.046875 -1.609375 6 -1.5625 C 5.96875 -1.546875 5.96875 -1.515625 5.90625 -1.265625 C 5.71875 -0.5 5.5 -0.28125 5.234375 -0.28125 C 5.09375 -0.28125 5.015625 -0.375 5.015625 -0.640625 C 5.015625 -0.8125 5.046875 -0.96875 5.140625 -1.375 C 5.21875 -1.65625 5.3125 -2.046875 5.359375 -2.265625 Z M 5.59375 -3.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.5625 -2.109375 C 3.71875 -2.109375 3.953125 -2.109375 3.953125 -2.359375 C 3.953125 -2.578125 3.765625 -2.578125 3.578125 -2.578125 L 1.875 -2.578125 C 2.03125 -3.203125 2.40625 -3.9375 3.59375 -3.9375 L 4 -3.9375 C 4.140625 -3.9375 4.40625 -3.9375 4.40625 -4.203125 C 4.40625 -4.28125 4.359375 -4.40625 4.21875 -4.40625 L 3.796875 -4.40625 C 3.265625 -4.40625 2.203125 -4.40625 1.34375 -3.640625 C 0.875 -3.21875 0.5 -2.5625 0.5 -1.78125 C 0.5 -0.421875 1.640625 0.078125 2.796875 0.078125 C 2.9375 0.078125 3.265625 0.078125 3.734375 -0.09375 C 3.78125 -0.09375 4.328125 -0.3125 4.328125 -0.46875 C 4.328125 -0.578125 4.265625 -0.765625 4.140625 -0.765625 C 4.109375 -0.765625 4.078125 -0.765625 3.984375 -0.703125 C 3.390625 -0.34375 3.078125 -0.28125 2.828125 -0.28125 C 2.578125 -0.28125 1.65625 -0.328125 1.65625 -1.359375 C 1.65625 -1.625 1.703125 -1.875 1.765625 -2.109375 Z M 3.5625 -2.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 4.40625 -4 C 3.859375 -3.890625 3.8125 -3.40625 3.8125 -3.296875 C 3.8125 -3.078125 3.96875 -2.84375 4.296875 -2.84375 C 4.640625 -2.84375 5.015625 -3.125 5.015625 -3.625 C 5.015625 -4.078125 4.65625 -4.484375 4.046875 -4.484375 C 3.484375 -4.484375 3.015625 -4.21875 2.71875 -3.890625 C 2.484375 -4.359375 1.921875 -4.484375 1.5625 -4.484375 C 1.1875 -4.484375 0.921875 -4.28125 0.703125 -3.921875 C 0.453125 -3.53125 0.3125 -3 0.3125 -2.9375 C 0.3125 -2.796875 0.46875 -2.796875 0.5625 -2.796875 C 0.671875 -2.796875 0.703125 -2.796875 0.75 -2.859375 C 0.78125 -2.875 0.78125 -2.890625 0.828125 -3.140625 C 1.03125 -3.890625 1.25 -4.140625 1.515625 -4.140625 C 1.65625 -4.140625 1.734375 -4.03125 1.734375 -3.78125 C 1.734375 -3.59375 1.703125 -3.484375 1.59375 -3.015625 C 1.546875 -2.859375 1.390625 -2.203125 1.328125 -1.953125 C 1.28125 -1.765625 1.171875 -1.3125 1.125 -1.140625 C 1.0625 -0.875 0.9375 -0.421875 0.9375 -0.359375 C 0.9375 -0.15625 1.109375 0.078125 1.40625 0.078125 C 1.609375 0.078125 1.953125 -0.046875 2.0625 -0.453125 C 2.078125 -0.484375 2.75 -3.1875 2.765625 -3.234375 C 2.796875 -3.390625 2.796875 -3.40625 2.9375 -3.5625 C 3.15625 -3.84375 3.53125 -4.140625 4.03125 -4.140625 C 4.265625 -4.140625 4.375 -4.03125 4.40625 -4 Z M 4.40625 -4 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 2.515625 0 L 2.515625 -0.25 L 2.34375 -0.25 C 1.765625 -0.25 1.765625 -0.328125 1.765625 -0.5625 L 1.765625 -4.171875 C 1.765625 -4.421875 1.765625 -4.5 2.34375 -4.5 L 2.515625 -4.5 L 2.515625 -4.75 L 1.4375 -4.71875 L 0.359375 -4.75 L 0.359375 -4.5 L 0.53125 -4.5 C 1.109375 -4.5 1.109375 -4.421875 1.109375 -4.171875 L 1.109375 -0.5625 C 1.109375 -0.328125 1.109375 -0.25 0.53125 -0.25 L 0.359375 -0.25 L 0.359375 0 L 1.4375 -0.03125 Z M 2.515625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 4.734375 -3.125 L 4.53125 -4.71875 L 0.390625 -4.71875 L 0.390625 -4.46875 L 0.5625 -4.46875 C 1.09375 -4.46875 1.109375 -4.40625 1.109375 -4.15625 L 1.109375 -0.5625 C 1.109375 -0.328125 1.09375 -0.25 0.5625 -0.25 L 0.390625 -0.25 L 0.390625 0 L 1.453125 -0.03125 L 2.65625 0 L 2.65625 -0.25 L 2.421875 -0.25 C 1.765625 -0.25 1.765625 -0.34375 1.765625 -0.5625 L 1.765625 -2.234375 L 2.4375 -2.234375 C 3.140625 -2.234375 3.234375 -2.03125 3.234375 -1.421875 L 3.46875 -1.421875 L 3.46875 -3.296875 L 3.234375 -3.296875 C 3.234375 -2.703125 3.140625 -2.484375 2.4375 -2.484375 L 1.765625 -2.484375 L 1.765625 -4.203125 C 1.765625 -4.421875 1.765625 -4.46875 2.09375 -4.46875 L 3.078125 -4.46875 C 4.1875 -4.46875 4.375 -4.09375 4.5 -3.125 Z M 4.734375 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 3.984375 -2.4375 C 3.984375 -2.96875 3.328125 -3.390625 2.53125 -3.390625 L 0.421875 -3.390625 L 0.421875 -3.171875 L 0.578125 -3.171875 C 0.96875 -3.171875 0.96875 -3.125 0.96875 -2.96875 L 0.96875 -0.421875 C 0.96875 -0.265625 0.96875 -0.21875 0.578125 -0.21875 L 0.421875 -0.21875 L 0.421875 0 L 1.234375 -0.015625 L 2.046875 0 L 2.046875 -0.21875 L 1.90625 -0.21875 C 1.5 -0.21875 1.5 -0.265625 1.5 -0.421875 L 1.5 -1.515625 L 2.59375 -1.515625 C 3.25 -1.515625 3.984375 -1.890625 3.984375 -2.4375 Z M 3.40625 -2.4375 C 3.40625 -2.03125 3.203125 -1.703125 2.421875 -1.703125 L 1.484375 -1.703125 L 1.484375 -2.984375 C 1.484375 -3.140625 1.484375 -3.171875 1.71875 -3.171875 L 2.421875 -3.171875 C 3.234375 -3.171875 3.40625 -2.828125 3.40625 -2.4375 Z M 3.40625 -2.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 4.5 -1.671875 C 4.5 -2.59375 3.671875 -3.390625 2.609375 -3.390625 L 0.421875 -3.390625 L 0.421875 -3.171875 C 0.546875 -3.171875 0.6875 -3.171875 0.796875 -3.171875 C 0.96875 -3.15625 0.96875 -3.078125 0.96875 -2.96875 L 0.96875 -0.4375 C 0.96875 -0.3125 0.96875 -0.25 0.796875 -0.234375 C 0.6875 -0.21875 0.53125 -0.21875 0.421875 -0.21875 L 0.421875 0 L 2.609375 0 C 3.65625 0 4.5 -0.75 4.5 -1.671875 Z M 3.9375 -1.671875 C 3.9375 -1.234375 3.84375 -0.859375 3.5625 -0.59375 C 3.390625 -0.4375 3.046875 -0.21875 2.46875 -0.21875 L 1.734375 -0.21875 C 1.484375 -0.21875 1.484375 -0.25 1.484375 -0.421875 L 1.484375 -2.96875 C 1.484375 -3.140625 1.484375 -3.171875 1.734375 -3.171875 L 2.46875 -3.171875 C 3.0625 -3.171875 3.40625 -2.921875 3.546875 -2.796875 C 3.71875 -2.609375 3.9375 -2.328125 3.9375 -1.671875 Z M 3.9375 -1.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 2.921875 -0.953125 L 2.71875 -0.953125 C 2.703125 -0.859375 2.65625 -0.5625 2.578125 -0.5 C 2.53125 -0.484375 2.109375 -0.484375 2.046875 -0.484375 L 1.0625 -0.484375 C 1.390625 -0.71875 1.765625 -1 2.0625 -1.203125 C 2.515625 -1.5 2.921875 -1.796875 2.921875 -2.328125 C 2.921875 -2.953125 2.328125 -3.3125 1.609375 -3.3125 C 0.9375 -3.3125 0.453125 -2.921875 0.453125 -2.4375 C 0.453125 -2.171875 0.671875 -2.125 0.734375 -2.125 C 0.875 -2.125 1.03125 -2.21875 1.03125 -2.421875 C 1.03125 -2.609375 0.90625 -2.703125 0.75 -2.71875 C 0.890625 -2.9375 1.171875 -3.09375 1.515625 -3.09375 C 2 -3.09375 2.390625 -2.796875 2.390625 -2.3125 C 2.390625 -1.890625 2.109375 -1.578125 1.71875 -1.25 L 0.515625 -0.234375 C 0.46875 -0.1875 0.453125 -0.1875 0.453125 -0.15625 L 0.453125 0 L 2.765625 0 Z M 2.921875 -0.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 2.984375 -1.59375 C 2.984375 -1.953125 2.984375 -3.3125 1.6875 -3.3125 C 0.390625 -3.3125 0.390625 -1.953125 0.390625 -1.59375 C 0.390625 -1.234375 0.390625 0.109375 1.6875 0.109375 C 2.984375 0.109375 2.984375 -1.234375 2.984375 -1.59375 Z M 2.484375 -1.65625 C 2.484375 -1.3125 2.484375 -0.90625 2.421875 -0.609375 C 2.28125 -0.125 1.890625 -0.046875 1.6875 -0.046875 C 1.5 -0.046875 1.09375 -0.125 0.96875 -0.625 C 0.890625 -0.890625 0.890625 -1.234375 0.890625 -1.65625 C 0.890625 -2.015625 0.890625 -2.359375 0.96875 -2.640625 C 1.09375 -3.0625 1.46875 -3.140625 1.6875 -3.140625 C 2.0625 -3.140625 2.328125 -2.953125 2.421875 -2.609375 C 2.484375 -2.359375 2.484375 -1.9375 2.484375 -1.65625 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 11.5625 -4.28125 C 11.5625 -4.578125 11.28125 -4.578125 11.03125 -4.578125 L 6.46875 -4.578125 L 6.46875 -9.140625 C 6.46875 -9.375 6.46875 -9.671875 6.1875 -9.671875 C 5.875 -9.671875 5.875 -9.390625 5.875 -9.140625 L 5.875 -4.578125 L 1.328125 -4.578125 C 1.078125 -4.578125 0.796875 -4.578125 0.796875 -4.296875 C 0.796875 -3.984375 1.0625 -3.984375 1.328125 -3.984375 L 5.875 -3.984375 L 5.875 0.5625 C 5.875 0.8125 5.875 1.09375 6.171875 1.09375 C 6.46875 1.09375 6.46875 0.828125 6.46875 0.5625 L 6.46875 -3.984375 L 11.03125 -3.984375 C 11.265625 -3.984375 11.5625 -3.984375 11.5625 -4.28125 Z M 11.5625 -4.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 5.125 -0.984375 C 5.125 -1.015625 5.109375 -1.046875 5.0625 -1.046875 C 4.953125 -1.046875 4.5 -0.890625 4.421875 -0.609375 C 4.3125 -0.3125 4.234375 -0.3125 4.0625 -0.3125 C 3.6875 -0.3125 3.1875 -0.4375 2.84375 -0.53125 C 2.484375 -0.625 2.109375 -0.703125 1.75 -0.703125 C 1.71875 -0.703125 1.578125 -0.703125 1.484375 -0.6875 C 1.859375 -1.234375 1.953125 -1.578125 2.0625 -2.015625 C 2.203125 -2.53125 2.40625 -3.25 2.75 -3.828125 C 3.09375 -4.390625 3.265625 -4.421875 3.5 -4.421875 C 3.828125 -4.421875 4.046875 -4.1875 4.046875 -3.84375 C 4.046875 -3.734375 4.03125 -3.65625 4.03125 -3.625 C 4.03125 -3.59375 4.046875 -3.5625 4.109375 -3.5625 C 4.125 -3.5625 4.296875 -3.59375 4.546875 -3.765625 C 4.6875 -3.859375 4.765625 -3.9375 4.765625 -4.203125 C 4.765625 -4.46875 4.609375 -4.890625 4.0625 -4.890625 C 3.453125 -4.890625 2.78125 -4.484375 2.421875 -4.046875 C 1.953125 -3.515625 1.640625 -2.8125 1.359375 -1.671875 C 1.1875 -1.03125 0.9375 -0.5 0.609375 -0.234375 C 0.546875 -0.171875 0.359375 0 0.359375 0.09375 C 0.359375 0.140625 0.421875 0.140625 0.4375 0.140625 C 0.6875 0.140625 1 -0.15625 1.09375 -0.25 C 1.296875 -0.25 1.578125 -0.234375 2.203125 -0.078125 C 2.734375 0.0625 3.109375 0.140625 3.5 0.140625 C 4.375 0.140625 5.125 -0.65625 5.125 -0.984375 Z M 5.125 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 2.078125 -3.5 C 2.078125 -3.71875 1.890625 -3.890625 1.671875 -3.890625 C 1.390625 -3.890625 1.328125 -3.65625 1.296875 -3.5625 L 0.375 -0.5625 L 0.328125 -0.4375 C 0.328125 -0.359375 0.546875 -0.28125 0.609375 -0.28125 C 0.65625 -0.28125 0.6875 -0.3125 0.703125 -0.390625 L 2.015625 -3.28125 C 2.046875 -3.359375 2.078125 -3.40625 2.078125 -3.5 Z M 2.078125 -3.5 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 5.3125 -0.6875 C 5.3125 -0.734375 5.265625 -0.734375 5.234375 -0.734375 C 5.125 -0.734375 4.84375 -0.625 4.703125 -0.421875 C 4.46875 -0.421875 4.203125 -0.421875 4.078125 -1.0625 L 3.875 -2.46875 C 3.875 -2.5 3.890625 -2.515625 3.90625 -2.53125 L 4.15625 -2.65625 C 6.21875 -3.78125 6.21875 -4.09375 6.21875 -4.34375 C 6.21875 -4.546875 6.109375 -4.75 5.828125 -4.75 C 5.609375 -4.75 5.265625 -4.5 5.265625 -4.390625 C 5.265625 -4.328125 5.296875 -4.328125 5.34375 -4.328125 C 5.515625 -4.296875 5.578125 -4.15625 5.578125 -4.015625 C 5.578125 -3.875 5.578125 -3.796875 4.9375 -3.40625 C 4.8125 -3.3125 4.671875 -3.21875 3.84375 -2.78125 C 3.75 -3.28125 3.703125 -3.84375 3.640625 -4.09375 C 3.515625 -4.65625 3.265625 -4.75 2.953125 -4.75 C 2.1875 -4.75 1.78125 -4.234375 1.78125 -4.078125 C 1.78125 -4.015625 1.828125 -4.015625 1.859375 -4.015625 C 1.984375 -4.015625 2.265625 -4.125 2.40625 -4.328125 C 2.625 -4.328125 2.875 -4.328125 3 -3.75 L 3.1875 -2.421875 C 2.796875 -2.21875 2.0625 -1.828125 1.640625 -1.578125 C 0.546875 -0.890625 0.484375 -0.625 0.484375 -0.40625 C 0.484375 -0.203125 0.59375 0 0.890625 0 C 1.09375 0 1.453125 -0.234375 1.453125 -0.375 C 1.453125 -0.421875 1.390625 -0.421875 1.359375 -0.421875 C 1.203125 -0.4375 1.140625 -0.5625 1.140625 -0.734375 C 1.140625 -0.890625 1.140625 -0.984375 1.984375 -1.484375 L 3.21875 -2.15625 C 3.328125 -1.625 3.40625 -0.921875 3.421875 -0.78125 C 3.53125 -0.3125 3.640625 0 4.140625 0 C 4.90625 0 5.3125 -0.5 5.3125 -0.6875 Z M 5.3125 -0.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.6875 6.703125 -2.6875 6.5625 -2.6875 L 1.15625 -2.6875 C 1.015625 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 6.703125 -1 C 6.703125 -1.078125 6.625 -1.078125 6.59375 -1.078125 C 6.5 -1.078125 6.5 -1.046875 6.46875 -0.96875 C 6.3125 -0.40625 6 -0.125 5.734375 -0.125 C 5.578125 -0.125 5.5625 -0.21875 5.5625 -0.375 C 5.5625 -0.53125 5.59375 -0.625 5.71875 -0.9375 C 5.796875 -1.140625 6.078125 -1.890625 6.078125 -2.28125 C 6.078125 -2.390625 6.078125 -2.671875 5.828125 -2.875 C 5.703125 -2.96875 5.5 -3.0625 5.1875 -3.0625 C 4.546875 -3.0625 4.171875 -2.65625 3.953125 -2.359375 C 3.890625 -2.953125 3.40625 -3.0625 3.046875 -3.0625 C 2.46875 -3.0625 2.078125 -2.71875 1.875 -2.4375 C 1.828125 -2.90625 1.40625 -3.0625 1.125 -3.0625 C 0.828125 -3.0625 0.671875 -2.84375 0.578125 -2.6875 C 0.421875 -2.4375 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.59375 -2.125 C 0.703125 -2.53125 0.828125 -2.875 1.109375 -2.875 C 1.28125 -2.875 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.40625 1.265625 -2.140625 1.21875 -1.953125 L 1.078125 -1.328125 L 0.84375 -0.4375 C 0.828125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.140625 0.0625 1.25 -0.015625 1.28125 -0.078125 C 1.328125 -0.140625 1.375 -0.375 1.40625 -0.515625 L 1.5625 -1.140625 C 1.609375 -1.296875 1.640625 -1.453125 1.6875 -1.609375 C 1.765625 -1.890625 1.765625 -1.953125 1.96875 -2.234375 C 2.171875 -2.515625 2.5 -2.875 3.015625 -2.875 C 3.421875 -2.875 3.421875 -2.515625 3.421875 -2.390625 C 3.421875 -2.21875 3.40625 -2.125 3.3125 -1.734375 L 3.015625 -0.5625 C 2.984375 -0.421875 2.921875 -0.1875 2.921875 -0.15625 C 2.921875 0 3.046875 0.0625 3.15625 0.0625 C 3.28125 0.0625 3.390625 -0.015625 3.421875 -0.078125 C 3.46875 -0.140625 3.515625 -0.375 3.546875 -0.515625 L 3.703125 -1.140625 C 3.75 -1.296875 3.796875 -1.453125 3.828125 -1.609375 C 3.90625 -1.90625 3.90625 -1.921875 4.046875 -2.140625 C 4.265625 -2.46875 4.609375 -2.875 5.15625 -2.875 C 5.546875 -2.875 5.5625 -2.546875 5.5625 -2.390625 C 5.5625 -1.96875 5.265625 -1.203125 5.15625 -0.90625 C 5.078125 -0.703125 5.046875 -0.640625 5.046875 -0.53125 C 5.046875 -0.15625 5.359375 0.0625 5.703125 0.0625 C 6.40625 0.0625 6.703125 -0.890625 6.703125 -1 Z M 6.703125 -1 "/>
</symbol>
<symbol overflow="visible" id="glyph7-2">
<path style="stroke:none;" d="M 3.96875 -1 C 3.96875 -1.078125 3.875 -1.078125 3.859375 -1.078125 C 3.765625 -1.078125 3.75 -1.0625 3.703125 -0.875 C 3.625 -0.53125 3.484375 -0.125 3.203125 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.578125 3.03125 -0.828125 3.078125 -1.015625 L 3.21875 -1.640625 C 3.296875 -1.890625 3.296875 -1.9375 3.359375 -2.171875 C 3.40625 -2.34375 3.484375 -2.671875 3.484375 -2.71875 C 3.484375 -2.859375 3.359375 -2.9375 3.25 -2.9375 C 3.140625 -2.9375 2.96875 -2.84375 2.9375 -2.65625 C 2.78125 -2.890625 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.09375 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.1875 -0.140625 2.46875 -0.421875 C 2.59375 0 3 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.609375 -0.078125 3.734375 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -1 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.140625 -0.40625 C 2.078125 -0.34375 1.796875 -0.125 1.5 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.9375 1.34375 -2.21875 C 1.671875 -2.765625 2.015625 -2.875 2.21875 -2.875 C 2.703125 -2.875 2.84375 -2.34375 2.84375 -2.265625 C 2.84375 -2.234375 2.828125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-3">
<path style="stroke:none;" d="M 3.96875 -1 C 3.96875 -1.078125 3.875 -1.078125 3.859375 -1.078125 C 3.765625 -1.078125 3.75 -1.0625 3.703125 -0.875 C 3.625 -0.53125 3.484375 -0.125 3.203125 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.59375 2.984375 -0.65625 3 -0.75 L 3.96875 -4.609375 C 3.984375 -4.625 4 -4.734375 4 -4.734375 C 4 -4.765625 3.96875 -4.828125 3.890625 -4.828125 C 3.75 -4.828125 3.171875 -4.765625 3 -4.75 C 2.9375 -4.75 2.84375 -4.734375 2.84375 -4.59375 C 2.84375 -4.5 2.9375 -4.5 3.03125 -4.5 C 3.359375 -4.5 3.359375 -4.453125 3.359375 -4.390625 C 3.359375 -4.34375 3.34375 -4.296875 3.328125 -4.234375 L 2.9375 -2.65625 C 2.78125 -2.890625 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.09375 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.1875 -0.140625 2.46875 -0.421875 C 2.59375 0 3 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.609375 -0.078125 3.734375 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -1 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.140625 -0.40625 C 2.078125 -0.34375 1.796875 -0.125 1.5 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.9375 1.34375 -2.21875 C 1.671875 -2.765625 2.015625 -2.875 2.21875 -2.875 C 2.703125 -2.875 2.84375 -2.34375 2.84375 -2.265625 C 2.84375 -2.234375 2.828125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph8-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph8-1">
<path style="stroke:none;" d="M 4.953125 -1.421875 C 4.953125 -1.515625 4.859375 -1.515625 4.828125 -1.515625 C 4.734375 -1.515625 4.71875 -1.484375 4.6875 -1.34375 C 4.515625 -0.703125 4.34375 -0.109375 3.9375 -0.109375 C 3.671875 -0.109375 3.640625 -0.375 3.640625 -0.5625 C 3.640625 -0.8125 3.65625 -0.875 3.703125 -1.046875 L 5.125 -6.78125 C 5.125 -6.78125 5.125 -6.890625 5 -6.890625 C 4.84375 -6.890625 3.90625 -6.8125 3.734375 -6.78125 C 3.65625 -6.78125 3.59375 -6.734375 3.59375 -6.59375 C 3.59375 -6.484375 3.6875 -6.484375 3.828125 -6.484375 C 4.3125 -6.484375 4.328125 -6.40625 4.328125 -6.3125 L 4.296875 -6.109375 L 3.703125 -3.75 C 3.53125 -4.125 3.234375 -4.390625 2.796875 -4.390625 C 1.625 -4.390625 0.390625 -2.9375 0.390625 -1.484375 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.921875 0.109375 2.421875 0.0625 3.015625 -0.640625 C 3.09375 -0.21875 3.4375 0.109375 3.921875 0.109375 C 4.265625 0.109375 4.484375 -0.125 4.65625 -0.4375 C 4.8125 -0.796875 4.953125 -1.421875 4.953125 -1.421875 Z M 3.5625 -3.125 L 3.0625 -1.1875 C 3.015625 -1 3.015625 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.25 -0.109375 1.109375 -0.65625 1.109375 -1.046875 C 1.109375 -1.546875 1.421875 -2.765625 1.65625 -3.21875 C 1.953125 -3.8125 2.40625 -4.171875 2.796875 -4.171875 C 3.453125 -4.171875 3.59375 -3.359375 3.59375 -3.296875 C 3.59375 -3.234375 3.5625 -3.1875 3.5625 -3.125 Z M 3.5625 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph9-1">
<path style="stroke:none;" d="M 7.46875 -1.546875 C 7.46875 -1.65625 7.328125 -1.65625 7.296875 -1.65625 C 6.984375 -1.65625 6.125 -1.265625 6.015625 -0.75 C 5.53125 -0.75 5.171875 -0.8125 4.375 -0.953125 C 4.015625 -1.03125 3.234375 -1.171875 2.65625 -1.171875 C 2.578125 -1.171875 2.46875 -1.171875 2.390625 -1.15625 C 2.71875 -1.71875 2.859375 -2.1875 3.015625 -2.84375 C 3.21875 -3.625 3.625 -5.03125 4.375 -5.875 C 4.5 -6.015625 4.546875 -6.0625 4.796875 -6.0625 C 5.25 -6.0625 5.4375 -5.703125 5.4375 -5.375 C 5.4375 -5.265625 5.40625 -5.15625 5.40625 -5.125 C 5.40625 -5.015625 5.53125 -4.984375 5.578125 -4.984375 C 5.71875 -4.984375 6.015625 -5.0625 6.40625 -5.328125 C 6.796875 -5.59375 6.84375 -5.78125 6.84375 -6.0625 C 6.84375 -6.5625 6.546875 -6.984375 5.890625 -6.984375 C 5.25 -6.984375 4.359375 -6.671875 3.53125 -5.96875 C 2.390625 -4.953125 1.890625 -3.3125 1.609375 -2.1875 C 1.453125 -1.59375 1.25 -0.78125 0.828125 -0.453125 C 0.71875 -0.375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.15625 0.5 0.171875 0.5625 0.171875 C 0.640625 0.171875 0.9375 0.15625 1.5 -0.25 C 1.875 -0.25 2.203125 -0.234375 3.109375 -0.0625 C 3.5625 0.03125 4.28125 0.171875 4.84375 0.171875 C 6.1875 0.171875 7.46875 -1 7.46875 -1.546875 Z M 7.46875 -1.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph10-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph10-1">
<path style="stroke:none;" d="M 3.46875 -0.765625 C 3.421875 -0.609375 3.359375 -0.34375 3.359375 -0.296875 C 3.359375 -0.046875 3.546875 0.0625 3.734375 0.0625 C 4.125 0.0625 4.21875 -0.296875 4.265625 -0.5 C 4.359375 -0.90625 4.359375 -0.921875 4.46875 -1.3125 C 4.5625 -1.703125 4.5625 -1.71875 4.59375 -1.796875 C 4.640625 -2 4.9375 -2.34375 5.125 -2.5 C 5.25 -2.625 5.546875 -2.828125 5.90625 -2.828125 C 6.25 -2.828125 6.3125 -2.640625 6.3125 -2.40625 C 6.3125 -2.015625 6 -1.25 5.875 -0.96875 C 5.796875 -0.75 5.765625 -0.6875 5.765625 -0.578125 C 5.765625 -0.171875 6.21875 0.0625 6.671875 0.0625 C 7.453125 0.0625 7.875 -0.828125 7.875 -1.03125 C 7.875 -1.15625 7.765625 -1.15625 7.65625 -1.15625 C 7.484375 -1.15625 7.46875 -1.140625 7.421875 -1 C 7.3125 -0.609375 7.015625 -0.265625 6.703125 -0.265625 C 6.671875 -0.265625 6.59375 -0.265625 6.59375 -0.4375 C 6.59375 -0.5625 6.625 -0.640625 6.75 -0.953125 C 6.8125 -1.109375 7.140625 -1.921875 7.140625 -2.296875 C 7.140625 -3.140625 6.1875 -3.140625 5.96875 -3.140625 C 5.46875 -3.140625 5 -2.90625 4.65625 -2.53125 C 4.484375 -3.140625 3.703125 -3.140625 3.5 -3.140625 C 2.9375 -3.140625 2.578125 -2.890625 2.25 -2.59375 C 2.09375 -3.140625 1.34375 -3.140625 1.28125 -3.140625 C 0.546875 -3.140625 0.3125 -2.109375 0.3125 -2.0625 C 0.3125 -1.9375 0.421875 -1.9375 0.53125 -1.9375 C 0.703125 -1.9375 0.71875 -1.9375 0.75 -2.09375 C 0.828125 -2.390625 0.96875 -2.828125 1.234375 -2.828125 C 1.40625 -2.828125 1.421875 -2.640625 1.421875 -2.546875 C 1.421875 -2.453125 1.40625 -2.375 1.34375 -2.15625 C 1.28125 -1.890625 1.28125 -1.875 1.21875 -1.609375 L 1.03125 -0.90625 C 0.984375 -0.703125 0.890625 -0.34375 0.890625 -0.296875 C 0.890625 -0.046875 1.078125 0.0625 1.265625 0.0625 C 1.65625 0.0625 1.75 -0.296875 1.796875 -0.5 C 1.890625 -0.90625 1.890625 -0.921875 2 -1.3125 C 2.09375 -1.71875 2.09375 -1.734375 2.125 -1.796875 C 2.171875 -1.984375 2.46875 -2.359375 2.65625 -2.515625 C 2.875 -2.6875 3.125 -2.828125 3.4375 -2.828125 C 3.78125 -2.828125 3.84375 -2.640625 3.84375 -2.40625 C 3.84375 -2.265625 3.8125 -2.15625 3.734375 -1.84375 Z M 3.46875 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph11-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph11-1">
<path style="stroke:none;" d="M 3.9375 -0.71875 C 3.9375 -0.78125 3.84375 -0.78125 3.828125 -0.78125 C 3.734375 -0.78125 3.734375 -0.765625 3.703125 -0.671875 C 3.609375 -0.375 3.390625 -0.109375 3.140625 -0.109375 C 3.03125 -0.109375 3 -0.1875 3 -0.296875 C 3 -0.40625 3.015625 -0.453125 3.0625 -0.5625 C 3.140625 -0.765625 3.375 -1.328125 3.375 -1.609375 C 3.375 -1.96875 3.109375 -2.203125 2.640625 -2.203125 C 2.1875 -2.203125 1.875 -1.921875 1.703125 -1.703125 C 1.671875 -2.109375 1.28125 -2.203125 1.09375 -2.203125 C 0.59375 -2.203125 0.453125 -1.421875 0.453125 -1.421875 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.65625 -1.390625 0.671875 -1.453125 C 0.75 -1.734375 0.859375 -2.03125 1.0625 -2.03125 C 1.234375 -2.03125 1.265625 -1.875 1.265625 -1.765625 C 1.265625 -1.6875 1.21875 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.96875 -0.484375 C 0.9375 -0.359375 0.890625 -0.140625 0.890625 -0.125 C 0.890625 -0.015625 0.96875 0.046875 1.0625 0.046875 C 1.140625 0.046875 1.25 0.015625 1.3125 -0.109375 L 1.40625 -0.5 C 1.5625 -1.171875 1.5625 -1.171875 1.578125 -1.203125 C 1.640625 -1.328125 2 -2.03125 2.609375 -2.03125 C 2.859375 -2.03125 2.953125 -1.890625 2.953125 -1.671875 C 2.953125 -1.390625 2.75 -0.875 2.640625 -0.59375 C 2.609375 -0.53125 2.578125 -0.46875 2.578125 -0.375 C 2.578125 -0.125 2.828125 0.046875 3.125 0.046875 C 3.65625 0.046875 3.9375 -0.59375 3.9375 -0.71875 Z M 3.9375 -0.71875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 387 48 L 407.933594 48 L 407.933594 80 L 387 80 Z M 387 48 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 340 85 L 374 85 L 374 116.355469 L 340 116.355469 Z M 340 85 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 387 13 L 407.933594 13 L 407.933594 45 L 387 45 Z M 387 13 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 0.398438 46 L 26 46 L 26 48 L 0.398438 48 Z M 0.398438 46 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.51942 -28.345103 L 42.520035 -28.345103 L 42.520035 28.346561 L -42.51942 28.346561 Z M -42.51942 -28.345103 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="323.974792" y="49.944737"/>
<use xlink:href="#glyph0-2" x="330.736619" y="49.944737"/>
<use xlink:href="#glyph0-3" x="333.496589" y="49.944737"/>
<use xlink:href="#glyph0-4" x="338.464137" y="49.944737"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="343.705894" y="49.944737"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.007583 -69.027727 L 17.008198 -69.027727 L 17.008198 -40.679937 L -17.007583 -40.679937 Z M -17.007583 -69.027727 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="324.13834" y="103.888403"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="333.787627" y="105.379276"/>
<use xlink:href="#glyph2-2" x="336.657769" y="105.379276"/>
<use xlink:href="#glyph2-2" x="341.783966" y="105.379276"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(79.998779%,88.938904%,94.819641%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -100.209935 -14.173166 L -66.194153 -14.173166 L -66.194153 14.174624 L -100.209935 14.174624 Z M -100.209935 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="243.000954" y="48.233474"/>
<use xlink:href="#glyph3-2" x="247.471748" y="48.233474"/>
<use xlink:href="#glyph3-3" x="252.46016" y="48.233474"/>
<use xlink:href="#glyph3-4" x="255.841073" y="48.233474"/>
<use xlink:href="#glyph3-4" x="259.221986" y="48.233474"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -123.387201 -0.00122955 C -123.387201 5.502245 -127.84482 9.963781 -133.348295 9.963781 C -138.851769 9.963781 -143.309388 5.502245 -143.309388 -0.00122955 C -143.309388 -5.500787 -138.851769 -9.962323 -133.348295 -9.962323 C -127.84482 -9.962323 -123.387201 -5.500787 -123.387201 -0.00122955 Z M -123.387201 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="196.615365" y="50.67671"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -200.502436 -14.173166 L -166.486654 -14.173166 L -166.486654 14.174624 L -200.502436 14.174624 Z M -200.502436 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="144.96136" y="49.185838"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="154.60965" y="50.675713"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -223.679702 -0.00122955 C -223.679702 5.502245 -228.137321 9.963781 -233.640795 9.963781 C -239.14427 9.963781 -243.605806 5.502245 -243.605806 -0.00122955 C -243.605806 -5.500787 -239.14427 -9.962323 -233.640795 -9.962323 C -228.137321 -9.962323 -223.679702 -5.500787 -223.679702 -0.00122955 Z M -223.679702 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="96.600239" y="50.67671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="104.766632" y="33.772507"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(89.318848%,93.479919%,83.758545%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -306.466845 -14.173166 L -272.451063 -14.173166 L -272.451063 14.174624 L -306.466845 14.174624 Z M -306.466845 -14.173166 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="43.482287" y="49.930775"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017502 -17.306817 L 66.731406 -17.306817 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 405.527344 63.78125 L 401.09375 62.101562 L 402.570312 63.78125 L 401.09375 65.460938 Z M 405.527344 63.78125 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054245 0.000322692 L 1.608378 1.68466 L 3.089028 0.000322692 L 1.608378 -1.684015 Z M 6.054245 0.000322692 " transform="matrix(0.997239,0,0,-0.997239,399.489812,63.781572)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="390.410876" y="58.4831"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="395.585551" y="59.973972"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025393 -17.306817 L 60.025393 -54.855791 L 22.139552 -54.855791 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 354.644531 101.226562 L 359.078125 102.902344 L 357.601562 101.226562 L 359.078125 99.546875 Z M 354.644531 101.226562 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054617 0.000760649 L 1.60875 1.681181 L 3.0894 0.000760649 L 1.60875 -1.683577 Z M 6.054617 0.000760649 " transform="matrix(-0.997239,0,0,0.997239,360.682434,101.225804)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 397.621094 63.78125 C 397.621094 62.683594 396.730469 61.792969 395.632812 61.792969 C 394.535156 61.792969 393.648438 62.683594 393.648438 63.78125 C 393.648438 64.878906 394.535156 65.769531 395.632812 65.769531 C 396.730469 65.769531 397.621094 64.878906 397.621094 63.78125 Z M 397.621094 63.78125 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.50505 -54.855791 L -133.348295 -54.855791 L -133.348295 -14.596209 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05454 -0.000235441 L 1.608673 1.684102 L 3.089323 -0.000235441 L 1.608673 -1.684573 Z M 6.05454 -0.000235441 " transform="matrix(0,-0.997239,-0.997239,0,202.792734,63.908919)"/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -123.387201 -0.00122955 L -105.341289 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054931 -0.00122955 L 1.609063 1.683108 L 3.085796 -0.00122955 L 1.609063 -1.68165 Z M 6.054931 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,227.891472,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="224.770423" y="42.714752"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -65.696686 -0.00122955 L -47.650773 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051639 -0.00122955 L 1.609689 1.683108 L 3.086422 -0.00122955 L 1.609689 -1.68165 Z M 6.051639 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,285.422099,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="277.493468" y="41.223879"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-2" x="284.259737" y="42.714752"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017502 17.308275 L 66.731406 17.308275 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 405.527344 29.261719 L 401.09375 27.585938 L 402.570312 29.261719 L 401.09375 30.941406 Z M 405.527344 29.261719 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054245 0.00113527 L 1.608378 1.681556 L 3.089028 0.00113527 L 1.608378 -1.683202 Z M 6.054245 0.00113527 " transform="matrix(0.997239,0,0,-0.997239,399.489812,29.262851)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph8-1" x="381.440708" y="39.970349"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph9-1" x="386.611394" y="39.970349"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph10-1" x="394.442714" y="41.461222"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.025393 17.308275 L 60.025393 45.652149 L -233.640795 45.652149 L -233.640795 14.597667 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053082 0.000684563 L 1.607215 1.681105 L 3.087865 0.000684563 L 1.607215 -1.683653 Z M 6.053082 0.000684563 " transform="matrix(0,0.997239,0.997239,0,102.776661,29.135503)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 397.621094 29.261719 C 397.621094 28.164062 396.730469 27.277344 395.632812 27.277344 C 394.535156 27.277344 393.648438 28.164062 393.648438 29.261719 C 393.648438 30.359375 394.535156 31.25 395.632812 31.25 C 396.730469 31.25 397.621094 30.359375 397.621094 29.261719 Z M 397.621094 29.261719 "/>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -223.679702 -0.00122955 L -205.633789 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051473 -0.00122955 L 1.609523 1.683108 L 3.086256 -0.00122955 L 1.609523 -1.68165 Z M 6.051473 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,127.87539,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="116.580926" y="41.223879"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-3" x="121.382634" y="42.714752"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="125.518185" y="42.714752"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -165.989187 -0.00122955 L -147.943274 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052088 -0.00122955 L 1.610138 1.683108 L 3.086871 -0.00122955 L 1.610138 -1.68165 Z M 6.052088 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,185.406026,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="179.497752" y="42.714752"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="186.264021" y="39.108734"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -271.949679 -0.00122955 L -248.239692 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052537 -0.00122955 L 1.610587 1.683108 L 3.08732 -0.00122955 L 1.610587 -1.68165 Z M 6.052537 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,85.389953,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="73.644788" y="41.223879"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-3" x="78.897247" y="42.714752"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="83.033796" y="42.714752"/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -311.598199 -0.00122955 L -335.312103 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,335.773131,46.522211)"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053231 -0.00122955 L 1.607363 1.683108 L 3.088013 -0.00122955 L 1.607363 -1.68165 Z M 6.053231 -0.00122955 " transform="matrix(0.997239,0,0,-0.997239,22.205668,46.522211)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="9.536261" y="40.230628"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="14.78872" y="41.720504"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph11-1" x="20.483954" y="42.714752"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@ -0,0 +1,152 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="211.582pt" height="63.219pt" viewBox="0 0 211.582 63.219" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.234375 -2.0625 C 7.28125 -2.21875 7.28125 -2.21875 7.359375 -2.234375 C 7.46875 -2.25 7.609375 -2.25 7.734375 -2.25 C 7.96875 -2.25 8.125 -2.25 8.125 -2.546875 C 8.125 -2.59375 8.09375 -2.71875 7.921875 -2.71875 C 7.703125 -2.71875 7.484375 -2.703125 7.25 -2.703125 C 7.03125 -2.703125 6.8125 -2.6875 6.59375 -2.6875 C 6.203125 -2.6875 5.234375 -2.71875 4.84375 -2.71875 C 4.71875 -2.71875 4.53125 -2.71875 4.53125 -2.4375 C 4.53125 -2.25 4.71875 -2.25 4.875 -2.25 L 5.234375 -2.25 C 5.34375 -2.25 5.890625 -2.25 5.890625 -2.1875 C 5.890625 -2.1875 5.890625 -2.171875 5.8125 -1.921875 C 5.8125 -1.859375 5.65625 -1.234375 5.640625 -1.21875 C 5.46875 -0.546875 4.6875 -0.296875 4.0625 -0.296875 C 3.5 -0.296875 2.90625 -0.40625 2.4375 -0.78125 C 1.921875 -1.21875 1.921875 -1.90625 1.921875 -2.109375 C 1.921875 -2.5625 2.125 -4.328125 3.078125 -5.40625 C 3.65625 -6.046875 4.59375 -6.453125 5.59375 -6.453125 C 6.84375 -6.453125 7.296875 -5.5 7.296875 -4.703125 C 7.296875 -4.59375 7.28125 -4.4375 7.28125 -4.34375 C 7.28125 -4.1875 7.40625 -4.1875 7.546875 -4.1875 C 7.75 -4.1875 7.765625 -4.203125 7.8125 -4.40625 L 8.375 -6.625 C 8.390625 -6.671875 8.40625 -6.71875 8.40625 -6.78125 C 8.40625 -6.921875 8.265625 -6.921875 8.15625 -6.921875 L 7.25 -6.21875 C 7.046875 -6.40625 6.53125 -6.921875 5.4375 -6.921875 C 2.296875 -6.921875 0.546875 -4.515625 0.546875 -2.484375 C 0.546875 -0.6875 1.921875 0.171875 3.765625 0.171875 C 4.796875 0.171875 5.484375 -0.171875 5.796875 -0.515625 C 6.046875 -0.25 6.546875 0 6.609375 0 C 6.71875 0 6.734375 -0.078125 6.765625 -0.21875 Z M 7.234375 -2.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 5.546875 -3.125 C 5.609375 -3.390625 5.734375 -3.875 5.734375 -3.9375 C 5.734375 -4.140625 5.578125 -4.375 5.265625 -4.375 C 5.109375 -4.375 4.75 -4.28125 4.609375 -3.84375 C 4.578125 -3.71875 4.140625 -1.921875 4.0625 -1.609375 C 4 -1.375 3.921875 -1.09375 3.90625 -0.921875 C 3.734375 -0.671875 3.34375 -0.28125 2.84375 -0.28125 C 2.265625 -0.28125 2.25 -0.765625 2.25 -1 C 2.25 -1.59375 2.5625 -2.359375 2.828125 -3.078125 C 2.9375 -3.328125 2.96875 -3.390625 2.96875 -3.5625 C 2.96875 -4.140625 2.390625 -4.453125 1.84375 -4.453125 C 0.8125 -4.453125 0.3125 -3.109375 0.3125 -2.90625 C 0.3125 -2.78125 0.46875 -2.78125 0.546875 -2.78125 C 0.671875 -2.78125 0.734375 -2.78125 0.78125 -2.90625 C 1.109375 -4 1.640625 -4.09375 1.796875 -4.09375 C 1.859375 -4.09375 1.953125 -4.09375 1.953125 -3.890625 C 1.953125 -3.65625 1.84375 -3.390625 1.796875 -3.265625 C 1.390625 -2.234375 1.203125 -1.6875 1.203125 -1.203125 C 1.203125 -0.078125 2.1875 0.078125 2.765625 0.078125 C 3.046875 0.078125 3.484375 0.046875 4.015625 -0.46875 C 4.328125 0.015625 4.90625 0.078125 5.140625 0.078125 C 5.5 0.078125 5.78125 -0.125 6 -0.484375 C 6.234375 -0.875 6.375 -1.40625 6.375 -1.453125 C 6.375 -1.59375 6.21875 -1.59375 6.125 -1.59375 C 6.03125 -1.59375 5.984375 -1.59375 5.9375 -1.546875 C 5.921875 -1.53125 5.921875 -1.5 5.859375 -1.265625 C 5.65625 -0.5 5.4375 -0.28125 5.1875 -0.28125 C 5.046875 -0.28125 4.96875 -0.375 4.96875 -0.640625 C 4.96875 -0.8125 5 -0.96875 5.09375 -1.359375 C 5.171875 -1.640625 5.265625 -2.03125 5.3125 -2.25 Z M 5.546875 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.4375 -3.421875 L 5.25 -3.421875 C 5.46875 -3.421875 5.59375 -3.421875 5.75 -3.578125 C 5.953125 -3.734375 5.953125 -3.96875 5.953125 -3.984375 C 5.953125 -4.375 5.59375 -4.375 5.421875 -4.375 L 2.1875 -4.375 C 1.984375 -4.375 1.5625 -4.375 1.03125 -3.890625 C 0.6875 -3.578125 0.3125 -3.078125 0.3125 -2.984375 C 0.3125 -2.84375 0.421875 -2.84375 0.53125 -2.84375 C 0.671875 -2.84375 0.6875 -2.859375 0.78125 -2.96875 C 1.15625 -3.421875 1.796875 -3.421875 1.984375 -3.421875 L 2.875 -3.421875 L 2.515625 -2.375 C 2.4375 -2.140625 2.21875 -1.5 2.140625 -1.25 C 2.03125 -0.9375 1.84375 -0.421875 1.84375 -0.3125 C 1.84375 -0.046875 2.0625 0.125 2.296875 0.125 C 2.375 0.125 2.875 0.125 2.96875 -0.53125 Z M 3.4375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 4.546875 -1.640625 C 4.609375 -1.921875 4.6875 -2.234375 4.6875 -2.5 C 4.6875 -2.703125 4.640625 -2.875 4.5 -2.984375 C 4.46875 -3.015625 4.40625 -3.03125 4.34375 -3.03125 C 4.25 -3.03125 4.140625 -2.984375 4.078125 -2.90625 C 4 -2.828125 3.96875 -2.75 3.96875 -2.671875 C 3.96875 -2.59375 4 -2.515625 4.0625 -2.46875 C 4.234375 -2.328125 4.34375 -2.140625 4.34375 -1.90625 C 4.34375 -1.828125 4.328125 -1.75 4.3125 -1.6875 C 4.15625 -1.078125 3.703125 -0.46875 3.15625 -0.46875 C 2.78125 -0.46875 2.53125 -0.703125 2.4375 -1.015625 C 2.53125 -1.21875 2.609375 -1.4375 2.65625 -1.640625 C 2.671875 -1.6875 2.6875 -1.75 2.6875 -1.78125 C 2.6875 -1.921875 2.625 -2.015625 2.5 -2.015625 C 2.34375 -2.015625 2.234375 -1.859375 2.203125 -1.6875 C 2.15625 -1.484375 2.125 -1.28125 2.125 -1.09375 L 2.125 -1.046875 C 1.875 -0.703125 1.546875 -0.46875 1.171875 -0.46875 C 0.734375 -0.46875 0.5 -0.828125 0.5 -1.28125 C 0.5 -1.40625 0.515625 -1.515625 0.546875 -1.640625 C 0.640625 -2.046875 0.890625 -2.421875 1.171875 -2.765625 C 1.203125 -2.796875 1.21875 -2.828125 1.21875 -2.859375 C 1.21875 -2.921875 1.1875 -2.96875 1.140625 -2.984375 C 1.125 -3 1.09375 -3 1.0625 -3 C 1.015625 -3 0.96875 -2.984375 0.9375 -2.9375 C 0.625 -2.546875 0.4375 -2.125 0.328125 -1.6875 C 0.265625 -1.453125 0.234375 -1.234375 0.234375 -1.03125 C 0.234375 -0.421875 0.484375 0.0625 1.078125 0.0625 C 1.515625 0.0625 1.90625 -0.21875 2.1875 -0.609375 C 2.3125 -0.203125 2.59375 0.0625 3.0625 0.0625 C 3.796875 0.0625 4.328125 -0.796875 4.546875 -1.640625 Z M 4.546875 -1.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 3.40625 -0.703125 C 3.40625 -0.75 3.34375 -0.828125 3.296875 -0.828125 C 3.25 -0.828125 3.234375 -0.8125 3.1875 -0.765625 C 2.640625 -0.125 1.84375 -0.125 1.71875 -0.125 C 1.21875 -0.125 1 -0.46875 1 -0.890625 C 1 -1.09375 1.09375 -1.84375 1.453125 -2.3125 C 1.71875 -2.65625 2.078125 -2.84375 2.421875 -2.84375 C 2.515625 -2.84375 2.84375 -2.828125 3.015625 -2.640625 C 2.765625 -2.59375 2.671875 -2.40625 2.671875 -2.25 C 2.671875 -2.0625 2.8125 -2 2.9375 -2 C 3.09375 -2 3.328125 -2.109375 3.328125 -2.4375 C 3.328125 -2.90625 2.796875 -3.03125 2.421875 -3.03125 C 1.390625 -3.03125 0.421875 -2.09375 0.421875 -1.125 C 0.421875 -0.53125 0.84375 0.0625 1.703125 0.0625 C 2.859375 0.0625 3.40625 -0.609375 3.40625 -0.703125 Z M 3.40625 -0.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 2.9375 -0.484375 C 2.9375 -0.515625 2.875 -0.59375 2.828125 -0.59375 C 2.796875 -0.59375 2.796875 -0.59375 2.71875 -0.515625 C 2.5 -0.265625 2.078125 -0.109375 1.59375 -0.109375 C 1.171875 -0.109375 0.984375 -0.34375 0.984375 -0.6875 C 0.984375 -1.1875 1.296875 -2.015625 2.078125 -2.015625 C 2.140625 -2.015625 2.375 -2.015625 2.53125 -1.90625 C 2.453125 -1.875 2.3125 -1.765625 2.3125 -1.609375 C 2.3125 -1.484375 2.40625 -1.40625 2.53125 -1.40625 C 2.640625 -1.40625 2.828125 -1.5 2.828125 -1.75 C 2.828125 -2.109375 2.359375 -2.171875 2.078125 -2.171875 C 1.25 -2.171875 0.53125 -1.5 0.53125 -0.84375 C 0.53125 -0.40625 0.84375 0.046875 1.578125 0.046875 C 1.671875 0.046875 2.078125 0.046875 2.40625 -0.078125 C 2.734375 -0.203125 2.9375 -0.421875 2.9375 -0.484375 Z M 2.9375 -0.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 2.828125 -6.828125 L 1.28125 -5.59375 L 1.5625 -5.203125 L 2.828125 -6.03125 L 4.09375 -5.21875 L 4.375 -5.578125 Z M 2.828125 -6.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 3.265625 2.359375 C 3.265625 2.328125 3.265625 2.3125 3.09375 2.140625 C 1.859375 0.90625 1.546875 -0.953125 1.546875 -2.46875 C 1.546875 -4.171875 1.921875 -5.890625 3.125 -7.109375 C 3.265625 -7.234375 3.265625 -7.25 3.265625 -7.28125 C 3.265625 -7.359375 3.21875 -7.390625 3.15625 -7.390625 C 3.0625 -7.390625 2.171875 -6.71875 1.59375 -5.46875 C 1.09375 -4.375 0.96875 -3.28125 0.96875 -2.46875 C 0.96875 -1.6875 1.078125 -0.5 1.625 0.609375 C 2.21875 1.828125 3.0625 2.46875 3.15625 2.46875 C 3.21875 2.46875 3.265625 2.4375 3.265625 2.359375 Z M 3.265625 2.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 2.84375 -2.46875 C 2.84375 -3.234375 2.734375 -4.421875 2.1875 -5.53125 C 1.609375 -6.75 0.765625 -7.390625 0.65625 -7.390625 C 0.59375 -7.390625 0.5625 -7.34375 0.5625 -7.28125 C 0.5625 -7.25 0.5625 -7.234375 0.75 -7.0625 C 1.71875 -6.078125 2.28125 -4.515625 2.28125 -2.46875 C 2.28125 -0.78125 1.90625 0.953125 0.6875 2.1875 C 0.5625 2.3125 0.5625 2.328125 0.5625 2.359375 C 0.5625 2.421875 0.59375 2.46875 0.65625 2.46875 C 0.765625 2.46875 1.640625 1.796875 2.21875 0.546875 C 2.734375 -0.546875 2.84375 -1.640625 2.84375 -2.46875 Z M 2.84375 -2.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 3.90625 -6.15625 C 3.90625 -6.34375 3.765625 -6.5 3.53125 -6.5 C 3.3125 -6.5 3.015625 -6.28125 3.015625 -5.984375 C 3.015625 -5.78125 3.15625 -5.625 3.375 -5.625 C 3.640625 -5.625 3.90625 -5.890625 3.90625 -6.15625 Z M 3.5 -3.078125 C 3.546875 -3.28125 3.546875 -3.421875 3.546875 -3.453125 C 3.546875 -4 3.125 -4.34375 2.640625 -4.34375 C 1.640625 -4.34375 1.078125 -2.921875 1.078125 -2.828125 C 1.078125 -2.734375 1.1875 -2.734375 1.1875 -2.734375 C 1.28125 -2.734375 1.296875 -2.75 1.375 -2.9375 C 1.609375 -3.53125 2.0625 -4.140625 2.609375 -4.140625 C 2.75 -4.140625 2.921875 -4.09375 2.921875 -3.6875 C 2.921875 -3.453125 2.890625 -3.34375 2.859375 -3.171875 L 1.921875 0.5 C 1.75 1.234375 1.265625 1.796875 0.71875 1.796875 C 0.65625 1.796875 0.515625 1.796875 0.328125 1.71875 C 0.625 1.640625 0.78125 1.390625 0.78125 1.1875 C 0.78125 1.03125 0.671875 0.84375 0.40625 0.84375 C 0.15625 0.84375 -0.125 1.046875 -0.125 1.40625 C -0.125 1.796875 0.265625 2.015625 0.734375 2.015625 C 1.421875 2.015625 2.34375 1.5 2.59375 0.515625 Z M 3.5 -3.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 5.71875 -2.359375 C 5.828125 -2.78125 5.953125 -3.265625 5.953125 -3.65625 C 5.953125 -3.921875 5.890625 -4.140625 5.75 -4.265625 C 5.6875 -4.328125 5.609375 -4.34375 5.515625 -4.34375 C 5.40625 -4.34375 5.28125 -4.296875 5.171875 -4.1875 C 5.09375 -4.09375 5.046875 -3.984375 5.046875 -3.875 C 5.046875 -3.78125 5.078125 -3.703125 5.140625 -3.625 C 5.390625 -3.421875 5.515625 -3.109375 5.515625 -2.765625 C 5.515625 -2.640625 5.515625 -2.515625 5.484375 -2.40625 C 5.25 -1.5 4.6875 -0.59375 3.90625 -0.59375 C 3.359375 -0.59375 3.03125 -0.96875 2.9375 -1.484375 C 3.078125 -1.765625 3.171875 -2.0625 3.234375 -2.359375 C 3.265625 -2.4375 3.28125 -2.53125 3.28125 -2.609375 C 3.28125 -2.75 3.234375 -2.859375 3.09375 -2.859375 C 2.90625 -2.859375 2.8125 -2.625 2.75 -2.40625 C 2.671875 -2.09375 2.640625 -1.796875 2.625 -1.515625 C 2.296875 -0.984375 1.828125 -0.59375 1.296875 -0.59375 C 0.6875 -0.59375 0.4375 -1.09375 0.4375 -1.71875 C 0.4375 -1.90625 0.46875 -2.140625 0.515625 -2.359375 C 0.65625 -2.9375 1.015625 -3.5 1.390625 -4.015625 C 1.421875 -4.0625 1.4375 -4.109375 1.4375 -4.140625 C 1.4375 -4.203125 1.390625 -4.25 1.34375 -4.28125 C 1.3125 -4.296875 1.296875 -4.296875 1.265625 -4.296875 C 1.203125 -4.296875 1.125 -4.265625 1.078125 -4.21875 C 0.671875 -3.65625 0.4375 -3.015625 0.28125 -2.40625 C 0.171875 -2.03125 0.125 -1.640625 0.125 -1.296875 C 0.125 -0.5 0.40625 0.109375 1.15625 0.109375 C 1.78125 0.109375 2.296875 -0.328125 2.671875 -0.9375 C 2.78125 -0.328125 3.125 0.109375 3.78125 0.109375 C 4.796875 0.109375 5.421875 -1.15625 5.71875 -2.359375 Z M 5.71875 -2.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 4.90625 -1.40625 C 4.90625 -1.5 4.8125 -1.5 4.78125 -1.5 C 4.6875 -1.5 4.671875 -1.46875 4.640625 -1.328125 C 4.484375 -0.6875 4.296875 -0.109375 3.890625 -0.109375 C 3.625 -0.109375 3.609375 -0.359375 3.609375 -0.5625 C 3.609375 -0.796875 3.625 -0.859375 3.65625 -1.03125 L 5.078125 -6.71875 C 5.078125 -6.71875 5.078125 -6.828125 4.953125 -6.828125 C 4.796875 -6.828125 3.875 -6.75 3.703125 -6.71875 C 3.625 -6.71875 3.5625 -6.671875 3.5625 -6.53125 C 3.5625 -6.421875 3.65625 -6.421875 3.796875 -6.421875 C 4.265625 -6.421875 4.296875 -6.34375 4.296875 -6.25 L 4.265625 -6.046875 L 3.671875 -3.71875 C 3.5 -4.078125 3.203125 -4.34375 2.765625 -4.34375 C 1.609375 -4.34375 0.390625 -2.90625 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.703125 0.109375 C 1.90625 0.109375 2.390625 0.0625 2.984375 -0.625 C 3.0625 -0.21875 3.40625 0.109375 3.875 0.109375 C 4.21875 0.109375 4.453125 -0.125 4.609375 -0.4375 C 4.78125 -0.78125 4.90625 -1.40625 4.90625 -1.40625 Z M 3.53125 -3.09375 L 3.03125 -1.171875 C 2.984375 -1 2.984375 -0.96875 2.828125 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.71875 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.40625 -2.734375 1.640625 -3.1875 C 1.9375 -3.765625 2.375 -4.140625 2.78125 -4.140625 C 3.421875 -4.140625 3.546875 -3.328125 3.546875 -3.265625 C 3.546875 -3.203125 3.53125 -3.15625 3.53125 -3.09375 Z M 3.53125 -3.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 5.40625 -1.71875 C 5.40625 -1.890625 5.25 -1.890625 5.140625 -1.890625 L 1 -1.890625 C 0.90625 -1.890625 0.75 -1.890625 0.75 -1.71875 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.140625 -1.5625 C 5.234375 -1.5625 5.40625 -1.5625 5.40625 -1.71875 Z M 5.40625 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 3.265625 0 L 3.265625 -0.25 L 3 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.375 C 2.3125 -4.5625 2.296875 -4.578125 2.109375 -4.578125 C 1.65625 -4.140625 1.03125 -4.140625 0.75 -4.140625 L 0.75 -3.890625 C 0.921875 -3.890625 1.375 -3.890625 1.75 -4.078125 L 1.75 -0.5625 C 1.75 -0.34375 1.75 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.265625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph8-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph8-1">
<path style="stroke:none;" d="M 7.390625 -1.53125 C 7.390625 -1.640625 7.265625 -1.640625 7.21875 -1.640625 C 6.921875 -1.640625 6.0625 -1.25 5.953125 -0.75 C 5.46875 -0.75 5.125 -0.796875 4.34375 -0.9375 C 3.984375 -1.015625 3.203125 -1.15625 2.640625 -1.15625 C 2.5625 -1.15625 2.453125 -1.15625 2.375 -1.15625 C 2.703125 -1.703125 2.828125 -2.171875 3 -2.8125 C 3.1875 -3.59375 3.578125 -4.984375 4.328125 -5.8125 C 4.453125 -5.953125 4.5 -6 4.75 -6 C 5.203125 -6 5.390625 -5.65625 5.390625 -5.328125 C 5.390625 -5.21875 5.359375 -5.109375 5.359375 -5.0625 C 5.359375 -4.96875 5.46875 -4.9375 5.515625 -4.9375 C 5.65625 -4.9375 5.953125 -5.015625 6.34375 -5.28125 C 6.734375 -5.546875 6.78125 -5.71875 6.78125 -6 C 6.78125 -6.5 6.484375 -6.921875 5.828125 -6.921875 C 5.203125 -6.921875 4.3125 -6.609375 3.5 -5.90625 C 2.375 -4.90625 1.875 -3.28125 1.59375 -2.171875 C 1.453125 -1.578125 1.234375 -0.78125 0.8125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.140625 0.5 0.171875 0.5625 0.171875 C 0.625 0.171875 0.9375 0.15625 1.484375 -0.25 C 1.84375 -0.25 2.1875 -0.21875 3.078125 -0.0625 C 3.53125 0.03125 4.25 0.171875 4.796875 0.171875 C 6.125 0.171875 7.390625 -1 7.390625 -1.53125 Z M 7.390625 -1.53125 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 1.085938 30 L 49 30 L 49 32 L 1.085938 32 Z M 1.085938 30 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 189 15 L 210.085938 15 L 210.085938 47 L 189 47 Z M 189 15 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -105.975606 -30.611219 L 33.44846 -30.611219 L 33.44846 30.612464 L -105.975606 30.612464 Z M -105.975606 -30.611219 " transform="matrix(0.987797,0,0,-0.987797,141.405029,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="40.005704" y="11.017886"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="48.731901" y="12.493655"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="53.689654" y="13.477501"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.0071 -14.172332 L 17.009573 -14.172332 L 17.009573 14.173577 L -17.0071 14.173577 Z M -17.0071 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,141.405029,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="137.04193" y="34.599561"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -89.536719 -14.172332 L -40.682735 -14.172332 L -40.682735 14.173577 L -89.536719 14.173577 Z M -89.536719 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,141.405029,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="58.720503" y="32.220946"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="56.243109" y="34.599561"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="64.970294" y="34.599561"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="68.797019" y="34.599561"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="73.410492" y="34.599561"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="79.538322" y="36.07533"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="83.54779" y="34.599561"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="87.374515" y="31.028675"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="93.525526" y="31.028675"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -94.665715 0.000622772 L -141.056041 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,141.405029,31.223271)"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05482 0.000622772 L 1.609953 1.681288 L 3.088939 0.000622772 L 1.609953 -1.683997 Z M 6.05482 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,45.089381,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="5.842749" y="27.451863"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -40.184467 0.000622772 L -22.14005 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,141.405029,31.223271)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053224 0.000622772 L 1.608358 1.681288 L 3.087344 0.000622772 L 1.608358 -1.683997 Z M 6.053224 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,116.731581,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="113.888959" y="27.451863"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.507841 0.000622772 L 63.898166 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,141.405029,31.223271)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 207.699219 31.222656 L 203.308594 29.5625 L 204.769531 31.222656 L 203.308594 32.886719 Z M 207.699219 31.222656 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054741 0.000622772 L 1.609874 1.681288 L 3.08886 0.000622772 L 1.609874 -1.683997 Z M 6.054741 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,201.718365,31.223271)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="192.447456" y="27.451863"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph8-1" x="197.570171" y="27.451863"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,70 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="139.056pt" height="30.343pt" viewBox="0 0 139.056 30.343" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.171875 -2.046875 C 7.203125 -2.1875 7.21875 -2.203125 7.28125 -2.21875 C 7.40625 -2.234375 7.53125 -2.234375 7.65625 -2.234375 C 7.890625 -2.234375 8.046875 -2.234375 8.046875 -2.515625 C 8.046875 -2.5625 8.03125 -2.6875 7.84375 -2.6875 C 7.640625 -2.6875 7.40625 -2.671875 7.1875 -2.671875 C 6.96875 -2.671875 6.75 -2.65625 6.53125 -2.65625 C 6.140625 -2.65625 5.1875 -2.6875 4.796875 -2.6875 C 4.6875 -2.6875 4.5 -2.6875 4.5 -2.40625 C 4.5 -2.234375 4.671875 -2.234375 4.828125 -2.234375 L 5.1875 -2.234375 C 5.296875 -2.234375 5.828125 -2.234375 5.828125 -2.171875 C 5.828125 -2.171875 5.828125 -2.140625 5.765625 -1.90625 C 5.75 -1.84375 5.59375 -1.21875 5.59375 -1.203125 C 5.421875 -0.546875 4.640625 -0.296875 4.03125 -0.296875 C 3.46875 -0.296875 2.875 -0.40625 2.421875 -0.78125 C 1.90625 -1.203125 1.90625 -1.875 1.90625 -2.09375 C 1.90625 -2.546875 2.109375 -4.296875 3.046875 -5.359375 C 3.625 -5.984375 4.546875 -6.390625 5.546875 -6.390625 C 6.78125 -6.390625 7.234375 -5.453125 7.234375 -4.65625 C 7.234375 -4.546875 7.203125 -4.390625 7.203125 -4.296875 C 7.203125 -4.15625 7.328125 -4.15625 7.46875 -4.15625 C 7.6875 -4.15625 7.6875 -4.15625 7.734375 -4.375 L 8.296875 -6.5625 C 8.3125 -6.609375 8.328125 -6.65625 8.328125 -6.71875 C 8.328125 -6.859375 8.1875 -6.859375 8.078125 -6.859375 L 7.171875 -6.15625 C 6.984375 -6.34375 6.46875 -6.859375 5.390625 -6.859375 C 2.265625 -6.859375 0.53125 -4.46875 0.53125 -2.46875 C 0.53125 -0.6875 1.90625 0.171875 3.71875 0.171875 C 4.75 0.171875 5.4375 -0.171875 5.75 -0.5 C 5.984375 -0.25 6.484375 0 6.546875 0 C 6.65625 0 6.671875 -0.078125 6.703125 -0.21875 Z M 7.171875 -2.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.40625 -3.390625 L 5.203125 -3.390625 C 5.40625 -3.390625 5.53125 -3.390625 5.6875 -3.546875 C 5.890625 -3.703125 5.890625 -3.921875 5.890625 -3.953125 C 5.890625 -4.328125 5.53125 -4.328125 5.375 -4.328125 L 2.171875 -4.328125 C 1.953125 -4.328125 1.546875 -4.328125 1.03125 -3.859375 C 0.6875 -3.546875 0.296875 -3.046875 0.296875 -2.953125 C 0.296875 -2.8125 0.421875 -2.8125 0.53125 -2.8125 C 0.671875 -2.8125 0.6875 -2.828125 0.765625 -2.9375 C 1.140625 -3.390625 1.78125 -3.390625 1.96875 -3.390625 L 2.84375 -3.390625 L 2.5 -2.359375 C 2.40625 -2.109375 2.1875 -1.484375 2.109375 -1.234375 C 2.015625 -0.9375 1.828125 -0.421875 1.828125 -0.3125 C 1.828125 -0.03125 2.03125 0.109375 2.28125 0.109375 C 2.34375 0.109375 2.84375 0.109375 2.9375 -0.53125 Z M 3.40625 -3.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 4.859375 -1.390625 C 4.859375 -1.484375 4.765625 -1.484375 4.734375 -1.484375 C 4.640625 -1.484375 4.625 -1.453125 4.609375 -1.3125 C 4.4375 -0.6875 4.265625 -0.109375 3.859375 -0.109375 C 3.59375 -0.109375 3.5625 -0.359375 3.5625 -0.5625 C 3.5625 -0.796875 3.59375 -0.859375 3.625 -1.03125 L 5.03125 -6.65625 C 5.03125 -6.65625 5.03125 -6.765625 4.90625 -6.765625 C 4.765625 -6.765625 3.828125 -6.671875 3.671875 -6.65625 C 3.59375 -6.65625 3.53125 -6.59375 3.53125 -6.46875 C 3.53125 -6.359375 3.625 -6.359375 3.765625 -6.359375 C 4.234375 -6.359375 4.25 -6.28125 4.25 -6.1875 L 4.21875 -6 L 3.640625 -3.6875 C 3.46875 -4.046875 3.171875 -4.3125 2.734375 -4.3125 C 1.59375 -4.3125 0.390625 -2.875 0.390625 -1.453125 C 0.390625 -0.53125 0.921875 0.109375 1.6875 0.109375 C 1.875 0.109375 2.375 0.0625 2.953125 -0.625 C 3.03125 -0.21875 3.375 0.109375 3.84375 0.109375 C 4.1875 0.109375 4.40625 -0.109375 4.5625 -0.421875 C 4.734375 -0.78125 4.859375 -1.390625 4.859375 -1.390625 Z M 3.484375 -3.078125 L 3 -1.15625 C 2.953125 -0.984375 2.953125 -0.96875 2.8125 -0.796875 C 2.375 -0.265625 1.984375 -0.109375 1.703125 -0.109375 C 1.21875 -0.109375 1.078125 -0.640625 1.078125 -1.03125 C 1.078125 -1.515625 1.390625 -2.703125 1.625 -3.15625 C 1.921875 -3.734375 2.359375 -4.09375 2.75 -4.09375 C 3.390625 -4.09375 3.515625 -3.296875 3.515625 -3.234375 C 3.515625 -3.171875 3.5 -3.125 3.484375 -3.078125 Z M 3.484375 -3.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 7.328125 -1.515625 C 7.328125 -1.625 7.203125 -1.625 7.15625 -1.625 C 6.859375 -1.625 6 -1.234375 5.90625 -0.734375 C 5.421875 -0.734375 5.078125 -0.796875 4.296875 -0.9375 C 3.9375 -1 3.171875 -1.15625 2.609375 -1.15625 C 2.53125 -1.15625 2.421875 -1.15625 2.34375 -1.140625 C 2.671875 -1.6875 2.796875 -2.140625 2.96875 -2.78125 C 3.15625 -3.5625 3.546875 -4.9375 4.296875 -5.765625 C 4.421875 -5.90625 4.453125 -5.953125 4.703125 -5.953125 C 5.15625 -5.953125 5.328125 -5.59375 5.328125 -5.28125 C 5.328125 -5.171875 5.296875 -5.0625 5.296875 -5.015625 C 5.296875 -4.90625 5.421875 -4.890625 5.46875 -4.890625 C 5.609375 -4.890625 5.90625 -4.96875 6.28125 -5.21875 C 6.671875 -5.484375 6.71875 -5.671875 6.71875 -5.953125 C 6.71875 -6.4375 6.421875 -6.859375 5.765625 -6.859375 C 5.15625 -6.859375 4.265625 -6.546875 3.46875 -5.84375 C 2.34375 -4.859375 1.859375 -3.25 1.578125 -2.140625 C 1.4375 -1.5625 1.234375 -0.765625 0.8125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.140625 0.484375 0.171875 0.5625 0.171875 C 0.625 0.171875 0.921875 0.15625 1.46875 -0.25 C 1.828125 -0.25 2.171875 -0.21875 3.046875 -0.0625 C 3.484375 0.03125 4.203125 0.171875 4.765625 0.171875 C 6.0625 0.171875 7.328125 -0.984375 7.328125 -1.515625 Z M 7.328125 -1.515625 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 51 0 L 87 0 L 87 29.699219 L 51 29.699219 Z M 51 0 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 1.011719 14 L 48 14 L 48 16 L 1.011719 16 Z M 1.011719 14 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 32 0 L 65 0 L 65 29.699219 L 32 29.699219 Z M 32 0 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 116 0 L 137.121094 0 L 137.121094 29.699219 L 116 29.699219 Z M 116 0 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 52.417969 28.722656 L 85.714844 28.722656 L 85.714844 0.976562 L 52.417969 0.976562 Z M 52.417969 28.722656 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.008505 -14.172572 L 17.009328 -14.172572 L 17.009328 14.174293 L -17.008505 14.174293 Z M -17.008505 -14.172572 " transform="matrix(0.978806,0,0,-0.978806,69.066003,14.850451)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="64.742615" y="18.195033"/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -22.140712 -0.00113507 L -68.530118 -0.00113507 " transform="matrix(0.978806,0,0,-0.978806,69.066003,14.850451)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 50.542969 14.851562 L 46.191406 13.203125 L 47.640625 14.851562 L 46.191406 16.496094 Z M 50.542969 14.851562 "/>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054156 -0.00113507 L 1.608372 1.682995 L 3.08897 -0.00113507 L 1.608372 -1.681274 Z M 6.054156 -0.00113507 " transform="matrix(0.978806,0,0,-0.978806,44.617121,14.850451)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="5.726459" y="11.11239"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.504191 -0.00113507 L 63.897588 -0.00113507 " transform="matrix(0.978806,0,0,-0.978806,69.066003,14.850451)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 134.753906 14.851562 L 130.40625 13.203125 L 131.851562 14.851562 L 130.40625 16.496094 Z M 134.753906 14.851562 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051766 -0.00113507 L 1.609973 1.682995 L 3.08658 -0.00113507 L 1.609973 -1.681274 Z M 6.051766 -0.00113507 " transform="matrix(0.978806,0,0,-0.978806,128.830398,14.850451)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="119.643869" y="11.11239"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="124.718981" y="11.11239"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="196.745pt" height="63.219pt" viewBox="0 0 196.745 63.219" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.234375 -2.0625 C 7.28125 -2.21875 7.28125 -2.21875 7.359375 -2.234375 C 7.46875 -2.25 7.609375 -2.25 7.734375 -2.25 C 7.96875 -2.25 8.125 -2.25 8.125 -2.546875 C 8.125 -2.59375 8.09375 -2.71875 7.921875 -2.71875 C 7.703125 -2.71875 7.484375 -2.703125 7.25 -2.703125 C 7.03125 -2.703125 6.8125 -2.6875 6.59375 -2.6875 C 6.203125 -2.6875 5.234375 -2.71875 4.84375 -2.71875 C 4.71875 -2.71875 4.53125 -2.71875 4.53125 -2.4375 C 4.53125 -2.25 4.71875 -2.25 4.875 -2.25 L 5.234375 -2.25 C 5.34375 -2.25 5.890625 -2.25 5.890625 -2.1875 C 5.890625 -2.1875 5.890625 -2.171875 5.8125 -1.921875 C 5.8125 -1.859375 5.65625 -1.234375 5.640625 -1.21875 C 5.46875 -0.546875 4.6875 -0.296875 4.0625 -0.296875 C 3.5 -0.296875 2.90625 -0.40625 2.4375 -0.78125 C 1.921875 -1.21875 1.921875 -1.90625 1.921875 -2.109375 C 1.921875 -2.5625 2.125 -4.328125 3.078125 -5.40625 C 3.65625 -6.046875 4.59375 -6.453125 5.59375 -6.453125 C 6.84375 -6.453125 7.296875 -5.5 7.296875 -4.703125 C 7.296875 -4.59375 7.28125 -4.4375 7.28125 -4.34375 C 7.28125 -4.1875 7.40625 -4.1875 7.546875 -4.1875 C 7.75 -4.1875 7.765625 -4.203125 7.8125 -4.40625 L 8.375 -6.625 C 8.390625 -6.671875 8.40625 -6.71875 8.40625 -6.78125 C 8.40625 -6.921875 8.265625 -6.921875 8.15625 -6.921875 L 7.25 -6.21875 C 7.046875 -6.40625 6.53125 -6.921875 5.4375 -6.921875 C 2.296875 -6.921875 0.546875 -4.515625 0.546875 -2.484375 C 0.546875 -0.6875 1.921875 0.171875 3.765625 0.171875 C 4.796875 0.171875 5.484375 -0.171875 5.796875 -0.515625 C 6.046875 -0.25 6.546875 0 6.609375 0 C 6.71875 0 6.734375 -0.078125 6.765625 -0.21875 Z M 7.234375 -2.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 5.546875 -3.125 C 5.609375 -3.390625 5.734375 -3.875 5.734375 -3.9375 C 5.734375 -4.140625 5.578125 -4.375 5.265625 -4.375 C 5.109375 -4.375 4.75 -4.28125 4.609375 -3.84375 C 4.578125 -3.71875 4.140625 -1.921875 4.0625 -1.609375 C 4 -1.375 3.921875 -1.09375 3.90625 -0.921875 C 3.734375 -0.671875 3.34375 -0.28125 2.84375 -0.28125 C 2.265625 -0.28125 2.25 -0.765625 2.25 -1 C 2.25 -1.59375 2.5625 -2.359375 2.828125 -3.078125 C 2.9375 -3.328125 2.96875 -3.390625 2.96875 -3.5625 C 2.96875 -4.140625 2.390625 -4.453125 1.84375 -4.453125 C 0.8125 -4.453125 0.3125 -3.109375 0.3125 -2.90625 C 0.3125 -2.78125 0.46875 -2.78125 0.546875 -2.78125 C 0.671875 -2.78125 0.734375 -2.78125 0.78125 -2.90625 C 1.109375 -4 1.640625 -4.09375 1.796875 -4.09375 C 1.859375 -4.09375 1.953125 -4.09375 1.953125 -3.890625 C 1.953125 -3.65625 1.84375 -3.390625 1.796875 -3.265625 C 1.390625 -2.234375 1.203125 -1.6875 1.203125 -1.203125 C 1.203125 -0.078125 2.1875 0.078125 2.765625 0.078125 C 3.046875 0.078125 3.484375 0.046875 4.015625 -0.46875 C 4.328125 0.015625 4.90625 0.078125 5.140625 0.078125 C 5.5 0.078125 5.78125 -0.125 6 -0.484375 C 6.234375 -0.875 6.375 -1.40625 6.375 -1.453125 C 6.375 -1.59375 6.21875 -1.59375 6.125 -1.59375 C 6.03125 -1.59375 5.984375 -1.59375 5.9375 -1.546875 C 5.921875 -1.53125 5.921875 -1.5 5.859375 -1.265625 C 5.65625 -0.5 5.4375 -0.28125 5.1875 -0.28125 C 5.046875 -0.28125 4.96875 -0.375 4.96875 -0.640625 C 4.96875 -0.8125 5 -0.96875 5.09375 -1.359375 C 5.171875 -1.640625 5.265625 -2.03125 5.3125 -2.25 Z M 5.546875 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.4375 -3.421875 L 5.25 -3.421875 C 5.46875 -3.421875 5.59375 -3.421875 5.75 -3.578125 C 5.953125 -3.734375 5.953125 -3.96875 5.953125 -3.984375 C 5.953125 -4.375 5.59375 -4.375 5.421875 -4.375 L 2.1875 -4.375 C 1.984375 -4.375 1.5625 -4.375 1.03125 -3.890625 C 0.6875 -3.578125 0.3125 -3.078125 0.3125 -2.984375 C 0.3125 -2.84375 0.421875 -2.84375 0.53125 -2.84375 C 0.671875 -2.84375 0.6875 -2.859375 0.78125 -2.96875 C 1.15625 -3.421875 1.796875 -3.421875 1.984375 -3.421875 L 2.875 -3.421875 L 2.515625 -2.375 C 2.4375 -2.140625 2.21875 -1.5 2.140625 -1.25 C 2.03125 -0.9375 1.84375 -0.421875 1.84375 -0.3125 C 1.84375 -0.046875 2.0625 0.125 2.296875 0.125 C 2.375 0.125 2.875 0.125 2.96875 -0.53125 Z M 3.4375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.890625 0 L 1.890625 -0.25 C 1.484375 -0.25 1.421875 -0.25 1.421875 -0.53125 L 1.421875 -3.03125 L 0.40625 -2.96875 L 0.40625 -2.71875 C 0.84375 -2.71875 0.90625 -2.671875 0.90625 -2.328125 L 0.90625 -0.546875 C 0.90625 -0.25 0.828125 -0.25 0.390625 -0.25 L 0.390625 0 C 0.390625 0 0.875 -0.03125 1.15625 -0.03125 C 1.40625 -0.03125 1.640625 -0.015625 1.890625 0 Z M 1.515625 -4.140625 C 1.515625 -4.375 1.34375 -4.546875 1.109375 -4.546875 C 0.875 -4.546875 0.71875 -4.359375 0.71875 -4.15625 C 0.71875 -3.9375 0.890625 -3.75 1.109375 -3.75 C 1.34375 -3.75 1.515625 -3.953125 1.515625 -4.140625 Z M 1.515625 -4.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 4.0625 0 L 4.0625 -0.25 C 3.625 -0.25 3.546875 -0.25 3.546875 -0.546875 L 3.546875 -2.09375 C 3.546875 -2.6875 3.25 -3.03125 2.515625 -3.03125 C 1.953125 -3.03125 1.578125 -2.734375 1.390625 -2.375 L 1.390625 -3.03125 L 0.375 -2.96875 L 0.375 -2.71875 C 0.828125 -2.71875 0.890625 -2.671875 0.890625 -2.328125 L 0.890625 -0.546875 C 0.890625 -0.25 0.8125 -0.25 0.375 -0.25 L 0.375 0 C 0.375 0 0.875 -0.03125 1.15625 -0.03125 C 1.40625 -0.03125 1.890625 0 1.953125 0 L 1.953125 -0.25 C 1.5 -0.25 1.4375 -0.25 1.4375 -0.546875 L 1.4375 -1.78125 C 1.4375 -2.515625 2 -2.84375 2.453125 -2.84375 C 2.9375 -2.84375 3 -2.46875 3 -2.109375 L 3 -0.546875 C 3 -0.25 2.9375 -0.25 2.484375 -0.25 L 2.484375 0 C 2.484375 0 2.984375 -0.03125 3.265625 -0.03125 C 3.53125 -0.03125 4 0 4.0625 0 Z M 4.0625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.90625 -2.71875 L 3.90625 -2.96875 C 3.734375 -2.953125 3.5625 -2.9375 3.390625 -2.9375 C 3.203125 -2.9375 2.953125 -2.953125 2.765625 -2.96875 L 2.765625 -2.71875 C 3.046875 -2.703125 3.046875 -2.484375 3.046875 -2.453125 C 3.046875 -2.421875 3.046875 -2.359375 3 -2.265625 L 2.21875 -0.5625 L 1.359375 -2.4375 C 1.359375 -2.4375 1.328125 -2.515625 1.328125 -2.5625 C 1.328125 -2.71875 1.5625 -2.71875 1.671875 -2.71875 L 1.671875 -2.96875 C 1.671875 -2.96875 1.171875 -2.9375 0.890625 -2.9375 C 0.6875 -2.9375 0.40625 -2.953125 0.21875 -2.96875 L 0.21875 -2.71875 C 0.59375 -2.71875 0.671875 -2.703125 0.78125 -2.46875 L 1.875 -0.078125 C 1.90625 0 1.9375 0.0625 2.0625 0.0625 C 2.1875 0.0625 2.21875 0 2.25 -0.0625 L 3.265625 -2.296875 C 3.453125 -2.71875 3.796875 -2.71875 3.90625 -2.71875 Z M 3.90625 -2.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 3.265625 0 L 3.265625 -0.25 L 3 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.375 C 2.3125 -4.5625 2.296875 -4.578125 2.109375 -4.578125 C 1.65625 -4.140625 1.03125 -4.140625 0.75 -4.140625 L 0.75 -3.890625 C 0.921875 -3.890625 1.375 -3.890625 1.75 -4.078125 L 1.75 -0.5625 C 1.75 -0.34375 1.75 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.265625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 2.828125 -6.828125 L 1.28125 -5.59375 L 1.5625 -5.203125 L 2.828125 -6.03125 L 4.09375 -5.21875 L 4.375 -5.578125 Z M 2.828125 -6.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 5.40625 -1.71875 C 5.40625 -1.890625 5.25 -1.890625 5.140625 -1.890625 L 1 -1.890625 C 0.90625 -1.890625 0.75 -1.890625 0.75 -1.71875 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.140625 -1.5625 C 5.234375 -1.5625 5.40625 -1.5625 5.40625 -1.71875 Z M 5.40625 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 4.90625 -1.40625 C 4.90625 -1.5 4.8125 -1.5 4.78125 -1.5 C 4.6875 -1.5 4.671875 -1.46875 4.640625 -1.328125 C 4.484375 -0.6875 4.296875 -0.109375 3.890625 -0.109375 C 3.625 -0.109375 3.609375 -0.359375 3.609375 -0.5625 C 3.609375 -0.796875 3.625 -0.859375 3.65625 -1.03125 L 5.078125 -6.71875 C 5.078125 -6.71875 5.078125 -6.828125 4.953125 -6.828125 C 4.796875 -6.828125 3.875 -6.75 3.703125 -6.71875 C 3.625 -6.71875 3.5625 -6.671875 3.5625 -6.53125 C 3.5625 -6.421875 3.65625 -6.421875 3.796875 -6.421875 C 4.265625 -6.421875 4.296875 -6.34375 4.296875 -6.25 L 4.265625 -6.046875 L 3.671875 -3.71875 C 3.5 -4.078125 3.203125 -4.34375 2.765625 -4.34375 C 1.609375 -4.34375 0.390625 -2.90625 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.703125 0.109375 C 1.90625 0.109375 2.390625 0.0625 2.984375 -0.625 C 3.0625 -0.21875 3.40625 0.109375 3.875 0.109375 C 4.21875 0.109375 4.453125 -0.125 4.609375 -0.4375 C 4.78125 -0.78125 4.90625 -1.40625 4.90625 -1.40625 Z M 3.53125 -3.09375 L 3.03125 -1.171875 C 2.984375 -1 2.984375 -0.96875 2.828125 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.71875 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.40625 -2.734375 1.640625 -3.1875 C 1.9375 -3.765625 2.375 -4.140625 2.78125 -4.140625 C 3.421875 -4.140625 3.546875 -3.328125 3.546875 -3.265625 C 3.546875 -3.203125 3.53125 -3.15625 3.53125 -3.09375 Z M 3.53125 -3.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 7.390625 -1.53125 C 7.390625 -1.640625 7.265625 -1.640625 7.21875 -1.640625 C 6.921875 -1.640625 6.0625 -1.25 5.953125 -0.75 C 5.46875 -0.75 5.125 -0.796875 4.34375 -0.9375 C 3.984375 -1.015625 3.203125 -1.15625 2.640625 -1.15625 C 2.5625 -1.15625 2.453125 -1.15625 2.375 -1.15625 C 2.703125 -1.703125 2.828125 -2.171875 3 -2.8125 C 3.1875 -3.59375 3.578125 -4.984375 4.328125 -5.8125 C 4.453125 -5.953125 4.5 -6 4.75 -6 C 5.203125 -6 5.390625 -5.65625 5.390625 -5.328125 C 5.390625 -5.21875 5.359375 -5.109375 5.359375 -5.0625 C 5.359375 -4.96875 5.46875 -4.9375 5.515625 -4.9375 C 5.65625 -4.9375 5.953125 -5.015625 6.34375 -5.28125 C 6.734375 -5.546875 6.78125 -5.71875 6.78125 -6 C 6.78125 -6.5 6.484375 -6.921875 5.828125 -6.921875 C 5.203125 -6.921875 4.3125 -6.609375 3.5 -5.90625 C 2.375 -4.90625 1.875 -3.28125 1.59375 -2.171875 C 1.453125 -1.578125 1.234375 -0.78125 0.8125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.140625 0.5 0.171875 0.5625 0.171875 C 0.625 0.171875 0.9375 0.15625 1.484375 -0.25 C 1.84375 -0.25 2.1875 -0.21875 3.078125 -0.0625 C 3.53125 0.03125 4.25 0.171875 4.796875 0.171875 C 6.125 0.171875 7.390625 -1 7.390625 -1.53125 Z M 7.390625 -1.53125 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 1.074219 30 L 49 30 L 49 32 L 1.074219 32 Z M 1.074219 30 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 174 15 L 195.417969 15 L 195.417969 47 L 174 47 Z M 174 15 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -91.136368 -30.611219 L 33.446432 -30.611219 L 33.446432 30.612464 L -91.136368 30.612464 Z M -91.136368 -30.611219 " transform="matrix(0.987797,0,0,-0.987797,126.739063,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="39.99568" y="11.017886"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="48.721878" y="12.493655"/>
<use xlink:href="#glyph1-2" x="50.949683" y="12.493655"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="55.082901" y="12.493655"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.009127 -14.172332 L 17.007545 -14.172332 L 17.007545 14.173577 L -17.009127 14.173577 Z M -17.009127 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,126.739063,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="122.375964" y="34.599561"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -74.697481 -14.172332 L -40.680808 -14.172332 L -40.680808 14.173577 L -74.697481 14.173577 Z M -74.697481 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,126.739063,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="62.584619" y="33.451741"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="60.108212" y="35.829368"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="68.83441" y="32.258483"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="74.985421" y="32.258483"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -79.830431 0.000622772 L -126.220757 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,126.739063,31.223271)"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052733 0.000622772 L 1.607867 1.681288 L 3.086853 0.000622772 L 1.607867 -1.683997 Z M 6.052733 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,45.079723,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="5.832725" y="27.451863"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -40.18254 0.000622772 L -22.138123 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,126.739063,31.223271)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055151 0.000622772 L 1.610285 1.681288 L 3.089271 0.000622772 L 1.610285 -1.683997 Z M 6.055151 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,102.065616,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="99.222993" y="27.451863"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.505813 0.000622772 L 63.896138 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,126.739063,31.223271)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 193.03125 31.222656 L 188.640625 29.5625 L 190.101562 31.222656 L 188.640625 32.886719 Z M 193.03125 31.222656 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052713 0.000622772 L 1.607847 1.681288 L 3.086832 0.000622772 L 1.607847 -1.683997 Z M 6.052713 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,187.052399,31.223271)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="177.781491" y="27.451863"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="182.903218" y="27.451863"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,190 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="255.237pt" height="63.219pt" viewBox="0 0 255.237 63.219" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.234375 -2.0625 C 7.28125 -2.21875 7.28125 -2.21875 7.359375 -2.234375 C 7.46875 -2.25 7.609375 -2.25 7.734375 -2.25 C 7.96875 -2.25 8.125 -2.25 8.125 -2.546875 C 8.125 -2.59375 8.09375 -2.71875 7.921875 -2.71875 C 7.703125 -2.71875 7.484375 -2.703125 7.25 -2.703125 C 7.03125 -2.703125 6.8125 -2.6875 6.59375 -2.6875 C 6.203125 -2.6875 5.234375 -2.71875 4.84375 -2.71875 C 4.71875 -2.71875 4.53125 -2.71875 4.53125 -2.4375 C 4.53125 -2.25 4.71875 -2.25 4.875 -2.25 L 5.234375 -2.25 C 5.34375 -2.25 5.890625 -2.25 5.890625 -2.1875 C 5.890625 -2.1875 5.890625 -2.171875 5.8125 -1.921875 C 5.8125 -1.859375 5.65625 -1.234375 5.640625 -1.21875 C 5.46875 -0.546875 4.6875 -0.296875 4.0625 -0.296875 C 3.5 -0.296875 2.90625 -0.40625 2.4375 -0.78125 C 1.921875 -1.21875 1.921875 -1.90625 1.921875 -2.109375 C 1.921875 -2.5625 2.125 -4.328125 3.078125 -5.40625 C 3.65625 -6.046875 4.59375 -6.453125 5.59375 -6.453125 C 6.84375 -6.453125 7.296875 -5.5 7.296875 -4.703125 C 7.296875 -4.59375 7.28125 -4.4375 7.28125 -4.34375 C 7.28125 -4.1875 7.40625 -4.1875 7.546875 -4.1875 C 7.75 -4.1875 7.765625 -4.203125 7.8125 -4.40625 L 8.375 -6.625 C 8.390625 -6.671875 8.40625 -6.71875 8.40625 -6.78125 C 8.40625 -6.921875 8.265625 -6.921875 8.15625 -6.921875 L 7.25 -6.21875 C 7.046875 -6.40625 6.53125 -6.921875 5.4375 -6.921875 C 2.296875 -6.921875 0.546875 -4.515625 0.546875 -2.484375 C 0.546875 -0.6875 1.921875 0.171875 3.765625 0.171875 C 4.796875 0.171875 5.484375 -0.171875 5.796875 -0.515625 C 6.046875 -0.25 6.546875 0 6.609375 0 C 6.71875 0 6.734375 -0.078125 6.765625 -0.21875 Z M 7.234375 -2.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.4375 -3.421875 L 5.25 -3.421875 C 5.46875 -3.421875 5.59375 -3.421875 5.75 -3.578125 C 5.953125 -3.734375 5.953125 -3.96875 5.953125 -3.984375 C 5.953125 -4.375 5.59375 -4.375 5.421875 -4.375 L 2.1875 -4.375 C 1.984375 -4.375 1.5625 -4.375 1.03125 -3.890625 C 0.6875 -3.578125 0.3125 -3.078125 0.3125 -2.984375 C 0.3125 -2.84375 0.421875 -2.84375 0.53125 -2.84375 C 0.671875 -2.84375 0.6875 -2.859375 0.78125 -2.96875 C 1.15625 -3.421875 1.796875 -3.421875 1.984375 -3.421875 L 2.875 -3.421875 L 2.515625 -2.375 C 2.4375 -2.140625 2.21875 -1.5 2.140625 -1.25 C 2.03125 -0.9375 1.84375 -0.421875 1.84375 -0.3125 C 1.84375 -0.046875 2.0625 0.125 2.296875 0.125 C 2.375 0.125 2.875 0.125 2.96875 -0.53125 Z M 3.4375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.375 1.625 C 3.375 1.53125 3.3125 1.53125 3.265625 1.53125 C 2.453125 1.484375 2.28125 1.03125 2.28125 0.84375 L 2.28125 -0.921875 C 2.28125 -1.234375 2.03125 -1.5625 1.46875 -1.71875 C 2.28125 -1.96875 2.28125 -2.390625 2.28125 -2.734375 L 2.28125 -3.96875 C 2.28125 -4.375 2.28125 -4.546875 2.53125 -4.734375 C 2.734375 -4.890625 2.96875 -4.96875 3.234375 -4.96875 C 3.328125 -4.984375 3.375 -4.984375 3.375 -5.078125 C 3.375 -5.171875 3.3125 -5.171875 3.21875 -5.171875 C 2.421875 -5.171875 1.75 -4.84375 1.75 -4.296875 L 1.75 -2.6875 C 1.75 -2.53125 1.75 -2.28125 1.5625 -2.109375 C 1.28125 -1.890625 1.015625 -1.828125 0.796875 -1.8125 C 0.703125 -1.8125 0.640625 -1.8125 0.640625 -1.71875 C 0.640625 -1.640625 0.71875 -1.625 0.75 -1.625 C 1.515625 -1.578125 1.6875 -1.171875 1.734375 -1.046875 C 1.75 -0.953125 1.75 -0.9375 1.75 -0.703125 L 1.75 0.703125 C 1.75 0.9375 1.75 1.21875 2.15625 1.46875 C 2.453125 1.65625 2.921875 1.71875 3.21875 1.71875 C 3.3125 1.71875 3.375 1.71875 3.375 1.625 Z M 3.375 1.625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 3.375 -1.71875 C 3.375 -1.8125 3.3125 -1.8125 3.265625 -1.8125 C 2.46875 -1.859375 2.28125 -2.34375 2.28125 -2.53125 L 2.28125 -4.0625 C 2.28125 -4.421875 2.28125 -4.65625 1.875 -4.921875 C 1.578125 -5.109375 1.078125 -5.171875 0.8125 -5.171875 C 0.71875 -5.171875 0.640625 -5.171875 0.640625 -5.078125 C 0.640625 -4.984375 0.71875 -4.96875 0.75 -4.96875 C 1.609375 -4.9375 1.75 -4.4375 1.75 -4.296875 L 1.75 -2.515625 C 1.75 -2.1875 2.03125 -1.875 2.5625 -1.71875 C 1.75 -1.484375 1.75 -1.046875 1.75 -0.71875 L 1.75 0.53125 C 1.75 0.953125 1.75 1.078125 1.5 1.28125 C 1.375 1.40625 1.125 1.515625 0.796875 1.53125 C 0.703125 1.53125 0.640625 1.53125 0.640625 1.625 C 0.640625 1.71875 0.71875 1.71875 0.8125 1.71875 C 1.578125 1.71875 2.28125 1.40625 2.28125 0.859375 L 2.28125 -0.765625 C 2.28125 -0.96875 2.28125 -1.578125 3.296875 -1.625 C 3.296875 -1.625 3.375 -1.640625 3.375 -1.71875 Z M 3.375 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 5.40625 -1.71875 C 5.40625 -1.890625 5.25 -1.890625 5.140625 -1.890625 L 1 -1.890625 C 0.90625 -1.890625 0.75 -1.890625 0.75 -1.71875 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.140625 -1.5625 C 5.234375 -1.5625 5.40625 -1.5625 5.40625 -1.71875 Z M 5.40625 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 5.734375 -0.140625 C 5.734375 -0.25 5.640625 -0.25 5.578125 -0.25 C 5.453125 -0.25 5.234375 -0.25 5.125 -0.46875 L 3.9375 -2.765625 L 3.90625 -2.859375 C 3.90625 -2.859375 3.90625 -2.875 4.0625 -2.984375 L 4.765625 -3.46875 C 5.671875 -4.109375 6.09375 -4.421875 6.59375 -4.453125 C 6.65625 -4.46875 6.75 -4.46875 6.75 -4.609375 C 6.75 -4.671875 6.703125 -4.703125 6.65625 -4.703125 C 6.515625 -4.703125 6.328125 -4.671875 6.1875 -4.671875 C 6 -4.671875 5.53125 -4.703125 5.34375 -4.703125 C 5.3125 -4.703125 5.203125 -4.703125 5.203125 -4.546875 C 5.203125 -4.546875 5.203125 -4.46875 5.3125 -4.453125 C 5.390625 -4.453125 5.484375 -4.4375 5.484375 -4.359375 C 5.484375 -4.234375 5.265625 -4.09375 5.171875 -4.03125 L 2.296875 -2 L 2.84375 -4.171875 C 2.90625 -4.40625 2.921875 -4.453125 3.453125 -4.453125 C 3.5625 -4.453125 3.65625 -4.453125 3.65625 -4.609375 C 3.65625 -4.671875 3.625 -4.703125 3.546875 -4.703125 C 3.34375 -4.703125 2.84375 -4.671875 2.640625 -4.671875 C 2.53125 -4.671875 2.28125 -4.671875 2.171875 -4.6875 C 2.03125 -4.6875 1.875 -4.703125 1.734375 -4.703125 C 1.6875 -4.703125 1.59375 -4.703125 1.59375 -4.546875 C 1.59375 -4.453125 1.671875 -4.453125 1.8125 -4.453125 C 1.921875 -4.453125 1.953125 -4.453125 2.078125 -4.4375 C 2.21875 -4.4375 2.234375 -4.421875 2.234375 -4.34375 C 2.234375 -4.34375 2.234375 -4.296875 2.203125 -4.203125 L 1.28125 -0.53125 C 1.234375 -0.296875 1.21875 -0.25 0.6875 -0.25 C 0.5625 -0.25 0.46875 -0.25 0.46875 -0.09375 C 0.46875 -0.09375 0.46875 0 0.578125 0 C 0.78125 0 1.28125 -0.03125 1.484375 -0.03125 C 1.59375 -0.03125 1.84375 -0.03125 1.953125 -0.015625 C 2.09375 -0.015625 2.265625 0 2.390625 0 C 2.4375 0 2.546875 0 2.546875 -0.15625 C 2.546875 -0.25 2.453125 -0.25 2.328125 -0.25 C 2.328125 -0.25 2.1875 -0.25 2.0625 -0.265625 C 1.90625 -0.28125 1.90625 -0.296875 1.90625 -0.359375 C 1.90625 -0.421875 1.96875 -0.671875 2.21875 -1.6875 L 3.375 -2.5 L 4.375 -0.5625 C 4.421875 -0.46875 4.421875 -0.46875 4.421875 -0.421875 C 4.421875 -0.265625 4.21875 -0.25 4.09375 -0.25 C 4.015625 -0.25 3.921875 -0.25 3.921875 -0.09375 C 3.921875 -0.09375 3.921875 0 4.03125 0 C 4.234375 0 4.734375 -0.03125 4.921875 -0.03125 C 5.125 -0.03125 5.40625 0 5.59375 0 C 5.6875 0 5.734375 -0.046875 5.734375 -0.140625 Z M 5.734375 -0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 5.25 -3.25 L 5.4375 -4.5625 C 5.4375 -4.65625 5.359375 -4.65625 5.234375 -4.65625 L 1 -4.65625 C 0.828125 -4.65625 0.8125 -4.65625 0.765625 -4.515625 L 0.328125 -3.296875 C 0.328125 -3.265625 0.296875 -3.203125 0.296875 -3.171875 C 0.296875 -3.140625 0.3125 -3.078125 0.40625 -3.078125 C 0.5 -3.078125 0.515625 -3.109375 0.5625 -3.234375 C 0.953125 -4.34375 1.1875 -4.40625 2.234375 -4.40625 L 2.515625 -4.40625 C 2.734375 -4.40625 2.734375 -4.40625 2.734375 -4.34375 C 2.734375 -4.34375 2.734375 -4.296875 2.703125 -4.203125 L 1.796875 -0.578125 C 1.734375 -0.3125 1.71875 -0.25 1 -0.25 C 0.75 -0.25 0.6875 -0.25 0.6875 -0.09375 C 0.6875 -0.078125 0.703125 0 0.796875 0 C 1 0 1.203125 -0.015625 1.390625 -0.015625 L 1.984375 -0.03125 L 2.609375 -0.015625 C 2.796875 -0.015625 3 0 3.1875 0 C 3.234375 0 3.34375 0 3.34375 -0.15625 C 3.34375 -0.25 3.265625 -0.25 3.0625 -0.25 C 2.921875 -0.25 2.796875 -0.25 2.65625 -0.265625 C 2.421875 -0.28125 2.40625 -0.3125 2.40625 -0.390625 C 2.40625 -0.4375 2.40625 -0.453125 2.4375 -0.546875 L 3.34375 -4.171875 C 3.390625 -4.375 3.40625 -4.390625 3.5625 -4.40625 C 3.59375 -4.40625 3.84375 -4.40625 3.96875 -4.40625 C 4.390625 -4.40625 4.578125 -4.40625 4.75 -4.359375 C 5.0625 -4.265625 5.078125 -4.0625 5.078125 -3.8125 C 5.078125 -3.703125 5.078125 -3.609375 5.015625 -3.25 L 5.015625 -3.171875 C 5.015625 -3.109375 5.0625 -3.078125 5.125 -3.078125 C 5.234375 -3.078125 5.25 -3.140625 5.25 -3.25 Z M 5.25 -3.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.09375 -1.0625 C 3.09375 -1.703125 2.40625 -1.828125 2.15625 -1.875 C 2.09375 -1.890625 1.921875 -1.921875 1.875 -1.921875 C 1.625 -1.984375 1.5 -2.125 1.5 -2.28125 C 1.5 -2.4375 1.625 -2.625 1.765625 -2.71875 C 1.953125 -2.828125 2.203125 -2.84375 2.3125 -2.84375 C 2.453125 -2.84375 2.8125 -2.828125 2.96875 -2.59375 C 2.796875 -2.546875 2.6875 -2.40625 2.6875 -2.265625 C 2.6875 -2.109375 2.8125 -2.046875 2.90625 -2.046875 C 2.984375 -2.046875 3.234375 -2.09375 3.234375 -2.4375 C 3.234375 -2.890625 2.75 -3.03125 2.328125 -3.03125 C 1.25 -3.03125 1.046875 -2.25 1.046875 -2.03125 C 1.046875 -1.78125 1.203125 -1.609375 1.296875 -1.53125 C 1.46875 -1.390625 1.59375 -1.359375 2.078125 -1.28125 C 2.21875 -1.25 2.65625 -1.171875 2.65625 -0.828125 C 2.65625 -0.703125 2.578125 -0.453125 2.296875 -0.28125 C 2.03125 -0.125 1.6875 -0.125 1.609375 -0.125 C 1.328125 -0.125 0.9375 -0.1875 0.78125 -0.40625 C 1 -0.4375 1.15625 -0.609375 1.15625 -0.8125 C 1.15625 -0.984375 1.03125 -1.0625 0.890625 -1.0625 C 0.6875 -1.0625 0.484375 -0.90625 0.484375 -0.59375 C 0.484375 -0.1875 0.9375 0.0625 1.59375 0.0625 C 2.859375 0.0625 3.09375 -0.796875 3.09375 -1.0625 Z M 3.09375 -1.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 1.640625 -0.046875 C 1.640625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.765625 -0.609375 0.765625 -0.40625 C 0.765625 -0.171875 0.9375 0 1.171875 0 C 1.34375 0 1.453125 -0.109375 1.453125 -0.109375 C 1.453125 0.265625 1.390625 0.703125 0.921875 1.15625 C 0.890625 1.171875 0.875 1.203125 0.875 1.234375 C 0.875 1.28125 0.921875 1.328125 0.96875 1.328125 C 1.0625 1.328125 1.640625 0.78125 1.640625 -0.046875 Z M 1.640625 -0.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 3.9375 -0.984375 C 3.9375 -1.078125 3.84375 -1.078125 3.828125 -1.078125 C 3.734375 -1.078125 3.71875 -1.046875 3.671875 -0.859375 C 3.59375 -0.53125 3.453125 -0.125 3.171875 -0.125 C 2.984375 -0.125 2.9375 -0.28125 2.9375 -0.46875 C 2.9375 -0.578125 3 -0.828125 3.046875 -1 L 3.203125 -1.625 C 3.265625 -1.875 3.265625 -1.921875 3.328125 -2.15625 C 3.375 -2.328125 3.453125 -2.65625 3.453125 -2.6875 C 3.453125 -2.84375 3.328125 -2.90625 3.21875 -2.90625 C 3.109375 -2.90625 2.953125 -2.828125 2.90625 -2.625 C 2.765625 -2.859375 2.53125 -3.03125 2.203125 -3.03125 C 1.3125 -3.03125 0.421875 -2.0625 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.453125 0.0625 C 1.828125 0.0625 2.15625 -0.140625 2.4375 -0.40625 C 2.5625 0 2.96875 0.0625 3.15625 0.0625 C 3.390625 0.0625 3.5625 -0.078125 3.6875 -0.296875 C 3.84375 -0.5625 3.9375 -0.953125 3.9375 -0.984375 Z M 2.796875 -2.15625 L 2.46875 -0.859375 C 2.421875 -0.671875 2.265625 -0.53125 2.109375 -0.40625 C 2.046875 -0.34375 1.78125 -0.125 1.484375 -0.125 C 1.21875 -0.125 0.984375 -0.296875 0.984375 -0.796875 C 0.984375 -1.15625 1.171875 -1.921875 1.34375 -2.1875 C 1.65625 -2.75 2 -2.84375 2.203125 -2.84375 C 2.6875 -2.84375 2.8125 -2.328125 2.8125 -2.25 C 2.8125 -2.21875 2.796875 -2.171875 2.796875 -2.15625 Z M 2.796875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.234375 -6.609375 C 6.234375 -6.6875 6.171875 -6.71875 6.09375 -6.71875 C 5.84375 -6.71875 5.25 -6.6875 5 -6.6875 L 3.546875 -6.71875 C 3.46875 -6.71875 3.34375 -6.71875 3.34375 -6.53125 C 3.34375 -6.421875 3.421875 -6.421875 3.6875 -6.421875 C 3.90625 -6.421875 4 -6.421875 4.25 -6.40625 C 4.484375 -6.375 4.5625 -6.34375 4.5625 -6.203125 C 4.5625 -6.140625 4.53125 -6.078125 4.515625 -6 L 3.390625 -1.484375 C 3.15625 -0.515625 2.484375 0 1.96875 0 C 1.71875 0 1.1875 -0.09375 1.03125 -0.609375 C 1.0625 -0.59375 1.15625 -0.59375 1.15625 -0.59375 C 1.53125 -0.59375 1.796875 -0.9375 1.796875 -1.234375 C 1.796875 -1.546875 1.53125 -1.640625 1.359375 -1.640625 C 1.1875 -1.640625 0.703125 -1.53125 0.703125 -0.859375 C 0.703125 -0.25 1.21875 0.21875 2 0.21875 C 2.90625 0.21875 3.921875 -0.4375 4.171875 -1.40625 L 5.328125 -6 C 5.40625 -6.328125 5.421875 -6.421875 5.96875 -6.421875 C 6.125 -6.421875 6.234375 -6.421875 6.234375 -6.609375 Z M 6.234375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 4.90625 -1.40625 C 4.90625 -1.5 4.8125 -1.5 4.78125 -1.5 C 4.6875 -1.5 4.671875 -1.46875 4.640625 -1.328125 C 4.484375 -0.6875 4.296875 -0.109375 3.890625 -0.109375 C 3.625 -0.109375 3.609375 -0.359375 3.609375 -0.5625 C 3.609375 -0.796875 3.625 -0.859375 3.65625 -1.03125 L 5.078125 -6.71875 C 5.078125 -6.71875 5.078125 -6.828125 4.953125 -6.828125 C 4.796875 -6.828125 3.875 -6.75 3.703125 -6.71875 C 3.625 -6.71875 3.5625 -6.671875 3.5625 -6.53125 C 3.5625 -6.421875 3.65625 -6.421875 3.796875 -6.421875 C 4.265625 -6.421875 4.296875 -6.34375 4.296875 -6.25 L 4.265625 -6.046875 L 3.671875 -3.71875 C 3.5 -4.078125 3.203125 -4.34375 2.765625 -4.34375 C 1.609375 -4.34375 0.390625 -2.90625 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.703125 0.109375 C 1.90625 0.109375 2.390625 0.0625 2.984375 -0.625 C 3.0625 -0.21875 3.40625 0.109375 3.875 0.109375 C 4.21875 0.109375 4.453125 -0.125 4.609375 -0.4375 C 4.78125 -0.78125 4.90625 -1.40625 4.90625 -1.40625 Z M 3.53125 -3.09375 L 3.03125 -1.171875 C 2.984375 -1 2.984375 -0.96875 2.828125 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.71875 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.40625 -2.734375 1.640625 -3.1875 C 1.9375 -3.765625 2.375 -4.140625 2.78125 -4.140625 C 3.421875 -4.140625 3.546875 -3.328125 3.546875 -3.265625 C 3.546875 -3.203125 3.53125 -3.15625 3.53125 -3.09375 Z M 3.53125 -3.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 3.265625 0 L 3.265625 -0.25 L 3 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.375 C 2.3125 -4.5625 2.296875 -4.578125 2.109375 -4.578125 C 1.65625 -4.140625 1.03125 -4.140625 0.75 -4.140625 L 0.75 -3.890625 C 0.921875 -3.890625 1.375 -3.890625 1.75 -4.078125 L 1.75 -0.5625 C 1.75 -0.34375 1.75 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.265625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 9.140625 -6.34375 C 9.25 -6.765625 8.546875 -6.765625 7.96875 -6.765625 L 4.1875 -6.765625 L 3.53125 -6.75 C 3.078125 -6.71875 2.59375 -6.578125 2.1875 -6.28125 C 1.984375 -6.125 1.796875 -5.953125 1.734375 -5.734375 C 1.734375 -5.609375 1.796875 -5.578125 1.90625 -5.578125 C 2.0625 -5.578125 2.28125 -5.65625 2.5 -5.765625 C 2.5625 -5.8125 2.640625 -5.859375 2.703125 -5.890625 C 2.859375 -5.921875 3.078125 -5.921875 3.25 -5.921875 L 4.296875 -5.921875 L 4.140625 -5.15625 C 3.96875 -4.453125 3.734375 -3.75 3.46875 -3.046875 C 3.15625 -2.25 2.78125 -1.4375 2.34375 -0.65625 C 2.328125 -0.625 2.296875 -0.578125 2.28125 -0.546875 C 1.90625 -0.578125 1.609375 -0.765625 1.421875 -1.046875 C 1.390625 -1.078125 1.34375 -1.109375 1.265625 -1.109375 C 1.109375 -1.109375 0.890625 -1.03125 0.671875 -0.890625 C 0.359375 -0.734375 0.15625 -0.5 0.15625 -0.359375 C 0.15625 -0.359375 0.15625 -0.328125 0.171875 -0.3125 C 0.4375 0.109375 0.9375 0.328125 1.5 0.3125 C 1.578125 0.3125 1.640625 0.296875 1.71875 0.28125 C 2.28125 0.1875 2.8125 -0.140625 3.234375 -0.59375 C 3.359375 -0.734375 3.46875 -0.890625 3.546875 -1.046875 C 3.890625 -1.640625 4.1875 -2.25 4.453125 -2.859375 L 6.390625 -2.859375 C 6.390625 -2.765625 6.453125 -2.734375 6.5625 -2.734375 C 6.71875 -2.734375 6.9375 -2.796875 7.15625 -2.921875 C 7.4375 -3.078125 7.625 -3.28125 7.671875 -3.421875 L 7.703125 -3.5625 C 7.703125 -3.6875 7.640625 -3.71875 7.53125 -3.71875 L 4.796875 -3.71875 C 5.046875 -4.375 5.25 -5.03125 5.421875 -5.6875 L 5.46875 -5.921875 L 7.03125 -5.921875 C 7.390625 -5.921875 7.90625 -5.921875 7.875 -5.8125 C 7.875 -5.6875 7.9375 -5.65625 8.046875 -5.65625 C 8.203125 -5.65625 8.421875 -5.734375 8.640625 -5.859375 C 8.90625 -6 9.109375 -6.21875 9.140625 -6.34375 Z M 9.140625 -6.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 7.390625 -1.53125 C 7.390625 -1.640625 7.265625 -1.640625 7.21875 -1.640625 C 6.921875 -1.640625 6.0625 -1.25 5.953125 -0.75 C 5.46875 -0.75 5.125 -0.796875 4.34375 -0.9375 C 3.984375 -1.015625 3.203125 -1.15625 2.640625 -1.15625 C 2.5625 -1.15625 2.453125 -1.15625 2.375 -1.15625 C 2.703125 -1.703125 2.828125 -2.171875 3 -2.8125 C 3.1875 -3.59375 3.578125 -4.984375 4.328125 -5.8125 C 4.453125 -5.953125 4.5 -6 4.75 -6 C 5.203125 -6 5.390625 -5.65625 5.390625 -5.328125 C 5.390625 -5.21875 5.359375 -5.109375 5.359375 -5.0625 C 5.359375 -4.96875 5.46875 -4.9375 5.515625 -4.9375 C 5.65625 -4.9375 5.953125 -5.015625 6.34375 -5.28125 C 6.734375 -5.546875 6.78125 -5.71875 6.78125 -6 C 6.78125 -6.5 6.484375 -6.921875 5.828125 -6.921875 C 5.203125 -6.921875 4.3125 -6.609375 3.5 -5.90625 C 2.375 -4.90625 1.875 -3.28125 1.59375 -2.171875 C 1.453125 -1.578125 1.234375 -0.78125 0.8125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.140625 0.5 0.171875 0.5625 0.171875 C 0.625 0.171875 0.9375 0.15625 1.484375 -0.25 C 1.84375 -0.25 2.1875 -0.21875 3.078125 -0.0625 C 3.53125 0.03125 4.25 0.171875 4.796875 0.171875 C 6.125 0.171875 7.390625 -1 7.390625 -1.53125 Z M 7.390625 -1.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 7.65625 -1.046875 C 7.65625 -1.15625 7.546875 -1.1875 7.484375 -1.1875 C 7.328125 -1.1875 6.984375 -1.078125 6.71875 -0.859375 C 6.3125 -0.859375 6 -0.859375 5.84375 -2.078125 L 5.6875 -3.59375 C 8.28125 -5.015625 8.921875 -5.65625 8.921875 -6.1875 C 8.921875 -6.578125 8.5625 -6.75 8.265625 -6.75 C 7.828125 -6.75 7.140625 -6.265625 7.140625 -6.03125 C 7.140625 -5.96875 7.171875 -5.90625 7.3125 -5.890625 C 7.625 -5.859375 7.65625 -5.625 7.65625 -5.5625 C 7.65625 -5.453125 7.609375 -5.390625 7.390625 -5.21875 C 6.96875 -4.90625 6.265625 -4.515625 5.625 -4.15625 C 5.484375 -5.0625 5.484375 -5.53125 5.359375 -5.96875 C 5.140625 -6.75 4.625 -6.75 4.328125 -6.75 C 2.984375 -6.75 2.390625 -5.953125 2.390625 -5.703125 C 2.390625 -5.59375 2.515625 -5.578125 2.5625 -5.578125 C 2.5625 -5.578125 2.90625 -5.578125 3.34375 -5.890625 C 3.65625 -5.890625 4.03125 -5.890625 4.15625 -4.9375 L 4.34375 -3.453125 C 3.671875 -3.09375 2.765625 -2.59375 2.03125 -2.125 C 1.59375 -1.84375 0.546875 -1.171875 0.546875 -0.578125 C 0.546875 -0.171875 0.890625 0 1.203125 0 C 1.640625 0 2.328125 -0.484375 2.328125 -0.734375 C 2.328125 -0.84375 2.21875 -0.84375 2.140625 -0.859375 C 1.953125 -0.875 1.828125 -1.015625 1.828125 -1.1875 C 1.828125 -1.3125 1.875 -1.359375 2.140625 -1.5625 C 2.609375 -1.90625 3.34375 -2.3125 4.40625 -2.890625 C 4.609375 -1.109375 4.625 -1 4.65625 -0.875 C 4.875 0 5.40625 0 5.734375 0 C 7.09375 0 7.65625 -0.8125 7.65625 -1.046875 Z M 7.65625 -1.046875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 1.179688 30 L 49 30 L 49 32 L 1.179688 32 Z M 1.179688 30 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 232 15 L 253.304688 15 L 253.304688 47 L 232 47 Z M 232 15 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -91.257897 -30.611219 L 91.819975 -30.611219 L 91.819975 30.612464 L -91.257897 30.612464 Z M -91.257897 -30.611219 " transform="matrix(0.987797,0,0,-0.987797,126.964578,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="40.101672" y="11.017886"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="48.82787" y="12.794933"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="52.860057" y="12.794933"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="59.955402" y="12.794933"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.008068 -14.172332 L 17.008605 -14.172332 L 17.008605 14.173577 L -17.008068 14.173577 Z M -17.008068 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,126.964578,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="122.60148" y="34.599561"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -74.81901 -14.172332 L -40.683703 -14.172332 L -40.683703 14.173577 L -74.81901 14.173577 Z M -74.81901 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,126.964578,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="56.339077" y="33.145524"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="62.742965" y="28.935534"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="68.893976" y="28.935534"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="61.796655" y="36.497119"/>
<use xlink:href="#glyph2-4" x="65.511041" y="36.497119"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="67.847899" y="36.497119"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="71.880086" y="36.497119"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="78.975431" y="36.497119"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.680286 -14.172332 L 75.381088 -14.172332 L 75.381088 14.173577 L 40.680286 14.173577 Z M 40.680286 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,126.964578,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="170.429617" y="33.011184"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="176.832516" y="28.801193"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="182.983527" y="28.801193"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="175.886207" y="36.362779"/>
<use xlink:href="#glyph2-4" x="180.155133" y="36.362779"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="182.492592" y="36.362779"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="186.524779" y="36.362779"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="193.619136" y="36.362779"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -79.951961 0.000622772 L -126.342287 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,126.964578,31.223271)"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052153 0.000622772 L 1.607287 1.681288 L 3.086273 0.000622772 L 1.607287 -1.683997 Z M 6.052153 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,45.185764,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="5.938718" y="23.952099"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="14.951376" y="25.729145"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="18.983563" y="25.729145"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="26.078908" y="25.729145"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -40.185435 0.000622772 L -22.141018 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,126.964578,31.223271)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052256 0.000622772 L 1.60739 1.681288 L 3.086376 0.000622772 L 1.60739 -1.683997 Z M 6.052256 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,102.291131,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="99.448509" y="27.451863"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.506873 0.000622772 L 35.55129 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,126.964578,31.223271)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054684 0.000622772 L 1.609818 1.681288 L 3.088804 0.000622772 L 1.609818 -1.683997 Z M 6.054684 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,159.277014,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="150.006916" y="27.451863"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="155.128643" y="27.451863"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 75.879356 0.000622772 L 122.269681 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,126.964578,31.223271)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 250.917969 31.222656 L 246.527344 29.5625 L 247.988281 31.222656 L 246.527344 32.886719 Z M 250.917969 31.222656 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054186 0.000622772 L 1.609319 1.681288 L 3.088305 0.000622772 L 1.609319 -1.683997 Z M 6.054186 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,244.937663,31.223271)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="223.409114" y="23.952099"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="232.892952" y="25.729145"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="236.925139" y="25.729145"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="244.020484" y="25.729145"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,190 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="257.562pt" height="63.219pt" viewBox="0 0 257.562 63.219" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.234375 -2.0625 C 7.28125 -2.21875 7.28125 -2.21875 7.359375 -2.234375 C 7.46875 -2.25 7.609375 -2.25 7.734375 -2.25 C 7.96875 -2.25 8.125 -2.25 8.125 -2.546875 C 8.125 -2.59375 8.09375 -2.71875 7.921875 -2.71875 C 7.703125 -2.71875 7.484375 -2.703125 7.25 -2.703125 C 7.03125 -2.703125 6.8125 -2.6875 6.59375 -2.6875 C 6.203125 -2.6875 5.234375 -2.71875 4.84375 -2.71875 C 4.71875 -2.71875 4.53125 -2.71875 4.53125 -2.4375 C 4.53125 -2.25 4.71875 -2.25 4.875 -2.25 L 5.234375 -2.25 C 5.34375 -2.25 5.890625 -2.25 5.890625 -2.1875 C 5.890625 -2.1875 5.890625 -2.171875 5.8125 -1.921875 C 5.8125 -1.859375 5.65625 -1.234375 5.640625 -1.21875 C 5.46875 -0.546875 4.6875 -0.296875 4.0625 -0.296875 C 3.5 -0.296875 2.90625 -0.40625 2.4375 -0.78125 C 1.921875 -1.21875 1.921875 -1.90625 1.921875 -2.109375 C 1.921875 -2.5625 2.125 -4.328125 3.078125 -5.40625 C 3.65625 -6.046875 4.59375 -6.453125 5.59375 -6.453125 C 6.84375 -6.453125 7.296875 -5.5 7.296875 -4.703125 C 7.296875 -4.59375 7.28125 -4.4375 7.28125 -4.34375 C 7.28125 -4.1875 7.40625 -4.1875 7.546875 -4.1875 C 7.75 -4.1875 7.765625 -4.203125 7.8125 -4.40625 L 8.375 -6.625 C 8.390625 -6.671875 8.40625 -6.71875 8.40625 -6.78125 C 8.40625 -6.921875 8.265625 -6.921875 8.15625 -6.921875 L 7.25 -6.21875 C 7.046875 -6.40625 6.53125 -6.921875 5.4375 -6.921875 C 2.296875 -6.921875 0.546875 -4.515625 0.546875 -2.484375 C 0.546875 -0.6875 1.921875 0.171875 3.765625 0.171875 C 4.796875 0.171875 5.484375 -0.171875 5.796875 -0.515625 C 6.046875 -0.25 6.546875 0 6.609375 0 C 6.71875 0 6.734375 -0.078125 6.765625 -0.21875 Z M 7.234375 -2.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.4375 -3.421875 L 5.25 -3.421875 C 5.46875 -3.421875 5.59375 -3.421875 5.75 -3.578125 C 5.953125 -3.734375 5.953125 -3.96875 5.953125 -3.984375 C 5.953125 -4.375 5.59375 -4.375 5.421875 -4.375 L 2.1875 -4.375 C 1.984375 -4.375 1.5625 -4.375 1.03125 -3.890625 C 0.6875 -3.578125 0.3125 -3.078125 0.3125 -2.984375 C 0.3125 -2.84375 0.421875 -2.84375 0.53125 -2.84375 C 0.671875 -2.84375 0.6875 -2.859375 0.78125 -2.96875 C 1.15625 -3.421875 1.796875 -3.421875 1.984375 -3.421875 L 2.875 -3.421875 L 2.515625 -2.375 C 2.4375 -2.140625 2.21875 -1.5 2.140625 -1.25 C 2.03125 -0.9375 1.84375 -0.421875 1.84375 -0.3125 C 1.84375 -0.046875 2.0625 0.125 2.296875 0.125 C 2.375 0.125 2.875 0.125 2.96875 -0.53125 Z M 3.4375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.375 1.625 C 3.375 1.53125 3.3125 1.53125 3.265625 1.53125 C 2.453125 1.484375 2.28125 1.03125 2.28125 0.84375 L 2.28125 -0.921875 C 2.28125 -1.234375 2.03125 -1.5625 1.46875 -1.71875 C 2.28125 -1.96875 2.28125 -2.390625 2.28125 -2.734375 L 2.28125 -3.96875 C 2.28125 -4.375 2.28125 -4.546875 2.53125 -4.734375 C 2.734375 -4.890625 2.96875 -4.96875 3.234375 -4.96875 C 3.328125 -4.984375 3.375 -4.984375 3.375 -5.078125 C 3.375 -5.171875 3.3125 -5.171875 3.21875 -5.171875 C 2.421875 -5.171875 1.75 -4.84375 1.75 -4.296875 L 1.75 -2.6875 C 1.75 -2.53125 1.75 -2.28125 1.5625 -2.109375 C 1.28125 -1.890625 1.015625 -1.828125 0.796875 -1.8125 C 0.703125 -1.8125 0.640625 -1.8125 0.640625 -1.71875 C 0.640625 -1.640625 0.71875 -1.625 0.75 -1.625 C 1.515625 -1.578125 1.6875 -1.171875 1.734375 -1.046875 C 1.75 -0.953125 1.75 -0.9375 1.75 -0.703125 L 1.75 0.703125 C 1.75 0.9375 1.75 1.21875 2.15625 1.46875 C 2.453125 1.65625 2.921875 1.71875 3.21875 1.71875 C 3.3125 1.71875 3.375 1.71875 3.375 1.625 Z M 3.375 1.625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 3.375 -1.71875 C 3.375 -1.8125 3.3125 -1.8125 3.265625 -1.8125 C 2.46875 -1.859375 2.28125 -2.34375 2.28125 -2.53125 L 2.28125 -4.0625 C 2.28125 -4.421875 2.28125 -4.65625 1.875 -4.921875 C 1.578125 -5.109375 1.078125 -5.171875 0.8125 -5.171875 C 0.71875 -5.171875 0.640625 -5.171875 0.640625 -5.078125 C 0.640625 -4.984375 0.71875 -4.96875 0.75 -4.96875 C 1.609375 -4.9375 1.75 -4.4375 1.75 -4.296875 L 1.75 -2.515625 C 1.75 -2.1875 2.03125 -1.875 2.5625 -1.71875 C 1.75 -1.484375 1.75 -1.046875 1.75 -0.71875 L 1.75 0.53125 C 1.75 0.953125 1.75 1.078125 1.5 1.28125 C 1.375 1.40625 1.125 1.515625 0.796875 1.53125 C 0.703125 1.53125 0.640625 1.53125 0.640625 1.625 C 0.640625 1.71875 0.71875 1.71875 0.8125 1.71875 C 1.578125 1.71875 2.28125 1.40625 2.28125 0.859375 L 2.28125 -0.765625 C 2.28125 -0.96875 2.28125 -1.578125 3.296875 -1.625 C 3.296875 -1.625 3.375 -1.640625 3.375 -1.71875 Z M 3.375 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 5.40625 -1.71875 C 5.40625 -1.890625 5.25 -1.890625 5.140625 -1.890625 L 1 -1.890625 C 0.90625 -1.890625 0.75 -1.890625 0.75 -1.71875 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.140625 -1.5625 C 5.234375 -1.5625 5.40625 -1.5625 5.40625 -1.71875 Z M 5.40625 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 7.859375 -4.609375 C 7.859375 -4.703125 7.765625 -4.703125 7.65625 -4.703125 L 6.71875 -4.703125 C 6.515625 -4.703125 6.5 -4.703125 6.421875 -4.5625 L 3.75 -0.640625 L 3.078125 -4.515625 C 3.03125 -4.703125 3.03125 -4.703125 2.828125 -4.703125 L 1.84375 -4.703125 C 1.703125 -4.703125 1.625 -4.703125 1.625 -4.546875 C 1.625 -4.453125 1.703125 -4.453125 1.859375 -4.453125 C 1.96875 -4.453125 1.984375 -4.453125 2.109375 -4.4375 C 2.25 -4.4375 2.265625 -4.421875 2.265625 -4.34375 C 2.265625 -4.34375 2.265625 -4.296875 2.234375 -4.203125 L 1.375 -0.734375 C 1.3125 -0.5 1.203125 -0.265625 0.65625 -0.25 C 0.59375 -0.25 0.515625 -0.234375 0.515625 -0.09375 C 0.515625 -0.09375 0.515625 0 0.609375 0 C 0.8125 0 1.109375 -0.03125 1.328125 -0.03125 C 1.5 -0.03125 1.890625 0 2.0625 0 C 2.09375 0 2.203125 0 2.203125 -0.15625 C 2.203125 -0.234375 2.109375 -0.25 2.046875 -0.25 C 1.609375 -0.265625 1.609375 -0.4375 1.609375 -0.53125 C 1.609375 -0.5625 1.609375 -0.59375 1.640625 -0.703125 L 2.546875 -4.375 L 2.5625 -4.375 L 3.296875 -0.1875 C 3.3125 -0.0625 3.328125 0 3.4375 0 C 3.53125 0 3.578125 -0.078125 3.625 -0.15625 L 6.53125 -4.4375 L 5.5625 -0.53125 C 5.5 -0.296875 5.484375 -0.25 4.953125 -0.25 C 4.828125 -0.25 4.75 -0.25 4.75 -0.09375 C 4.75 -0.09375 4.75 0 4.859375 0 C 4.984375 0 5.140625 -0.015625 5.28125 -0.015625 L 5.71875 -0.03125 C 5.90625 -0.03125 6.40625 0 6.59375 0 C 6.640625 0 6.734375 0 6.734375 -0.15625 C 6.734375 -0.25 6.65625 -0.25 6.515625 -0.25 C 6.515625 -0.25 6.375 -0.25 6.25 -0.265625 C 6.09375 -0.28125 6.09375 -0.296875 6.09375 -0.359375 C 6.09375 -0.40625 6.125 -0.46875 6.125 -0.515625 L 7.03125 -4.140625 C 7.09375 -4.40625 7.109375 -4.453125 7.625 -4.453125 C 7.765625 -4.453125 7.859375 -4.453125 7.859375 -4.609375 Z M 7.859375 -4.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 5.25 -3.25 L 5.4375 -4.5625 C 5.4375 -4.65625 5.359375 -4.65625 5.234375 -4.65625 L 1 -4.65625 C 0.828125 -4.65625 0.8125 -4.65625 0.765625 -4.515625 L 0.328125 -3.296875 C 0.328125 -3.265625 0.296875 -3.203125 0.296875 -3.171875 C 0.296875 -3.140625 0.3125 -3.078125 0.40625 -3.078125 C 0.5 -3.078125 0.515625 -3.109375 0.5625 -3.234375 C 0.953125 -4.34375 1.1875 -4.40625 2.234375 -4.40625 L 2.515625 -4.40625 C 2.734375 -4.40625 2.734375 -4.40625 2.734375 -4.34375 C 2.734375 -4.34375 2.734375 -4.296875 2.703125 -4.203125 L 1.796875 -0.578125 C 1.734375 -0.3125 1.71875 -0.25 1 -0.25 C 0.75 -0.25 0.6875 -0.25 0.6875 -0.09375 C 0.6875 -0.078125 0.703125 0 0.796875 0 C 1 0 1.203125 -0.015625 1.390625 -0.015625 L 1.984375 -0.03125 L 2.609375 -0.015625 C 2.796875 -0.015625 3 0 3.1875 0 C 3.234375 0 3.34375 0 3.34375 -0.15625 C 3.34375 -0.25 3.265625 -0.25 3.0625 -0.25 C 2.921875 -0.25 2.796875 -0.25 2.65625 -0.265625 C 2.421875 -0.28125 2.40625 -0.3125 2.40625 -0.390625 C 2.40625 -0.4375 2.40625 -0.453125 2.4375 -0.546875 L 3.34375 -4.171875 C 3.390625 -4.375 3.40625 -4.390625 3.5625 -4.40625 C 3.59375 -4.40625 3.84375 -4.40625 3.96875 -4.40625 C 4.390625 -4.40625 4.578125 -4.40625 4.75 -4.359375 C 5.0625 -4.265625 5.078125 -4.0625 5.078125 -3.8125 C 5.078125 -3.703125 5.078125 -3.609375 5.015625 -3.25 L 5.015625 -3.171875 C 5.015625 -3.109375 5.0625 -3.078125 5.125 -3.078125 C 5.234375 -3.078125 5.25 -3.140625 5.25 -3.25 Z M 5.25 -3.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.09375 -1.0625 C 3.09375 -1.703125 2.40625 -1.828125 2.15625 -1.875 C 2.09375 -1.890625 1.921875 -1.921875 1.875 -1.921875 C 1.625 -1.984375 1.5 -2.125 1.5 -2.28125 C 1.5 -2.4375 1.625 -2.625 1.765625 -2.71875 C 1.953125 -2.828125 2.203125 -2.84375 2.3125 -2.84375 C 2.453125 -2.84375 2.8125 -2.828125 2.96875 -2.59375 C 2.796875 -2.546875 2.6875 -2.40625 2.6875 -2.265625 C 2.6875 -2.109375 2.8125 -2.046875 2.90625 -2.046875 C 2.984375 -2.046875 3.234375 -2.09375 3.234375 -2.4375 C 3.234375 -2.890625 2.75 -3.03125 2.328125 -3.03125 C 1.25 -3.03125 1.046875 -2.25 1.046875 -2.03125 C 1.046875 -1.78125 1.203125 -1.609375 1.296875 -1.53125 C 1.46875 -1.390625 1.59375 -1.359375 2.078125 -1.28125 C 2.21875 -1.25 2.65625 -1.171875 2.65625 -0.828125 C 2.65625 -0.703125 2.578125 -0.453125 2.296875 -0.28125 C 2.03125 -0.125 1.6875 -0.125 1.609375 -0.125 C 1.328125 -0.125 0.9375 -0.1875 0.78125 -0.40625 C 1 -0.4375 1.15625 -0.609375 1.15625 -0.8125 C 1.15625 -0.984375 1.03125 -1.0625 0.890625 -1.0625 C 0.6875 -1.0625 0.484375 -0.90625 0.484375 -0.59375 C 0.484375 -0.1875 0.9375 0.0625 1.59375 0.0625 C 2.859375 0.0625 3.09375 -0.796875 3.09375 -1.0625 Z M 3.09375 -1.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 1.640625 -0.046875 C 1.640625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.765625 -0.609375 0.765625 -0.40625 C 0.765625 -0.171875 0.9375 0 1.171875 0 C 1.34375 0 1.453125 -0.109375 1.453125 -0.109375 C 1.453125 0.265625 1.390625 0.703125 0.921875 1.15625 C 0.890625 1.171875 0.875 1.203125 0.875 1.234375 C 0.875 1.28125 0.921875 1.328125 0.96875 1.328125 C 1.0625 1.328125 1.640625 0.78125 1.640625 -0.046875 Z M 1.640625 -0.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 3.9375 -0.984375 C 3.9375 -1.078125 3.84375 -1.078125 3.828125 -1.078125 C 3.734375 -1.078125 3.71875 -1.046875 3.671875 -0.859375 C 3.59375 -0.53125 3.453125 -0.125 3.171875 -0.125 C 2.984375 -0.125 2.9375 -0.28125 2.9375 -0.46875 C 2.9375 -0.578125 3 -0.828125 3.046875 -1 L 3.203125 -1.625 C 3.265625 -1.875 3.265625 -1.921875 3.328125 -2.15625 C 3.375 -2.328125 3.453125 -2.65625 3.453125 -2.6875 C 3.453125 -2.84375 3.328125 -2.90625 3.21875 -2.90625 C 3.109375 -2.90625 2.953125 -2.828125 2.90625 -2.625 C 2.765625 -2.859375 2.53125 -3.03125 2.203125 -3.03125 C 1.3125 -3.03125 0.421875 -2.0625 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.453125 0.0625 C 1.828125 0.0625 2.15625 -0.140625 2.4375 -0.40625 C 2.5625 0 2.96875 0.0625 3.15625 0.0625 C 3.390625 0.0625 3.5625 -0.078125 3.6875 -0.296875 C 3.84375 -0.5625 3.9375 -0.953125 3.9375 -0.984375 Z M 2.796875 -2.15625 L 2.46875 -0.859375 C 2.421875 -0.671875 2.265625 -0.53125 2.109375 -0.40625 C 2.046875 -0.34375 1.78125 -0.125 1.484375 -0.125 C 1.21875 -0.125 0.984375 -0.296875 0.984375 -0.796875 C 0.984375 -1.15625 1.171875 -1.921875 1.34375 -2.1875 C 1.65625 -2.75 2 -2.84375 2.203125 -2.84375 C 2.6875 -2.84375 2.8125 -2.328125 2.8125 -2.25 C 2.8125 -2.21875 2.796875 -2.171875 2.796875 -2.15625 Z M 2.796875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.234375 -6.609375 C 6.234375 -6.6875 6.171875 -6.71875 6.09375 -6.71875 C 5.84375 -6.71875 5.25 -6.6875 5 -6.6875 L 3.546875 -6.71875 C 3.46875 -6.71875 3.34375 -6.71875 3.34375 -6.53125 C 3.34375 -6.421875 3.421875 -6.421875 3.6875 -6.421875 C 3.90625 -6.421875 4 -6.421875 4.25 -6.40625 C 4.484375 -6.375 4.5625 -6.34375 4.5625 -6.203125 C 4.5625 -6.140625 4.53125 -6.078125 4.515625 -6 L 3.390625 -1.484375 C 3.15625 -0.515625 2.484375 0 1.96875 0 C 1.71875 0 1.1875 -0.09375 1.03125 -0.609375 C 1.0625 -0.59375 1.15625 -0.59375 1.15625 -0.59375 C 1.53125 -0.59375 1.796875 -0.9375 1.796875 -1.234375 C 1.796875 -1.546875 1.53125 -1.640625 1.359375 -1.640625 C 1.1875 -1.640625 0.703125 -1.53125 0.703125 -0.859375 C 0.703125 -0.25 1.21875 0.21875 2 0.21875 C 2.90625 0.21875 3.921875 -0.4375 4.171875 -1.40625 L 5.328125 -6 C 5.40625 -6.328125 5.421875 -6.421875 5.96875 -6.421875 C 6.125 -6.421875 6.234375 -6.421875 6.234375 -6.609375 Z M 6.234375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 4.90625 -1.40625 C 4.90625 -1.5 4.8125 -1.5 4.78125 -1.5 C 4.6875 -1.5 4.671875 -1.46875 4.640625 -1.328125 C 4.484375 -0.6875 4.296875 -0.109375 3.890625 -0.109375 C 3.625 -0.109375 3.609375 -0.359375 3.609375 -0.5625 C 3.609375 -0.796875 3.625 -0.859375 3.65625 -1.03125 L 5.078125 -6.71875 C 5.078125 -6.71875 5.078125 -6.828125 4.953125 -6.828125 C 4.796875 -6.828125 3.875 -6.75 3.703125 -6.71875 C 3.625 -6.71875 3.5625 -6.671875 3.5625 -6.53125 C 3.5625 -6.421875 3.65625 -6.421875 3.796875 -6.421875 C 4.265625 -6.421875 4.296875 -6.34375 4.296875 -6.25 L 4.265625 -6.046875 L 3.671875 -3.71875 C 3.5 -4.078125 3.203125 -4.34375 2.765625 -4.34375 C 1.609375 -4.34375 0.390625 -2.90625 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.703125 0.109375 C 1.90625 0.109375 2.390625 0.0625 2.984375 -0.625 C 3.0625 -0.21875 3.40625 0.109375 3.875 0.109375 C 4.21875 0.109375 4.453125 -0.125 4.609375 -0.4375 C 4.78125 -0.78125 4.90625 -1.40625 4.90625 -1.40625 Z M 3.53125 -3.09375 L 3.03125 -1.171875 C 2.984375 -1 2.984375 -0.96875 2.828125 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.71875 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.40625 -2.734375 1.640625 -3.1875 C 1.9375 -3.765625 2.375 -4.140625 2.78125 -4.140625 C 3.421875 -4.140625 3.546875 -3.328125 3.546875 -3.265625 C 3.546875 -3.203125 3.53125 -3.15625 3.53125 -3.09375 Z M 3.53125 -3.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 3.265625 0 L 3.265625 -0.25 L 3 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.375 C 2.3125 -4.5625 2.296875 -4.578125 2.109375 -4.578125 C 1.65625 -4.140625 1.03125 -4.140625 0.75 -4.140625 L 0.75 -3.890625 C 0.921875 -3.890625 1.375 -3.890625 1.75 -4.078125 L 1.75 -0.5625 C 1.75 -0.34375 1.75 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.265625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 9.140625 -6.34375 C 9.25 -6.765625 8.546875 -6.765625 7.96875 -6.765625 L 4.1875 -6.765625 L 3.53125 -6.75 C 3.078125 -6.71875 2.59375 -6.578125 2.1875 -6.28125 C 1.984375 -6.125 1.796875 -5.953125 1.734375 -5.734375 C 1.734375 -5.609375 1.796875 -5.578125 1.90625 -5.578125 C 2.0625 -5.578125 2.28125 -5.65625 2.5 -5.765625 C 2.5625 -5.8125 2.640625 -5.859375 2.703125 -5.890625 C 2.859375 -5.921875 3.078125 -5.921875 3.25 -5.921875 L 4.296875 -5.921875 L 4.140625 -5.15625 C 3.96875 -4.453125 3.734375 -3.75 3.46875 -3.046875 C 3.15625 -2.25 2.78125 -1.4375 2.34375 -0.65625 C 2.328125 -0.625 2.296875 -0.578125 2.28125 -0.546875 C 1.90625 -0.578125 1.609375 -0.765625 1.421875 -1.046875 C 1.390625 -1.078125 1.34375 -1.109375 1.265625 -1.109375 C 1.109375 -1.109375 0.890625 -1.03125 0.671875 -0.890625 C 0.359375 -0.734375 0.15625 -0.5 0.15625 -0.359375 C 0.15625 -0.359375 0.15625 -0.328125 0.171875 -0.3125 C 0.4375 0.109375 0.9375 0.328125 1.5 0.3125 C 1.578125 0.3125 1.640625 0.296875 1.71875 0.28125 C 2.28125 0.1875 2.8125 -0.140625 3.234375 -0.59375 C 3.359375 -0.734375 3.46875 -0.890625 3.546875 -1.046875 C 3.890625 -1.640625 4.1875 -2.25 4.453125 -2.859375 L 6.390625 -2.859375 C 6.390625 -2.765625 6.453125 -2.734375 6.5625 -2.734375 C 6.71875 -2.734375 6.9375 -2.796875 7.15625 -2.921875 C 7.4375 -3.078125 7.625 -3.28125 7.671875 -3.421875 L 7.703125 -3.5625 C 7.703125 -3.6875 7.640625 -3.71875 7.53125 -3.71875 L 4.796875 -3.71875 C 5.046875 -4.375 5.25 -5.03125 5.421875 -5.6875 L 5.46875 -5.921875 L 7.03125 -5.921875 C 7.390625 -5.921875 7.90625 -5.921875 7.875 -5.8125 C 7.875 -5.6875 7.9375 -5.65625 8.046875 -5.65625 C 8.203125 -5.65625 8.421875 -5.734375 8.640625 -5.859375 C 8.90625 -6 9.109375 -6.21875 9.140625 -6.34375 Z M 9.140625 -6.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 7.390625 -1.53125 C 7.390625 -1.640625 7.265625 -1.640625 7.21875 -1.640625 C 6.921875 -1.640625 6.0625 -1.25 5.953125 -0.75 C 5.46875 -0.75 5.125 -0.796875 4.34375 -0.9375 C 3.984375 -1.015625 3.203125 -1.15625 2.640625 -1.15625 C 2.5625 -1.15625 2.453125 -1.15625 2.375 -1.15625 C 2.703125 -1.703125 2.828125 -2.171875 3 -2.8125 C 3.1875 -3.59375 3.578125 -4.984375 4.328125 -5.8125 C 4.453125 -5.953125 4.5 -6 4.75 -6 C 5.203125 -6 5.390625 -5.65625 5.390625 -5.328125 C 5.390625 -5.21875 5.359375 -5.109375 5.359375 -5.0625 C 5.359375 -4.96875 5.46875 -4.9375 5.515625 -4.9375 C 5.65625 -4.9375 5.953125 -5.015625 6.34375 -5.28125 C 6.734375 -5.546875 6.78125 -5.71875 6.78125 -6 C 6.78125 -6.5 6.484375 -6.921875 5.828125 -6.921875 C 5.203125 -6.921875 4.3125 -6.609375 3.5 -5.90625 C 2.375 -4.90625 1.875 -3.28125 1.59375 -2.171875 C 1.453125 -1.578125 1.234375 -0.78125 0.8125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.140625 0.5 0.171875 0.5625 0.171875 C 0.625 0.171875 0.9375 0.15625 1.484375 -0.25 C 1.84375 -0.25 2.1875 -0.21875 3.078125 -0.0625 C 3.53125 0.03125 4.25 0.171875 4.796875 0.171875 C 6.125 0.171875 7.390625 -1 7.390625 -1.53125 Z M 7.390625 -1.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 7.65625 -1.046875 C 7.65625 -1.15625 7.546875 -1.1875 7.484375 -1.1875 C 7.328125 -1.1875 6.984375 -1.078125 6.71875 -0.859375 C 6.3125 -0.859375 6 -0.859375 5.84375 -2.078125 L 5.6875 -3.59375 C 8.28125 -5.015625 8.921875 -5.65625 8.921875 -6.1875 C 8.921875 -6.578125 8.5625 -6.75 8.265625 -6.75 C 7.828125 -6.75 7.140625 -6.265625 7.140625 -6.03125 C 7.140625 -5.96875 7.171875 -5.90625 7.3125 -5.890625 C 7.625 -5.859375 7.65625 -5.625 7.65625 -5.5625 C 7.65625 -5.453125 7.609375 -5.390625 7.390625 -5.21875 C 6.96875 -4.90625 6.265625 -4.515625 5.625 -4.15625 C 5.484375 -5.0625 5.484375 -5.53125 5.359375 -5.96875 C 5.140625 -6.75 4.625 -6.75 4.328125 -6.75 C 2.984375 -6.75 2.390625 -5.953125 2.390625 -5.703125 C 2.390625 -5.59375 2.515625 -5.578125 2.5625 -5.578125 C 2.5625 -5.578125 2.90625 -5.578125 3.34375 -5.890625 C 3.65625 -5.890625 4.03125 -5.890625 4.15625 -4.9375 L 4.34375 -3.453125 C 3.671875 -3.09375 2.765625 -2.59375 2.03125 -2.125 C 1.59375 -1.84375 0.546875 -1.171875 0.546875 -0.578125 C 0.546875 -0.171875 0.890625 0 1.203125 0 C 1.640625 0 2.328125 -0.484375 2.328125 -0.734375 C 2.328125 -0.84375 2.21875 -0.84375 2.140625 -0.859375 C 1.953125 -0.875 1.828125 -1.015625 1.828125 -1.1875 C 1.828125 -1.3125 1.875 -1.359375 2.140625 -1.5625 C 2.609375 -1.90625 3.34375 -2.3125 4.40625 -2.890625 C 4.609375 -1.109375 4.625 -1 4.65625 -0.875 C 4.875 0 5.40625 0 5.734375 0 C 7.09375 0 7.65625 -0.8125 7.65625 -1.046875 Z M 7.65625 -1.046875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 1.355469 30 L 49 30 L 49 32 L 1.355469 32 Z M 1.355469 30 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 235 15 L 255.773438 15 L 255.773438 47 L 235 47 Z M 235 15 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -92.418806 -30.611219 L 92.980362 -30.611219 L 92.980362 30.612464 L -92.418806 30.612464 Z M -92.418806 -30.611219 " transform="matrix(0.987797,0,0,-0.987797,128.287102,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="40.276376" y="11.017886"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="49.002573" y="12.794933"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="53.03476" y="12.794933"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="61.277925" y="12.794933"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.006351 -14.172332 L 17.006367 -14.172332 L 17.006367 14.173577 L -17.006351 14.173577 Z M -17.006351 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,128.287102,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="123.924003" y="34.599561"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -75.979919 -14.172332 L -40.681986 -14.172332 L -40.681986 14.173577 L -75.979919 14.173577 Z M -75.979919 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,128.287102,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="56.513781" y="33.145524"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="62.917668" y="28.935534"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="69.068679" y="28.935534"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="61.971358" y="36.497119"/>
<use xlink:href="#glyph2-4" x="65.685744" y="36.497119"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="68.022602" y="36.497119"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="72.054789" y="36.497119"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="80.297954" y="36.497119"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.682002 -14.172332 L 76.541475 -14.172332 L 76.541475 14.173577 L 40.682002 14.173577 Z M 40.682002 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,128.287102,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="171.75214" y="33.011184"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="178.156027" y="28.801193"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="184.30605" y="28.801193"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="177.20873" y="36.362779"/>
<use xlink:href="#glyph2-4" x="181.477656" y="36.362779"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="183.815115" y="36.362779"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="187.847302" y="36.362779"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="196.090467" y="36.362779"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -81.11287 0.000622772 L -127.503195 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,128.287102,31.223271)"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053565 0.000622772 L 1.608699 1.681288 L 3.087684 0.000622772 L 1.608699 -1.683997 Z M 6.053565 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,45.360151,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="6.113421" y="23.952099"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="15.126079" y="25.729145"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="19.158266" y="25.729145"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="27.401431" y="25.729145"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -40.183719 0.000622772 L -22.139301 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,128.287102,31.223271)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053973 0.000622772 L 1.609107 1.681288 L 3.088092 0.000622772 L 1.609107 -1.683997 Z M 6.053973 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,103.613654,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="100.771032" y="27.451863"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.504635 0.000622772 L 35.549052 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,128.287102,31.223271)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052446 0.000622772 L 1.60758 1.681288 L 3.086566 0.000622772 L 1.60758 -1.683997 Z M 6.052446 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,160.599538,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="151.329439" y="27.451863"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="156.451166" y="27.451863"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.039743 0.000622772 L 123.430068 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,128.287102,31.223271)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 253.386719 31.222656 L 248.996094 29.5625 L 250.457031 31.222656 L 248.996094 32.886719 Z M 253.386719 31.222656 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052263 0.000622772 L 1.607397 1.681288 L 3.086382 0.000622772 L 1.607397 -1.683997 Z M 6.052263 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,247.408312,31.223271)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="224.731637" y="23.952099"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="234.216463" y="25.729145"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="238.24865" y="25.729145"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="246.491815" y="25.729145"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@ -0,0 +1,144 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="206.303pt" height="63.219pt" viewBox="0 0 206.303 63.219" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.234375 -2.0625 C 7.28125 -2.21875 7.28125 -2.21875 7.359375 -2.234375 C 7.46875 -2.25 7.609375 -2.25 7.734375 -2.25 C 7.96875 -2.25 8.125 -2.25 8.125 -2.546875 C 8.125 -2.59375 8.09375 -2.71875 7.921875 -2.71875 C 7.703125 -2.71875 7.484375 -2.703125 7.25 -2.703125 C 7.03125 -2.703125 6.8125 -2.6875 6.59375 -2.6875 C 6.203125 -2.6875 5.234375 -2.71875 4.84375 -2.71875 C 4.71875 -2.71875 4.53125 -2.71875 4.53125 -2.4375 C 4.53125 -2.25 4.71875 -2.25 4.875 -2.25 L 5.234375 -2.25 C 5.34375 -2.25 5.890625 -2.25 5.890625 -2.1875 C 5.890625 -2.1875 5.890625 -2.171875 5.8125 -1.921875 C 5.8125 -1.859375 5.65625 -1.234375 5.640625 -1.21875 C 5.46875 -0.546875 4.6875 -0.296875 4.0625 -0.296875 C 3.5 -0.296875 2.90625 -0.40625 2.4375 -0.78125 C 1.921875 -1.21875 1.921875 -1.90625 1.921875 -2.109375 C 1.921875 -2.5625 2.125 -4.328125 3.078125 -5.40625 C 3.65625 -6.046875 4.59375 -6.453125 5.59375 -6.453125 C 6.84375 -6.453125 7.296875 -5.5 7.296875 -4.703125 C 7.296875 -4.59375 7.28125 -4.4375 7.28125 -4.34375 C 7.28125 -4.1875 7.40625 -4.1875 7.546875 -4.1875 C 7.75 -4.1875 7.765625 -4.203125 7.8125 -4.40625 L 8.375 -6.625 C 8.390625 -6.671875 8.40625 -6.71875 8.40625 -6.78125 C 8.40625 -6.921875 8.265625 -6.921875 8.15625 -6.921875 L 7.25 -6.21875 C 7.046875 -6.40625 6.53125 -6.921875 5.4375 -6.921875 C 2.296875 -6.921875 0.546875 -4.515625 0.546875 -2.484375 C 0.546875 -0.6875 1.921875 0.171875 3.765625 0.171875 C 4.796875 0.171875 5.484375 -0.171875 5.796875 -0.515625 C 6.046875 -0.25 6.546875 0 6.609375 0 C 6.71875 0 6.734375 -0.078125 6.765625 -0.21875 Z M 7.234375 -2.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 5.546875 -3.125 C 5.609375 -3.390625 5.734375 -3.875 5.734375 -3.9375 C 5.734375 -4.140625 5.578125 -4.375 5.265625 -4.375 C 5.109375 -4.375 4.75 -4.28125 4.609375 -3.84375 C 4.578125 -3.71875 4.140625 -1.921875 4.0625 -1.609375 C 4 -1.375 3.921875 -1.09375 3.90625 -0.921875 C 3.734375 -0.671875 3.34375 -0.28125 2.84375 -0.28125 C 2.265625 -0.28125 2.25 -0.765625 2.25 -1 C 2.25 -1.59375 2.5625 -2.359375 2.828125 -3.078125 C 2.9375 -3.328125 2.96875 -3.390625 2.96875 -3.5625 C 2.96875 -4.140625 2.390625 -4.453125 1.84375 -4.453125 C 0.8125 -4.453125 0.3125 -3.109375 0.3125 -2.90625 C 0.3125 -2.78125 0.46875 -2.78125 0.546875 -2.78125 C 0.671875 -2.78125 0.734375 -2.78125 0.78125 -2.90625 C 1.109375 -4 1.640625 -4.09375 1.796875 -4.09375 C 1.859375 -4.09375 1.953125 -4.09375 1.953125 -3.890625 C 1.953125 -3.65625 1.84375 -3.390625 1.796875 -3.265625 C 1.390625 -2.234375 1.203125 -1.6875 1.203125 -1.203125 C 1.203125 -0.078125 2.1875 0.078125 2.765625 0.078125 C 3.046875 0.078125 3.484375 0.046875 4.015625 -0.46875 C 4.328125 0.015625 4.90625 0.078125 5.140625 0.078125 C 5.5 0.078125 5.78125 -0.125 6 -0.484375 C 6.234375 -0.875 6.375 -1.40625 6.375 -1.453125 C 6.375 -1.59375 6.21875 -1.59375 6.125 -1.59375 C 6.03125 -1.59375 5.984375 -1.59375 5.9375 -1.546875 C 5.921875 -1.53125 5.921875 -1.5 5.859375 -1.265625 C 5.65625 -0.5 5.4375 -0.28125 5.1875 -0.28125 C 5.046875 -0.28125 4.96875 -0.375 4.96875 -0.640625 C 4.96875 -0.8125 5 -0.96875 5.09375 -1.359375 C 5.171875 -1.640625 5.265625 -2.03125 5.3125 -2.25 Z M 5.546875 -3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.4375 -3.421875 L 5.25 -3.421875 C 5.46875 -3.421875 5.59375 -3.421875 5.75 -3.578125 C 5.953125 -3.734375 5.953125 -3.96875 5.953125 -3.984375 C 5.953125 -4.375 5.59375 -4.375 5.421875 -4.375 L 2.1875 -4.375 C 1.984375 -4.375 1.5625 -4.375 1.03125 -3.890625 C 0.6875 -3.578125 0.3125 -3.078125 0.3125 -2.984375 C 0.3125 -2.84375 0.421875 -2.84375 0.53125 -2.84375 C 0.671875 -2.84375 0.6875 -2.859375 0.78125 -2.96875 C 1.15625 -3.421875 1.796875 -3.421875 1.984375 -3.421875 L 2.875 -3.421875 L 2.515625 -2.375 C 2.4375 -2.140625 2.21875 -1.5 2.140625 -1.25 C 2.03125 -0.9375 1.84375 -0.421875 1.84375 -0.3125 C 1.84375 -0.046875 2.0625 0.125 2.296875 0.125 C 2.375 0.125 2.875 0.125 2.96875 -0.53125 Z M 3.4375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 2.796875 -0.90625 C 2.796875 -1.171875 2.6875 -1.375 2.515625 -1.53125 C 2.25 -1.78125 1.921875 -1.828125 1.6875 -1.875 C 1.140625 -1.96875 0.6875 -2.046875 0.6875 -2.421875 C 0.6875 -2.640625 0.875 -2.90625 1.53125 -2.90625 C 2.328125 -2.90625 2.359375 -2.34375 2.375 -2.15625 C 2.390625 -2.078125 2.46875 -2.078125 2.5 -2.078125 C 2.609375 -2.078125 2.609375 -2.125 2.609375 -2.25 L 2.609375 -2.890625 C 2.609375 -3.015625 2.609375 -3.078125 2.515625 -3.078125 C 2.484375 -3.078125 2.46875 -3.078125 2.375 -2.984375 C 2.359375 -2.984375 2.296875 -2.921875 2.25 -2.890625 C 2.046875 -3.03125 1.78125 -3.078125 1.53125 -3.078125 C 0.546875 -3.078125 0.3125 -2.5625 0.3125 -2.21875 C 0.3125 -1.984375 0.40625 -1.8125 0.578125 -1.671875 C 0.828125 -1.453125 1.09375 -1.40625 1.515625 -1.328125 C 1.875 -1.265625 2.421875 -1.171875 2.421875 -0.703125 C 2.421875 -0.4375 2.234375 -0.125 1.578125 -0.125 C 0.921875 -0.125 0.671875 -0.5625 0.546875 -1.03125 C 0.53125 -1.109375 0.53125 -1.140625 0.421875 -1.140625 C 0.3125 -1.140625 0.3125 -1.09375 0.3125 -0.953125 L 0.3125 -0.109375 C 0.3125 0 0.3125 0.0625 0.40625 0.0625 C 0.46875 0.0625 0.59375 -0.078125 0.734375 -0.234375 C 1.046875 0.0625 1.40625 0.0625 1.578125 0.0625 C 2.46875 0.0625 2.796875 -0.40625 2.796875 -0.90625 Z M 2.796875 -0.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 2.578125 -0.875 L 2.578125 -1.25 L 2.34375 -1.25 L 2.34375 -0.875 C 2.34375 -0.40625 2.125 -0.15625 1.859375 -0.15625 C 1.390625 -0.15625 1.390625 -0.734375 1.390625 -0.859375 L 1.390625 -2.71875 L 2.453125 -2.71875 L 2.453125 -2.96875 L 1.390625 -2.96875 L 1.390625 -4.234375 L 1.15625 -4.234375 C 1.140625 -3.625 0.859375 -2.9375 0.203125 -2.921875 L 0.203125 -2.71875 L 0.84375 -2.71875 L 0.84375 -0.859375 C 0.84375 -0.09375 1.421875 0.0625 1.8125 0.0625 C 2.265625 0.0625 2.578125 -0.328125 2.578125 -0.875 Z M 2.578125 -0.875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.75 -0.625 L 3.75 -1 L 3.515625 -1 L 3.515625 -0.625 C 3.515625 -0.5625 3.515625 -0.234375 3.265625 -0.234375 C 3 -0.234375 3 -0.546875 3 -0.640625 L 3 -1.84375 C 3 -2.21875 3 -2.46875 2.6875 -2.734375 C 2.40625 -2.96875 2.078125 -3.078125 1.671875 -3.078125 C 1.015625 -3.078125 0.546875 -2.828125 0.546875 -2.40625 C 0.546875 -2.1875 0.703125 -2.0625 0.875 -2.0625 C 1.0625 -2.0625 1.203125 -2.203125 1.203125 -2.390625 C 1.203125 -2.515625 1.15625 -2.65625 0.96875 -2.703125 C 1.21875 -2.875 1.609375 -2.875 1.65625 -2.875 C 2.046875 -2.875 2.453125 -2.625 2.453125 -2.046875 L 2.453125 -1.828125 C 2.078125 -1.8125 1.625 -1.796875 1.125 -1.609375 C 0.5 -1.390625 0.3125 -1 0.3125 -0.703125 C 0.3125 -0.109375 1.03125 0.0625 1.515625 0.0625 C 2.0625 0.0625 2.390625 -0.234375 2.53125 -0.515625 C 2.5625 -0.234375 2.75 0.03125 3.0625 0.03125 C 3.0625 0.03125 3.75 0.03125 3.75 -0.625 Z M 2.453125 -0.96875 C 2.453125 -0.3125 1.875 -0.125 1.578125 -0.125 C 1.21875 -0.125 0.890625 -0.359375 0.890625 -0.703125 C 0.890625 -1.078125 1.21875 -1.609375 2.453125 -1.65625 Z M 2.453125 -0.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 1.890625 0 L 1.890625 -0.25 C 1.484375 -0.25 1.421875 -0.25 1.421875 -0.53125 L 1.421875 -3.03125 L 0.40625 -2.96875 L 0.40625 -2.71875 C 0.84375 -2.71875 0.90625 -2.671875 0.90625 -2.328125 L 0.90625 -0.546875 C 0.90625 -0.25 0.828125 -0.25 0.390625 -0.25 L 0.390625 0 C 0.390625 0 0.875 -0.03125 1.15625 -0.03125 C 1.40625 -0.03125 1.640625 -0.015625 1.890625 0 Z M 1.515625 -4.140625 C 1.515625 -4.375 1.34375 -4.546875 1.109375 -4.546875 C 0.875 -4.546875 0.71875 -4.359375 0.71875 -4.15625 C 0.71875 -3.9375 0.890625 -3.75 1.109375 -3.75 C 1.34375 -3.75 1.515625 -3.953125 1.515625 -4.140625 Z M 1.515625 -4.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.21875 -0.828125 C 3.21875 -0.90625 3.140625 -0.90625 3.109375 -0.90625 C 3.015625 -0.90625 3.015625 -0.890625 2.984375 -0.796875 C 2.828125 -0.359375 2.453125 -0.15625 2.046875 -0.15625 C 1.5625 -0.15625 0.9375 -0.5 0.9375 -1.5 C 0.9375 -2.375 1.375 -2.859375 2.015625 -2.859375 C 2.109375 -2.859375 2.4375 -2.859375 2.6875 -2.75 C 2.5625 -2.6875 2.484375 -2.578125 2.484375 -2.453125 C 2.484375 -2.265625 2.625 -2.125 2.8125 -2.125 C 3 -2.125 3.140625 -2.234375 3.140625 -2.453125 C 3.140625 -3.078125 2.1875 -3.078125 1.984375 -3.078125 C 0.953125 -3.078125 0.3125 -2.28125 0.3125 -1.484375 C 0.3125 -0.625 1.046875 0.0625 1.953125 0.0625 C 2.984375 0.0625 3.21875 -0.75 3.21875 -0.828125 Z M 3.21875 -0.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 3.265625 0 L 3.265625 -0.25 L 3 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.375 C 2.3125 -4.5625 2.296875 -4.578125 2.109375 -4.578125 C 1.65625 -4.140625 1.03125 -4.140625 0.75 -4.140625 L 0.75 -3.890625 C 0.921875 -3.890625 1.375 -3.890625 1.75 -4.078125 L 1.75 -0.5625 C 1.75 -0.34375 1.75 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.265625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 2.828125 -6.828125 L 1.28125 -5.59375 L 1.5625 -5.203125 L 2.828125 -6.03125 L 4.09375 -5.21875 L 4.375 -5.578125 Z M 2.828125 -6.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 3.265625 2.359375 C 3.265625 2.328125 3.265625 2.3125 3.09375 2.140625 C 1.859375 0.90625 1.546875 -0.953125 1.546875 -2.46875 C 1.546875 -4.171875 1.921875 -5.890625 3.125 -7.109375 C 3.265625 -7.234375 3.265625 -7.25 3.265625 -7.28125 C 3.265625 -7.359375 3.21875 -7.390625 3.15625 -7.390625 C 3.0625 -7.390625 2.171875 -6.71875 1.59375 -5.46875 C 1.09375 -4.375 0.96875 -3.28125 0.96875 -2.46875 C 0.96875 -1.6875 1.078125 -0.5 1.625 0.609375 C 2.21875 1.828125 3.0625 2.46875 3.15625 2.46875 C 3.21875 2.46875 3.265625 2.4375 3.265625 2.359375 Z M 3.265625 2.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 4.53125 -3.15625 C 4.53125 -3.9375 4.484375 -4.71875 4.140625 -5.453125 C 3.6875 -6.40625 2.875 -6.5625 2.46875 -6.5625 C 1.875 -6.5625 1.15625 -6.296875 0.75 -5.390625 C 0.4375 -4.703125 0.390625 -3.9375 0.390625 -3.15625 C 0.390625 -2.40625 0.421875 -1.53125 0.828125 -0.78125 C 1.25 0.015625 1.96875 0.21875 2.453125 0.21875 C 2.984375 0.21875 3.734375 0.015625 4.15625 -0.921875 C 4.484375 -1.609375 4.53125 -2.375 4.53125 -3.15625 Z M 3.71875 -3.265625 C 3.71875 -2.53125 3.71875 -1.859375 3.609375 -1.234375 C 3.453125 -0.296875 2.890625 0 2.453125 0 C 2.0625 0 1.484375 -0.25 1.3125 -1.1875 C 1.203125 -1.78125 1.203125 -2.6875 1.203125 -3.265625 C 1.203125 -3.890625 1.203125 -4.546875 1.28125 -5.078125 C 1.46875 -6.25 2.203125 -6.34375 2.453125 -6.34375 C 2.78125 -6.34375 3.421875 -6.15625 3.609375 -5.1875 C 3.71875 -4.640625 3.71875 -3.890625 3.71875 -3.265625 Z M 3.71875 -3.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 2.84375 -2.46875 C 2.84375 -3.234375 2.734375 -4.421875 2.1875 -5.53125 C 1.609375 -6.75 0.765625 -7.390625 0.65625 -7.390625 C 0.59375 -7.390625 0.5625 -7.34375 0.5625 -7.28125 C 0.5625 -7.25 0.5625 -7.234375 0.75 -7.0625 C 1.71875 -6.078125 2.28125 -4.515625 2.28125 -2.46875 C 2.28125 -0.78125 1.90625 0.953125 0.6875 2.1875 C 0.5625 2.3125 0.5625 2.328125 0.5625 2.359375 C 0.5625 2.421875 0.59375 2.46875 0.65625 2.46875 C 0.765625 2.46875 1.640625 1.796875 2.21875 0.546875 C 2.734375 -0.546875 2.84375 -1.640625 2.84375 -2.46875 Z M 2.84375 -2.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 3.90625 -6.15625 C 3.90625 -6.34375 3.765625 -6.5 3.53125 -6.5 C 3.3125 -6.5 3.015625 -6.28125 3.015625 -5.984375 C 3.015625 -5.78125 3.15625 -5.625 3.375 -5.625 C 3.640625 -5.625 3.90625 -5.890625 3.90625 -6.15625 Z M 3.5 -3.078125 C 3.546875 -3.28125 3.546875 -3.421875 3.546875 -3.453125 C 3.546875 -4 3.125 -4.34375 2.640625 -4.34375 C 1.640625 -4.34375 1.078125 -2.921875 1.078125 -2.828125 C 1.078125 -2.734375 1.1875 -2.734375 1.1875 -2.734375 C 1.28125 -2.734375 1.296875 -2.75 1.375 -2.9375 C 1.609375 -3.53125 2.0625 -4.140625 2.609375 -4.140625 C 2.75 -4.140625 2.921875 -4.09375 2.921875 -3.6875 C 2.921875 -3.453125 2.890625 -3.34375 2.859375 -3.171875 L 1.921875 0.5 C 1.75 1.234375 1.265625 1.796875 0.71875 1.796875 C 0.65625 1.796875 0.515625 1.796875 0.328125 1.71875 C 0.625 1.640625 0.78125 1.390625 0.78125 1.1875 C 0.78125 1.03125 0.671875 0.84375 0.40625 0.84375 C 0.15625 0.84375 -0.125 1.046875 -0.125 1.40625 C -0.125 1.796875 0.265625 2.015625 0.734375 2.015625 C 1.421875 2.015625 2.34375 1.5 2.59375 0.515625 Z M 3.5 -3.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 4.90625 -1.40625 C 4.90625 -1.5 4.8125 -1.5 4.78125 -1.5 C 4.6875 -1.5 4.671875 -1.46875 4.640625 -1.328125 C 4.484375 -0.6875 4.296875 -0.109375 3.890625 -0.109375 C 3.625 -0.109375 3.609375 -0.359375 3.609375 -0.5625 C 3.609375 -0.796875 3.625 -0.859375 3.65625 -1.03125 L 5.078125 -6.71875 C 5.078125 -6.71875 5.078125 -6.828125 4.953125 -6.828125 C 4.796875 -6.828125 3.875 -6.75 3.703125 -6.71875 C 3.625 -6.71875 3.5625 -6.671875 3.5625 -6.53125 C 3.5625 -6.421875 3.65625 -6.421875 3.796875 -6.421875 C 4.265625 -6.421875 4.296875 -6.34375 4.296875 -6.25 L 4.265625 -6.046875 L 3.671875 -3.71875 C 3.5 -4.078125 3.203125 -4.34375 2.765625 -4.34375 C 1.609375 -4.34375 0.390625 -2.90625 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.703125 0.109375 C 1.90625 0.109375 2.390625 0.0625 2.984375 -0.625 C 3.0625 -0.21875 3.40625 0.109375 3.875 0.109375 C 4.21875 0.109375 4.453125 -0.125 4.609375 -0.4375 C 4.78125 -0.78125 4.90625 -1.40625 4.90625 -1.40625 Z M 3.53125 -3.09375 L 3.03125 -1.171875 C 2.984375 -1 2.984375 -0.96875 2.828125 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.71875 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.40625 -2.734375 1.640625 -3.1875 C 1.9375 -3.765625 2.375 -4.140625 2.78125 -4.140625 C 3.421875 -4.140625 3.546875 -3.328125 3.546875 -3.265625 C 3.546875 -3.203125 3.53125 -3.15625 3.53125 -3.09375 Z M 3.53125 -3.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 5.40625 -1.71875 C 5.40625 -1.890625 5.25 -1.890625 5.140625 -1.890625 L 1 -1.890625 C 0.90625 -1.890625 0.75 -1.890625 0.75 -1.71875 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.140625 -1.5625 C 5.234375 -1.5625 5.40625 -1.5625 5.40625 -1.71875 Z M 5.40625 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 7.390625 -1.53125 C 7.390625 -1.640625 7.265625 -1.640625 7.21875 -1.640625 C 6.921875 -1.640625 6.0625 -1.25 5.953125 -0.75 C 5.46875 -0.75 5.125 -0.796875 4.34375 -0.9375 C 3.984375 -1.015625 3.203125 -1.15625 2.640625 -1.15625 C 2.5625 -1.15625 2.453125 -1.15625 2.375 -1.15625 C 2.703125 -1.703125 2.828125 -2.171875 3 -2.8125 C 3.1875 -3.59375 3.578125 -4.984375 4.328125 -5.8125 C 4.453125 -5.953125 4.5 -6 4.75 -6 C 5.203125 -6 5.390625 -5.65625 5.390625 -5.328125 C 5.390625 -5.21875 5.359375 -5.109375 5.359375 -5.0625 C 5.359375 -4.96875 5.46875 -4.9375 5.515625 -4.9375 C 5.65625 -4.9375 5.953125 -5.015625 6.34375 -5.28125 C 6.734375 -5.546875 6.78125 -5.71875 6.78125 -6 C 6.78125 -6.5 6.484375 -6.921875 5.828125 -6.921875 C 5.203125 -6.921875 4.3125 -6.609375 3.5 -5.90625 C 2.375 -4.90625 1.875 -3.28125 1.59375 -2.171875 C 1.453125 -1.578125 1.234375 -0.78125 0.8125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.140625 0.5 0.171875 0.5625 0.171875 C 0.625 0.171875 0.9375 0.15625 1.484375 -0.25 C 1.84375 -0.25 2.1875 -0.21875 3.078125 -0.0625 C 3.53125 0.03125 4.25 0.171875 4.796875 0.171875 C 6.125 0.171875 7.390625 -1 7.390625 -1.53125 Z M 7.390625 -1.53125 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 184 15 L 204.699219 15 L 204.699219 47 L 184 47 Z M 184 15 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -100.695542 -30.611219 L 33.445302 -30.611219 L 33.445302 30.612464 L -100.695542 30.612464 Z M -100.695542 -30.611219 " transform="matrix(0.987797,0,0,-0.987797,136.021429,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="39.835696" y="11.017886"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="48.561894" y="12.493655"/>
<use xlink:href="#glyph1-2" x="51.679718" y="12.493655"/>
<use xlink:href="#glyph1-3" x="54.754833" y="12.493655"/>
<use xlink:href="#glyph1-2" x="58.677257" y="12.493655"/>
<use xlink:href="#glyph1-4" x="61.752372" y="12.493655"/>
<use xlink:href="#glyph1-5" x="63.980177" y="12.493655"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.006303 -14.172332 L 17.006415 -14.172332 L 17.006415 14.173577 L -17.006303 14.173577 Z M -17.006303 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,136.021429,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="131.65833" y="34.599561"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -84.256655 -14.172332 L -40.681938 -14.172332 L -40.681938 14.173577 L -84.256655 14.173577 Z M -84.256655 -14.172332 " transform="matrix(0.987797,0,0,-0.987797,136.021429,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="58.550496" y="32.220946"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="56.073101" y="34.599561"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="64.800286" y="34.599561"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="68.627011" y="34.599561"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="73.242986" y="34.599561"/>
<use xlink:href="#glyph3-3" x="78.163499" y="34.599561"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="81.990915" y="31.028675"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="88.141926" y="31.028675"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -89.389605 0.000622772 L -135.779931 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,136.021429,31.223271)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052379 0.000622772 L 1.607513 1.681288 L 3.086499 0.000622772 L 1.607513 -1.683997 Z M 6.052379 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,44.919916,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="5.672741" y="27.451863"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -40.18367 0.000622772 L -22.139253 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,136.021429,31.223271)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054021 0.000622772 L 1.609155 1.681288 L 3.088141 0.000622772 L 1.609155 -1.683997 Z M 6.054021 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,111.347982,31.223271)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="108.505359" y="27.451863"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.504683 0.000622772 L 63.895009 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,136.021429,31.223271)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 202.3125 31.222656 L 197.925781 29.5625 L 199.382812 31.222656 L 197.925781 32.886719 Z M 202.3125 31.222656 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051583 0.000622772 L 1.610671 1.681288 L 3.085703 0.000622772 L 1.610671 -1.683997 Z M 6.051583 0.000622772 " transform="matrix(0.987797,0,0,-0.987797,196.334765,31.223271)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="187.063857" y="27.451863"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="192.185584" y="27.451863"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,135 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="209.079pt" height="59.234pt" viewBox="0 0 209.079 59.234" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.21875 -2.0625 C 7.265625 -2.21875 7.265625 -2.21875 7.34375 -2.234375 C 7.453125 -2.25 7.59375 -2.25 7.71875 -2.25 C 7.953125 -2.25 8.125 -2.25 8.125 -2.53125 C 8.125 -2.578125 8.09375 -2.71875 7.90625 -2.71875 C 7.703125 -2.71875 7.46875 -2.6875 7.25 -2.6875 C 7.03125 -2.6875 6.796875 -2.6875 6.578125 -2.6875 C 6.1875 -2.6875 5.234375 -2.71875 4.828125 -2.71875 C 4.71875 -2.71875 4.53125 -2.71875 4.53125 -2.421875 C 4.53125 -2.25 4.703125 -2.25 4.859375 -2.25 L 5.234375 -2.25 C 5.34375 -2.25 5.875 -2.25 5.875 -2.1875 C 5.875 -2.1875 5.875 -2.15625 5.8125 -1.921875 C 5.796875 -1.859375 5.640625 -1.234375 5.625 -1.21875 C 5.46875 -0.546875 4.671875 -0.296875 4.0625 -0.296875 C 3.484375 -0.296875 2.90625 -0.40625 2.4375 -0.78125 C 1.921875 -1.21875 1.921875 -1.890625 1.921875 -2.109375 C 1.921875 -2.5625 2.125 -4.328125 3.078125 -5.390625 C 3.640625 -6.03125 4.59375 -6.453125 5.59375 -6.453125 C 6.828125 -6.453125 7.296875 -5.5 7.296875 -4.6875 C 7.296875 -4.578125 7.265625 -4.4375 7.265625 -4.328125 C 7.265625 -4.1875 7.390625 -4.1875 7.53125 -4.1875 C 7.75 -4.1875 7.75 -4.203125 7.796875 -4.40625 L 8.359375 -6.609375 C 8.375 -6.65625 8.390625 -6.71875 8.390625 -6.765625 C 8.390625 -6.90625 8.25 -6.90625 8.140625 -6.90625 L 7.234375 -6.203125 C 7.03125 -6.390625 6.53125 -6.90625 5.4375 -6.90625 C 2.296875 -6.90625 0.546875 -4.5 0.546875 -2.484375 C 0.546875 -0.6875 1.921875 0.171875 3.75 0.171875 C 4.78125 0.171875 5.46875 -0.171875 5.78125 -0.515625 C 6.03125 -0.25 6.53125 0 6.609375 0 C 6.703125 0 6.71875 -0.078125 6.765625 -0.21875 Z M 7.21875 -2.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.4375 -3.421875 L 5.25 -3.421875 C 5.453125 -3.421875 5.578125 -3.421875 5.734375 -3.5625 C 5.9375 -3.734375 5.9375 -3.953125 5.9375 -3.984375 C 5.9375 -4.359375 5.578125 -4.359375 5.421875 -4.359375 L 2.1875 -4.359375 C 1.96875 -4.359375 1.546875 -4.359375 1.03125 -3.890625 C 0.6875 -3.578125 0.296875 -3.078125 0.296875 -2.984375 C 0.296875 -2.84375 0.421875 -2.84375 0.53125 -2.84375 C 0.671875 -2.84375 0.6875 -2.84375 0.78125 -2.953125 C 1.15625 -3.421875 1.796875 -3.421875 1.984375 -3.421875 L 2.875 -3.421875 L 2.515625 -2.375 C 2.421875 -2.125 2.21875 -1.5 2.125 -1.25 C 2.03125 -0.9375 1.84375 -0.421875 1.84375 -0.3125 C 1.84375 -0.046875 2.046875 0.125 2.296875 0.125 C 2.375 0.125 2.875 0.125 2.96875 -0.53125 Z M 3.4375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 4.28125 -1.578125 C 4.28125 -1.875 4.15625 -2.15625 4 -2.3125 C 3.765625 -2.5625 3.65625 -2.578125 2.765625 -2.796875 C 2.625 -2.828125 2.390625 -2.875 2.328125 -2.90625 C 2.15625 -2.96875 1.875 -3.140625 1.875 -3.53125 C 1.875 -4.078125 2.484375 -4.625 3.203125 -4.625 C 3.953125 -4.625 4.3125 -4.203125 4.3125 -3.546875 C 4.3125 -3.453125 4.28125 -3.296875 4.28125 -3.234375 C 4.28125 -3.140625 4.359375 -3.140625 4.390625 -3.140625 C 4.5 -3.140625 4.5 -3.171875 4.53125 -3.296875 L 4.890625 -4.75 C 4.890625 -4.78125 4.875 -4.84375 4.796875 -4.84375 C 4.765625 -4.84375 4.75 -4.84375 4.671875 -4.75 L 4.328125 -4.359375 C 4.0625 -4.71875 3.625 -4.84375 3.21875 -4.84375 C 2.234375 -4.84375 1.375 -4.0625 1.375 -3.265625 C 1.375 -3.15625 1.40625 -2.890625 1.609375 -2.625 C 1.84375 -2.359375 2.09375 -2.296875 2.5625 -2.1875 L 3.15625 -2.046875 C 3.375 -1.984375 3.796875 -1.84375 3.796875 -1.328125 C 3.796875 -0.765625 3.203125 -0.109375 2.421875 -0.109375 C 1.8125 -0.109375 1.078125 -0.328125 1.078125 -1.09375 C 1.078125 -1.15625 1.09375 -1.3125 1.125 -1.4375 C 1.125 -1.453125 1.125 -1.46875 1.125 -1.46875 C 1.125 -1.5625 1.046875 -1.5625 1.015625 -1.5625 C 0.921875 -1.5625 0.921875 -1.546875 0.890625 -1.421875 L 0.53125 -0.046875 C 0.53125 -0.015625 0.515625 0.015625 0.515625 0.0625 C 0.515625 0.09375 0.546875 0.140625 0.609375 0.140625 C 0.65625 0.140625 0.65625 0.125 0.75 0.046875 C 0.828125 -0.046875 1 -0.265625 1.078125 -0.34375 C 1.453125 0.0625 1.984375 0.140625 2.390625 0.140625 C 3.4375 0.140625 4.28125 -0.765625 4.28125 -1.578125 Z M 4.28125 -1.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 5.9375 -4.609375 C 5.9375 -4.625 5.921875 -4.703125 5.84375 -4.703125 C 5.671875 -4.703125 5.453125 -4.671875 5.28125 -4.671875 C 5.0625 -4.671875 4.78125 -4.703125 4.5625 -4.703125 C 4.5 -4.703125 4.4375 -4.6875 4.4375 -4.546875 C 4.4375 -4.46875 4.53125 -4.453125 4.546875 -4.453125 C 4.78125 -4.4375 4.84375 -4.359375 4.84375 -4.265625 C 4.84375 -4.15625 4.78125 -4.09375 4.71875 -3.984375 L 2.453125 -0.640625 L 1.828125 -4.171875 C 1.8125 -4.234375 1.8125 -4.25 1.8125 -4.265625 C 1.8125 -4.453125 2.203125 -4.453125 2.25 -4.453125 C 2.359375 -4.453125 2.453125 -4.453125 2.453125 -4.609375 C 2.453125 -4.609375 2.453125 -4.703125 2.328125 -4.703125 C 2.140625 -4.703125 1.640625 -4.671875 1.453125 -4.671875 C 1.28125 -4.671875 0.859375 -4.703125 0.6875 -4.703125 C 0.625 -4.703125 0.546875 -4.6875 0.546875 -4.546875 C 0.546875 -4.453125 0.640625 -4.453125 0.71875 -4.453125 C 1.109375 -4.453125 1.109375 -4.421875 1.140625 -4.234375 L 1.890625 -0.046875 C 1.921875 0.09375 1.921875 0.140625 2.0625 0.140625 C 2.1875 0.140625 2.21875 0.09375 2.296875 -0.015625 L 4.921875 -3.890625 C 5.1875 -4.265625 5.40625 -4.4375 5.78125 -4.453125 C 5.859375 -4.46875 5.9375 -4.46875 5.9375 -4.609375 Z M 5.9375 -4.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 6.15625 -2.90625 C 6.15625 -3.90625 5.453125 -4.703125 4.328125 -4.703125 L 1.828125 -4.703125 C 1.6875 -4.703125 1.609375 -4.703125 1.609375 -4.546875 C 1.609375 -4.453125 1.6875 -4.453125 1.828125 -4.453125 C 1.9375 -4.453125 1.96875 -4.453125 2.09375 -4.4375 C 2.234375 -4.4375 2.25 -4.421875 2.25 -4.34375 C 2.25 -4.34375 2.25 -4.296875 2.21875 -4.203125 L 1.296875 -0.53125 C 1.25 -0.296875 1.234375 -0.25 0.703125 -0.25 C 0.578125 -0.25 0.484375 -0.25 0.484375 -0.09375 C 0.484375 0 0.578125 0 0.703125 0 L 3.15625 0 C 4.6875 0 6.15625 -1.40625 6.15625 -2.90625 Z M 5.5 -3.140625 C 5.5 -2.984375 5.4375 -1.78125 4.734375 -1 C 4.46875 -0.6875 3.875 -0.25 3.03125 -0.25 L 2.09375 -0.25 C 1.875 -0.25 1.875 -0.25 1.875 -0.3125 C 1.875 -0.3125 1.875 -0.359375 1.90625 -0.46875 L 2.84375 -4.21875 C 2.90625 -4.4375 2.90625 -4.453125 3.203125 -4.453125 L 4.078125 -4.453125 C 4.84375 -4.453125 5.5 -4.078125 5.5 -3.140625 Z M 5.5 -3.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 5.25 -3.25 L 5.4375 -4.5625 C 5.4375 -4.65625 5.359375 -4.65625 5.234375 -4.65625 L 1 -4.65625 C 0.828125 -4.65625 0.8125 -4.65625 0.765625 -4.515625 L 0.328125 -3.296875 C 0.328125 -3.265625 0.296875 -3.203125 0.296875 -3.171875 C 0.296875 -3.140625 0.3125 -3.078125 0.40625 -3.078125 C 0.5 -3.078125 0.515625 -3.109375 0.5625 -3.234375 C 0.953125 -4.34375 1.1875 -4.40625 2.234375 -4.40625 L 2.515625 -4.40625 C 2.734375 -4.40625 2.734375 -4.40625 2.734375 -4.34375 C 2.734375 -4.34375 2.734375 -4.296875 2.703125 -4.203125 L 1.796875 -0.578125 C 1.734375 -0.3125 1.71875 -0.25 1 -0.25 C 0.75 -0.25 0.6875 -0.25 0.6875 -0.09375 C 0.6875 -0.078125 0.703125 0 0.796875 0 C 1 0 1.203125 -0.015625 1.390625 -0.015625 L 1.984375 -0.03125 L 2.609375 -0.015625 C 2.796875 -0.015625 3 0 3.1875 0 C 3.234375 0 3.34375 0 3.34375 -0.15625 C 3.34375 -0.25 3.265625 -0.25 3.0625 -0.25 C 2.921875 -0.25 2.796875 -0.25 2.65625 -0.265625 C 2.421875 -0.28125 2.40625 -0.3125 2.40625 -0.390625 C 2.40625 -0.4375 2.40625 -0.453125 2.4375 -0.546875 L 3.34375 -4.171875 C 3.390625 -4.375 3.40625 -4.390625 3.5625 -4.40625 C 3.59375 -4.40625 3.84375 -4.40625 3.96875 -4.40625 C 4.390625 -4.40625 4.578125 -4.40625 4.75 -4.359375 C 5.0625 -4.265625 5.078125 -4.0625 5.078125 -3.8125 C 5.078125 -3.703125 5.078125 -3.609375 5.015625 -3.25 L 5.015625 -3.171875 C 5.015625 -3.109375 5.0625 -3.078125 5.125 -3.078125 C 5.234375 -3.078125 5.25 -3.140625 5.25 -3.25 Z M 5.25 -3.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 7.5625 -6.59375 C 7.5625 -6.671875 7.515625 -6.71875 7.4375 -6.71875 C 7.171875 -6.71875 6.890625 -6.6875 6.625 -6.6875 C 6.296875 -6.6875 5.96875 -6.71875 5.65625 -6.71875 C 5.59375 -6.71875 5.46875 -6.71875 5.46875 -6.53125 C 5.46875 -6.421875 5.546875 -6.40625 5.625 -6.40625 C 5.890625 -6.390625 6.078125 -6.296875 6.078125 -6.078125 C 6.078125 -5.9375 5.921875 -5.703125 5.921875 -5.703125 L 2.90625 -0.90625 L 2.234375 -6.109375 C 2.234375 -6.28125 2.46875 -6.40625 2.921875 -6.40625 C 3.0625 -6.40625 3.171875 -6.40625 3.171875 -6.609375 C 3.171875 -6.6875 3.09375 -6.71875 3.03125 -6.71875 C 2.640625 -6.71875 2.21875 -6.6875 1.8125 -6.6875 C 1.625 -6.6875 1.4375 -6.6875 1.265625 -6.6875 C 1.09375 -6.6875 0.90625 -6.71875 0.734375 -6.71875 C 0.671875 -6.71875 0.546875 -6.71875 0.546875 -6.53125 C 0.546875 -6.40625 0.640625 -6.40625 0.796875 -6.40625 C 1.34375 -6.40625 1.359375 -6.3125 1.390625 -6.078125 L 2.15625 -0.015625 C 2.1875 0.1875 2.234375 0.21875 2.359375 0.21875 C 2.515625 0.21875 2.5625 0.171875 2.640625 0.046875 L 6.171875 -5.59375 C 6.65625 -6.359375 7.0625 -6.390625 7.4375 -6.40625 C 7.546875 -6.421875 7.5625 -6.59375 7.5625 -6.59375 Z M 7.5625 -6.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 7.46875 -6.609375 C 7.46875 -6.609375 7.46875 -6.71875 7.34375 -6.71875 C 7.015625 -6.71875 6.671875 -6.6875 6.34375 -6.6875 C 6 -6.6875 5.640625 -6.71875 5.3125 -6.71875 C 5.265625 -6.71875 5.140625 -6.71875 5.140625 -6.515625 C 5.140625 -6.40625 5.234375 -6.40625 5.3125 -6.40625 C 5.875 -6.390625 5.984375 -6.1875 5.984375 -5.96875 C 5.984375 -5.953125 5.96875 -5.796875 5.953125 -5.765625 L 5.078125 -2.265625 C 4.734375 -0.9375 3.609375 -0.09375 2.625 -0.09375 C 1.953125 -0.09375 1.421875 -0.515625 1.421875 -1.359375 C 1.421875 -1.359375 1.421875 -1.703125 1.53125 -2.125 L 2.484375 -5.953125 C 2.578125 -6.3125 2.59375 -6.40625 3.3125 -6.40625 C 3.5625 -6.40625 3.640625 -6.40625 3.640625 -6.609375 C 3.640625 -6.71875 3.53125 -6.71875 3.515625 -6.71875 L 2.25 -6.6875 L 0.984375 -6.71875 C 0.90625 -6.71875 0.796875 -6.71875 0.796875 -6.515625 C 0.796875 -6.40625 0.890625 -6.40625 1.078125 -6.40625 C 1.078125 -6.40625 1.28125 -6.40625 1.4375 -6.390625 C 1.625 -6.375 1.703125 -6.359375 1.703125 -6.234375 C 1.703125 -6.171875 1.609375 -5.765625 1.546875 -5.53125 L 1.328125 -4.671875 L 0.734375 -2.234375 C 0.65625 -1.96875 0.65625 -1.8125 0.65625 -1.671875 C 0.65625 -0.46875 1.546875 0.21875 2.578125 0.21875 C 3.828125 0.21875 5.046875 -0.890625 5.359375 -2.1875 L 6.234375 -5.6875 C 6.34375 -6.078125 6.515625 -6.375 7.296875 -6.40625 C 7.34375 -6.40625 7.46875 -6.421875 7.46875 -6.609375 Z M 7.46875 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 5.34375 -1.40625 C 5.34375 -1.5 5.25 -1.5 5.21875 -1.5 C 5.125 -1.5 5.109375 -1.46875 5.078125 -1.328125 C 4.9375 -0.78125 4.75 -0.109375 4.34375 -0.109375 C 4.140625 -0.109375 4.046875 -0.234375 4.046875 -0.5625 C 4.046875 -0.78125 4.15625 -1.234375 4.234375 -1.578125 L 4.515625 -2.640625 C 4.546875 -2.796875 4.640625 -3.171875 4.671875 -3.3125 C 4.734375 -3.53125 4.828125 -3.90625 4.828125 -3.96875 C 4.828125 -4.140625 4.6875 -4.234375 4.546875 -4.234375 C 4.484375 -4.234375 4.234375 -4.21875 4.15625 -3.890625 L 3.421875 -0.9375 C 3.40625 -0.890625 3.015625 -0.109375 2.296875 -0.109375 C 1.78125 -0.109375 1.6875 -0.546875 1.6875 -0.90625 C 1.6875 -1.46875 1.96875 -2.234375 2.21875 -2.921875 C 2.34375 -3.21875 2.390625 -3.34375 2.390625 -3.53125 C 2.390625 -3.984375 2.078125 -4.34375 1.578125 -4.34375 C 0.65625 -4.34375 0.28125 -2.921875 0.28125 -2.828125 C 0.28125 -2.734375 0.40625 -2.734375 0.40625 -2.734375 C 0.5 -2.734375 0.515625 -2.75 0.5625 -2.90625 C 0.8125 -3.765625 1.171875 -4.125 1.546875 -4.125 C 1.640625 -4.125 1.796875 -4.125 1.796875 -3.796875 C 1.796875 -3.5625 1.6875 -3.28125 1.625 -3.140625 C 1.265625 -2.15625 1.0625 -1.546875 1.0625 -1.078125 C 1.0625 -0.140625 1.734375 0.109375 2.265625 0.109375 C 2.921875 0.109375 3.265625 -0.328125 3.4375 -0.546875 C 3.546875 -0.140625 3.890625 0.109375 4.3125 0.109375 C 4.65625 0.109375 4.890625 -0.125 5.046875 -0.4375 C 5.203125 -0.78125 5.34375 -1.40625 5.34375 -1.40625 Z M 5.34375 -1.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 4.890625 -1.40625 C 4.890625 -1.5 4.8125 -1.5 4.78125 -1.5 C 4.671875 -1.5 4.671875 -1.46875 4.640625 -1.328125 C 4.46875 -0.6875 4.296875 -0.109375 3.890625 -0.109375 C 3.625 -0.109375 3.59375 -0.359375 3.59375 -0.5625 C 3.59375 -0.796875 3.609375 -0.859375 3.65625 -1.03125 L 5.078125 -6.71875 C 5.078125 -6.71875 5.078125 -6.828125 4.9375 -6.828125 C 4.796875 -6.828125 3.859375 -6.734375 3.703125 -6.71875 C 3.609375 -6.703125 3.5625 -6.65625 3.5625 -6.53125 C 3.5625 -6.40625 3.640625 -6.40625 3.796875 -6.40625 C 4.265625 -6.40625 4.28125 -6.34375 4.28125 -6.234375 L 4.25 -6.046875 L 3.671875 -3.71875 C 3.484375 -4.078125 3.203125 -4.34375 2.765625 -4.34375 C 1.609375 -4.34375 0.390625 -2.90625 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.703125 0.109375 C 1.890625 0.109375 2.390625 0.0625 2.984375 -0.625 C 3.0625 -0.21875 3.40625 0.109375 3.875 0.109375 C 4.21875 0.109375 4.4375 -0.125 4.59375 -0.4375 C 4.765625 -0.78125 4.890625 -1.40625 4.890625 -1.40625 Z M 3.515625 -3.09375 L 3.03125 -1.171875 C 2.984375 -1 2.984375 -0.96875 2.828125 -0.8125 C 2.390625 -0.265625 2 -0.109375 1.71875 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.515625 1.40625 -2.734375 1.625 -3.1875 C 1.9375 -3.765625 2.375 -4.125 2.765625 -4.125 C 3.40625 -4.125 3.546875 -3.328125 3.546875 -3.265625 C 3.546875 -3.203125 3.53125 -3.140625 3.515625 -3.09375 Z M 3.515625 -3.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 4.78125 -3.75 C 4.8125 -3.875 4.8125 -3.90625 4.8125 -3.96875 C 4.8125 -4.140625 4.671875 -4.234375 4.53125 -4.234375 C 4.4375 -4.234375 4.28125 -4.171875 4.1875 -4.03125 C 4.171875 -3.984375 4.09375 -3.671875 4.046875 -3.5 L 3.859375 -2.71875 L 3.40625 -0.9375 C 3.375 -0.796875 2.953125 -0.109375 2.296875 -0.109375 C 1.796875 -0.109375 1.6875 -0.546875 1.6875 -0.90625 C 1.6875 -1.359375 1.859375 -1.96875 2.1875 -2.828125 C 2.34375 -3.234375 2.390625 -3.34375 2.390625 -3.53125 C 2.390625 -3.984375 2.078125 -4.34375 1.578125 -4.34375 C 0.65625 -4.34375 0.28125 -2.921875 0.28125 -2.828125 C 0.28125 -2.734375 0.40625 -2.734375 0.40625 -2.734375 C 0.5 -2.734375 0.515625 -2.75 0.5625 -2.90625 C 0.828125 -3.828125 1.21875 -4.125 1.546875 -4.125 C 1.625 -4.125 1.796875 -4.125 1.796875 -3.8125 C 1.796875 -3.5625 1.703125 -3.3125 1.625 -3.125 C 1.234375 -2.078125 1.0625 -1.515625 1.0625 -1.0625 C 1.0625 -0.1875 1.6875 0.109375 2.265625 0.109375 C 2.640625 0.109375 2.984375 -0.0625 3.25 -0.328125 C 3.125 0.171875 3 0.65625 2.609375 1.171875 C 2.359375 1.515625 1.984375 1.796875 1.53125 1.796875 C 1.390625 1.796875 0.953125 1.765625 0.78125 1.390625 C 0.9375 1.390625 1.078125 1.390625 1.203125 1.265625 C 1.3125 1.171875 1.40625 1.046875 1.40625 0.859375 C 1.40625 0.5625 1.140625 0.515625 1.046875 0.515625 C 0.8125 0.515625 0.484375 0.671875 0.484375 1.15625 C 0.484375 1.65625 0.921875 2.015625 1.53125 2.015625 C 2.546875 2.015625 3.5625 1.125 3.828125 0.015625 Z M 4.78125 -3.75 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 5.40625 -1.71875 C 5.40625 -1.890625 5.25 -1.890625 5.140625 -1.890625 L 1 -1.890625 C 0.90625 -1.890625 0.75 -1.890625 0.75 -1.71875 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.140625 -1.5625 C 5.234375 -1.5625 5.40625 -1.5625 5.40625 -1.71875 Z M 5.40625 -1.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 3.265625 0 L 3.265625 -0.25 L 3 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.375 C 2.3125 -4.5625 2.296875 -4.578125 2.109375 -4.578125 C 1.65625 -4.140625 1.03125 -4.140625 0.75 -4.140625 L 0.75 -3.890625 C 0.921875 -3.890625 1.375 -3.890625 1.75 -4.078125 L 1.75 -0.5625 C 1.75 -0.34375 1.75 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.265625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 7.375 -1.515625 C 7.375 -1.625 7.25 -1.640625 7.21875 -1.640625 C 6.90625 -1.640625 6.046875 -1.25 5.953125 -0.75 C 5.46875 -0.75 5.125 -0.796875 4.328125 -0.9375 C 3.96875 -1.015625 3.1875 -1.15625 2.640625 -1.15625 C 2.5625 -1.15625 2.453125 -1.15625 2.375 -1.15625 C 2.6875 -1.703125 2.828125 -2.15625 2.984375 -2.8125 C 3.1875 -3.59375 3.578125 -4.96875 4.328125 -5.8125 C 4.453125 -5.953125 4.484375 -6 4.75 -6 C 5.203125 -6 5.375 -5.640625 5.375 -5.3125 C 5.375 -5.203125 5.34375 -5.09375 5.34375 -5.0625 C 5.34375 -4.953125 5.46875 -4.9375 5.515625 -4.9375 C 5.65625 -4.9375 5.953125 -5.015625 6.328125 -5.265625 C 6.71875 -5.53125 6.765625 -5.703125 6.765625 -6 C 6.765625 -6.5 6.484375 -6.90625 5.8125 -6.90625 C 5.203125 -6.90625 4.3125 -6.609375 3.5 -5.890625 C 2.375 -4.90625 1.875 -3.28125 1.59375 -2.15625 C 1.4375 -1.578125 1.234375 -0.78125 0.8125 -0.453125 C 0.71875 -0.359375 0.390625 -0.109375 0.390625 0.046875 C 0.390625 0.140625 0.484375 0.171875 0.5625 0.171875 C 0.625 0.171875 0.9375 0.15625 1.484375 -0.25 C 1.84375 -0.25 2.1875 -0.21875 3.078125 -0.0625 C 3.515625 0.03125 4.234375 0.171875 4.796875 0.171875 C 6.109375 0.171875 7.375 -1 7.375 -1.515625 Z M 7.375 -1.515625 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 186 13 L 207.289062 13 L 207.289062 45 L 186 45 Z M 186 13 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:2.98883,2.98883;stroke-miterlimit:10;" d="M -89.145336 -28.618663 L 89.142524 -28.618663 L 89.142524 28.619895 L -89.145336 28.619895 Z M -89.145336 -28.618663 " transform="matrix(0.987233,0,0,-0.987233,104.085373,29.23889)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.358046" y="11.011601"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="28.080253" y="12.486527"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="33.28858" y="12.486527"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="39.626697" y="12.486527"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.009559 -14.172515 L 17.006747 -14.172515 L 17.006747 14.173747 L -17.009559 14.173747 Z M -17.009559 -14.172515 " transform="matrix(0.987233,0,0,-0.987233,104.085373,29.23889)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="99.724763" y="32.613253"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -74.699189 -14.172515 L -40.682882 -14.172515 L -40.682882 14.173747 L -74.699189 14.173747 Z M -74.699189 -14.172515 " transform="matrix(0.987233,0,0,-0.987233,104.085373,29.23889)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="36.998919" y="33.375397"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="44.922453" y="29.806549"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="51.069955" y="29.806549"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.68007 -14.172515 L 74.696376 -14.172515 L 74.696376 14.173747 L 40.68007 14.173747 Z M 40.68007 -14.172515 " transform="matrix(0.987233,0,0,-0.987233,104.085373,29.23889)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="151.864504" y="33.242121"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="159.651801" y="29.672285"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="165.799303" y="29.672285"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -79.831112 0.000616251 L -103.544003 0.000616251 " transform="matrix(0.987233,0,0,-0.987233,104.085373,29.23889)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053887 0.000616251 L 1.610441 1.682241 L 3.086314 0.000616251 L 1.610441 -1.684966 Z M 6.053887 0.000616251 " transform="matrix(0.987233,0,0,-0.987233,22.472619,29.23889)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="5.635503" y="25.468646"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -40.18433 0.000616251 L -22.141483 0.000616251 " transform="matrix(0.987233,0,0,-0.987233,104.085373,29.23889)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053627 0.000616251 L 1.61018 1.682241 L 3.086053 0.000616251 L 1.61018 -1.684966 Z M 6.053627 0.000616251 " transform="matrix(0.987233,0,0,-0.987233,79.426002,29.23889)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="76.585001" y="25.468646"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.505299 0.000616251 L 35.548146 0.000616251 " transform="matrix(0.987233,0,0,-0.987233,104.085373,29.23889)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053376 0.000616251 L 1.609929 1.682241 L 3.085802 0.000616251 L 1.609929 -1.684966 Z M 6.053376 0.000616251 " transform="matrix(0.987233,0,0,-0.987233,136.379374,29.23889)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="127.113577" y="25.468646"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="132.233369" y="25.468646"/>
</g>
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 75.194928 0.000616251 L 98.907819 0.000616251 " transform="matrix(0.987233,0,0,-0.987233,104.085373,29.23889)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 204.90625 29.238281 L 200.519531 27.578125 L 201.976562 29.238281 L 200.519531 30.902344 Z M 204.90625 29.238281 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053849 0.000616251 L 1.610402 1.682241 L 3.086275 0.000616251 L 1.610402 -1.684966 Z M 6.053849 0.000616251 " transform="matrix(0.987233,0,0,-0.987233,198.929689,29.23889)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="197.360165" y="23.556375"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 183 KiB

After

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
figs/interaction_rga_wc.pdf Normal file

Binary file not shown.

BIN
figs/interaction_rga_wc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

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