summaryrefslogtreecommitdiff
path: root/src/asset
diff options
context:
space:
mode:
Diffstat (limited to 'src/asset')
-rwxr-xr-xsrc/asset/src/generate_all_tiles.py168
-rwxr-xr-xsrc/asset/src/generate_frontier_tiles.py113
-rw-r--r--src/asset/tile/class/0/0.svg270
-rw-r--r--src/asset/tile/class/0/background.svg181
-rw-r--r--src/asset/tile/class/1/0.svg196
-rw-r--r--src/asset/tile/class/1/background.svg180
-rw-r--r--src/asset/tile/class/1/extra0.svg84
-rw-r--r--src/asset/tile/class/2/0.svg102
-rw-r--r--src/asset/tile/class/2/background.svg226
-rw-r--r--src/asset/tile/class/3/0.svg1289
-rw-r--r--src/asset/tile/class/3/background.svg180
-rw-r--r--src/asset/tile/class/4/0.svg63
-rw-r--r--src/asset/tile/class/4/background.svg181
-rw-r--r--src/asset/tile/frontier/basic/0.svg362
-rw-r--r--src/asset/tile/frontier/basic/1.svg760
-rw-r--r--src/asset/tile/frontier/basic/10.svg507
-rw-r--r--src/asset/tile/frontier/basic/11.svg374
-rw-r--r--src/asset/tile/frontier/basic/12.svg373
-rw-r--r--src/asset/tile/frontier/basic/13.svg629
-rw-r--r--src/asset/tile/frontier/basic/14.svg761
-rw-r--r--src/asset/tile/frontier/basic/15.svg626
-rw-r--r--src/asset/tile/frontier/basic/16.svg386
-rw-r--r--src/asset/tile/frontier/basic/17.svg507
-rw-r--r--src/asset/tile/frontier/basic/18.svg377
-rw-r--r--src/asset/tile/frontier/basic/19.svg633
-rw-r--r--src/asset/tile/frontier/basic/2.svg631
-rw-r--r--src/asset/tile/frontier/basic/20.svg634
-rw-r--r--src/asset/tile/frontier/basic/21.svg377
-rw-r--r--src/asset/tile/frontier/basic/22.svg377
-rw-r--r--src/asset/tile/frontier/basic/23.svg370
-rw-r--r--src/asset/tile/frontier/basic/24.svg636
-rw-r--r--src/asset/tile/frontier/basic/25.svg634
-rw-r--r--src/asset/tile/frontier/basic/26.svg518
-rw-r--r--src/asset/tile/frontier/basic/27.svg626
-rw-r--r--src/asset/tile/frontier/basic/28.svg759
-rw-r--r--src/asset/tile/frontier/basic/29.svg626
-rw-r--r--src/asset/tile/frontier/basic/3.svg378
-rw-r--r--src/asset/tile/frontier/basic/30.svg386
-rw-r--r--src/asset/tile/frontier/basic/31.svg506
-rw-r--r--src/asset/tile/frontier/basic/32.svg517
-rw-r--r--src/asset/tile/frontier/basic/33.svg630
-rw-r--r--src/asset/tile/frontier/basic/34.svg385
-rw-r--r--src/asset/tile/frontier/basic/35.svg632
-rw-r--r--src/asset/tile/frontier/basic/36.svg385
-rw-r--r--src/asset/tile/frontier/basic/37.svg765
-rw-r--r--src/asset/tile/frontier/basic/38.svg626
-rw-r--r--src/asset/tile/frontier/basic/39.svg626
-rw-r--r--src/asset/tile/frontier/basic/4.svg635
-rw-r--r--src/asset/tile/frontier/basic/40.svg386
-rw-r--r--src/asset/tile/frontier/basic/41.svg506
-rw-r--r--src/asset/tile/frontier/basic/42.svg506
-rw-r--r--src/asset/tile/frontier/basic/43.svg368
-rw-r--r--src/asset/tile/frontier/basic/44.svg507
-rw-r--r--src/asset/tile/frontier/basic/45.svg374
-rw-r--r--src/asset/tile/frontier/basic/5.svg385
-rw-r--r--src/asset/tile/frontier/basic/6.svg757
-rw-r--r--src/asset/tile/frontier/basic/7.svg626
-rw-r--r--src/asset/tile/frontier/basic/8.svg624
-rw-r--r--src/asset/tile/frontier/basic/9.svg384
-rw-r--r--src/asset/www/data/tiles.json.m43
60 files changed, 22789 insertions, 4824 deletions
diff --git a/src/asset/src/generate_all_tiles.py b/src/asset/src/generate_all_tiles.py
index 07cc7f2..3277f7b 100755
--- a/src/asset/src/generate_all_tiles.py
+++ b/src/asset/src/generate_all_tiles.py
@@ -1,55 +1,147 @@
#!/usr/bin/env python3
-import sys
import os
import shutil
+import sys
+import xml.etree.ElementTree as XML
+
+SVG_PREFIX = "{http://www.w3.org/2000/svg}"
+G_TAG = SVG_PREFIX + "g"
+
+MODEL_PREFIX = "rmid-"
+TEMPLATE_PREFIX = "rtid-"
################################################################################
+def get_xml (filename):
+ model_root = XML.parse(filename)
+
+ if (model_root == None):
+ print("[F] Could not open SVG file " + filename + ".")
+ exit(-1)
+
+ return model_root
+
+def get_model (filename):
+ model_root = get_xml(filename)
+
+ background = model_root.findall(
+ G_TAG
+ + "[@id='"
+ + MODEL_PREFIX
+ + "background']/*"
+ )
+
+ if (len(background) == 0):
+ print(
+ "[F] Could not find 'background' layer in model file ("
+ + filename
+ + ")"
+ )
+ exit(-1)
+
+ return background
+
+def replace_group_by (root_node, group_name, new_content, filename):
+ target_group = root_node.find(G_TAG+"[@id='" + group_name + "']")
+
+ if (target_group == None):
+ print("[F] Could not find group " + group_name + " in " + filename)
+ exit(-1)
+
+ for e in target_group:
+ target_group.remove(e)
+
+ target_group.extend(new_content)
+
+def generate_background_file (output_dir, bg_file, tile_class):
+ shutil.copyfile(
+ bg_file,
+ (output_dir + "/" + tile_class + "-bg.svg")
+ )
+
+def generate_variant_file (output_dir, variant_file, tile_class):
+ shutil.copyfile(
+ variant_file,
+ (
+ output_dir
+ + "/"
+ + tile_class
+ + "-v-"
+ + os.path.basename(variant_file)
+ )
+ )
+
+def generate_frontier_file (output_dir, tile_class, bg_content, frontier_file):
+ template_root = get_xml(frontier_file)
+
+ models_layer = template_root.find(
+ G_TAG
+ + "[@id='"
+ + TEMPLATE_PREFIX
+ + "models_layer']"
+ )
+
+ if (models_layer == None):
+ print("[F] Could not find model layer in file " + frontier_file + ".")
+ exit(-1)
+
+ replace_group_by(
+ models_layer,
+ (TEMPLATE_PREFIX + "bg_b_model"),
+ bg_content,
+ frontier_file
+ )
+
+ template_root.write(
+ output_dir
+ + "/"
+ + tile_class
+ + "-f-"
+ + os.path.basename(frontier_file)
+ )
+
+
################################################################################
-if (len(sys.argv) != 5):
- print("Usage: <OUTPUT_DIR> <CLASSES_DIR> <TEMPLATES_DIR> <FRONTIER_SCRIPT>")
+if (len(sys.argv) != 4):
+ print("Usage: <OUTPUT_DIR> <CLASSES_DIR> <TEMPLATES_DIR>")
exit(-1)
output_dir = sys.argv[1]
classes_dir = sys.argv[2]
templates_dir = sys.argv[3]
-frontier_script = sys.argv[4]
class_dirs = os.listdir(classes_dir)
template_files = os.listdir(templates_dir)
-template_files_list = " ".join([ (templates_dir + "/" + e) for e in template_files])
-
-for a_model in class_dirs:
- a_model = classes_dir + a_model
- print("A Model: " + a_model)
- a_model_id = os.path.basename(a_model)
- base_prefix = output_dir + "/" + a_model_id + "-"
-
- for b_model in class_dirs:
- b_model = classes_dir + b_model
- b_model_id = os.path.basename(b_model)
- prefix = base_prefix + b_model_id + "-"
-
- if (a_model_id == b_model_id):
- for variation in os.listdir(a_model):
- print("---")
- print("Variation: " + variation)
- print("a_model: " + a_model)
- print("prefix: " + prefix)
- print("---")
- shutil.copyfile(
- a_model + "/" + variation,
- prefix + variation
- )
- else:
- os.system(
- frontier_script
- + " " + output_dir
- + " " + a_model_id
- + " " + b_model_id
- + " " + a_model + "/0.svg"
- + " " + b_model + "/0.svg"
- + " " + template_files_list
- )
+template_files_list = " ".join(
+ [(templates_dir + "/" + e) for e in template_files]
+)
+
+for tile_class in class_dirs:
+ print("Generating SVG files for tile class " + tile_class + "...")
+ tile_class_dir = classes_dir + "/" + tile_class
+ background_file = tile_class_dir + "/background.svg"
+ background_content = get_model(background_file)
+
+ generate_background_file(output_dir, background_file, tile_class)
+
+ ### Frontier files
+ for frontier_class in template_files:
+ frontier_file = templates_dir + "/" + frontier_class
+ generate_frontier_file(
+ output_dir,
+ tile_class,
+ background_content,
+ frontier_file
+ )
+
+ ### Tile Variations
+ tile_variants = os.listdir(tile_class_dir)
+
+ for tile_variant in tile_variants:
+ if ("background" in tile_variant):
+ continue
+
+ tile_variant_file = tile_class_dir + "/" + tile_variant
+ generate_variant_file(output_dir, tile_variant_file, tile_class)
diff --git a/src/asset/src/generate_frontier_tiles.py b/src/asset/src/generate_frontier_tiles.py
deleted file mode 100755
index 266a623..0000000
--- a/src/asset/src/generate_frontier_tiles.py
+++ /dev/null
@@ -1,113 +0,0 @@
-#!/usr/bin/env python3
-import xml.etree.ElementTree as XML
-import sys
-import os
-
-SVG_PREFIX = "{http://www.w3.org/2000/svg}"
-G_TAG = SVG_PREFIX + "g"
-TEMPLATE_PREFIX = "rtid-"
-################################################################################
-def id_to_prefix (id_val):
- return ("rmid-" + id_val + "-")
-
-def get_xml (filename):
- model_root = XML.parse(filename)
-
- if (model_root == None):
- print("[F] Could not open SVG file " + filename + ".")
- exit(-1)
-
- return model_root
-
-def get_model (filename, id_prefix):
- model_root = get_xml(filename)
-
- background = model_root.findall(
- G_TAG
- + "[@id='"
- + id_prefix
- + "background']/*"
- )
-
- if (len(background) == 0):
- print(
- "[F] Could not find 'background' layer in model file ("
- + filename
- + ")"
- )
- exit(-1)
-
- extras = model_root.findall(
- G_TAG
- + "[@id='"
- + id_prefix
- + "details']/*"
- )
-
- if (len(extras) == 0):
- if (model_root.find(G_TAG+"[@id='" + id_prefix + "details']") == None):
- print(
- "[W] Could not find 'details' layer in model file ("
- + filename
- + ")"
- )
-
- return (background, extras)
-
-def replace_group_by (root_node, group_name, new_content, filename):
- target_group = root_node.find(G_TAG+"[@id='" + group_name + "']")
-
- if (target_group == None):
- print("[F] Could not find group " + group_name + " in " + filename)
- exit(-1)
-
- for e in target_group:
- target_group.remove(e)
-
- target_group.extend(new_content)
-################################################################################
-
-if (len(sys.argv) < 6):
- print("Usage: <OUTPUT_DIR> <A_ID> <B_ID> <A> <B> <TEMPLATES>")
- exit(-1)
-
-output_dir = sys.argv[1]
-model_a_id = sys.argv[2]
-model_b_id = sys.argv[3]
-(model_a_bg, model_a_details) = get_model(sys.argv[4], id_to_prefix(model_a_id))
-(model_b_bg, model_b_details) = get_model(sys.argv[5], id_to_prefix(model_b_id))
-
-current_arg = 6
-variant_count = 0
-
-while (current_arg < len(sys.argv)):
- filename = sys.argv[current_arg]
- current_arg += 1
-
- template_root = get_xml(filename)
-
- models_layer = template_root.find(
- G_TAG
- + "[@id='"
- + TEMPLATE_PREFIX
- + "models_layer']"
- )
-
- if (models_layer == None):
- print("[F] Could not find model layer in file " + filename + ".")
-
- replace_group_by(models_layer, TEMPLATE_PREFIX + "bg_a_model", model_a_bg, filename)
- replace_group_by(models_layer, TEMPLATE_PREFIX + "bg_b_model", model_b_bg, filename)
- replace_group_by(template_root, TEMPLATE_PREFIX + "details", model_a_details, filename)
-
- template_root.write(
- output_dir
- + "/"
- + model_a_id
- + "-"
- + model_b_id
- + "-"
- + os.path.basename(filename)
- )
-
- variant_count += 1
diff --git a/src/asset/tile/class/0/0.svg b/src/asset/tile/class/0/0.svg
index 3e126bb..afe4921 100644
--- a/src/asset/tile/class/0/0.svg
+++ b/src/asset/tile/class/0/0.svg
@@ -1,59 +1,217 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="svg8" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="background.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rmid-0-defs2" />
- <ns2:namedview bordercolor="#666666" borderopacity="1.0" id="rmid-0-base" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rmid-0-details" ns1:cx="70.52" ns1:cy="285.6" ns1:document-units="mm" ns1:pageopacity="0.0" ns1:pageshadow="2" ns1:snap-global="false" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="1.315">
- <ns1:grid id="rmid-0-grid882" spacingx="31.999999" spacingy="31.999999" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rmid-0-metadata5">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="0.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rmid-defs2" />
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1.0"
+ id="rmid-base"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rmid-details"
+ inkscape:cx="70.52"
+ inkscape:cy="279.72681"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:snap-global="false"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.315">
+ <inkscape:grid
+ id="rmid-grid882"
+ spacingx="31.999999"
+ spacingy="31.999999"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rmid-metadata5">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rmid-0-background" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="rmid-0-background">
- <ns0:g id="rmid-0-0_rmid-0-base" style="fill:#800080">
- <ns0:rect height="32" id="rmid-0-0_greenbg" style="fill:#800080;stroke-width:3.13680005;stroke-linejoin:bevel" width="32" x="0" y="0" />
- </ns0:g>
- <ns0:use height="100%" id="rmid-0-0b00" width="100%" x="32" y="0" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b01" width="100%" x="64" y="0" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b02" width="100%" x="96" y="0" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b10" width="100%" x="0" y="32" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b11" width="100%" x="32" y="32" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b12" width="100%" x="64" y="32" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b13" width="100%" x="96" y="32" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b20" width="100%" x="0" y="64" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b21" width="100%" x="32" y="64" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b22" width="100%" x="64" y="64" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b23" width="100%" x="96" y="64" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b30" width="100%" x="0" y="96" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b31" width="100%" x="32" y="96" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b32" width="100%" x="64" y="96" ns6:href="#rmid-0-0_rmid-0-base" />
- <ns0:use height="100%" id="rmid-0-0b33" width="100%" x="96" y="96" ns6:href="#rmid-0-0_rmid-0-base" />
- </ns0:g>
- <ns0:g id="rmid-0-details" ns1:groupmode="layer" ns1:label="rmid-0-details">
- <ns0:g aria-label="error" id="rmid-0-text1110" style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332" transform="translate(-32.000001,-233)">
- <ns0:path d="m 39.982403,249.52193 h -4.216797 q 0.05684,0.50643 0.273885,0.75448 0.304891,0.35657 0.795817,0.35657 0.310059,0 0.589111,-0.15503 0.170532,-0.0982 0.366903,-0.34624 l 2.072225,0.19121 q -0.475423,0.82682 -1.147217,1.18855 -0.671794,0.35657 -1.927531,0.35657 -1.090373,0 -1.715657,-0.30489 -0.625285,-0.31006 -1.038697,-0.97668 -0.408243,-0.6718 -0.408243,-1.57613 0,-1.28675 0.821655,-2.08256 0.826823,-0.79582 2.27893,-0.79582 1.178223,0 1.860352,0.35657 0.682129,0.35656 1.038696,1.03352 0.356568,0.67697 0.356568,1.76217 z m -2.139405,-1.00769 q -0.06201,-0.60978 -0.330729,-0.87333 -0.26355,-0.26355 -0.697632,-0.26355 -0.501261,0 -0.800984,0.39791 -0.191203,0.24805 -0.24288,0.73897 z" id="rmid-0-path1112" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';fill:#ffffff;stroke-width:0.26458332" ns1:connector-curvature="0" />
- <ns0:path d="m 40.979758,246.25598 h 1.968872 v 0.89917 q 0.28422,-0.58394 0.583944,-0.80098 0.304891,-0.22221 0.749308,-0.22221 0.465088,0 1.018026,0.28939 l -0.651123,1.49861 q -0.372071,-0.15503 -0.589112,-0.15503 -0.413411,0 -0.640788,0.34107 -0.325561,0.48059 -0.325561,1.79834 v 1.83968 h -2.113566 z" id="rmid-0-path1114" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';fill:#ffffff;stroke-width:0.26458332" ns1:connector-curvature="0" />
- <ns0:path d="m 46.126731,246.25598 h 1.968872 v 0.89917 q 0.28422,-0.58394 0.583943,-0.80098 0.304891,-0.22221 0.749309,-0.22221 0.465087,0 1.018025,0.28939 l -0.651123,1.49861 q -0.37207,-0.15503 -0.589111,-0.15503 -0.413412,0 -0.640788,0.34107 -0.325561,0.48059 -0.325561,1.79834 v 1.83968 h -2.113566 z" id="rmid-0-path1116" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';fill:#ffffff;stroke-width:0.26458332" ns1:connector-curvature="0" />
- <ns0:path d="m 50.705262,249.0155 q 0,-1.25573 0.847493,-2.06705 0.847494,-0.81649 2.289266,-0.81649 1.648478,0 2.490804,0.95601 0.676961,0.76998 0.676961,1.89653 0,1.26607 -0.842325,2.07739 -0.837159,0.80615 -2.320272,0.80615 -1.322917,0 -2.139404,-0.67179 -1.002523,-0.83199 -1.002523,-2.18075 z m 2.108398,-0.005 q 0,0.7338 0.294556,1.0852 0.299723,0.3514 0.749308,0.3514 0.454753,0 0.744141,-0.34623 0.294555,-0.34623 0.294555,-1.11105 0,-0.71313 -0.294555,-1.05936 -0.294556,-0.3514 -0.728638,-0.3514 -0.45992,0 -0.759643,0.35657 -0.299724,0.3514 -0.299724,1.07487 z" id="rmid-0-path1118" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';fill:#ffffff;stroke-width:0.26458332" ns1:connector-curvature="0" />
- <ns0:path d="m 58.053651,246.25598 h 1.968872 v 0.89917 q 0.28422,-0.58394 0.583943,-0.80098 0.304891,-0.22221 0.749308,-0.22221 0.465088,0 1.018026,0.28939 l -0.651123,1.49861 q -0.37207,-0.15503 -0.589111,-0.15503 -0.413412,0 -0.640788,0.34107 -0.325561,0.48059 -0.325561,1.79834 v 1.83968 h -2.113566 z" id="rmid-0-path1120" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';fill:#ffffff;stroke-width:0.26458332" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rmid-0-use977" transform="translate(31.999799)" width="100%" x="0" y="0" ns6:href="#rmid-0-text1110" />
- <ns0:use height="100%" id="rmid-0-use979" transform="translate(32)" width="100%" x="0" y="0" ns6:href="#rmid-0-use977" />
- <ns0:use height="100%" id="rmid-0-use981" transform="translate(32)" width="100%" x="0" y="0" ns6:href="#rmid-0-use979" />
- <ns0:use height="100%" id="rmid-0-use983" transform="translate(0,31.99996)" width="100%" x="0" y="0" ns6:href="#rmid-0-text1110" />
- <ns0:use height="100%" id="rmid-0-use985" transform="translate(0,31.99996)" width="100%" x="0" y="0" ns6:href="#rmid-0-use977" />
- <ns0:use height="100%" id="rmid-0-use987" transform="translate(0,31.99996)" width="100%" x="0" y="0" ns6:href="#rmid-0-use979" />
- <ns0:use height="100%" id="rmid-0-use989" transform="translate(0,31.99996)" width="100%" x="0" y="0" ns6:href="#rmid-0-use981" />
- <ns0:use height="100%" id="rmid-0-use991" transform="translate(0,64)" width="100%" x="0" y="0" ns6:href="#rmid-0-text1110" />
- <ns0:use height="100%" id="rmid-0-use993" transform="translate(0,64)" width="100%" x="0" y="0" ns6:href="#rmid-0-use977" />
- <ns0:use height="100%" id="rmid-0-use995" transform="translate(0,64)" width="100%" x="0" y="0" ns6:href="#rmid-0-use979" />
- <ns0:use height="100%" id="rmid-0-use997" transform="translate(0,64)" width="100%" x="0" y="0" ns6:href="#rmid-0-use981" />
- <ns0:use height="100%" id="rmid-0-use999" transform="translate(0,64)" width="100%" x="0" y="0" ns6:href="#rmid-0-use983" />
- <ns0:use height="100%" id="rmid-0-use1001" transform="translate(0,64)" width="100%" x="0" y="0" ns6:href="#rmid-0-use985" />
- <ns0:use height="100%" id="rmid-0-use1003" transform="translate(0,64)" width="100%" x="0" y="0" ns6:href="#rmid-0-use987" />
- <ns0:use height="100%" id="rmid-0-use1005" transform="translate(0,64)" width="100%" x="0" y="0" ns6:href="#rmid-0-use989" />
- </ns0:g>
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rmid-details"
+ inkscape:groupmode="layer"
+ inkscape:label="rmid-details"
+ style="display:inline"
+ sodipodi:insensitive="true">
+ <g
+ aria-label="error"
+ id="rmid-text1110"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="translate(-32.000001,-233)">
+ <path
+ d="m 39.982403,249.52193 h -4.216797 q 0.05684,0.50643 0.273885,0.75448 0.304891,0.35657 0.795817,0.35657 0.310059,0 0.589111,-0.15503 0.170532,-0.0982 0.366903,-0.34624 l 2.072225,0.19121 q -0.475423,0.82682 -1.147217,1.18855 -0.671794,0.35657 -1.927531,0.35657 -1.090373,0 -1.715657,-0.30489 -0.625285,-0.31006 -1.038697,-0.97668 -0.408243,-0.6718 -0.408243,-1.57613 0,-1.28675 0.821655,-2.08256 0.826823,-0.79582 2.27893,-0.79582 1.178223,0 1.860352,0.35657 0.682129,0.35656 1.038696,1.03352 0.356568,0.67697 0.356568,1.76217 z m -2.139405,-1.00769 q -0.06201,-0.60978 -0.330729,-0.87333 -0.26355,-0.26355 -0.697632,-0.26355 -0.501261,0 -0.800984,0.39791 -0.191203,0.24805 -0.24288,0.73897 z"
+ id="rmid-path1112"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';fill:#ffffff;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 40.979758,246.25598 h 1.968872 v 0.89917 q 0.28422,-0.58394 0.583944,-0.80098 0.304891,-0.22221 0.749308,-0.22221 0.465088,0 1.018026,0.28939 l -0.651123,1.49861 q -0.372071,-0.15503 -0.589112,-0.15503 -0.413411,0 -0.640788,0.34107 -0.325561,0.48059 -0.325561,1.79834 v 1.83968 h -2.113566 z"
+ id="rmid-path1114"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';fill:#ffffff;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 46.126731,246.25598 h 1.968872 v 0.89917 q 0.28422,-0.58394 0.583943,-0.80098 0.304891,-0.22221 0.749309,-0.22221 0.465087,0 1.018025,0.28939 l -0.651123,1.49861 q -0.37207,-0.15503 -0.589111,-0.15503 -0.413412,0 -0.640788,0.34107 -0.325561,0.48059 -0.325561,1.79834 v 1.83968 h -2.113566 z"
+ id="rmid-path1116"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';fill:#ffffff;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 50.705262,249.0155 q 0,-1.25573 0.847493,-2.06705 0.847494,-0.81649 2.289266,-0.81649 1.648478,0 2.490804,0.95601 0.676961,0.76998 0.676961,1.89653 0,1.26607 -0.842325,2.07739 -0.837159,0.80615 -2.320272,0.80615 -1.322917,0 -2.139404,-0.67179 -1.002523,-0.83199 -1.002523,-2.18075 z m 2.108398,-0.005 q 0,0.7338 0.294556,1.0852 0.299723,0.3514 0.749308,0.3514 0.454753,0 0.744141,-0.34623 0.294555,-0.34623 0.294555,-1.11105 0,-0.71313 -0.294555,-1.05936 -0.294556,-0.3514 -0.728638,-0.3514 -0.45992,0 -0.759643,0.35657 -0.299724,0.3514 -0.299724,1.07487 z"
+ id="rmid-path1118"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';fill:#ffffff;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 58.053651,246.25598 h 1.968872 v 0.89917 q 0.28422,-0.58394 0.583943,-0.80098 0.304891,-0.22221 0.749308,-0.22221 0.465088,0 1.018026,0.28939 l -0.651123,1.49861 q -0.37207,-0.15503 -0.589111,-0.15503 -0.413412,0 -0.640788,0.34107 -0.325561,0.48059 -0.325561,1.79834 v 1.83968 h -2.113566 z"
+ id="rmid-path1120"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';fill:#ffffff;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-use977"
+ transform="translate(31.999799)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-text1110" />
+ <use
+ height="100%"
+ id="rmid-use979"
+ transform="translate(32)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use977" />
+ <use
+ height="100%"
+ id="rmid-use981"
+ transform="translate(32)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use979" />
+ <use
+ height="100%"
+ id="rmid-use983"
+ transform="translate(0,31.99996)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-text1110" />
+ <use
+ height="100%"
+ id="rmid-use985"
+ transform="translate(0,31.99996)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use977" />
+ <use
+ height="100%"
+ id="rmid-use987"
+ transform="translate(0,31.99996)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use979" />
+ <use
+ height="100%"
+ id="rmid-use989"
+ transform="translate(0,31.99996)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use981" />
+ <use
+ height="100%"
+ id="rmid-use991"
+ transform="translate(0,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-text1110" />
+ <use
+ height="100%"
+ id="rmid-use993"
+ transform="translate(0,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use977" />
+ <use
+ height="100%"
+ id="rmid-use995"
+ transform="translate(0,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use979" />
+ <use
+ height="100%"
+ id="rmid-use997"
+ transform="translate(0,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use981" />
+ <use
+ height="100%"
+ id="rmid-use999"
+ transform="translate(0,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use983" />
+ <use
+ height="100%"
+ id="rmid-use1001"
+ transform="translate(0,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use985" />
+ <use
+ height="100%"
+ id="rmid-use1003"
+ transform="translate(0,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use987" />
+ <use
+ height="100%"
+ id="rmid-use1005"
+ transform="translate(0,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use989" />
+ </g>
+</svg>
diff --git a/src/asset/tile/class/0/background.svg b/src/asset/tile/class/0/background.svg
new file mode 100644
index 0000000..cbbb378
--- /dev/null
+++ b/src/asset/tile/class/0/background.svg
@@ -0,0 +1,181 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="background.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rmid-defs2" />
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1.0"
+ id="rmid-base"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rmid-background"
+ inkscape:cx="70.52"
+ inkscape:cy="279.72681"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:snap-global="false"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.315">
+ <inkscape:grid
+ id="rmid-grid882"
+ spacingx="31.999999"
+ spacingy="31.999999"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rmid-metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rmid-background"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="rmid-background">
+ <g
+ id="rmid-0_rmid-base"
+ style="fill:#800080">
+ <rect
+ height="32"
+ id="rmid-0_greenbg"
+ style="fill:#800080;stroke-width:3.13680005;stroke-linejoin:bevel"
+ width="32"
+ x="0"
+ y="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-0b00"
+ width="100%"
+ x="32"
+ y="0"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b01"
+ width="100%"
+ x="64"
+ y="0"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b02"
+ width="100%"
+ x="96"
+ y="0"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b10"
+ width="100%"
+ x="0"
+ y="32"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b11"
+ width="100%"
+ x="32"
+ y="32"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b12"
+ width="100%"
+ x="64"
+ y="32"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b13"
+ width="100%"
+ x="96"
+ y="32"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b20"
+ width="100%"
+ x="0"
+ y="64"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b21"
+ width="100%"
+ x="32"
+ y="64"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b22"
+ width="100%"
+ x="64"
+ y="64"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b23"
+ width="100%"
+ x="96"
+ y="64"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b30"
+ width="100%"
+ x="0"
+ y="96"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b31"
+ width="100%"
+ x="32"
+ y="96"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b32"
+ width="100%"
+ x="64"
+ y="96"
+ xlink:href="#rmid-0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b33"
+ width="100%"
+ x="96"
+ y="96"
+ xlink:href="#rmid-0_rmid-base" />
+ </g>
+</svg>
diff --git a/src/asset/tile/class/1/0.svg b/src/asset/tile/class/1/0.svg
index 38e8e6e..eb533f5 100644
--- a/src/asset/tile/class/1/0.svg
+++ b/src/asset/tile/class/1/0.svg
@@ -1,50 +1,154 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="svg8" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="background.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rmid-1-defs2" />
- <ns2:namedview bordercolor="#666666" borderopacity="1.0" id="rmid-1-base" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rmid-1-details" ns1:cx="70.52" ns1:cy="285.6" ns1:document-units="mm" ns1:pageopacity="0.0" ns1:pageshadow="2" ns1:snap-global="false" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="1.315">
- <ns1:grid id="rmid-1-grid882" spacingx="31.999999" spacingy="31.999999" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rmid-1-metadata5">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="0.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rmid-defs2" />
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1.0"
+ id="rmid-base"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rmid-details"
+ inkscape:cx="70.52"
+ inkscape:cy="285.6"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:snap-global="false"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.315">
+ <inkscape:grid
+ id="rmid-grid882"
+ spacingx="31.999999"
+ spacingy="31.999999"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rmid-metadata5">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rmid-1-background" ns1:groupmode="layer" ns1:label="rmid-1-background">
- <ns0:g id="0_rmid-1-base">
- <ns0:rect height="32" id="rmid-1-0_greenbg" style="fill:#bcd35f;stroke-width:3.1368;stroke-linejoin:bevel" width="32" x="0" y="0" />
- </ns0:g>
- <ns0:use height="100%" id="rmid-1-0b00" width="100%" x="32" y="0" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b01" width="100%" x="64" y="0" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b02" width="100%" x="96" y="0" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b10" width="100%" x="0" y="32" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b11" width="100%" x="32" y="32" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b12" width="100%" x="64" y="32" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b13" width="100%" x="96" y="32" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b20" width="100%" x="0" y="64" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b21" width="100%" x="32" y="64" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b22" width="100%" x="64" y="64" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b23" width="100%" x="96" y="64" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b30" width="100%" x="0" y="96" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b31" width="100%" x="32" y="96" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b32" width="100%" x="64" y="96" ns6:href="#0_rmid-1-base" />
- <ns0:use height="100%" id="rmid-1-0b33" width="100%" x="96" y="96" ns6:href="#0_rmid-1-base" />
- </ns0:g>
- <ns0:g id="rmid-1-details" ns1:groupmode="layer" ns1:label="rmid-1-details">
- <ns0:g id="rmid-1-g5465-3" style="" transform="translate(29.980001,-3.372)">
- <ns0:path d="M 7.726,11.73 C 10.3,11.51 11.75,8.451 12.66,5.179 9.471,5.267 7.892,7.74 7.726,11.73 Z" id="rmid-1-path4744-67" style="fill:#cdde87;fill-rule:evenodd;stroke-width:0.403px" ns2:nodetypes="ccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.726,11.73 C 5.22,10.25 4.498,10.5 3.588,7.229 6.775,7.317 7.958,7.211 7.726,11.73 Z" id="rmid-1-path4744-6-5" style="fill:#cdde87;fill-rule:evenodd;stroke-width:0.403px" ns2:nodetypes="ccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rmid-1-use2461" style="" transform="translate(18.61,13.88)" width="100%" x="0" y="0" ns6:href="#rmid-1-g5465-3" />
- <ns0:use height="100%" id="rmid-1-use2463" style="" transform="translate(42.14,16.6)" width="100%" x="0" y="0" ns6:href="#rmid-1-g5465-3" />
- <ns0:use height="100%" id="rmid-1-use2465" style="" transform="translate(68.2,11.06)" width="100%" x="0" y="0" ns6:href="#rmid-1-g5465-3" />
- <ns0:use height="100%" id="rmid-1-use2467" style="" transform="translate(-62.559999,22.13)" width="100%" x="0" y="0" ns6:href="#rmid-1-use2465" />
- <ns0:use height="100%" id="rmid-1-use2469" style="" transform="translate(33.600001,18.11)" width="100%" x="0" y="0" ns6:href="#rmid-1-use2467" />
- <ns0:use height="100%" id="rmid-1-use2471" style="" transform="translate(-69.609999,32.989999)" width="100%" x="0" y="0" ns6:href="#rmid-1-use2469" />
- <ns0:use height="100%" id="rmid-1-use2473" style="" transform="translate(48.68,-18.31)" width="100%" x="0" y="0" ns6:href="#rmid-1-use2471" />
- <ns0:use height="100%" id="rmid-1-use2475" style="" transform="translate(32.989999,19.11)" width="100%" x="0" y="0" ns6:href="#rmid-1-use2473" />
- <ns0:use height="100%" id="rmid-1-use2477" style="" transform="translate(15.69,-10.66)" width="100%" x="0" y="0" ns6:href="#rmid-1-use2475" />
- </ns0:g>
-</ns0:svg>
+ </metadata>
+ <g
+ id="rmid-details"
+ inkscape:groupmode="layer"
+ inkscape:label="rmid-details"
+ sodipodi:insensitive="true">
+ <g
+ id="rmid-g5465-3"
+ style="stroke:none;stroke-width:0.04;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="translate(29.980001,-3.372)">
+ <path
+ d="M 7.726,11.73 C 10.3,11.51 11.75,8.451 12.66,5.179 9.471,5.267 7.892,7.74 7.726,11.73 Z"
+ id="rmid-path4744-67"
+ style="fill:#cdde87;fill-rule:evenodd;stroke:none;stroke-width:0.04;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.726,11.73 C 5.22,10.25 4.498,10.5 3.588,7.229 6.775,7.317 7.958,7.211 7.726,11.73 Z"
+ id="rmid-path4744-6-5"
+ style="fill:#cdde87;fill-rule:evenodd;stroke:none;stroke-width:0.04;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-use2461"
+ transform="translate(18.61,13.88)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g5465-3" />
+ <use
+ height="100%"
+ id="rmid-use2463"
+ transform="translate(42.14,16.6)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g5465-3" />
+ <use
+ height="100%"
+ id="rmid-use2465"
+ transform="translate(68.2,11.06)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g5465-3" />
+ <use
+ height="100%"
+ id="rmid-use2467"
+ transform="translate(-62.559999,22.13)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2465" />
+ <use
+ height="100%"
+ id="rmid-use2469"
+ transform="translate(33.600001,18.11)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2467" />
+ <use
+ height="100%"
+ id="rmid-use2471"
+ transform="translate(-69.609999,32.989999)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2469" />
+ <use
+ height="100%"
+ id="rmid-use2473"
+ transform="translate(48.68,-18.31)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2471" />
+ <use
+ height="100%"
+ id="rmid-use2475"
+ transform="translate(32.989999,19.11)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2473" />
+ <use
+ height="100%"
+ id="rmid-use2477"
+ transform="translate(15.69,-10.66)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2475" />
+ </g>
+</svg>
diff --git a/src/asset/tile/class/1/background.svg b/src/asset/tile/class/1/background.svg
new file mode 100644
index 0000000..267b02d
--- /dev/null
+++ b/src/asset/tile/class/1/background.svg
@@ -0,0 +1,180 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="background.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rmid-defs2" />
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1.0"
+ id="rmid-base"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rmid-background"
+ inkscape:cx="70.52"
+ inkscape:cy="285.6"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:snap-global="false"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.315">
+ <inkscape:grid
+ id="rmid-grid882"
+ spacingx="31.999999"
+ spacingy="31.999999"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rmid-metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rmid-background"
+ inkscape:groupmode="layer"
+ inkscape:label="rmid-background"
+ sodipodi:insensitive="true">
+ <g
+ id="0_rmid-base">
+ <rect
+ height="32"
+ id="rmid-0_greenbg"
+ style="fill:#bcd35f;stroke-width:3.13680005;stroke-linejoin:bevel"
+ width="32"
+ x="0"
+ y="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-0b00"
+ width="100%"
+ x="32"
+ y="0"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b01"
+ width="100%"
+ x="64"
+ y="0"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b02"
+ width="100%"
+ x="96"
+ y="0"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b10"
+ width="100%"
+ x="0"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b11"
+ width="100%"
+ x="32"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b12"
+ width="100%"
+ x="64"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b13"
+ width="100%"
+ x="96"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b20"
+ width="100%"
+ x="0"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b21"
+ width="100%"
+ x="32"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b22"
+ width="100%"
+ x="64"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b23"
+ width="100%"
+ x="96"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b30"
+ width="100%"
+ x="0"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b31"
+ width="100%"
+ x="32"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b32"
+ width="100%"
+ x="64"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b33"
+ width="100%"
+ x="96"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ </g>
+</svg>
diff --git a/src/asset/tile/class/1/extra0.svg b/src/asset/tile/class/1/extra0.svg
deleted file mode 100644
index f38967d..0000000
--- a/src/asset/tile/class/1/extra0.svg
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="10mm"
- height="10mm"
- viewBox="0 0 10 10"
- version="1.1"
- id="svg8"
- inkscape:version="0.92.2 5c3e80d, 2017-08-06"
- sodipodi:docname="extra0.svg">
- <defs
- id="defs2" />
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.86"
- inkscape:cx="192.07874"
- inkscape:cy="126.55816"
- inkscape:document-units="mm"
- inkscape:current-layer="layer2"
- showgrid="true"
- showguides="false"
- inkscape:window-width="1678"
- inkscape:window-height="1029"
- inkscape:window-x="1"
- inkscape:window-y="516"
- inkscape:window-maximized="0"
- inkscape:snap-global="false">
- <inkscape:grid
- type="xygrid"
- id="grid882"
- units="mm"
- spacingx="31.999999"
- spacingy="31.999999" />
- </sodipodi:namedview>
- <metadata
- id="metadata5">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="details"
- transform="translate(0,-22)"
- style="display:inline">
- <g
- transform="matrix(1,0,0,1.0000395,-3.1231138,18.546059)"
- style="display:inline"
- id="g5465-3">
- <path
- style="fill:#cdde87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.40300986px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 7.726239,11.728478 C 10.298977,11.50653 11.748145,8.4506522 12.658664,5.1787364 9.4708713,5.2666865 7.8918063,7.7400044 7.726239,11.728478 Z"
- id="path4744-67"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <path
- style="fill:#cdde87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.40300986px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 7.726239,11.728478 C 5.2196468,10.249759 4.4980827,10.501173 3.5875637,7.2292572 6.775357,7.3172073 7.957547,7.2108377 7.726239,11.728478 Z"
- id="path4744-6-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- </g>
- </g>
-</svg>
diff --git a/src/asset/tile/class/2/0.svg b/src/asset/tile/class/2/0.svg
index 15e309c..407e53f 100644
--- a/src/asset/tile/class/2/0.svg
+++ b/src/asset/tile/class/2/0.svg
@@ -1,45 +1,63 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="svg8" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="background.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns2:namedview bordercolor="#666666" borderopacity="1.0" id="rmid-2-base" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rmid-2-background" ns1:cx="-20.57" ns1:cy="427.4" ns1:document-units="mm" ns1:pageopacity="0.0" ns1:pageshadow="2" ns1:snap-global="false" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="2">
- <ns1:grid id="rmid-2-grid882" spacingx="31.999999" spacingy="31.999999" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:defs id="rmid-2-defs2" />
- <ns0:metadata id="rmid-2-metadata5">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="0.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1.0"
+ id="rmid-base"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rmid-details"
+ inkscape:cx="-77.704674"
+ inkscape:cy="370.98289"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:snap-global="false"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.5">
+ <inkscape:grid
+ id="rmid-grid882"
+ spacingx="31.999999"
+ spacingy="31.999999"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <defs
+ id="rmid-defs2" />
+ <metadata
+ id="rmid-metadata5">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rmid-2-background" ns1:groupmode="layer" ns1:label="rmid-2-background">
- <ns0:g id="1_rmid-2-base">
- <ns0:rect height="32" id="1_rmid-2-base_bg" style="fill:#6c5353;stroke-width:1.1739;stroke-linejoin:bevel" width="32" x="0" y="0" />
- <ns0:path d="M 0,0 C 0,0 1,0 1,0 1,0 0,1 0,1 0,1 0,0 0,0" id="1_rmid-2-base_p0" style="fill:#916f6f;stroke-width:0.099" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 H 31 C 31.21,31.57 31.56,31.24 32,31 V 32" id="1_rmid-2-base_p1" style="fill:#916f6f;stroke-width:0.099" ns2:nodetypes="cccc" ns1:connector-curvature="0" />
- <ns0:path d="M 31,0 C 31,0 32,0 32,0 32,0 32,1 32,1 32,1 29.37,2.88 28.15,4.1 26.93,5.3 27.3,7.6 25.72,9.2 24.14,10.8 20.57,11.7 18.77,13.5 16.97,15.3 16.27,18.7 14.49,20.5 12.7,22.3 9.458,22.2 7.835,23.9 6.212,25.5 6.049,28.3 4.793,29.5 3.537,30.8 1,32 1,32 1,32 0,32 0,32 0,32 0,31 0,31 0,31 2.529,29.7 3.779,28.4 5.03,27.2 5.193,24.6 6.802,23 8.412,21.4 11.81,20.4 13.58,18.6 15.35,16.9 15.84,13.9 17.65,12.1 19.47,10.3 22.84,9.7 24.41,8.1 25.98,6.5 25.33,4.1 26.55,2.91 27.76,1.69 31,0 31,0 31,0 31,0 31,0" id="1_rmid-2-base_p2" style="fill:#916f6f;stroke-width:0.099" ns1:connector-curvature="0" />
- <ns0:path d="M 7,0 C 7,0 9,0 9,0 9,0 6.568,1.54 5.499,2.61 4.431,3.68 4.117,5.9 3.118,6.9 2.119,7.9 0,9 0,9 0,9 0,7 0,7 0,7 1.357,6.5 2.184,5.6 3.011,4.8 3.653,2.69 4.533,1.81 5.412,0.93 7,0 7,0 7,0 7,0 7,0" id="1_rmid-2-base_p3" style="fill:#916f6f;stroke-width:0.099" ns1:connector-curvature="0" />
- <ns0:path d="M 23,0 C 23,0 25,0 25,0 25,0 21.72,2.05 20.2,3.58 18.67,5.1 18.43,8.2 16.66,9.9 14.88,11.7 11.56,12.6 9.713,14.4 7.866,16.3 6.258,20.2 5.413,21 4.568,21.9 0,25 0,25 0,25 0,23 0,23 0,23 2.812,21.3 4.364,19.8 5.915,18.2 7.042,14.8 8.845,13 10.65,11.2 13.64,10.7 15.38,9 17.11,7.3 17.89,4.1 19.26,2.71 19.26,2.71 23,0 23,0" id="1_rmid-2-base_p4" style="fill:#916f6f;stroke-width:0.099" ns1:connector-curvature="0" />
- <ns0:path d="M 15,0 C 15,0 17,0 17,0 17,0 14.76,3.67 13.37,5.1 11.98,6.4 10.42,6.5 8.772,7.9 7.121,9.3 5.707,12.4 4.241,13.9 2.775,15.3 0,17 0,17 0,17 0,15 0,15 0,15 1.701,13.9 2.976,12.6 4.252,11.3 6.027,8 7.623,6.6 9.219,5.2 10.98,5.2 12.2,3.99 13.43,2.75 15,0 15,0 15,0 15,0 15,0" id="1_rmid-2-base_p5" style="fill:#916f6f;stroke-width:0.099" ns1:connector-curvature="0" />
- <ns0:path d="M 25,32 C 25,32 23,32 23,32 23,32 25.87,30.1 26.98,29 28.1,27.9 27.67,26.1 28.67,25.1 29.66,24.1 32,23 32,23 32,23 32,25 32,25 32,25 30.94,25.5 30.09,26.4 29.23,27.2 29.09,29.3 28.17,30.2 27.24,31.2 25,32 25,32 25,32 25,32 25,32" id="1_rmid-2-base_p6" style="fill:#916f6f;stroke-width:0.099" ns1:connector-curvature="0" />
- <ns0:path d="M 9,32 C 9,32 7,32 7,32 7,32 9.599,30.4 11.1,28.9 12.6,27.4 14.06,24 15.82,22.2 17.59,20.5 19.93,19.9 21.65,18.2 23.37,16.5 23.98,13.4 25.81,11.6 27.64,9.7 32,7 32,7 32,7 32,9 32,9 32,9 28.56,11.3 26.88,13 25.2,14.7 24.57,17.7 22.88,19.4 21.19,21.1 18.36,21.6 16.64,23.3 14.91,25.1 13.7,28.7 12.36,30 11.01,31.4 9,32 9,32 9,32 9,32 9,32" id="1_rmid-2-base_p7" style="fill:#916f6f;stroke-width:0.099" ns1:connector-curvature="0" />
- <ns0:path d="M 17,32 C 17,32 15,32 15,32 15,32 16.41,29 17.84,27.6 19.26,26.2 22.16,26.1 24.1,24.1 26.05,22.2 27.37,18.6 28.78,17.1 30.19,15.7 32,15 32,15 32,15 32,17 32,17 32,17 30.63,17.2 29.36,18.5 28.09,19.7 26.65,23.5 24.87,25.3 23.09,27 20.19,27.4 18.95,28.6 17.72,29.8 17,32 17,32 17,32 17,32 17,32" id="1_rmid-2-base_p8" style="fill:#916f6f;stroke-width:0.099" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rmid-2-1i_00" width="100%" x="32" y="0" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_01" width="100%" x="64" y="0" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_02" width="100%" x="96" y="0" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_10" width="100%" x="0" y="32" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_11" width="100%" x="32" y="32" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_12" width="100%" x="64" y="32" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_13" width="100%" x="96" y="32" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_20" width="100%" x="0" y="64" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_21" width="100%" x="32" y="64" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_22" width="100%" x="64" y="64" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_23" width="100%" x="96" y="64" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_30" width="100%" x="0" y="96" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_31" width="100%" x="32" y="96" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_32" width="100%" x="64" y="96" ns6:href="#1_rmid-2-base" />
- <ns0:use height="100%" id="rmid-2-1i_33" width="100%" x="96" y="96" ns6:href="#1_rmid-2-base" />
- </ns0:g>
- <ns0:g id="rmid-2-details" ns1:groupmode="layer" ns1:label="rmid-2-details" />
-</ns0:svg>
+ </metadata>
+ <g
+ id="rmid-details"
+ inkscape:groupmode="layer"
+ inkscape:label="rmid-details"
+ sodipodi:insensitive="true" />
+</svg>
diff --git a/src/asset/tile/class/2/background.svg b/src/asset/tile/class/2/background.svg
new file mode 100644
index 0000000..e208585
--- /dev/null
+++ b/src/asset/tile/class/2/background.svg
@@ -0,0 +1,226 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="background.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1.0"
+ id="rmid-base"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rmid-background"
+ inkscape:cx="-77.704674"
+ inkscape:cy="370.98289"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:snap-global="false"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.5">
+ <inkscape:grid
+ id="rmid-grid882"
+ spacingx="31.999999"
+ spacingy="31.999999"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <defs
+ id="rmid-defs2" />
+ <metadata
+ id="rmid-metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rmid-background"
+ inkscape:groupmode="layer"
+ inkscape:label="rmid-background"
+ sodipodi:insensitive="true">
+ <g
+ id="1_rmid-base">
+ <rect
+ height="32"
+ id="1_rmid-base_bg"
+ style="fill:#6c5353;stroke-width:1.17390001;stroke-linejoin:bevel"
+ width="32"
+ x="0"
+ y="0" />
+ <path
+ d="M 0,0 C 0,0 1,0 1,0 1,0 0,1 0,1 0,1 0,0 0,0"
+ id="1_rmid-base_p0"
+ style="fill:#916f6f;stroke-width:0.099"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,32 h -1 c 0.21,-0.43 0.56,-0.76 1,-1 v 1"
+ id="1_rmid-base_p1"
+ style="fill:#916f6f;stroke-width:0.099"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 31,0 c 0,0 1,0 1,0 0,0 0,1 0,1 0,0 -2.63,1.88 -3.85,3.1 -1.22,1.2 -0.85,3.5 -2.43,5.1 -1.58,1.6 -5.15,2.5 -6.95,4.3 -1.8,1.8 -2.5,5.2 -4.28,7 C 12.7,22.3 9.458,22.2 7.835,23.9 6.212,25.5 6.049,28.3 4.793,29.5 3.537,30.8 1,32 1,32 c 0,0 -1,0 -1,0 0,0 0,-1 0,-1 0,0 2.529,-1.3 3.779,-2.6 1.251,-1.2 1.414,-3.8 3.023,-5.4 1.61,-1.6 5.008,-2.6 6.778,-4.4 1.77,-1.7 2.26,-4.7 4.07,-6.5 1.82,-1.8 5.19,-2.4 6.76,-4 1.57,-1.6 0.92,-4 2.14,-5.19 C 27.76,1.69 31,0 31,0 c 0,0 0,0 0,0"
+ id="1_rmid-base_p2"
+ style="fill:#916f6f;stroke-width:0.099"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7,0 C 7,0 9,0 9,0 9,0 6.568,1.54 5.499,2.61 4.431,3.68 4.117,5.9 3.118,6.9 2.119,7.9 0,9 0,9 0,9 0,7 0,7 0,7 1.357,6.5 2.184,5.6 3.011,4.8 3.653,2.69 4.533,1.81 5.412,0.93 7,0 7,0 7,0 7,0 7,0"
+ id="1_rmid-base_p3"
+ style="fill:#916f6f;stroke-width:0.099"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 23,0 c 0,0 2,0 2,0 0,0 -3.28,2.05 -4.8,3.58 C 18.67,5.1 18.43,8.2 16.66,9.9 14.88,11.7 11.56,12.6 9.713,14.4 7.866,16.3 6.258,20.2 5.413,21 4.568,21.9 0,25 0,25 0,25 0,23 0,23 0,23 2.812,21.3 4.364,19.8 5.915,18.2 7.042,14.8 8.845,13 10.65,11.2 13.64,10.7 15.38,9 17.11,7.3 17.89,4.1 19.26,2.71 19.26,2.71 23,0 23,0"
+ id="1_rmid-base_p4"
+ style="fill:#916f6f;stroke-width:0.099"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15,0 c 0,0 2,0 2,0 0,0 -2.24,3.67 -3.63,5.1 C 11.98,6.4 10.42,6.5 8.772,7.9 7.121,9.3 5.707,12.4 4.241,13.9 2.775,15.3 0,17 0,17 0,17 0,15 0,15 0,15 1.701,13.9 2.976,12.6 4.252,11.3 6.027,8 7.623,6.6 9.219,5.2 10.98,5.2 12.2,3.99 13.43,2.75 15,0 15,0 c 0,0 0,0 0,0"
+ id="1_rmid-base_p5"
+ style="fill:#916f6f;stroke-width:0.099"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 25,32 c 0,0 -2,0 -2,0 0,0 2.87,-1.9 3.98,-3 1.12,-1.1 0.69,-2.9 1.69,-3.9 C 29.66,24.1 32,23 32,23 c 0,0 0,2 0,2 0,0 -1.06,0.5 -1.91,1.4 -0.86,0.8 -1,2.9 -1.92,3.8 C 27.24,31.2 25,32 25,32 c 0,0 0,0 0,0"
+ id="1_rmid-base_p6"
+ style="fill:#916f6f;stroke-width:0.099"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 9,32 c 0,0 -2,0 -2,0 0,0 2.599,-1.6 4.1,-3.1 1.5,-1.5 2.96,-4.9 4.72,-6.7 1.77,-1.7 4.11,-2.3 5.83,-4 1.72,-1.7 2.33,-4.8 4.16,-6.6 C 27.64,9.7 32,7 32,7 c 0,0 0,2 0,2 0,0 -3.44,2.3 -5.12,4 -1.68,1.7 -2.31,4.7 -4,6.4 -1.69,1.7 -4.52,2.2 -6.24,3.9 C 14.91,25.1 13.7,28.7 12.36,30 11.01,31.4 9,32 9,32 c 0,0 0,0 0,0"
+ id="1_rmid-base_p7"
+ style="fill:#916f6f;stroke-width:0.099"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 17,32 c 0,0 -2,0 -2,0 0,0 1.41,-3 2.84,-4.4 1.42,-1.4 4.32,-1.5 6.26,-3.5 1.95,-1.9 3.27,-5.5 4.68,-7 C 30.19,15.7 32,15 32,15 c 0,0 0,2 0,2 0,0 -1.37,0.2 -2.64,1.5 -1.27,1.2 -2.71,5 -4.49,6.8 -1.78,1.7 -4.68,2.1 -5.92,3.3 C 17.72,29.8 17,32 17,32 c 0,0 0,0 0,0"
+ id="1_rmid-base_p8"
+ style="fill:#916f6f;stroke-width:0.099"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-1i_00"
+ width="100%"
+ x="32"
+ y="0"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_01"
+ width="100%"
+ x="64"
+ y="0"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_02"
+ width="100%"
+ x="96"
+ y="0"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_10"
+ width="100%"
+ x="0"
+ y="32"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_11"
+ width="100%"
+ x="32"
+ y="32"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_12"
+ width="100%"
+ x="64"
+ y="32"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_13"
+ width="100%"
+ x="96"
+ y="32"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_20"
+ width="100%"
+ x="0"
+ y="64"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_21"
+ width="100%"
+ x="32"
+ y="64"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_22"
+ width="100%"
+ x="64"
+ y="64"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_23"
+ width="100%"
+ x="96"
+ y="64"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_30"
+ width="100%"
+ x="0"
+ y="96"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_31"
+ width="100%"
+ x="32"
+ y="96"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_32"
+ width="100%"
+ x="64"
+ y="96"
+ xlink:href="#1_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-1i_33"
+ width="100%"
+ x="96"
+ y="96"
+ xlink:href="#1_rmid-base" />
+ </g>
+</svg>
diff --git a/src/asset/tile/class/3/0.svg b/src/asset/tile/class/3/0.svg
index 7d237d2..3f2ad8a 100644
--- a/src/asset/tile/class/3/0.svg
+++ b/src/asset/tile/class/3/0.svg
@@ -1,179 +1,1118 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns2="http://www.inkscape.org/namespaces/inkscape" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="svg8" version="1.1" viewBox="0 0 128 128" width="128mm" ns1:docname="background.svg" ns2:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rmid-3-defs2" />
- <ns1:namedview bordercolor="#666666" borderopacity="1.0" id="rmid-3-base" pagecolor="#ffffff" showgrid="true" showguides="false" ns2:current-layer="rmid-3-details" ns2:cx="109.73111" ns2:cy="87.897795" ns2:document-units="mm" ns2:pageopacity="0.0" ns2:pageshadow="2" ns2:snap-global="false" ns2:window-height="1059" ns2:window-maximized="0" ns2:window-width="1918" ns2:window-x="1" ns2:window-y="20" ns2:zoom="3.3941125">
- <ns2:grid id="rmid-3-grid882" spacingx="31.999999" spacingy="31.999999" type="xygrid" units="mm" />
- </ns1:namedview>
- <ns0:metadata id="rmid-3-metadata5">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="0.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rmid-defs2" />
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1.0"
+ id="rmid-base"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rmid-details"
+ inkscape:cx="115.74574"
+ inkscape:cy="184.10415"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:snap-global="false"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.2">
+ <inkscape:grid
+ id="rmid-grid882"
+ spacingx="31.999999"
+ spacingy="31.999999"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rmid-metadata5">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rmid-3-background" ns2:groupmode="layer" ns2:label="rmid-3-background">
- <ns0:g id="0_rmid-3-base">
- <ns0:rect height="32" id="rmid-3-0_greenbg" style="fill:#bcd35f;stroke-width:3.1368;stroke-linejoin:bevel" width="32" x="0" y="0" />
- </ns0:g>
- <ns0:use height="100%" id="rmid-3-0b00" width="100%" x="32" y="0" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b01" width="100%" x="64" y="0" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b02" width="100%" x="96" y="0" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b10" width="100%" x="0" y="32" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b11" width="100%" x="32" y="32" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b12" width="100%" x="64" y="32" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b13" width="100%" x="96" y="32" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b20" width="100%" x="0" y="64" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b21" width="100%" x="32" y="64" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b22" width="100%" x="64" y="64" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b23" width="100%" x="96" y="64" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b30" width="100%" x="0" y="96" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b31" width="100%" x="32" y="96" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b32" width="100%" x="64" y="96" ns6:href="#0_rmid-3-base" />
- <ns0:use height="100%" id="rmid-3-0b33" width="100%" x="96" y="96" ns6:href="#0_rmid-3-base" />
- </ns0:g>
- <ns0:g id="rmid-3-details" style="display:inline" ns2:groupmode="layer" ns2:label="rmid-3-details">
- <ns0:use height="100%" id="rmid-3-use5814" transform="translate(-32.111603,2.9128416)" width="100%" x="0" y="0" ns6:href="#rmid-3-g4770" />
- <ns0:g id="rmid-3-g4770" style="display:inline" transform="translate(-2.0138701,42.096727)">
- <ns0:path d="m 43.485313,-35.750981 c -1.080827,-2.417219 -6.626129,-1.924553 -7.613836,0.172224 -0.320129,0.336383 5.821847,3.260637 7.613836,-0.172224 z" id="rmid-3-rmid-3-path4674-2" style="fill:#454837;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" ns1:nodetypes="ccc" ns2:connector-curvature="0" />
- <ns0:path d="m 38.041504,-39.849914 c -0.344109,1.026149 -0.851263,1.834906 -0.137788,4.271164 1.376363,0.937912 2.249413,0.617545 2.893369,-0.275559 0.237474,-1.657275 -0.20541,-2.974369 -0.688896,-4.271164 z" id="rmid-3-rmid-3-path4672-9" style="fill:#806600;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" ns1:nodetypes="ccccc" ns2:connector-curvature="0" />
- <ns0:path d="m 35.716005,-38.233289 c 2.696517,-3.451103 4.075106,-4.934811 7.040778,-0.595525 0.204119,2.145328 -5.117611,1.501731 -7.040778,0.595525 z" id="rmid-3-rmid-3-path4670-1" style="fill:#aa8800;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" ns1:nodetypes="ccc" ns2:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rmid-3-use5832" transform="translate(13.449653,-0.11024306)" width="100%" x="0" y="0" ns6:href="#rmid-3-g4726" />
- <ns0:use height="100%" id="rmid-3-use5828" transform="translate(36.049479,-10.914063)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5818" />
- <ns0:use height="100%" id="rmid-3-use5830" transform="translate(58.869792,-9.4809027)" width="100%" x="0" y="0" ns6:href="#rmid-3-g4721" />
- <ns0:use height="100%" id="rmid-3-use5826" transform="translate(41.010417,-1.1024306)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5816" />
- <ns0:use height="100%" id="rmid-3-use2467" transform="translate(-72.055789,39.395331)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2465" />
- <ns0:use height="100%" id="rmid-3-use916" transform="translate(-69.563369,27.450521)" width="100%" x="0" y="0" ns6:href="#rmid-3-use886" />
- <ns0:use height="100%" id="rmid-3-use926" transform="translate(19.513021,-0.11024306)" width="100%" x="0" y="0" ns6:href="#rmid-3-use910" />
- <ns0:g id="rmid-3-g5465-3" transform="translate(18.029089,19.39164)">
- <ns0:path d="M 7.726,11.73 C 10.3,11.51 11.75,8.451 12.66,5.179 9.471,5.267 7.892,7.74 7.726,11.73 Z" id="rmid-3-path4744-67" style="fill:#cdde87;fill-rule:evenodd;stroke-width:0.403px" ns1:nodetypes="ccc" ns2:connector-curvature="0" />
- <ns0:path d="M 7.726,11.73 C 5.22,10.25 4.498,10.5 3.588,7.229 6.775,7.317 7.958,7.211 7.726,11.73 Z" id="rmid-3-path4744-6-5" style="fill:#cdde87;fill-rule:evenodd;stroke-width:0.403px" ns1:nodetypes="ccc" ns2:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rmid-3-use2461" transform="translate(22.072196,-22.664022)" width="100%" x="0" y="0" ns6:href="#rmid-3-g5465-3" />
- <ns0:use height="100%" id="rmid-3-use2463" transform="translate(54.090911,-0.54124455)" width="100%" x="0" y="0" ns6:href="#rmid-3-g5465-3" />
- <ns0:use height="100%" id="rmid-3-use2465" transform="translate(84.450391,-23.279161)" width="100%" x="0" y="0" ns6:href="#rmid-3-g5465-3" />
- <ns0:use height="100%" id="rmid-3-use2469" transform="translate(46.292839,-2.3523794)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2467" />
- <ns0:use height="100%" id="rmid-3-use932" transform="translate(32.190973,5.6223958)" width="100%" x="0" y="0" ns6:href="#rmid-3-use910" />
- <ns0:use height="100%" id="rmid-3-use2473" transform="translate(51.252469,-16.595021)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2471" />
- <ns0:use height="100%" id="rmid-3-use5810" transform="translate(8.9118117,-21.058988)" width="100%" x="0" y="0" ns6:href="#rmid-3-rmid-3-g4721-3" />
- <ns0:g id="rmid-3-g4726" style="display:inline" transform="matrix(1.5625102,0,0,1.5625102,47.506845,67.886662)">
- <ns0:path d="m 9.9909907,-37.153412 c -1.2623362,-2.250062 -5.101187,-1.785086 -6.0406876,0.172223 0.3413295,0.851202 2.9186053,2.780689 6.0406876,-0.172223 z" id="rmid-3-rmid-3-path4674-5" style="display:inline;fill:#454837;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" ns1:nodetypes="ccc" ns2:connector-curvature="0" />
- <ns0:path d="m 5.3409313,-41.252345 c -0.342164,1.026149 1.485821,1.834905 -0.1377878,4.271164 1.376363,0.937912 2.2494133,0.617544 2.8933697,-0.27556 0.2374738,-1.657275 -0.205411,-2.974369 -0.6888964,-4.271164 z" id="rmid-3-rmid-3-path4672-3" style="display:inline;fill:#552200;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" ns1:nodetypes="ccccc" ns2:connector-curvature="0" />
- <ns0:path d="m 3.6758794,-39.692114 c -2.298e-4,-2.95874 2.620153,-5.049217 5.4204345,-1.931781 -0.8510705,1.040393 -4.2240781,5.163777 -5.4204345,1.931781 z" id="rmid-3-rmid-3-path4670-5" style="display:inline;fill:#aa4400;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" ns1:nodetypes="ccc" ns2:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rmid-3-use5812" transform="translate(22.303016,-6.5259098)" width="100%" x="0" y="0" ns6:href="#rmid-3-g4721" />
- <ns0:use height="100%" id="rmid-3-use5781" transform="translate(-10.314026,5.3603223)" width="100%" x="0" y="0" ns6:href="#rmid-3-g4770" />
- <ns0:use height="100%" id="rmid-3-use5808" transform="translate(-48.045447,9.5024723)" width="100%" x="0" y="0" ns6:href="#rmid-3-g4726" />
- <ns0:g id="rmid-3-g4721" style="display:inline" transform="matrix(1.5625102,0,0,1.5625102,-9.7702979,105.03701)">
- <ns0:path d="m 23.715824,-52.392332 c -2.13916,-2.152636 -4.906337,-1.395386 -6.820086,0.172224 0.341329,0.0718 3.308305,3.657512 6.820086,-0.172224 z" id="rmid-3-path4674" style="fill:#454837;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" ns1:nodetypes="ccc" ns2:connector-curvature="0" />
- <ns0:path d="m 19.065765,-56.491265 c -0.344109,1.026149 -0.851263,1.834906 -0.137788,4.271164 1.376363,0.937912 2.249413,0.617545 2.893369,-0.275559 0.237474,-1.657275 -0.20541,-2.974369 -0.688896,-4.271164 z" id="rmid-3-path4672" style="fill:#6c5353;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" ns1:nodetypes="ccccc" ns2:connector-curvature="0" />
- <ns0:path d="m 15.549641,-56.197557 c 2.696517,-3.451103 6.059481,-5.199394 9.025153,-0.860108 0.204119,2.145328 -7.101986,1.766314 -9.025153,0.860108 z" id="rmid-3-path4670" style="fill:#ac9393;fill-opacity:1;stroke:#000000;stroke-width:0.09599937;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" ns1:nodetypes="ccc" ns2:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rmid-3-rmid-3-g4721-3" style="display:inline" transform="matrix(1.0422678,0,0,0.98849778,-12.756429,81.093821)">
- <ns0:path d="m 23.715824,-52.671147 c -1.982336,-2.666106 -6.647205,-0.909062 -6.820086,0.395276 -0.130657,0.985771 5.447711,3.013773 6.820086,-0.395276 z" id="rmid-3-rmid-3-path4674-6" style="fill:#454837;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" ns1:nodetypes="csc" ns2:connector-curvature="0" />
- <ns0:path d="m 19.065765,-56.491265 c -0.344109,1.026149 -0.851263,1.834906 -0.137788,4.271164 1.376363,0.937912 2.249413,0.617545 2.893369,-0.275559 0.237474,-1.657275 -0.20541,-2.974369 -0.688896,-4.271164 z" id="rmid-3-rmid-3-path4672-7" style="fill:#502d16;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" ns1:nodetypes="ccccc" ns2:connector-curvature="0" />
- <ns0:path d="m 16.368659,-56.341485 c 0.482093,-3.99943 5.240463,-5.055466 8.206135,-0.71618 0.204119,2.807184 -8.688227,4.71561 -8.206135,0.71618 z" id="rmid-3-rmid-3-rmid-3-path4670-53" style="fill:#552200;fill-opacity:1;stroke:#000000;stroke-width:0.14777935;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" ns1:nodetypes="zcz" ns2:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rmid-3-use5816" transform="translate(29.324652,-4.7404515)" width="100%" x="0" y="0" ns6:href="#rmid-3-rmid-3-g4721-3" />
- <ns0:use height="100%" id="rmid-3-use5818" transform="translate(28.001735,6.5043402)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5781" />
- <ns0:use height="100%" id="rmid-3-use5820" transform="translate(39.30165,20.284722)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5810" />
- <ns0:use height="100%" id="rmid-3-use5822" transform="translate(8.3233506,-18.079861)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2467" />
- <ns0:use height="100%" id="rmid-3-use5824" transform="translate(32.521702,19.513021)" width="100%" x="0" y="0" ns6:href="#rmid-3-g4726" />
- <ns0:use height="100%" id="rmid-3-use5834" transform="translate(-41.45139,11.244792)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2465" />
- <ns0:use height="100%" id="rmid-3-use5836" transform="translate(-21.276909,21.717882)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5828" />
- <ns0:use height="100%" id="rmid-3-use882" transform="translate(43.65625,-20.835937)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5820" />
- <ns0:use height="100%" id="rmid-3-use884" transform="translate(102.63629,5.5121527)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5814" />
- <ns0:use height="100%" id="rmid-3-use888" transform="translate(42.774304,-13.559896)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5826" />
- <ns0:use height="100%" id="rmid-3-use890" transform="translate(38.915798,11.355035)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5830" />
- <ns0:use height="100%" id="rmid-3-use892" transform="translate(-7.717014,7.3862848)" width="100%" x="0" y="0" ns6:href="#rmid-3-use884" />
- <ns0:use height="100%" id="rmid-3-use886" transform="translate(17.087674,-1.874132)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5824" />
- <ns0:use height="100%" id="rmid-3-use894" transform="translate(-33.293402,15.213541)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5816" />
- <ns0:use height="100%" id="rmid-3-use900" transform="translate(-23.261284,-7.8272569)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2467" />
- <ns0:use height="100%" id="rmid-3-use896" transform="translate(3.3072917,27.891494)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5808" />
- <ns0:use height="100%" id="rmid-3-use898" transform="translate(3.1970485,20.615451)" width="100%" x="0" y="0" ns6:href="#rmid-3-g4721" />
- <ns0:use height="100%" id="rmid-3-use902" transform="translate(-45.42014,22.37934)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5836" />
- <ns0:use height="100%" id="rmid-3-use904" transform="translate(-65.153646,22.820313)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5836" />
- <ns0:use height="100%" id="rmid-3-use906" transform="translate(-66.035589,36.380208)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5826" />
- <ns0:use height="100%" id="rmid-3-use908" transform="translate(-59.53125,17.087674)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2469" />
- <ns0:use height="100%" id="rmid-3-use910" transform="translate(4.4097223,20.064236)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5818" />
- <ns0:use height="100%" id="rmid-3-use912" transform="translate(-23.040799,-0.22048611)" width="100%" x="0" y="0" ns6:href="#rmid-3-use910" />
- <ns0:use height="100%" id="rmid-3-use918" transform="translate(-42.553819,43.65625)" width="100%" x="0" y="0" ns6:href="#rmid-3-use882" />
- <ns0:use height="100%" id="rmid-3-use914" transform="translate(-31.309027,46.853298)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5830" />
- <ns0:use height="100%" id="rmid-3-use920" transform="translate(-35.277777,-4.5199657)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2469" />
- <ns0:use height="100%" id="rmid-3-use922" transform="translate(-30.868056,23.371528)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5826" />
- <ns0:use height="100%" id="rmid-3-use924" transform="translate(22.599826,-16.867188)" width="100%" x="0" y="0" ns6:href="#rmid-3-use914" />
- <ns0:use height="100%" id="rmid-3-use928" transform="translate(23.8125,-1.5434028)" width="100%" x="0" y="0" ns6:href="#rmid-3-use918" />
- <ns0:use height="100%" id="rmid-3-use930" transform="translate(31.639756,-2.6458333)" width="100%" x="0" y="0" ns6:href="#rmid-3-use916" />
- <ns0:use height="100%" id="rmid-3-use934" transform="translate(-0.44097223,26.678819)" width="100%" x="0" y="0" ns6:href="#rmid-3-use5824" />
- <ns0:use height="100%" id="rmid-3-use936" transform="translate(20.247844,-16.487548)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2473" />
- <ns0:use height="100%" id="rmid-3-use938" transform="translate(-28.442708,39.6875)" width="100%" x="0" y="0" ns6:href="#rmid-3-use892" />
- <ns0:use height="100%" id="rmid-3-use942" transform="translate(10.914062,-14.221354)" width="100%" x="0" y="0" ns6:href="#rmid-3-use934" />
- <ns0:use height="100%" id="rmid-3-use946" transform="translate(31.529515,-8.7092012)" width="100%" x="0" y="0" ns6:href="#rmid-3-use928" />
- <ns0:use height="100%" id="rmid-3-use940" transform="translate(-12.236979,27.560765)" width="100%" x="0" y="0" ns6:href="#rmid-3-use890" />
- <ns0:use height="100%" id="rmid-3-use944" transform="translate(-6.8350694,44.758681)" width="100%" x="0" y="0" ns6:href="#rmid-3-use884" />
- <ns0:use height="100%" id="rmid-3-use948" transform="translate(42.333333,9.4809027)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2463" />
- <ns0:use height="100%" id="rmid-3-use950" transform="translate(21.828125,25.355903)" width="100%" x="0" y="0" ns6:href="#rmid-3-use892" />
- <ns0:use height="100%" id="rmid-3-use952" transform="translate(40.018229,10.583333)" width="100%" x="0" y="0" ns6:href="#rmid-3-use928" />
- <ns0:use height="100%" id="rmid-3-use954" transform="translate(-10.252604,17.528646)" width="100%" x="0" y="0" ns6:href="#rmid-3-use948" />
- <ns0:use height="100%" id="rmid-3-use1642" transform="translate(-20.969522,11.303274)" width="100%" x="0" y="0" ns6:href="#rmid-3-use952" />
- <ns0:use height="100%" id="rmid-3-use1648" transform="translate(29.310558,17.851377)" width="100%" x="0" y="0" ns6:href="#rmid-3-use934" />
- <ns0:use height="100%" id="rmid-3-use1644" transform="translate(2.3386084,25.646738)" width="100%" x="0" y="0" ns6:href="#rmid-3-use940" />
- <ns0:use height="100%" id="rmid-3-use2477" transform="translate(35.879986,-12.219072)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2475" />
- <ns0:use height="100%" id="rmid-3-use1646" transform="translate(1.013397,30.401909)" width="100%" x="0" y="0" ns6:href="#rmid-3-use944" />
- <ns0:use height="100%" id="rmid-3-use1650" transform="translate(29.77828,38.353177)" width="100%" x="0" y="0" ns6:href="#rmid-3-use932" />
- <ns0:use height="100%" id="rmid-3-use1652" transform="translate(-8.0292221,29.544419)" width="100%" x="0" y="0" ns6:href="#rmid-3-use952" />
- <ns0:use height="100%" id="rmid-3-use1662" transform="translate(-1.1693042,23.464038)" width="100%" x="0" y="0" ns6:href="#rmid-3-use928" />
- <ns0:use height="100%" id="rmid-3-use1658" transform="translate(-2.1827011,28.531022)" width="100%" x="0" y="0" ns6:href="#rmid-3-use934" />
- <ns0:use height="100%" id="rmid-3-use1654" transform="translate(-31.883027,40.068157)" width="100%" x="0" y="0" ns6:href="#rmid-3-use940" />
- <ns0:use height="100%" id="rmid-3-use2475" transform="translate(9.7598228,19.811583)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2473" />
- <ns0:use height="100%" id="rmid-3-use1656" transform="translate(-10.13397,3.9756342)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1646" />
- <ns0:use height="100%" id="rmid-3-use1660" transform="translate(-2.1047475,13.17416)" width="100%" x="0" y="0" ns6:href="#rmid-3-use938" />
- <ns0:use height="100%" id="rmid-3-use1664" transform="translate(10.835552,13.797789)" width="100%" x="0" y="0" ns6:href="#rmid-3-use936" />
- <ns0:use height="100%" id="rmid-3-use1666" transform="translate(-21.203383,19.566357)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1650" />
- <ns0:use height="100%" id="rmid-3-use1668" transform="translate(-3.0401909,19.254542)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1652" />
- <ns0:use height="100%" id="rmid-3-use1672" transform="translate(3.1181445,31.72712)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1648" />
- <ns0:use height="100%" id="rmid-3-use1670" transform="translate(10.36783,38.275223)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1644" />
- <ns0:use height="100%" id="rmid-3-use1674" transform="translate(-18.708867,15.74663)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1672" />
- <ns0:use height="100%" id="rmid-3-use1676" transform="translate(16.058444,35.936615)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1646" />
- <ns0:use height="100%" id="rmid-3-use1682" transform="translate(-34.299589,-1.1693042)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1662" />
- <ns0:use height="100%" id="rmid-3-use1678" transform="translate(-21.515197,-14.343465)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1654" />
- <ns0:use height="100%" id="rmid-3-use1680" transform="translate(-30.63577,1.4811187)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1660" />
- <ns0:use height="100%" id="rmid-3-use1686" transform="translate(-35.157079,12.628485)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1662" />
- <ns0:use height="100%" id="rmid-3-use1684" transform="translate(-49.578497,6.0803817)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1658" />
- <ns0:use height="100%" id="rmid-3-use1688" transform="translate(-33.598007,-6.4701498)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1656" />
- <ns0:use height="100%" id="rmid-3-use1690" transform="translate(-28.297161,44.277652)" width="100%" x="0" y="0" ns6:href="#rmid-3-use928" />
- <ns0:use height="100%" id="rmid-3-use1704" transform="translate(-12.550532,-17.539563)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1694" />
- <ns0:use height="100%" id="rmid-3-use1700" transform="translate(-12.784392,-16.526166)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1698" />
- <ns0:use height="100%" id="rmid-3-use1692" transform="translate(-65.481034,-7.1717323)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1654" />
- <ns0:use height="100%" id="rmid-3-use2471" transform="translate(-77.106529,47.76257)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2469" />
- <ns0:use height="100%" id="rmid-3-use1696" transform="translate(-21.749058,0.62362893)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1686" />
- <ns0:use height="100%" id="rmid-3-use1694" transform="translate(-19.332496,1.3252114)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1684" />
- <ns0:use height="100%" id="rmid-3-use1698" transform="translate(-11.459181,17.305702)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1680" />
- <ns0:use height="100%" id="rmid-3-use1702" transform="translate(14.88914,-9.8221551)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1692" />
- <ns0:use height="100%" id="rmid-3-use1718" transform="translate(-2.1047475,-14.265511)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1716" />
- <ns0:use height="100%" id="rmid-3-use1706" transform="translate(1.7929331,16.604119)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1654" />
- <ns0:use height="100%" id="rmid-3-use1712" transform="translate(-12.9403,-7.8733148)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1674" />
- <ns0:use height="100%" id="rmid-3-use1708" transform="translate(6.3921962,25.646739)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1654" />
- <ns0:use height="100%" id="rmid-3-use1710" transform="translate(-0.77953612,8.5748973)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1656" />
- <ns0:use height="100%" id="rmid-3-use1714" transform="translate(-20.112032,15.74663)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1668" />
- <ns0:use height="100%" id="rmid-3-use1716" transform="translate(-18.864774,-5.4567529)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1714" />
- <ns0:use height="100%" id="rmid-3-use1736" transform="translate(-30.791677,7.7174076)" width="100%" x="0" y="0" ns6:href="#rmid-3-use2475" />
- <ns0:use height="100%" id="rmid-3-use1722" transform="translate(-0.70158254,19.410449)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1686" />
- <ns0:use height="100%" id="rmid-3-use1732" transform="translate(-2.026794,-7.7953612)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1724" />
- <ns0:use height="100%" id="rmid-3-use1724" transform="translate(0.62362891,22.372687)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1688" />
- <ns0:use height="100%" id="rmid-3-use1720" transform="translate(-24.867202,17.617516)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1654" />
- <ns0:use height="100%" id="rmid-3-use1738" transform="translate(0.85748973,10.13397)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1736" />
- <ns0:use height="100%" id="rmid-3-use1726" transform="translate(5.6126604,26.11446)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1684" />
- <ns0:use height="100%" id="rmid-3-use1728" transform="translate(-1.7929332,29.77828)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1688" />
- <ns0:use height="100%" id="rmid-3-use1730" transform="translate(-6.7040107,39.28862)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1686" />
- <ns0:use height="100%" id="rmid-3-use1734" transform="translate(13.797789,34.221636)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1684" />
- <ns0:use height="100%" id="rmid-3-use1742" transform="translate(-39.678389,-1.5590722)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1722" />
- <ns0:use height="100%" id="rmid-3-use1744" transform="translate(-13.096207,8.3410365)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1698" />
- <ns0:use height="100%" id="rmid-3-use1740" transform="translate(-37.33978,2.416562)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1720" />
- <ns0:use height="100%" id="rmid-3-use1746" transform="translate(-13.563929,25.179017)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1694" />
- <ns0:use height="100%" id="rmid-3-use1748" transform="translate(22.216779,0.23386084)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1742" />
- <ns0:use height="100%" id="rmid-3-use1750" transform="translate(9.5882943,34.689358)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1700" />
- <ns0:use height="100%" id="rmid-3-use1752" transform="translate(6.3921962,10.991459)" width="100%" x="0" y="0" ns6:href="#rmid-3-use1740" />
- </ns0:g>
-</ns0:svg>
+ </metadata>
+ <g
+ id="rmid-details"
+ style="display:inline"
+ inkscape:groupmode="layer"
+ inkscape:label="rmid-details"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rmid-use5814"
+ transform="translate(-32.111603,2.9128416)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g4770" />
+ <g
+ id="rmid-g4770"
+ style="display:inline"
+ transform="translate(-2.0138701,42.096727)">
+ <path
+ d="m 43.485313,-35.750981 c -1.080827,-2.417219 -6.626129,-1.924553 -7.613836,0.172224 -0.320129,0.336383 5.821847,3.260637 7.613836,-0.172224 z"
+ id="rmid-rmid-path4674-2"
+ style="fill:#454837;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 38.041504,-39.849914 c -0.344109,1.026149 -0.851263,1.834906 -0.137788,4.271164 1.376363,0.937912 2.249413,0.617545 2.893369,-0.275559 0.237474,-1.657275 -0.20541,-2.974369 -0.688896,-4.271164 z"
+ id="rmid-rmid-path4672-9"
+ style="fill:#806600;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 35.716005,-38.233289 c 2.696517,-3.451103 4.075106,-4.934811 7.040778,-0.595525 0.204119,2.145328 -5.117611,1.501731 -7.040778,0.595525 z"
+ id="rmid-rmid-path4670-1"
+ style="fill:#aa8800;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-use5832"
+ transform="translate(13.449653,-0.11024306)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g4726" />
+ <use
+ height="100%"
+ id="rmid-use5828"
+ transform="translate(36.049479,-10.914063)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5818" />
+ <use
+ height="100%"
+ id="rmid-use5830"
+ transform="translate(58.869792,-9.4809027)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g4721" />
+ <use
+ height="100%"
+ id="rmid-use5826"
+ transform="translate(41.010417,-1.1024306)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5816" />
+ <use
+ height="100%"
+ id="rmid-use2467"
+ transform="translate(-72.055789,39.395331)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2465" />
+ <use
+ height="100%"
+ id="rmid-use916"
+ transform="translate(-69.563369,27.450521)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use886" />
+ <use
+ height="100%"
+ id="rmid-use926"
+ transform="translate(19.513021,-0.11024306)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use910" />
+ <g
+ id="rmid-g5465-3"
+ transform="translate(18.029089,19.39164)">
+ <path
+ d="M 7.726,11.73 C 10.3,11.51 11.75,8.451 12.66,5.179 9.471,5.267 7.892,7.74 7.726,11.73 Z"
+ id="rmid-path4744-67"
+ style="fill:#cdde87;fill-rule:evenodd;stroke-width:0.403px"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.726,11.73 C 5.22,10.25 4.498,10.5 3.588,7.229 6.775,7.317 7.958,7.211 7.726,11.73 Z"
+ id="rmid-path4744-6-5"
+ style="fill:#cdde87;fill-rule:evenodd;stroke-width:0.403px"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-use2461"
+ transform="translate(22.072196,-22.664022)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g5465-3" />
+ <use
+ height="100%"
+ id="rmid-use2463"
+ transform="translate(54.090911,-0.54124455)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g5465-3" />
+ <use
+ height="100%"
+ id="rmid-use2465"
+ transform="translate(84.450391,-23.279161)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g5465-3" />
+ <use
+ height="100%"
+ id="rmid-use2469"
+ transform="translate(46.292839,-2.3523794)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2467" />
+ <use
+ height="100%"
+ id="rmid-use932"
+ transform="translate(32.190973,5.6223958)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use910" />
+ <use
+ height="100%"
+ id="rmid-use2473"
+ transform="translate(51.252469,-16.595021)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2471" />
+ <use
+ height="100%"
+ id="rmid-use5810"
+ transform="translate(8.9118117,-21.058988)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-rmid-g4721-3" />
+ <g
+ id="rmid-g4726"
+ style="display:inline"
+ transform="matrix(1.5625102,0,0,1.5625102,47.506845,67.886662)">
+ <path
+ d="m 9.9909907,-37.153412 c -1.2623362,-2.250062 -5.101187,-1.785086 -6.0406876,0.172223 0.3413295,0.851202 2.9186053,2.780689 6.0406876,-0.172223 z"
+ id="rmid-rmid-path4674-5"
+ style="display:inline;fill:#454837;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 5.3409313,-41.252345 c -0.342164,1.026149 1.485821,1.834905 -0.1377878,4.271164 1.376363,0.937912 2.2494133,0.617544 2.8933697,-0.27556 0.2374738,-1.657275 -0.205411,-2.974369 -0.6888964,-4.271164 z"
+ id="rmid-rmid-path4672-3"
+ style="display:inline;fill:#552200;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 3.6758794,-39.692114 c -2.298e-4,-2.95874 2.620153,-5.049217 5.4204345,-1.931781 -0.8510705,1.040393 -4.2240781,5.163777 -5.4204345,1.931781 z"
+ id="rmid-rmid-path4670-5"
+ style="display:inline;fill:#aa4400;fill-opacity:1;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-use5812"
+ transform="translate(22.303016,-6.5259098)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g4721" />
+ <use
+ height="100%"
+ id="rmid-use5781"
+ transform="translate(-10.314026,5.3603223)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g4770" />
+ <use
+ height="100%"
+ id="rmid-use5808"
+ transform="translate(-48.045447,9.5024723)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g4726" />
+ <g
+ id="rmid-g4721"
+ style="display:inline"
+ transform="matrix(1.5625102,0,0,1.5625102,-9.7702979,105.03701)">
+ <path
+ d="m 23.715824,-52.392332 c -2.13916,-2.152636 -4.906337,-1.395386 -6.820086,0.172224 0.341329,0.0718 3.308305,3.657512 6.820086,-0.172224 z"
+ id="rmid-path4674"
+ style="fill:#454837;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 19.065765,-56.491265 c -0.344109,1.026149 -0.851263,1.834906 -0.137788,4.271164 1.376363,0.937912 2.249413,0.617545 2.893369,-0.275559 0.237474,-1.657275 -0.20541,-2.974369 -0.688896,-4.271164 z"
+ id="rmid-path4672"
+ style="fill:#6c5353;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.549641,-56.197557 c 2.696517,-3.451103 6.059481,-5.199394 9.025153,-0.860108 0.204119,2.145328 -7.101986,1.766314 -9.025153,0.860108 z"
+ id="rmid-path4670"
+ style="fill:#ac9393;fill-opacity:1;stroke:#000000;stroke-width:0.09599937;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rmid-rmid-g4721-3"
+ style="display:inline"
+ transform="matrix(1.0422678,0,0,0.98849778,-12.756429,81.093821)">
+ <path
+ d="m 23.715824,-52.671147 c -1.982336,-2.666106 -6.647205,-0.909062 -6.820086,0.395276 -0.130657,0.985771 5.447711,3.013773 6.820086,-0.395276 z"
+ id="rmid-rmid-path4674-6"
+ style="fill:#454837;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ sodipodi:nodetypes="csc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 19.065765,-56.491265 c -0.344109,1.026149 -0.851263,1.834906 -0.137788,4.271164 1.376363,0.937912 2.249413,0.617545 2.893369,-0.275559 0.237474,-1.657275 -0.20541,-2.974369 -0.688896,-4.271164 z"
+ id="rmid-rmid-path4672-7"
+ style="fill:#502d16;stroke:none;stroke-width:0.38969928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 16.368659,-56.341485 c 0.482093,-3.99943 5.240463,-5.055466 8.206135,-0.71618 0.204119,2.807184 -8.688227,4.71561 -8.206135,0.71618 z"
+ id="rmid-rmid-rmid-path4670-53"
+ style="fill:#552200;fill-opacity:1;stroke:#000000;stroke-width:0.14777935;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:nodetypes="zcz"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-use5816"
+ transform="translate(29.324652,-4.7404515)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-rmid-g4721-3" />
+ <use
+ height="100%"
+ id="rmid-use5818"
+ transform="translate(28.001735,6.5043402)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5781" />
+ <use
+ height="100%"
+ id="rmid-use5820"
+ transform="translate(39.30165,20.284722)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5810" />
+ <use
+ height="100%"
+ id="rmid-use5822"
+ transform="translate(8.3233506,-18.079861)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2467" />
+ <use
+ height="100%"
+ id="rmid-use5824"
+ transform="translate(32.521702,19.513021)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g4726" />
+ <use
+ height="100%"
+ id="rmid-use5834"
+ transform="translate(-41.45139,11.244792)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2465" />
+ <use
+ height="100%"
+ id="rmid-use5836"
+ transform="translate(-21.276909,21.717882)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5828" />
+ <use
+ height="100%"
+ id="rmid-use882"
+ transform="translate(43.65625,-20.835937)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5820" />
+ <use
+ height="100%"
+ id="rmid-use884"
+ transform="translate(102.63629,5.5121527)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5814" />
+ <use
+ height="100%"
+ id="rmid-use888"
+ transform="translate(42.774304,-13.559896)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5826" />
+ <use
+ height="100%"
+ id="rmid-use890"
+ transform="translate(38.915798,11.355035)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5830" />
+ <use
+ height="100%"
+ id="rmid-use892"
+ transform="translate(-7.717014,7.3862848)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use884" />
+ <use
+ height="100%"
+ id="rmid-use886"
+ transform="translate(17.087674,-1.874132)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5824" />
+ <use
+ height="100%"
+ id="rmid-use894"
+ transform="translate(-33.293402,15.213541)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5816" />
+ <use
+ height="100%"
+ id="rmid-use900"
+ transform="translate(-23.261284,-7.8272569)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2467" />
+ <use
+ height="100%"
+ id="rmid-use896"
+ transform="translate(3.3072917,27.891494)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5808" />
+ <use
+ height="100%"
+ id="rmid-use898"
+ transform="translate(3.1970485,20.615451)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-g4721" />
+ <use
+ height="100%"
+ id="rmid-use902"
+ transform="translate(-45.42014,22.37934)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5836" />
+ <use
+ height="100%"
+ id="rmid-use904"
+ transform="translate(-65.153646,22.820313)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5836" />
+ <use
+ height="100%"
+ id="rmid-use906"
+ transform="translate(-66.035589,36.380208)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5826" />
+ <use
+ height="100%"
+ id="rmid-use908"
+ transform="translate(-59.53125,17.087674)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2469" />
+ <use
+ height="100%"
+ id="rmid-use910"
+ transform="translate(4.4097223,20.064236)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5818" />
+ <use
+ height="100%"
+ id="rmid-use912"
+ transform="translate(-23.040799,-0.22048611)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use910" />
+ <use
+ height="100%"
+ id="rmid-use918"
+ transform="translate(-42.553819,43.65625)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use882" />
+ <use
+ height="100%"
+ id="rmid-use914"
+ transform="translate(-31.309027,46.853298)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5830" />
+ <use
+ height="100%"
+ id="rmid-use920"
+ transform="translate(-35.277777,-4.5199657)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2469" />
+ <use
+ height="100%"
+ id="rmid-use922"
+ transform="translate(-30.868056,23.371528)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5826" />
+ <use
+ height="100%"
+ id="rmid-use924"
+ transform="translate(22.599826,-16.867188)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use914" />
+ <use
+ height="100%"
+ id="rmid-use928"
+ transform="translate(23.8125,-1.5434028)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use918" />
+ <use
+ height="100%"
+ id="rmid-use930"
+ transform="translate(31.639756,-2.6458333)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use916" />
+ <use
+ height="100%"
+ id="rmid-use934"
+ transform="translate(-0.44097223,26.678819)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use5824" />
+ <use
+ height="100%"
+ id="rmid-use936"
+ transform="translate(20.247844,-16.487548)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2473" />
+ <use
+ height="100%"
+ id="rmid-use938"
+ transform="translate(-28.442708,39.6875)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use892" />
+ <use
+ height="100%"
+ id="rmid-use942"
+ transform="translate(10.914062,-14.221354)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use934" />
+ <use
+ height="100%"
+ id="rmid-use946"
+ transform="translate(31.529515,-8.7092012)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use928" />
+ <use
+ height="100%"
+ id="rmid-use940"
+ transform="translate(-12.236979,27.560765)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use890" />
+ <use
+ height="100%"
+ id="rmid-use944"
+ transform="translate(-6.8350694,44.758681)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use884" />
+ <use
+ height="100%"
+ id="rmid-use948"
+ transform="translate(42.333333,9.4809027)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2463" />
+ <use
+ height="100%"
+ id="rmid-use950"
+ transform="translate(21.828125,25.355903)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use892" />
+ <use
+ height="100%"
+ id="rmid-use952"
+ transform="translate(40.018229,10.583333)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use928" />
+ <use
+ height="100%"
+ id="rmid-use954"
+ transform="translate(-10.252604,17.528646)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use948" />
+ <use
+ height="100%"
+ id="rmid-use1642"
+ transform="translate(-20.969522,11.303274)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use952" />
+ <use
+ height="100%"
+ id="rmid-use1648"
+ transform="translate(29.310558,17.851377)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use934" />
+ <use
+ height="100%"
+ id="rmid-use1644"
+ transform="translate(2.3386084,25.646738)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use940" />
+ <use
+ height="100%"
+ id="rmid-use2477"
+ transform="translate(35.879986,-12.219072)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2475" />
+ <use
+ height="100%"
+ id="rmid-use1646"
+ transform="translate(1.013397,30.401909)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use944" />
+ <use
+ height="100%"
+ id="rmid-use1650"
+ transform="translate(29.77828,38.353177)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use932" />
+ <use
+ height="100%"
+ id="rmid-use1652"
+ transform="translate(-8.0292221,29.544419)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use952" />
+ <use
+ height="100%"
+ id="rmid-use1662"
+ transform="translate(-1.1693042,23.464038)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use928" />
+ <use
+ height="100%"
+ id="rmid-use1658"
+ transform="translate(-2.1827011,28.531022)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use934" />
+ <use
+ height="100%"
+ id="rmid-use1654"
+ transform="translate(-31.883027,40.068157)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use940" />
+ <use
+ height="100%"
+ id="rmid-use2475"
+ transform="translate(9.7598228,19.811583)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2473" />
+ <use
+ height="100%"
+ id="rmid-use1656"
+ transform="translate(-10.13397,3.9756342)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1646" />
+ <use
+ height="100%"
+ id="rmid-use1660"
+ transform="translate(-2.1047475,13.17416)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use938" />
+ <use
+ height="100%"
+ id="rmid-use1664"
+ transform="translate(10.835552,13.797789)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use936" />
+ <use
+ height="100%"
+ id="rmid-use1666"
+ transform="translate(-21.203383,19.566357)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1650" />
+ <use
+ height="100%"
+ id="rmid-use1668"
+ transform="translate(-3.0401909,19.254542)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1652" />
+ <use
+ height="100%"
+ id="rmid-use1672"
+ transform="translate(3.1181445,31.72712)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1648" />
+ <use
+ height="100%"
+ id="rmid-use1670"
+ transform="translate(10.36783,38.275223)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1644" />
+ <use
+ height="100%"
+ id="rmid-use1674"
+ transform="translate(-18.708867,15.74663)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1672" />
+ <use
+ height="100%"
+ id="rmid-use1676"
+ transform="translate(16.058444,35.936615)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1646" />
+ <use
+ height="100%"
+ id="rmid-use1682"
+ transform="translate(-34.299589,-1.1693042)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1662" />
+ <use
+ height="100%"
+ id="rmid-use1678"
+ transform="translate(-21.515197,-14.343465)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1654" />
+ <use
+ height="100%"
+ id="rmid-use1680"
+ transform="translate(-30.63577,1.4811187)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1660" />
+ <use
+ height="100%"
+ id="rmid-use1686"
+ transform="translate(-35.157079,12.628485)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1662" />
+ <use
+ height="100%"
+ id="rmid-use1684"
+ transform="translate(-49.578497,6.0803817)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1658" />
+ <use
+ height="100%"
+ id="rmid-use1688"
+ transform="translate(-33.598007,-6.4701498)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1656" />
+ <use
+ height="100%"
+ id="rmid-use1690"
+ transform="translate(-28.297161,44.277652)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use928" />
+ <use
+ height="100%"
+ id="rmid-use1704"
+ transform="translate(-12.550532,-17.539563)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1694" />
+ <use
+ height="100%"
+ id="rmid-use1700"
+ transform="translate(-12.784392,-16.526166)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1698" />
+ <use
+ height="100%"
+ id="rmid-use1692"
+ transform="translate(-65.481034,-7.1717323)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1654" />
+ <use
+ height="100%"
+ id="rmid-use2471"
+ transform="translate(-77.106529,47.76257)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2469" />
+ <use
+ height="100%"
+ id="rmid-use1696"
+ transform="translate(-21.749058,0.62362893)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1686" />
+ <use
+ height="100%"
+ id="rmid-use1694"
+ transform="translate(-19.332496,1.3252114)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1684" />
+ <use
+ height="100%"
+ id="rmid-use1698"
+ transform="translate(-11.459181,17.305702)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1680" />
+ <use
+ height="100%"
+ id="rmid-use1702"
+ transform="translate(14.88914,-9.8221551)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1692" />
+ <use
+ height="100%"
+ id="rmid-use1718"
+ transform="translate(-2.1047475,-14.265511)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1716" />
+ <use
+ height="100%"
+ id="rmid-use1706"
+ transform="translate(1.7929331,16.604119)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1654" />
+ <use
+ height="100%"
+ id="rmid-use1712"
+ transform="translate(-12.9403,-7.8733148)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1674" />
+ <use
+ height="100%"
+ id="rmid-use1708"
+ transform="translate(6.3921962,25.646739)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1654" />
+ <use
+ height="100%"
+ id="rmid-use1710"
+ transform="translate(-0.77953612,8.5748973)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1656" />
+ <use
+ height="100%"
+ id="rmid-use1714"
+ transform="translate(-20.112032,15.74663)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1668" />
+ <use
+ height="100%"
+ id="rmid-use1716"
+ transform="translate(-18.864774,-5.4567529)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1714" />
+ <use
+ height="100%"
+ id="rmid-use1736"
+ transform="translate(-30.791677,7.7174076)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use2475" />
+ <use
+ height="100%"
+ id="rmid-use1722"
+ transform="translate(-0.70158254,19.410449)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1686" />
+ <use
+ height="100%"
+ id="rmid-use1732"
+ transform="translate(-2.026794,-7.7953612)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1724" />
+ <use
+ height="100%"
+ id="rmid-use1724"
+ transform="translate(0.62362891,22.372687)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1688" />
+ <use
+ height="100%"
+ id="rmid-use1720"
+ transform="translate(-24.867202,17.617516)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1654" />
+ <use
+ height="100%"
+ id="rmid-use1738"
+ transform="translate(0.85748973,10.13397)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1736" />
+ <use
+ height="100%"
+ id="rmid-use1726"
+ transform="translate(5.6126604,26.11446)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1684" />
+ <use
+ height="100%"
+ id="rmid-use1728"
+ transform="translate(-1.7929332,29.77828)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1688" />
+ <use
+ height="100%"
+ id="rmid-use1730"
+ transform="translate(-6.7040107,39.28862)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1686" />
+ <use
+ height="100%"
+ id="rmid-use1734"
+ transform="translate(13.797789,34.221636)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1684" />
+ <use
+ height="100%"
+ id="rmid-use1742"
+ transform="translate(-39.678389,-1.5590722)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1722" />
+ <use
+ height="100%"
+ id="rmid-use1744"
+ transform="translate(-13.096207,8.3410365)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1698" />
+ <use
+ height="100%"
+ id="rmid-use1740"
+ transform="translate(-37.33978,2.416562)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1720" />
+ <use
+ height="100%"
+ id="rmid-use1746"
+ transform="translate(-13.563929,25.179017)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1694" />
+ <use
+ height="100%"
+ id="rmid-use1748"
+ transform="translate(22.216779,0.23386084)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1742" />
+ <use
+ height="100%"
+ id="rmid-use1750"
+ transform="translate(9.5882943,34.689358)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1700" />
+ <use
+ height="100%"
+ id="rmid-use1752"
+ transform="translate(6.3921962,10.991459)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rmid-use1740" />
+ </g>
+</svg>
diff --git a/src/asset/tile/class/3/background.svg b/src/asset/tile/class/3/background.svg
new file mode 100644
index 0000000..e3cee5d
--- /dev/null
+++ b/src/asset/tile/class/3/background.svg
@@ -0,0 +1,180 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="background.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rmid-defs2" />
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1.0"
+ id="rmid-base"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rmid-background"
+ inkscape:cx="115.74574"
+ inkscape:cy="184.10415"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:snap-global="false"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.2">
+ <inkscape:grid
+ id="rmid-grid882"
+ spacingx="31.999999"
+ spacingy="31.999999"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rmid-metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rmid-background"
+ inkscape:groupmode="layer"
+ inkscape:label="rmid-background"
+ sodipodi:insensitive="true">
+ <g
+ id="0_rmid-base">
+ <rect
+ height="32"
+ id="rmid-0_greenbg"
+ style="fill:#bcd35f;stroke-width:3.13680005;stroke-linejoin:bevel"
+ width="32"
+ x="0"
+ y="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-0b00"
+ width="100%"
+ x="32"
+ y="0"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b01"
+ width="100%"
+ x="64"
+ y="0"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b02"
+ width="100%"
+ x="96"
+ y="0"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b10"
+ width="100%"
+ x="0"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b11"
+ width="100%"
+ x="32"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b12"
+ width="100%"
+ x="64"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b13"
+ width="100%"
+ x="96"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b20"
+ width="100%"
+ x="0"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b21"
+ width="100%"
+ x="32"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b22"
+ width="100%"
+ x="64"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b23"
+ width="100%"
+ x="96"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b30"
+ width="100%"
+ x="0"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b31"
+ width="100%"
+ x="32"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b32"
+ width="100%"
+ x="64"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b33"
+ width="100%"
+ x="96"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ </g>
+</svg>
diff --git a/src/asset/tile/class/4/0.svg b/src/asset/tile/class/4/0.svg
new file mode 100644
index 0000000..788fab5
--- /dev/null
+++ b/src/asset/tile/class/4/0.svg
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="0.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rmid-defs2" />
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1.0"
+ id="rmid-base"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rmid-details"
+ inkscape:cx="-4.2071521"
+ inkscape:cy="-87.764826"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:snap-global="false"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.6575">
+ <inkscape:grid
+ id="rmid-grid882"
+ spacingx="31.999999"
+ spacingy="31.999999"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rmid-metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rmid-details"
+ inkscape:groupmode="layer"
+ inkscape:label="rmid-details"
+ sodipodi:insensitive="true" />
+</svg>
diff --git a/src/asset/tile/class/4/background.svg b/src/asset/tile/class/4/background.svg
new file mode 100644
index 0000000..5e1cc82
--- /dev/null
+++ b/src/asset/tile/class/4/background.svg
@@ -0,0 +1,181 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="background.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rmid-defs2" />
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1.0"
+ id="rmid-base"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rmid-background"
+ inkscape:cx="-4.2071521"
+ inkscape:cy="-87.764826"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:snap-global="false"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.6575">
+ <inkscape:grid
+ id="rmid-grid882"
+ spacingx="31.999999"
+ spacingy="31.999999"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rmid-metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rmid-background"
+ inkscape:groupmode="layer"
+ inkscape:label="rmid-background"
+ sodipodi:insensitive="true">
+ <g
+ id="0_rmid-base"
+ style="fill:#5f8dd3">
+ <rect
+ height="32"
+ id="rmid-0_greenbg"
+ style="fill:#5f8dd3;stroke-width:3.13680005;stroke-linejoin:bevel"
+ width="32"
+ x="0"
+ y="0" />
+ </g>
+ <use
+ height="100%"
+ id="rmid-0b00"
+ width="100%"
+ x="32"
+ y="0"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b01"
+ width="100%"
+ x="64"
+ y="0"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b02"
+ width="100%"
+ x="96"
+ y="0"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b10"
+ width="100%"
+ x="0"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b11"
+ width="100%"
+ x="32"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b12"
+ width="100%"
+ x="64"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b13"
+ width="100%"
+ x="96"
+ y="32"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b20"
+ width="100%"
+ x="0"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b21"
+ width="100%"
+ x="32"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b22"
+ width="100%"
+ x="64"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b23"
+ width="100%"
+ x="96"
+ y="64"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b30"
+ width="100%"
+ x="0"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b31"
+ width="100%"
+ x="32"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b32"
+ width="100%"
+ x="64"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ <use
+ height="100%"
+ id="rmid-0b33"
+ width="100%"
+ x="96"
+ y="96"
+ xlink:href="#0_rmid-base" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/0.svg b/src/asset/tile/frontier/basic/0.svg
index 30048bc..a22d774 100644
--- a/src/asset/tile/frontier/basic/0.svg
+++ b/src/asset/tile/frontier/basic/0.svg
@@ -1,69 +1,301 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Ballborders.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1629" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1663">
- <ns0:path d="M 0,95.9997 V 128 H 32 V 95.9997 Z M 8.00001,104 C 9.92448,101.975 12.251,102.228 15.1196,102.13 18.3483,102.02 22.119,101.809 24.0001,104 25.3981,105.627 27.5677,107.055 27.8931,109.403 28.3948,113.023 26.2872,117.713 24.0001,120 22.3524,121.647 19.4034,124.211 17.1553,122.783 10.9105,118.817 10.1237,122.124 8.00001,120 6.07303,118.073 3.08152,112.757 3.08483,109.698 3.088,106.77 5.99955,106.104 8.00001,104 Z" id="rtid-path1631" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 32,95.9997 V 128 H 64 V 95.9997 Z M 40,104 C 41.9687,102.031 44.8078,98.7178 47.9973,98.8046 50.9176,98.884 54.1975,102.197 56.0001,104 57.8023,105.802 56.9131,108.607 56.9928,111.527 57.0799,114.717 59.2571,118.573 57.288,120.542 56.0572,121.773 51.8191,120.23 49.9158,120.657 45.9873,121.539 40.778,120.506 38.2376,117.966 34.4664,114.195 36.2288,107.771 40,104 Z" id="rtid-path1633" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.9997 V 128 H 96 V 95.9997 Z M 72,104 C 73.6339,102.366 72.7579,100.152 75.3888,99.9341 77.7192,99.7408 83.7971,99.0666 86.7856,100.365 88.2108,100.985 90.5637,100.802 91.2538,101.492 92.6756,102.914 92.2734,105.612 92.6232,107.863 92.8705,109.455 90.5241,110.392 89.8237,112.368 88.8871,115.01 93.1403,120.961 91.7961,122.305 88.0249,126.076 74.0772,125.533 70.3054,121.762 67.4518,118.909 66.3042,111.889 68.2411,107.238 68.8641,105.743 71.0823,104.918 72,104 Z" id="rtid-path1635" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 96,95.9997 V 128 H 128 V 95.9997 Z M 101.56,101.492 C 100.851,99.9484 102.243,98.2545 105.761,97.7867 108.481,97.4248 111.835,101.102 115.371,101.688 118.434,102.195 122.676,101.283 123.71,102.316 125.532,104.139 126.727,110.58 123.974,113.914 120.658,117.929 124.716,124.229 122.576,123.932 120.585,123.656 122.723,122.399 116.461,121.027 115.147,120.739 112.561,121.33 110.605,120.226 109.103,119.379 107.995,116.548 106.626,116.492 103.001,116.343 100.923,120.99 100.408,120.475 97.9818,118.049 99.0312,112.928 100.067,108.238 100.641,105.638 102.354,103.221 101.56,101.492 Z" id="rtid-path1637" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssssssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.9997 V 96 H 32 V 63.9997 Z M 4.61073,67.255 C 6.46796,65.3978 12.5799,68.3868 15.5909,68.3588 18.6938,68.33 22.2217,68.0524 24.1357,69.9664 25.9657,71.7964 24.7385,75.2722 24.7925,78.2382 24.8498,81.3845 29.3306,87.8212 27.3894,89.7624 25.0747,92.0771 22.8426,87.4356 17.9438,89.7743 15.6708,90.8594 11.803,94.3165 9.14142,92.873 7.67037,92.0752 4.58694,91.0943 4.06845,90.5758 0.297193,86.8046 0.839482,71.0263 4.61073,67.255 Z" id="rtid-path1639" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 32,63.9997 V 96 H 64.0001 V 63.9997 Z M 40,72 C 43.7712,68.2288 52.2289,68.2288 56.0001,72 59.7713,75.7712 59.7713,84.2288 56.0001,88 52.2289,91.7712 43.7712,91.7712 40,88 36.2288,84.2288 36.2288,75.7712 40,72 Z" id="rtid-path1641" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="ccccczzzzz" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,63.9997 V 96 H 96.0001 V 63.9997 Z M 74.2369,74.6436 C 75.835,73.3932 75.2769,69.1339 77.5523,68.7909 79.5888,68.4839 87.0546,68.221 89.6633,69.6555 91.8008,70.8309 89.1849,73.5914 90.2371,74.6436 91.2599,75.6664 93.4289,77.1695 93.8969,78.6948 94.5369,80.7808 92.1881,82.7199 91.4283,84.8831 90.6953,86.9702 91.5867,89.294 90.2371,90.6436 89.1267,91.754 85.9153,89.3515 84.2316,89.808 83.1491,90.1015 81.9011,91.2132 80.9066,90.9789 79.8039,90.7192 78.9663,89.1002 78.0044,89.2593 76.6003,89.4917 75.3993,91.792 74.2369,90.6436 70.2523,86.707 72.5201,85.4264 73.0356,81.7576 73.3628,79.429 70.7115,77.402 74.2369,74.6436 Z" id="rtid-path1643" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssssssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,63.9997 V 96 H 128 V 63.9997 Z M 103.473,71.4248 C 106.821,68.0765 113.254,65.8834 116.499,68.2776 116.909,68.5799 122.549,67.9823 122.972,68.4052 125.625,71.0584 127.289,78.338 125.337,83.4216 124.514,85.5636 121.118,86.882 120,88 117.889,90.1107 115.537,87.2576 113.015,86.9436 111.03,86.6966 109.159,89.6287 105.726,86.8496 101.282,83.2524 101.001,82.2713 101.372,79.4155 101.653,77.2601 101.851,73.0468 103.473,71.4248 Z" id="rtid-path1645" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.9997 V 64 H 32 V 31.9997 Z M 8.00002,40 C 9.60212,31.4838 16.704,36.4999 24.0001,40 31.2962,43.5001 29.8049,55.8892 26.0337,59.6604 23.8251,61.869 20.8811,63.6088 17.7259,62.2288 15.4933,61.2523 12.952,57.6983 11.3893,56.1356 9.72424,54.4705 4.35377,57.8066 3.70664,55.7164 2.88808,53.0725 7.10527,44.7562 8.00002,40 Z" id="rtid-path1647" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccszsssss" ns1:connector-curvature="0" />
- <ns0:path d="M 32,31.9997 V 64 H 64.0001 V 31.9997 Z M 40.5752,35.9737 C 44.3464,32.2025 52.8041,32.2024 56.5753,35.9737 57.9097,37.3081 61.3612,38.0784 61.5519,40.1708 61.7226,42.0433 58.671,45.2036 59.075,47.0541 59.7091,49.9583 58.0333,51.2388 58.3891,53.0139 59.1684,56.9009 61.6465,60.1317 60.7933,60.9849 58.9398,62.8384 49.1298,59.4305 43.8642,59.1323 38.416,58.8238 37.5081,61.5605 35.5903,59.6428 33.7042,57.7567 38.0345,55.4643 39.2815,50.4886 40.5279,45.5154 38.69,37.8589 40.5752,35.9737 Z" id="rtid-path1649" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,31.9997 V 64 H 96.0001 V 31.9997 Z M 70.8496,42.6842 C 72.0665,41.4673 75.1134,35.083 76.9913,34.6514 80.9332,33.7455 85.4458,37.4456 88.0002,40 89.4598,41.4596 93.2304,44.7715 93.5602,47.0916 94.0825,50.7662 93.9547,55.7973 91.643,58.109 89.7862,59.9658 83.5341,61.4836 80.5239,61.512 77.4202,61.5413 71.8055,59.4483 69.891,57.5338 66.1197,53.7625 67.0783,46.4555 70.8496,42.6842 Z" id="rtid-path1651" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,31.9997 V 64 H 128 V 31.9997 Z M 104,40 C 105.763,38.2371 108.933,41.5162 111.787,41.4015 115.038,41.2709 117.992,37.9918 120,40 121.197,41.1971 123.014,40.4915 124.032,42.7553 126.219,47.6228 126.792,56.4935 124.218,59.0676 120.447,62.8389 103.362,63.6058 99.5903,59.8345 95.819,56.0633 100.229,43.7712 104,40 Z" id="rtid-path1653" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssszs" ns1:connector-curvature="0" />
- <ns0:path d="M 0,-3e-4 V 32 H 32 V -3e-4 Z M 12.7932,3.01512 C 15.2782,0.530126 21.7909,2.43716 25.3231,5.49843 27.1515,7.08301 26.3566,9.39789 27.6429,10.6842 29.2525,12.2938 29.0247,15.7157 29.2604,18.3039 29.5768,21.7799 29.8046,24.5225 27.6429,26.6842 26.2582,28.0689 24.1644,29.9966 22.0574,29.313 14.3912,26.8258 14.0293,29.0708 11.6428,26.6842 9.21818,24.2595 2.60061,20.8564 3.2937,17.0484 3.47664,16.0433 6.66936,18.3045 8.70571,15.3771 10.954,12.145 12.0866,3.72172 12.7932,3.01512 Z" id="rtid-path1655" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 32,-3e-4 V 32 H 64.0001 V -3e-4 Z M 36.3572,3.97373 C 38.1059,2.22503 44.3133,2.43755 47.1428,2.31057 50.4154,2.16371 53.9776,5.97746 56.0001,8 59.7713,11.7712 62.839,22.7212 59.0677,26.4925 55.2965,30.2637 47.4141,30.072 43.6428,26.3007 42.2938,24.9517 36.7433,21.721 35.7606,18.9399 33.9961,13.9463 33.9349,6.39598 36.3572,3.97373 Z" id="rtid-path1657" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssszsss" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,-3e-4 V 32 H 96.0001 V -3e-4 Z M 72,8 C 73.5857,6.41429 76.7669,3.00288 79.3129,2.75066 82.8221,2.40304 89.8409,2.93854 92.0265,5.12409 95.7977,8.89535 95.606,22.3377 91.8347,26.109 89.9931,27.9506 87.2522,28.3915 83.7055,28.9023 79.9893,29.4376 73.9296,25.9296 72,24 68.2287,20.2287 68.2287,11.7713 72,8 Z" id="rtid-path1659" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssss" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,-3e-4 V 32 H 128 V -3e-4 Z M 105.534,9.34209 C 107.535,7.34087 108.556,1.99177 111.796,2.11459 114.661,2.22321 117.847,7.18874 119.617,8.95864 121.627,10.9683 125.824,12.5834 125.692,15.8364 125.576,18.6876 119.653,20.8961 117.891,22.6579 115.839,24.7104 114.315,30.6307 110.997,30.4491 108.219,30.297 106.869,23.9934 105.15,22.2745 102.994,20.1187 97.0864,19.1156 97.3953,15.6478 97.6268,13.0493 103.919,10.9575 105.534,9.34209 Z" id="rtid-path1661" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssssss" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="layer1" ns1:cx="220.713" ns1:cy="265.022" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="1.38" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="0.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1629"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1663">
+ <path
+ d="M 0,95.9997 V 128 H 32 V 95.9997 Z M 8.00001,104 C 9.92448,101.975 12.251,102.228 15.1196,102.13 18.3483,102.02 22.119,101.809 24.0001,104 25.3981,105.627 27.5677,107.055 27.8931,109.403 28.3948,113.023 26.2872,117.713 24.0001,120 22.3524,121.647 19.4034,124.211 17.1553,122.783 10.9105,118.817 10.1237,122.124 8.00001,120 6.07303,118.073 3.08152,112.757 3.08483,109.698 3.088,106.77 5.99955,106.104 8.00001,104 Z"
+ id="rtid-path1631"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,95.9997 V 128 H 64 V 95.9997 Z M 40,104 C 41.9687,102.031 44.8078,98.7178 47.9973,98.8046 50.9176,98.884 54.1975,102.197 56.0001,104 57.8023,105.802 56.9131,108.607 56.9928,111.527 57.0799,114.717 59.2571,118.573 57.288,120.542 56.0572,121.773 51.8191,120.23 49.9158,120.657 45.9873,121.539 40.778,120.506 38.2376,117.966 34.4664,114.195 36.2288,107.771 40,104 Z"
+ id="rtid-path1633"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.9997 V 128 H 96 V 95.9997 Z M 72,104 C 73.6339,102.366 72.7579,100.152 75.3888,99.9341 77.7192,99.7408 83.7971,99.0666 86.7856,100.365 88.2108,100.985 90.5637,100.802 91.2538,101.492 92.6756,102.914 92.2734,105.612 92.6232,107.863 92.8705,109.455 90.5241,110.392 89.8237,112.368 88.8871,115.01 93.1403,120.961 91.7961,122.305 88.0249,126.076 74.0772,125.533 70.3054,121.762 67.4518,118.909 66.3042,111.889 68.2411,107.238 68.8641,105.743 71.0823,104.918 72,104 Z"
+ id="rtid-path1635"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,95.9997 V 128 H 128 V 95.9997 Z M 101.56,101.492 C 100.851,99.9484 102.243,98.2545 105.761,97.7867 108.481,97.4248 111.835,101.102 115.371,101.688 118.434,102.195 122.676,101.283 123.71,102.316 125.532,104.139 126.727,110.58 123.974,113.914 120.658,117.929 124.716,124.229 122.576,123.932 120.585,123.656 122.723,122.399 116.461,121.027 115.147,120.739 112.561,121.33 110.605,120.226 109.103,119.379 107.995,116.548 106.626,116.492 103.001,116.343 100.923,120.99 100.408,120.475 97.9818,118.049 99.0312,112.928 100.067,108.238 100.641,105.638 102.354,103.221 101.56,101.492 Z"
+ id="rtid-path1637"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssssssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.9997 V 96 H 32 V 63.9997 Z M 4.61073,67.255 C 6.46796,65.3978 12.5799,68.3868 15.5909,68.3588 18.6938,68.33 22.2217,68.0524 24.1357,69.9664 25.9657,71.7964 24.7385,75.2722 24.7925,78.2382 24.8498,81.3845 29.3306,87.8212 27.3894,89.7624 25.0747,92.0771 22.8426,87.4356 17.9438,89.7743 15.6708,90.8594 11.803,94.3165 9.14142,92.873 7.67037,92.0752 4.58694,91.0943 4.06845,90.5758 0.297193,86.8046 0.839482,71.0263 4.61073,67.255 Z"
+ id="rtid-path1639"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,63.9997 V 96 H 64.0001 V 63.9997 Z M 40,72 C 43.7712,68.2288 52.2289,68.2288 56.0001,72 59.7713,75.7712 59.7713,84.2288 56.0001,88 52.2289,91.7712 43.7712,91.7712 40,88 36.2288,84.2288 36.2288,75.7712 40,72 Z"
+ id="rtid-path1641"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="ccccczzzzz"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,63.9997 V 96 H 96.0001 V 63.9997 Z M 74.2369,74.6436 C 75.835,73.3932 75.2769,69.1339 77.5523,68.7909 79.5888,68.4839 87.0546,68.221 89.6633,69.6555 91.8008,70.8309 89.1849,73.5914 90.2371,74.6436 91.2599,75.6664 93.4289,77.1695 93.8969,78.6948 94.5369,80.7808 92.1881,82.7199 91.4283,84.8831 90.6953,86.9702 91.5867,89.294 90.2371,90.6436 89.1267,91.754 85.9153,89.3515 84.2316,89.808 83.1491,90.1015 81.9011,91.2132 80.9066,90.9789 79.8039,90.7192 78.9663,89.1002 78.0044,89.2593 76.6003,89.4917 75.3993,91.792 74.2369,90.6436 70.2523,86.707 72.5201,85.4264 73.0356,81.7576 73.3628,79.429 70.7115,77.402 74.2369,74.6436 Z"
+ id="rtid-path1643"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssssssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,63.9997 V 96 H 128 V 63.9997 Z M 103.473,71.4248 C 106.821,68.0765 113.254,65.8834 116.499,68.2776 116.909,68.5799 122.549,67.9823 122.972,68.4052 125.625,71.0584 127.289,78.338 125.337,83.4216 124.514,85.5636 121.118,86.882 120,88 117.889,90.1107 115.537,87.2576 113.015,86.9436 111.03,86.6966 109.159,89.6287 105.726,86.8496 101.282,83.2524 101.001,82.2713 101.372,79.4155 101.653,77.2601 101.851,73.0468 103.473,71.4248 Z"
+ id="rtid-path1645"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.9997 V 64 H 32 V 31.9997 Z M 8.00002,40 C 9.60212,31.4838 16.704,36.4999 24.0001,40 31.2962,43.5001 29.8049,55.8892 26.0337,59.6604 23.8251,61.869 20.8811,63.6088 17.7259,62.2288 15.4933,61.2523 12.952,57.6983 11.3893,56.1356 9.72424,54.4705 4.35377,57.8066 3.70664,55.7164 2.88808,53.0725 7.10527,44.7562 8.00002,40 Z"
+ id="rtid-path1647"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccszsssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,31.9997 V 64 H 64.0001 V 31.9997 Z M 40.5752,35.9737 C 44.3464,32.2025 52.8041,32.2024 56.5753,35.9737 57.9097,37.3081 61.3612,38.0784 61.5519,40.1708 61.7226,42.0433 58.671,45.2036 59.075,47.0541 59.7091,49.9583 58.0333,51.2388 58.3891,53.0139 59.1684,56.9009 61.6465,60.1317 60.7933,60.9849 58.9398,62.8384 49.1298,59.4305 43.8642,59.1323 38.416,58.8238 37.5081,61.5605 35.5903,59.6428 33.7042,57.7567 38.0345,55.4643 39.2815,50.4886 40.5279,45.5154 38.69,37.8589 40.5752,35.9737 Z"
+ id="rtid-path1649"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,31.9997 V 64 H 96.0001 V 31.9997 Z M 70.8496,42.6842 C 72.0665,41.4673 75.1134,35.083 76.9913,34.6514 80.9332,33.7455 85.4458,37.4456 88.0002,40 89.4598,41.4596 93.2304,44.7715 93.5602,47.0916 94.0825,50.7662 93.9547,55.7973 91.643,58.109 89.7862,59.9658 83.5341,61.4836 80.5239,61.512 77.4202,61.5413 71.8055,59.4483 69.891,57.5338 66.1197,53.7625 67.0783,46.4555 70.8496,42.6842 Z"
+ id="rtid-path1651"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,31.9997 V 64 H 128 V 31.9997 Z M 104,40 C 105.763,38.2371 108.933,41.5162 111.787,41.4015 115.038,41.2709 117.992,37.9918 120,40 121.197,41.1971 123.014,40.4915 124.032,42.7553 126.219,47.6228 126.792,56.4935 124.218,59.0676 120.447,62.8389 103.362,63.6058 99.5903,59.8345 95.819,56.0633 100.229,43.7712 104,40 Z"
+ id="rtid-path1653"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssszs"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,-3e-4 V 32 H 32 V -3e-4 Z M 12.7932,3.01512 C 15.2782,0.530126 21.7909,2.43716 25.3231,5.49843 27.1515,7.08301 26.3566,9.39789 27.6429,10.6842 29.2525,12.2938 29.0247,15.7157 29.2604,18.3039 29.5768,21.7799 29.8046,24.5225 27.6429,26.6842 26.2582,28.0689 24.1644,29.9966 22.0574,29.313 14.3912,26.8258 14.0293,29.0708 11.6428,26.6842 9.21818,24.2595 2.60061,20.8564 3.2937,17.0484 3.47664,16.0433 6.66936,18.3045 8.70571,15.3771 10.954,12.145 12.0866,3.72172 12.7932,3.01512 Z"
+ id="rtid-path1655"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,-3e-4 V 32 H 64.0001 V -3e-4 Z M 36.3572,3.97373 C 38.1059,2.22503 44.3133,2.43755 47.1428,2.31057 50.4154,2.16371 53.9776,5.97746 56.0001,8 59.7713,11.7712 62.839,22.7212 59.0677,26.4925 55.2965,30.2637 47.4141,30.072 43.6428,26.3007 42.2938,24.9517 36.7433,21.721 35.7606,18.9399 33.9961,13.9463 33.9349,6.39598 36.3572,3.97373 Z"
+ id="rtid-path1657"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssszsss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,-3e-4 V 32 H 96.0001 V -3e-4 Z M 72,8 C 73.5857,6.41429 76.7669,3.00288 79.3129,2.75066 82.8221,2.40304 89.8409,2.93854 92.0265,5.12409 95.7977,8.89535 95.606,22.3377 91.8347,26.109 89.9931,27.9506 87.2522,28.3915 83.7055,28.9023 79.9893,29.4376 73.9296,25.9296 72,24 68.2287,20.2287 68.2287,11.7713 72,8 Z"
+ id="rtid-path1659"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,-3e-4 V 32 H 128 V -3e-4 Z M 105.534,9.34209 C 107.535,7.34087 108.556,1.99177 111.796,2.11459 114.661,2.22321 117.847,7.18874 119.617,8.95864 121.627,10.9683 125.824,12.5834 125.692,15.8364 125.576,18.6876 119.653,20.8961 117.891,22.6579 115.839,24.7104 114.315,30.6307 110.997,30.4491 108.219,30.297 106.869,23.9934 105.15,22.2745 102.994,20.1187 97.0864,19.1156 97.3953,15.6478 97.6268,13.0493 103.919,10.9575 105.534,9.34209 Z"
+ id="rtid-path1661"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssssss"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-layer3"
+ inkscape:cx="220.713"
+ inkscape:cy="265.022"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.38" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" style="display:none" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001" x="12.47" y="19.639999" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.639999" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001" x="12.47" y="19.639999" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.639999" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" style="display:inline" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" style="display:inline" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1629)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" style="display:inline" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:path d="m 15.1113,101.881 c -1.4246,0.049 -2.7312,0.007 -3.9472,0.215 -1.21609,0.208 -2.34527,0.679 -3.34574,1.732 -0.96757,1.018 -2.1809,1.702 -3.18359,2.518 -1.00269,0.815 -1.79911,1.804 -1.80079,3.351 -0.00174,1.611 0.76378,3.718 1.76172,5.69 0.99794,1.971 2.22754,3.792 3.22657,4.791 0.55931,0.559 1.07965,0.787 1.59961,0.843 0.51995,0.056 1.01882,-0.038 1.62302,-0.07 1.2084,-0.064 2.8847,0.08 5.9766,2.043 1.223,0.777 2.637,0.459 3.9004,-0.23 1.2634,-0.69 2.4251,-1.756 3.2558,-2.586 2.3537,-2.354 4.4817,-7.065 3.9629,-10.809 -0.3442,-2.484 -2.5893,-3.946 -3.9511,-5.531 -0.997,-1.161 -2.4786,-1.671 -4.0918,-1.883 -1.6133,-0.211 -3.3741,-0.129 -4.9864,-0.074 z m 0.0176,0.498 c 1.6165,-0.055 3.3547,-0.133 4.9043,0.07 1.5496,0.203 2.8932,0.683 3.7773,1.713 1.4342,1.669 3.5275,3.064 3.834,5.276 0.4846,3.496 -1.5997,8.164 -3.8203,10.384 -0.817,0.817 -1.9555,1.857 -3.1406,2.504 -1.1851,0.647 -2.3694,0.897 -3.3945,0.246 -3.153,-2.002 -4.9924,-2.188 -6.2696,-2.121 -0.6385,0.034 -1.12488,0.12 -1.54489,0.074 -0.42001,-0.045 -0.79435,-0.2 -1.29688,-0.703 -0.92795,-0.928 -2.15798,-2.729 -3.13671,-4.662 -0.97874,-1.933 -1.7086,-4.013 -1.70704,-5.461 0.0015,-1.381 0.6632,-2.189 1.61719,-2.965 0.95399,-0.775 2.19758,-1.476 3.23047,-2.562 0.924,-0.972 1.92096,-1.388 3.06636,-1.584 1.1455,-0.196 2.437,-0.16 3.8809,-0.209 z" id="rtid-path1003-61" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccsccccccccscccsccccccccsc" ns1:connector-curvature="0" />
- <ns0:path d="m 48.0039,98.5547 c -1.6832,-0.0458 -3.2401,0.7996 -4.6172,1.8813 -1.3771,1.081 -2.5872,2.409 -3.5644,3.386 -1.9221,1.922 -3.3266,4.51 -3.7774,7.117 -0.4508,2.608 0.0661,5.254 2.0156,7.204 2.6373,2.636 7.8949,3.659 11.9102,2.757 0.8502,-0.19 2.3921,0.069 3.8535,0.248 0.7307,0.09 1.445,0.158 2.0742,0.122 0.6293,-0.037 1.1896,-0.174 1.5664,-0.551 0.5375,-0.538 0.7936,-1.213 0.8692,-1.942 0.0756,-0.728 -0.0211,-1.516 -0.1778,-2.332 -0.3133,-1.631 -0.8719,-3.385 -0.914,-4.925 -0.0391,-1.433 0.1636,-2.859 0.1504,-4.178 -0.0132,-1.319 -0.2544,-2.557 -1.2149,-3.518 -0.9007,-0.901 -2.1797,-2.189 -3.6093,-3.267 -1.4297,-1.0785 -3.0125,-1.9601 -4.5645,-2.0023 z m -0.0137,0.5 c 1.3683,0.0372 2.8863,0.8514 4.2774,1.9003 1.391,1.049 2.6548,2.319 3.5566,3.221 v 0.002 c 0.8407,0.84 1.0557,1.906 1.0684,3.17 0.0126,1.263 -0.191,2.698 -0.1504,4.185 0.045,1.649 0.6191,3.42 0.9238,5.006 0.1524,0.793 0.2372,1.538 0.1699,2.186 -0.0672,0.647 -0.2774,1.193 -0.7246,1.64 -0.2385,0.239 -0.6711,0.371 -1.2422,0.405 -0.571,0.033 -1.2638,-0.029 -1.9843,-0.118 -1.4412,-0.177 -2.9704,-0.476 -4.0235,-0.24 -3.8417,0.863 -9.0037,-0.18 -11.4472,-2.623 -1.8217,-1.821 -2.3074,-4.274 -1.877,-6.764 0.4304,-2.489 1.7915,-4.998 3.6406,-6.847 0.9915,-0.992 2.1856,-2.304 3.5176,-3.35 1.332,-1.0457 2.7887,-1.8143 4.2949,-1.7733 z" id="rtid-path1003-6-8" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccccccccccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="m 80.8379,99.3398 c -2.1987,0.0307 -4.3115,0.2496 -5.4707,0.3457 -0.6924,0.0577 -1.1906,0.2533 -1.5488,0.5545 -0.3586,0.302 -0.5668,0.695 -0.7305,1.104 -0.3274,0.818 -0.5044,1.717 -1.2656,2.478 v 0.002 c -0.4142,0.414 -1.1938,0.855 -1.9532,1.371 -0.7594,0.517 -1.5136,1.118 -1.8593,1.948 -0.9924,2.382 -1.1865,5.337 -0.7793,8.068 0.4071,2.731 1.411,5.241 2.8984,6.728 1.9906,1.991 6.4488,3.035 10.9141,3.172 4.4652,0.137 8.9308,-0.63 10.9297,-2.629 0.2239,-0.223 0.3199,-0.534 0.3359,-0.869 0.016,-0.335 -0.0417,-0.709 -0.1426,-1.117 -0.2018,-0.815 -0.5818,-1.771 -0.9707,-2.764 -0.3889,-0.992 -0.7868,-2.02 -1.0273,-2.949 -0.2405,-0.929 -0.3138,-1.755 -0.1094,-2.332 0.325,-0.917 1.0514,-1.621 1.7012,-2.308 0.3248,-0.344 0.6306,-0.683 0.8457,-1.059 0.2151,-0.376 0.3372,-0.799 0.2656,-1.26 -0.1703,-1.096 -0.1581,-2.33 -0.2813,-3.484 -0.1231,-1.155 -0.385,-2.25 -1.1601,-3.026 -0.4533,-0.453 -1.2429,-0.541 -2.0996,-0.66 -0.8567,-0.118 -1.7871,-0.231 -2.4453,-0.517 v -0.002 c -1.5656,-0.6804 -3.8483,-0.8258 -6.0469,-0.7952 z m 0.0059,0.5 c 2.17,-0.0302 4.4188,0.1357 5.8417,0.7542 0.767,0.333 1.7277,0.439 2.5762,0.556 0.8486,0.118 1.5777,0.281 1.8145,0.518 0.6466,0.647 0.8969,1.612 1.0156,2.725 0.1187,1.112 0.1057,2.355 0.2852,3.509 0.052,0.335 -0.0279,0.624 -0.2051,0.934 -0.1772,0.309 -0.457,0.626 -0.7754,0.963 -0.6368,0.673 -1.4332,1.427 -1.8086,2.486 -0.2639,0.745 -0.1559,1.651 0.0957,2.623 0.2515,0.972 0.6576,2.013 1.0469,3.006 0.3892,0.993 0.7608,1.942 0.9492,2.703 0.0942,0.381 0.1412,0.713 0.1289,0.971 -0.0123,0.258 -0.0774,0.429 -0.1895,0.541 -1.7723,1.772 -6.1661,2.617 -10.5605,2.482 -4.3944,-0.134 -8.795,-1.244 -10.5762,-3.025 -1.3661,-1.366 -2.3619,-3.794 -2.7578,-6.449 -0.3958,-2.655 -0.1965,-5.535 0.7481,-7.803 0.2772,-0.665 0.9428,-1.225 1.6777,-1.725 0.7349,-0.499 1.5238,-0.929 2.0273,-1.433 0.8716,-0.873 1.0744,-1.895 1.375,-2.647 0.1504,-0.376 0.3198,-0.68 0.5879,-0.906 0.2682,-0.226 0.6477,-0.388 1.2696,-0.439 1.1712,-0.098 3.2635,-0.3139 5.4336,-0.3442 z" id="rtid-path1003-7-79" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscsccsccscccccccccccccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 105.729,97.5391 c -1.794,0.2385 -3.07,0.7874 -3.827,1.5175 -0.756,0.7302 -0.965,1.6794 -0.57,2.5394 0.35,0.762 0.153,1.73 -0.242,2.859 -0.395,1.129 -0.973,2.393 -1.2677,3.729 -0.5182,2.346 -1.043,4.809 -1.1328,7.011 -0.0899,2.202 0.2529,4.169 1.5405,5.457 0.081,0.081 0.218,0.123 0.325,0.11 0.106,-0.014 0.186,-0.058 0.261,-0.11 0.15,-0.102 0.291,-0.25 0.457,-0.435 0.333,-0.371 0.749,-0.893 1.258,-1.422 1.018,-1.059 2.38,-2.123 4.084,-2.053 0.258,0.011 0.535,0.158 0.832,0.424 0.298,0.266 0.605,0.642 0.92,1.049 0.631,0.814 1.284,1.759 2.115,2.228 1.036,0.585 2.215,0.712 3.286,0.739 1.071,0.026 2.052,-0.04 2.64,0.089 3.11,0.682 4.081,1.32 4.531,1.791 0.226,0.236 0.332,0.454 0.545,0.668 0.214,0.215 0.528,0.376 1.057,0.45 0.322,0.044 0.627,-0.059 0.781,-0.291 0.154,-0.233 0.173,-0.516 0.158,-0.844 -0.029,-0.656 -0.235,-1.534 -0.4,-2.545 -0.329,-2.021 -0.499,-4.508 1.086,-6.428 1.438,-1.741 1.826,-4.247 1.641,-6.545 -0.186,-2.298 -0.925,-4.392 -1.92,-5.388 -0.332,-0.332 -0.843,-0.463 -1.457,-0.534 -0.615,-0.07 -1.346,-0.068 -2.135,-0.05 -1.579,0.035 -3.394,0.133 -4.883,-0.114 -1.697,-0.281 -3.401,-1.325 -5.025,-2.275 -1.625,-0.9496 -3.175,-1.8243 -4.658,-1.6269 z m 0.066,0.4961 c 1.237,-0.1646 2.723,0.6174 4.34,1.5625 1.616,0.9453 3.356,2.0333 5.195,2.3383 1.574,0.26 3.41,0.154 4.977,0.119 0.783,-0.018 1.498,-0.018 2.066,0.047 0.568,0.065 0.975,0.205 1.16,0.39 0.826,0.827 1.597,2.864 1.776,5.076 0.178,2.212 -0.213,4.594 -1.528,6.186 -1.731,2.096 -1.529,4.768 -1.193,6.826 0.168,1.029 0.367,1.921 0.392,2.488 0.013,0.284 -0.027,0.475 -0.074,0.545 -0.047,0.071 -0.081,0.1 -0.295,0.071 h -0.002 c -0.466,-0.065 -0.63,-0.164 -0.771,-0.305 -0.141,-0.142 -0.265,-0.376 -0.537,-0.66 -0.544,-0.569 -1.635,-1.245 -4.787,-1.936 -0.726,-0.159 -1.695,-0.076 -2.735,-0.101 -1.039,-0.026 -2.13,-0.155 -3.05,-0.674 -0.671,-0.378 -1.325,-1.271 -1.965,-2.098 -0.321,-0.413 -0.64,-0.81 -0.983,-1.117 -0.342,-0.307 -0.717,-0.533 -1.144,-0.551 -1.921,-0.079 -3.411,1.107 -4.467,2.205 -0.528,0.55 -0.955,1.085 -1.27,1.436 -0.152,0.169 -0.276,0.29 -0.353,0.346 -1.0947,-1.141 -1.4434,-2.911 -1.3575,-5.014 0.0872,-2.138 0.6034,-4.58 1.1215,-6.924 0.279,-1.265 0.845,-2.508 1.251,-3.67 0.407,-1.162 0.669,-2.268 0.225,-3.234 -0.314,-0.684 -0.181,-1.351 0.461,-1.971 0.642,-0.6196 1.823,-1.1516 3.547,-1.3808 z" id="rtid-path1003-6-5-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccccccccccccccccccccccccccscccsccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 6.69141,66.3984 c -0.91464,-0.0193 -1.72132,0.1432 -2.25782,0.6797 -1.00232,1.0024 -1.74342,2.7288 -2.27148,4.8203 -0.52806,2.0915 -0.83216,4.5501 -0.90039,7.0098 -0.06823,2.4598 0.09975,4.9203 0.52539,7.0137 0.42564,2.0934 1.0989,3.8235 2.10547,4.8301 0.18936,0.1893 0.48193,0.3345 0.875,0.5156 0.39307,0.181 0.8761,0.3787 1.38672,0.584 1.02124,0.4104 2.15826,0.8557 2.86718,1.2402 1.44892,0.7858 3.17232,0.2348 4.78122,-0.5977 1.609,-0.8325 3.155,-1.9723 4.2481,-2.4941 2.378,-1.1353 4.0445,-0.5817 5.4922,-0.0078 0.7238,0.287 1.3847,0.5881 2.0527,0.668 0.668,0.0798 1.3483,-0.0983 1.9707,-0.7207 0.5682,-0.5682 0.644,-1.4332 0.4902,-2.3946 -0.1537,-0.9614 -0.5397,-2.0553 -0.9843,-3.1836 -0.8892,-2.2565 -2.0028,-4.6693 -2.0293,-6.1269 -0.0264,-1.4468 0.2634,-3.0541 0.3359,-4.5469 0.0725,-1.4928 -0.0757,-2.9077 -1.0664,-3.8984 C 23.2969,68.7735 21.8731,68.3549 20.3359,68.1855 18.7987,68.0162 17.1328,68.095 15.5879,68.1094 14.1667,68.1226 11.877,67.3919 9.72656,66.877 8.65134,66.6195 7.60604,66.4178 6.69141,66.3984 Z m -0.00977,0.5 c 0.84779,0.0179 1.86644,0.2107 2.92774,0.4649 2.12262,0.5082 4.39462,1.2609 5.98442,1.2461 1.558,-0.0145 3.2065,-0.0909 4.6874,0.0722 1.481,0.1632 2.7794,0.5626 3.6778,1.461 0.8393,0.8393 0.992,2.0773 0.9219,3.5215 -0.0702,1.4441 -0.3656,3.0588 -0.3379,4.5781 0.0307,1.6887 1.1842,4.067 2.0644,6.3008 0.4401,1.1168 0.8148,2.1922 0.9571,3.082 0.1422,0.8898 0.0508,1.5585 -0.3516,1.9609 -0.5349,0.535 -1.0021,0.6445 -1.5567,0.5782 -0.5545,-0.0664 -1.1918,-0.345 -1.9277,-0.6368 -1.4717,-0.5834 -3.3718,-1.1819 -5.8926,0.0215 -1.1799,0.5633 -2.7031,1.6955 -4.2617,2.502 C 12.0156,92.8572 10.4724,93.31 9.25977,92.6523 8.49764,92.239 7.35966,91.7978 6.3418,91.3887 5.83287,91.1841 5.35539,90.9881 4.97852,90.8145 4.60164,90.6408 4.31598,90.4683 4.24609,90.3984 3.36703,89.5194 2.69284,87.8658 2.27734,85.8223 1.86185,83.7787 1.69438,81.3495 1.76172,78.9219 1.82906,76.4942 2.13005,74.0669 2.64648,72.0215 3.16292,69.976 3.90381,68.315 4.78711,67.4316 5.17923,67.0395 5.83385,66.8805 6.68164,66.8984 Z" id="rtid-path1003-3-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscsccccccccscccssccccscccscccccccccccccccccs" ns1:connector-curvature="0" />
- <ns0:path d="m 48,68.9219 c -3.1086,0 -6.2261,0.9487 -8.1777,2.9004 -1.9517,1.9516 -2.9004,5.0691 -2.9004,8.1777 0,3.1086 0.9487,6.2261 2.9004,8.1777 1.9516,1.9517 5.0691,2.9004 8.1777,2.9004 3.1086,0 6.2261,-0.9487 8.1777,-2.9004 1.9517,-1.9516 2.9004,-5.0691 2.9004,-8.1777 0,-3.1086 -0.9487,-6.2261 -2.9004,-8.1777 C 54.2261,69.8706 51.1086,68.9219 48,68.9219 Z m 0,0.5 c 3.0058,0 6.0047,0.9363 7.8242,2.7558 1.8195,1.8196 2.7539,4.8165 2.7539,7.8223 0,3.0058 -0.9344,6.0027 -2.7539,7.8223 -1.8195,1.8195 -4.8184,2.7558 -7.8242,2.7558 -3.0058,0 -6.0027,-0.9363 -7.8223,-2.7558 C 38.3582,86.0027 37.4219,83.0058 37.4219,80 c 0,-3.0058 0.9363,-6.0027 2.7558,-7.8223 1.8196,-1.8195 4.8165,-2.7558 7.8223,-2.7558 z" id="rtid-path1003-6-56-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="scscscscsscscscscs" ns1:connector-curvature="0" />
- <ns0:path d="m 83.4004,68.3203 c -2.4618,-0.0757 -4.8324,0.064 -5.8848,0.2227 -0.6457,0.0973 -1.11,0.4908 -1.4277,0.998 -0.3178,0.5072 -0.5133,1.1307 -0.6875,1.7695 -0.3484,1.2777 -0.6389,2.6052 -1.3184,3.1368 -0.905,0.7081 -1.4324,1.3849 -1.705,2.0488 -0.2727,0.6639 -0.2827,1.3043 -0.1875,1.9043 0.1903,1.2 0.7469,2.26 0.5976,3.3223 -0.2513,1.7883 -0.9469,3.0077 -1.0879,4.3515 -0.141,1.3439 0.3425,2.7536 2.3613,4.7481 0.3356,0.3315 0.7396,0.4381 1.1055,0.3672 0.3659,-0.071 0.6927,-0.2815 1.0137,-0.5196 0.6419,-0.476 1.2829,-1.0677 1.8652,-1.164 0.1674,-0.0277 0.3376,0.0183 0.5391,0.1347 0.2015,0.1164 0.4213,0.3016 0.6523,0.5078 0.4621,0.4125 0.9629,0.9211 1.6133,1.0743 0.6059,0.1427 1.2146,-0.1166 1.7988,-0.4082 0.5843,-0.2917 1.1607,-0.6334 1.6485,-0.7657 0.6962,-0.1887 1.9113,0.2511 3.0703,0.6582 0.5795,0.2036 1.1473,0.3923 1.668,0.459 0.5206,0.0667 1.0268,0.0064 1.3789,-0.3457 0.745,-0.745 0.8624,-1.7477 0.9004,-2.7715 0.0379,-1.0238 0.0032,-2.0957 0.3496,-3.082 0.3609,-1.0276 1.1256,-2.0465 1.7382,-3.0801 0.6127,-1.0336 1.0859,-2.1199 0.7344,-3.2656 -0.259,-0.8442 -0.9496,-1.6173 -1.6894,-2.3223 -0.7398,-0.7049 -1.541,-1.3398 -2.0332,-1.832 -0.1878,-0.1878 -0.2209,-0.4525 -0.1621,-0.8438 0.0587,-0.3912 0.2171,-0.8681 0.3476,-1.3632 0.1305,-0.4952 0.2364,-1.0141 0.1543,-1.5176 -0.082,-0.5036 -0.3813,-0.9825 -0.9707,-1.3067 -1.3982,-0.7688 -3.9211,-1.0395 -6.3828,-1.1152 z m -0.0156,0.5 c 2.4324,0.0748 4.9477,0.3891 6.1582,1.0547 0.4793,0.2636 0.6552,0.5698 0.7168,0.9473 0.0615,0.3775 -0.0198,0.8371 -0.1446,1.3105 -0.1247,0.4734 -0.2884,0.957 -0.3574,1.416 -0.069,0.459 -0.0356,0.9332 0.3027,1.2715 0.5306,0.5306 1.3256,1.1582 2.043,1.8418 0.7174,0.6836 1.3457,1.4244 1.5547,2.1055 0.2885,0.9402 -0.0938,1.867 -0.6855,2.8652 -0.5917,0.9983 -1.3805,2.0324 -1.7793,3.168 -0.3867,1.1008 -0.342,2.2332 -0.3789,3.2304 -0.037,0.9973 -0.1493,1.831 -0.754,2.4356 -0.2031,0.2031 -0.5145,0.2603 -0.9609,0.2031 -0.4464,-0.0572 -0.9957,-0.2344 -1.5684,-0.4355 -1.1452,-0.4024 -2.3777,-0.9357 -3.3652,-0.668 -0.5948,0.1613 -1.1832,0.5218 -1.7422,0.8008 -0.559,0.279 -1.0703,0.4607 -1.459,0.3691 -0.4522,-0.1065 -0.9235,-0.5387 -1.3964,-0.9609 -0.2365,-0.2111 -0.4738,-0.4178 -0.7344,-0.5684 -0.2606,-0.1505 -0.5575,-0.2471 -0.8711,-0.1953 -0.8218,0.136 -1.4819,0.8108 -2.082,1.2559 -0.3001,0.2225 -0.5805,0.387 -0.8106,0.4316 -0.23,0.0446 -0.4126,0.0083 -0.6582,-0.2344 -1.9658,-1.9421 -2.3405,-3.14 -2.2148,-4.3378 0.1256,-1.1978 0.8217,-2.4536 1.0859,-4.334 0.1779,-1.2664 -0.4275,-2.3855 -0.5996,-3.4707 -0.0861,-0.5427 -0.0757,-1.072 0.1562,-1.6368 0.232,-0.5647 0.6932,-1.1746 1.5508,-1.8457 0.9187,-0.7188 1.1493,-2.1461 1.4903,-3.3964 0.1704,-0.6252 0.3633,-1.2098 0.6308,-1.6368 0.2675,-0.4269 0.5862,-0.6934 1.0781,-0.7675 0.9842,-0.1484 3.3625,-0.2935 5.795,-0.2188 z" id="rtid-path1003-7-2-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccccscccscscccccccccssscccccsccscccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 113.588,67.0371 c -1.148,-0.0817 -2.391,0.0801 -3.629,0.4199 -2.476,0.6796 -4.951,2.0796 -6.662,3.791 -0.884,0.884 -1.332,2.3816 -1.623,3.9258 -0.291,1.5442 -0.41,3.1446 -0.549,4.209 -0.187,1.4395 -0.213,2.4813 0.398,3.5918 0.612,1.1106 1.817,2.2644 4.045,4.0684 1.768,1.4305 3.228,1.4104 4.42,1.041 1.193,-0.3694 2.134,-0.9999 2.996,-0.8926 1.179,0.1467 2.382,0.918 3.58,1.4199 0.6,0.251 1.204,0.4352 1.819,0.4082 0.614,-0.0269 1.231,-0.2778 1.795,-0.8418 0.504,-0.5042 1.637,-1.1289 2.742,-1.875 1.105,-0.746 2.204,-1.6285 2.65,-2.791 0.999,-2.6013 1.067,-5.7317 0.557,-8.5547 -0.51,-2.8229 -1.59,-5.3395 -2.979,-6.7285 -0.161,-0.1615 -0.315,-0.1587 -0.527,-0.1855 -0.212,-0.0269 -0.475,-0.0388 -0.777,-0.043 -0.605,-0.0083 -1.365,0.0175 -2.123,0.0469 -0.758,0.0294 -1.514,0.0615 -2.1,0.0683 -0.293,0.0034 -0.545,9e-4 -0.726,-0.0117 -0.091,-0.0063 -0.165,-0.0161 -0.213,-0.0254 -0.048,-0.0092 -0.073,-0.0295 -0.036,-0.0019 -0.857,-0.6328 -1.91,-0.9574 -3.058,-1.0391 z m -0.045,0.502 c 1.075,0.0758 2.042,0.3751 2.807,0.9394 h 0.002 c 0.088,0.0654 0.156,0.0764 0.236,0.0918 0.08,0.0154 0.168,0.0241 0.271,0.0313 0.207,0.0142 0.468,0.0171 0.768,0.0136 0.6,-0.007 1.357,-0.039 2.113,-0.0683 0.756,-0.0294 1.511,-0.0549 2.096,-0.0469 0.292,0.004 0.544,0.0164 0.723,0.0391 0.179,0.0226 0.292,0.0987 0.236,0.0429 1.264,1.2643 2.343,3.7138 2.84,6.4649 0.497,2.751 0.422,5.8028 -0.531,8.2851 -0.377,0.9796 -1.387,1.8266 -2.465,2.5547 -1.079,0.7281 -2.203,1.3218 -2.817,1.9356 -0.491,0.4913 -0.962,0.6753 -1.461,0.6972 -0.499,0.0219 -1.035,-0.1314 -1.603,-0.3691 -1.136,-0.4755 -2.369,-1.2878 -3.713,-1.4551 -1.122,-0.1396 -2.107,0.572 -3.205,0.9121 -1.098,0.3401 -2.291,0.3974 -3.957,-0.9512 -2.216,-1.7932 -3.373,-2.9286 -3.92,-3.9218 -0.547,-0.9933 -0.528,-1.8709 -0.344,-3.2871 0.142,-1.091 0.263,-2.6749 0.547,-4.1817 0.284,-1.5068 0.746,-2.926 1.484,-3.664 1.637,-1.6369 4.051,-3.0067 6.44,-3.6621 1.194,-0.3278 2.378,-0.4763 3.453,-0.4004 z" id="rtid-path1003-6-5-9-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="sscsccccccccccccccsscccscccscsccccccccsccscccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 11.8145,35.0859 c -0.6568,0.0643 -1.2629,0.2598 -1.8028,0.6211 -1.07981,0.7227 -1.85024,2.0797 -2.25779,4.2461 -0.43908,2.334 -1.71349,5.6036 -2.7793,8.6133 -0.5329,1.5049 -1.0123,2.947 -1.31055,4.1895 -0.29824,1.2424 -0.42884,2.2808 -0.19531,3.0351 0.09812,0.3169 0.30487,0.5561 0.56836,0.6953 0.26349,0.1393 0.57208,0.1895 0.90625,0.1934 0.66833,0.0077 1.46035,-0.1671 2.27734,-0.3496 0.817,-0.1826 1.65516,-0.376 2.3711,-0.4199 0.7159,-0.044 1.2819,0.0631 1.6211,0.4023 0.7622,0.7623 1.7927,2.0455 2.9101,3.2598 1.1174,1.2142 2.3156,2.3658 3.502,2.8847 1.6391,0.7169 3.2451,0.6232 4.6992,0.0664 1.4542,-0.5567 2.7664,-1.5651 3.8867,-2.6855 1.9708,-1.9707 3.2758,-6.0496 3.2071,-10.1133 C 29.3492,45.6609 27.8652,41.5781 24.1074,39.7754 20.4728,38.0318 16.8783,35.8928 13.918,35.25 13.1779,35.0893 12.4712,35.0217 11.8145,35.0859 Z m 0.0566,0.4961 c 0.5885,-0.0565 1.2376,0.0035 1.9414,0.1563 2.8152,0.6112 6.4186,2.7298 10.0801,4.4863 3.5383,1.6974 4.9586,5.5592 5.0254,9.5078 0.0668,3.9487 -1.2601,7.9515 -3.0606,9.752 -1.0882,1.0882 -2.3541,2.052 -3.7129,2.5722 C 20.7857,62.5769 19.3423,62.6631 17.8262,62 16.78,61.5424 15.5923,60.43 14.4902,59.2324 13.3882,58.0348 12.3668,56.7594 11.5664,55.959 11.0731,55.4657 10.342,55.3642 9.5625,55.4121 8.78295,55.46 7.92598,55.6598 7.11133,55.8418 6.29668,56.0238 5.52189,56.1863 4.94922,56.1797 4.66288,56.1764 4.43206,56.1298 4.27148,56.0449 4.11091,55.96 4.00898,55.8482 3.94531,55.6426 3.76956,55.0749 3.86017,54.0821 4.15039,52.873 4.44061,51.664 4.91635,50.2336 5.44727,48.7344 6.5091,45.7359 7.79042,42.4691 8.24609,40.0469 8.63959,37.9552 9.3587,36.7457 10.2891,36.123 c 0.4651,-0.3113 0.9935,-0.4844 1.582,-0.541 z" id="rtid-path1003-1-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscccccccccscccscccsssscccscssccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 48.5762,32.8945 c -3.1087,0 -6.2261,0.9507 -8.1778,2.9024 -0.5455,0.5455 -0.7798,1.4298 -0.8945,2.5136 -0.1147,1.0839 -0.0985,2.3818 -0.0644,3.7696 0.0681,2.7756 0.2084,5.9185 -0.4004,8.3476 -0.6091,2.4305 -1.9743,4.2138 -2.9825,5.6524 -0.504,0.7193 -0.9241,1.349 -1.1015,1.9668 -0.1774,0.6177 -0.0643,1.2502 0.459,1.7734 0.5074,0.5074 0.9971,0.7373 1.5019,0.7578 0.5048,0.0206 0.9937,-0.1476 1.5703,-0.3515 1.1532,-0.4079 2.6817,-0.9956 5.3633,-0.8438 2.5879,0.1466 6.3598,1.0693 9.7109,1.7285 1.6756,0.3297 3.2466,0.5935 4.5333,0.6582 1.2866,0.0647 2.3085,-0.039 2.8769,-0.6074 0.1559,-0.1559 0.2308,-0.3688 0.2461,-0.5879 0.0153,-0.2191 -0.0217,-0.4537 -0.0879,-0.7109 -0.1324,-0.5144 -0.3913,-1.1243 -0.6973,-1.8262 -0.6118,-1.4038 -1.4146,-3.1657 -1.7968,-5.0723 -0.1608,-0.802 0.14,-1.5118 0.4394,-2.4296 0.2994,-0.9179 0.5726,-2.0308 0.2442,-3.5352 -0.1677,-0.7681 0.4372,-2.0048 1.1269,-3.2578 0.6897,-1.253 1.4542,-2.5107 1.3555,-3.5938 C 61.747,39.5588 61.4602,39.0614 61.0625,38.6465 60.6648,38.2315 60.155,37.8881 59.6191,37.5723 58.5475,36.9407 57.36,36.4049 56.752,35.7969 54.8003,33.8451 51.6848,32.8945 48.5762,32.8945 Z m 0,0.5 c 3.0058,0 6.0027,0.9363 7.8222,2.7559 0.7264,0.7264 1.9314,1.2433 2.9668,1.8535 0.5177,0.3051 0.9912,0.6286 1.336,0.9883 0.3447,0.3597 0.5599,0.7446 0.6015,1.2012 0.072,0.7894 -0.6025,2.0487 -1.2949,3.3066 -0.6924,1.2579 -1.414,2.525 -1.1777,3.6074 0.3056,1.3998 0.0606,2.3812 -0.2305,3.2735 -0.291,0.8922 -0.6501,1.7085 -0.4551,2.6816 0.3971,1.9805 1.2214,3.7772 1.8301,5.1738 0.3044,0.6984 0.5533,1.2991 0.6699,1.752 0.0583,0.2264 0.0818,0.4147 0.0723,0.5508 -0.0095,0.136 -0.0422,0.2121 -0.0996,0.2695 -0.3583,0.3583 -1.2595,0.5232 -2.4981,0.4609 -1.2385,-0.0623 -2.796,-0.3205 -4.4629,-0.6484 -3.3336,-0.6559 -7.0996,-1.5866 -9.7773,-1.7383 -2.7665,-0.1566 -4.4163,0.4691 -5.5586,0.8731 -0.5711,0.2019 -1.0097,0.3375 -1.3848,0.3222 -0.3751,-0.0153 -0.7165,-0.1599 -1.1679,-0.6113 -0.4198,-0.4198 -0.4751,-0.7832 -0.3321,-1.2813 0.1431,-0.498 0.5307,-1.1068 1.0293,-1.8183 0.9973,-1.4231 2.4207,-3.2731 3.0586,-5.8184 0.6376,-2.544 0.484,-5.7152 0.4161,-8.4824 -0.034,-1.3836 -0.0474,-2.6658 0.0625,-3.7031 0.1098,-1.0374 0.3528,-1.8158 0.75,-2.2129 1.8195,-1.8195 4.8183,-2.7559 7.8242,-2.7559 z" id="rtid-path1003-6-2-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="sscccccccccccsssccccsccccsscsccsccccccsccccssccccccs" ns1:connector-curvature="0" />
- <ns0:path d="m 76.9355,34.4082 c -0.5862,0.1347 -1.135,0.6559 -1.7167,1.3496 -0.5818,0.6937 -1.181,1.5754 -1.7579,2.4805 -0.5768,0.9051 -1.1312,1.8324 -1.6152,2.6055 -0.484,0.773 -0.91,1.4002 -1.1738,1.664 -1.9353,1.9353 -3.1344,4.7544 -3.3789,7.5801 -0.2445,2.8257 0.4716,5.6728 2.4218,7.623 1.0115,1.0115 2.9079,2.009 4.959,2.7754 2.0511,0.7665 4.2421,1.2906 5.8516,1.2754 1.5455,-0.0146 3.8688,-0.4051 6.0586,-1.0254 2.1898,-0.6203 4.2328,-1.4476 5.2363,-2.4511 1.2184,-1.2184 1.8323,-3.1061 2.0918,-5.1426 0.2595,-2.0366 0.1603,-4.2301 -0.1035,-6.086 -0.1813,-1.275 -1.2404,-2.687 -2.418,-4 -1.1776,-1.313 -2.4923,-2.5138 -3.2129,-3.2343 -1.2865,-1.2866 -3.0654,-2.8615 -5.0351,-4.0098 -1.9698,-1.1483 -4.1434,-1.8786 -6.2071,-1.4043 z m 0.1114,0.4863 c 1.8782,-0.4316 3.9331,0.2358 5.8437,1.3496 1.9107,1.1139 3.6658,2.6658 4.9336,3.9336 0.7391,0.7391 2.0383,1.9251 3.1934,3.2129 1.155,1.2879 2.1463,2.6913 2.2949,3.7364 0.2585,1.8187 0.3553,3.9775 0.1035,5.9531 -0.2517,1.9756 -0.8558,3.7582 -1.9492,4.8515 -0.8533,0.8533 -2.8666,1.7144 -5.0195,2.3243 -2.153,0.6098 -4.4611,0.992 -5.9258,1.0058 -1.4943,0.0141 -3.6611,-0.4927 -5.6719,-1.2441 -2.0108,-0.7514 -3.8782,-1.7571 -4.7812,-2.6602 -1.8211,-1.8211 -2.5122,-4.5131 -2.2774,-7.2265 0.2348,-2.7135 1.4003,-5.4335 3.2363,-7.2696 0.3447,-0.3446 0.754,-0.9721 1.2422,-1.7519 0.4883,-0.7798 1.0416,-1.7045 1.6133,-2.6016 0.5717,-0.897 1.163,-1.7669 1.7188,-2.4297 0.5557,-0.6627 1.0925,-1.1025 1.4453,-1.1836 z" id="rtid-path1003-7-7-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsssccssccscccscsccccccsccccccs" ns1:connector-curvature="0" />
- <ns0:path d="m 118.316,39.1035 c -0.663,0.0294 -1.345,0.268 -2.052,0.5645 -1.415,0.593 -2.942,1.4223 -4.487,1.4843 -1.327,0.0534 -2.811,-0.7077 -4.195,-1.2988 -0.692,-0.2955 -1.359,-0.5488 -1.998,-0.6113 -0.639,-0.0626 -1.267,0.0855 -1.762,0.5801 -1.947,1.9471 -3.9833,5.9783 -5.0954,10.0293 -0.5561,2.0254 -0.8776,4.0538 -0.8184,5.832 0.0592,1.7782 0.4978,3.3201 1.5059,4.3281 1.0129,1.0126 2.8259,1.6664 5.0409,2.0703 2.215,0.404 4.837,0.5437 7.459,0.4473 2.622,-0.0964 5.242,-0.4298 7.455,-0.9785 2.213,-0.5488 4.019,-1.3001 5.026,-2.3067 1.395,-1.3951 1.861,-4.3015 1.765,-7.4804 -0.096,-3.1789 -0.787,-6.6333 -1.9,-9.1114 -0.536,-1.1915 -1.336,-1.6444 -2.094,-1.9101 -0.758,-0.2657 -1.452,-0.3835 -1.988,-0.9199 -0.548,-0.5478 -1.198,-0.7482 -1.862,-0.7188 z m 0.022,0.5 c 0.556,-0.0247 1.028,0.1179 1.484,0.5742 0.661,0.6607 1.474,0.7885 2.178,1.0352 0.704,0.2467 1.322,0.5722 1.805,1.6445 1.073,2.3894 1.761,5.805 1.855,8.9219 0.094,3.1169 -0.44,5.9324 -1.619,7.1113 -0.879,0.8791 -2.622,1.6379 -4.791,2.1758 -2.169,0.5379 -4.763,0.8676 -7.355,0.9629 -2.592,0.0953 -5.183,-0.0444 -7.35,-0.4395 -2.167,-0.395 -3.904,-1.0585 -4.7774,-1.9316 -0.8776,-0.8776 -1.3026,-2.2871 -1.3594,-3.9922 -0.0568,-1.7051 0.2524,-3.6913 0.7988,-5.6816 1.093,-3.9808 3.147,-7.9826 4.971,-9.8067 0.387,-0.3868 0.817,-0.4903 1.357,-0.4375 0.54,0.0529 1.174,0.2827 1.852,0.5723 1.355,0.5791 2.884,1.3992 4.41,1.3379 1.706,-0.0686 3.283,-0.9444 4.66,-1.5215 0.688,-0.2886 1.324,-0.5007 1.881,-0.5254 z" id="rtid-path1003-6-5-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccsccsccscsccccscscssccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 15.2637,1.67383 C 14.2081,1.80213 13.2884,2.16673 12.6172,2.83789 12.4529,3.00221 12.3763,3.22155 12.2695,3.53711 12.1627,3.85267 12.0507,4.25596 11.9297,4.72852 11.6876,5.67363 11.4114,6.89174 11.0859,8.1875 10.4351,10.779 9.57725,13.6857 8.5,15.2344 7.53403,16.623 6.35844,16.7546 5.32227,16.6836 4.80418,16.6481 4.33355,16.5523 3.94727,16.5254 3.75413,16.5119 3.57882,16.5114 3.4082,16.5742 c -0.17062,0.0629 -0.32551,0.2329 -0.36132,0.4297 -0.187,1.0274 0.12493,2.0229 0.70703,2.9492 0.58209,0.9263 1.43565,1.7977 2.38086,2.6211 1.8904,1.6469 4.15873,3.1138 5.33203,4.2871 1.2254,1.2255 2.0461,1.3016 3.3945,1.3496 1.3484,0.0481 3.3082,0.1035 7.1192,1.3399 1.1422,0.3706 2.2732,0.0275 3.2675,-0.5625 0.9944,-0.59 1.8764,-1.4311 2.5723,-2.127 1.1213,-1.1213 1.6301,-2.4147 1.8086,-3.8437 0.1786,-1.4291 0.0391,-2.9978 -0.1191,-4.7364 C 29.3935,17.0043 29.3913,15.498 29.2148,14.0957 29.0384,12.6934 28.6919,11.3794 27.8203,10.5078 27.2484,9.93589 27.1243,9.10195 26.9316,8.1543 26.739,7.20665 26.4596,6.15209 25.4863,5.30859 23.6822,3.74498 21.144,2.49229 18.7207,1.93359 17.5091,1.65425 16.3193,1.54552 15.2637,1.67383 Z m 0.0781,0.50195 c 0.9748,-0.11737 2.0989,-0.0253 3.2676,0.24414 2.3373,0.53889 4.8227,1.76992 6.5508,3.26758 0.8551,0.74109 1.0926,1.63889 1.2812,2.56641 0.1886,0.92751 0.311,1.89299 1.0254,2.60739 0.738,0.738 1.081,1.9388 1.252,3.2969 0.1709,1.3581 0.1735,2.8567 0.2929,4.168 0.1582,1.7375 0.29,3.2772 0.1211,4.6289 -0.1689,1.3517 -0.6256,2.5123 -1.666,3.5527 -0.6888,0.6888 -1.5472,1.5017 -2.4727,2.0508 -0.9254,0.5491 -1.8946,0.8306 -2.8593,0.5176 C 18.2796,27.8254 16.2246,27.7589 14.8789,27.7109 13.5332,27.663 12.9814,27.6689 11.8203,26.5078 10.5689,25.2564 8.31416,23.8101 6.46289,22.1973 5.53726,21.3909 4.71532,20.5441 4.17578,19.6855 3.63624,18.827 3.37951,17.9703 3.53906,17.0938 3.54898,17.0393 3.53508,17.0603 3.58203,17.043 c 0.04695,-0.0173 0.16636,-0.031 0.33008,-0.0196 0.32744,0.0229 0.8175,0.122 1.375,0.1602 1.11501,0.0764 2.55266,-0.1253 3.62305,-1.6641 1.17104,-1.6834 2.00594,-4.6042 2.66014,-7.20895 0.3271,-1.3024 0.6045,-2.525 0.8438,-3.45899 0.1196,-0.46699 0.2309,-0.86133 0.33,-1.15429 0.0992,-0.29296 0.2143,-0.49354 0.2266,-0.50586 0.5713,-0.57134 1.3963,-0.89826 2.3711,-1.01563 z" id="rtid-path1003-3-9-8" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscccscccccccccsccccccccscccsccsscccscccscscccccs" ns1:connector-curvature="0" />
- <ns0:path d="m 47.1309,2.06055 c -1.4004,0.06284 -3.6659,0.04186 -5.8067,0.22461 -2.1407,0.18275 -4.162,0.5292 -5.1445,1.51172 -1.3037,1.3037 -1.8737,3.84347 -1.9414,6.68942 -0.0677,2.846 0.392,6.0039 1.2871,8.5371 0.5305,1.5013 2.1953,2.998 3.8848,4.3301 1.6894,1.3321 3.4328,2.4992 4.0566,3.1231 1.9457,1.9457 4.9174,2.9492 7.8848,2.998 2.9673,0.0488 5.9439,-0.856 7.8925,-2.8047 1.9952,-1.9951 2.1386,-5.7542 1.3633,-9.4746 C 59.8322,13.4749 58.1249,9.76945 56.1777,7.82227 55.1701,6.81466 53.7649,5.34655 52.1914,4.14258 50.618,2.9386 48.868,1.98259 47.1309,2.06055 Z m 0.0234,0.5 c 1.5354,-0.06891 3.2029,0.80865 4.7344,1.98047 1.5314,1.17181 2.9206,2.62178 3.9355,3.63671 1.824,1.82407 3.5344,5.47887 4.293,9.11917 0.7586,3.6402 0.5496,7.2434 -1.2266,9.0195 -1.8225,1.8225 -4.6717,2.7053 -7.5312,2.6582 -2.8595,-0.047 -5.7135,-1.026 -7.5391,-2.8516 -0.7252,-0.7251 -2.4328,-1.8463 -4.1015,-3.1621 -1.6688,-1.3157 -3.2705,-2.8237 -3.7227,-4.1035 -0.8694,-2.4603 -1.324,-5.5762 -1.2578,-8.3594 0.0662,-2.7831 0.6763,-5.22907 1.7949,-6.34761 0.7662,-0.76618 2.7245,-1.18728 4.832,-1.36719 2.1075,-0.17991 4.3599,-0.15852 5.7891,-0.22265 z" id="rtid-path1003-6-56-3-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccsccccccccccccccscsc" ns1:connector-curvature="0" />
- <ns0:path d="M 79.2891,2.50195 C 77.9162,2.63796 76.464,3.58626 75.1367,4.68164 73.8095,5.77702 72.6108,7.03369 71.8223,7.82227 69.8705,9.77399 68.9219,12.8914 68.9219,16 c 0,3.1086 0.9486,6.226 2.9004,8.1777 1.0037,1.0038 3.0103,2.3617 5.2539,3.4239 2.2436,1.0621 4.7107,1.8302 6.664,1.5488 3.5488,-0.5111 6.3563,-0.9501 8.2715,-2.8652 1.9892,-1.9892 2.9497,-6.3261 2.9981,-10.6661 C 95.0581,11.2792 94.1952,6.93941 92.2031,4.94727 91.0229,3.76709 88.692,3.10714 86.2031,2.74023 83.7143,2.37333 81.0725,2.32529 79.2891,2.50195 Z M 79.3379,3 c 1.7258,-0.17096 4.3468,-0.12595 6.791,0.23438 2.4442,0.36032 4.7153,1.06102 5.7207,2.0664 1.7791,1.77912 2.7077,6.04562 2.6602,10.31252 -0.0476,4.2669 -1.0695,8.5362 -2.8516,10.3183 -1.768,1.768 -4.4437,2.2122 -7.9883,2.7227 -1.7628,0.2539 -4.1831,-0.4635 -6.3808,-1.5039 C 75.0913,26.11 73.1036,24.7481 72.1777,23.8223 70.3582,22.0027 69.4219,19.0058 69.4219,16 c 0,-3.0058 0.9363,-6.00269 2.7558,-7.82227 C 72.9749,7.3806 74.1588,6.13817 75.4551,5.06836 76.7513,3.99855 78.1648,3.11622 79.3379,3 Z" id="rtid-path1003-7-2-6-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccccccccscccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 111.805,1.86523 c -0.879,-0.03332 -1.622,0.3119 -2.239,0.85743 -0.616,0.54553 -1.12,1.28734 -1.582,2.08398 -0.922,1.59328 -1.69,3.42249 -2.627,4.35938 -0.73,0.73105 -2.719,1.68668 -4.537,2.74418 -0.9083,0.5287 -1.7799,1.0894 -2.4509,1.6972 -0.6709,0.6079 -1.1561,1.2712 -1.2226,2.0176 -0.0836,0.9382 0.2636,1.7311 0.8398,2.3828 0.5762,0.6517 1.3755,1.1811 2.2407,1.6641 1.729,0.9659 3.735,1.7684 4.746,2.7793 0.774,0.7745 1.573,2.7844 2.48,4.6093 0.454,0.9125 0.942,1.7837 1.51,2.4512 0.568,0.6675 1.232,1.1444 2.019,1.1875 0.905,0.0495 1.694,-0.3242 2.368,-0.914 0.673,-0.5899 1.249,-1.3968 1.781,-2.2637 1.064,-1.7338 1.974,-3.7244 2.937,-4.6875 0.819,-0.8188 2.748,-1.8299 4.479,-2.9688 0.865,-0.5694 1.684,-1.1759 2.307,-1.8359 0.622,-0.66 1.055,-1.3858 1.087,-2.1836 0.071,-1.7354 -1.017,-3.0273 -2.324,-4.1074 -1.306,-1.0801 -2.857,-1.99006 -3.824,-2.95705 -0.855,-0.85532 -2.103,-2.54631 -3.492,-4.03711 -1.39,-1.4908 -2.923,-2.81926 -4.496,-2.87891 z m -0.018,0.5 c 1.292,0.04898 2.784,1.25716 4.147,2.71875 1.362,1.4616 2.591,3.13621 3.505,4.05079 1.043,1.04263 2.598,1.94523 3.86,2.98823 1.261,1.0431 2.204,2.1856 2.142,3.7032 -0.025,0.6277 -0.375,1.2483 -0.951,1.8593 -0.576,0.6111 -1.368,1.2025 -2.219,1.7618 -1.7,1.1186 -3.613,2.0902 -4.556,3.0332 -1.089,1.0893 -1.97,3.0852 -3.01,4.7793 -0.52,0.847 -1.074,1.6151 -1.684,2.1484 -0.609,0.5333 -1.257,0.8323 -2.011,0.791 -0.602,-0.0329 -1.146,-0.4008 -1.666,-1.0117 -0.52,-0.6109 -0.998,-1.4523 -1.444,-2.3496 -0.892,-1.7946 -1.629,-3.7959 -2.574,-4.7402 -1.145,-1.145 -3.169,-1.9218 -4.855,-2.8633 -0.8433,-0.4708 -1.5977,-0.9776 -2.1097,-1.5567 -0.5119,-0.579 -0.7877,-1.212 -0.7168,-2.0078 0.0493,-0.5529 0.4362,-1.1257 1.0606,-1.6914 0.6244,-0.5656 1.4719,-1.1157 2.3669,-1.6367 1.791,-1.0419 3.755,-1.9379 4.639,-2.82227 1.064,-1.06433 1.807,-2.91202 2.705,-4.46289 0.449,-0.77543 0.934,-1.47356 1.482,-1.95898 0.549,-0.48542 1.148,-0.76051 1.889,-0.73243 z" id="rtid-path1003-6-5-9-0-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccscccsccsccccccccaccccccccccssccccccccca" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ style="display:none"
+ inkscape:groupmode="layer"
+ inkscape:label="Models">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ style="display:inline"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1629)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ style="display:inline"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <path
+ d="m 15.1113,101.881 c -1.4246,0.049 -2.7312,0.007 -3.9472,0.215 -1.21609,0.208 -2.34527,0.679 -3.34574,1.732 -0.96757,1.018 -2.1809,1.702 -3.18359,2.518 -1.00269,0.815 -1.79911,1.804 -1.80079,3.351 -0.00174,1.611 0.76378,3.718 1.76172,5.69 0.99794,1.971 2.22754,3.792 3.22657,4.791 0.55931,0.559 1.07965,0.787 1.59961,0.843 0.51995,0.056 1.01882,-0.038 1.62302,-0.07 1.2084,-0.064 2.8847,0.08 5.9766,2.043 1.223,0.777 2.637,0.459 3.9004,-0.23 1.2634,-0.69 2.4251,-1.756 3.2558,-2.586 2.3537,-2.354 4.4817,-7.065 3.9629,-10.809 -0.3442,-2.484 -2.5893,-3.946 -3.9511,-5.531 -0.997,-1.161 -2.4786,-1.671 -4.0918,-1.883 -1.6133,-0.211 -3.3741,-0.129 -4.9864,-0.074 z m 0.0176,0.498 c 1.6165,-0.055 3.3547,-0.133 4.9043,0.07 1.5496,0.203 2.8932,0.683 3.7773,1.713 1.4342,1.669 3.5275,3.064 3.834,5.276 0.4846,3.496 -1.5997,8.164 -3.8203,10.384 -0.817,0.817 -1.9555,1.857 -3.1406,2.504 -1.1851,0.647 -2.3694,0.897 -3.3945,0.246 -3.153,-2.002 -4.9924,-2.188 -6.2696,-2.121 -0.6385,0.034 -1.12488,0.12 -1.54489,0.074 -0.42001,-0.045 -0.79435,-0.2 -1.29688,-0.703 -0.92795,-0.928 -2.15798,-2.729 -3.13671,-4.662 -0.97874,-1.933 -1.7086,-4.013 -1.70704,-5.461 0.0015,-1.381 0.6632,-2.189 1.61719,-2.965 0.95399,-0.775 2.19758,-1.476 3.23047,-2.562 0.924,-0.972 1.92096,-1.388 3.06636,-1.584 1.1455,-0.196 2.437,-0.16 3.8809,-0.209 z"
+ id="rtid-path1003-61"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccsccccccccscccsccccccccsc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 48.0039,98.5547 c -1.6832,-0.0458 -3.2401,0.7996 -4.6172,1.8813 -1.3771,1.081 -2.5872,2.409 -3.5644,3.386 -1.9221,1.922 -3.3266,4.51 -3.7774,7.117 -0.4508,2.608 0.0661,5.254 2.0156,7.204 2.6373,2.636 7.8949,3.659 11.9102,2.757 0.8502,-0.19 2.3921,0.069 3.8535,0.248 0.7307,0.09 1.445,0.158 2.0742,0.122 0.6293,-0.037 1.1896,-0.174 1.5664,-0.551 0.5375,-0.538 0.7936,-1.213 0.8692,-1.942 0.0756,-0.728 -0.0211,-1.516 -0.1778,-2.332 -0.3133,-1.631 -0.8719,-3.385 -0.914,-4.925 -0.0391,-1.433 0.1636,-2.859 0.1504,-4.178 -0.0132,-1.319 -0.2544,-2.557 -1.2149,-3.518 -0.9007,-0.901 -2.1797,-2.189 -3.6093,-3.267 -1.4297,-1.0785 -3.0125,-1.9601 -4.5645,-2.0023 z m -0.0137,0.5 c 1.3683,0.0372 2.8863,0.8514 4.2774,1.9003 1.391,1.049 2.6548,2.319 3.5566,3.221 v 0.002 c 0.8407,0.84 1.0557,1.906 1.0684,3.17 0.0126,1.263 -0.191,2.698 -0.1504,4.185 0.045,1.649 0.6191,3.42 0.9238,5.006 0.1524,0.793 0.2372,1.538 0.1699,2.186 -0.0672,0.647 -0.2774,1.193 -0.7246,1.64 -0.2385,0.239 -0.6711,0.371 -1.2422,0.405 -0.571,0.033 -1.2638,-0.029 -1.9843,-0.118 -1.4412,-0.177 -2.9704,-0.476 -4.0235,-0.24 -3.8417,0.863 -9.0037,-0.18 -11.4472,-2.623 -1.8217,-1.821 -2.3074,-4.274 -1.877,-6.764 0.4304,-2.489 1.7915,-4.998 3.6406,-6.847 0.9915,-0.992 2.1856,-2.304 3.5176,-3.35 1.332,-1.0457 2.7887,-1.8143 4.2949,-1.7733 z"
+ id="rtid-path1003-6-8"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccccccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 80.8379,99.3398 c -2.1987,0.0307 -4.3115,0.2496 -5.4707,0.3457 -0.6924,0.0577 -1.1906,0.2533 -1.5488,0.5545 -0.3586,0.302 -0.5668,0.695 -0.7305,1.104 -0.3274,0.818 -0.5044,1.717 -1.2656,2.478 v 0.002 c -0.4142,0.414 -1.1938,0.855 -1.9532,1.371 -0.7594,0.517 -1.5136,1.118 -1.8593,1.948 -0.9924,2.382 -1.1865,5.337 -0.7793,8.068 0.4071,2.731 1.411,5.241 2.8984,6.728 1.9906,1.991 6.4488,3.035 10.9141,3.172 4.4652,0.137 8.9308,-0.63 10.9297,-2.629 0.2239,-0.223 0.3199,-0.534 0.3359,-0.869 0.016,-0.335 -0.0417,-0.709 -0.1426,-1.117 -0.2018,-0.815 -0.5818,-1.771 -0.9707,-2.764 -0.3889,-0.992 -0.7868,-2.02 -1.0273,-2.949 -0.2405,-0.929 -0.3138,-1.755 -0.1094,-2.332 0.325,-0.917 1.0514,-1.621 1.7012,-2.308 0.3248,-0.344 0.6306,-0.683 0.8457,-1.059 0.2151,-0.376 0.3372,-0.799 0.2656,-1.26 -0.1703,-1.096 -0.1581,-2.33 -0.2813,-3.484 -0.1231,-1.155 -0.385,-2.25 -1.1601,-3.026 -0.4533,-0.453 -1.2429,-0.541 -2.0996,-0.66 -0.8567,-0.118 -1.7871,-0.231 -2.4453,-0.517 v -0.002 c -1.5656,-0.6804 -3.8483,-0.8258 -6.0469,-0.7952 z m 0.0059,0.5 c 2.17,-0.0302 4.4188,0.1357 5.8417,0.7542 0.767,0.333 1.7277,0.439 2.5762,0.556 0.8486,0.118 1.5777,0.281 1.8145,0.518 0.6466,0.647 0.8969,1.612 1.0156,2.725 0.1187,1.112 0.1057,2.355 0.2852,3.509 0.052,0.335 -0.0279,0.624 -0.2051,0.934 -0.1772,0.309 -0.457,0.626 -0.7754,0.963 -0.6368,0.673 -1.4332,1.427 -1.8086,2.486 -0.2639,0.745 -0.1559,1.651 0.0957,2.623 0.2515,0.972 0.6576,2.013 1.0469,3.006 0.3892,0.993 0.7608,1.942 0.9492,2.703 0.0942,0.381 0.1412,0.713 0.1289,0.971 -0.0123,0.258 -0.0774,0.429 -0.1895,0.541 -1.7723,1.772 -6.1661,2.617 -10.5605,2.482 -4.3944,-0.134 -8.795,-1.244 -10.5762,-3.025 -1.3661,-1.366 -2.3619,-3.794 -2.7578,-6.449 -0.3958,-2.655 -0.1965,-5.535 0.7481,-7.803 0.2772,-0.665 0.9428,-1.225 1.6777,-1.725 0.7349,-0.499 1.5238,-0.929 2.0273,-1.433 0.8716,-0.873 1.0744,-1.895 1.375,-2.647 0.1504,-0.376 0.3198,-0.68 0.5879,-0.906 0.2682,-0.226 0.6477,-0.388 1.2696,-0.439 1.1712,-0.098 3.2635,-0.3139 5.4336,-0.3442 z"
+ id="rtid-path1003-7-79"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscsccsccscccccccccccccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 105.729,97.5391 c -1.794,0.2385 -3.07,0.7874 -3.827,1.5175 -0.756,0.7302 -0.965,1.6794 -0.57,2.5394 0.35,0.762 0.153,1.73 -0.242,2.859 -0.395,1.129 -0.973,2.393 -1.2677,3.729 -0.5182,2.346 -1.043,4.809 -1.1328,7.011 -0.0899,2.202 0.2529,4.169 1.5405,5.457 0.081,0.081 0.218,0.123 0.325,0.11 0.106,-0.014 0.186,-0.058 0.261,-0.11 0.15,-0.102 0.291,-0.25 0.457,-0.435 0.333,-0.371 0.749,-0.893 1.258,-1.422 1.018,-1.059 2.38,-2.123 4.084,-2.053 0.258,0.011 0.535,0.158 0.832,0.424 0.298,0.266 0.605,0.642 0.92,1.049 0.631,0.814 1.284,1.759 2.115,2.228 1.036,0.585 2.215,0.712 3.286,0.739 1.071,0.026 2.052,-0.04 2.64,0.089 3.11,0.682 4.081,1.32 4.531,1.791 0.226,0.236 0.332,0.454 0.545,0.668 0.214,0.215 0.528,0.376 1.057,0.45 0.322,0.044 0.627,-0.059 0.781,-0.291 0.154,-0.233 0.173,-0.516 0.158,-0.844 -0.029,-0.656 -0.235,-1.534 -0.4,-2.545 -0.329,-2.021 -0.499,-4.508 1.086,-6.428 1.438,-1.741 1.826,-4.247 1.641,-6.545 -0.186,-2.298 -0.925,-4.392 -1.92,-5.388 -0.332,-0.332 -0.843,-0.463 -1.457,-0.534 -0.615,-0.07 -1.346,-0.068 -2.135,-0.05 -1.579,0.035 -3.394,0.133 -4.883,-0.114 -1.697,-0.281 -3.401,-1.325 -5.025,-2.275 -1.625,-0.9496 -3.175,-1.8243 -4.658,-1.6269 z m 0.066,0.4961 c 1.237,-0.1646 2.723,0.6174 4.34,1.5625 1.616,0.9453 3.356,2.0333 5.195,2.3383 1.574,0.26 3.41,0.154 4.977,0.119 0.783,-0.018 1.498,-0.018 2.066,0.047 0.568,0.065 0.975,0.205 1.16,0.39 0.826,0.827 1.597,2.864 1.776,5.076 0.178,2.212 -0.213,4.594 -1.528,6.186 -1.731,2.096 -1.529,4.768 -1.193,6.826 0.168,1.029 0.367,1.921 0.392,2.488 0.013,0.284 -0.027,0.475 -0.074,0.545 -0.047,0.071 -0.081,0.1 -0.295,0.071 h -0.002 c -0.466,-0.065 -0.63,-0.164 -0.771,-0.305 -0.141,-0.142 -0.265,-0.376 -0.537,-0.66 -0.544,-0.569 -1.635,-1.245 -4.787,-1.936 -0.726,-0.159 -1.695,-0.076 -2.735,-0.101 -1.039,-0.026 -2.13,-0.155 -3.05,-0.674 -0.671,-0.378 -1.325,-1.271 -1.965,-2.098 -0.321,-0.413 -0.64,-0.81 -0.983,-1.117 -0.342,-0.307 -0.717,-0.533 -1.144,-0.551 -1.921,-0.079 -3.411,1.107 -4.467,2.205 -0.528,0.55 -0.955,1.085 -1.27,1.436 -0.152,0.169 -0.276,0.29 -0.353,0.346 -1.0947,-1.141 -1.4434,-2.911 -1.3575,-5.014 0.0872,-2.138 0.6034,-4.58 1.1215,-6.924 0.279,-1.265 0.845,-2.508 1.251,-3.67 0.407,-1.162 0.669,-2.268 0.225,-3.234 -0.314,-0.684 -0.181,-1.351 0.461,-1.971 0.642,-0.6196 1.823,-1.1516 3.547,-1.3808 z"
+ id="rtid-path1003-6-5-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccccccccccccccccccccccccccscccsccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 6.69141,66.3984 c -0.91464,-0.0193 -1.72132,0.1432 -2.25782,0.6797 -1.00232,1.0024 -1.74342,2.7288 -2.27148,4.8203 -0.52806,2.0915 -0.83216,4.5501 -0.90039,7.0098 -0.06823,2.4598 0.09975,4.9203 0.52539,7.0137 0.42564,2.0934 1.0989,3.8235 2.10547,4.8301 0.18936,0.1893 0.48193,0.3345 0.875,0.5156 0.39307,0.181 0.8761,0.3787 1.38672,0.584 1.02124,0.4104 2.15826,0.8557 2.86718,1.2402 1.44892,0.7858 3.17232,0.2348 4.78122,-0.5977 1.609,-0.8325 3.155,-1.9723 4.2481,-2.4941 2.378,-1.1353 4.0445,-0.5817 5.4922,-0.0078 0.7238,0.287 1.3847,0.5881 2.0527,0.668 0.668,0.0798 1.3483,-0.0983 1.9707,-0.7207 0.5682,-0.5682 0.644,-1.4332 0.4902,-2.3946 -0.1537,-0.9614 -0.5397,-2.0553 -0.9843,-3.1836 -0.8892,-2.2565 -2.0028,-4.6693 -2.0293,-6.1269 -0.0264,-1.4468 0.2634,-3.0541 0.3359,-4.5469 0.0725,-1.4928 -0.0757,-2.9077 -1.0664,-3.8984 C 23.2969,68.7735 21.8731,68.3549 20.3359,68.1855 18.7987,68.0162 17.1328,68.095 15.5879,68.1094 14.1667,68.1226 11.877,67.3919 9.72656,66.877 8.65134,66.6195 7.60604,66.4178 6.69141,66.3984 Z m -0.00977,0.5 c 0.84779,0.0179 1.86644,0.2107 2.92774,0.4649 2.12262,0.5082 4.39462,1.2609 5.98442,1.2461 1.558,-0.0145 3.2065,-0.0909 4.6874,0.0722 1.481,0.1632 2.7794,0.5626 3.6778,1.461 0.8393,0.8393 0.992,2.0773 0.9219,3.5215 -0.0702,1.4441 -0.3656,3.0588 -0.3379,4.5781 0.0307,1.6887 1.1842,4.067 2.0644,6.3008 0.4401,1.1168 0.8148,2.1922 0.9571,3.082 0.1422,0.8898 0.0508,1.5585 -0.3516,1.9609 -0.5349,0.535 -1.0021,0.6445 -1.5567,0.5782 -0.5545,-0.0664 -1.1918,-0.345 -1.9277,-0.6368 -1.4717,-0.5834 -3.3718,-1.1819 -5.8926,0.0215 -1.1799,0.5633 -2.7031,1.6955 -4.2617,2.502 C 12.0156,92.8572 10.4724,93.31 9.25977,92.6523 8.49764,92.239 7.35966,91.7978 6.3418,91.3887 5.83287,91.1841 5.35539,90.9881 4.97852,90.8145 4.60164,90.6408 4.31598,90.4683 4.24609,90.3984 3.36703,89.5194 2.69284,87.8658 2.27734,85.8223 1.86185,83.7787 1.69438,81.3495 1.76172,78.9219 1.82906,76.4942 2.13005,74.0669 2.64648,72.0215 3.16292,69.976 3.90381,68.315 4.78711,67.4316 5.17923,67.0395 5.83385,66.8805 6.68164,66.8984 Z"
+ id="rtid-path1003-3-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscsccccccccscccssccccscccscccccccccccccccccs"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 48,68.9219 c -3.1086,0 -6.2261,0.9487 -8.1777,2.9004 -1.9517,1.9516 -2.9004,5.0691 -2.9004,8.1777 0,3.1086 0.9487,6.2261 2.9004,8.1777 1.9516,1.9517 5.0691,2.9004 8.1777,2.9004 3.1086,0 6.2261,-0.9487 8.1777,-2.9004 1.9517,-1.9516 2.9004,-5.0691 2.9004,-8.1777 0,-3.1086 -0.9487,-6.2261 -2.9004,-8.1777 C 54.2261,69.8706 51.1086,68.9219 48,68.9219 Z m 0,0.5 c 3.0058,0 6.0047,0.9363 7.8242,2.7558 1.8195,1.8196 2.7539,4.8165 2.7539,7.8223 0,3.0058 -0.9344,6.0027 -2.7539,7.8223 -1.8195,1.8195 -4.8184,2.7558 -7.8242,2.7558 -3.0058,0 -6.0027,-0.9363 -7.8223,-2.7558 C 38.3582,86.0027 37.4219,83.0058 37.4219,80 c 0,-3.0058 0.9363,-6.0027 2.7558,-7.8223 1.8196,-1.8195 4.8165,-2.7558 7.8223,-2.7558 z"
+ id="rtid-path1003-6-56-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="scscscscsscscscscs"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 83.4004,68.3203 c -2.4618,-0.0757 -4.8324,0.064 -5.8848,0.2227 -0.6457,0.0973 -1.11,0.4908 -1.4277,0.998 -0.3178,0.5072 -0.5133,1.1307 -0.6875,1.7695 -0.3484,1.2777 -0.6389,2.6052 -1.3184,3.1368 -0.905,0.7081 -1.4324,1.3849 -1.705,2.0488 -0.2727,0.6639 -0.2827,1.3043 -0.1875,1.9043 0.1903,1.2 0.7469,2.26 0.5976,3.3223 -0.2513,1.7883 -0.9469,3.0077 -1.0879,4.3515 -0.141,1.3439 0.3425,2.7536 2.3613,4.7481 0.3356,0.3315 0.7396,0.4381 1.1055,0.3672 0.3659,-0.071 0.6927,-0.2815 1.0137,-0.5196 0.6419,-0.476 1.2829,-1.0677 1.8652,-1.164 0.1674,-0.0277 0.3376,0.0183 0.5391,0.1347 0.2015,0.1164 0.4213,0.3016 0.6523,0.5078 0.4621,0.4125 0.9629,0.9211 1.6133,1.0743 0.6059,0.1427 1.2146,-0.1166 1.7988,-0.4082 0.5843,-0.2917 1.1607,-0.6334 1.6485,-0.7657 0.6962,-0.1887 1.9113,0.2511 3.0703,0.6582 0.5795,0.2036 1.1473,0.3923 1.668,0.459 0.5206,0.0667 1.0268,0.0064 1.3789,-0.3457 0.745,-0.745 0.8624,-1.7477 0.9004,-2.7715 0.0379,-1.0238 0.0032,-2.0957 0.3496,-3.082 0.3609,-1.0276 1.1256,-2.0465 1.7382,-3.0801 0.6127,-1.0336 1.0859,-2.1199 0.7344,-3.2656 -0.259,-0.8442 -0.9496,-1.6173 -1.6894,-2.3223 -0.7398,-0.7049 -1.541,-1.3398 -2.0332,-1.832 -0.1878,-0.1878 -0.2209,-0.4525 -0.1621,-0.8438 0.0587,-0.3912 0.2171,-0.8681 0.3476,-1.3632 0.1305,-0.4952 0.2364,-1.0141 0.1543,-1.5176 -0.082,-0.5036 -0.3813,-0.9825 -0.9707,-1.3067 -1.3982,-0.7688 -3.9211,-1.0395 -6.3828,-1.1152 z m -0.0156,0.5 c 2.4324,0.0748 4.9477,0.3891 6.1582,1.0547 0.4793,0.2636 0.6552,0.5698 0.7168,0.9473 0.0615,0.3775 -0.0198,0.8371 -0.1446,1.3105 -0.1247,0.4734 -0.2884,0.957 -0.3574,1.416 -0.069,0.459 -0.0356,0.9332 0.3027,1.2715 0.5306,0.5306 1.3256,1.1582 2.043,1.8418 0.7174,0.6836 1.3457,1.4244 1.5547,2.1055 0.2885,0.9402 -0.0938,1.867 -0.6855,2.8652 -0.5917,0.9983 -1.3805,2.0324 -1.7793,3.168 -0.3867,1.1008 -0.342,2.2332 -0.3789,3.2304 -0.037,0.9973 -0.1493,1.831 -0.754,2.4356 -0.2031,0.2031 -0.5145,0.2603 -0.9609,0.2031 -0.4464,-0.0572 -0.9957,-0.2344 -1.5684,-0.4355 -1.1452,-0.4024 -2.3777,-0.9357 -3.3652,-0.668 -0.5948,0.1613 -1.1832,0.5218 -1.7422,0.8008 -0.559,0.279 -1.0703,0.4607 -1.459,0.3691 -0.4522,-0.1065 -0.9235,-0.5387 -1.3964,-0.9609 -0.2365,-0.2111 -0.4738,-0.4178 -0.7344,-0.5684 -0.2606,-0.1505 -0.5575,-0.2471 -0.8711,-0.1953 -0.8218,0.136 -1.4819,0.8108 -2.082,1.2559 -0.3001,0.2225 -0.5805,0.387 -0.8106,0.4316 -0.23,0.0446 -0.4126,0.0083 -0.6582,-0.2344 -1.9658,-1.9421 -2.3405,-3.14 -2.2148,-4.3378 0.1256,-1.1978 0.8217,-2.4536 1.0859,-4.334 0.1779,-1.2664 -0.4275,-2.3855 -0.5996,-3.4707 -0.0861,-0.5427 -0.0757,-1.072 0.1562,-1.6368 0.232,-0.5647 0.6932,-1.1746 1.5508,-1.8457 0.9187,-0.7188 1.1493,-2.1461 1.4903,-3.3964 0.1704,-0.6252 0.3633,-1.2098 0.6308,-1.6368 0.2675,-0.4269 0.5862,-0.6934 1.0781,-0.7675 0.9842,-0.1484 3.3625,-0.2935 5.795,-0.2188 z"
+ id="rtid-path1003-7-2-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccccscccscscccccccccssscccccsccscccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 113.588,67.0371 c -1.148,-0.0817 -2.391,0.0801 -3.629,0.4199 -2.476,0.6796 -4.951,2.0796 -6.662,3.791 -0.884,0.884 -1.332,2.3816 -1.623,3.9258 -0.291,1.5442 -0.41,3.1446 -0.549,4.209 -0.187,1.4395 -0.213,2.4813 0.398,3.5918 0.612,1.1106 1.817,2.2644 4.045,4.0684 1.768,1.4305 3.228,1.4104 4.42,1.041 1.193,-0.3694 2.134,-0.9999 2.996,-0.8926 1.179,0.1467 2.382,0.918 3.58,1.4199 0.6,0.251 1.204,0.4352 1.819,0.4082 0.614,-0.0269 1.231,-0.2778 1.795,-0.8418 0.504,-0.5042 1.637,-1.1289 2.742,-1.875 1.105,-0.746 2.204,-1.6285 2.65,-2.791 0.999,-2.6013 1.067,-5.7317 0.557,-8.5547 -0.51,-2.8229 -1.59,-5.3395 -2.979,-6.7285 -0.161,-0.1615 -0.315,-0.1587 -0.527,-0.1855 -0.212,-0.0269 -0.475,-0.0388 -0.777,-0.043 -0.605,-0.0083 -1.365,0.0175 -2.123,0.0469 -0.758,0.0294 -1.514,0.0615 -2.1,0.0683 -0.293,0.0034 -0.545,9e-4 -0.726,-0.0117 -0.091,-0.0063 -0.165,-0.0161 -0.213,-0.0254 -0.048,-0.0092 -0.073,-0.0295 -0.036,-0.0019 -0.857,-0.6328 -1.91,-0.9574 -3.058,-1.0391 z m -0.045,0.502 c 1.075,0.0758 2.042,0.3751 2.807,0.9394 h 0.002 c 0.088,0.0654 0.156,0.0764 0.236,0.0918 0.08,0.0154 0.168,0.0241 0.271,0.0313 0.207,0.0142 0.468,0.0171 0.768,0.0136 0.6,-0.007 1.357,-0.039 2.113,-0.0683 0.756,-0.0294 1.511,-0.0549 2.096,-0.0469 0.292,0.004 0.544,0.0164 0.723,0.0391 0.179,0.0226 0.292,0.0987 0.236,0.0429 1.264,1.2643 2.343,3.7138 2.84,6.4649 0.497,2.751 0.422,5.8028 -0.531,8.2851 -0.377,0.9796 -1.387,1.8266 -2.465,2.5547 -1.079,0.7281 -2.203,1.3218 -2.817,1.9356 -0.491,0.4913 -0.962,0.6753 -1.461,0.6972 -0.499,0.0219 -1.035,-0.1314 -1.603,-0.3691 -1.136,-0.4755 -2.369,-1.2878 -3.713,-1.4551 -1.122,-0.1396 -2.107,0.572 -3.205,0.9121 -1.098,0.3401 -2.291,0.3974 -3.957,-0.9512 -2.216,-1.7932 -3.373,-2.9286 -3.92,-3.9218 -0.547,-0.9933 -0.528,-1.8709 -0.344,-3.2871 0.142,-1.091 0.263,-2.6749 0.547,-4.1817 0.284,-1.5068 0.746,-2.926 1.484,-3.664 1.637,-1.6369 4.051,-3.0067 6.44,-3.6621 1.194,-0.3278 2.378,-0.4763 3.453,-0.4004 z"
+ id="rtid-path1003-6-5-9-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="sscsccccccccccccccsscccscccscsccccccccsccscccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 11.8145,35.0859 c -0.6568,0.0643 -1.2629,0.2598 -1.8028,0.6211 -1.07981,0.7227 -1.85024,2.0797 -2.25779,4.2461 -0.43908,2.334 -1.71349,5.6036 -2.7793,8.6133 -0.5329,1.5049 -1.0123,2.947 -1.31055,4.1895 -0.29824,1.2424 -0.42884,2.2808 -0.19531,3.0351 0.09812,0.3169 0.30487,0.5561 0.56836,0.6953 0.26349,0.1393 0.57208,0.1895 0.90625,0.1934 0.66833,0.0077 1.46035,-0.1671 2.27734,-0.3496 0.817,-0.1826 1.65516,-0.376 2.3711,-0.4199 0.7159,-0.044 1.2819,0.0631 1.6211,0.4023 0.7622,0.7623 1.7927,2.0455 2.9101,3.2598 1.1174,1.2142 2.3156,2.3658 3.502,2.8847 1.6391,0.7169 3.2451,0.6232 4.6992,0.0664 1.4542,-0.5567 2.7664,-1.5651 3.8867,-2.6855 1.9708,-1.9707 3.2758,-6.0496 3.2071,-10.1133 C 29.3492,45.6609 27.8652,41.5781 24.1074,39.7754 20.4728,38.0318 16.8783,35.8928 13.918,35.25 13.1779,35.0893 12.4712,35.0217 11.8145,35.0859 Z m 0.0566,0.4961 c 0.5885,-0.0565 1.2376,0.0035 1.9414,0.1563 2.8152,0.6112 6.4186,2.7298 10.0801,4.4863 3.5383,1.6974 4.9586,5.5592 5.0254,9.5078 0.0668,3.9487 -1.2601,7.9515 -3.0606,9.752 -1.0882,1.0882 -2.3541,2.052 -3.7129,2.5722 C 20.7857,62.5769 19.3423,62.6631 17.8262,62 16.78,61.5424 15.5923,60.43 14.4902,59.2324 13.3882,58.0348 12.3668,56.7594 11.5664,55.959 11.0731,55.4657 10.342,55.3642 9.5625,55.4121 8.78295,55.46 7.92598,55.6598 7.11133,55.8418 6.29668,56.0238 5.52189,56.1863 4.94922,56.1797 4.66288,56.1764 4.43206,56.1298 4.27148,56.0449 4.11091,55.96 4.00898,55.8482 3.94531,55.6426 3.76956,55.0749 3.86017,54.0821 4.15039,52.873 4.44061,51.664 4.91635,50.2336 5.44727,48.7344 6.5091,45.7359 7.79042,42.4691 8.24609,40.0469 8.63959,37.9552 9.3587,36.7457 10.2891,36.123 c 0.4651,-0.3113 0.9935,-0.4844 1.582,-0.541 z"
+ id="rtid-path1003-1-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscccccccccscccscccsssscccscssccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 48.5762,32.8945 c -3.1087,0 -6.2261,0.9507 -8.1778,2.9024 -0.5455,0.5455 -0.7798,1.4298 -0.8945,2.5136 -0.1147,1.0839 -0.0985,2.3818 -0.0644,3.7696 0.0681,2.7756 0.2084,5.9185 -0.4004,8.3476 -0.6091,2.4305 -1.9743,4.2138 -2.9825,5.6524 -0.504,0.7193 -0.9241,1.349 -1.1015,1.9668 -0.1774,0.6177 -0.0643,1.2502 0.459,1.7734 0.5074,0.5074 0.9971,0.7373 1.5019,0.7578 0.5048,0.0206 0.9937,-0.1476 1.5703,-0.3515 1.1532,-0.4079 2.6817,-0.9956 5.3633,-0.8438 2.5879,0.1466 6.3598,1.0693 9.7109,1.7285 1.6756,0.3297 3.2466,0.5935 4.5333,0.6582 1.2866,0.0647 2.3085,-0.039 2.8769,-0.6074 0.1559,-0.1559 0.2308,-0.3688 0.2461,-0.5879 0.0153,-0.2191 -0.0217,-0.4537 -0.0879,-0.7109 -0.1324,-0.5144 -0.3913,-1.1243 -0.6973,-1.8262 -0.6118,-1.4038 -1.4146,-3.1657 -1.7968,-5.0723 -0.1608,-0.802 0.14,-1.5118 0.4394,-2.4296 0.2994,-0.9179 0.5726,-2.0308 0.2442,-3.5352 -0.1677,-0.7681 0.4372,-2.0048 1.1269,-3.2578 0.6897,-1.253 1.4542,-2.5107 1.3555,-3.5938 C 61.747,39.5588 61.4602,39.0614 61.0625,38.6465 60.6648,38.2315 60.155,37.8881 59.6191,37.5723 58.5475,36.9407 57.36,36.4049 56.752,35.7969 54.8003,33.8451 51.6848,32.8945 48.5762,32.8945 Z m 0,0.5 c 3.0058,0 6.0027,0.9363 7.8222,2.7559 0.7264,0.7264 1.9314,1.2433 2.9668,1.8535 0.5177,0.3051 0.9912,0.6286 1.336,0.9883 0.3447,0.3597 0.5599,0.7446 0.6015,1.2012 0.072,0.7894 -0.6025,2.0487 -1.2949,3.3066 -0.6924,1.2579 -1.414,2.525 -1.1777,3.6074 0.3056,1.3998 0.0606,2.3812 -0.2305,3.2735 -0.291,0.8922 -0.6501,1.7085 -0.4551,2.6816 0.3971,1.9805 1.2214,3.7772 1.8301,5.1738 0.3044,0.6984 0.5533,1.2991 0.6699,1.752 0.0583,0.2264 0.0818,0.4147 0.0723,0.5508 -0.0095,0.136 -0.0422,0.2121 -0.0996,0.2695 -0.3583,0.3583 -1.2595,0.5232 -2.4981,0.4609 -1.2385,-0.0623 -2.796,-0.3205 -4.4629,-0.6484 -3.3336,-0.6559 -7.0996,-1.5866 -9.7773,-1.7383 -2.7665,-0.1566 -4.4163,0.4691 -5.5586,0.8731 -0.5711,0.2019 -1.0097,0.3375 -1.3848,0.3222 -0.3751,-0.0153 -0.7165,-0.1599 -1.1679,-0.6113 -0.4198,-0.4198 -0.4751,-0.7832 -0.3321,-1.2813 0.1431,-0.498 0.5307,-1.1068 1.0293,-1.8183 0.9973,-1.4231 2.4207,-3.2731 3.0586,-5.8184 0.6376,-2.544 0.484,-5.7152 0.4161,-8.4824 -0.034,-1.3836 -0.0474,-2.6658 0.0625,-3.7031 0.1098,-1.0374 0.3528,-1.8158 0.75,-2.2129 1.8195,-1.8195 4.8183,-2.7559 7.8242,-2.7559 z"
+ id="rtid-path1003-6-2-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="sscccccccccccsssccccsccccsscsccsccccccsccccssccccccs"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 76.9355,34.4082 c -0.5862,0.1347 -1.135,0.6559 -1.7167,1.3496 -0.5818,0.6937 -1.181,1.5754 -1.7579,2.4805 -0.5768,0.9051 -1.1312,1.8324 -1.6152,2.6055 -0.484,0.773 -0.91,1.4002 -1.1738,1.664 -1.9353,1.9353 -3.1344,4.7544 -3.3789,7.5801 -0.2445,2.8257 0.4716,5.6728 2.4218,7.623 1.0115,1.0115 2.9079,2.009 4.959,2.7754 2.0511,0.7665 4.2421,1.2906 5.8516,1.2754 1.5455,-0.0146 3.8688,-0.4051 6.0586,-1.0254 2.1898,-0.6203 4.2328,-1.4476 5.2363,-2.4511 1.2184,-1.2184 1.8323,-3.1061 2.0918,-5.1426 0.2595,-2.0366 0.1603,-4.2301 -0.1035,-6.086 -0.1813,-1.275 -1.2404,-2.687 -2.418,-4 -1.1776,-1.313 -2.4923,-2.5138 -3.2129,-3.2343 -1.2865,-1.2866 -3.0654,-2.8615 -5.0351,-4.0098 -1.9698,-1.1483 -4.1434,-1.8786 -6.2071,-1.4043 z m 0.1114,0.4863 c 1.8782,-0.4316 3.9331,0.2358 5.8437,1.3496 1.9107,1.1139 3.6658,2.6658 4.9336,3.9336 0.7391,0.7391 2.0383,1.9251 3.1934,3.2129 1.155,1.2879 2.1463,2.6913 2.2949,3.7364 0.2585,1.8187 0.3553,3.9775 0.1035,5.9531 -0.2517,1.9756 -0.8558,3.7582 -1.9492,4.8515 -0.8533,0.8533 -2.8666,1.7144 -5.0195,2.3243 -2.153,0.6098 -4.4611,0.992 -5.9258,1.0058 -1.4943,0.0141 -3.6611,-0.4927 -5.6719,-1.2441 -2.0108,-0.7514 -3.8782,-1.7571 -4.7812,-2.6602 -1.8211,-1.8211 -2.5122,-4.5131 -2.2774,-7.2265 0.2348,-2.7135 1.4003,-5.4335 3.2363,-7.2696 0.3447,-0.3446 0.754,-0.9721 1.2422,-1.7519 0.4883,-0.7798 1.0416,-1.7045 1.6133,-2.6016 0.5717,-0.897 1.163,-1.7669 1.7188,-2.4297 0.5557,-0.6627 1.0925,-1.1025 1.4453,-1.1836 z"
+ id="rtid-path1003-7-7-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsssccssccscccscsccccccsccccccs"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 118.316,39.1035 c -0.663,0.0294 -1.345,0.268 -2.052,0.5645 -1.415,0.593 -2.942,1.4223 -4.487,1.4843 -1.327,0.0534 -2.811,-0.7077 -4.195,-1.2988 -0.692,-0.2955 -1.359,-0.5488 -1.998,-0.6113 -0.639,-0.0626 -1.267,0.0855 -1.762,0.5801 -1.947,1.9471 -3.9833,5.9783 -5.0954,10.0293 -0.5561,2.0254 -0.8776,4.0538 -0.8184,5.832 0.0592,1.7782 0.4978,3.3201 1.5059,4.3281 1.0129,1.0126 2.8259,1.6664 5.0409,2.0703 2.215,0.404 4.837,0.5437 7.459,0.4473 2.622,-0.0964 5.242,-0.4298 7.455,-0.9785 2.213,-0.5488 4.019,-1.3001 5.026,-2.3067 1.395,-1.3951 1.861,-4.3015 1.765,-7.4804 -0.096,-3.1789 -0.787,-6.6333 -1.9,-9.1114 -0.536,-1.1915 -1.336,-1.6444 -2.094,-1.9101 -0.758,-0.2657 -1.452,-0.3835 -1.988,-0.9199 -0.548,-0.5478 -1.198,-0.7482 -1.862,-0.7188 z m 0.022,0.5 c 0.556,-0.0247 1.028,0.1179 1.484,0.5742 0.661,0.6607 1.474,0.7885 2.178,1.0352 0.704,0.2467 1.322,0.5722 1.805,1.6445 1.073,2.3894 1.761,5.805 1.855,8.9219 0.094,3.1169 -0.44,5.9324 -1.619,7.1113 -0.879,0.8791 -2.622,1.6379 -4.791,2.1758 -2.169,0.5379 -4.763,0.8676 -7.355,0.9629 -2.592,0.0953 -5.183,-0.0444 -7.35,-0.4395 -2.167,-0.395 -3.904,-1.0585 -4.7774,-1.9316 -0.8776,-0.8776 -1.3026,-2.2871 -1.3594,-3.9922 -0.0568,-1.7051 0.2524,-3.6913 0.7988,-5.6816 1.093,-3.9808 3.147,-7.9826 4.971,-9.8067 0.387,-0.3868 0.817,-0.4903 1.357,-0.4375 0.54,0.0529 1.174,0.2827 1.852,0.5723 1.355,0.5791 2.884,1.3992 4.41,1.3379 1.706,-0.0686 3.283,-0.9444 4.66,-1.5215 0.688,-0.2886 1.324,-0.5007 1.881,-0.5254 z"
+ id="rtid-path1003-6-5-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccsccsccscsccccscscssccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 15.2637,1.67383 C 14.2081,1.80213 13.2884,2.16673 12.6172,2.83789 12.4529,3.00221 12.3763,3.22155 12.2695,3.53711 12.1627,3.85267 12.0507,4.25596 11.9297,4.72852 11.6876,5.67363 11.4114,6.89174 11.0859,8.1875 10.4351,10.779 9.57725,13.6857 8.5,15.2344 7.53403,16.623 6.35844,16.7546 5.32227,16.6836 4.80418,16.6481 4.33355,16.5523 3.94727,16.5254 3.75413,16.5119 3.57882,16.5114 3.4082,16.5742 c -0.17062,0.0629 -0.32551,0.2329 -0.36132,0.4297 -0.187,1.0274 0.12493,2.0229 0.70703,2.9492 0.58209,0.9263 1.43565,1.7977 2.38086,2.6211 1.8904,1.6469 4.15873,3.1138 5.33203,4.2871 1.2254,1.2255 2.0461,1.3016 3.3945,1.3496 1.3484,0.0481 3.3082,0.1035 7.1192,1.3399 1.1422,0.3706 2.2732,0.0275 3.2675,-0.5625 0.9944,-0.59 1.8764,-1.4311 2.5723,-2.127 1.1213,-1.1213 1.6301,-2.4147 1.8086,-3.8437 0.1786,-1.4291 0.0391,-2.9978 -0.1191,-4.7364 C 29.3935,17.0043 29.3913,15.498 29.2148,14.0957 29.0384,12.6934 28.6919,11.3794 27.8203,10.5078 27.2484,9.93589 27.1243,9.10195 26.9316,8.1543 26.739,7.20665 26.4596,6.15209 25.4863,5.30859 23.6822,3.74498 21.144,2.49229 18.7207,1.93359 17.5091,1.65425 16.3193,1.54552 15.2637,1.67383 Z m 0.0781,0.50195 c 0.9748,-0.11737 2.0989,-0.0253 3.2676,0.24414 2.3373,0.53889 4.8227,1.76992 6.5508,3.26758 0.8551,0.74109 1.0926,1.63889 1.2812,2.56641 0.1886,0.92751 0.311,1.89299 1.0254,2.60739 0.738,0.738 1.081,1.9388 1.252,3.2969 0.1709,1.3581 0.1735,2.8567 0.2929,4.168 0.1582,1.7375 0.29,3.2772 0.1211,4.6289 -0.1689,1.3517 -0.6256,2.5123 -1.666,3.5527 -0.6888,0.6888 -1.5472,1.5017 -2.4727,2.0508 -0.9254,0.5491 -1.8946,0.8306 -2.8593,0.5176 C 18.2796,27.8254 16.2246,27.7589 14.8789,27.7109 13.5332,27.663 12.9814,27.6689 11.8203,26.5078 10.5689,25.2564 8.31416,23.8101 6.46289,22.1973 5.53726,21.3909 4.71532,20.5441 4.17578,19.6855 3.63624,18.827 3.37951,17.9703 3.53906,17.0938 3.54898,17.0393 3.53508,17.0603 3.58203,17.043 c 0.04695,-0.0173 0.16636,-0.031 0.33008,-0.0196 0.32744,0.0229 0.8175,0.122 1.375,0.1602 1.11501,0.0764 2.55266,-0.1253 3.62305,-1.6641 1.17104,-1.6834 2.00594,-4.6042 2.66014,-7.20895 0.3271,-1.3024 0.6045,-2.525 0.8438,-3.45899 0.1196,-0.46699 0.2309,-0.86133 0.33,-1.15429 0.0992,-0.29296 0.2143,-0.49354 0.2266,-0.50586 0.5713,-0.57134 1.3963,-0.89826 2.3711,-1.01563 z"
+ id="rtid-path1003-3-9-8"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscccscccccccccsccccccccscccsccsscccscccscscccccs"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 47.1309,2.06055 c -1.4004,0.06284 -3.6659,0.04186 -5.8067,0.22461 -2.1407,0.18275 -4.162,0.5292 -5.1445,1.51172 -1.3037,1.3037 -1.8737,3.84347 -1.9414,6.68942 -0.0677,2.846 0.392,6.0039 1.2871,8.5371 0.5305,1.5013 2.1953,2.998 3.8848,4.3301 1.6894,1.3321 3.4328,2.4992 4.0566,3.1231 1.9457,1.9457 4.9174,2.9492 7.8848,2.998 2.9673,0.0488 5.9439,-0.856 7.8925,-2.8047 1.9952,-1.9951 2.1386,-5.7542 1.3633,-9.4746 C 59.8322,13.4749 58.1249,9.76945 56.1777,7.82227 55.1701,6.81466 53.7649,5.34655 52.1914,4.14258 50.618,2.9386 48.868,1.98259 47.1309,2.06055 Z m 0.0234,0.5 c 1.5354,-0.06891 3.2029,0.80865 4.7344,1.98047 1.5314,1.17181 2.9206,2.62178 3.9355,3.63671 1.824,1.82407 3.5344,5.47887 4.293,9.11917 0.7586,3.6402 0.5496,7.2434 -1.2266,9.0195 -1.8225,1.8225 -4.6717,2.7053 -7.5312,2.6582 -2.8595,-0.047 -5.7135,-1.026 -7.5391,-2.8516 -0.7252,-0.7251 -2.4328,-1.8463 -4.1015,-3.1621 -1.6688,-1.3157 -3.2705,-2.8237 -3.7227,-4.1035 -0.8694,-2.4603 -1.324,-5.5762 -1.2578,-8.3594 0.0662,-2.7831 0.6763,-5.22907 1.7949,-6.34761 0.7662,-0.76618 2.7245,-1.18728 4.832,-1.36719 2.1075,-0.17991 4.3599,-0.15852 5.7891,-0.22265 z"
+ id="rtid-path1003-6-56-3-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccsccccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 79.2891,2.50195 C 77.9162,2.63796 76.464,3.58626 75.1367,4.68164 73.8095,5.77702 72.6108,7.03369 71.8223,7.82227 69.8705,9.77399 68.9219,12.8914 68.9219,16 c 0,3.1086 0.9486,6.226 2.9004,8.1777 1.0037,1.0038 3.0103,2.3617 5.2539,3.4239 2.2436,1.0621 4.7107,1.8302 6.664,1.5488 3.5488,-0.5111 6.3563,-0.9501 8.2715,-2.8652 1.9892,-1.9892 2.9497,-6.3261 2.9981,-10.6661 C 95.0581,11.2792 94.1952,6.93941 92.2031,4.94727 91.0229,3.76709 88.692,3.10714 86.2031,2.74023 83.7143,2.37333 81.0725,2.32529 79.2891,2.50195 Z M 79.3379,3 c 1.7258,-0.17096 4.3468,-0.12595 6.791,0.23438 2.4442,0.36032 4.7153,1.06102 5.7207,2.0664 1.7791,1.77912 2.7077,6.04562 2.6602,10.31252 -0.0476,4.2669 -1.0695,8.5362 -2.8516,10.3183 -1.768,1.768 -4.4437,2.2122 -7.9883,2.7227 -1.7628,0.2539 -4.1831,-0.4635 -6.3808,-1.5039 C 75.0913,26.11 73.1036,24.7481 72.1777,23.8223 70.3582,22.0027 69.4219,19.0058 69.4219,16 c 0,-3.0058 0.9363,-6.00269 2.7558,-7.82227 C 72.9749,7.3806 74.1588,6.13817 75.4551,5.06836 76.7513,3.99855 78.1648,3.11622 79.3379,3 Z"
+ id="rtid-path1003-7-2-6-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccccccccscccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 111.805,1.86523 c -0.879,-0.03332 -1.622,0.3119 -2.239,0.85743 -0.616,0.54553 -1.12,1.28734 -1.582,2.08398 -0.922,1.59328 -1.69,3.42249 -2.627,4.35938 -0.73,0.73105 -2.719,1.68668 -4.537,2.74418 -0.9083,0.5287 -1.7799,1.0894 -2.4509,1.6972 -0.6709,0.6079 -1.1561,1.2712 -1.2226,2.0176 -0.0836,0.9382 0.2636,1.7311 0.8398,2.3828 0.5762,0.6517 1.3755,1.1811 2.2407,1.6641 1.729,0.9659 3.735,1.7684 4.746,2.7793 0.774,0.7745 1.573,2.7844 2.48,4.6093 0.454,0.9125 0.942,1.7837 1.51,2.4512 0.568,0.6675 1.232,1.1444 2.019,1.1875 0.905,0.0495 1.694,-0.3242 2.368,-0.914 0.673,-0.5899 1.249,-1.3968 1.781,-2.2637 1.064,-1.7338 1.974,-3.7244 2.937,-4.6875 0.819,-0.8188 2.748,-1.8299 4.479,-2.9688 0.865,-0.5694 1.684,-1.1759 2.307,-1.8359 0.622,-0.66 1.055,-1.3858 1.087,-2.1836 0.071,-1.7354 -1.017,-3.0273 -2.324,-4.1074 -1.306,-1.0801 -2.857,-1.99006 -3.824,-2.95705 -0.855,-0.85532 -2.103,-2.54631 -3.492,-4.03711 -1.39,-1.4908 -2.923,-2.81926 -4.496,-2.87891 z m -0.018,0.5 c 1.292,0.04898 2.784,1.25716 4.147,2.71875 1.362,1.4616 2.591,3.13621 3.505,4.05079 1.043,1.04263 2.598,1.94523 3.86,2.98823 1.261,1.0431 2.204,2.1856 2.142,3.7032 -0.025,0.6277 -0.375,1.2483 -0.951,1.8593 -0.576,0.6111 -1.368,1.2025 -2.219,1.7618 -1.7,1.1186 -3.613,2.0902 -4.556,3.0332 -1.089,1.0893 -1.97,3.0852 -3.01,4.7793 -0.52,0.847 -1.074,1.6151 -1.684,2.1484 -0.609,0.5333 -1.257,0.8323 -2.011,0.791 -0.602,-0.0329 -1.146,-0.4008 -1.666,-1.0117 -0.52,-0.6109 -0.998,-1.4523 -1.444,-2.3496 -0.892,-1.7946 -1.629,-3.7959 -2.574,-4.7402 -1.145,-1.145 -3.169,-1.9218 -4.855,-2.8633 -0.8433,-0.4708 -1.5977,-0.9776 -2.1097,-1.5567 -0.5119,-0.579 -0.7877,-1.212 -0.7168,-2.0078 0.0493,-0.5529 0.4362,-1.1257 1.0606,-1.6914 0.6244,-0.5656 1.4719,-1.1157 2.3669,-1.6367 1.791,-1.0419 3.755,-1.9379 4.639,-2.82227 1.064,-1.06433 1.807,-2.91202 2.705,-4.46289 0.449,-0.77543 0.934,-1.47356 1.482,-1.95898 0.549,-0.48542 1.148,-0.76051 1.889,-0.73243 z"
+ id="rtid-path1003-6-5-9-0-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccscccsccsccccccccaccccccccccssccccccccca"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/1.svg b/src/asset/tile/frontier/basic/1.svg
index 612e35d..c37c52f 100644
--- a/src/asset/tile/frontier/basic/1.svg
+++ b/src/asset/tile/frontier/basic/1.svg
@@ -1,130 +1,638 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Ballcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2602" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g2740" transform="scale(1)">
- <ns0:g id="rtid-g2636" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2604" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2606" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2608" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2610" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2612" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2614" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2616" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2618" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2620" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2622" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2624" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2626" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2628" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2630" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2632" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2634" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2670" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2638" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2640" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2642" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2644" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2646" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2648" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2650" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2652" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2654" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2656" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2658" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2660" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2662" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2664" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2666" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2668" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2704" transform="matrix(-1,0,0,1,128,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2672" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2674" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2676" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2678" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2680" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2682" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2684" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2686" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2688" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2690" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2692" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2694" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2696" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2698" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2700" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2702" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2738">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2706" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2708" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2710" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2712" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2714" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2716" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2718" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2720" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2722" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2724" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2726" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2728" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2730" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2732" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2734" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2736" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="220.4876" ns1:cy="342.7254" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="2.76" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="1.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2602"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g2740"
+ transform="scale(1)">
+ <g
+ id="rtid-g2636"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2604"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2606"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2608"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2610"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2612"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2614"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2616"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2618"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2620"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2622"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2624"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2626"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2628"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2630"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2632"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2634"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2670"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2638"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2640"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2642"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2644"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2646"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2648"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2650"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2652"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2654"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2656"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2658"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2660"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2662"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2664"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2666"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2668"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2704"
+ transform="matrix(-1,0,0,1,128,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2672"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2674"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2676"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2678"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2680"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2682"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2684"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2686"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2688"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2690"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2692"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2694"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2696"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2698"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2700"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2702"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2738">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2706"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2708"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2710"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2712"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2714"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2716"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2718"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2720"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2722"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2724"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2726"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2728"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2730"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2732"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2734"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2736"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-layer3"
+ inkscape:cx="156.90064"
+ inkscape:cy="342.7254"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="2.76" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2602)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscscsccsscccccccsccssssccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="matrix(-1,0,0,1,128,0)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- <ns0:use height="100%" id="rtid-use1804" transform="rotate(-180,64,64)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- <ns0:use height="100%" id="rtid-use2110" transform="matrix(1,0,0,-1,0,128)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ style="display:inline">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2602)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscscsccsscccccccsccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="matrix(-1,0,0,1,128,0)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ <use
+ height="100%"
+ id="rtid-use1804"
+ transform="rotate(-180,64,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ <use
+ height="100%"
+ id="rtid-use2110"
+ transform="matrix(1,0,0,-1,0,128)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/10.svg b/src/asset/tile/frontier/basic/10.svg
index cc5be48..ae57f85 100644
--- a/src/asset/tile/frontier/basic/10.svg
+++ b/src/asset/tile/frontier/basic/10.svg
@@ -1,92 +1,423 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1616" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1686" transform="scale(1)">
- <ns0:g id="rtid-g1650" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path1618" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path1620" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path1622" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path1624" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path1626" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path1628" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path1630" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path1632" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path1634" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path1636" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path1638" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path1640" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path1642" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path1644" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path1646" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path1648" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1684" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path1652" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path1654" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path1656" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path1658" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path1660" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path1662" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path1664" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path1666" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path1668" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path1670" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path1672" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path1674" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path1676" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path1678" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path1680" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path1682" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="6.1419318" ns1:cy="18.701444" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="45.254834" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="10.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1616"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1686"
+ transform="scale(1)">
+ <g
+ id="rtid-g1650"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path1618"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path1620"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path1622"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path1624"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path1626"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path1628"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path1630"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path1632"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path1634"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path1636"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path1638"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path1640"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path1642"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path1644"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path1646"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path1648"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1684"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path1652"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path1654"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path1656"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path1658"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path1660"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path1662"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path1664"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path1666"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path1668"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path1670"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path1672"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path1674"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path1676"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path1678"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path1680"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path1682"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="293.2278"
+ inkscape:cy="197.47807"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.4142136" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1616)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssscsccsscccccccsccssssccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 z" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccsccsccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="matrix(-1,0,0,1,128,0)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1616)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssscsccsscccccccsccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 z"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccsccsccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="matrix(-1,0,0,1,128,0)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/11.svg b/src/asset/tile/frontier/basic/11.svg
index 6229dda..7293f77 100644
--- a/src/asset/tile/frontier/basic/11.svg
+++ b/src/asset/tile/frontier/basic/11.svg
@@ -1,71 +1,311 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomleftcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1427" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1461" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path1429" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path1431" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path1433" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path1435" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path1437" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path1439" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path1441" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path1443" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path1445" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path1447" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path1449" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path1451" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path1453" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path1455" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path1457" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path1459" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="480.324" ns1:cy="-2.4465957" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="62.451671" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="11.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1427"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1461"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path1429"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path1431"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path1433"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path1435"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path1437"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path1439"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path1441"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path1443"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path1445"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path1447"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path1449"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path1451"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path1453"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path1455"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path1457"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path1459"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="264.75311"
+ inkscape:cy="247.27252"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.38" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1427)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.1418312,0.36527 -1.867,0.4 -1.3641026,0.0653 -3.0512,-0.15 -3.891,-0.15 v 0.5 c 0.7015,0 2.3841866,0.21675 3.914,0.15 0.7632739,-0.0333 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccssccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.25 0.644302,-0.24592 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccsccscccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 z" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscscsccsscccccccscssssscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 z" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 C 37.87,6.72 38.06,6.524 38.25,6.281 38.61,5.796 38.94,5.115 39.24,4.358 39.82,2.843 40.23,1.048 40.25,0 h -0.5 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 -0.01,0.023 -0.01,0.031 -0.06,0.051 -0.02,0.005 -0.28458,0.03 -0.30458,0.035" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccccccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1427)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.1418312,0.36527 -1.867,0.4 C 2.5268974,103.9653 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.3841866,0.21675 3.914,0.15 0.7632739,-0.0333 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccssccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.25 0.644302,-0.24592 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccsccscccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 z"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscscsccsscccccccscssssscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 z"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 C 37.87,6.72 38.06,6.524 38.25,6.281 38.61,5.796 38.94,5.115 39.24,4.358 39.82,2.843 40.23,1.048 40.25,0 h -0.5 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 -0.01,0.023 -0.01,0.031 -0.06,0.051 -0.02,0.005 -0.28458,0.03 -0.30458,0.035"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccccccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/12.svg b/src/asset/tile/frontier/basic/12.svg
index efc2a37..772a770 100644
--- a/src/asset/tile/frontier/basic/12.svg
+++ b/src/asset/tile/frontier/basic/12.svg
@@ -1,71 +1,310 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomrightcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1199" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1233" transform="matrix(-1,0,0,-1,128,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path1201" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path1203" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path1205" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path1207" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path1209" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path1211" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path1213" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path1215" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path1217" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path1219" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path1221" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path1223" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path1225" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path1227" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path1229" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path1231" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="469.98535" ns1:cy="20.530801" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="31.225835" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="12.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1199"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1233"
+ transform="matrix(-1,0,0,-1,128,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path1201"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path1203"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path1205"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path1207"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path1209"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path1211"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path1213"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path1215"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path1217"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path1219"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path1221"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path1223"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path1225"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path1227"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path1229"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path1231"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="399.57083"
+ inkscape:cy="4.4956793"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="7.8064588" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1199)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046" transform="rotate(-180,64,64)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 z" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.68695,-0.12111 1,-0.3 0.38829,-0.22188 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.35746,0.74448 -0.6,0.89 -0.27116,0.1627 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 z" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsscsccscsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.10061,0.105092 -0.2,0.12 -0.10085,0.01513 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.29593,0.0078 0.4,-0.02 0.19707,-0.05255 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccssccccccccccssccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 l -0.5,0 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1199)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046"
+ transform="rotate(-180,64,64)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 z"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.68695,-0.12111 1,-0.3 0.38829,-0.22188 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.35746,0.74448 -0.6,0.89 -0.27116,0.1627 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 z"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsscsccscsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.10061,0.105092 -0.2,0.12 -0.10085,0.01513 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.29593,0.0078 0.4,-0.02 0.19707,-0.05255 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccssccccccccccssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/13.svg b/src/asset/tile/frontier/basic/13.svg
index 6e7951b..0b26bbd 100644
--- a/src/asset/tile/frontier/basic/13.svg
+++ b/src/asset/tile/frontier/basic/13.svg
@@ -1,111 +1,526 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bleftborderandbottomrightcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask4629" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g4699">
- <ns0:g id="rtid-g4663" transform="rotate(90,64,64)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path4631" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path4633" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path4635" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path4637" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path4639" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path4641" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path4643" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path4645" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path4647" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path4649" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path4651" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path4653" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path4655" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path4657" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path4659" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path4661" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g4697" transform="rotate(-180,64,63.9999)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path4665" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path4667" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path4669" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path4671" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path4673" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path4675" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path4677" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path4679" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path4681" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path4683" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path4685" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path4687" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path4689" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path4691" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path4693" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path4695" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="454.49155" ns1:cy="15.660287" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="16">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="13.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask4629"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g4699">
+ <g
+ id="rtid-g4663"
+ transform="rotate(90,64,64)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path4631"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path4633"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path4635"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path4637"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path4639"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path4641"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path4643"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path4645"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path4647"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path4649"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path4651"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path4653"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path4655"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path4657"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path4659"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path4661"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g4697"
+ transform="rotate(-180,64,63.9999)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path4665"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path4667"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path4669"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path4671"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path4673"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path4675"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path4677"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path4679"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path4681"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path4683"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path4685"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path4687"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path4689"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path4691"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path4693"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path4695"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="94.459515"
+ inkscape:cy="168.92769"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask4629)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="rotate(90,63.9547,63.9547)">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-use1484" transform="rotate(-180,64,64.0001)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.7502 0,103.7502 v 0.5 c 0.7015,0 2.386,0.2498 3.914,0.1498 0.764,0 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-path4559" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.144384,0.37417 -0.34,0.5 -1.516168,0.97531 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.1502 -1.7,0.1502 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.2502 0.644302,-0.24592 1.454216,-0.722 2.98,-1.8 0.315153,-0.22266 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-path4561" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccssccssccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.2502 c 0.8,0 1.437717,-0.22017 2.04,-0.7502 0.602283,-0.53003 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.109947,-0.350068 0.35,-0.54 0.669947,-0.530068 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.578636,0.491722 -1.26,1.03 -0.318643,0.251728 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.5502 -1.7,0.6502 z" id="rtid-path4563" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="czsscscssssccccssssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.2502 c 0.85,0 1.51,-0.4502 2.11,-1.0502 0.61,-0.5 1.198107,-1.18653 1.87,-1.6 0.62838,-0.3867 1.32,-0.3 2.12,-0.3 0.3,0 0.68695,-0.12111 1,-0.3 0.38829,-0.22188 0.70482,-0.5981 0.9,-1.1 0.50483,-1.298132 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.0812,0.7413 -0.5,2.02 -0.219,0.48181 -0.35746,0.74448 -0.6,0.89 -0.27116,0.1627 -0.5,0.2 -0.9,0.2 -0.6,0 -1.47604,-0.061 -2.27,0.4 -0.75806,0.44016 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.8502 -1.77,0.9502 z" id="rtid-path4565" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccsssssccsssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-path4567" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-path4569" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.937562,5.172427 -2.55,6.79 -1.527566,1.53243 -3.67,1.04 -5.2,0.96 v 0.5 c 1.43,0.04 3.755064,0.695105 5.55,-1.11 1.735078,-1.744908 2.65,-3.75 2.7,-7.14 h -0.5" id="rtid-path4571" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="csccscc" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.13955,1.249546 -0.25,1.36 -0.0905,0.09055 -0.10061,0.105092 -0.2,0.12 -0.10085,0.01513 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.29593,0.0078 0.4,-0.02 0.19707,-0.05255 0.39848,-0.140958 0.5,-0.3 0.19849,-0.310969 0.25,-0.81 0.35,-1.67 z" id="rtid-path4573" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="csssccccccccccssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-path4575" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-path4577" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.148731,0.241103 -0.34,0.46 -0.708735,0.811107 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 v 0.5 c 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.030572,-2.1395 4.87,-3.1 0.200572,-0.229501 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 C 74.08,34.2 73.94,34.15 73.81,34.11 73.68,34.06 73.55,34.03 73.41,33.99 73.13,33.9 72.85,33.79 72.63,33.52 72.41,33.25 72.24,32.8 72.25,32 h -0.5" id="rtid-path4579" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsscsccccccsccccscc" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z" id="rtid-path4581" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-path4583" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 C 37.87,6.72 38.06,6.524 38.25,6.281 38.61,5.796 38.94,5.115 39.24,4.358 39.82,2.843 40.23,1.048 40.25,0 l -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.528695,6.3347828 37.4,6.412 37.278656,6.4848061 37.190586,6.4954068 37.1,6.463 36.48057,6.241401 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-path4585" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccsscscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-path4587" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-path4589" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask4629)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219"
+ transform="rotate(90,63.9547,63.9547)">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-use1484"
+ transform="rotate(-180,64,64.0001)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.7502 0,103.7502 v 0.5 c 0.7015,0 2.386,0.2498 3.914,0.1498 0.764,0 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-path4559"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.144384,0.37417 -0.34,0.5 -1.516168,0.97531 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.1502 -1.7,0.1502 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.2502 0.644302,-0.24592 1.454216,-0.722 2.98,-1.8 0.315153,-0.22266 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-path4561"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccssccssccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.2502 c 0.8,0 1.437717,-0.22017 2.04,-0.7502 0.602283,-0.53003 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.109947,-0.350068 0.35,-0.54 0.669947,-0.530068 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.578636,0.491722 -1.26,1.03 -0.318643,0.251728 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.5502 -1.7,0.6502 z"
+ id="rtid-path4563"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="czsscscssssccccssssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.2502 c 0.85,0 1.51,-0.4502 2.11,-1.0502 0.61,-0.5 1.198107,-1.18653 1.87,-1.6 0.62838,-0.3867 1.32,-0.3 2.12,-0.3 0.3,0 0.68695,-0.12111 1,-0.3 0.38829,-0.22188 0.70482,-0.5981 0.9,-1.1 0.50483,-1.298132 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.0812,0.7413 -0.5,2.02 -0.219,0.48181 -0.35746,0.74448 -0.6,0.89 -0.27116,0.1627 -0.5,0.2 -0.9,0.2 -0.6,0 -1.47604,-0.061 -2.27,0.4 -0.75806,0.44016 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.8502 -1.77,0.9502 z"
+ id="rtid-path4565"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccsssssccsssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-path4567"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-path4569"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.937562,5.172427 -2.55,6.79 -1.527566,1.53243 -3.67,1.04 -5.2,0.96 v 0.5 c 1.43,0.04 3.755064,0.695105 5.55,-1.11 1.735078,-1.744908 2.65,-3.75 2.7,-7.14 h -0.5"
+ id="rtid-path4571"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="csccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.13955,1.249546 -0.25,1.36 -0.0905,0.09055 -0.10061,0.105092 -0.2,0.12 -0.10085,0.01513 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.29593,0.0078 0.4,-0.02 0.19707,-0.05255 0.39848,-0.140958 0.5,-0.3 0.19849,-0.310969 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-path4573"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="csssccccccccccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-path4575"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-path4577"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.148731,0.241103 -0.34,0.46 -0.708735,0.811107 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 v 0.5 c 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.030572,-2.1395 4.87,-3.1 0.200572,-0.229501 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 C 74.08,34.2 73.94,34.15 73.81,34.11 73.68,34.06 73.55,34.03 73.41,33.99 73.13,33.9 72.85,33.79 72.63,33.52 72.41,33.25 72.24,32.8 72.25,32 h -0.5"
+ id="rtid-path4579"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsscsccccccsccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z"
+ id="rtid-path4581"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-path4583"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 C 37.87,6.72 38.06,6.524 38.25,6.281 38.61,5.796 38.94,5.115 39.24,4.358 39.82,2.843 40.23,1.048 40.25,0 h -0.5 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.528695,6.3347828 37.4,6.412 37.278656,6.4848061 37.190586,6.4954068 37.1,6.463 36.48057,6.241401 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-path4585"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccsscscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-path4587"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-path4589"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/14.svg b/src/asset/tile/frontier/basic/14.svg
index 23e3aa7..107b1ba 100644
--- a/src/asset/tile/frontier/basic/14.svg
+++ b/src/asset/tile/frontier/basic/14.svg
@@ -1,132 +1,637 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bleftborderandrightcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask4271" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g4377">
- <ns0:g id="rtid-g4305" transform="rotate(90,64,64)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path4273" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path4275" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path4277" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path4279" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path4281" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path4283" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path4285" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path4287" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path4289" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path4291" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path4293" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path4295" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path4297" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path4299" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path4301" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path4303" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g4375" transform="translate(0,-1.25e-4)">
- <ns0:g id="rtid-g4339" transform="matrix(-1,0,0,1,128,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path4307" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path4309" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path4311" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path4313" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path4315" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path4317" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path4319" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path4321" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path4323" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path4325" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path4327" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path4329" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path4331" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path4333" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path4335" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path4337" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g4373" transform="rotate(-180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path4341" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path4343" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path4345" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path4347" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path4349" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path4351" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path4353" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path4355" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path4357" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path4359" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path4361" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path4363" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path4365" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path4367" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path4369" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path4371" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="23.059907" ns1:cy="104.04982" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="7.2407734">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="14.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask4271"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g4377">
+ <g
+ id="rtid-g4305"
+ transform="rotate(90,64,64)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path4273"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path4275"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path4277"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path4279"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path4281"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path4283"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path4285"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path4287"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path4289"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path4291"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path4293"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path4295"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path4297"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path4299"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path4301"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path4303"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g4375"
+ transform="translate(0,-1.25e-4)">
+ <g
+ id="rtid-g4339"
+ transform="matrix(-1,0,0,1,128,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path4307"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path4309"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path4311"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path4313"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path4315"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path4317"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path4319"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path4321"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path4323"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path4325"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path4327"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path4329"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path4331"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path4333"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path4335"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path4337"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g4373"
+ transform="rotate(-180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path4341"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path4343"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path4345"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path4347"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path4349"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path4351"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path4353"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path4355"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path4357"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path4359"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path4361"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path4363"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path4365"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path4367"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path4369"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path4371"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-1.1778353"
+ inkscape:cy="104.04982"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="7.2407734">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask4271)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="rotate(90,63.9547,63.9547)">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="matrix(-1,0,0,1,128,-1.25e-4)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.3179448,2.629688 -0.582,3.43 -0.2869452,0.86969 -0.596576,1.66993 -0.652,2.97 -0.025576,0.59993 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.1418312,0.36527 -1.867,0.4 -1.3641026,0.0653 -3.0512,-0.14988 -3.891,-0.14988 v 0.5 c 0.7015,0 2.3841866,0.21663 3.914,0.14988 0.7632739,-0.0333 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.9956043,-0.8001 1.03,-1.6 0.051604,-1.20011 0.330547,-1.90176 0.627,-2.81 C 7.9275579,98.718205 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssssccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.211166,0.005 1.88,-0.25012 0.644299,-0.24593 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccsccscccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25012 c 0.8,0 1.49,-0.25012 2.04,-0.75012 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 z" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25012 c 0.85,0 1.48214,-0.47934 2.11,-1.05012 0.583615,-0.53056 1.198107,-1.18653 1.87,-1.6 0.62838,-0.3867 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.0812,0.7413 -0.5,2.02 -0.219,0.48181 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.47604,-0.061 -2.27,0.4 -0.75806,0.44016 -1.390125,1.07718 -1.96,1.6 -0.521048,0.47803 -1.24,0.85012 -1.77,0.95012" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="csssccsccsscsssc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 v 0.5 C 0.1904,40.26 0.31359038,40.17998 0.457,40.11 0.60049039,40.03998 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 h -0.5" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccccscccccccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.33311,1.157939 -0.55,1.27 -0.38613,0.199502 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.69796,0.05604 2.2,-0.2 0.49799,-0.253976 0.35,-0.82 0.45,-1.71" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="csccccccccccccccsc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 h -0.5 c 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.380517,8.4644156 65.1,8.217 64.880515,8.0234144 64.32,7.821 64,7.75 v 0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccscscsscscccccscccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="matrix(1,0,0,-1,0,128)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask4271)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219"
+ transform="rotate(90,63.9547,63.9547)">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="matrix(-1,0,0,1,128,-1.25e-4)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.3179448,2.629688 -0.582,3.43 -0.2869452,0.86969 -0.596576,1.66993 -0.652,2.97 -0.025576,0.59993 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.1418312,0.36527 -1.867,0.4 C 2.5268974,103.9653 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.3841866,0.21663 3.914,0.14988 0.7632739,-0.0333 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.9956043,-0.8001 1.03,-1.6 0.051604,-1.20011 0.330547,-1.90176 0.627,-2.81 C 7.9275579,98.718205 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssssccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.211166,0.005 1.88,-0.25012 0.644299,-0.24593 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccsccscccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25012 c 0.8,0 1.49,-0.25012 2.04,-0.75012 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 z"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25012 c 0.85,0 1.48214,-0.47934 2.11,-1.05012 0.583615,-0.53056 1.198107,-1.18653 1.87,-1.6 0.62838,-0.3867 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.0812,0.7413 -0.5,2.02 -0.219,0.48181 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.47604,-0.061 -2.27,0.4 -0.75806,0.44016 -1.390125,1.07718 -1.96,1.6 -0.521048,0.47803 -1.24,0.85012 -1.77,0.95012"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="csssccsccsscsssc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 v 0.5 C 0.1904,40.26 0.31359038,40.17998 0.457,40.11 0.60049039,40.03998 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 h -0.5"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccccscccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.33311,1.157939 -0.55,1.27 -0.38613,0.199502 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.69796,0.05604 2.2,-0.2 0.49799,-0.253976 0.35,-0.82 0.45,-1.71"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="csccccccccccccccsc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 h -0.5 c 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.380517,8.4644156 65.1,8.217 64.880515,8.0234144 64.32,7.821 64,7.75 v 0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccscscsscscccccscccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="matrix(1,0,0,-1,0,128)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/15.svg b/src/asset/tile/frontier/basic/15.svg
index c0c4f9b..821d311 100644
--- a/src/asset/tile/frontier/basic/15.svg
+++ b/src/asset/tile/frontier/basic/15.svg
@@ -1,111 +1,523 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bleftborderandtoprightcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask4468" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g4538">
- <ns0:g id="rtid-g4502" transform="rotate(90,64,64)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path4470" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path4472" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path4474" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path4476" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path4478" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path4480" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path4482" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path4484" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path4486" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path4488" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path4490" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path4492" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path4494" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path4496" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path4498" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path4500" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g4536" transform="matrix(-1,0,0,1,128,0.005275)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path4504" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path4506" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path4508" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path4510" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path4512" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path4514" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path4516" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path4518" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path4520" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path4522" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path4524" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path4526" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path4528" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path4530" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path4532" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path4534" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="459.61553" ns1:cy="95.792543" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="20.48">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="15.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask4468"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g4538">
+ <g
+ id="rtid-g4502"
+ transform="rotate(90,64,64)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path4470"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path4472"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path4474"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path4476"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path4478"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path4480"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path4482"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path4484"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path4486"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path4488"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path4490"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path4492"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path4494"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path4496"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path4498"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path4500"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g4536"
+ transform="matrix(-1,0,0,1,128,0.005275)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path4504"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path4506"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path4508"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path4510"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path4512"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path4514"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path4516"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path4518"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path4520"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path4522"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path4524"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path4526"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path4528"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path4530"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path4532"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path4534"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="160.52959"
+ inkscape:cy="160.20137"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.28">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask4468)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="rotate(90,63.9547,63.9547)">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="matrix(-1,0,0,1,128,-1.25e-4)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25012 c 0.8,0 1.49,-0.25012 2.04,-0.75012 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscscscsssccccccssscssssccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25012 c 0.85,0 1.48214,-0.47934 2.11,-1.05012 0.583615,-0.53056 1.198107,-1.18653 1.87,-1.6 0.62838,-0.3867 1.32,-0.3 2.12,-0.3 0.3,0 0.68695,-0.12111 1,-0.3 0.38829,-0.22188 0.70482,-0.5981 0.9,-1.1 0.50483,-1.298132 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.0812,0.7413 -0.5,2.02 -0.219,0.48181 -0.35746,0.74448 -0.6,0.89 -0.27116,0.1627 -0.5,0.2 -0.9,0.2 -0.6,0 -1.47604,-0.061 -2.27,0.4 -0.75806,0.44016 -1.390125,1.07718 -1.96,1.6 -0.521048,0.47803 -1.24,0.85012 -1.77,0.95012 z" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssssssccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask4468)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219"
+ transform="rotate(90,63.9547,63.9547)">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="matrix(-1,0,0,1,128,-1.25e-4)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25012 c 0.8,0 1.49,-0.25012 2.04,-0.75012 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscscscsssccccccssscssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25012 c 0.85,0 1.48214,-0.47934 2.11,-1.05012 0.583615,-0.53056 1.198107,-1.18653 1.87,-1.6 0.62838,-0.3867 1.32,-0.3 2.12,-0.3 0.3,0 0.68695,-0.12111 1,-0.3 0.38829,-0.22188 0.70482,-0.5981 0.9,-1.1 0.50483,-1.298132 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.0812,0.7413 -0.5,2.02 -0.219,0.48181 -0.35746,0.74448 -0.6,0.89 -0.27116,0.1627 -0.5,0.2 -0.9,0.2 -0.6,0 -1.47604,-0.061 -2.27,0.4 -0.75806,0.44016 -1.390125,1.07718 -1.96,1.6 -0.521048,0.47803 -1.24,0.85012 -1.77,0.95012 z"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssssssccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/16.svg b/src/asset/tile/frontier/basic/16.svg
index c5d5d54..9876c39 100644
--- a/src/asset/tile/frontier/basic/16.svg
+++ b/src/asset/tile/frontier/basic/16.svg
@@ -1,73 +1,313 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bleftborder.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1366" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1400" transform="matrix(0,1,-1,0,128,0)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path1368" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path1370" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path1372" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path1374" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path1376" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path1378" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path1380" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path1382" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path1384" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path1386" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path1388" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path1390" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path1392" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path1394" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path1396" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path1398" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="243.77" ns1:cy="203.819" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="0.905097">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1366)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="rotate(90,63.9547,63.9547)">
- <ns0:path d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="16.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1366"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1400"
+ transform="matrix(0,1,-1,0,128,0)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path1368"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path1370"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path1372"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path1374"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path1376"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path1378"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path1380"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path1382"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path1384"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path1386"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path1388"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path1390"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path1392"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path1394"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path1396"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path1398"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="49.868131"
+ inkscape:cy="203.819"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.905097">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1366)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g1219"
+ transform="rotate(90,63.9547,63.9547)">
+ <path
+ d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/17.svg b/src/asset/tile/frontier/basic/17.svg
index a201ee7..697a588 100644
--- a/src/asset/tile/frontier/basic/17.svg
+++ b/src/asset/tile/frontier/basic/17.svg
@@ -1,92 +1,423 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bleftcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2783" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g2853" transform="scale(1)">
- <ns0:g id="rtid-g2817" transform="translate(0,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2785" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2787" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2789" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2791" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2793" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2795" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2797" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2799" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2801" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2803" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2805" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2807" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2809" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2811" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2813" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2815" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2851" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2819" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2821" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2823" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2825" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2827" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2829" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2831" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2833" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2835" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2837" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2839" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2841" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2843" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2845" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2847" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2849" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="395.83305" ns1:cy="2.3974634" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="11.04" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="17.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2783"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g2853"
+ transform="scale(1)">
+ <g
+ id="rtid-g2817"
+ transform="translate(0,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2785"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2787"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2789"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2791"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2793"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2795"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2797"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2799"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2801"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2803"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2805"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2807"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2809"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2811"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2813"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2815"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2851"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2819"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2821"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2823"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2825"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2827"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2829"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2831"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2833"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2835"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2837"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2839"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2841"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2843"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2845"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2847"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2849"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-216.43916"
+ inkscape:cy="318.7802"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.97580736" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2783)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.25 0.644302,-0.24592 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccsccscccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 z" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 z" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="matrix(1,0,0,-1,0,128)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2783)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.25 0.644302,-0.24592 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccsccscccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 z"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 z"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="matrix(1,0,0,-1,0,128)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/18.svg b/src/asset/tile/frontier/basic/18.svg
index b196819..b31e4fe 100644
--- a/src/asset/tile/frontier/basic/18.svg
+++ b/src/asset/tile/frontier/basic/18.svg
@@ -1,71 +1,306 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="bnotbottomborder.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask3892" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g3926" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,362.834 V 483.779 H 120.945 V 362.834 L 90.7088,362.835 C 90.5797,373.202 97.8557,388.683 99.2003,401.957 102.823,437.718 98.9244,445.074 87.8908,456.105 79.1805,464.813 69.7202,463.527 59.9817,463.094 49.8011,462.642 39.3403,462.646 30.2363,453.543 20.9501,444.258 19.9609,426.185 22.4222,407.227 24.6823,389.82 30.0529,371.467 30.2363,362.835 Z" id="rtid-path3894" style="fill:#ffffff;stroke-width:1.972157" transform="scale(0.264583)" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 V 128 H 64 V 96 L 56,96.0003 C 55.7792,99.911 58.0485,102.515 58.2957,104.197 58.6205,106.408 59.3913,108.403 60.355,110.772 62.4244,115.86 62.5892,121.139 59.9995,123.728 56.7103,127.017 45.8911,127.212 40.8779,124.814 38.7067,123.775 37.2216,122.576 35.7973,121.152 32.2697,117.626 36.5416,110.369 37.6606,104.055 38.0367,101.932 40.1779,101.539 40,96.0003 Z" id="rtid-path3896" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.9997 V 128 H 96 V 95.9997 L 88,96 C 87.9103,103.205 91.2904,113.728 90.1692,119.729 89.5631,122.973 81.3103,126.239 77.2081,126.313 73.0916,126.387 70.1204,123.583 69.8309,119.729 69.2528,112.035 71.8986,100.771 72,96 Z" id="rtid-path3898" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 V 128 H 128 V 96 L 120,96.0003 C 119.981,97.4942 118.275,101.774 118.549,103.578 119.009,106.611 120.818,110.212 120.94,113.765 121.095,118.29 119.852,123.389 117.221,124.745 113.862,126.475 108.51,125.797 106.508,123.932 104.592,122.147 100.329,120.368 100.481,116.07 100.607,112.489 104.959,106.474 105.464,103.627 105.895,101.195 103.972,97.3349 104,96.0003 Z" id="rtid-path3900" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.9997 V 96 H 32 V 63.9997 L 24,64 C 23.9502,67.9981 17.2051,73.8369 17.7065,78.746 17.8402,80.0543 18.9443,84.2993 20.6536,83.0124 27.9719,77.5027 31.0273,87.2771 26.6437,90.3047 21.159,94.0929 12.3741,95.4912 7.66109,90.7792 5.41095,88.5295 2.50708,82.6214 3.00228,78.0294 3.5443,73.0034 7.94704,66.4932 8.00002,64 Z" id="rtid-path3902" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 V 96 H 64.0001 V 64 L 56.0001,64.0003 C 55.9598,67.2407 55.4617,70.6316 58.2751,72.9289 61.456,75.5263 62.8118,80.3259 60.2181,82.9192 55.5043,87.6322 50.3386,89.1506 47.0939,89.6297 44.1044,90.0712 37.9564,87.8568 37.815,84.753 37.523,78.3432 39.9149,68.0023 40,64.0003 Z" id="rtid-path3904" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,63.9997 V 96 H 96.0001 V 63.9997 L 88.0002,64 C 87.9417,68.7015 87.1866,72.2202 87.2912,77.6724 87.3469,80.5757 83.8863,82.2882 82.2484,83.9258 77.5345,88.6389 76.713,92.712 72,88 67.287,83.288 71.8987,68.771 72,64 Z" id="rtid-path3906" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 V 96 H 128 V 64 L 120,64.0003 C 119.968,66.5447 120.208,75.527 120.762,78.7486 121.777,84.6492 119.321,90.0354 116.272,93.0839 111.558,97.7969 100.057,93.3899 98.5771,88.6779 97.7913,86.1764 101.238,83.161 102.878,77.8789 104.328,73.211 103.953,66.2384 104,64.0003 Z" id="rtid-path3908" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.9997 V 64 H 32 V 31.9997 L 24,32 C 23.9556,35.5634 28.1758,40.3196 28.7819,44.7874 29.4014,49.3533 26.3826,53.6179 24.0001,56 19.2863,60.713 12.713,60.712 8.00002,56 5.4647,53.4652 12.5299,50.0102 13.2377,44.8442 13.8456,40.4069 7.95317,34.2045 8.00002,32 Z" id="rtid-path3910" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 V 64 H 64.0001 V 32 L 56.0001,32.0003 C 55.9104,39.205 57.6463,46.6856 52.9325,51.3986 48.2187,56.1116 39.5364,59.9451 34.8234,55.2331 30.1103,50.5211 39.8986,36.771 40,32.0003 Z" id="rtid-path3912" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="ccccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,31.9997 V 64 H 96.0001 V 31.9997 L 88.0002,32 C 87.9812,39.1615 101.435,45.9204 88.0002,56 74.5657,66.0796 76.713,60.712 72,56 69.4554,53.456 66.3696,45.3696 67.0839,40.1862 67.6926,35.7691 71.9534,34.1951 72,32 Z" id="rtid-path3914" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="ccccczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32 V 64 H 128 V 32 L 120,32.0003 C 119.948,36.1649 121.531,41.959 121.966,47.0177 122.284,50.7105 128.798,55.3553 125.368,59.3552 119.701,65.9652 117.389,56.8142 112.735,56.7543 107.815,56.6909 106.463,64.152 99.8779,61.0808 93.7178,58.2077 101.757,50.9482 101.911,47.3626 102.159,41.5924 103.938,34.9427 104,32.0003 Z" id="rtid-path3916" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,-3e-4 V 32 H 32 V -3e-4 L 24,0 C 23.9599,3.21896 20.6786,7.60311 21.3068,11.6769 22.0848,16.7216 30.2507,23.3099 27.6429,25.9173 22.9291,30.6303 12.0875,29.278 8.00002,24 3.91254,18.722 14.748,6.01635 8.00002,0 Z" id="rtid-path3918" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,0 V 32 H 64.0001 V 0 L 56.0001,3e-4 C 55.9656,2.77163 57.8055,5.49769 58.3988,9.01533 59.348,14.6426 60.2428,16.6902 57.3422,19.5903 56.0729,20.8594 59.9288,26.4522 58.5844,28.1549 57.0173,30.1396 47.9406,29.6791 46.3529,29.5208 44.2443,29.3106 42.1564,23.6635 40.1917,21.6993 37.9666,19.4747 44.9138,15.448 45.3897,10.9099 45.9217,5.83568 39.9465,2.51867 40,3e-4 Z" id="rtid-path3920" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,-3e-4 V 32 H 96.0001 V -3e-4 L 88.0002,0 C 87.9672,2.65434 86.1031,7.41677 87.4008,10.9141 89.6258,16.91 95.1954,21.7902 92.2182,24.7669 87.5043,29.48 75.3709,32.7383 70.6579,28.0263 69.2137,26.5824 68.2329,22.1951 67.5069,19.5632 66.7022,16.6463 67.5963,11.3777 68.1264,8.24622 68.679,4.98223 71.9641,1.68881 72,0 Z" id="rtid-path3922" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,0 V 32 H 128 V 0 L 120,3e-4 C 119.967,2.65051 124.239,5.19375 124.813,8.55431 125.34,11.639 121.521,14.4098 120.432,17.3119 119.482,19.8432 116.979,21.4616 115.59,22.8496 110.876,27.5627 108.713,28.712 104,24 101.128,21.1285 99.6098,14.4242 100.532,8.69489 101.124,5.02254 103.961,1.86377 104,3e-4 Z" id="rtid-path3924" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="180.033" ns1:cy="234.982" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="1.38" />
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask3892)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g3890" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 7.75,96 C 7.69534,97.1043 7.34116,98.9836 6.92773,100.951 6.4918,103.026 5.98635,105.396 5.68555,107.713 5.03061,112.757 5.25877,117.613 7.82422,120.178 10.3005,122.653 13.1738,122.659 15.8594,122.777 17.1404,122.835 18.4252,122.951 19.7012,122.756 20.9772,122.561 22.243,122.044 23.4316,120.855 24.9005,119.387 25.9315,118.113 26.4473,116.027 26.963,113.942 26.9765,111.068 26.4961,106.326 26.3147,104.535 25.7378,102.623 25.2168,100.818 24.7224,99.1064 24.28,97.2813 24.25,96 H 23.75 C 23.7322,97.4315 24.2144,99.1494 24.7363,100.957 25.2583,102.765 25.8238,104.656 25.998,106.377 26.4763,111.097 26.4531,113.926 25.9629,115.908 25.4726,117.891 24.5285,119.052 23.0781,120.502 21.9622,121.618 20.8228,122.079 19.627,122.262 18.4311,122.444 17.1766,122.335 15.8809,122.277 13.1797,122.158 10.5188,122.164 8.17773,119.822 5.82924,117.475 5.53218,112.765 6.17969,107.777 6.47687,105.488 6.97984,103.129 7.41602,101.053 7.85219,98.9769 8.22472,97.1899 8.25,96 Z" id="rtid-path1003-10" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,96 C 39.7946,98.541 39.3391,100.206 38.8164,101.191 38.2734,102.215 37.616,102.873 37.4141,104.012 36.8613,107.131 35.5172,110.519 34.7441,113.588 34.3576,115.122 34.1127,116.579 34.1934,117.896 34.2741,119.214 34.691,120.398 35.6211,121.328 37.0572,122.764 38.5708,123.987 40.7695,125.039 43.3417,126.269 47.3211,126.816 51.0957,126.654 54.8703,126.493 58.436,125.644 60.1758,123.904 61.5326,122.548 62.1495,120.512 62.1738,118.189 62.1981,115.867 61.6311,113.248 60.5859,110.678 59.623,108.311 58.8628,106.336 58.543,104.16 58.4061,103.229 57.7665,102.171 57.2031,100.838 56.665,99.5647 56.1982,97.7913 56.25,96 H 55.75 C 55.6367,98.0067 56.1644,99.6641 56.7422,101.031 57.32,102.398 57.9386,103.482 58.0488,104.232 58.379,106.478 59.1582,108.496 60.123,110.867 61.1467,113.385 61.6972,115.948 61.6738,118.184 61.6504,120.42 61.0552,122.318 59.8223,123.551 58.2728,125.1 54.7848,125.996 51.0742,126.154 47.3636,126.313 43.4274,125.756 40.9863,124.588 38.8426,123.562 37.3871,122.387 35.9746,120.975 35.1409,120.141 34.7669,119.098 34.6914,117.865 34.6159,116.633 34.8482,115.221 35.2285,113.711 35.9892,110.691 37.3401,107.292 37.9062,104.098 38.0806,103.114 38.6826,102.514 39.2598,101.426 39.8369,100.338 40.34,98.8017 40.25,96 Z" id="rtid-path1003-6-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccscccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,96 C 71.6723,98.3648 71.0003,102.46 70.4121,106.734 69.8095,111.114 69.2902,115.864 69.582,119.748 69.8804,123.72 72.9809,126.639 77.2129,126.562 79.3273,126.524 82.4257,125.68 85.1055,124.436 86.4454,123.813 87.6779,123.092 88.625,122.309 89.5721,121.525 90.2451,120.68 90.4141,119.775 90.9879,116.704 90.413,112.561 89.7188,108.275 89.0391,104.08 88.2416,99.5222 88.25,96 H 87.75 C 87.7046,99.6431 88.5316,104.078 89.2246,108.355 89.9176,112.633 90.4713,116.754 89.9238,119.684 89.7897,120.401 89.2056,121.18 88.3066,121.924 87.4077,122.667 86.2063,123.373 84.8945,123.982 82.2709,125.201 79.191,126.027 77.2031,126.062 73.2024,126.134 70.3607,123.447 70.0801,119.711 69.7938,115.901 70.307,111.172 70.9082,106.803 71.5094,102.434 72.1985,98.4275 72.25,96 Z" id="rtid-path1003-1-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,96 C 103.779,96.3567 103.895,96.9902 104.037,97.4824 104.209,98.0768 104.432,98.7594 104.643,99.4727 105.063,100.899 105.419,102.453 105.219,103.584 104.983,104.916 103.777,107.149 102.607,109.461 101.438,111.773 100.297,114.174 100.23,116.061 100.152,118.293 101.235,119.894 102.549,121.125 103.863,122.356 105.417,123.258 106.338,124.115 107.409,125.113 109.286,125.746 111.332,125.936 113.378,126.125 115.597,125.863 117.336,124.967 118.751,124.238 119.733,122.561 120.363,120.518 120.994,118.474 121.268,116.044 121.189,113.756 121.065,110.124 119.247,106.507 118.797,103.541 118.676,102.744 119.013,101.214 119.406,99.7363 119.774,98.3562 120.189,96.8528 120.25,96 H 119.75 C 119.742,96.6548 119.32,98.1224 118.924,99.6094 118.528,101.096 118.15,102.608 118.303,103.615 118.773,106.715 120.57,110.299 120.689,113.773 120.766,116.01 120.496,118.393 119.887,120.369 119.277,122.345 118.324,123.897 117.107,124.523 115.488,125.358 113.349,125.62 111.379,125.438 109.409,125.255 107.608,124.617 106.678,123.75 105.682,122.823 104.149,121.941 102.891,120.762 101.632,119.583 100.657,118.143 100.73,116.078 100.79,114.384 101.888,111.988 103.053,109.686 104.217,107.383 105.442,105.185 105.711,103.67 105.942,102.369 105.549,100.777 105.123,99.332 104.91,98.6094 104.685,97.9245 104.518,97.3438 104.35,96.763 104.244,96.2711 104.25,96 Z" id="rtid-path1003-6-2-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,64 C 7.69186,64.5515 7.42134,65.5192 7.04102,66.4414 6.61628,67.4713 6.0455,68.6751 5.45703,69.9609 4.2801,72.5325 3.03142,75.4286 2.75391,78.002 2.49949,80.361 3.11433,83.0185 4.07031,85.377 5.02629,87.7354 6.31995,89.7908 7.48438,90.9551 9.90455,93.3747 13.3576,94.2161 16.8789,93.9785 20.4002,93.741 24.0032,92.4312 26.7852,90.5098 29.1028,88.9092 29.4464,85.5825 28.2578,83.3398 27.6635,82.2185 26.6623,81.356 25.3301,81.1543 23.9979,80.9525 22.3686,81.4087 20.5039,82.8125 20.1397,83.0867 19.9131,83.0595 19.6328,82.8672 19.3525,82.6748 19.058,82.2558 18.8145,81.7441 18.3273,80.7207 18.0176,79.3329 17.9551,78.7207 17.7169,76.3889 19.2311,73.7336 20.8574,71.166 22.4253,68.6907 24.1079,66.0829 24.25,64 H 23.75 C 23.7268,65.86 22.0689,68.3198 20.4355,70.8984 18.8022,73.4771 17.1938,76.1943 17.457,78.7715 17.5282,79.4677 17.8376,80.8545 18.3633,81.959 18.6261,82.5112 18.9379,82.9968 19.3496,83.2793 19.7613,83.5618 20.3143,83.5821 20.8047,83.2129 22.5992,81.8619 24.0939,81.4725 25.2559,81.6484 26.4178,81.8244 27.28,82.5622 27.8164,83.5742 28.8892,85.5982 28.5679,88.6729 26.502,90.0996 23.7991,91.9665 20.2663,93.2497 16.8457,93.4805 13.4251,93.7112 10.1307,92.8939 7.83789,90.6016 6.75217,89.516 5.46789,87.4954 4.5332,85.1895 3.59852,82.8835 3.00921,80.2894 3.25,78.0566 3.51451,75.6039 4.73892,72.7314 5.91211,70.168 6.4987,68.8863 7.07129,67.6819 7.50391,66.6328 7.93652,65.5838 8.23524,64.6945 8.25,64 Z" id="rtid-path1003-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccsscsccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,64 C 39.6797,65.9884 39.0767,69.6524 38.5195,73.4375 37.9468,77.328 37.4167,81.5217 37.5645,84.7637 37.6035,85.6206 38.0564,86.3984 38.7285,87.0645 39.4006,87.7305 40.2974,88.2958 41.2812,88.748 43.249,89.6525 45.5518,90.1102 47.1309,89.877 50.4131,89.3925 55.6351,87.8543 60.3945,83.0957 61.7613,81.7291 62.0821,79.7803 61.6562,77.8711 61.2304,75.9618 60.0691,74.0698 58.4336,72.7344 57.0792,71.6284 56.5309,70.2839 56.3145,68.7832 56.1092,67.3598 56.2211,65.5489 56.25,64 H 55.75 C 55.73,65.6085 55.5926,67.2744 55.8203,68.8535 56.0481,70.4327 56.6583,71.9317 58.1172,73.123 59.6628,74.385 60.7691,76.1922 61.168,77.9805 61.5668,79.7687 61.2679,81.5154 60.041,82.7422 55.3728,87.4096 50.2636,88.9095 47.0566,89.3828 45.6462,89.5912 43.3793,89.1612 41.4902,88.293 40.5457,87.8588 39.6939,87.3173 39.0801,86.709 38.4662,86.1007 38.0961,85.4372 38.0645,84.7422 37.9201,81.5744 38.4421,77.3927 39.0137,73.5098 39.5853,69.6268 40.2065,66.0462 40.25,64 Z" id="rtid-path1003-6-3-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,64 C 71.6558,66.3661 70.5138,71.2603 69.9473,75.9922 69.6578,78.4097 69.5158,80.8316 69.748,82.9609 69.9803,85.0903 70.5862,86.94 71.8242,88.1777 73.0178,89.371 73.9789,90.0302 74.8652,90.2559 75.7516,90.4816 76.5425,90.2357 77.2715,89.6992 78.7294,88.6262 80.0892,86.4379 82.4258,84.1016 83.2133,83.3142 84.4915,82.4731 85.5762,81.457 86.6608,80.4409 87.5707,79.2198 87.541,77.668 87.4388,72.3428 88.1672,68.5947 88.25,64 H 87.75 C 87.6918,68.6765 86.9358,72.2006 87.041,77.6777 87.0669,79.0291 86.2756,80.1164 85.2344,81.0918 84.1932,82.0672 82.9227,82.8979 82.0723,83.748 79.695,86.125 78.2862,88.333 76.9766,89.2969 76.3218,89.7788 75.7288,89.9601 74.9883,89.7715 74.2477,89.5829 73.3407,88.985 72.1777,87.8223 71.0593,86.7041 70.4715,84.9732 70.2461,82.9062 70.0207,80.8393 70.1563,78.4499 70.4434,76.0527 71.0174,71.2584 72.1978,66.4606 72.25,64 Z" id="rtid-path1003-1-1-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccscccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,64 C 103.735,65.1823 103.804,67.5338 103.715,70.0195 103.622,72.6154 103.351,75.5102 102.639,77.8047 101.829,80.4113 100.572,82.4655 99.5996,84.1992 99.1134,85.0661 98.6974,85.8527 98.4492,86.5996 98.201,87.3465 98.1215,88.063 98.3379,88.752 99.1266,91.2633 102.437,93.5369 106.139,94.6543 109.84,95.7716 113.993,95.7175 116.449,93.2617 119.555,90.1566 122.039,84.699 121.008,78.707 120.474,75.6046 120.228,66.6952 120.25,64 H 119.75 C 119.718,66.5676 119.951,75.5048 120.516,78.791 121.515,84.6001 119.088,89.9144 116.096,92.9062 113.838,95.1632 109.881,95.2617 106.283,94.1758 102.686,93.0899 99.5076,90.8041 98.8164,88.6035 98.6399,88.0416 98.6955,87.443 98.9238,86.7559 99.1522,86.0687 99.5529,85.3033 100.035,84.4434 101,82.7235 102.286,80.6287 103.117,77.9531 103.854,75.5796 104.121,72.654 104.215,70.0371 104.309,67.4202 104.227,65.0996 104.25,64 Z" id="rtid-path1003-6-2-9-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscccccccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 23.75,32 C 23.7266,33.8817 24.7979,35.9738 25.9238,38.168 27.0497,40.3622 28.2389,42.6513 28.5332,44.8203 29.1353,49.2584 26.1759,53.471 23.8242,55.8223 19.1926,60.4531 12.8085,60.452 8.17773,55.8223 7.89139,55.536 7.75509,55.2614 7.71484,54.9707 7.6746,54.68 7.73395,54.3626 7.88086,54.0098 8.17468,53.3041 8.82703,52.4809 9.59375,51.5703 11.1272,49.7492 13.1183,47.5653 13.4863,44.8789 13.8071,42.5371 12.4423,39.8503 11.0449,37.459 10.3462,36.2633 9.63224,35.1421 9.10156,34.1914 8.57088,33.2407 8.2407,32.4373 8.25,32 H 7.75 C 7.81033,32.6217 8.18082,33.5663 8.66602,34.4355 9.20799,35.4065 9.92072,36.5258 10.6133,37.7109 11.9984,40.0813 13.2773,42.715 12.9902,44.8105 12.6505,47.2901 10.7532,49.4164 9.21094,51.248 8.4398,52.1638 7.75793,53.0018 7.41797,53.8184 7.24799,54.2266 7.16482,54.6354 7.2207,55.0391 7.27659,55.4427 7.47674,55.8303 7.82422,56.1777 12.6194,60.9718 19.3817,60.9729 24.1777,56.1777 26.5911,53.7648 29.666,49.4476 29.0293,44.7539 28.7174,42.4552 27.4938,40.1311 26.3691,37.9395 25.2944,35.8449 24.3161,33.639 24.25,32 Z" id="rtid-path1003-4-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccccscccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,32 C 39.6698,33.1145 39.0664,34.9623 38.2559,36.8828 37.4006,38.9094 36.3138,41.2249 35.375,43.5449 34.4362,45.865 33.6423,48.1881 33.3809,50.2539 33.1194,52.3197 33.3946,54.1586 34.6465,55.4102 37.0812,57.8443 40.5462,58.0632 43.9473,57.0898 47.3483,56.1165 50.7222,53.963 53.1094,51.5762 55.5239,49.1621 56.2813,46.0357 56.4492,42.6465 56.6132,39.3356 56.2266,35.5024 56.25,32 H 55.75 C 55.7049,35.6236 56.1162,39.2905 55.9512,42.6211 55.7862,45.9516 55.0552,48.9238 52.7559,51.2227 50.4293,53.5489 47.1054,55.6658 43.8086,56.6094 40.5118,57.5529 37.2782,57.3344 35,55.0566 33.8953,53.9522 33.6255,52.3031 33.877,50.3164 34.1284,48.3297 34.9061,46.0353 35.8379,43.7324 36.7697,41.4296 37.8556,39.1187 38.7168,37.0781 39.578,35.0375 40.2229,33.2755 40.25,32 Z" id="rtid-path1003-6-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,32 C 71.6766,32.384 71.4303,33.0141 71.1016,33.4297 70.7016,33.9353 70.1486,34.4728 69.5703,35.0879 68.4137,36.318 67.1505,37.8697 66.8359,40.1523 66.4697,42.8097 67.0736,46.1499 68.082,49.1621 69.0905,52.1743 70.4921,54.8478 71.8223,56.1777 72.977,57.3322 73.7153,58.5287 74.3906,59.543 75.0659,60.5572 75.6842,61.4095 76.6387,61.7793 77.5931,62.1491 78.813,61.995 80.6035,61.1406 82.394,60.2862 84.7858,58.7236 88.1504,56.1992 91.5358,53.6592 93.258,51.3059 93.9062,49.0742 94.5545,46.8425 94.114,44.7577 93.2598,42.8047 92.4055,40.8516 91.1397,39.0153 90.0977,37.2285 89.106,35.5281 88.3193,33.6309 88.25,32 H 87.75 C 87.7451,33.8688 88.6106,35.6708 89.666,37.4805 90.7214,39.2902 91.9753,41.114 92.8027,43.0059 93.6302,44.8977 94.0341,46.8412 93.4258,48.9355 92.8174,51.0299 91.1816,53.301 87.8496,55.8008 84.4969,58.3162 82.1193,59.8627 80.3867,60.6895 78.6541,61.5162 77.5975,61.6156 76.8203,61.3145 76.0431,61.0133 75.4741,60.27 74.8066,59.2676 74.1392,58.2652 73.3775,57.0237 72.1758,55.8223 70.9615,54.6082 69.5486,51.9668 68.5566,49.0039 67.5647,46.041 66.9839,42.7468 67.332,40.2207 67.6261,38.0864 68.7979,36.6416 69.9355,35.4316 70.5044,34.8267 71.0631,34.2832 71.4941,33.7383 71.9252,33.1934 72.2366,32.6289 72.25,32 Z" id="rtid-path1003-1-8-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccsccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,32 C 103.69,33.4417 103.244,35.9313 102.779,38.5781 102.295,41.3319 101.787,44.4449 101.662,47.3516 101.627,48.1583 101.118,49.2727 100.443,50.4941 99.7688,51.7156 98.9386,53.0524 98.3008,54.3809 97.6629,55.7094 97.2082,57.033 97.3262,58.2539 97.4441,59.4748 98.176,60.5625 99.7715,61.3066 101.456,62.0922 102.844,62.2157 104.031,61.9355 105.218,61.6554 106.19,60.9848 107.09,60.2383 107.99,59.4918 108.822,58.6663 109.719,58.041 110.616,57.4157 111.566,56.9888 112.732,57.0039 113.814,57.0178 114.78,57.5624 115.721,58.3105 116.662,59.0587 117.563,60.0015 118.518,60.752 119.472,61.5024 120.498,62.0726 121.674,61.9961 122.85,61.9196 124.118,61.1981 125.559,59.5176 126.457,58.4697 126.717,57.3408 126.576,56.2285 126.436,55.1162 125.916,54.0191 125.289,52.9453 124.035,50.7977 122.362,48.706 122.215,46.9961 121.784,41.9899 120.255,36.0846 120.25,32 H 119.75 C 119.697,36.2308 121.285,42.0156 121.717,47.0391 121.888,49.0219 123.632,51.0993 124.857,53.1973 125.47,54.2463 125.954,55.292 126.08,56.291 126.206,57.29 125.994,58.2412 125.178,59.1934 123.785,60.8179 122.637,61.4312 121.641,61.4961 120.644,61.5609 119.74,61.078 118.826,60.3594 117.912,59.6408 117.01,58.6979 116.031,57.9199 115.053,57.1419 113.983,56.5199 112.738,56.5039 111.445,56.4872 110.38,56.971 109.434,57.6309 108.487,58.2907 107.648,59.1265 106.771,59.8535 105.895,60.5805 104.988,61.1961 103.916,61.4492 102.844,61.7023 101.592,61.6036 99.9844,60.8535 98.4997,60.1611 97.9267,59.2655 97.8242,58.2051 97.7218,57.1447 98.1308,55.8914 98.752,54.5977 99.3731,53.3039 100.197,51.9742 100.881,50.7363 101.564,49.4984 102.118,48.3589 102.16,47.373 102.283,44.5094 102.788,41.4134 103.271,38.6641 103.755,35.9148 104.218,33.5175 104.25,32 Z" id="rtid-path1003-6-2-4-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccsscccsccscccccsccsccccscccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,0 C 9.3321,1.4439 10.0244,3.49809 10.0215,5.54492 10.0185,7.61813 9.43333,9.91675 8.75781,12.2051 8.0823,14.4934 7.31912,16.7704 6.97852,18.8281 6.63791,20.8858 6.7184,22.7522 7.80273,24.1523 9.90566,26.8678 13.6959,28.5386 17.5605,28.9531 21.4252,29.3676 25.3872,28.5264 27.8203,26.0938 28.188,25.7262 28.3727,25.2681 28.4004,24.7773 28.428,24.2866 28.3092,23.7633 28.0957,23.2109 27.6686,22.1062 26.8582,20.8739 25.9492,19.5684 24.1313,16.9573 21.9261,14.047 21.5547,11.6387 21.2526,9.67993 21.893,7.60466 22.6367,5.60547 23.3463,3.69786 24.1594,1.63409 24.25,0 H 23.75 C 23.731,1.52592 22.9179,3.41364 22.168,5.42969 21.418,7.44573 20.7344,9.59981 21.0605,11.7148 21.4671,14.3512 23.7315,17.2574 25.5391,19.8535 26.4428,21.1516 27.234,22.371 27.6289,23.3926 27.8264,23.9034 27.9242,24.3617 27.9023,24.75 27.8805,25.1383 27.7511,25.456 27.4668,25.7402 25.1861,28.0205 21.3698,28.8599 17.6133,28.457 13.8568,28.0541 10.1818,26.4102 8.19727,23.8477 7.23787,22.6088 7.14014,20.9072 7.4707,18.9102 7.80127,16.9131 8.55936,14.6475 9.23828,12.3477 9.9172,10.0478 10.5184,7.71299 10.5215,5.54688 10.5246,3.38076 9.99442,1.55527 8.25,0 Z" id="rtid-path1003-9-5-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccscccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 55.75,0 C 55.7142,2.88399 57.5697,5.60171 58.1523,9.05664 58.6284,11.8781 59.084,13.7957 59.0645,15.3223 59.0449,16.8488 58.5863,17.9939 57.166,19.4141 56.9525,19.6275 56.8591,19.9208 56.8379,20.2363 56.8167,20.5518 56.8613,20.901 56.9453,21.2793 57.1133,22.0358 57.4376,22.9112 57.7559,23.7949 58.0741,24.6786 58.3862,25.5691 58.5332,26.3242 58.6802,27.0794 58.6475,27.6722 58.3887,28 58.0726,28.4004 57.2569,28.7538 56.1836,28.9824 55.1102,29.211 53.7882,29.3363 52.4648,29.3926 49.818,29.505 47.1478,29.3483 46.377,29.2715 45.9557,29.2295 45.4691,28.8889 44.9648,28.3203 44.4606,27.7517 43.9444,26.9738 43.4316,26.1367 42.4062,24.4625 41.4048,22.557 40.3691,21.5215 40.1273,21.2797 40.0241,21.0404 40.0059,20.7656 39.9876,20.4909 40.0644,20.1733 40.2266,19.8164 40.5509,19.1026 41.2133,18.254 41.9707,17.3301 43.4854,15.4823 45.3883,13.3225 45.6387,10.9355 45.9153,8.2963 44.5022,6.13225 43.0703,4.33984 42.3544,3.44364 41.6285,2.63493 41.0957,1.90625 40.5629,1.17757 40.2387,0.529636 40.25,0 H 39.75 C 39.8188,0.643008 40.202,1.52918 40.6934,2.20117 41.2492,2.96129 41.975,3.77022 42.6797,4.65234 44.0891,6.41659 45.3958,8.44786 45.1406,10.8828 44.915,13.034 43.1056,15.1575 41.584,17.0137 40.8232,17.9418 40.1388,18.8007 39.7715,19.6094 39.5878,20.0137 39.4819,20.4099 39.5078,20.7988 39.5337,21.1878 39.7011,21.5626 40.0156,21.877 40.9445,22.8057 41.969,24.7055 43.0059,26.3984 43.5243,27.2449 44.0482,28.0416 44.5898,28.6523 45.1315,29.2631 45.6951,29.7064 46.3281,29.7695 47.145,29.851 49.8061,30.0045 52.4863,29.8906 53.8265,29.8337 55.1682,29.711 56.2871,29.4727 57.406,29.2343 58.3139,28.9026 58.7812,28.3105 59.1947,27.787 59.1816,27.0405 59.0234,26.2285 58.8653,25.4165 58.5456,24.511 58.2266,23.625 57.9075,22.739 57.5895,21.8722 57.4336,21.1699 57.3556,20.8188 57.3198,20.5095 57.3359,20.2695 57.3521,20.0296 57.4157,19.8714 57.5195,19.7676 58.9996,18.2876 59.5436,16.9572 59.5645,15.3281 59.5853,13.699 59.1179,11.7804 58.6445,8.97461 58.0587,5.50069 56.3225,2.58451 56.25,0 Z" id="rtid-path1003-6-3-0-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscccccccccccccccscccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,0 C 71.6916,0.326208 71.4946,0.944301 71.2363,1.42383 70.9218,2.00786 70.4936,2.67713 70.0449,3.40039 69.1476,4.84692 68.1684,6.50633 67.8809,8.20508 67.3507,11.3364 66.428,16.5919 67.2656,19.6289 67.6269,20.9383 68.0538,22.6978 68.5742,24.3164 69.0947,25.935 69.6888,27.4117 70.4805,28.2031 72.9332,30.6554 77.2286,30.999 81.4844,30.1758 85.7402,29.3525 89.9822,27.3554 92.3945,24.9434 93.1906,24.1475 93.4274,23.1797 93.2812,22.1543 93.1351,21.1289 92.6335,20.0329 91.9785,18.8516 90.6685,16.4889 88.7312,13.7811 87.6348,10.8262 87.0123,9.14881 87.1436,7.12424 87.4492,5.17969 87.7403,3.32754 88.1932,1.35928 88.25,0 H 87.75 C 87.7343,1.27047 87.2654,3.12701 86.9551,5.10156 86.6448,7.07611 86.4907,9.18003 87.166,11 88.2944,14.041 90.2543,16.7731 91.541,19.0938 92.1844,20.2541 92.6568,21.3104 92.7871,22.2246 92.9174,23.1389 92.7337,23.8974 92.041,24.5898 89.7396,26.891 85.5582,28.8794 81.3906,29.6855 77.2231,30.4917 73.0943,30.1095 70.834,27.8496 70.1814,27.1972 69.5633,25.758 69.0508,24.1641 68.5382,22.5701 68.1129,20.8186 67.748,19.4961 66.9767,16.6993 67.8428,11.4187 68.373,8.28711 68.638,6.72186 69.5765,5.10242 70.4688,3.66406 70.9149,2.94488 71.349,2.2706 71.6777,1.66016 72.0065,1.04972 72.2393,0.501447 72.25,0 Z" id="rtid-path1003-1-1-3-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,0 C 103.647,0.80947 102.985,2.17388 102.252,3.55273 101.462,5.03836 100.589,6.7673 100.285,8.6543 99.3513,14.4563 100.844,21.1979 103.822,24.1758 105.011,25.3641 106.046,26.1936 107.021,26.6934 107.997,27.1932 108.922,27.358 109.836,27.2051 111.665,26.8993 113.404,25.3883 115.768,23.0254 117.119,21.6749 119.678,20.0341 120.666,17.4004 121.186,16.0148 122.397,14.6012 123.432,13.1465 124.466,11.6918 125.341,10.1651 125.059,8.51172 124.756,6.7403 123.509,5.23854 122.373,3.85156 121.313,2.55689 120.359,1.12102 120.25,0 H 119.75 C 119.732,1.46039 120.851,2.78259 121.986,4.16992 123.122,5.55726 124.295,7.00657 124.566,8.5957 124.811,10.027 124.041,11.43 123.025,12.8574 122.01,14.2848 120.766,15.7081 120.197,17.2246 119.286,19.6535 116.841,21.2464 115.414,22.6719 113.063,25.0221 111.363,26.4438 109.754,26.7129 108.949,26.8475 108.153,26.7107 107.25,26.248 106.347,25.7854 105.346,24.9899 104.178,23.8223 101.412,21.0572 99.8688,14.391 100.779,8.73438 101.067,6.94903 101.907,5.26482 102.693,3.78711 103.479,2.3094 104.228,1.05557 104.25,0 Z" id="rtid-path1003-6-2-9-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccccscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="18.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask3892"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g3926"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,362.834 V 483.779 H 120.945 V 362.834 L 90.7088,362.835 C 90.5797,373.202 97.8557,388.683 99.2003,401.957 102.823,437.718 98.9244,445.074 87.8908,456.105 79.1805,464.813 69.7202,463.527 59.9817,463.094 49.8011,462.642 39.3403,462.646 30.2363,453.543 20.9501,444.258 19.9609,426.185 22.4222,407.227 24.6823,389.82 30.0529,371.467 30.2363,362.835 Z"
+ id="rtid-path3894"
+ style="fill:#ffffff;stroke-width:1.972157"
+ transform="scale(0.264583)"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 V 128 H 64 V 96 L 56,96.0003 C 55.7792,99.911 58.0485,102.515 58.2957,104.197 58.6205,106.408 59.3913,108.403 60.355,110.772 62.4244,115.86 62.5892,121.139 59.9995,123.728 56.7103,127.017 45.8911,127.212 40.8779,124.814 38.7067,123.775 37.2216,122.576 35.7973,121.152 32.2697,117.626 36.5416,110.369 37.6606,104.055 38.0367,101.932 40.1779,101.539 40,96.0003 Z"
+ id="rtid-path3896"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.9997 V 128 H 96 V 95.9997 L 88,96 C 87.9103,103.205 91.2904,113.728 90.1692,119.729 89.5631,122.973 81.3103,126.239 77.2081,126.313 73.0916,126.387 70.1204,123.583 69.8309,119.729 69.2528,112.035 71.8986,100.771 72,96 Z"
+ id="rtid-path3898"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 V 128 H 128 V 96 L 120,96.0003 C 119.981,97.4942 118.275,101.774 118.549,103.578 119.009,106.611 120.818,110.212 120.94,113.765 121.095,118.29 119.852,123.389 117.221,124.745 113.862,126.475 108.51,125.797 106.508,123.932 104.592,122.147 100.329,120.368 100.481,116.07 100.607,112.489 104.959,106.474 105.464,103.627 105.895,101.195 103.972,97.3349 104,96.0003 Z"
+ id="rtid-path3900"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.9997 V 96 H 32 V 63.9997 L 24,64 C 23.9502,67.9981 17.2051,73.8369 17.7065,78.746 17.8402,80.0543 18.9443,84.2993 20.6536,83.0124 27.9719,77.5027 31.0273,87.2771 26.6437,90.3047 21.159,94.0929 12.3741,95.4912 7.66109,90.7792 5.41095,88.5295 2.50708,82.6214 3.00228,78.0294 3.5443,73.0034 7.94704,66.4932 8.00002,64 Z"
+ id="rtid-path3902"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 V 96 H 64.0001 V 64 L 56.0001,64.0003 C 55.9598,67.2407 55.4617,70.6316 58.2751,72.9289 61.456,75.5263 62.8118,80.3259 60.2181,82.9192 55.5043,87.6322 50.3386,89.1506 47.0939,89.6297 44.1044,90.0712 37.9564,87.8568 37.815,84.753 37.523,78.3432 39.9149,68.0023 40,64.0003 Z"
+ id="rtid-path3904"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,63.9997 V 96 H 96.0001 V 63.9997 L 88.0002,64 C 87.9417,68.7015 87.1866,72.2202 87.2912,77.6724 87.3469,80.5757 83.8863,82.2882 82.2484,83.9258 77.5345,88.6389 76.713,92.712 72,88 67.287,83.288 71.8987,68.771 72,64 Z"
+ id="rtid-path3906"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 V 96 H 128 V 64 L 120,64.0003 C 119.968,66.5447 120.208,75.527 120.762,78.7486 121.777,84.6492 119.321,90.0354 116.272,93.0839 111.558,97.7969 100.057,93.3899 98.5771,88.6779 97.7913,86.1764 101.238,83.161 102.878,77.8789 104.328,73.211 103.953,66.2384 104,64.0003 Z"
+ id="rtid-path3908"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.9997 V 64 H 32 V 31.9997 L 24,32 C 23.9556,35.5634 28.1758,40.3196 28.7819,44.7874 29.4014,49.3533 26.3826,53.6179 24.0001,56 19.2863,60.713 12.713,60.712 8.00002,56 5.4647,53.4652 12.5299,50.0102 13.2377,44.8442 13.8456,40.4069 7.95317,34.2045 8.00002,32 Z"
+ id="rtid-path3910"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 V 64 H 64.0001 V 32 L 56.0001,32.0003 C 55.9104,39.205 57.6463,46.6856 52.9325,51.3986 48.2187,56.1116 39.5364,59.9451 34.8234,55.2331 30.1103,50.5211 39.8986,36.771 40,32.0003 Z"
+ id="rtid-path3912"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="ccccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,31.9997 V 64 H 96.0001 V 31.9997 L 88.0002,32 C 87.9812,39.1615 101.435,45.9204 88.0002,56 74.5657,66.0796 76.713,60.712 72,56 69.4554,53.456 66.3696,45.3696 67.0839,40.1862 67.6926,35.7691 71.9534,34.1951 72,32 Z"
+ id="rtid-path3914"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="ccccczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32 V 64 H 128 V 32 L 120,32.0003 C 119.948,36.1649 121.531,41.959 121.966,47.0177 122.284,50.7105 128.798,55.3553 125.368,59.3552 119.701,65.9652 117.389,56.8142 112.735,56.7543 107.815,56.6909 106.463,64.152 99.8779,61.0808 93.7178,58.2077 101.757,50.9482 101.911,47.3626 102.159,41.5924 103.938,34.9427 104,32.0003 Z"
+ id="rtid-path3916"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,-3e-4 V 32 H 32 V -3e-4 L 24,0 C 23.9599,3.21896 20.6786,7.60311 21.3068,11.6769 22.0848,16.7216 30.2507,23.3099 27.6429,25.9173 22.9291,30.6303 12.0875,29.278 8.00002,24 3.91254,18.722 14.748,6.01635 8.00002,0 Z"
+ id="rtid-path3918"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,0 V 32 H 64.0001 V 0 L 56.0001,3e-4 C 55.9656,2.77163 57.8055,5.49769 58.3988,9.01533 59.348,14.6426 60.2428,16.6902 57.3422,19.5903 56.0729,20.8594 59.9288,26.4522 58.5844,28.1549 57.0173,30.1396 47.9406,29.6791 46.3529,29.5208 44.2443,29.3106 42.1564,23.6635 40.1917,21.6993 37.9666,19.4747 44.9138,15.448 45.3897,10.9099 45.9217,5.83568 39.9465,2.51867 40,3e-4 Z"
+ id="rtid-path3920"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,-3e-4 V 32 H 96.0001 V -3e-4 L 88.0002,0 C 87.9672,2.65434 86.1031,7.41677 87.4008,10.9141 89.6258,16.91 95.1954,21.7902 92.2182,24.7669 87.5043,29.48 75.3709,32.7383 70.6579,28.0263 69.2137,26.5824 68.2329,22.1951 67.5069,19.5632 66.7022,16.6463 67.5963,11.3777 68.1264,8.24622 68.679,4.98223 71.9641,1.68881 72,0 Z"
+ id="rtid-path3922"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,0 V 32 H 128 V 0 L 120,3e-4 C 119.967,2.65051 124.239,5.19375 124.813,8.55431 125.34,11.639 121.521,14.4098 120.432,17.3119 119.482,19.8432 116.979,21.4616 115.59,22.8496 110.876,27.5627 108.713,28.712 104,24 101.128,21.1285 99.6098,14.4242 100.532,8.69489 101.124,5.02254 103.961,1.86377 104,3e-4 Z"
+ id="rtid-path3924"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="52.859087"
+ inkscape:cy="234.982"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.38" />
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask3892)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g3890"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 7.75,96 C 7.69534,97.1043 7.34116,98.9836 6.92773,100.951 6.4918,103.026 5.98635,105.396 5.68555,107.713 5.03061,112.757 5.25877,117.613 7.82422,120.178 10.3005,122.653 13.1738,122.659 15.8594,122.777 17.1404,122.835 18.4252,122.951 19.7012,122.756 20.9772,122.561 22.243,122.044 23.4316,120.855 24.9005,119.387 25.9315,118.113 26.4473,116.027 26.963,113.942 26.9765,111.068 26.4961,106.326 26.3147,104.535 25.7378,102.623 25.2168,100.818 24.7224,99.1064 24.28,97.2813 24.25,96 H 23.75 C 23.7322,97.4315 24.2144,99.1494 24.7363,100.957 25.2583,102.765 25.8238,104.656 25.998,106.377 26.4763,111.097 26.4531,113.926 25.9629,115.908 25.4726,117.891 24.5285,119.052 23.0781,120.502 21.9622,121.618 20.8228,122.079 19.627,122.262 18.4311,122.444 17.1766,122.335 15.8809,122.277 13.1797,122.158 10.5188,122.164 8.17773,119.822 5.82924,117.475 5.53218,112.765 6.17969,107.777 6.47687,105.488 6.97984,103.129 7.41602,101.053 7.85219,98.9769 8.22472,97.1899 8.25,96 Z"
+ id="rtid-path1003-10"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,96 C 39.7946,98.541 39.3391,100.206 38.8164,101.191 38.2734,102.215 37.616,102.873 37.4141,104.012 36.8613,107.131 35.5172,110.519 34.7441,113.588 34.3576,115.122 34.1127,116.579 34.1934,117.896 34.2741,119.214 34.691,120.398 35.6211,121.328 37.0572,122.764 38.5708,123.987 40.7695,125.039 43.3417,126.269 47.3211,126.816 51.0957,126.654 54.8703,126.493 58.436,125.644 60.1758,123.904 61.5326,122.548 62.1495,120.512 62.1738,118.189 62.1981,115.867 61.6311,113.248 60.5859,110.678 59.623,108.311 58.8628,106.336 58.543,104.16 58.4061,103.229 57.7665,102.171 57.2031,100.838 56.665,99.5647 56.1982,97.7913 56.25,96 H 55.75 C 55.6367,98.0067 56.1644,99.6641 56.7422,101.031 57.32,102.398 57.9386,103.482 58.0488,104.232 58.379,106.478 59.1582,108.496 60.123,110.867 61.1467,113.385 61.6972,115.948 61.6738,118.184 61.6504,120.42 61.0552,122.318 59.8223,123.551 58.2728,125.1 54.7848,125.996 51.0742,126.154 47.3636,126.313 43.4274,125.756 40.9863,124.588 38.8426,123.562 37.3871,122.387 35.9746,120.975 35.1409,120.141 34.7669,119.098 34.6914,117.865 34.6159,116.633 34.8482,115.221 35.2285,113.711 35.9892,110.691 37.3401,107.292 37.9062,104.098 38.0806,103.114 38.6826,102.514 39.2598,101.426 39.8369,100.338 40.34,98.8017 40.25,96 Z"
+ id="rtid-path1003-6-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccscccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,96 C 71.6723,98.3648 71.0003,102.46 70.4121,106.734 69.8095,111.114 69.2902,115.864 69.582,119.748 69.8804,123.72 72.9809,126.639 77.2129,126.562 79.3273,126.524 82.4257,125.68 85.1055,124.436 86.4454,123.813 87.6779,123.092 88.625,122.309 89.5721,121.525 90.2451,120.68 90.4141,119.775 90.9879,116.704 90.413,112.561 89.7188,108.275 89.0391,104.08 88.2416,99.5222 88.25,96 H 87.75 C 87.7046,99.6431 88.5316,104.078 89.2246,108.355 89.9176,112.633 90.4713,116.754 89.9238,119.684 89.7897,120.401 89.2056,121.18 88.3066,121.924 87.4077,122.667 86.2063,123.373 84.8945,123.982 82.2709,125.201 79.191,126.027 77.2031,126.062 73.2024,126.134 70.3607,123.447 70.0801,119.711 69.7938,115.901 70.307,111.172 70.9082,106.803 71.5094,102.434 72.1985,98.4275 72.25,96 Z"
+ id="rtid-path1003-1-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,96 C 103.779,96.3567 103.895,96.9902 104.037,97.4824 104.209,98.0768 104.432,98.7594 104.643,99.4727 105.063,100.899 105.419,102.453 105.219,103.584 104.983,104.916 103.777,107.149 102.607,109.461 101.438,111.773 100.297,114.174 100.23,116.061 100.152,118.293 101.235,119.894 102.549,121.125 103.863,122.356 105.417,123.258 106.338,124.115 107.409,125.113 109.286,125.746 111.332,125.936 113.378,126.125 115.597,125.863 117.336,124.967 118.751,124.238 119.733,122.561 120.363,120.518 120.994,118.474 121.268,116.044 121.189,113.756 121.065,110.124 119.247,106.507 118.797,103.541 118.676,102.744 119.013,101.214 119.406,99.7363 119.774,98.3562 120.189,96.8528 120.25,96 H 119.75 C 119.742,96.6548 119.32,98.1224 118.924,99.6094 118.528,101.096 118.15,102.608 118.303,103.615 118.773,106.715 120.57,110.299 120.689,113.773 120.766,116.01 120.496,118.393 119.887,120.369 119.277,122.345 118.324,123.897 117.107,124.523 115.488,125.358 113.349,125.62 111.379,125.438 109.409,125.255 107.608,124.617 106.678,123.75 105.682,122.823 104.149,121.941 102.891,120.762 101.632,119.583 100.657,118.143 100.73,116.078 100.79,114.384 101.888,111.988 103.053,109.686 104.217,107.383 105.442,105.185 105.711,103.67 105.942,102.369 105.549,100.777 105.123,99.332 104.91,98.6094 104.685,97.9245 104.518,97.3438 104.35,96.763 104.244,96.2711 104.25,96 Z"
+ id="rtid-path1003-6-2-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,64 C 7.69186,64.5515 7.42134,65.5192 7.04102,66.4414 6.61628,67.4713 6.0455,68.6751 5.45703,69.9609 4.2801,72.5325 3.03142,75.4286 2.75391,78.002 2.49949,80.361 3.11433,83.0185 4.07031,85.377 5.02629,87.7354 6.31995,89.7908 7.48438,90.9551 9.90455,93.3747 13.3576,94.2161 16.8789,93.9785 20.4002,93.741 24.0032,92.4312 26.7852,90.5098 29.1028,88.9092 29.4464,85.5825 28.2578,83.3398 27.6635,82.2185 26.6623,81.356 25.3301,81.1543 23.9979,80.9525 22.3686,81.4087 20.5039,82.8125 20.1397,83.0867 19.9131,83.0595 19.6328,82.8672 19.3525,82.6748 19.058,82.2558 18.8145,81.7441 18.3273,80.7207 18.0176,79.3329 17.9551,78.7207 17.7169,76.3889 19.2311,73.7336 20.8574,71.166 22.4253,68.6907 24.1079,66.0829 24.25,64 H 23.75 C 23.7268,65.86 22.0689,68.3198 20.4355,70.8984 18.8022,73.4771 17.1938,76.1943 17.457,78.7715 17.5282,79.4677 17.8376,80.8545 18.3633,81.959 18.6261,82.5112 18.9379,82.9968 19.3496,83.2793 19.7613,83.5618 20.3143,83.5821 20.8047,83.2129 22.5992,81.8619 24.0939,81.4725 25.2559,81.6484 26.4178,81.8244 27.28,82.5622 27.8164,83.5742 28.8892,85.5982 28.5679,88.6729 26.502,90.0996 23.7991,91.9665 20.2663,93.2497 16.8457,93.4805 13.4251,93.7112 10.1307,92.8939 7.83789,90.6016 6.75217,89.516 5.46789,87.4954 4.5332,85.1895 3.59852,82.8835 3.00921,80.2894 3.25,78.0566 3.51451,75.6039 4.73892,72.7314 5.91211,70.168 6.4987,68.8863 7.07129,67.6819 7.50391,66.6328 7.93652,65.5838 8.23524,64.6945 8.25,64 Z"
+ id="rtid-path1003-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccsscsccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,64 C 39.6797,65.9884 39.0767,69.6524 38.5195,73.4375 37.9468,77.328 37.4167,81.5217 37.5645,84.7637 37.6035,85.6206 38.0564,86.3984 38.7285,87.0645 39.4006,87.7305 40.2974,88.2958 41.2812,88.748 43.249,89.6525 45.5518,90.1102 47.1309,89.877 50.4131,89.3925 55.6351,87.8543 60.3945,83.0957 61.7613,81.7291 62.0821,79.7803 61.6562,77.8711 61.2304,75.9618 60.0691,74.0698 58.4336,72.7344 57.0792,71.6284 56.5309,70.2839 56.3145,68.7832 56.1092,67.3598 56.2211,65.5489 56.25,64 H 55.75 C 55.73,65.6085 55.5926,67.2744 55.8203,68.8535 56.0481,70.4327 56.6583,71.9317 58.1172,73.123 59.6628,74.385 60.7691,76.1922 61.168,77.9805 61.5668,79.7687 61.2679,81.5154 60.041,82.7422 55.3728,87.4096 50.2636,88.9095 47.0566,89.3828 45.6462,89.5912 43.3793,89.1612 41.4902,88.293 40.5457,87.8588 39.6939,87.3173 39.0801,86.709 38.4662,86.1007 38.0961,85.4372 38.0645,84.7422 37.9201,81.5744 38.4421,77.3927 39.0137,73.5098 39.5853,69.6268 40.2065,66.0462 40.25,64 Z"
+ id="rtid-path1003-6-3-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,64 C 71.6558,66.3661 70.5138,71.2603 69.9473,75.9922 69.6578,78.4097 69.5158,80.8316 69.748,82.9609 69.9803,85.0903 70.5862,86.94 71.8242,88.1777 73.0178,89.371 73.9789,90.0302 74.8652,90.2559 75.7516,90.4816 76.5425,90.2357 77.2715,89.6992 78.7294,88.6262 80.0892,86.4379 82.4258,84.1016 83.2133,83.3142 84.4915,82.4731 85.5762,81.457 86.6608,80.4409 87.5707,79.2198 87.541,77.668 87.4388,72.3428 88.1672,68.5947 88.25,64 H 87.75 C 87.6918,68.6765 86.9358,72.2006 87.041,77.6777 87.0669,79.0291 86.2756,80.1164 85.2344,81.0918 84.1932,82.0672 82.9227,82.8979 82.0723,83.748 79.695,86.125 78.2862,88.333 76.9766,89.2969 76.3218,89.7788 75.7288,89.9601 74.9883,89.7715 74.2477,89.5829 73.3407,88.985 72.1777,87.8223 71.0593,86.7041 70.4715,84.9732 70.2461,82.9062 70.0207,80.8393 70.1563,78.4499 70.4434,76.0527 71.0174,71.2584 72.1978,66.4606 72.25,64 Z"
+ id="rtid-path1003-1-1-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccscccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,64 C 103.735,65.1823 103.804,67.5338 103.715,70.0195 103.622,72.6154 103.351,75.5102 102.639,77.8047 101.829,80.4113 100.572,82.4655 99.5996,84.1992 99.1134,85.0661 98.6974,85.8527 98.4492,86.5996 98.201,87.3465 98.1215,88.063 98.3379,88.752 99.1266,91.2633 102.437,93.5369 106.139,94.6543 109.84,95.7716 113.993,95.7175 116.449,93.2617 119.555,90.1566 122.039,84.699 121.008,78.707 120.474,75.6046 120.228,66.6952 120.25,64 H 119.75 C 119.718,66.5676 119.951,75.5048 120.516,78.791 121.515,84.6001 119.088,89.9144 116.096,92.9062 113.838,95.1632 109.881,95.2617 106.283,94.1758 102.686,93.0899 99.5076,90.8041 98.8164,88.6035 98.6399,88.0416 98.6955,87.443 98.9238,86.7559 99.1522,86.0687 99.5529,85.3033 100.035,84.4434 101,82.7235 102.286,80.6287 103.117,77.9531 103.854,75.5796 104.121,72.654 104.215,70.0371 104.309,67.4202 104.227,65.0996 104.25,64 Z"
+ id="rtid-path1003-6-2-9-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 23.75,32 C 23.7266,33.8817 24.7979,35.9738 25.9238,38.168 27.0497,40.3622 28.2389,42.6513 28.5332,44.8203 29.1353,49.2584 26.1759,53.471 23.8242,55.8223 19.1926,60.4531 12.8085,60.452 8.17773,55.8223 7.89139,55.536 7.75509,55.2614 7.71484,54.9707 7.6746,54.68 7.73395,54.3626 7.88086,54.0098 8.17468,53.3041 8.82703,52.4809 9.59375,51.5703 11.1272,49.7492 13.1183,47.5653 13.4863,44.8789 13.8071,42.5371 12.4423,39.8503 11.0449,37.459 10.3462,36.2633 9.63224,35.1421 9.10156,34.1914 8.57088,33.2407 8.2407,32.4373 8.25,32 H 7.75 C 7.81033,32.6217 8.18082,33.5663 8.66602,34.4355 9.20799,35.4065 9.92072,36.5258 10.6133,37.7109 11.9984,40.0813 13.2773,42.715 12.9902,44.8105 12.6505,47.2901 10.7532,49.4164 9.21094,51.248 8.4398,52.1638 7.75793,53.0018 7.41797,53.8184 7.24799,54.2266 7.16482,54.6354 7.2207,55.0391 7.27659,55.4427 7.47674,55.8303 7.82422,56.1777 12.6194,60.9718 19.3817,60.9729 24.1777,56.1777 26.5911,53.7648 29.666,49.4476 29.0293,44.7539 28.7174,42.4552 27.4938,40.1311 26.3691,37.9395 25.2944,35.8449 24.3161,33.639 24.25,32 Z"
+ id="rtid-path1003-4-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccccscccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,32 C 39.6698,33.1145 39.0664,34.9623 38.2559,36.8828 37.4006,38.9094 36.3138,41.2249 35.375,43.5449 34.4362,45.865 33.6423,48.1881 33.3809,50.2539 33.1194,52.3197 33.3946,54.1586 34.6465,55.4102 37.0812,57.8443 40.5462,58.0632 43.9473,57.0898 47.3483,56.1165 50.7222,53.963 53.1094,51.5762 55.5239,49.1621 56.2813,46.0357 56.4492,42.6465 56.6132,39.3356 56.2266,35.5024 56.25,32 H 55.75 C 55.7049,35.6236 56.1162,39.2905 55.9512,42.6211 55.7862,45.9516 55.0552,48.9238 52.7559,51.2227 50.4293,53.5489 47.1054,55.6658 43.8086,56.6094 40.5118,57.5529 37.2782,57.3344 35,55.0566 33.8953,53.9522 33.6255,52.3031 33.877,50.3164 34.1284,48.3297 34.9061,46.0353 35.8379,43.7324 36.7697,41.4296 37.8556,39.1187 38.7168,37.0781 39.578,35.0375 40.2229,33.2755 40.25,32 Z"
+ id="rtid-path1003-6-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,32 C 71.6766,32.384 71.4303,33.0141 71.1016,33.4297 70.7016,33.9353 70.1486,34.4728 69.5703,35.0879 68.4137,36.318 67.1505,37.8697 66.8359,40.1523 66.4697,42.8097 67.0736,46.1499 68.082,49.1621 69.0905,52.1743 70.4921,54.8478 71.8223,56.1777 72.977,57.3322 73.7153,58.5287 74.3906,59.543 75.0659,60.5572 75.6842,61.4095 76.6387,61.7793 77.5931,62.1491 78.813,61.995 80.6035,61.1406 82.394,60.2862 84.7858,58.7236 88.1504,56.1992 91.5358,53.6592 93.258,51.3059 93.9062,49.0742 94.5545,46.8425 94.114,44.7577 93.2598,42.8047 92.4055,40.8516 91.1397,39.0153 90.0977,37.2285 89.106,35.5281 88.3193,33.6309 88.25,32 H 87.75 C 87.7451,33.8688 88.6106,35.6708 89.666,37.4805 90.7214,39.2902 91.9753,41.114 92.8027,43.0059 93.6302,44.8977 94.0341,46.8412 93.4258,48.9355 92.8174,51.0299 91.1816,53.301 87.8496,55.8008 84.4969,58.3162 82.1193,59.8627 80.3867,60.6895 78.6541,61.5162 77.5975,61.6156 76.8203,61.3145 76.0431,61.0133 75.4741,60.27 74.8066,59.2676 74.1392,58.2652 73.3775,57.0237 72.1758,55.8223 70.9615,54.6082 69.5486,51.9668 68.5566,49.0039 67.5647,46.041 66.9839,42.7468 67.332,40.2207 67.6261,38.0864 68.7979,36.6416 69.9355,35.4316 70.5044,34.8267 71.0631,34.2832 71.4941,33.7383 71.9252,33.1934 72.2366,32.6289 72.25,32 Z"
+ id="rtid-path1003-1-8-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccsccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,32 C 103.69,33.4417 103.244,35.9313 102.779,38.5781 102.295,41.3319 101.787,44.4449 101.662,47.3516 101.627,48.1583 101.118,49.2727 100.443,50.4941 99.7688,51.7156 98.9386,53.0524 98.3008,54.3809 97.6629,55.7094 97.2082,57.033 97.3262,58.2539 97.4441,59.4748 98.176,60.5625 99.7715,61.3066 101.456,62.0922 102.844,62.2157 104.031,61.9355 105.218,61.6554 106.19,60.9848 107.09,60.2383 107.99,59.4918 108.822,58.6663 109.719,58.041 110.616,57.4157 111.566,56.9888 112.732,57.0039 113.814,57.0178 114.78,57.5624 115.721,58.3105 116.662,59.0587 117.563,60.0015 118.518,60.752 119.472,61.5024 120.498,62.0726 121.674,61.9961 122.85,61.9196 124.118,61.1981 125.559,59.5176 126.457,58.4697 126.717,57.3408 126.576,56.2285 126.436,55.1162 125.916,54.0191 125.289,52.9453 124.035,50.7977 122.362,48.706 122.215,46.9961 121.784,41.9899 120.255,36.0846 120.25,32 H 119.75 C 119.697,36.2308 121.285,42.0156 121.717,47.0391 121.888,49.0219 123.632,51.0993 124.857,53.1973 125.47,54.2463 125.954,55.292 126.08,56.291 126.206,57.29 125.994,58.2412 125.178,59.1934 123.785,60.8179 122.637,61.4312 121.641,61.4961 120.644,61.5609 119.74,61.078 118.826,60.3594 117.912,59.6408 117.01,58.6979 116.031,57.9199 115.053,57.1419 113.983,56.5199 112.738,56.5039 111.445,56.4872 110.38,56.971 109.434,57.6309 108.487,58.2907 107.648,59.1265 106.771,59.8535 105.895,60.5805 104.988,61.1961 103.916,61.4492 102.844,61.7023 101.592,61.6036 99.9844,60.8535 98.4997,60.1611 97.9267,59.2655 97.8242,58.2051 97.7218,57.1447 98.1308,55.8914 98.752,54.5977 99.3731,53.3039 100.197,51.9742 100.881,50.7363 101.564,49.4984 102.118,48.3589 102.16,47.373 102.283,44.5094 102.788,41.4134 103.271,38.6641 103.755,35.9148 104.218,33.5175 104.25,32 Z"
+ id="rtid-path1003-6-2-4-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccsscccsccscccccsccsccccscccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,0 C 9.3321,1.4439 10.0244,3.49809 10.0215,5.54492 10.0185,7.61813 9.43333,9.91675 8.75781,12.2051 8.0823,14.4934 7.31912,16.7704 6.97852,18.8281 6.63791,20.8858 6.7184,22.7522 7.80273,24.1523 9.90566,26.8678 13.6959,28.5386 17.5605,28.9531 21.4252,29.3676 25.3872,28.5264 27.8203,26.0938 28.188,25.7262 28.3727,25.2681 28.4004,24.7773 28.428,24.2866 28.3092,23.7633 28.0957,23.2109 27.6686,22.1062 26.8582,20.8739 25.9492,19.5684 24.1313,16.9573 21.9261,14.047 21.5547,11.6387 21.2526,9.67993 21.893,7.60466 22.6367,5.60547 23.3463,3.69786 24.1594,1.63409 24.25,0 H 23.75 C 23.731,1.52592 22.9179,3.41364 22.168,5.42969 21.418,7.44573 20.7344,9.59981 21.0605,11.7148 21.4671,14.3512 23.7315,17.2574 25.5391,19.8535 26.4428,21.1516 27.234,22.371 27.6289,23.3926 27.8264,23.9034 27.9242,24.3617 27.9023,24.75 27.8805,25.1383 27.7511,25.456 27.4668,25.7402 25.1861,28.0205 21.3698,28.8599 17.6133,28.457 13.8568,28.0541 10.1818,26.4102 8.19727,23.8477 7.23787,22.6088 7.14014,20.9072 7.4707,18.9102 7.80127,16.9131 8.55936,14.6475 9.23828,12.3477 9.9172,10.0478 10.5184,7.71299 10.5215,5.54688 10.5246,3.38076 9.99442,1.55527 8.25,0 Z"
+ id="rtid-path1003-9-5-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccscccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 55.75,0 C 55.7142,2.88399 57.5697,5.60171 58.1523,9.05664 58.6284,11.8781 59.084,13.7957 59.0645,15.3223 59.0449,16.8488 58.5863,17.9939 57.166,19.4141 56.9525,19.6275 56.8591,19.9208 56.8379,20.2363 56.8167,20.5518 56.8613,20.901 56.9453,21.2793 57.1133,22.0358 57.4376,22.9112 57.7559,23.7949 58.0741,24.6786 58.3862,25.5691 58.5332,26.3242 58.6802,27.0794 58.6475,27.6722 58.3887,28 58.0726,28.4004 57.2569,28.7538 56.1836,28.9824 55.1102,29.211 53.7882,29.3363 52.4648,29.3926 49.818,29.505 47.1478,29.3483 46.377,29.2715 45.9557,29.2295 45.4691,28.8889 44.9648,28.3203 44.4606,27.7517 43.9444,26.9738 43.4316,26.1367 42.4062,24.4625 41.4048,22.557 40.3691,21.5215 40.1273,21.2797 40.0241,21.0404 40.0059,20.7656 39.9876,20.4909 40.0644,20.1733 40.2266,19.8164 40.5509,19.1026 41.2133,18.254 41.9707,17.3301 43.4854,15.4823 45.3883,13.3225 45.6387,10.9355 45.9153,8.2963 44.5022,6.13225 43.0703,4.33984 42.3544,3.44364 41.6285,2.63493 41.0957,1.90625 40.5629,1.17757 40.2387,0.529636 40.25,0 H 39.75 C 39.8188,0.643008 40.202,1.52918 40.6934,2.20117 41.2492,2.96129 41.975,3.77022 42.6797,4.65234 44.0891,6.41659 45.3958,8.44786 45.1406,10.8828 44.915,13.034 43.1056,15.1575 41.584,17.0137 40.8232,17.9418 40.1388,18.8007 39.7715,19.6094 39.5878,20.0137 39.4819,20.4099 39.5078,20.7988 39.5337,21.1878 39.7011,21.5626 40.0156,21.877 40.9445,22.8057 41.969,24.7055 43.0059,26.3984 43.5243,27.2449 44.0482,28.0416 44.5898,28.6523 45.1315,29.2631 45.6951,29.7064 46.3281,29.7695 47.145,29.851 49.8061,30.0045 52.4863,29.8906 53.8265,29.8337 55.1682,29.711 56.2871,29.4727 57.406,29.2343 58.3139,28.9026 58.7812,28.3105 59.1947,27.787 59.1816,27.0405 59.0234,26.2285 58.8653,25.4165 58.5456,24.511 58.2266,23.625 57.9075,22.739 57.5895,21.8722 57.4336,21.1699 57.3556,20.8188 57.3198,20.5095 57.3359,20.2695 57.3521,20.0296 57.4157,19.8714 57.5195,19.7676 58.9996,18.2876 59.5436,16.9572 59.5645,15.3281 59.5853,13.699 59.1179,11.7804 58.6445,8.97461 58.0587,5.50069 56.3225,2.58451 56.25,0 Z"
+ id="rtid-path1003-6-3-0-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscccccccccccccccscccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,0 C 71.6916,0.326208 71.4946,0.944301 71.2363,1.42383 70.9218,2.00786 70.4936,2.67713 70.0449,3.40039 69.1476,4.84692 68.1684,6.50633 67.8809,8.20508 67.3507,11.3364 66.428,16.5919 67.2656,19.6289 67.6269,20.9383 68.0538,22.6978 68.5742,24.3164 69.0947,25.935 69.6888,27.4117 70.4805,28.2031 72.9332,30.6554 77.2286,30.999 81.4844,30.1758 85.7402,29.3525 89.9822,27.3554 92.3945,24.9434 93.1906,24.1475 93.4274,23.1797 93.2812,22.1543 93.1351,21.1289 92.6335,20.0329 91.9785,18.8516 90.6685,16.4889 88.7312,13.7811 87.6348,10.8262 87.0123,9.14881 87.1436,7.12424 87.4492,5.17969 87.7403,3.32754 88.1932,1.35928 88.25,0 H 87.75 C 87.7343,1.27047 87.2654,3.12701 86.9551,5.10156 86.6448,7.07611 86.4907,9.18003 87.166,11 88.2944,14.041 90.2543,16.7731 91.541,19.0938 92.1844,20.2541 92.6568,21.3104 92.7871,22.2246 92.9174,23.1389 92.7337,23.8974 92.041,24.5898 89.7396,26.891 85.5582,28.8794 81.3906,29.6855 77.2231,30.4917 73.0943,30.1095 70.834,27.8496 70.1814,27.1972 69.5633,25.758 69.0508,24.1641 68.5382,22.5701 68.1129,20.8186 67.748,19.4961 66.9767,16.6993 67.8428,11.4187 68.373,8.28711 68.638,6.72186 69.5765,5.10242 70.4688,3.66406 70.9149,2.94488 71.349,2.2706 71.6777,1.66016 72.0065,1.04972 72.2393,0.501447 72.25,0 Z"
+ id="rtid-path1003-1-1-3-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,0 C 103.647,0.80947 102.985,2.17388 102.252,3.55273 101.462,5.03836 100.589,6.7673 100.285,8.6543 99.3513,14.4563 100.844,21.1979 103.822,24.1758 105.011,25.3641 106.046,26.1936 107.021,26.6934 107.997,27.1932 108.922,27.358 109.836,27.2051 111.665,26.8993 113.404,25.3883 115.768,23.0254 117.119,21.6749 119.678,20.0341 120.666,17.4004 121.186,16.0148 122.397,14.6012 123.432,13.1465 124.466,11.6918 125.341,10.1651 125.059,8.51172 124.756,6.7403 123.509,5.23854 122.373,3.85156 121.313,2.55689 120.359,1.12102 120.25,0 H 119.75 C 119.732,1.46039 120.851,2.78259 121.986,4.16992 123.122,5.55726 124.295,7.00657 124.566,8.5957 124.811,10.027 124.041,11.43 123.025,12.8574 122.01,14.2848 120.766,15.7081 120.197,17.2246 119.286,19.6535 116.841,21.2464 115.414,22.6719 113.063,25.0221 111.363,26.4438 109.754,26.7129 108.949,26.8475 108.153,26.7107 107.25,26.248 106.347,25.7854 105.346,24.9899 104.178,23.8223 101.412,21.0572 99.8688,14.391 100.779,8.73438 101.067,6.94903 101.907,5.26482 102.693,3.78711 103.479,2.3094 104.228,1.05557 104.25,0 Z"
+ id="rtid-path1003-6-2-9-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/19.svg b/src/asset/tile/frontier/basic/19.svg
index 4379543..9198cf8 100644
--- a/src/asset/tile/frontier/basic/19.svg
+++ b/src/asset/tile/frontier/basic/19.svg
@@ -1,111 +1,530 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bnotbottomleftcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2155" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g2259" transform="scale(1)">
- <ns0:g id="rtid-g2189" transform="translate(0,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2157" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2159" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2161" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2163" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2165" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2167" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2169" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2171" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2173" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2175" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2177" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2179" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2181" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2183" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2185" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2187" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2223" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2191" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2193" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2195" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2197" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2199" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2201" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2203" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2205" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2207" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2209" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2211" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2213" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2215" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2217" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2219" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2221" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2257" transform="matrix(-1,0,0,1,128,0)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2225" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2227" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2229" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2231" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2233" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2235" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2237" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2239" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2241" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2243" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2245" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2247" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2249" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2251" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2253" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2255" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="342.15482" ns1:cy="3.9290382" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="11.04" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="19.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2155"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g2259"
+ transform="scale(1)">
+ <g
+ id="rtid-g2189"
+ transform="translate(0,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2157"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2159"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2161"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2163"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2165"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2167"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2169"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2171"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2173"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2175"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2177"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2179"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2181"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2183"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2185"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2187"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2223"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2191"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2193"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2195"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2197"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2199"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2201"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2203"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2205"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2207"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2209"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2211"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2213"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2215"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2217"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2219"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2221"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2257"
+ transform="matrix(-1,0,0,1,128,0)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2225"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2227"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2229"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2231"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2233"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2235"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2237"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2239"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2241"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2243"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2245"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2247"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2249"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2251"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2253"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2255"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="72.713672"
+ inkscape:cy="295.45211"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.38" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2155)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.144384,0.37417 -0.34,0.5 -1.516168,0.97531 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.25 0.644302,-0.24592 1.454216,-0.722 2.98,-1.8 0.315153,-0.22266 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccssccssccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="rotate(-180,64,63.99)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- <ns0:use height="100%" id="rtid-use2110" transform="matrix(-1,0,0,1,128,0)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2155)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.144384,0.37417 -0.34,0.5 -1.516168,0.97531 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.25 0.644302,-0.24592 1.454216,-0.722 2.98,-1.8 0.315153,-0.22266 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccssccssccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="rotate(-180,64,63.99)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ <use
+ height="100%"
+ id="rtid-use2110"
+ transform="matrix(-1,0,0,1,128,0)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/2.svg b/src/asset/tile/frontier/basic/2.svg
index 2072d4b..e33dfca 100644
--- a/src/asset/tile/frontier/basic/2.svg
+++ b/src/asset/tile/frontier/basic/2.svg
@@ -1,113 +1,526 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomandleftbordersandcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask4387" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g4457" transform="matrix(1,0,0,-1,0,128.005)">
- <ns0:g id="rtid-g4421" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z" id="rtid-path4389" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z" id="rtid-path4391" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z" id="rtid-path4393" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z" id="rtid-path4395" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z" id="rtid-path4397" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z" id="rtid-path4399" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z" id="rtid-path4401" style="fill:#ffffff;stroke-width:0.5215" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z" id="rtid-path4403" style="fill:#ffffff;stroke-width:0.5214" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z" id="rtid-path4405" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z" id="rtid-path4407" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccsssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z" id="rtid-path4409" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z" id="rtid-path4411" style="fill:#ffffff;stroke-width:0.5232" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z" id="rtid-path4413" style="fill:#ffffff;stroke-width:0.5231" ns2:nodetypes="cccsssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z" id="rtid-path4415" style="fill:#ffffff;stroke-width:0.5212" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z" id="rtid-path4417" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z" id="rtid-path4419" style="fill:#ffffff;stroke-width:0.5213" ns2:nodetypes="cccssssssssssssssccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g4455" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path4423" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path4425" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path4427" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path4429" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path4431" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path4433" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path4435" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path4437" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path4439" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path4441" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path4443" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path4445" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path4447" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path4449" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path4451" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path4453" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="13.129963" ns1:cy="462.61682" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="31.225824">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="2.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask4387"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g4457"
+ transform="matrix(1,0,0,-1,0,128.005)">
+ <g
+ id="rtid-g4421"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z"
+ id="rtid-path4389"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z"
+ id="rtid-path4391"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z"
+ id="rtid-path4393"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z"
+ id="rtid-path4395"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z"
+ id="rtid-path4397"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z"
+ id="rtid-path4399"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z"
+ id="rtid-path4401"
+ style="fill:#ffffff;stroke-width:0.5215"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z"
+ id="rtid-path4403"
+ style="fill:#ffffff;stroke-width:0.5214"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z"
+ id="rtid-path4405"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z"
+ id="rtid-path4407"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccsssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z"
+ id="rtid-path4409"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z"
+ id="rtid-path4411"
+ style="fill:#ffffff;stroke-width:0.5232"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z"
+ id="rtid-path4413"
+ style="fill:#ffffff;stroke-width:0.5231"
+ sodipodi:nodetypes="cccsssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z"
+ id="rtid-path4415"
+ style="fill:#ffffff;stroke-width:0.5212"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z"
+ id="rtid-path4417"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z"
+ id="rtid-path4419"
+ style="fill:#ffffff;stroke-width:0.5213"
+ sodipodi:nodetypes="cccssssssssssssssccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g4455"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path4423"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path4425"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path4427"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path4429"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path4431"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path4433"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path4435"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path4437"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path4439"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path4441"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path4443"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path4445"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path4447"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path4449"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path4451"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path4453"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="143.79604"
+ inkscape:cy="326.89379"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.3799995">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask4387)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g4258" transform="matrix(1,0,0,-1,0,128)">
- <ns0:g id="rtid-g1931" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.00587,0.0179 -0.0794,0.2775 -0.08594,0.2969 -0.06287,0.1867 -0.15724,0.4398 -0.27148,0.748 -0.22848,0.6164 -0.5424,1.4486 -0.87696,2.4121 -0.6691,1.927 -1.42334,4.379 -1.75585,6.707 v 0.002 c -0.4895,3.547 -0.50594,10.988 -0.43555,12.248 0.04495,0.797 0.53639,1.591 1.25781,2.357 0.72142,0.767 1.6859,1.508 2.73633,2.167 2.10084,1.316 4.52494,2.305 6.09574,2.412 h 0.0078 0.0078 c 0.8428,0 1.9229,-0.63 3.3125,-1.379 1.3891,-0.75 3.0513,-1.642 4.873,-2.233 3.8849,-1.238 8.5466,-1.473 9.3848,-1.488 v -0.5 c -0.6737,0 -5.4086,0.197 -9.5352,1.512 h -0.0019 c -1.8776,0.609 -3.5686,1.517 -4.959,2.267 -1.3879,0.749 -2.5101,1.317 -3.0684,1.319 -1.3907,-0.098 -3.8082,-1.054 -5.85152,-2.334 -1.02381,-0.642 -1.95783,-1.365 -2.63671,-2.086 -0.67889,-0.721 -1.08901,-1.438 -1.12305,-2.041 -0.06365,-1.14 -0.04486,-8.7 0.43164,-12.153 0.32446,-2.271 1.06828,-4.7 1.73242,-6.6129 0.33207,-0.9564 0.64375,-1.7838 0.87305,-2.4023 0.11465,-0.3093 0.20882,-0.566 0.27539,-0.7637 C 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z" id="rtid-path1429-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c 0.0089,0.1209 0.0315,0.4553 0.0449,0.6895 0.0208,0.3642 0.0397,0.8497 0.0352,1.3984 -0.009,1.0974 -0.1159,2.4471 -0.4844,3.5551 -0.277,0.832 -0.8162,1.42 -1.3555,2.074 -0.5392,0.653 -1.0752,1.379 -1.2285,2.447 -0.124,0.865 0.4155,1.821 0.9258,2.846 0.5103,1.024 1.0125,2.103 0.9824,3.058 -0.0931,2.95 -0.2835,4.626 -0.2383,5.397 0.0402,0.689 -0.003,1.719 0.2188,2.754 0.2218,1.034 0.7276,2.092 1.8555,2.789 1.0846,0.67 2.3097,0.781 3.4277,0.746 1.118,-0.036 2.1488,-0.212 2.8184,-0.166 0.4636,0.031 1.2531,0.344 2.2265,0.562 0.9735,0.219 2.1547,0.334 3.4668,-0.062 0.2381,-0.072 0.6346,-0.269 1.1777,-0.543 0.5432,-0.274 1.2055,-0.621 1.8711,-0.969 0.6656,-0.348 1.3341,-0.698 1.8848,-0.976 0.5508,-0.278 1.0031,-0.488 1.1602,-0.539 2.0231,-0.657 3.2292,-0.856 3.9961,-0.895 0.636,-0.032 1.1544,0.056 1.4648,0.084 v -0.5 c -0.249,0 -0.6636,-0.126 -1.4902,-0.084 -0.8266,0.042 -2.0748,0.253 -4.125,0.918 -0.2505,0.081 -0.6745,0.288 -1.2305,0.568 -0.556,0.281 -1.225,0.633 -1.8906,0.981 -0.6657,0.348 -1.3293,0.693 -1.8672,0.965 -0.5379,0.271 -0.9777,0.476 -1.0957,0.511 -1.2077,0.365 -2.2846,0.261 -3.211,0.053 -0.9263,-0.208 -1.6793,-0.532 -2.3046,-0.574 -0.7836,-0.053 -1.7942,0.132 -2.8672,0.166 -1.0731,0.034 -2.1885,-0.077 -3.1504,-0.672 -0.9944,-0.615 -1.4244,-1.515 -1.6289,-2.469 -0.2045,-0.953 -0.1642,-1.942 -0.2071,-2.677 -0.0373,-0.636 0.1447,-2.388 0.2383,-5.352 0.0358,-1.135 -0.5223,-2.267 -1.0351,-3.297 -0.5129,-1.029 -0.9607,-1.967 -0.877,-2.551 0.1349,-0.939 0.5899,-1.562 1.1172,-2.201 0.5273,-0.639 1.1294,-1.285 1.4453,-2.234 0.3972,-1.195 0.5006,-2.5836 0.5098,-3.7092 C 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z" id="rtid-path1429-3-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,119.75 c -0.1304,0 -0.5351,-0.025 -1.0996,-0.043 -0.5645,-0.018 -1.302,-0.03 -2.1484,0 -1.693,0.061 -3.8238,0.285 -5.9004,0.945 h -0.002 c -3.6497,1.184 -4.7776,0.294 -6.8574,0.266 -0.5416,-0.007 -1.2305,0.196 -2.0371,0.434 -0.8067,0.237 -1.7191,0.517 -2.6367,0.685 -0.9177,0.168 -1.837,0.223 -2.6524,0.033 -0.8154,-0.19 -1.5294,-0.612 -2.0879,-1.445 -0.6269,-0.935 -0.6556,-2.243 -0.4902,-3.582 0.1654,-1.339 0.5189,-2.685 0.5723,-3.715 0.0328,-0.631 -0.0207,-1.793 -0.0176,-3.25 0.003,-1.457 0.0602,-3.196 0.3086,-4.928 0.3283,-2.288 0.3163,-2.713 0.9746,-4.619 0.3416,-0.9886 0.4135,-1.5254 0.3984,-2.1033 C 72.3091,97.8498 72.219,97.2389 72.25,96 h -0.5 c -0.0072,1.0234 0.0617,1.9639 0.0742,2.4414 0.0139,0.5333 -0.0401,0.9676 -0.3711,1.9256 -0.6667,1.93 -0.6692,2.435 -0.9961,4.713 -0.2535,1.767 -0.3113,3.527 -0.3144,4.996 -0.0031,1.469 0.0472,2.658 0.0176,3.227 -0.0485,0.935 -0.3976,2.296 -0.5684,3.679 -0.1708,1.384 -0.1701,2.816 0.5703,3.92 0.6263,0.934 1.4723,1.443 2.3887,1.657 0.9163,0.213 1.9017,0.144 2.8574,-0.032 0.9557,-0.175 1.8845,-0.458 2.6875,-0.695 0.803,-0.237 1.4918,-0.419 1.8906,-0.414 1.934,0.026 3.2675,0.925 7.0176,-0.291 l -0.0019,0.002 c 2.0133,-0.64 4.1038,-0.862 5.7675,-0.922 0.8319,-0.03 1.5565,-0.018 2.1133,0 0.4322,0.014 0.9081,0.036 1.1172,0.043 z" id="rtid-path1429-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccscsccccscccccscccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,119.75 c -2.032,0.034 -2.99,-0.085 -3.885,-0.125 -0.894,-0.04 -1.718,0.006 -3.396,0.369 -0.152,0.033 -0.481,0.04 -0.871,0.02 -0.391,-0.021 -0.851,-0.063 -1.313,-0.102 -0.462,-0.039 -0.927,-0.077 -1.334,-0.088 -0.406,-0.011 -0.746,-0.002 -1.013,0.082 -0.88,0.279 -1.573,0.216 -2.168,-0.025 -0.596,-0.242 -1.097,-0.674 -1.54,-1.156 -0.442,-0.482 -0.823,-1.011 -1.193,-1.434 -0.37,-0.423 -0.741,-0.779 -1.226,-0.779 -1.489,-0.1 -3.036,0.177 -4.178,0.133 -0.573,-0.023 -1.03,-0.127 -1.332,-0.352 -0.302,-0.225 -0.493,-0.574 -0.516,-1.225 v -0.006 -0.005 c -0.056,-0.678 -0.431,-1.705 -0.721,-3.034 -0.289,-1.328 -0.495,-2.929 -0.236,-4.634 0.146,-0.962 0.46,-1.673 0.776,-2.418 0.315,-0.746 0.628,-1.526 0.73,-2.575 0.131,-1.344 0.047,-2.12 -0.07,-2.9585 C 104.397,98.5986 104.25,97.6918 104.25,96 h -0.5 c 0.019,1.4996 0.16,2.7336 0.268,3.5059 0.115,0.8311 0.197,1.5361 0.07,2.8421 -0.095,0.974 -0.383,1.687 -0.695,2.427 -0.313,0.741 -0.654,1.509 -0.811,2.539 -0.272,1.791 -0.052,3.454 0.244,4.815 0.297,1.361 0.668,2.449 0.711,2.971 v -0.012 c 0.027,0.749 0.284,1.286 0.715,1.607 0.431,0.322 0.991,0.426 1.611,0.45 1.241,0.047 2.774,-0.23 4.18,-0.133 h 0.01 0.008 c 0.214,0 0.504,0.214 0.849,0.609 0.345,0.395 0.734,0.931 1.203,1.441 0.469,0.511 1.023,0.999 1.719,1.282 0.696,0.282 1.531,0.348 2.506,0.039 0.14,-0.044 0.463,-0.069 0.85,-0.059 0.386,0.011 0.844,0.047 1.304,0.086 0.46,0.039 0.923,0.081 1.328,0.102 0.405,0.021 0.744,0.027 1.004,-0.03 1.654,-0.358 2.403,-0.395 3.268,-0.357 0.809,0.036 2.112,0.139 3.908,0.125 z" id="rtid-path1429-3-6-7-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c 0.002,0.7276 0.023,5.8956 -0.648,10.3066 v 0.002 c -0.256,1.793 -0.027,3.1727 0.277,4.2422 0.303,1.066 0.664,1.8347 0.709,2.3496 0.02,0.5969 -0.337,1.2518 -0.912,1.9297 -0.576,0.6792 -1.353,1.3705 -2.086,2.0527 -0.734,0.6822 -1.4243,1.3525 -1.838,2.0371 -0.2069,0.3423 -0.3472,0.6931 -0.3672,1.0547 -0.0201,0.3616 0.0895,0.7282 0.3398,1.0586 0.006,0.0079 0.072,0.1314 0.1406,0.2988 0.0687,0.1674 0.1525,0.3892 0.2539,0.6446 0.2029,0.5106 0.4739,1.1595 0.8339,1.8242 0.72,1.3293 1.805,2.7405 3.459,3.1797 1.606,0.4262 3.696,-0.0673 5.443,-0.7051 0.874,-0.3189 1.661,-0.6768 2.252,-0.9902 0.296,-0.1568 0.543,-0.3019 0.731,-0.4278 0.188,-0.1259 0.307,-0.1971 0.402,-0.3574 0.099,-0.1671 0.126,-0.3547 0.141,-0.5762 0.015,-0.2215 0.009,-0.4762 -0.004,-0.7578 -0.027,-0.5631 -0.088,-1.229 -0.107,-1.8808 -0.02,-0.6519 0.006,-1.2899 0.134,-1.7715 0.129,-0.4817 0.333,-0.7786 0.686,-0.8907 0.16,-0.0505 0.572,0.0163 1.064,0.2168 0.493,0.2006 1.071,0.5074 1.645,0.8204 0.574,0.3129 1.142,0.6338 1.633,0.8671 0.245,0.1167 0.471,0.2115 0.675,0.2735 0.204,0.062 0.385,0.0994 0.575,0.0547 2.151,-0.5079 6.23,-0.5709 8.818,-0.6055 v -0.5 c -2.583,0.0344 -6.596,0.0678 -8.932,0.6191 -0.029,0.0069 -0.152,0.0031 -0.316,-0.0468 -0.164,-0.05 -0.373,-0.1374 -0.606,-0.2481 -0.465,-0.2214 -1.03,-0.5385 -1.607,-0.8535 -0.577,-0.315 -1.166,-0.6281 -1.695,-0.8437 -0.53,-0.2157 -0.995,-0.3602 -1.405,-0.2305 -0.553,0.1754 -0.865,0.6692 -1.017,1.2383 -0.152,0.5691 -0.172,1.2413 -0.152,1.914 0.019,0.6727 0.081,1.3451 0.107,1.8907 0.013,0.2727 0.018,0.514 0.006,0.7011 -0.013,0.1871 -0.052,0.321 -0.072,0.3555 0.021,-0.0365 -0.085,0.0835 -0.252,0.1953 -0.167,0.1118 -0.401,0.2516 -0.686,0.4024 -0.569,0.3014 -1.338,0.6523 -2.189,0.9628 -1.702,0.6212 -3.741,1.0637 -5.143,0.6914 -1.448,-0.3842 -2.459,-1.6617 -3.148,-2.9355 -0.345,-0.6369 -0.609,-1.2675 -0.809,-1.7715 -0.1001,-0.252 -0.1834,-0.4718 -0.2559,-0.6484 -0.0724,-0.1767 -0.1202,-0.3002 -0.2051,-0.4121 -0.1885,-0.2489 -0.2521,-0.4784 -0.2382,-0.7285 0.0138,-0.2502 0.1154,-0.5273 0.2949,-0.8243 0.3593,-0.594 1.0243,-1.251 1.7523,-1.9277 0.727,-0.6767 1.514,-1.3756 2.125,-2.0957 0.61,-0.7201 1.06,-1.4733 1.031,-2.2754 V 80.873 80.8672 c -0.057,-0.685 -0.437,-1.4281 -0.729,-2.4531 -0.291,-1.0246 -0.507,-2.3174 -0.263,-4.0332 v -0.002 C 104.3,69.7492 104.25,64.3795 104.25,64 Z" id="rtid-path1429-3-6-7-5-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c 0.0091,1.5714 0.0802,3.0066 0.0508,3.8496 -0.0315,0.9016 -0.1655,1.4906 -0.5938,2.1231 -0.0813,0.12 -0.1758,0.1465 -0.4023,0.125 -0.2265,-0.0216 -0.5386,-0.1187 -0.8731,-0.2325 -0.3344,-0.1137 -0.6932,-0.242 -1.0527,-0.3066 -0.3595,-0.0646 -0.7329,-0.0682 -1.0625,0.1094 -0.7224,0.3889 -1.0902,1.3135 -1.3437,2.25 -0.2536,0.9365 -0.3718,1.9133 -0.4512,2.4355 -0.5429,3.5676 -0.1219,10.334 -0.0195,11.5664 0.0143,0.4008 0.1568,0.7426 0.3984,0.9942 0.2416,0.2515 0.5685,0.4126 0.9434,0.5156 0.7497,0.206 1.7106,0.1921 2.7539,0.1035 2.0864,-0.1771 4.5154,-0.6677 5.8886,-0.5684 h 0.0078 0.0098 c 0.5933,0 1.6161,0.4351 2.9297,0.7422 1.3136,0.3071 2.9464,0.4678 4.8516,-0.1347 0.7431,-0.2351 1.6039,-0.0972 2.4882,0.0937 0.8844,0.191 1.7831,0.4364 2.627,0.3125 1.13,-0.1658 1.9125,-0.1031 2.9199,0.0039 0.9472,0.1006 2.4274,0.2512 4.1797,0.2676 v -0.5 c -1.923,0 -3.1125,-0.1579 -4.127,-0.2656 -1.0144,-0.1077 -1.8632,-0.1754 -3.0449,-0.002 -0.6935,0.1018 -1.5511,-0.1108 -2.4492,-0.3047 -0.8981,-0.1939 -1.8455,-0.3682 -2.7441,-0.0839 -1.8035,0.5703 -3.3254,0.422 -4.5879,0.1269 -1.26,-0.2946 -2.2315,-0.7521 -3.0371,-0.7539 -1.5273,-0.1078 -3.9177,0.3956 -5.9532,0.5684 -1.0197,0.0865 -1.9451,0.0866 -2.58,-0.0879 C 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 c -0.0983,-1.1791 -0.5076,-8.0227 0.0156,-11.4609 0.082,-0.5395 0.1986,-1.4914 0.4395,-2.3809 0.2408,-0.8894 0.626,-1.6874 1.0976,-1.9414 0.1846,-0.0994 0.4341,-0.1109 0.7364,-0.0566 0.3022,0.0543 0.6451,0.1723 0.9824,0.2871 0.3373,0.1147 0.6668,0.2276 0.9844,0.2578 0.3175,0.0302 0.6678,-0.0505 0.8652,-0.3418 0.485,-0.7161 0.6447,-1.4407 0.6777,-2.3867 C 72.3318,66.9211 72.25,65.7359 72.25,64 Z" id="rtid-path1429-3-6-7-5-3-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c -0.0041,0.9064 -0.0406,2.456 -0.1562,3.8125 -0.1239,1.4517 -0.3471,2.9029 -0.6954,3.7305 -0.2745,0.6512 -1.1623,1.8818 -1.8222,3.1386 -0.3302,0.6288 -0.6057,1.269 -0.7207,1.8848 -0.1151,0.6158 -0.0627,1.2254 0.3007,1.7129 1.8782,2.519 2.099,4.6977 2.2754,6.1465 0.0882,0.7244 0.1304,1.2888 0.4961,1.6465 0.1829,0.1788 0.4495,0.2624 0.7461,0.248 0.2967,-0.0144 0.6388,-0.1102 1.0723,-0.2832 0.3027,-0.1208 0.5185,-0.1488 0.6601,-0.1289 0.1417,0.0199 0.2229,0.0743 0.3067,0.1816 0.1676,0.2147 0.2739,0.6831 0.375,1.2168 0.1011,0.5338 0.2085,1.1316 0.5059,1.6368 0.2973,0.5051 0.8174,0.9003 1.6113,0.955 h 0.0097 0.0079 c 1.5002,0 3.8757,-0.8548 7.58,-2.0293 0.4296,-0.1362 1.3992,0.0301 2.3633,0.25 0.9642,0.2199 1.9177,0.4843 2.5957,0.3575 1.4727,-0.2759 2.3173,-0.3205 3.2188,-0.3028 0.8364,0.0164 2.0711,0.0852 3.5195,0.0762 v -0.5 c -1.6384,0.0238 -2.5854,-0.058 -3.5098,-0.0762 -0.9243,-0.0181 -1.8225,0.03 -3.3203,0.3106 -0.4404,0.0824 -1.4225,-0.1304 -2.3926,-0.3516 -0.97,-0.2212 -1.9332,-0.4596 -2.625,-0.2402 -3.7043,1.1745 -6.1187,2.001 -7.4199,2.0039 -0.648,-0.0477 -0.9743,-0.3117 -1.207,-0.707 -0.2342,-0.3978 -0.3463,-0.9436 -0.4473,-1.4766 -0.1009,-0.533 -0.1785,-1.0529 -0.4726,-1.4297 -0.1471,-0.1884 -0.3663,-0.3319 -0.6309,-0.3691 -0.2645,-0.0372 -0.5615,0.0175 -0.9141,0.1582 -0.4063,0.1621 -0.7088,0.2381 -0.9121,0.248 -0.2032,0.0099 -0.2927,-0.0288 -0.3711,-0.1055 -0.1567,-0.1533 -0.26,-0.6297 -0.3476,-1.3496 -0.1753,-1.4398 -0.4227,-3.769 -2.3731,-6.3847 -0.2593,-0.3479 -0.3106,-0.787 -0.2109,-1.3203 0.0997,-0.5334 0.3558,-1.1405 0.6738,-1.7461 0.636,-1.2112 1.5089,-2.3916 1.8399,-3.1778 0.3973,-0.944 0.6088,-2.4081 0.7344,-3.8808 C 40.2193,66.3827 40.25,64.9102 40.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-93" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,64 c -0.04455,2.0095 -0.50495,3.1644 -1.06641,4.0684 -0.59076,0.9511 -1.3019,1.981 -1.63476,4.3222 -0.07485,0.5267 0.05132,1.266 0.11523,2.125 0.06392,0.859 0.07194,1.8168 -0.18359,2.6719 -0.34551,1.1561 -0.98076,2.2856 -1.54102,3.3262 -0.56026,1.0405 -1.05846,1.9842 -1.0664,2.8574 -0.00812,0.8929 -0.34393,2.0452 -0.6836,3.0254 -0.16983,0.4901 -0.33901,0.9388 -0.46679,1.3008 -0.06389,0.1809 -0.11776,0.3407 -0.15625,0.4765 -0.03849,0.1359 -0.066886,0.2378 -0.0625,0.3614 0.04964,1.4001 1.46483,3.1567 4.05468,4.6152 1.74164,0.9807 4.63358,1.2487 7.31641,1.3164 1.3414,0.0338 2.6274,0.012 3.6797,-0.0098 1.0523,-0.0218 1.8815,-0.0428 2.2578,-0.0156 0.4216,0.0305 0.7577,-0.1608 1,-0.4297 0.2423,-0.2689 0.4327,-0.6083 0.6895,-0.9746 0.5134,-0.7325 1.267,-1.5879 3.0703,-2.1582 0.7753,-0.2452 1.2151,-0.9249 1.6211,-1.5117 0.4059,-0.5868 0.7667,-1.068 1.3007,-1.1582 C 28.5462,87.7778 29.872,88.1744 32,88.25 v -0.5 c -2.2695,-0.0472 -3.35,-0.4977 -6.0879,-0.0352 -0.7758,0.1311 -1.222,0.7762 -1.6309,1.3672 -0.4088,0.5911 -0.7925,1.1411 -1.3593,1.3203 -1.9053,0.6026 -2.7864,1.5721 -3.3301,2.3477 -0.2718,0.3878 -0.4663,0.7234 -0.6504,0.9277 -0.1841,0.2044 -0.3172,0.2857 -0.5937,0.2657 -0.4427,-0.0321 -1.2523,-0.0081 -2.3028,0.0136 -1.0504,0.0218 -2.33,0.0433 -3.6582,0.0098 C 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 c -1e-5,-3e-4 0.00983,-0.092 0.04297,-0.209 0.03313,-0.117 0.08414,-0.2687 0.14648,-0.4453 C 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-6-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,55.75 c -1.2294,0 -2.0383,0.1059 -2.6211,0.3027 -0.5828,0.1969 -0.936,0.4856 -1.2051,0.7754 -0.538,0.5797 -0.7334,1.1122 -2.2988,1.4375 -0.1225,0.0255 -0.3311,-0.0318 -0.5859,-0.1855 -0.2549,-0.1538 -0.5432,-0.3874 -0.8379,-0.6231 -0.2947,-0.2356 -0.5961,-0.474 -0.8985,-0.6445 -0.3024,-0.1705 -0.6278,-0.2879 -0.955,-0.1836 -0.8753,0.279 -1.2921,1.0415 -1.6368,1.7617 -0.3446,0.7203 -0.6429,1.4116 -1.1836,1.7481 -0.835,0.5196 -2.0538,0.8639 -3.1093,0.9902 -0.5278,0.0632 -1.0151,0.0718 -1.3868,0.0293 C 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 h -0.5 c -0.01831,1.7885 0.15046,3.2142 0.23633,4.1387 0.09152,0.9853 0.08839,1.806 -0.35352,3.2773 -0.17622,0.5868 -0.74629,0.8555 -1.39062,1.168 -0.32217,0.1562 -0.65494,0.3186 -0.9336,0.5566 -0.27866,0.2381 -0.49995,0.5665 -0.55859,0.9961 -0.14313,1.0488 0.13219,2.3446 0.42188,3.7188 0.28968,1.3742 0.60026,2.8218 0.57812,4.1054 -0.01731,1.0036 -0.36797,1.9455 -0.71875,2.7071 -0.17539,0.3808 -0.34908,0.7143 -0.48242,0.9961 -0.13334,0.2817 -0.24291,0.4882 -0.22852,0.7402 0.02151,0.3765 0.09621,0.6678 0.25196,0.8926 0.15574,0.2248 0.38663,0.3594 0.63671,0.4375 0.50018,0.1561 1.11445,0.1491 1.91602,0.3086 1.60315,0.3189 3.9558,1.2492 7.1094,5.2129 0.2124,0.267 0.5629,0.3515 0.9902,0.4003 0.4273,0.0489 0.9443,0.0355 1.502,-0.0312 1.1152,-0.1334 2.3831,-0.4817 3.3164,-1.0625 0.721,-0.4487 1.0331,-1.2549 1.3691,-1.957 0.336,-0.7021 0.6699,-1.2871 1.3379,-1.5 0.1189,-0.0379 0.3094,0.002 0.5586,0.1425 0.2492,0.1406 0.5368,0.3651 0.8301,0.5997 0.2933,0.2345 0.5921,0.4789 0.8925,0.6601 0.3005,0.1813 0.6143,0.3169 0.9454,0.2481 1.6748,-0.3481 2.0888,-1.0755 2.5644,-1.5879 0.2378,-0.2562 0.4931,-0.472 0.9981,-0.6426 C 29.9927,56.3721 31.0025,56.2706 32,56.25 Z" id="rtid-path1429-2-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.0814,3.1631 -0.7923,5.2367 -1.6016,6.8906 -0.2394,0.4893 -0.8275,1.7184 -1.3867,3.0371 -0.5592,1.3188 -1.0905,2.7074 -1.2187,3.5957 -0.267,1.8487 0.5366,3.6171 1.4629,5.045 0.4631,0.7139 0.9603,1.3462 1.3789,1.8613 0.4186,0.5151 0.7637,0.9246 0.8984,1.1426 0.8016,1.2965 0.8652,2.8447 1.0879,4.1484 0.1113,0.6518 0.2614,1.2487 0.6094,1.7168 0.348,0.4681 0.903,0.7746 1.6953,0.8281 h 0.0078 0.0078 c 0.3917,0 1.073,-0.0847 1.9648,-0.2285 0.8919,-0.1438 1.9831,-0.3485 3.1465,-0.5898 2.3264,-0.4825 4.9363,-1.1135 6.8028,-1.7188 3.96,-1.2617 5.5671,-1.409 9.3945,-1.4785 v -0.5 c -4.0916,0.0678 -5.455,0.1989 -9.5449,1.502 h -0.002 c -1.8333,0.5946 -4.4372,1.225 -6.7519,1.705 -1.1574,0.2401 -2.2431,0.4438 -3.125,0.586 -0.8755,0.1411 -1.5546,0.2195 -1.8711,0.2207 -0.6838,-0.0474 -1.06,-0.2696 -1.3242,-0.625 -0.265,-0.3565 -0.4108,-0.8787 -0.5176,-1.5039 -0.2136,-1.2505 -0.2687,-2.8906 -1.1563,-4.3262 -0.1815,-0.2937 -0.5209,-0.6852 -0.9355,-1.1953 -0.4146,-0.5102 -0.8983,-1.1266 -1.3457,-1.8164 -0.8949,-1.3797 -1.6286,-3.0396 -1.3887,-4.7012 0.1099,-0.7609 0.6319,-2.1669 1.1856,-3.4727 0.5537,-1.3057 1.139,-2.5316 1.375,-3.0136 C 39.4461,37.3754 40.2065,35.4289 40.25,32 Z" id="rtid-path1429-3-9-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccsccscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c -0.0032,2.801 -0.0472,2.5586 -0.6758,6.9707 -0.0738,0.5178 -0.5011,1.122 -0.9785,1.877 -0.4774,0.7549 -0.9906,1.671 -1.1562,2.8671 -0.2572,1.8565 -0.8222,2.6696 -1.3516,3.2872 -0.2647,0.3087 -0.5286,0.5682 -0.7422,0.8867 -0.2136,0.3185 -0.3654,0.6998 -0.3848,1.1972 -0.0204,0.5226 -0.1327,1.55 -0.1894,2.5528 -0.0284,0.5014 -0.043,0.9993 -0.0235,1.4355 0.0196,0.4362 0.0633,0.8064 0.1954,1.0918 0.2074,0.4483 0.2151,1.5997 0.123,2.7324 -0.0921,1.1328 -0.2531,2.2556 -0.2598,2.8575 -0.0109,0.9677 0.4244,1.628 1.0957,1.9687 0.6713,0.3407 1.5431,0.4053 2.4922,0.3711 1.8984,-0.0684 4.144,-0.5541 5.5469,-0.459 0.4439,0.0301 1.0705,-0.1419 1.8926,-0.4121 0.8221,-0.2702 1.815,-0.6496 2.8789,-1.0684 2.1264,-0.8369 4.5333,-1.8329 6.3516,-2.4277 l 0.0039,-0.0019 C 90.5648,56.4658 92.2928,56.2606 96,56.25 v -0.5 c -3.9621,0 -5.4573,0.1992 -9.5859,1.502 h -0.002 c -1.8515,0.6054 -4.2614,1.6044 -6.3828,2.4394 -1.0607,0.4175 -2.0477,0.7944 -2.8516,1.0586 -0.8038,0.2642 -1.4486,0.4059 -1.7031,0.3887 -1.5472,-0.105 -3.7727,0.3913 -5.5976,0.457 -0.9125,0.0329 -1.7151,-0.0479 -2.2481,-0.3184 -0.533,-0.2704 -0.8316,-0.6861 -0.8223,-1.5156 0.0058,-0.5136 0.1661,-1.67 0.2598,-2.8222 0.0937,-1.1523 0.1519,-2.2932 -0.168,-2.9844 -0.0741,-0.1603 -0.134,-0.4964 -0.1523,-0.9043 -0.0183,-0.408 -0.0044,-0.8907 0.0234,-1.3828 0.0557,-0.9843 0.1693,-1.9952 0.1914,-2.5625 0.016,-0.4109 0.1255,-0.676 0.3008,-0.9375 0.1754,-0.2615 0.4271,-0.5152 0.7071,-0.8418 0.5599,-0.6532 1.1982,-1.6047 1.4667,-3.543 0.1512,-1.092 0.6179,-1.9328 1.084,-2.6699 0.4662,-0.7372 0.9476,-1.3614 1.0489,-2.0723 C 72.2188,34.4749 72.25,35.1813 72.25,32 Z" id="rtid-path1429-3-6-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.01,1.3903 -0.281,2.2117 -0.703,2.707 -0.454,0.5321 -1.137,1.0722 -1.752,2.502 -0.863,2.0036 -1.6884,4.2596 -1.9669,6.2129 -0.0653,0.4591 0.13,0.874 0.4102,1.2402 0.2797,0.3662 0.6537,0.7069 1.0217,1.0606 0.735,0.7073 1.418,1.4408 1.39,2.3847 -0.041,1.4105 -0.495,2.7804 -0.937,3.8867 -0.221,0.5532 -0.438,1.0397 -0.6,1.4395 -0.162,0.3998 -0.286,0.6846 -0.261,0.9766 0.066,0.7929 0.57,1.5954 1.302,2.3769 0.732,0.7816 1.703,1.542 2.758,2.2149 2.11,1.3456 4.522,2.3476 6.088,2.3476 0.112,0 0.238,-0.0782 0.291,-0.1621 0.053,-0.0839 0.066,-0.162 0.074,-0.2402 0.017,-0.1565 0.001,-0.3311 -0.027,-0.543 -0.057,-0.4238 -0.172,-0.9818 -0.279,-1.5879 -0.215,-1.2122 -0.357,-2.6219 -0.026,-3.2949 0.576,-1.1684 1.765,-1.8992 3.121,-2.4238 1.356,-0.5247 2.856,-0.8346 4.006,-1.1993 0.396,-0.1256 0.609,-0.0525 0.819,0.1387 0.209,0.1912 0.393,0.5411 0.552,0.9512 0.16,0.4101 0.299,0.8737 0.469,1.2929 0.17,0.4193 0.366,0.8047 0.703,1.0372 0.281,0.1939 0.726,0.3476 1.307,0.498 0.58,0.1504 1.288,0.2854 2.045,0.3867 1.414,0.1893 3.205,0.2343 4.445,0.0469 v -0.5 c -1.174,0.2223 -2.9,0.1551 -4.379,-0.043 -0.739,-0.099 -1.431,-0.2311 -1.986,-0.375 -0.556,-0.1438 -0.985,-0.3109 -1.149,-0.4238 -0.185,-0.1281 -0.366,-0.4274 -0.523,-0.8144 -0.157,-0.3871 -0.297,-0.8511 -0.467,-1.2872 -0.169,-0.436 -0.365,-0.8498 -0.682,-1.1386 -0.317,-0.2889 -0.78,-0.4124 -1.304,-0.2461 -1.107,0.351 -2.628,0.6636 -4.037,1.209 -1.41,0.5453 -2.73,1.3324 -3.389,2.6699 -0.462,0.9376 -0.235,2.3721 -0.018,3.6015 0.109,0.6148 0.224,1.1772 0.276,1.5684 0.021,0.1596 0.023,0.2624 0.021,0.3457 -1.36,-0.0479 -3.679,-0.957 -5.681,-2.2344 -1.028,-0.6556 -1.971,-1.3984 -2.662,-2.1367 -0.692,-0.7383 -1.12,-1.4732 -1.17,-2.0762 -0.005,-0.0547 0.07,-0.362 0.226,-0.748 0.157,-0.386 0.376,-0.8771 0.602,-1.4414 0.451,-1.1286 0.928,-2.5515 0.972,-4.0586 0.035,-1.1881 -0.799,-2.0402 -1.545,-2.7578 -0.372,-0.3588 -0.729,-0.6911 -0.968,-1.0039 -0.2396,-0.3129 -0.3529,-0.5852 -0.3128,-0.8672 0.2668,-1.8693 1.0748,-4.0998 1.9298,-6.084 0.581,-1.3507 1.169,-1.7875 1.672,-2.377 0.502,-0.5894 0.859,-1.3225 0.824,-3.0312 z" id="rtid-path1429-3-6-7-2-8" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,23.75 c -1.652,-0.0497 -2.58,0.5216 -3.203,1.0195 -0.312,0.249 -0.551,0.4693 -0.75,0.5782 -0.199,0.1088 -0.329,0.1354 -0.578,0.0253 -1.422,-0.6283 -2.855,-0.8313 -5.045,-0.121 h -0.002 c -0.209,0.0678 -0.656,-0.0762 -1.127,-0.2657 -0.236,-0.0947 -0.477,-0.1915 -0.719,-0.248 -0.241,-0.0566 -0.495,-0.078 -0.732,0.0312 -1.414,0.652 -2.513,1.7213 -3.395,2.5996 -0.441,0.4392 -0.83,0.8311 -1.162,1.0977 -0.332,0.2666 -0.598,0.3855 -0.769,0.373 -0.267,-0.0193 -0.473,-0.1723 -0.696,-0.4726 -0.222,-0.3003 -0.432,-0.7336 -0.666,-1.2149 -0.467,-0.9625 -1.03,-2.1262 -2.138,-2.8105 -1.134,-0.6998 -2.701,-0.8763 -3.987,-1.0762 -0.642,-0.0999 -1.217,-0.2054 -1.607,-0.3574 -0.195,-0.076 -0.341,-0.1633 -0.432,-0.252 -0.091,-0.0886 -0.133,-0.1699 -0.142,-0.2871 0,0.0087 0.014,-0.0882 0.084,-0.2207 0.069,-0.1324 0.181,-0.3062 0.32,-0.5058 0.277,-0.3993 0.661,-0.908 1.053,-1.4922 0.783,-1.1684 1.605,-2.6388 1.652,-4.2051 0.035,-1.1613 -0.746,-2.2622 -1.461,-3.2598 -0.358,-0.4987 -0.704,-0.9721 -0.941,-1.3945 -0.237,-0.4224 -0.35,-0.7844 -0.309,-1.0527 0.056,-0.36926 0.198,-0.59839 0.397,-0.78127 0.198,-0.18288 0.463,-0.31486 0.755,-0.43555 0.293,-0.12068 0.61,-0.22798 0.901,-0.38671 0.29,-0.15874 0.563,-0.38099 0.713,-0.72071 0.453,-1.0275 0.491,-2.32339 0.435,-3.70508 C 104.393,2.8273 104.235,1.35423 104.25,0 h -0.5 c 0.004,1.32161 0.147,2.95144 0.199,4.22852 0.055,1.35795 0.001,2.59311 -0.392,3.48437 -0.094,0.21123 -0.259,0.35278 -0.496,0.48242 -0.238,0.12965 -0.539,0.23504 -0.85,0.36328 -0.311,0.12825 -0.635,0.28153 -0.906,0.53125 -0.272,0.24973 -0.482,0.60211 -0.553,1.07226 -0.069,0.4539 0.109,0.9088 0.369,1.3731 0.26,0.4642 0.616,0.9459 0.971,1.4414 0.71,0.9909 1.396,2.0367 1.369,2.9531 -0.042,1.3981 -0.804,2.8013 -1.568,3.9414 -0.383,0.5701 -0.763,1.0749 -1.049,1.4883 -0.144,0.2067 -0.264,0.3903 -0.352,0.5566 -0.087,0.1663 -0.156,0.3092 -0.14,0.4942 0.019,0.2365 0.129,0.4467 0.291,0.6035 0.161,0.1567 0.365,0.2683 0.599,0.3593 0.468,0.1822 1.062,0.2858 1.711,0.3868 1.298,0.2019 2.815,0.3993 3.801,1.0078 0.955,0.5896 1.485,1.643 1.951,2.6035 0.233,0.4803 0.45,0.9342 0.717,1.2949 0.267,0.3607 0.612,0.6413 1.06,0.6738 0.394,0.0285 0.75,-0.1857 1.12,-0.4824 0.369,-0.2966 0.76,-0.6977 1.199,-1.1347 0.877,-0.8742 1.938,-1.8922 3.252,-2.4981 0.084,-0.0389 0.221,-0.0438 0.408,0 0.187,0.0439 0.412,0.1305 0.646,0.2246 0.468,0.1883 0.975,0.4402 1.471,0.2793 2.105,-0.6821 3.34,-0.4946 4.69,0.1016 0.37,0.1634 0.729,0.1142 1.017,-0.043 0.288,-0.1572 0.531,-0.3925 0.824,-0.6269 0.548,-0.4374 1.555,-0.8873 2.891,-0.9102 z" id="rtid-path1429-3-6-7-5-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,0 c 0.0141,2.21123 -0.5181,3.78788 -1.1719,5.08594 -0.6822,1.35448 -1.4918,2.7313 -1.8261,5.07816 -0.0689,0.4829 0.1369,0.9762 0.4355,1.4921 0.2986,0.516 0.7066,1.0613 1.1133,1.6211 0.8133,1.1198 1.5987,2.3053 1.5722,3.2696 -0.036,1.3189 -0.8124,2.4014 -1.6425,3.3301 -0.4151,0.4643 -0.8408,0.8863 -1.1836,1.2832 -0.3428,0.3969 -0.6164,0.7663 -0.6836,1.1796 -0.0977,0.5998 -0.3105,2.0169 -0.2871,3.4493 0.0233,1.4323 0.2521,2.9131 1.2168,3.6015 1.2145,0.8668 3.0917,0.7818 4.8691,0.543 0.8887,-0.1194 1.7553,-0.2841 2.4981,-0.4102 0.7427,-0.126 1.3715,-0.2096 1.7324,-0.1836 0.2452,0.0177 0.4744,-0.0759 0.6777,-0.2207 0.2033,-0.1447 0.3914,-0.3426 0.584,-0.5781 0.3852,-0.471 0.7879,-1.0975 1.2598,-1.7558 0.9438,-1.3167 2.1539,-2.7477 3.9257,-3.3028 0.8452,-0.2647 1.3565,-0.8408 1.8145,-1.332 0.458,-0.4912 0.8506,-0.8908 1.4961,-0.9902 0.556,-0.0857 1.0082,0.0394 1.4805,0.2929 0.4722,0.2535 0.9536,0.6415 1.5097,1.0528 1.0641,0.7867 2.7158,1.671 4.8594,1.7441 v -0.5 c -2.1892,0 -3.4725,-0.8405 -4.5625,-1.6465 -0.545,-0.403 -1.0373,-0.8057 -1.5703,-1.0918 -0.5331,-0.2861 -1.1196,-0.4495 -1.793,-0.3457 -0.8179,0.1261 -1.3223,0.6482 -1.7851,1.1445 -0.4629,0.4964 -0.8942,0.973 -1.5977,1.1934 -1.9429,0.6086 -3.2225,2.1495 -4.1836,3.4902 -0.4805,0.6704 -0.8852,1.2963 -1.2402,1.7305 -0.1775,0.2171 -0.3426,0.384 -0.4864,0.4863 -0.1437,0.1024 -0.2546,0.1361 -0.3535,0.1289 -0.4686,-0.0338 -1.1014,0.0622 -1.8515,0.1895 -0.7502,0.1273 -1.6094,0.2912 -2.4805,0.4082 -1.7422,0.234 -3.5205,0.2557 -4.5137,-0.4531 -0.7006,-0.5001 -0.9834,-1.8278 -1.0058,-3.2051 -0.0225,-1.3773 0.1852,-2.7701 0.2812,-3.3594 0.0373,-0.2296 0.245,-0.5572 0.5684,-0.9316 0.3234,-0.3745 0.7483,-0.7992 1.1758,-1.2774 0.8548,-0.9562 1.7302,-2.1441 1.7714,-3.6504 0.0337,-1.228 -0.85,-2.452 -1.6679,-3.5781 -0.409,-0.563 -0.8081,-1.0994 -1.084,-1.5762 C 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z" id="rtid-path1429-3-6-7-5-3-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,0 c -0.3359,0.76718 -0.6117,1.75827 -0.8652,2.49023 -0.2953,0.85257 -0.7736,1.73886 -2.0371,2.8125 -0.0899,0.07641 -0.1225,0.14773 -0.17,0.24219 -0.0474,0.09447 -0.0972,0.20857 -0.1484,0.34375 -0.1025,0.27036 -0.2167,0.62378 -0.3398,1.03711 -0.2463,0.82667 -0.5254,1.89254 -0.7911,2.9707 -0.2656,1.07822 -0.5175,2.16932 -0.707,3.04692 -0.1895,0.8775 -0.316,1.5079 -0.3359,1.7851 -0.1397,1.937 0.3521,3.6412 0.8789,4.9746 0.2634,0.6668 0.5365,1.2422 0.7441,1.7051 0.2076,0.4629 0.341,0.8288 0.3516,0.9883 0.0189,0.2839 -0.0597,0.7845 -0.1719,1.3652 -0.1122,0.5807 -0.2521,1.251 -0.332,1.9258 -0.08,0.6748 -0.1028,1.3556 0.0332,1.9727 0.136,0.617 0.4448,1.1779 1.0078,1.539 1.17,0.7503 3.167,0.7102 5.082,0.5528 0.9575,-0.0788 1.8928,-0.1948 2.6778,-0.2852 0.7849,-0.0904 1.4326,-0.1503 1.7558,-0.127 0.4446,0.0321 1.7984,0.3583 3.3027,0.5254 1.5044,0.1671 3.199,0.1866 4.4942,-0.4511 0.3072,-0.1512 0.4947,-0.4545 0.666,-0.8028 0.1713,-0.3483 0.3191,-0.7578 0.4688,-1.1562 0.1496,-0.3985 0.3018,-0.7857 0.4648,-1.0781 0.163,-0.2925 0.3354,-0.4694 0.4727,-0.5137 2.0531,-0.6641 3.0053,-1.0705 3.9199,-1.3047 C 61.0267,24.3397 62.2522,24.2595 64,24.25 v -0.5 c -2.022,0 -2.984,0.0765 -3.9512,0.3242 -0.9672,0.2477 -1.9119,0.6529 -3.9511,1.3125 -0.3424,0.1107 -0.5666,0.4063 -0.7559,0.7461 -0.1894,0.3398 -0.3452,0.7448 -0.4961,1.1465 -0.1509,0.4017 -0.2965,0.8008 -0.4492,1.1113 -0.1527,0.3105 -0.3217,0.5172 -0.4375,0.5742 -1.132,0.5574 -2.7537,0.5651 -4.2188,0.4024 -1.465,-0.1628 -2.7313,-0.4847 -3.3222,-0.5274 -0.4216,-0.0304 -1.0588,0.0381 -1.8477,0.129 -0.7889,0.0908 -1.7186,0.2075 -2.6621,0.2851 -1.8871,0.1552 -3.842,0.1195 -4.7715,-0.4766 -0.4383,-0.2811 -0.6726,-0.6961 -0.789,-1.2246 -0.1165,-0.5284 -0.1019,-1.1612 -0.0254,-1.8066 0.0764,-0.6455 0.2129,-1.3026 0.3261,-1.8887 0.1132,-0.586 0.2084,-1.0932 0.1817,-1.4941 -0.0219,-0.3283 -0.1854,-0.6894 -0.3965,-1.1602 -0.2112,-0.4707 -0.4783,-1.0352 -0.7344,-1.6836 -0.5122,-1.2967 -0.9758,-2.9217 -0.8437,-4.7539 0.0112,-0.1567 0.1379,-0.8449 0.3261,-1.7168 0.1883,-0.8718 0.4387,-1.9599 0.7032,-3.0332 C 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z" id="rtid-path1429-3-6-7-5-3-5-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,23.75 c -1.3299,0 -2.8706,0.7213 -3.8457,1.7207 -0.3945,0.4044 -0.6149,0.8586 -0.8398,1.2031 -0.225,0.3445 -0.4227,0.5676 -0.8028,0.6485 -0.1454,0.0309 -0.3936,-0.0511 -0.6992,-0.2559 -0.3056,-0.2047 -0.6543,-0.5102 -1.0195,-0.8144 -0.3653,-0.3043 -0.748,-0.6092 -1.1465,-0.8184 -0.3986,-0.2092 -0.8334,-0.3266 -1.2617,-0.1914 -0.7564,0.2386 -1.2942,0.779 -1.7754,1.3066 -0.4813,0.5277 -0.9146,1.0441 -1.4141,1.3125 -1.8557,0.9973 -3.9321,1.0397 -4.7773,0.9785 -0.0087,-6e-4 -0.0233,4e-4 -0.0684,-0.0546 -0.0451,-0.0551 -0.1028,-0.1587 -0.1562,-0.293 -0.107,-0.2686 -0.2055,-0.6574 -0.3145,-1.0645 -0.109,-0.4071 -0.2287,-0.8339 -0.3984,-1.2031 C 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 c 0.02452,-0.1264 0.06508,-0.2136 0.11328,-0.2675 0.0482,-0.054 0.10401,-0.0869 0.21484,-0.1016 -0.00851,0.0011 0.04556,0.0038 0.13672,0.0644 0.09116,0.0607 0.20973,0.1666 0.33984,0.3028 0.26022,0.2723 0.56755,0.6647 0.88086,1.0781 0.31331,0.4134 0.63375,0.848 0.93555,1.2149 0.3018,0.3668 0.56991,0.6661 0.85742,0.8242 0.33213,0.1826 0.70718,0.1503 1.0293,0.0136 0.32211,-0.1366 0.6131,-0.3706 0.87109,-0.6289 0.258,-0.2582 0.48087,-0.5423 0.64649,-0.7949 C 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 c -0.12698,0.1422 -0.19631,0.3178 -0.23242,0.5039 -0.07223,0.3724 -0.02356,0.8037 0.05664,1.25 0.08019,0.4463 0.19809,0.9069 0.29297,1.3086 0.09487,0.4018 0.1615,0.7548 0.15625,0.92 -0.04886,1.536 0.08969,3.3032 0.24805,4.7792 0.15835,1.4761 0.33813,2.6827 0.36523,3.0079 0.04642,0.5571 0.38432,2.0296 0.89648,3.4765 0.25609,0.7235 0.55414,1.4323 0.88868,1.9961 0.33453,0.5638 0.69503,1.0073 1.17578,1.1348 0.1745,0.0463 0.36547,0.0224 0.50781,-0.0684 0.14234,-0.0907 0.23291,-0.2248 0.30273,-0.3711 0.13964,-0.2925 0.20818,-0.6624 0.28516,-1.0644 0.15395,-0.8041 0.33801,-1.7199 0.77734,-2.1465 0.11912,-0.1157 0.33078,-0.1858 0.61719,-0.1973 0.28642,-0.0115 0.63462,0.037 0.98632,0.1172 0.7034,0.1604 1.4158,0.444 1.752,0.582 0.1713,0.0704 0.3411,0.278 0.4863,0.5938 0.1452,0.3158 0.2635,0.721 0.3711,1.123 0.1076,0.4021 0.2041,0.8 0.332,1.1211 0.064,0.1606 0.1357,0.3033 0.2344,0.4239 0.0987,0.1205 0.2438,0.2254 0.4199,0.2382 0.9174,0.0665 3.0632,0.03 5.0488,-1.0371 0.6228,-0.3347 1.0775,-0.9033 1.5469,-1.4179 0.4694,-0.5147 0.9439,-0.9727 1.5567,-1.166 0.2553,-0.0806 0.5432,-0.0181 0.8789,0.1582 0.3357,0.1762 0.6996,0.4606 1.0586,0.7597 0.3589,0.2991 0.7145,0.6107 1.0625,0.8438 0.3479,0.2331 0.7032,0.4101 1.08,0.33 0.5421,-0.1152 0.8678,-0.4813 1.1172,-0.8632 0.2494,-0.3819 0.4521,-0.7915 0.7793,-1.127 C 29.3257,24.986 30.9022,24.3358 32,24.25 Z" id="rtid-path1429-3-6-7-5-3-5-6-3-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="rotate(180,64,63.9999)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.7498 0,103.7498 v 0.5 c 0.7015,0 2.386,0.2502 3.914,0.1502 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.1498 -1.7,0.1498 v 0.5 c 0.75,0 1.23,0.0502 1.88,-0.2498 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.2498 c 0.8,0 1.49,-0.2498 2.04,-0.7498 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.5498 -1.7,0.6498 z" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.2498 c 0.85,0 1.51,-0.4498 2.11,-1.0498 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.8498 -1.77,0.9498" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ style="display:inline"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask4387)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g4258"
+ transform="matrix(1,0,0,-1,0,128)">
+ <g
+ id="rtid-g1931"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.00587,0.0179 -0.0794,0.2775 -0.08594,0.2969 -0.06287,0.1867 -0.15724,0.4398 -0.27148,0.748 -0.22848,0.6164 -0.5424,1.4486 -0.87696,2.4121 -0.6691,1.927 -1.42334,4.379 -1.75585,6.707 v 0.002 c -0.4895,3.547 -0.50594,10.988 -0.43555,12.248 0.04495,0.797 0.53639,1.591 1.25781,2.357 0.72142,0.767 1.6859,1.508 2.73633,2.167 2.10084,1.316 4.52494,2.305 6.09574,2.412 h 0.0078 0.0078 c 0.8428,0 1.9229,-0.63 3.3125,-1.379 1.3891,-0.75 3.0513,-1.642 4.873,-2.233 3.8849,-1.238 8.5466,-1.473 9.3848,-1.488 v -0.5 c -0.6737,0 -5.4086,0.197 -9.5352,1.512 h -0.0019 c -1.8776,0.609 -3.5686,1.517 -4.959,2.267 -1.3879,0.749 -2.5101,1.317 -3.0684,1.319 -1.3907,-0.098 -3.8082,-1.054 -5.85152,-2.334 -1.02381,-0.642 -1.95783,-1.365 -2.63671,-2.086 -0.67889,-0.721 -1.08901,-1.438 -1.12305,-2.041 -0.06365,-1.14 -0.04486,-8.7 0.43164,-12.153 0.32446,-2.271 1.06828,-4.7 1.73242,-6.6129 0.33207,-0.9564 0.64375,-1.7838 0.87305,-2.4023 0.11465,-0.3093 0.20882,-0.566 0.27539,-0.7637 C 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z"
+ id="rtid-path1429-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c 0.0089,0.1209 0.0315,0.4553 0.0449,0.6895 0.0208,0.3642 0.0397,0.8497 0.0352,1.3984 -0.009,1.0974 -0.1159,2.4471 -0.4844,3.5551 -0.277,0.832 -0.8162,1.42 -1.3555,2.074 -0.5392,0.653 -1.0752,1.379 -1.2285,2.447 -0.124,0.865 0.4155,1.821 0.9258,2.846 0.5103,1.024 1.0125,2.103 0.9824,3.058 -0.0931,2.95 -0.2835,4.626 -0.2383,5.397 0.0402,0.689 -0.003,1.719 0.2188,2.754 0.2218,1.034 0.7276,2.092 1.8555,2.789 1.0846,0.67 2.3097,0.781 3.4277,0.746 1.118,-0.036 2.1488,-0.212 2.8184,-0.166 0.4636,0.031 1.2531,0.344 2.2265,0.562 0.9735,0.219 2.1547,0.334 3.4668,-0.062 0.2381,-0.072 0.6346,-0.269 1.1777,-0.543 0.5432,-0.274 1.2055,-0.621 1.8711,-0.969 0.6656,-0.348 1.3341,-0.698 1.8848,-0.976 0.5508,-0.278 1.0031,-0.488 1.1602,-0.539 2.0231,-0.657 3.2292,-0.856 3.9961,-0.895 0.636,-0.032 1.1544,0.056 1.4648,0.084 v -0.5 c -0.249,0 -0.6636,-0.126 -1.4902,-0.084 -0.8266,0.042 -2.0748,0.253 -4.125,0.918 -0.2505,0.081 -0.6745,0.288 -1.2305,0.568 -0.556,0.281 -1.225,0.633 -1.8906,0.981 -0.6657,0.348 -1.3293,0.693 -1.8672,0.965 -0.5379,0.271 -0.9777,0.476 -1.0957,0.511 -1.2077,0.365 -2.2846,0.261 -3.211,0.053 -0.9263,-0.208 -1.6793,-0.532 -2.3046,-0.574 -0.7836,-0.053 -1.7942,0.132 -2.8672,0.166 -1.0731,0.034 -2.1885,-0.077 -3.1504,-0.672 -0.9944,-0.615 -1.4244,-1.515 -1.6289,-2.469 -0.2045,-0.953 -0.1642,-1.942 -0.2071,-2.677 -0.0373,-0.636 0.1447,-2.388 0.2383,-5.352 0.0358,-1.135 -0.5223,-2.267 -1.0351,-3.297 -0.5129,-1.029 -0.9607,-1.967 -0.877,-2.551 0.1349,-0.939 0.5899,-1.562 1.1172,-2.201 0.5273,-0.639 1.1294,-1.285 1.4453,-2.234 0.3972,-1.195 0.5006,-2.5836 0.5098,-3.7092 C 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z"
+ id="rtid-path1429-3-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,119.75 c -0.1304,0 -0.5351,-0.025 -1.0996,-0.043 -0.5645,-0.018 -1.302,-0.03 -2.1484,0 -1.693,0.061 -3.8238,0.285 -5.9004,0.945 h -0.002 c -3.6497,1.184 -4.7776,0.294 -6.8574,0.266 -0.5416,-0.007 -1.2305,0.196 -2.0371,0.434 -0.8067,0.237 -1.7191,0.517 -2.6367,0.685 -0.9177,0.168 -1.837,0.223 -2.6524,0.033 -0.8154,-0.19 -1.5294,-0.612 -2.0879,-1.445 -0.6269,-0.935 -0.6556,-2.243 -0.4902,-3.582 0.1654,-1.339 0.5189,-2.685 0.5723,-3.715 0.0328,-0.631 -0.0207,-1.793 -0.0176,-3.25 0.003,-1.457 0.0602,-3.196 0.3086,-4.928 0.3283,-2.288 0.3163,-2.713 0.9746,-4.619 0.3416,-0.9886 0.4135,-1.5254 0.3984,-2.1033 C 72.3091,97.8498 72.219,97.2389 72.25,96 h -0.5 c -0.0072,1.0234 0.0617,1.9639 0.0742,2.4414 0.0139,0.5333 -0.0401,0.9676 -0.3711,1.9256 -0.6667,1.93 -0.6692,2.435 -0.9961,4.713 -0.2535,1.767 -0.3113,3.527 -0.3144,4.996 -0.0031,1.469 0.0472,2.658 0.0176,3.227 -0.0485,0.935 -0.3976,2.296 -0.5684,3.679 -0.1708,1.384 -0.1701,2.816 0.5703,3.92 0.6263,0.934 1.4723,1.443 2.3887,1.657 0.9163,0.213 1.9017,0.144 2.8574,-0.032 0.9557,-0.175 1.8845,-0.458 2.6875,-0.695 0.803,-0.237 1.4918,-0.419 1.8906,-0.414 1.934,0.026 3.2675,0.925 7.0176,-0.291 l -0.0019,0.002 c 2.0133,-0.64 4.1038,-0.862 5.7675,-0.922 0.8319,-0.03 1.5565,-0.018 2.1133,0 0.4322,0.014 0.9081,0.036 1.1172,0.043 z"
+ id="rtid-path1429-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccscsccccscccccscccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,119.75 c -2.032,0.034 -2.99,-0.085 -3.885,-0.125 -0.894,-0.04 -1.718,0.006 -3.396,0.369 -0.152,0.033 -0.481,0.04 -0.871,0.02 -0.391,-0.021 -0.851,-0.063 -1.313,-0.102 -0.462,-0.039 -0.927,-0.077 -1.334,-0.088 -0.406,-0.011 -0.746,-0.002 -1.013,0.082 -0.88,0.279 -1.573,0.216 -2.168,-0.025 -0.596,-0.242 -1.097,-0.674 -1.54,-1.156 -0.442,-0.482 -0.823,-1.011 -1.193,-1.434 -0.37,-0.423 -0.741,-0.779 -1.226,-0.779 -1.489,-0.1 -3.036,0.177 -4.178,0.133 -0.573,-0.023 -1.03,-0.127 -1.332,-0.352 -0.302,-0.225 -0.493,-0.574 -0.516,-1.225 v -0.006 -0.005 c -0.056,-0.678 -0.431,-1.705 -0.721,-3.034 -0.289,-1.328 -0.495,-2.929 -0.236,-4.634 0.146,-0.962 0.46,-1.673 0.776,-2.418 0.315,-0.746 0.628,-1.526 0.73,-2.575 0.131,-1.344 0.047,-2.12 -0.07,-2.9585 C 104.397,98.5986 104.25,97.6918 104.25,96 h -0.5 c 0.019,1.4996 0.16,2.7336 0.268,3.5059 0.115,0.8311 0.197,1.5361 0.07,2.8421 -0.095,0.974 -0.383,1.687 -0.695,2.427 -0.313,0.741 -0.654,1.509 -0.811,2.539 -0.272,1.791 -0.052,3.454 0.244,4.815 0.297,1.361 0.668,2.449 0.711,2.971 v -0.012 c 0.027,0.749 0.284,1.286 0.715,1.607 0.431,0.322 0.991,0.426 1.611,0.45 1.241,0.047 2.774,-0.23 4.18,-0.133 h 0.01 0.008 c 0.214,0 0.504,0.214 0.849,0.609 0.345,0.395 0.734,0.931 1.203,1.441 0.469,0.511 1.023,0.999 1.719,1.282 0.696,0.282 1.531,0.348 2.506,0.039 0.14,-0.044 0.463,-0.069 0.85,-0.059 0.386,0.011 0.844,0.047 1.304,0.086 0.46,0.039 0.923,0.081 1.328,0.102 0.405,0.021 0.744,0.027 1.004,-0.03 1.654,-0.358 2.403,-0.395 3.268,-0.357 0.809,0.036 2.112,0.139 3.908,0.125 z"
+ id="rtid-path1429-3-6-7-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c 0.002,0.7276 0.023,5.8956 -0.648,10.3066 v 0.002 c -0.256,1.793 -0.027,3.1727 0.277,4.2422 0.303,1.066 0.664,1.8347 0.709,2.3496 0.02,0.5969 -0.337,1.2518 -0.912,1.9297 -0.576,0.6792 -1.353,1.3705 -2.086,2.0527 -0.734,0.6822 -1.4243,1.3525 -1.838,2.0371 -0.2069,0.3423 -0.3472,0.6931 -0.3672,1.0547 -0.0201,0.3616 0.0895,0.7282 0.3398,1.0586 0.006,0.0079 0.072,0.1314 0.1406,0.2988 0.0687,0.1674 0.1525,0.3892 0.2539,0.6446 0.2029,0.5106 0.4739,1.1595 0.8339,1.8242 0.72,1.3293 1.805,2.7405 3.459,3.1797 1.606,0.4262 3.696,-0.0673 5.443,-0.7051 0.874,-0.3189 1.661,-0.6768 2.252,-0.9902 0.296,-0.1568 0.543,-0.3019 0.731,-0.4278 0.188,-0.1259 0.307,-0.1971 0.402,-0.3574 0.099,-0.1671 0.126,-0.3547 0.141,-0.5762 0.015,-0.2215 0.009,-0.4762 -0.004,-0.7578 -0.027,-0.5631 -0.088,-1.229 -0.107,-1.8808 -0.02,-0.6519 0.006,-1.2899 0.134,-1.7715 0.129,-0.4817 0.333,-0.7786 0.686,-0.8907 0.16,-0.0505 0.572,0.0163 1.064,0.2168 0.493,0.2006 1.071,0.5074 1.645,0.8204 0.574,0.3129 1.142,0.6338 1.633,0.8671 0.245,0.1167 0.471,0.2115 0.675,0.2735 0.204,0.062 0.385,0.0994 0.575,0.0547 2.151,-0.5079 6.23,-0.5709 8.818,-0.6055 v -0.5 c -2.583,0.0344 -6.596,0.0678 -8.932,0.6191 -0.029,0.0069 -0.152,0.0031 -0.316,-0.0468 -0.164,-0.05 -0.373,-0.1374 -0.606,-0.2481 -0.465,-0.2214 -1.03,-0.5385 -1.607,-0.8535 -0.577,-0.315 -1.166,-0.6281 -1.695,-0.8437 -0.53,-0.2157 -0.995,-0.3602 -1.405,-0.2305 -0.553,0.1754 -0.865,0.6692 -1.017,1.2383 -0.152,0.5691 -0.172,1.2413 -0.152,1.914 0.019,0.6727 0.081,1.3451 0.107,1.8907 0.013,0.2727 0.018,0.514 0.006,0.7011 -0.013,0.1871 -0.052,0.321 -0.072,0.3555 0.021,-0.0365 -0.085,0.0835 -0.252,0.1953 -0.167,0.1118 -0.401,0.2516 -0.686,0.4024 -0.569,0.3014 -1.338,0.6523 -2.189,0.9628 -1.702,0.6212 -3.741,1.0637 -5.143,0.6914 -1.448,-0.3842 -2.459,-1.6617 -3.148,-2.9355 -0.345,-0.6369 -0.609,-1.2675 -0.809,-1.7715 -0.1001,-0.252 -0.1834,-0.4718 -0.2559,-0.6484 -0.0724,-0.1767 -0.1202,-0.3002 -0.2051,-0.4121 -0.1885,-0.2489 -0.2521,-0.4784 -0.2382,-0.7285 0.0138,-0.2502 0.1154,-0.5273 0.2949,-0.8243 0.3593,-0.594 1.0243,-1.251 1.7523,-1.9277 0.727,-0.6767 1.514,-1.3756 2.125,-2.0957 0.61,-0.7201 1.06,-1.4733 1.031,-2.2754 V 80.873 80.8672 c -0.057,-0.685 -0.437,-1.4281 -0.729,-2.4531 -0.291,-1.0246 -0.507,-2.3174 -0.263,-4.0332 v -0.002 C 104.3,69.7492 104.25,64.3795 104.25,64 Z"
+ id="rtid-path1429-3-6-7-5-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c 0.0091,1.5714 0.0802,3.0066 0.0508,3.8496 -0.0315,0.9016 -0.1655,1.4906 -0.5938,2.1231 -0.0813,0.12 -0.1758,0.1465 -0.4023,0.125 -0.2265,-0.0216 -0.5386,-0.1187 -0.8731,-0.2325 -0.3344,-0.1137 -0.6932,-0.242 -1.0527,-0.3066 -0.3595,-0.0646 -0.7329,-0.0682 -1.0625,0.1094 -0.7224,0.3889 -1.0902,1.3135 -1.3437,2.25 -0.2536,0.9365 -0.3718,1.9133 -0.4512,2.4355 -0.5429,3.5676 -0.1219,10.334 -0.0195,11.5664 0.0143,0.4008 0.1568,0.7426 0.3984,0.9942 0.2416,0.2515 0.5685,0.4126 0.9434,0.5156 0.7497,0.206 1.7106,0.1921 2.7539,0.1035 2.0864,-0.1771 4.5154,-0.6677 5.8886,-0.5684 h 0.0078 0.0098 c 0.5933,0 1.6161,0.4351 2.9297,0.7422 1.3136,0.3071 2.9464,0.4678 4.8516,-0.1347 0.7431,-0.2351 1.6039,-0.0972 2.4882,0.0937 0.8844,0.191 1.7831,0.4364 2.627,0.3125 1.13,-0.1658 1.9125,-0.1031 2.9199,0.0039 0.9472,0.1006 2.4274,0.2512 4.1797,0.2676 v -0.5 c -1.923,0 -3.1125,-0.1579 -4.127,-0.2656 -1.0144,-0.1077 -1.8632,-0.1754 -3.0449,-0.002 -0.6935,0.1018 -1.5511,-0.1108 -2.4492,-0.3047 -0.8981,-0.1939 -1.8455,-0.3682 -2.7441,-0.0839 -1.8035,0.5703 -3.3254,0.422 -4.5879,0.1269 -1.26,-0.2946 -2.2315,-0.7521 -3.0371,-0.7539 -1.5273,-0.1078 -3.9177,0.3956 -5.9532,0.5684 -1.0197,0.0865 -1.9451,0.0866 -2.58,-0.0879 C 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 c -0.0983,-1.1791 -0.5076,-8.0227 0.0156,-11.4609 0.082,-0.5395 0.1986,-1.4914 0.4395,-2.3809 0.2408,-0.8894 0.626,-1.6874 1.0976,-1.9414 0.1846,-0.0994 0.4341,-0.1109 0.7364,-0.0566 0.3022,0.0543 0.6451,0.1723 0.9824,0.2871 0.3373,0.1147 0.6668,0.2276 0.9844,0.2578 0.3175,0.0302 0.6678,-0.0505 0.8652,-0.3418 0.485,-0.7161 0.6447,-1.4407 0.6777,-2.3867 C 72.3318,66.9211 72.25,65.7359 72.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c -0.0041,0.9064 -0.0406,2.456 -0.1562,3.8125 -0.1239,1.4517 -0.3471,2.9029 -0.6954,3.7305 -0.2745,0.6512 -1.1623,1.8818 -1.8222,3.1386 -0.3302,0.6288 -0.6057,1.269 -0.7207,1.8848 -0.1151,0.6158 -0.0627,1.2254 0.3007,1.7129 1.8782,2.519 2.099,4.6977 2.2754,6.1465 0.0882,0.7244 0.1304,1.2888 0.4961,1.6465 0.1829,0.1788 0.4495,0.2624 0.7461,0.248 0.2967,-0.0144 0.6388,-0.1102 1.0723,-0.2832 0.3027,-0.1208 0.5185,-0.1488 0.6601,-0.1289 0.1417,0.0199 0.2229,0.0743 0.3067,0.1816 0.1676,0.2147 0.2739,0.6831 0.375,1.2168 0.1011,0.5338 0.2085,1.1316 0.5059,1.6368 0.2973,0.5051 0.8174,0.9003 1.6113,0.955 h 0.0097 0.0079 c 1.5002,0 3.8757,-0.8548 7.58,-2.0293 0.4296,-0.1362 1.3992,0.0301 2.3633,0.25 0.9642,0.2199 1.9177,0.4843 2.5957,0.3575 1.4727,-0.2759 2.3173,-0.3205 3.2188,-0.3028 0.8364,0.0164 2.0711,0.0852 3.5195,0.0762 v -0.5 c -1.6384,0.0238 -2.5854,-0.058 -3.5098,-0.0762 -0.9243,-0.0181 -1.8225,0.03 -3.3203,0.3106 -0.4404,0.0824 -1.4225,-0.1304 -2.3926,-0.3516 -0.97,-0.2212 -1.9332,-0.4596 -2.625,-0.2402 -3.7043,1.1745 -6.1187,2.001 -7.4199,2.0039 -0.648,-0.0477 -0.9743,-0.3117 -1.207,-0.707 -0.2342,-0.3978 -0.3463,-0.9436 -0.4473,-1.4766 -0.1009,-0.533 -0.1785,-1.0529 -0.4726,-1.4297 -0.1471,-0.1884 -0.3663,-0.3319 -0.6309,-0.3691 -0.2645,-0.0372 -0.5615,0.0175 -0.9141,0.1582 -0.4063,0.1621 -0.7088,0.2381 -0.9121,0.248 -0.2032,0.0099 -0.2927,-0.0288 -0.3711,-0.1055 -0.1567,-0.1533 -0.26,-0.6297 -0.3476,-1.3496 -0.1753,-1.4398 -0.4227,-3.769 -2.3731,-6.3847 -0.2593,-0.3479 -0.3106,-0.787 -0.2109,-1.3203 0.0997,-0.5334 0.3558,-1.1405 0.6738,-1.7461 0.636,-1.2112 1.5089,-2.3916 1.8399,-3.1778 0.3973,-0.944 0.6088,-2.4081 0.7344,-3.8808 C 40.2193,66.3827 40.25,64.9102 40.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-93"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,64 c -0.04455,2.0095 -0.50495,3.1644 -1.06641,4.0684 -0.59076,0.9511 -1.3019,1.981 -1.63476,4.3222 -0.07485,0.5267 0.05132,1.266 0.11523,2.125 0.06392,0.859 0.07194,1.8168 -0.18359,2.6719 -0.34551,1.1561 -0.98076,2.2856 -1.54102,3.3262 -0.56026,1.0405 -1.05846,1.9842 -1.0664,2.8574 -0.00812,0.8929 -0.34393,2.0452 -0.6836,3.0254 -0.16983,0.4901 -0.33901,0.9388 -0.46679,1.3008 -0.06389,0.1809 -0.11776,0.3407 -0.15625,0.4765 -0.03849,0.1359 -0.066886,0.2378 -0.0625,0.3614 0.04964,1.4001 1.46483,3.1567 4.05468,4.6152 1.74164,0.9807 4.63358,1.2487 7.31641,1.3164 1.3414,0.0338 2.6274,0.012 3.6797,-0.0098 1.0523,-0.0218 1.8815,-0.0428 2.2578,-0.0156 0.4216,0.0305 0.7577,-0.1608 1,-0.4297 0.2423,-0.2689 0.4327,-0.6083 0.6895,-0.9746 0.5134,-0.7325 1.267,-1.5879 3.0703,-2.1582 0.7753,-0.2452 1.2151,-0.9249 1.6211,-1.5117 0.4059,-0.5868 0.7667,-1.068 1.3007,-1.1582 C 28.5462,87.7778 29.872,88.1744 32,88.25 v -0.5 c -2.2695,-0.0472 -3.35,-0.4977 -6.0879,-0.0352 -0.7758,0.1311 -1.222,0.7762 -1.6309,1.3672 -0.4088,0.5911 -0.7925,1.1411 -1.3593,1.3203 -1.9053,0.6026 -2.7864,1.5721 -3.3301,2.3477 -0.2718,0.3878 -0.4663,0.7234 -0.6504,0.9277 -0.1841,0.2044 -0.3172,0.2857 -0.5937,0.2657 -0.4427,-0.0321 -1.2523,-0.0081 -2.3028,0.0136 -1.0504,0.0218 -2.33,0.0433 -3.6582,0.0098 C 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 c -1e-5,-3e-4 0.00983,-0.092 0.04297,-0.209 0.03313,-0.117 0.08414,-0.2687 0.14648,-0.4453 C 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,55.75 c -1.2294,0 -2.0383,0.1059 -2.6211,0.3027 -0.5828,0.1969 -0.936,0.4856 -1.2051,0.7754 -0.538,0.5797 -0.7334,1.1122 -2.2988,1.4375 -0.1225,0.0255 -0.3311,-0.0318 -0.5859,-0.1855 -0.2549,-0.1538 -0.5432,-0.3874 -0.8379,-0.6231 -0.2947,-0.2356 -0.5961,-0.474 -0.8985,-0.6445 -0.3024,-0.1705 -0.6278,-0.2879 -0.955,-0.1836 -0.8753,0.279 -1.2921,1.0415 -1.6368,1.7617 -0.3446,0.7203 -0.6429,1.4116 -1.1836,1.7481 -0.835,0.5196 -2.0538,0.8639 -3.1093,0.9902 -0.5278,0.0632 -1.0151,0.0718 -1.3868,0.0293 C 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 h -0.5 c -0.01831,1.7885 0.15046,3.2142 0.23633,4.1387 0.09152,0.9853 0.08839,1.806 -0.35352,3.2773 -0.17622,0.5868 -0.74629,0.8555 -1.39062,1.168 -0.32217,0.1562 -0.65494,0.3186 -0.9336,0.5566 -0.27866,0.2381 -0.49995,0.5665 -0.55859,0.9961 -0.14313,1.0488 0.13219,2.3446 0.42188,3.7188 0.28968,1.3742 0.60026,2.8218 0.57812,4.1054 -0.01731,1.0036 -0.36797,1.9455 -0.71875,2.7071 -0.17539,0.3808 -0.34908,0.7143 -0.48242,0.9961 -0.13334,0.2817 -0.24291,0.4882 -0.22852,0.7402 0.02151,0.3765 0.09621,0.6678 0.25196,0.8926 0.15574,0.2248 0.38663,0.3594 0.63671,0.4375 0.50018,0.1561 1.11445,0.1491 1.91602,0.3086 1.60315,0.3189 3.9558,1.2492 7.1094,5.2129 0.2124,0.267 0.5629,0.3515 0.9902,0.4003 0.4273,0.0489 0.9443,0.0355 1.502,-0.0312 1.1152,-0.1334 2.3831,-0.4817 3.3164,-1.0625 0.721,-0.4487 1.0331,-1.2549 1.3691,-1.957 0.336,-0.7021 0.6699,-1.2871 1.3379,-1.5 0.1189,-0.0379 0.3094,0.002 0.5586,0.1425 0.2492,0.1406 0.5368,0.3651 0.8301,0.5997 0.2933,0.2345 0.5921,0.4789 0.8925,0.6601 0.3005,0.1813 0.6143,0.3169 0.9454,0.2481 1.6748,-0.3481 2.0888,-1.0755 2.5644,-1.5879 0.2378,-0.2562 0.4931,-0.472 0.9981,-0.6426 C 29.9927,56.3721 31.0025,56.2706 32,56.25 Z"
+ id="rtid-path1429-2-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.0814,3.1631 -0.7923,5.2367 -1.6016,6.8906 -0.2394,0.4893 -0.8275,1.7184 -1.3867,3.0371 -0.5592,1.3188 -1.0905,2.7074 -1.2187,3.5957 -0.267,1.8487 0.5366,3.6171 1.4629,5.045 0.4631,0.7139 0.9603,1.3462 1.3789,1.8613 0.4186,0.5151 0.7637,0.9246 0.8984,1.1426 0.8016,1.2965 0.8652,2.8447 1.0879,4.1484 0.1113,0.6518 0.2614,1.2487 0.6094,1.7168 0.348,0.4681 0.903,0.7746 1.6953,0.8281 h 0.0078 0.0078 c 0.3917,0 1.073,-0.0847 1.9648,-0.2285 0.8919,-0.1438 1.9831,-0.3485 3.1465,-0.5898 2.3264,-0.4825 4.9363,-1.1135 6.8028,-1.7188 3.96,-1.2617 5.5671,-1.409 9.3945,-1.4785 v -0.5 c -4.0916,0.0678 -5.455,0.1989 -9.5449,1.502 h -0.002 c -1.8333,0.5946 -4.4372,1.225 -6.7519,1.705 -1.1574,0.2401 -2.2431,0.4438 -3.125,0.586 -0.8755,0.1411 -1.5546,0.2195 -1.8711,0.2207 -0.6838,-0.0474 -1.06,-0.2696 -1.3242,-0.625 -0.265,-0.3565 -0.4108,-0.8787 -0.5176,-1.5039 -0.2136,-1.2505 -0.2687,-2.8906 -1.1563,-4.3262 -0.1815,-0.2937 -0.5209,-0.6852 -0.9355,-1.1953 -0.4146,-0.5102 -0.8983,-1.1266 -1.3457,-1.8164 -0.8949,-1.3797 -1.6286,-3.0396 -1.3887,-4.7012 0.1099,-0.7609 0.6319,-2.1669 1.1856,-3.4727 0.5537,-1.3057 1.139,-2.5316 1.375,-3.0136 C 39.4461,37.3754 40.2065,35.4289 40.25,32 Z"
+ id="rtid-path1429-3-9-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccsccscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c -0.0032,2.801 -0.0472,2.5586 -0.6758,6.9707 -0.0738,0.5178 -0.5011,1.122 -0.9785,1.877 -0.4774,0.7549 -0.9906,1.671 -1.1562,2.8671 -0.2572,1.8565 -0.8222,2.6696 -1.3516,3.2872 -0.2647,0.3087 -0.5286,0.5682 -0.7422,0.8867 -0.2136,0.3185 -0.3654,0.6998 -0.3848,1.1972 -0.0204,0.5226 -0.1327,1.55 -0.1894,2.5528 -0.0284,0.5014 -0.043,0.9993 -0.0235,1.4355 0.0196,0.4362 0.0633,0.8064 0.1954,1.0918 0.2074,0.4483 0.2151,1.5997 0.123,2.7324 -0.0921,1.1328 -0.2531,2.2556 -0.2598,2.8575 -0.0109,0.9677 0.4244,1.628 1.0957,1.9687 0.6713,0.3407 1.5431,0.4053 2.4922,0.3711 1.8984,-0.0684 4.144,-0.5541 5.5469,-0.459 0.4439,0.0301 1.0705,-0.1419 1.8926,-0.4121 0.8221,-0.2702 1.815,-0.6496 2.8789,-1.0684 2.1264,-0.8369 4.5333,-1.8329 6.3516,-2.4277 l 0.0039,-0.0019 C 90.5648,56.4658 92.2928,56.2606 96,56.25 v -0.5 c -3.9621,0 -5.4573,0.1992 -9.5859,1.502 h -0.002 c -1.8515,0.6054 -4.2614,1.6044 -6.3828,2.4394 -1.0607,0.4175 -2.0477,0.7944 -2.8516,1.0586 -0.8038,0.2642 -1.4486,0.4059 -1.7031,0.3887 -1.5472,-0.105 -3.7727,0.3913 -5.5976,0.457 -0.9125,0.0329 -1.7151,-0.0479 -2.2481,-0.3184 -0.533,-0.2704 -0.8316,-0.6861 -0.8223,-1.5156 0.0058,-0.5136 0.1661,-1.67 0.2598,-2.8222 0.0937,-1.1523 0.1519,-2.2932 -0.168,-2.9844 -0.0741,-0.1603 -0.134,-0.4964 -0.1523,-0.9043 -0.0183,-0.408 -0.0044,-0.8907 0.0234,-1.3828 0.0557,-0.9843 0.1693,-1.9952 0.1914,-2.5625 0.016,-0.4109 0.1255,-0.676 0.3008,-0.9375 0.1754,-0.2615 0.4271,-0.5152 0.7071,-0.8418 0.5599,-0.6532 1.1982,-1.6047 1.4667,-3.543 0.1512,-1.092 0.6179,-1.9328 1.084,-2.6699 0.4662,-0.7372 0.9476,-1.3614 1.0489,-2.0723 C 72.2188,34.4749 72.25,35.1813 72.25,32 Z"
+ id="rtid-path1429-3-6-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.01,1.3903 -0.281,2.2117 -0.703,2.707 -0.454,0.5321 -1.137,1.0722 -1.752,2.502 -0.863,2.0036 -1.6884,4.2596 -1.9669,6.2129 -0.0653,0.4591 0.13,0.874 0.4102,1.2402 0.2797,0.3662 0.6537,0.7069 1.0217,1.0606 0.735,0.7073 1.418,1.4408 1.39,2.3847 -0.041,1.4105 -0.495,2.7804 -0.937,3.8867 -0.221,0.5532 -0.438,1.0397 -0.6,1.4395 -0.162,0.3998 -0.286,0.6846 -0.261,0.9766 0.066,0.7929 0.57,1.5954 1.302,2.3769 0.732,0.7816 1.703,1.542 2.758,2.2149 2.11,1.3456 4.522,2.3476 6.088,2.3476 0.112,0 0.238,-0.0782 0.291,-0.1621 0.053,-0.0839 0.066,-0.162 0.074,-0.2402 0.017,-0.1565 0.001,-0.3311 -0.027,-0.543 -0.057,-0.4238 -0.172,-0.9818 -0.279,-1.5879 -0.215,-1.2122 -0.357,-2.6219 -0.026,-3.2949 0.576,-1.1684 1.765,-1.8992 3.121,-2.4238 1.356,-0.5247 2.856,-0.8346 4.006,-1.1993 0.396,-0.1256 0.609,-0.0525 0.819,0.1387 0.209,0.1912 0.393,0.5411 0.552,0.9512 0.16,0.4101 0.299,0.8737 0.469,1.2929 0.17,0.4193 0.366,0.8047 0.703,1.0372 0.281,0.1939 0.726,0.3476 1.307,0.498 0.58,0.1504 1.288,0.2854 2.045,0.3867 1.414,0.1893 3.205,0.2343 4.445,0.0469 v -0.5 c -1.174,0.2223 -2.9,0.1551 -4.379,-0.043 -0.739,-0.099 -1.431,-0.2311 -1.986,-0.375 -0.556,-0.1438 -0.985,-0.3109 -1.149,-0.4238 -0.185,-0.1281 -0.366,-0.4274 -0.523,-0.8144 -0.157,-0.3871 -0.297,-0.8511 -0.467,-1.2872 -0.169,-0.436 -0.365,-0.8498 -0.682,-1.1386 -0.317,-0.2889 -0.78,-0.4124 -1.304,-0.2461 -1.107,0.351 -2.628,0.6636 -4.037,1.209 -1.41,0.5453 -2.73,1.3324 -3.389,2.6699 -0.462,0.9376 -0.235,2.3721 -0.018,3.6015 0.109,0.6148 0.224,1.1772 0.276,1.5684 0.021,0.1596 0.023,0.2624 0.021,0.3457 -1.36,-0.0479 -3.679,-0.957 -5.681,-2.2344 -1.028,-0.6556 -1.971,-1.3984 -2.662,-2.1367 -0.692,-0.7383 -1.12,-1.4732 -1.17,-2.0762 -0.005,-0.0547 0.07,-0.362 0.226,-0.748 0.157,-0.386 0.376,-0.8771 0.602,-1.4414 0.451,-1.1286 0.928,-2.5515 0.972,-4.0586 0.035,-1.1881 -0.799,-2.0402 -1.545,-2.7578 -0.372,-0.3588 -0.729,-0.6911 -0.968,-1.0039 -0.2396,-0.3129 -0.3529,-0.5852 -0.3128,-0.8672 0.2668,-1.8693 1.0748,-4.0998 1.9298,-6.084 0.581,-1.3507 1.169,-1.7875 1.672,-2.377 0.502,-0.5894 0.859,-1.3225 0.824,-3.0312 z"
+ id="rtid-path1429-3-6-7-2-8"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,23.75 c -1.652,-0.0497 -2.58,0.5216 -3.203,1.0195 -0.312,0.249 -0.551,0.4693 -0.75,0.5782 -0.199,0.1088 -0.329,0.1354 -0.578,0.0253 -1.422,-0.6283 -2.855,-0.8313 -5.045,-0.121 h -0.002 c -0.209,0.0678 -0.656,-0.0762 -1.127,-0.2657 -0.236,-0.0947 -0.477,-0.1915 -0.719,-0.248 -0.241,-0.0566 -0.495,-0.078 -0.732,0.0312 -1.414,0.652 -2.513,1.7213 -3.395,2.5996 -0.441,0.4392 -0.83,0.8311 -1.162,1.0977 -0.332,0.2666 -0.598,0.3855 -0.769,0.373 -0.267,-0.0193 -0.473,-0.1723 -0.696,-0.4726 -0.222,-0.3003 -0.432,-0.7336 -0.666,-1.2149 -0.467,-0.9625 -1.03,-2.1262 -2.138,-2.8105 -1.134,-0.6998 -2.701,-0.8763 -3.987,-1.0762 -0.642,-0.0999 -1.217,-0.2054 -1.607,-0.3574 -0.195,-0.076 -0.341,-0.1633 -0.432,-0.252 -0.091,-0.0886 -0.133,-0.1699 -0.142,-0.2871 0,0.0087 0.014,-0.0882 0.084,-0.2207 0.069,-0.1324 0.181,-0.3062 0.32,-0.5058 0.277,-0.3993 0.661,-0.908 1.053,-1.4922 0.783,-1.1684 1.605,-2.6388 1.652,-4.2051 0.035,-1.1613 -0.746,-2.2622 -1.461,-3.2598 -0.358,-0.4987 -0.704,-0.9721 -0.941,-1.3945 -0.237,-0.4224 -0.35,-0.7844 -0.309,-1.0527 0.056,-0.36926 0.198,-0.59839 0.397,-0.78127 0.198,-0.18288 0.463,-0.31486 0.755,-0.43555 0.293,-0.12068 0.61,-0.22798 0.901,-0.38671 0.29,-0.15874 0.563,-0.38099 0.713,-0.72071 0.453,-1.0275 0.491,-2.32339 0.435,-3.70508 C 104.393,2.8273 104.235,1.35423 104.25,0 h -0.5 c 0.004,1.32161 0.147,2.95144 0.199,4.22852 0.055,1.35795 0.001,2.59311 -0.392,3.48437 -0.094,0.21123 -0.259,0.35278 -0.496,0.48242 -0.238,0.12965 -0.539,0.23504 -0.85,0.36328 -0.311,0.12825 -0.635,0.28153 -0.906,0.53125 -0.272,0.24973 -0.482,0.60211 -0.553,1.07226 -0.069,0.4539 0.109,0.9088 0.369,1.3731 0.26,0.4642 0.616,0.9459 0.971,1.4414 0.71,0.9909 1.396,2.0367 1.369,2.9531 -0.042,1.3981 -0.804,2.8013 -1.568,3.9414 -0.383,0.5701 -0.763,1.0749 -1.049,1.4883 -0.144,0.2067 -0.264,0.3903 -0.352,0.5566 -0.087,0.1663 -0.156,0.3092 -0.14,0.4942 0.019,0.2365 0.129,0.4467 0.291,0.6035 0.161,0.1567 0.365,0.2683 0.599,0.3593 0.468,0.1822 1.062,0.2858 1.711,0.3868 1.298,0.2019 2.815,0.3993 3.801,1.0078 0.955,0.5896 1.485,1.643 1.951,2.6035 0.233,0.4803 0.45,0.9342 0.717,1.2949 0.267,0.3607 0.612,0.6413 1.06,0.6738 0.394,0.0285 0.75,-0.1857 1.12,-0.4824 0.369,-0.2966 0.76,-0.6977 1.199,-1.1347 0.877,-0.8742 1.938,-1.8922 3.252,-2.4981 0.084,-0.0389 0.221,-0.0438 0.408,0 0.187,0.0439 0.412,0.1305 0.646,0.2246 0.468,0.1883 0.975,0.4402 1.471,0.2793 2.105,-0.6821 3.34,-0.4946 4.69,0.1016 0.37,0.1634 0.729,0.1142 1.017,-0.043 0.288,-0.1572 0.531,-0.3925 0.824,-0.6269 0.548,-0.4374 1.555,-0.8873 2.891,-0.9102 z"
+ id="rtid-path1429-3-6-7-5-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,0 c 0.0141,2.21123 -0.5181,3.78788 -1.1719,5.08594 -0.6822,1.35448 -1.4918,2.7313 -1.8261,5.07816 -0.0689,0.4829 0.1369,0.9762 0.4355,1.4921 0.2986,0.516 0.7066,1.0613 1.1133,1.6211 0.8133,1.1198 1.5987,2.3053 1.5722,3.2696 -0.036,1.3189 -0.8124,2.4014 -1.6425,3.3301 -0.4151,0.4643 -0.8408,0.8863 -1.1836,1.2832 -0.3428,0.3969 -0.6164,0.7663 -0.6836,1.1796 -0.0977,0.5998 -0.3105,2.0169 -0.2871,3.4493 0.0233,1.4323 0.2521,2.9131 1.2168,3.6015 1.2145,0.8668 3.0917,0.7818 4.8691,0.543 0.8887,-0.1194 1.7553,-0.2841 2.4981,-0.4102 0.7427,-0.126 1.3715,-0.2096 1.7324,-0.1836 0.2452,0.0177 0.4744,-0.0759 0.6777,-0.2207 0.2033,-0.1447 0.3914,-0.3426 0.584,-0.5781 0.3852,-0.471 0.7879,-1.0975 1.2598,-1.7558 0.9438,-1.3167 2.1539,-2.7477 3.9257,-3.3028 0.8452,-0.2647 1.3565,-0.8408 1.8145,-1.332 0.458,-0.4912 0.8506,-0.8908 1.4961,-0.9902 0.556,-0.0857 1.0082,0.0394 1.4805,0.2929 0.4722,0.2535 0.9536,0.6415 1.5097,1.0528 1.0641,0.7867 2.7158,1.671 4.8594,1.7441 v -0.5 c -2.1892,0 -3.4725,-0.8405 -4.5625,-1.6465 -0.545,-0.403 -1.0373,-0.8057 -1.5703,-1.0918 -0.5331,-0.2861 -1.1196,-0.4495 -1.793,-0.3457 -0.8179,0.1261 -1.3223,0.6482 -1.7851,1.1445 -0.4629,0.4964 -0.8942,0.973 -1.5977,1.1934 -1.9429,0.6086 -3.2225,2.1495 -4.1836,3.4902 -0.4805,0.6704 -0.8852,1.2963 -1.2402,1.7305 -0.1775,0.2171 -0.3426,0.384 -0.4864,0.4863 -0.1437,0.1024 -0.2546,0.1361 -0.3535,0.1289 -0.4686,-0.0338 -1.1014,0.0622 -1.8515,0.1895 -0.7502,0.1273 -1.6094,0.2912 -2.4805,0.4082 -1.7422,0.234 -3.5205,0.2557 -4.5137,-0.4531 -0.7006,-0.5001 -0.9834,-1.8278 -1.0058,-3.2051 -0.0225,-1.3773 0.1852,-2.7701 0.2812,-3.3594 0.0373,-0.2296 0.245,-0.5572 0.5684,-0.9316 0.3234,-0.3745 0.7483,-0.7992 1.1758,-1.2774 0.8548,-0.9562 1.7302,-2.1441 1.7714,-3.6504 0.0337,-1.228 -0.85,-2.452 -1.6679,-3.5781 -0.409,-0.563 -0.8081,-1.0994 -1.084,-1.5762 C 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z"
+ id="rtid-path1429-3-6-7-5-3-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,0 c -0.3359,0.76718 -0.6117,1.75827 -0.8652,2.49023 -0.2953,0.85257 -0.7736,1.73886 -2.0371,2.8125 -0.0899,0.07641 -0.1225,0.14773 -0.17,0.24219 -0.0474,0.09447 -0.0972,0.20857 -0.1484,0.34375 -0.1025,0.27036 -0.2167,0.62378 -0.3398,1.03711 -0.2463,0.82667 -0.5254,1.89254 -0.7911,2.9707 -0.2656,1.07822 -0.5175,2.16932 -0.707,3.04692 -0.1895,0.8775 -0.316,1.5079 -0.3359,1.7851 -0.1397,1.937 0.3521,3.6412 0.8789,4.9746 0.2634,0.6668 0.5365,1.2422 0.7441,1.7051 0.2076,0.4629 0.341,0.8288 0.3516,0.9883 0.0189,0.2839 -0.0597,0.7845 -0.1719,1.3652 -0.1122,0.5807 -0.2521,1.251 -0.332,1.9258 -0.08,0.6748 -0.1028,1.3556 0.0332,1.9727 0.136,0.617 0.4448,1.1779 1.0078,1.539 1.17,0.7503 3.167,0.7102 5.082,0.5528 0.9575,-0.0788 1.8928,-0.1948 2.6778,-0.2852 0.7849,-0.0904 1.4326,-0.1503 1.7558,-0.127 0.4446,0.0321 1.7984,0.3583 3.3027,0.5254 1.5044,0.1671 3.199,0.1866 4.4942,-0.4511 0.3072,-0.1512 0.4947,-0.4545 0.666,-0.8028 0.1713,-0.3483 0.3191,-0.7578 0.4688,-1.1562 0.1496,-0.3985 0.3018,-0.7857 0.4648,-1.0781 0.163,-0.2925 0.3354,-0.4694 0.4727,-0.5137 2.0531,-0.6641 3.0053,-1.0705 3.9199,-1.3047 C 61.0267,24.3397 62.2522,24.2595 64,24.25 v -0.5 c -2.022,0 -2.984,0.0765 -3.9512,0.3242 -0.9672,0.2477 -1.9119,0.6529 -3.9511,1.3125 -0.3424,0.1107 -0.5666,0.4063 -0.7559,0.7461 -0.1894,0.3398 -0.3452,0.7448 -0.4961,1.1465 -0.1509,0.4017 -0.2965,0.8008 -0.4492,1.1113 -0.1527,0.3105 -0.3217,0.5172 -0.4375,0.5742 -1.132,0.5574 -2.7537,0.5651 -4.2188,0.4024 -1.465,-0.1628 -2.7313,-0.4847 -3.3222,-0.5274 -0.4216,-0.0304 -1.0588,0.0381 -1.8477,0.129 -0.7889,0.0908 -1.7186,0.2075 -2.6621,0.2851 -1.8871,0.1552 -3.842,0.1195 -4.7715,-0.4766 -0.4383,-0.2811 -0.6726,-0.6961 -0.789,-1.2246 -0.1165,-0.5284 -0.1019,-1.1612 -0.0254,-1.8066 0.0764,-0.6455 0.2129,-1.3026 0.3261,-1.8887 0.1132,-0.586 0.2084,-1.0932 0.1817,-1.4941 -0.0219,-0.3283 -0.1854,-0.6894 -0.3965,-1.1602 -0.2112,-0.4707 -0.4783,-1.0352 -0.7344,-1.6836 -0.5122,-1.2967 -0.9758,-2.9217 -0.8437,-4.7539 0.0112,-0.1567 0.1379,-0.8449 0.3261,-1.7168 0.1883,-0.8718 0.4387,-1.9599 0.7032,-3.0332 C 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z"
+ id="rtid-path1429-3-6-7-5-3-5-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,23.75 c -1.3299,0 -2.8706,0.7213 -3.8457,1.7207 -0.3945,0.4044 -0.6149,0.8586 -0.8398,1.2031 -0.225,0.3445 -0.4227,0.5676 -0.8028,0.6485 -0.1454,0.0309 -0.3936,-0.0511 -0.6992,-0.2559 -0.3056,-0.2047 -0.6543,-0.5102 -1.0195,-0.8144 -0.3653,-0.3043 -0.748,-0.6092 -1.1465,-0.8184 -0.3986,-0.2092 -0.8334,-0.3266 -1.2617,-0.1914 -0.7564,0.2386 -1.2942,0.779 -1.7754,1.3066 -0.4813,0.5277 -0.9146,1.0441 -1.4141,1.3125 -1.8557,0.9973 -3.9321,1.0397 -4.7773,0.9785 -0.0087,-6e-4 -0.0233,4e-4 -0.0684,-0.0546 -0.0451,-0.0551 -0.1028,-0.1587 -0.1562,-0.293 -0.107,-0.2686 -0.2055,-0.6574 -0.3145,-1.0645 -0.109,-0.4071 -0.2287,-0.8339 -0.3984,-1.2031 C 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 c 0.02452,-0.1264 0.06508,-0.2136 0.11328,-0.2675 0.0482,-0.054 0.10401,-0.0869 0.21484,-0.1016 -0.00851,0.0011 0.04556,0.0038 0.13672,0.0644 0.09116,0.0607 0.20973,0.1666 0.33984,0.3028 0.26022,0.2723 0.56755,0.6647 0.88086,1.0781 0.31331,0.4134 0.63375,0.848 0.93555,1.2149 0.3018,0.3668 0.56991,0.6661 0.85742,0.8242 0.33213,0.1826 0.70718,0.1503 1.0293,0.0136 0.32211,-0.1366 0.6131,-0.3706 0.87109,-0.6289 0.258,-0.2582 0.48087,-0.5423 0.64649,-0.7949 C 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 c -0.12698,0.1422 -0.19631,0.3178 -0.23242,0.5039 -0.07223,0.3724 -0.02356,0.8037 0.05664,1.25 0.08019,0.4463 0.19809,0.9069 0.29297,1.3086 0.09487,0.4018 0.1615,0.7548 0.15625,0.92 -0.04886,1.536 0.08969,3.3032 0.24805,4.7792 0.15835,1.4761 0.33813,2.6827 0.36523,3.0079 0.04642,0.5571 0.38432,2.0296 0.89648,3.4765 0.25609,0.7235 0.55414,1.4323 0.88868,1.9961 0.33453,0.5638 0.69503,1.0073 1.17578,1.1348 0.1745,0.0463 0.36547,0.0224 0.50781,-0.0684 0.14234,-0.0907 0.23291,-0.2248 0.30273,-0.3711 0.13964,-0.2925 0.20818,-0.6624 0.28516,-1.0644 0.15395,-0.8041 0.33801,-1.7199 0.77734,-2.1465 0.11912,-0.1157 0.33078,-0.1858 0.61719,-0.1973 0.28642,-0.0115 0.63462,0.037 0.98632,0.1172 0.7034,0.1604 1.4158,0.444 1.752,0.582 0.1713,0.0704 0.3411,0.278 0.4863,0.5938 0.1452,0.3158 0.2635,0.721 0.3711,1.123 0.1076,0.4021 0.2041,0.8 0.332,1.1211 0.064,0.1606 0.1357,0.3033 0.2344,0.4239 0.0987,0.1205 0.2438,0.2254 0.4199,0.2382 0.9174,0.0665 3.0632,0.03 5.0488,-1.0371 0.6228,-0.3347 1.0775,-0.9033 1.5469,-1.4179 0.4694,-0.5147 0.9439,-0.9727 1.5567,-1.166 0.2553,-0.0806 0.5432,-0.0181 0.8789,0.1582 0.3357,0.1762 0.6996,0.4606 1.0586,0.7597 0.3589,0.2991 0.7145,0.6107 1.0625,0.8438 0.3479,0.2331 0.7032,0.4101 1.08,0.33 0.5421,-0.1152 0.8678,-0.4813 1.1172,-0.8632 0.2494,-0.3819 0.4521,-0.7915 0.7793,-1.127 C 29.3257,24.986 30.9022,24.3358 32,24.25 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-3-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="rotate(180,64,63.9999)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.7498 0,103.7498 v 0.5 c 0.7015,0 2.386,0.2502 3.914,0.1502 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.1498 -1.7,0.1498 v 0.5 c 0.75,0 1.23,0.0502 1.88,-0.2498 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.2498 c 0.8,0 1.49,-0.2498 2.04,-0.7498 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.5498 -1.7,0.6498 z"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.2498 c 0.85,0 1.51,-0.4498 2.11,-1.0498 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.8498 -1.77,0.9498"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/20.svg b/src/asset/tile/frontier/basic/20.svg
index cc02f62..60db7d8 100644
--- a/src/asset/tile/frontier/basic/20.svg
+++ b/src/asset/tile/frontier/basic/20.svg
@@ -1,111 +1,531 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bnotbottomrightcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2850" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g2954" transform="scale(1)">
- <ns0:g id="rtid-g2884" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2852" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2854" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2856" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2858" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2860" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2862" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2864" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2866" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2868" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2870" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2872" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2874" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2876" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2878" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2880" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2882" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2918" transform="matrix(-1,0,0,1,128,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2886" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2888" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2890" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2892" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2894" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2896" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2898" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2900" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2902" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2904" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2906" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2908" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2910" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2912" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2914" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2916" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2952">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2920" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2922" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2924" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2926" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2928" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2930" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2932" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2934" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2936" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2938" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2940" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2942" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2944" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2946" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2948" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2950" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="427.34134" ns1:cy="12.191054" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="16" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="20.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2850"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g2954"
+ transform="scale(1)">
+ <g
+ id="rtid-g2884"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2852"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2854"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2856"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2858"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2860"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2862"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2864"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2866"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2868"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2870"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2872"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2874"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2876"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2878"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2880"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2882"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2918"
+ transform="matrix(-1,0,0,1,128,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2886"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2888"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2890"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2892"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2894"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2896"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2898"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2900"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2902"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2904"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2906"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2908"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2910"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2912"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2914"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2916"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2952">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2920"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2922"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2924"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2926"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2928"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2930"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2932"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2934"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2936"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2938"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2940"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2942"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2944"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2946"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2948"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2950"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-71.284312"
+ inkscape:cy="111.30606"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2850)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.3179448,2.629688 -0.582,3.43 -0.2869452,0.86969 -0.596576,1.66993 -0.652,2.97 -0.025576,0.59993 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.1418312,0.36527 -1.867,0.4 C 2.5268974,103.9653 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.3841866,0.21675 3.914,0.15 0.7632739,-0.0333 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.9956043,-0.8001 1.03,-1.6 0.051604,-1.20011 0.330547,-1.90176 0.627,-2.81 C 7.9275579,98.718205 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssssccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.0718,0.60142 0.03,0.9 -0.02828,0.20199 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccsccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.797893,-0.0921 1.2,-0.5 0.288077,-0.29225 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 z" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssssssssscccccccssssssscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 z" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 h -0.5 c -0.042,0.12 -0.1614379,0.547111 -0.244,0.59 -0.1485152,0.07715 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 C 0.8585,71.49 0.7841,71.58 0.6641,71.65 0.5886,71.69 0.1526,71.73 0,71.75 v 0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccssscccsccscccscccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1804" transform="rotate(-180,64,64)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- <ns0:use height="100%" id="rtid-use2110" transform="matrix(1,0,0,-1,0,128)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2850)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.3179448,2.629688 -0.582,3.43 -0.2869452,0.86969 -0.596576,1.66993 -0.652,2.97 -0.025576,0.59993 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.1418312,0.36527 -1.867,0.4 C 2.5268974,103.9653 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.3841866,0.21675 3.914,0.15 0.7632739,-0.0333 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.9956043,-0.8001 1.03,-1.6 0.051604,-1.20011 0.330547,-1.90176 0.627,-2.81 C 7.9275579,98.718205 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssssccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.0718,0.60142 0.03,0.9 -0.02828,0.20199 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccsccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.797893,-0.0921 1.2,-0.5 0.288077,-0.29225 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 z"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssssssssscccccccssssssscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 z"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 h -0.5 c -0.042,0.12 -0.1614379,0.547111 -0.244,0.59 -0.1485152,0.07715 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 C 0.8585,71.49 0.7841,71.58 0.6641,71.65 0.5886,71.69 0.1526,71.73 0,71.75 v 0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccssscccsccscccscccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1804"
+ transform="rotate(-180,64,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ <use
+ height="100%"
+ id="rtid-use2110"
+ transform="matrix(1,0,0,-1,0,128)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/21.svg b/src/asset/tile/frontier/basic/21.svg
index cb26148..63494b7 100644
--- a/src/asset/tile/frontier/basic/21.svg
+++ b/src/asset/tile/frontier/basic/21.svg
@@ -1,71 +1,306 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="bnotleftborder.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask3117" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g3151" transform="matrix(0,1,1,0,1e-4,-2e-4)">
- <ns0:path d="M 0,362.834 V 483.779 H 120.945 V 362.834 L 90.7088,362.835 C 90.5797,373.202 97.8557,388.683 99.2003,401.957 102.823,437.718 98.9244,445.074 87.8908,456.105 79.1805,464.813 69.7202,463.527 59.9817,463.094 49.8011,462.642 39.3403,462.646 30.2363,453.543 20.9501,444.258 19.9609,426.185 22.4222,407.227 24.6823,389.82 30.0529,371.467 30.2363,362.835 Z" id="rtid-path3119" style="fill:#ffffff;stroke-width:1.972157" transform="scale(0.264583)" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 V 128 H 64 V 96 L 56,96.0003 C 55.7792,99.911 58.0485,102.515 58.2957,104.197 58.6205,106.408 59.3913,108.403 60.355,110.772 62.4244,115.86 62.5892,121.139 59.9995,123.728 56.7103,127.017 45.8911,127.212 40.8779,124.814 38.7067,123.775 37.2216,122.576 35.7973,121.152 32.2697,117.626 36.5416,110.369 37.6606,104.055 38.0367,101.932 40.1779,101.539 40,96.0003 Z" id="rtid-path3121" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.9997 V 128 H 96 V 95.9997 L 88,96 C 87.9103,103.205 91.2904,113.728 90.1692,119.729 89.5631,122.973 81.3103,126.239 77.2081,126.313 73.0916,126.387 70.1204,123.583 69.8309,119.729 69.2528,112.035 71.8986,100.771 72,96 Z" id="rtid-path3123" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 V 128 H 128 V 96 L 120,96.0003 C 119.981,97.4942 118.275,101.774 118.549,103.578 119.009,106.611 120.818,110.212 120.94,113.765 121.095,118.29 119.852,123.389 117.221,124.745 113.862,126.475 108.51,125.797 106.508,123.932 104.592,122.147 100.329,120.368 100.481,116.07 100.607,112.489 104.959,106.474 105.464,103.627 105.895,101.195 103.972,97.3349 104,96.0003 Z" id="rtid-path3125" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.9997 V 96 H 32 V 63.9997 L 24,64 C 23.9502,67.9981 17.2051,73.8369 17.7065,78.746 17.8402,80.0543 18.9443,84.2993 20.6536,83.0124 27.9719,77.5027 31.0273,87.2771 26.6437,90.3047 21.159,94.0929 12.3741,95.4912 7.66109,90.7792 5.41095,88.5295 2.50708,82.6214 3.00228,78.0294 3.5443,73.0034 7.94704,66.4932 8.00002,64 Z" id="rtid-path3127" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 V 96 H 64.0001 V 64 L 56.0001,64.0003 C 55.9598,67.2407 55.4617,70.6316 58.2751,72.9289 61.456,75.5263 62.8118,80.3259 60.2181,82.9192 55.5043,87.6322 50.3386,89.1506 47.0939,89.6297 44.1044,90.0712 37.9564,87.8568 37.815,84.753 37.523,78.3432 39.9149,68.0023 40,64.0003 Z" id="rtid-path3129" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,63.9997 V 96 H 96.0001 V 63.9997 L 88.0002,64 C 87.9417,68.7015 87.1866,72.2202 87.2912,77.6724 87.3469,80.5757 83.8863,82.2882 82.2484,83.9258 77.5345,88.6389 76.713,92.712 72,88 67.287,83.288 71.8987,68.771 72,64 Z" id="rtid-path3131" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 V 96 H 128 V 64 L 120,64.0003 C 119.968,66.5447 120.208,75.527 120.762,78.7486 121.777,84.6492 119.321,90.0354 116.272,93.0839 111.558,97.7969 100.057,93.3899 98.5771,88.6779 97.7913,86.1764 101.238,83.161 102.878,77.8789 104.328,73.211 103.953,66.2384 104,64.0003 Z" id="rtid-path3133" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.9997 V 64 H 32 V 31.9997 L 24,32 C 23.9556,35.5634 28.1758,40.3196 28.7819,44.7874 29.4014,49.3533 26.3826,53.6179 24.0001,56 19.2863,60.713 12.713,60.712 8.00002,56 5.4647,53.4652 12.5299,50.0102 13.2377,44.8442 13.8456,40.4069 7.95317,34.2045 8.00002,32 Z" id="rtid-path3135" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 V 64 H 64.0001 V 32 L 56.0001,32.0003 C 55.9104,39.205 57.6463,46.6856 52.9325,51.3986 48.2187,56.1116 39.5364,59.9451 34.8234,55.2331 30.1103,50.5211 39.8986,36.771 40,32.0003 Z" id="rtid-path3137" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="ccccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,31.9997 V 64 H 96.0001 V 31.9997 L 88.0002,32 C 87.9812,39.1615 101.435,45.9204 88.0002,56 74.5657,66.0796 76.713,60.712 72,56 69.4554,53.456 66.3696,45.3696 67.0839,40.1862 67.6926,35.7691 71.9534,34.1951 72,32 Z" id="rtid-path3139" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="ccccczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32 V 64 H 128 V 32 L 120,32.0003 C 119.948,36.1649 121.531,41.959 121.966,47.0177 122.284,50.7105 128.798,55.3553 125.368,59.3552 119.701,65.9652 117.389,56.8142 112.735,56.7543 107.815,56.6909 106.463,64.152 99.8779,61.0808 93.7178,58.2077 101.757,50.9482 101.911,47.3626 102.159,41.5924 103.938,34.9427 104,32.0003 Z" id="rtid-path3141" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,-3e-4 V 32 H 32 V -3e-4 L 24,0 C 23.9599,3.21896 20.6786,7.60311 21.3068,11.6769 22.0848,16.7216 30.2507,23.3099 27.6429,25.9173 22.9291,30.6303 12.0875,29.278 8.00002,24 3.91254,18.722 14.748,6.01635 8.00002,0 Z" id="rtid-path3143" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,0 V 32 H 64.0001 V 0 L 56.0001,3e-4 C 55.9656,2.77163 57.8055,5.49769 58.3988,9.01533 59.348,14.6426 60.2428,16.6902 57.3422,19.5903 56.0729,20.8594 59.9288,26.4522 58.5844,28.1549 57.0173,30.1396 47.9406,29.6791 46.3529,29.5208 44.2443,29.3106 42.1564,23.6635 40.1917,21.6993 37.9666,19.4747 44.9138,15.448 45.3897,10.9099 45.9217,5.83568 39.9465,2.51867 40,3e-4 Z" id="rtid-path3145" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,-3e-4 V 32 H 96.0001 V -3e-4 L 88.0002,0 C 87.9672,2.65434 86.1031,7.41677 87.4008,10.9141 89.6258,16.91 95.1954,21.7902 92.2182,24.7669 87.5043,29.48 75.3709,32.7383 70.6579,28.0263 69.2137,26.5824 68.2329,22.1951 67.5069,19.5632 66.7022,16.6463 67.5963,11.3777 68.1264,8.24622 68.679,4.98223 71.9641,1.68881 72,0 Z" id="rtid-path3147" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,0 V 32 H 128 V 0 L 120,3e-4 C 119.967,2.65051 124.239,5.19375 124.813,8.55431 125.34,11.639 121.521,14.4098 120.432,17.3119 119.482,19.8432 116.979,21.4616 115.59,22.8496 110.876,27.5627 108.713,28.712 104,24 101.128,21.1285 99.6098,14.4242 100.532,8.69489 101.124,5.02254 103.961,1.86377 104,3e-4 Z" id="rtid-path3149" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="287.858" ns1:cy="254.537" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="1.38" />
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask3117)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g3060" transform="matrix(0,1,1,0,0,-0.112)">
- <ns0:path d="M 7.75,96 C 7.69534,97.1043 7.34116,98.9836 6.92773,100.951 6.4918,103.026 5.98635,105.396 5.68555,107.713 5.03061,112.757 5.25877,117.613 7.82422,120.178 10.3005,122.653 13.1738,122.659 15.8594,122.777 17.1404,122.835 18.4252,122.951 19.7012,122.756 20.9772,122.561 22.243,122.044 23.4316,120.855 24.9005,119.387 25.9315,118.113 26.4473,116.027 26.963,113.942 26.9765,111.068 26.4961,106.326 26.3147,104.535 25.7378,102.623 25.2168,100.818 24.7224,99.1064 24.28,97.2813 24.25,96 H 23.75 C 23.7322,97.4315 24.2144,99.1494 24.7363,100.957 25.2583,102.765 25.8238,104.656 25.998,106.377 26.4763,111.097 26.4531,113.926 25.9629,115.908 25.4726,117.891 24.5285,119.052 23.0781,120.502 21.9622,121.618 20.8228,122.079 19.627,122.262 18.4311,122.444 17.1766,122.335 15.8809,122.277 13.1797,122.158 10.5188,122.164 8.17773,119.822 5.82924,117.475 5.53218,112.765 6.17969,107.777 6.47687,105.488 6.97984,103.129 7.41602,101.053 7.85219,98.9769 8.22472,97.1899 8.25,96 Z" id="rtid-path1003-10" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,96 C 39.7946,98.541 39.3391,100.206 38.8164,101.191 38.2734,102.215 37.616,102.873 37.4141,104.012 36.8613,107.131 35.5172,110.519 34.7441,113.588 34.3576,115.122 34.1127,116.579 34.1934,117.896 34.2741,119.214 34.691,120.398 35.6211,121.328 37.0572,122.764 38.5708,123.987 40.7695,125.039 43.3417,126.269 47.3211,126.816 51.0957,126.654 54.8703,126.493 58.436,125.644 60.1758,123.904 61.5326,122.548 62.1495,120.512 62.1738,118.189 62.1981,115.867 61.6311,113.248 60.5859,110.678 59.623,108.311 58.8628,106.336 58.543,104.16 58.4061,103.229 57.7665,102.171 57.2031,100.838 56.665,99.5647 56.1982,97.7913 56.25,96 H 55.75 C 55.6367,98.0067 56.1644,99.6641 56.7422,101.031 57.32,102.398 57.9386,103.482 58.0488,104.232 58.379,106.478 59.1582,108.496 60.123,110.867 61.1467,113.385 61.6972,115.948 61.6738,118.184 61.6504,120.42 61.0552,122.318 59.8223,123.551 58.2728,125.1 54.7848,125.996 51.0742,126.154 47.3636,126.313 43.4274,125.756 40.9863,124.588 38.8426,123.562 37.3871,122.387 35.9746,120.975 35.1409,120.141 34.7669,119.098 34.6914,117.865 34.6159,116.633 34.8482,115.221 35.2285,113.711 35.9892,110.691 37.3401,107.292 37.9062,104.098 38.0806,103.114 38.6826,102.514 39.2598,101.426 39.8369,100.338 40.34,98.8017 40.25,96 Z" id="rtid-path1003-6-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccscccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,96 C 71.6723,98.3648 71.0003,102.46 70.4121,106.734 69.8095,111.114 69.2902,115.864 69.582,119.748 69.8804,123.72 72.9809,126.639 77.2129,126.562 79.3273,126.524 82.4257,125.68 85.1055,124.436 86.4454,123.813 87.6779,123.092 88.625,122.309 89.5721,121.525 90.2451,120.68 90.4141,119.775 90.9879,116.704 90.413,112.561 89.7188,108.275 89.0391,104.08 88.2416,99.5222 88.25,96 H 87.75 C 87.7046,99.6431 88.5316,104.078 89.2246,108.355 89.9176,112.633 90.4713,116.754 89.9238,119.684 89.7897,120.401 89.2056,121.18 88.3066,121.924 87.4077,122.667 86.2063,123.373 84.8945,123.982 82.2709,125.201 79.191,126.027 77.2031,126.062 73.2024,126.134 70.3607,123.447 70.0801,119.711 69.7938,115.901 70.307,111.172 70.9082,106.803 71.5094,102.434 72.1985,98.4275 72.25,96 Z" id="rtid-path1003-1-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,96 C 103.779,96.3567 103.895,96.9902 104.037,97.4824 104.209,98.0768 104.432,98.7594 104.643,99.4727 105.063,100.899 105.419,102.453 105.219,103.584 104.983,104.916 103.777,107.149 102.607,109.461 101.438,111.773 100.297,114.174 100.23,116.061 100.152,118.293 101.235,119.894 102.549,121.125 103.863,122.356 105.417,123.258 106.338,124.115 107.409,125.113 109.286,125.746 111.332,125.936 113.378,126.125 115.597,125.863 117.336,124.967 118.751,124.238 119.733,122.561 120.363,120.518 120.994,118.474 121.268,116.044 121.189,113.756 121.065,110.124 119.247,106.507 118.797,103.541 118.676,102.744 119.013,101.214 119.406,99.7363 119.774,98.3562 120.189,96.8528 120.25,96 H 119.75 C 119.742,96.6548 119.32,98.1224 118.924,99.6094 118.528,101.096 118.15,102.608 118.303,103.615 118.773,106.715 120.57,110.299 120.689,113.773 120.766,116.01 120.496,118.393 119.887,120.369 119.277,122.345 118.324,123.897 117.107,124.523 115.488,125.358 113.349,125.62 111.379,125.438 109.409,125.255 107.608,124.617 106.678,123.75 105.682,122.823 104.149,121.941 102.891,120.762 101.632,119.583 100.657,118.143 100.73,116.078 100.79,114.384 101.888,111.988 103.053,109.686 104.217,107.383 105.442,105.185 105.711,103.67 105.942,102.369 105.549,100.777 105.123,99.332 104.91,98.6094 104.685,97.9245 104.518,97.3438 104.35,96.763 104.244,96.2711 104.25,96 Z" id="rtid-path1003-6-2-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,64 C 7.69186,64.5515 7.42134,65.5192 7.04102,66.4414 6.61628,67.4713 6.0455,68.6751 5.45703,69.9609 4.2801,72.5325 3.03142,75.4286 2.75391,78.002 2.49949,80.361 3.11433,83.0185 4.07031,85.377 5.02629,87.7354 6.31995,89.7908 7.48438,90.9551 9.90455,93.3747 13.3576,94.2161 16.8789,93.9785 20.4002,93.741 24.0032,92.4312 26.7852,90.5098 29.1028,88.9092 29.4464,85.5825 28.2578,83.3398 27.6635,82.2185 26.6623,81.356 25.3301,81.1543 23.9979,80.9525 22.3686,81.4087 20.5039,82.8125 20.1397,83.0867 19.9131,83.0595 19.6328,82.8672 19.3525,82.6748 19.058,82.2558 18.8145,81.7441 18.3273,80.7207 18.0176,79.3329 17.9551,78.7207 17.7169,76.3889 19.2311,73.7336 20.8574,71.166 22.4253,68.6907 24.1079,66.0829 24.25,64 H 23.75 C 23.7268,65.86 22.0689,68.3198 20.4355,70.8984 18.8022,73.4771 17.1938,76.1943 17.457,78.7715 17.5282,79.4677 17.8376,80.8545 18.3633,81.959 18.6261,82.5112 18.9379,82.9968 19.3496,83.2793 19.7613,83.5618 20.3143,83.5821 20.8047,83.2129 22.5992,81.8619 24.0939,81.4725 25.2559,81.6484 26.4178,81.8244 27.28,82.5622 27.8164,83.5742 28.8892,85.5982 28.5679,88.6729 26.502,90.0996 23.7991,91.9665 20.2663,93.2497 16.8457,93.4805 13.4251,93.7112 10.1307,92.8939 7.83789,90.6016 6.75217,89.516 5.46789,87.4954 4.5332,85.1895 3.59852,82.8835 3.00921,80.2894 3.25,78.0566 3.51451,75.6039 4.73892,72.7314 5.91211,70.168 6.4987,68.8863 7.07129,67.6819 7.50391,66.6328 7.93652,65.5838 8.23524,64.6945 8.25,64 Z" id="rtid-path1003-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccsscsccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,64 C 39.6797,65.9884 39.0767,69.6524 38.5195,73.4375 37.9468,77.328 37.4167,81.5217 37.5645,84.7637 37.6035,85.6206 38.0564,86.3984 38.7285,87.0645 39.4006,87.7305 40.2974,88.2958 41.2812,88.748 43.249,89.6525 45.5518,90.1102 47.1309,89.877 50.4131,89.3925 55.6351,87.8543 60.3945,83.0957 61.7613,81.7291 62.0821,79.7803 61.6562,77.8711 61.2304,75.9618 60.0691,74.0698 58.4336,72.7344 57.0792,71.6284 56.5309,70.2839 56.3145,68.7832 56.1092,67.3598 56.2211,65.5489 56.25,64 H 55.75 C 55.73,65.6085 55.5926,67.2744 55.8203,68.8535 56.0481,70.4327 56.6583,71.9317 58.1172,73.123 59.6628,74.385 60.7691,76.1922 61.168,77.9805 61.5668,79.7687 61.2679,81.5154 60.041,82.7422 55.3728,87.4096 50.2636,88.9095 47.0566,89.3828 45.6462,89.5912 43.3793,89.1612 41.4902,88.293 40.5457,87.8588 39.6939,87.3173 39.0801,86.709 38.4662,86.1007 38.0961,85.4372 38.0645,84.7422 37.9201,81.5744 38.4421,77.3927 39.0137,73.5098 39.5853,69.6268 40.2065,66.0462 40.25,64 Z" id="rtid-path1003-6-3-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,64 C 71.6558,66.3661 70.5138,71.2603 69.9473,75.9922 69.6578,78.4097 69.5158,80.8316 69.748,82.9609 69.9803,85.0903 70.5862,86.94 71.8242,88.1777 73.0178,89.371 73.9789,90.0302 74.8652,90.2559 75.7516,90.4816 76.5425,90.2357 77.2715,89.6992 78.7294,88.6262 80.0892,86.4379 82.4258,84.1016 83.2133,83.3142 84.4915,82.4731 85.5762,81.457 86.6608,80.4409 87.5707,79.2198 87.541,77.668 87.4388,72.3428 88.1672,68.5947 88.25,64 H 87.75 C 87.6918,68.6765 86.9358,72.2006 87.041,77.6777 87.0669,79.0291 86.2756,80.1164 85.2344,81.0918 84.1932,82.0672 82.9227,82.8979 82.0723,83.748 79.695,86.125 78.2862,88.333 76.9766,89.2969 76.3218,89.7788 75.7288,89.9601 74.9883,89.7715 74.2477,89.5829 73.3407,88.985 72.1777,87.8223 71.0593,86.7041 70.4715,84.9732 70.2461,82.9062 70.0207,80.8393 70.1563,78.4499 70.4434,76.0527 71.0174,71.2584 72.1978,66.4606 72.25,64 Z" id="rtid-path1003-1-1-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccscccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,64 C 103.735,65.1823 103.804,67.5338 103.715,70.0195 103.622,72.6154 103.351,75.5102 102.639,77.8047 101.829,80.4113 100.572,82.4655 99.5996,84.1992 99.1134,85.0661 98.6974,85.8527 98.4492,86.5996 98.201,87.3465 98.1215,88.063 98.3379,88.752 99.1266,91.2633 102.437,93.5369 106.139,94.6543 109.84,95.7716 113.993,95.7175 116.449,93.2617 119.555,90.1566 122.039,84.699 121.008,78.707 120.474,75.6046 120.228,66.6952 120.25,64 H 119.75 C 119.718,66.5676 119.951,75.5048 120.516,78.791 121.515,84.6001 119.088,89.9144 116.096,92.9062 113.838,95.1632 109.881,95.2617 106.283,94.1758 102.686,93.0899 99.5076,90.8041 98.8164,88.6035 98.6399,88.0416 98.6955,87.443 98.9238,86.7559 99.1522,86.0687 99.5529,85.3033 100.035,84.4434 101,82.7235 102.286,80.6287 103.117,77.9531 103.854,75.5796 104.121,72.654 104.215,70.0371 104.309,67.4202 104.227,65.0996 104.25,64 Z" id="rtid-path1003-6-2-9-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscccccccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 23.75,32 C 23.7266,33.8817 24.7979,35.9738 25.9238,38.168 27.0497,40.3622 28.2389,42.6513 28.5332,44.8203 29.1353,49.2584 26.1759,53.471 23.8242,55.8223 19.1926,60.4531 12.8085,60.452 8.17773,55.8223 7.89139,55.536 7.75509,55.2614 7.71484,54.9707 7.6746,54.68 7.73395,54.3626 7.88086,54.0098 8.17468,53.3041 8.82703,52.4809 9.59375,51.5703 11.1272,49.7492 13.1183,47.5653 13.4863,44.8789 13.8071,42.5371 12.4423,39.8503 11.0449,37.459 10.3462,36.2633 9.63224,35.1421 9.10156,34.1914 8.57088,33.2407 8.2407,32.4373 8.25,32 H 7.75 C 7.81033,32.6217 8.18082,33.5663 8.66602,34.4355 9.20799,35.4065 9.92072,36.5258 10.6133,37.7109 11.9984,40.0813 13.2773,42.715 12.9902,44.8105 12.6505,47.2901 10.7532,49.4164 9.21094,51.248 8.4398,52.1638 7.75793,53.0018 7.41797,53.8184 7.24799,54.2266 7.16482,54.6354 7.2207,55.0391 7.27659,55.4427 7.47674,55.8303 7.82422,56.1777 12.6194,60.9718 19.3817,60.9729 24.1777,56.1777 26.5911,53.7648 29.666,49.4476 29.0293,44.7539 28.7174,42.4552 27.4938,40.1311 26.3691,37.9395 25.2944,35.8449 24.3161,33.639 24.25,32 Z" id="rtid-path1003-4-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccccscccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,32 C 39.6698,33.1145 39.0664,34.9623 38.2559,36.8828 37.4006,38.9094 36.3138,41.2249 35.375,43.5449 34.4362,45.865 33.6423,48.1881 33.3809,50.2539 33.1194,52.3197 33.3946,54.1586 34.6465,55.4102 37.0812,57.8443 40.5462,58.0632 43.9473,57.0898 47.3483,56.1165 50.7222,53.963 53.1094,51.5762 55.5239,49.1621 56.2813,46.0357 56.4492,42.6465 56.6132,39.3356 56.2266,35.5024 56.25,32 H 55.75 C 55.7049,35.6236 56.1162,39.2905 55.9512,42.6211 55.7862,45.9516 55.0552,48.9238 52.7559,51.2227 50.4293,53.5489 47.1054,55.6658 43.8086,56.6094 40.5118,57.5529 37.2782,57.3344 35,55.0566 33.8953,53.9522 33.6255,52.3031 33.877,50.3164 34.1284,48.3297 34.9061,46.0353 35.8379,43.7324 36.7697,41.4296 37.8556,39.1187 38.7168,37.0781 39.578,35.0375 40.2229,33.2755 40.25,32 Z" id="rtid-path1003-6-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,32 C 71.6766,32.384 71.4303,33.0141 71.1016,33.4297 70.7016,33.9353 70.1486,34.4728 69.5703,35.0879 68.4137,36.318 67.1505,37.8697 66.8359,40.1523 66.4697,42.8097 67.0736,46.1499 68.082,49.1621 69.0905,52.1743 70.4921,54.8478 71.8223,56.1777 72.977,57.3322 73.7153,58.5287 74.3906,59.543 75.0659,60.5572 75.6842,61.4095 76.6387,61.7793 77.5931,62.1491 78.813,61.995 80.6035,61.1406 82.394,60.2862 84.7858,58.7236 88.1504,56.1992 91.5358,53.6592 93.258,51.3059 93.9062,49.0742 94.5545,46.8425 94.114,44.7577 93.2598,42.8047 92.4055,40.8516 91.1397,39.0153 90.0977,37.2285 89.106,35.5281 88.3193,33.6309 88.25,32 H 87.75 C 87.7451,33.8688 88.6106,35.6708 89.666,37.4805 90.7214,39.2902 91.9753,41.114 92.8027,43.0059 93.6302,44.8977 94.0341,46.8412 93.4258,48.9355 92.8174,51.0299 91.1816,53.301 87.8496,55.8008 84.4969,58.3162 82.1193,59.8627 80.3867,60.6895 78.6541,61.5162 77.5975,61.6156 76.8203,61.3145 76.0431,61.0133 75.4741,60.27 74.8066,59.2676 74.1392,58.2652 73.3775,57.0237 72.1758,55.8223 70.9615,54.6082 69.5486,51.9668 68.5566,49.0039 67.5647,46.041 66.9839,42.7468 67.332,40.2207 67.6261,38.0864 68.7979,36.6416 69.9355,35.4316 70.5044,34.8267 71.0631,34.2832 71.4941,33.7383 71.9252,33.1934 72.2366,32.6289 72.25,32 Z" id="rtid-path1003-1-8-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccsccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,32 C 103.69,33.4417 103.244,35.9313 102.779,38.5781 102.295,41.3319 101.787,44.4449 101.662,47.3516 101.627,48.1583 101.118,49.2727 100.443,50.4941 99.7688,51.7156 98.9386,53.0524 98.3008,54.3809 97.6629,55.7094 97.2082,57.033 97.3262,58.2539 97.4441,59.4748 98.176,60.5625 99.7715,61.3066 101.456,62.0922 102.844,62.2157 104.031,61.9355 105.218,61.6554 106.19,60.9848 107.09,60.2383 107.99,59.4918 108.822,58.6663 109.719,58.041 110.616,57.4157 111.566,56.9888 112.732,57.0039 113.814,57.0178 114.78,57.5624 115.721,58.3105 116.662,59.0587 117.563,60.0015 118.518,60.752 119.472,61.5024 120.498,62.0726 121.674,61.9961 122.85,61.9196 124.118,61.1981 125.559,59.5176 126.457,58.4697 126.717,57.3408 126.576,56.2285 126.436,55.1162 125.916,54.0191 125.289,52.9453 124.035,50.7977 122.362,48.706 122.215,46.9961 121.784,41.9899 120.255,36.0846 120.25,32 H 119.75 C 119.697,36.2308 121.285,42.0156 121.717,47.0391 121.888,49.0219 123.632,51.0993 124.857,53.1973 125.47,54.2463 125.954,55.292 126.08,56.291 126.206,57.29 125.994,58.2412 125.178,59.1934 123.785,60.8179 122.637,61.4312 121.641,61.4961 120.644,61.5609 119.74,61.078 118.826,60.3594 117.912,59.6408 117.01,58.6979 116.031,57.9199 115.053,57.1419 113.983,56.5199 112.738,56.5039 111.445,56.4872 110.38,56.971 109.434,57.6309 108.487,58.2907 107.648,59.1265 106.771,59.8535 105.895,60.5805 104.988,61.1961 103.916,61.4492 102.844,61.7023 101.592,61.6036 99.9844,60.8535 98.4997,60.1611 97.9267,59.2655 97.8242,58.2051 97.7218,57.1447 98.1308,55.8914 98.752,54.5977 99.3731,53.3039 100.197,51.9742 100.881,50.7363 101.564,49.4984 102.118,48.3589 102.16,47.373 102.283,44.5094 102.788,41.4134 103.271,38.6641 103.755,35.9148 104.218,33.5175 104.25,32 Z" id="rtid-path1003-6-2-4-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccsscccsccscccccsccsccccscccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,0 C 9.3321,1.4439 10.0244,3.49809 10.0215,5.54492 10.0185,7.61813 9.43333,9.91675 8.75781,12.2051 8.0823,14.4934 7.31912,16.7704 6.97852,18.8281 6.63791,20.8858 6.7184,22.7522 7.80273,24.1523 9.90566,26.8678 13.6959,28.5386 17.5605,28.9531 21.4252,29.3676 25.3872,28.5264 27.8203,26.0938 28.188,25.7262 28.3727,25.2681 28.4004,24.7773 28.428,24.2866 28.3092,23.7633 28.0957,23.2109 27.6686,22.1062 26.8582,20.8739 25.9492,19.5684 24.1313,16.9573 21.9261,14.047 21.5547,11.6387 21.2526,9.67993 21.893,7.60466 22.6367,5.60547 23.3463,3.69786 24.1594,1.63409 24.25,0 H 23.75 C 23.731,1.52592 22.9179,3.41364 22.168,5.42969 21.418,7.44573 20.7344,9.59981 21.0605,11.7148 21.4671,14.3512 23.7315,17.2574 25.5391,19.8535 26.4428,21.1516 27.234,22.371 27.6289,23.3926 27.8264,23.9034 27.9242,24.3617 27.9023,24.75 27.8805,25.1383 27.7511,25.456 27.4668,25.7402 25.1861,28.0205 21.3698,28.8599 17.6133,28.457 13.8568,28.0541 10.1818,26.4102 8.19727,23.8477 7.23787,22.6088 7.14014,20.9072 7.4707,18.9102 7.80127,16.9131 8.55936,14.6475 9.23828,12.3477 9.9172,10.0478 10.5184,7.71299 10.5215,5.54688 10.5246,3.38076 9.99442,1.55527 8.25,0 Z" id="rtid-path1003-9-5-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccscccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 55.75,0 C 55.7142,2.88399 57.5697,5.60171 58.1523,9.05664 58.6284,11.8781 59.084,13.7957 59.0645,15.3223 59.0449,16.8488 58.5863,17.9939 57.166,19.4141 56.9525,19.6275 56.8591,19.9208 56.8379,20.2363 56.8167,20.5518 56.8613,20.901 56.9453,21.2793 57.1133,22.0358 57.4376,22.9112 57.7559,23.7949 58.0741,24.6786 58.3862,25.5691 58.5332,26.3242 58.6802,27.0794 58.6475,27.6722 58.3887,28 58.0726,28.4004 57.2569,28.7538 56.1836,28.9824 55.1102,29.211 53.7882,29.3363 52.4648,29.3926 49.818,29.505 47.1478,29.3483 46.377,29.2715 45.9557,29.2295 45.4691,28.8889 44.9648,28.3203 44.4606,27.7517 43.9444,26.9738 43.4316,26.1367 42.4062,24.4625 41.4048,22.557 40.3691,21.5215 40.1273,21.2797 40.0241,21.0404 40.0059,20.7656 39.9876,20.4909 40.0644,20.1733 40.2266,19.8164 40.5509,19.1026 41.2133,18.254 41.9707,17.3301 43.4854,15.4823 45.3883,13.3225 45.6387,10.9355 45.9153,8.2963 44.5022,6.13225 43.0703,4.33984 42.3544,3.44364 41.6285,2.63493 41.0957,1.90625 40.5629,1.17757 40.2387,0.529636 40.25,0 H 39.75 C 39.8188,0.643008 40.202,1.52918 40.6934,2.20117 41.2492,2.96129 41.975,3.77022 42.6797,4.65234 44.0891,6.41659 45.3958,8.44786 45.1406,10.8828 44.915,13.034 43.1056,15.1575 41.584,17.0137 40.8232,17.9418 40.1388,18.8007 39.7715,19.6094 39.5878,20.0137 39.4819,20.4099 39.5078,20.7988 39.5337,21.1878 39.7011,21.5626 40.0156,21.877 40.9445,22.8057 41.969,24.7055 43.0059,26.3984 43.5243,27.2449 44.0482,28.0416 44.5898,28.6523 45.1315,29.2631 45.6951,29.7064 46.3281,29.7695 47.145,29.851 49.8061,30.0045 52.4863,29.8906 53.8265,29.8337 55.1682,29.711 56.2871,29.4727 57.406,29.2343 58.3139,28.9026 58.7812,28.3105 59.1947,27.787 59.1816,27.0405 59.0234,26.2285 58.8653,25.4165 58.5456,24.511 58.2266,23.625 57.9075,22.739 57.5895,21.8722 57.4336,21.1699 57.3556,20.8188 57.3198,20.5095 57.3359,20.2695 57.3521,20.0296 57.4157,19.8714 57.5195,19.7676 58.9996,18.2876 59.5436,16.9572 59.5645,15.3281 59.5853,13.699 59.1179,11.7804 58.6445,8.97461 58.0587,5.50069 56.3225,2.58451 56.25,0 Z" id="rtid-path1003-6-3-0-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscccccccccccccccscccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,0 C 71.6916,0.326208 71.4946,0.944301 71.2363,1.42383 70.9218,2.00786 70.4936,2.67713 70.0449,3.40039 69.1476,4.84692 68.1684,6.50633 67.8809,8.20508 67.3507,11.3364 66.428,16.5919 67.2656,19.6289 67.6269,20.9383 68.0538,22.6978 68.5742,24.3164 69.0947,25.935 69.6888,27.4117 70.4805,28.2031 72.9332,30.6554 77.2286,30.999 81.4844,30.1758 85.7402,29.3525 89.9822,27.3554 92.3945,24.9434 93.1906,24.1475 93.4274,23.1797 93.2812,22.1543 93.1351,21.1289 92.6335,20.0329 91.9785,18.8516 90.6685,16.4889 88.7312,13.7811 87.6348,10.8262 87.0123,9.14881 87.1436,7.12424 87.4492,5.17969 87.7403,3.32754 88.1932,1.35928 88.25,0 H 87.75 C 87.7343,1.27047 87.2654,3.12701 86.9551,5.10156 86.6448,7.07611 86.4907,9.18003 87.166,11 88.2944,14.041 90.2543,16.7731 91.541,19.0938 92.1844,20.2541 92.6568,21.3104 92.7871,22.2246 92.9174,23.1389 92.7337,23.8974 92.041,24.5898 89.7396,26.891 85.5582,28.8794 81.3906,29.6855 77.2231,30.4917 73.0943,30.1095 70.834,27.8496 70.1814,27.1972 69.5633,25.758 69.0508,24.1641 68.5382,22.5701 68.1129,20.8186 67.748,19.4961 66.9767,16.6993 67.8428,11.4187 68.373,8.28711 68.638,6.72186 69.5765,5.10242 70.4688,3.66406 70.9149,2.94488 71.349,2.2706 71.6777,1.66016 72.0065,1.04972 72.2393,0.501447 72.25,0 Z" id="rtid-path1003-1-1-3-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,0 C 103.647,0.80947 102.985,2.17388 102.252,3.55273 101.462,5.03836 100.589,6.7673 100.285,8.6543 99.3513,14.4563 100.844,21.1979 103.822,24.1758 105.011,25.3641 106.046,26.1936 107.021,26.6934 107.997,27.1932 108.922,27.358 109.836,27.2051 111.665,26.8993 113.404,25.3883 115.768,23.0254 117.119,21.6749 119.678,20.0341 120.666,17.4004 121.186,16.0148 122.397,14.6012 123.432,13.1465 124.466,11.6918 125.341,10.1651 125.059,8.51172 124.756,6.7403 123.509,5.23854 122.373,3.85156 121.313,2.55689 120.359,1.12102 120.25,0 H 119.75 C 119.732,1.46039 120.851,2.78259 121.986,4.16992 123.122,5.55726 124.295,7.00657 124.566,8.5957 124.811,10.027 124.041,11.43 123.025,12.8574 122.01,14.2848 120.766,15.7081 120.197,17.2246 119.286,19.6535 116.841,21.2464 115.414,22.6719 113.063,25.0221 111.363,26.4438 109.754,26.7129 108.949,26.8475 108.153,26.7107 107.25,26.248 106.347,25.7854 105.346,24.9899 104.178,23.8223 101.412,21.0572 99.8688,14.391 100.779,8.73438 101.067,6.94903 101.907,5.26482 102.693,3.78711 103.479,2.3094 104.228,1.05557 104.25,0 Z" id="rtid-path1003-6-2-9-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccccscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="21.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask3117"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g3151"
+ transform="matrix(0,1,1,0,1e-4,-2e-4)">
+ <path
+ d="M 0,362.834 V 483.779 H 120.945 V 362.834 L 90.7088,362.835 C 90.5797,373.202 97.8557,388.683 99.2003,401.957 102.823,437.718 98.9244,445.074 87.8908,456.105 79.1805,464.813 69.7202,463.527 59.9817,463.094 49.8011,462.642 39.3403,462.646 30.2363,453.543 20.9501,444.258 19.9609,426.185 22.4222,407.227 24.6823,389.82 30.0529,371.467 30.2363,362.835 Z"
+ id="rtid-path3119"
+ style="fill:#ffffff;stroke-width:1.972157"
+ transform="scale(0.264583)"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 V 128 H 64 V 96 L 56,96.0003 C 55.7792,99.911 58.0485,102.515 58.2957,104.197 58.6205,106.408 59.3913,108.403 60.355,110.772 62.4244,115.86 62.5892,121.139 59.9995,123.728 56.7103,127.017 45.8911,127.212 40.8779,124.814 38.7067,123.775 37.2216,122.576 35.7973,121.152 32.2697,117.626 36.5416,110.369 37.6606,104.055 38.0367,101.932 40.1779,101.539 40,96.0003 Z"
+ id="rtid-path3121"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.9997 V 128 H 96 V 95.9997 L 88,96 C 87.9103,103.205 91.2904,113.728 90.1692,119.729 89.5631,122.973 81.3103,126.239 77.2081,126.313 73.0916,126.387 70.1204,123.583 69.8309,119.729 69.2528,112.035 71.8986,100.771 72,96 Z"
+ id="rtid-path3123"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 V 128 H 128 V 96 L 120,96.0003 C 119.981,97.4942 118.275,101.774 118.549,103.578 119.009,106.611 120.818,110.212 120.94,113.765 121.095,118.29 119.852,123.389 117.221,124.745 113.862,126.475 108.51,125.797 106.508,123.932 104.592,122.147 100.329,120.368 100.481,116.07 100.607,112.489 104.959,106.474 105.464,103.627 105.895,101.195 103.972,97.3349 104,96.0003 Z"
+ id="rtid-path3125"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.9997 V 96 H 32 V 63.9997 L 24,64 C 23.9502,67.9981 17.2051,73.8369 17.7065,78.746 17.8402,80.0543 18.9443,84.2993 20.6536,83.0124 27.9719,77.5027 31.0273,87.2771 26.6437,90.3047 21.159,94.0929 12.3741,95.4912 7.66109,90.7792 5.41095,88.5295 2.50708,82.6214 3.00228,78.0294 3.5443,73.0034 7.94704,66.4932 8.00002,64 Z"
+ id="rtid-path3127"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 V 96 H 64.0001 V 64 L 56.0001,64.0003 C 55.9598,67.2407 55.4617,70.6316 58.2751,72.9289 61.456,75.5263 62.8118,80.3259 60.2181,82.9192 55.5043,87.6322 50.3386,89.1506 47.0939,89.6297 44.1044,90.0712 37.9564,87.8568 37.815,84.753 37.523,78.3432 39.9149,68.0023 40,64.0003 Z"
+ id="rtid-path3129"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,63.9997 V 96 H 96.0001 V 63.9997 L 88.0002,64 C 87.9417,68.7015 87.1866,72.2202 87.2912,77.6724 87.3469,80.5757 83.8863,82.2882 82.2484,83.9258 77.5345,88.6389 76.713,92.712 72,88 67.287,83.288 71.8987,68.771 72,64 Z"
+ id="rtid-path3131"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 V 96 H 128 V 64 L 120,64.0003 C 119.968,66.5447 120.208,75.527 120.762,78.7486 121.777,84.6492 119.321,90.0354 116.272,93.0839 111.558,97.7969 100.057,93.3899 98.5771,88.6779 97.7913,86.1764 101.238,83.161 102.878,77.8789 104.328,73.211 103.953,66.2384 104,64.0003 Z"
+ id="rtid-path3133"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.9997 V 64 H 32 V 31.9997 L 24,32 C 23.9556,35.5634 28.1758,40.3196 28.7819,44.7874 29.4014,49.3533 26.3826,53.6179 24.0001,56 19.2863,60.713 12.713,60.712 8.00002,56 5.4647,53.4652 12.5299,50.0102 13.2377,44.8442 13.8456,40.4069 7.95317,34.2045 8.00002,32 Z"
+ id="rtid-path3135"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 V 64 H 64.0001 V 32 L 56.0001,32.0003 C 55.9104,39.205 57.6463,46.6856 52.9325,51.3986 48.2187,56.1116 39.5364,59.9451 34.8234,55.2331 30.1103,50.5211 39.8986,36.771 40,32.0003 Z"
+ id="rtid-path3137"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="ccccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,31.9997 V 64 H 96.0001 V 31.9997 L 88.0002,32 C 87.9812,39.1615 101.435,45.9204 88.0002,56 74.5657,66.0796 76.713,60.712 72,56 69.4554,53.456 66.3696,45.3696 67.0839,40.1862 67.6926,35.7691 71.9534,34.1951 72,32 Z"
+ id="rtid-path3139"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="ccccczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32 V 64 H 128 V 32 L 120,32.0003 C 119.948,36.1649 121.531,41.959 121.966,47.0177 122.284,50.7105 128.798,55.3553 125.368,59.3552 119.701,65.9652 117.389,56.8142 112.735,56.7543 107.815,56.6909 106.463,64.152 99.8779,61.0808 93.7178,58.2077 101.757,50.9482 101.911,47.3626 102.159,41.5924 103.938,34.9427 104,32.0003 Z"
+ id="rtid-path3141"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,-3e-4 V 32 H 32 V -3e-4 L 24,0 C 23.9599,3.21896 20.6786,7.60311 21.3068,11.6769 22.0848,16.7216 30.2507,23.3099 27.6429,25.9173 22.9291,30.6303 12.0875,29.278 8.00002,24 3.91254,18.722 14.748,6.01635 8.00002,0 Z"
+ id="rtid-path3143"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,0 V 32 H 64.0001 V 0 L 56.0001,3e-4 C 55.9656,2.77163 57.8055,5.49769 58.3988,9.01533 59.348,14.6426 60.2428,16.6902 57.3422,19.5903 56.0729,20.8594 59.9288,26.4522 58.5844,28.1549 57.0173,30.1396 47.9406,29.6791 46.3529,29.5208 44.2443,29.3106 42.1564,23.6635 40.1917,21.6993 37.9666,19.4747 44.9138,15.448 45.3897,10.9099 45.9217,5.83568 39.9465,2.51867 40,3e-4 Z"
+ id="rtid-path3145"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,-3e-4 V 32 H 96.0001 V -3e-4 L 88.0002,0 C 87.9672,2.65434 86.1031,7.41677 87.4008,10.9141 89.6258,16.91 95.1954,21.7902 92.2182,24.7669 87.5043,29.48 75.3709,32.7383 70.6579,28.0263 69.2137,26.5824 68.2329,22.1951 67.5069,19.5632 66.7022,16.6463 67.5963,11.3777 68.1264,8.24622 68.679,4.98223 71.9641,1.68881 72,0 Z"
+ id="rtid-path3147"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,0 V 32 H 128 V 0 L 120,3e-4 C 119.967,2.65051 124.239,5.19375 124.813,8.55431 125.34,11.639 121.521,14.4098 120.432,17.3119 119.482,19.8432 116.979,21.4616 115.59,22.8496 110.876,27.5627 108.713,28.712 104,24 101.128,21.1285 99.6098,14.4242 100.532,8.69489 101.124,5.02254 103.961,1.86377 104,3e-4 Z"
+ id="rtid-path3149"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="160.68409"
+ inkscape:cy="254.537"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.38" />
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask3117)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g3060"
+ transform="matrix(0,1,1,0,0,-0.112)">
+ <path
+ d="M 7.75,96 C 7.69534,97.1043 7.34116,98.9836 6.92773,100.951 6.4918,103.026 5.98635,105.396 5.68555,107.713 5.03061,112.757 5.25877,117.613 7.82422,120.178 10.3005,122.653 13.1738,122.659 15.8594,122.777 17.1404,122.835 18.4252,122.951 19.7012,122.756 20.9772,122.561 22.243,122.044 23.4316,120.855 24.9005,119.387 25.9315,118.113 26.4473,116.027 26.963,113.942 26.9765,111.068 26.4961,106.326 26.3147,104.535 25.7378,102.623 25.2168,100.818 24.7224,99.1064 24.28,97.2813 24.25,96 H 23.75 C 23.7322,97.4315 24.2144,99.1494 24.7363,100.957 25.2583,102.765 25.8238,104.656 25.998,106.377 26.4763,111.097 26.4531,113.926 25.9629,115.908 25.4726,117.891 24.5285,119.052 23.0781,120.502 21.9622,121.618 20.8228,122.079 19.627,122.262 18.4311,122.444 17.1766,122.335 15.8809,122.277 13.1797,122.158 10.5188,122.164 8.17773,119.822 5.82924,117.475 5.53218,112.765 6.17969,107.777 6.47687,105.488 6.97984,103.129 7.41602,101.053 7.85219,98.9769 8.22472,97.1899 8.25,96 Z"
+ id="rtid-path1003-10"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,96 C 39.7946,98.541 39.3391,100.206 38.8164,101.191 38.2734,102.215 37.616,102.873 37.4141,104.012 36.8613,107.131 35.5172,110.519 34.7441,113.588 34.3576,115.122 34.1127,116.579 34.1934,117.896 34.2741,119.214 34.691,120.398 35.6211,121.328 37.0572,122.764 38.5708,123.987 40.7695,125.039 43.3417,126.269 47.3211,126.816 51.0957,126.654 54.8703,126.493 58.436,125.644 60.1758,123.904 61.5326,122.548 62.1495,120.512 62.1738,118.189 62.1981,115.867 61.6311,113.248 60.5859,110.678 59.623,108.311 58.8628,106.336 58.543,104.16 58.4061,103.229 57.7665,102.171 57.2031,100.838 56.665,99.5647 56.1982,97.7913 56.25,96 H 55.75 C 55.6367,98.0067 56.1644,99.6641 56.7422,101.031 57.32,102.398 57.9386,103.482 58.0488,104.232 58.379,106.478 59.1582,108.496 60.123,110.867 61.1467,113.385 61.6972,115.948 61.6738,118.184 61.6504,120.42 61.0552,122.318 59.8223,123.551 58.2728,125.1 54.7848,125.996 51.0742,126.154 47.3636,126.313 43.4274,125.756 40.9863,124.588 38.8426,123.562 37.3871,122.387 35.9746,120.975 35.1409,120.141 34.7669,119.098 34.6914,117.865 34.6159,116.633 34.8482,115.221 35.2285,113.711 35.9892,110.691 37.3401,107.292 37.9062,104.098 38.0806,103.114 38.6826,102.514 39.2598,101.426 39.8369,100.338 40.34,98.8017 40.25,96 Z"
+ id="rtid-path1003-6-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccscccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,96 C 71.6723,98.3648 71.0003,102.46 70.4121,106.734 69.8095,111.114 69.2902,115.864 69.582,119.748 69.8804,123.72 72.9809,126.639 77.2129,126.562 79.3273,126.524 82.4257,125.68 85.1055,124.436 86.4454,123.813 87.6779,123.092 88.625,122.309 89.5721,121.525 90.2451,120.68 90.4141,119.775 90.9879,116.704 90.413,112.561 89.7188,108.275 89.0391,104.08 88.2416,99.5222 88.25,96 H 87.75 C 87.7046,99.6431 88.5316,104.078 89.2246,108.355 89.9176,112.633 90.4713,116.754 89.9238,119.684 89.7897,120.401 89.2056,121.18 88.3066,121.924 87.4077,122.667 86.2063,123.373 84.8945,123.982 82.2709,125.201 79.191,126.027 77.2031,126.062 73.2024,126.134 70.3607,123.447 70.0801,119.711 69.7938,115.901 70.307,111.172 70.9082,106.803 71.5094,102.434 72.1985,98.4275 72.25,96 Z"
+ id="rtid-path1003-1-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,96 C 103.779,96.3567 103.895,96.9902 104.037,97.4824 104.209,98.0768 104.432,98.7594 104.643,99.4727 105.063,100.899 105.419,102.453 105.219,103.584 104.983,104.916 103.777,107.149 102.607,109.461 101.438,111.773 100.297,114.174 100.23,116.061 100.152,118.293 101.235,119.894 102.549,121.125 103.863,122.356 105.417,123.258 106.338,124.115 107.409,125.113 109.286,125.746 111.332,125.936 113.378,126.125 115.597,125.863 117.336,124.967 118.751,124.238 119.733,122.561 120.363,120.518 120.994,118.474 121.268,116.044 121.189,113.756 121.065,110.124 119.247,106.507 118.797,103.541 118.676,102.744 119.013,101.214 119.406,99.7363 119.774,98.3562 120.189,96.8528 120.25,96 H 119.75 C 119.742,96.6548 119.32,98.1224 118.924,99.6094 118.528,101.096 118.15,102.608 118.303,103.615 118.773,106.715 120.57,110.299 120.689,113.773 120.766,116.01 120.496,118.393 119.887,120.369 119.277,122.345 118.324,123.897 117.107,124.523 115.488,125.358 113.349,125.62 111.379,125.438 109.409,125.255 107.608,124.617 106.678,123.75 105.682,122.823 104.149,121.941 102.891,120.762 101.632,119.583 100.657,118.143 100.73,116.078 100.79,114.384 101.888,111.988 103.053,109.686 104.217,107.383 105.442,105.185 105.711,103.67 105.942,102.369 105.549,100.777 105.123,99.332 104.91,98.6094 104.685,97.9245 104.518,97.3438 104.35,96.763 104.244,96.2711 104.25,96 Z"
+ id="rtid-path1003-6-2-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,64 C 7.69186,64.5515 7.42134,65.5192 7.04102,66.4414 6.61628,67.4713 6.0455,68.6751 5.45703,69.9609 4.2801,72.5325 3.03142,75.4286 2.75391,78.002 2.49949,80.361 3.11433,83.0185 4.07031,85.377 5.02629,87.7354 6.31995,89.7908 7.48438,90.9551 9.90455,93.3747 13.3576,94.2161 16.8789,93.9785 20.4002,93.741 24.0032,92.4312 26.7852,90.5098 29.1028,88.9092 29.4464,85.5825 28.2578,83.3398 27.6635,82.2185 26.6623,81.356 25.3301,81.1543 23.9979,80.9525 22.3686,81.4087 20.5039,82.8125 20.1397,83.0867 19.9131,83.0595 19.6328,82.8672 19.3525,82.6748 19.058,82.2558 18.8145,81.7441 18.3273,80.7207 18.0176,79.3329 17.9551,78.7207 17.7169,76.3889 19.2311,73.7336 20.8574,71.166 22.4253,68.6907 24.1079,66.0829 24.25,64 H 23.75 C 23.7268,65.86 22.0689,68.3198 20.4355,70.8984 18.8022,73.4771 17.1938,76.1943 17.457,78.7715 17.5282,79.4677 17.8376,80.8545 18.3633,81.959 18.6261,82.5112 18.9379,82.9968 19.3496,83.2793 19.7613,83.5618 20.3143,83.5821 20.8047,83.2129 22.5992,81.8619 24.0939,81.4725 25.2559,81.6484 26.4178,81.8244 27.28,82.5622 27.8164,83.5742 28.8892,85.5982 28.5679,88.6729 26.502,90.0996 23.7991,91.9665 20.2663,93.2497 16.8457,93.4805 13.4251,93.7112 10.1307,92.8939 7.83789,90.6016 6.75217,89.516 5.46789,87.4954 4.5332,85.1895 3.59852,82.8835 3.00921,80.2894 3.25,78.0566 3.51451,75.6039 4.73892,72.7314 5.91211,70.168 6.4987,68.8863 7.07129,67.6819 7.50391,66.6328 7.93652,65.5838 8.23524,64.6945 8.25,64 Z"
+ id="rtid-path1003-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccsscsccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,64 C 39.6797,65.9884 39.0767,69.6524 38.5195,73.4375 37.9468,77.328 37.4167,81.5217 37.5645,84.7637 37.6035,85.6206 38.0564,86.3984 38.7285,87.0645 39.4006,87.7305 40.2974,88.2958 41.2812,88.748 43.249,89.6525 45.5518,90.1102 47.1309,89.877 50.4131,89.3925 55.6351,87.8543 60.3945,83.0957 61.7613,81.7291 62.0821,79.7803 61.6562,77.8711 61.2304,75.9618 60.0691,74.0698 58.4336,72.7344 57.0792,71.6284 56.5309,70.2839 56.3145,68.7832 56.1092,67.3598 56.2211,65.5489 56.25,64 H 55.75 C 55.73,65.6085 55.5926,67.2744 55.8203,68.8535 56.0481,70.4327 56.6583,71.9317 58.1172,73.123 59.6628,74.385 60.7691,76.1922 61.168,77.9805 61.5668,79.7687 61.2679,81.5154 60.041,82.7422 55.3728,87.4096 50.2636,88.9095 47.0566,89.3828 45.6462,89.5912 43.3793,89.1612 41.4902,88.293 40.5457,87.8588 39.6939,87.3173 39.0801,86.709 38.4662,86.1007 38.0961,85.4372 38.0645,84.7422 37.9201,81.5744 38.4421,77.3927 39.0137,73.5098 39.5853,69.6268 40.2065,66.0462 40.25,64 Z"
+ id="rtid-path1003-6-3-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,64 C 71.6558,66.3661 70.5138,71.2603 69.9473,75.9922 69.6578,78.4097 69.5158,80.8316 69.748,82.9609 69.9803,85.0903 70.5862,86.94 71.8242,88.1777 73.0178,89.371 73.9789,90.0302 74.8652,90.2559 75.7516,90.4816 76.5425,90.2357 77.2715,89.6992 78.7294,88.6262 80.0892,86.4379 82.4258,84.1016 83.2133,83.3142 84.4915,82.4731 85.5762,81.457 86.6608,80.4409 87.5707,79.2198 87.541,77.668 87.4388,72.3428 88.1672,68.5947 88.25,64 H 87.75 C 87.6918,68.6765 86.9358,72.2006 87.041,77.6777 87.0669,79.0291 86.2756,80.1164 85.2344,81.0918 84.1932,82.0672 82.9227,82.8979 82.0723,83.748 79.695,86.125 78.2862,88.333 76.9766,89.2969 76.3218,89.7788 75.7288,89.9601 74.9883,89.7715 74.2477,89.5829 73.3407,88.985 72.1777,87.8223 71.0593,86.7041 70.4715,84.9732 70.2461,82.9062 70.0207,80.8393 70.1563,78.4499 70.4434,76.0527 71.0174,71.2584 72.1978,66.4606 72.25,64 Z"
+ id="rtid-path1003-1-1-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccscccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,64 C 103.735,65.1823 103.804,67.5338 103.715,70.0195 103.622,72.6154 103.351,75.5102 102.639,77.8047 101.829,80.4113 100.572,82.4655 99.5996,84.1992 99.1134,85.0661 98.6974,85.8527 98.4492,86.5996 98.201,87.3465 98.1215,88.063 98.3379,88.752 99.1266,91.2633 102.437,93.5369 106.139,94.6543 109.84,95.7716 113.993,95.7175 116.449,93.2617 119.555,90.1566 122.039,84.699 121.008,78.707 120.474,75.6046 120.228,66.6952 120.25,64 H 119.75 C 119.718,66.5676 119.951,75.5048 120.516,78.791 121.515,84.6001 119.088,89.9144 116.096,92.9062 113.838,95.1632 109.881,95.2617 106.283,94.1758 102.686,93.0899 99.5076,90.8041 98.8164,88.6035 98.6399,88.0416 98.6955,87.443 98.9238,86.7559 99.1522,86.0687 99.5529,85.3033 100.035,84.4434 101,82.7235 102.286,80.6287 103.117,77.9531 103.854,75.5796 104.121,72.654 104.215,70.0371 104.309,67.4202 104.227,65.0996 104.25,64 Z"
+ id="rtid-path1003-6-2-9-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 23.75,32 C 23.7266,33.8817 24.7979,35.9738 25.9238,38.168 27.0497,40.3622 28.2389,42.6513 28.5332,44.8203 29.1353,49.2584 26.1759,53.471 23.8242,55.8223 19.1926,60.4531 12.8085,60.452 8.17773,55.8223 7.89139,55.536 7.75509,55.2614 7.71484,54.9707 7.6746,54.68 7.73395,54.3626 7.88086,54.0098 8.17468,53.3041 8.82703,52.4809 9.59375,51.5703 11.1272,49.7492 13.1183,47.5653 13.4863,44.8789 13.8071,42.5371 12.4423,39.8503 11.0449,37.459 10.3462,36.2633 9.63224,35.1421 9.10156,34.1914 8.57088,33.2407 8.2407,32.4373 8.25,32 H 7.75 C 7.81033,32.6217 8.18082,33.5663 8.66602,34.4355 9.20799,35.4065 9.92072,36.5258 10.6133,37.7109 11.9984,40.0813 13.2773,42.715 12.9902,44.8105 12.6505,47.2901 10.7532,49.4164 9.21094,51.248 8.4398,52.1638 7.75793,53.0018 7.41797,53.8184 7.24799,54.2266 7.16482,54.6354 7.2207,55.0391 7.27659,55.4427 7.47674,55.8303 7.82422,56.1777 12.6194,60.9718 19.3817,60.9729 24.1777,56.1777 26.5911,53.7648 29.666,49.4476 29.0293,44.7539 28.7174,42.4552 27.4938,40.1311 26.3691,37.9395 25.2944,35.8449 24.3161,33.639 24.25,32 Z"
+ id="rtid-path1003-4-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccccscccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,32 C 39.6698,33.1145 39.0664,34.9623 38.2559,36.8828 37.4006,38.9094 36.3138,41.2249 35.375,43.5449 34.4362,45.865 33.6423,48.1881 33.3809,50.2539 33.1194,52.3197 33.3946,54.1586 34.6465,55.4102 37.0812,57.8443 40.5462,58.0632 43.9473,57.0898 47.3483,56.1165 50.7222,53.963 53.1094,51.5762 55.5239,49.1621 56.2813,46.0357 56.4492,42.6465 56.6132,39.3356 56.2266,35.5024 56.25,32 H 55.75 C 55.7049,35.6236 56.1162,39.2905 55.9512,42.6211 55.7862,45.9516 55.0552,48.9238 52.7559,51.2227 50.4293,53.5489 47.1054,55.6658 43.8086,56.6094 40.5118,57.5529 37.2782,57.3344 35,55.0566 33.8953,53.9522 33.6255,52.3031 33.877,50.3164 34.1284,48.3297 34.9061,46.0353 35.8379,43.7324 36.7697,41.4296 37.8556,39.1187 38.7168,37.0781 39.578,35.0375 40.2229,33.2755 40.25,32 Z"
+ id="rtid-path1003-6-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,32 C 71.6766,32.384 71.4303,33.0141 71.1016,33.4297 70.7016,33.9353 70.1486,34.4728 69.5703,35.0879 68.4137,36.318 67.1505,37.8697 66.8359,40.1523 66.4697,42.8097 67.0736,46.1499 68.082,49.1621 69.0905,52.1743 70.4921,54.8478 71.8223,56.1777 72.977,57.3322 73.7153,58.5287 74.3906,59.543 75.0659,60.5572 75.6842,61.4095 76.6387,61.7793 77.5931,62.1491 78.813,61.995 80.6035,61.1406 82.394,60.2862 84.7858,58.7236 88.1504,56.1992 91.5358,53.6592 93.258,51.3059 93.9062,49.0742 94.5545,46.8425 94.114,44.7577 93.2598,42.8047 92.4055,40.8516 91.1397,39.0153 90.0977,37.2285 89.106,35.5281 88.3193,33.6309 88.25,32 H 87.75 C 87.7451,33.8688 88.6106,35.6708 89.666,37.4805 90.7214,39.2902 91.9753,41.114 92.8027,43.0059 93.6302,44.8977 94.0341,46.8412 93.4258,48.9355 92.8174,51.0299 91.1816,53.301 87.8496,55.8008 84.4969,58.3162 82.1193,59.8627 80.3867,60.6895 78.6541,61.5162 77.5975,61.6156 76.8203,61.3145 76.0431,61.0133 75.4741,60.27 74.8066,59.2676 74.1392,58.2652 73.3775,57.0237 72.1758,55.8223 70.9615,54.6082 69.5486,51.9668 68.5566,49.0039 67.5647,46.041 66.9839,42.7468 67.332,40.2207 67.6261,38.0864 68.7979,36.6416 69.9355,35.4316 70.5044,34.8267 71.0631,34.2832 71.4941,33.7383 71.9252,33.1934 72.2366,32.6289 72.25,32 Z"
+ id="rtid-path1003-1-8-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccsccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,32 C 103.69,33.4417 103.244,35.9313 102.779,38.5781 102.295,41.3319 101.787,44.4449 101.662,47.3516 101.627,48.1583 101.118,49.2727 100.443,50.4941 99.7688,51.7156 98.9386,53.0524 98.3008,54.3809 97.6629,55.7094 97.2082,57.033 97.3262,58.2539 97.4441,59.4748 98.176,60.5625 99.7715,61.3066 101.456,62.0922 102.844,62.2157 104.031,61.9355 105.218,61.6554 106.19,60.9848 107.09,60.2383 107.99,59.4918 108.822,58.6663 109.719,58.041 110.616,57.4157 111.566,56.9888 112.732,57.0039 113.814,57.0178 114.78,57.5624 115.721,58.3105 116.662,59.0587 117.563,60.0015 118.518,60.752 119.472,61.5024 120.498,62.0726 121.674,61.9961 122.85,61.9196 124.118,61.1981 125.559,59.5176 126.457,58.4697 126.717,57.3408 126.576,56.2285 126.436,55.1162 125.916,54.0191 125.289,52.9453 124.035,50.7977 122.362,48.706 122.215,46.9961 121.784,41.9899 120.255,36.0846 120.25,32 H 119.75 C 119.697,36.2308 121.285,42.0156 121.717,47.0391 121.888,49.0219 123.632,51.0993 124.857,53.1973 125.47,54.2463 125.954,55.292 126.08,56.291 126.206,57.29 125.994,58.2412 125.178,59.1934 123.785,60.8179 122.637,61.4312 121.641,61.4961 120.644,61.5609 119.74,61.078 118.826,60.3594 117.912,59.6408 117.01,58.6979 116.031,57.9199 115.053,57.1419 113.983,56.5199 112.738,56.5039 111.445,56.4872 110.38,56.971 109.434,57.6309 108.487,58.2907 107.648,59.1265 106.771,59.8535 105.895,60.5805 104.988,61.1961 103.916,61.4492 102.844,61.7023 101.592,61.6036 99.9844,60.8535 98.4997,60.1611 97.9267,59.2655 97.8242,58.2051 97.7218,57.1447 98.1308,55.8914 98.752,54.5977 99.3731,53.3039 100.197,51.9742 100.881,50.7363 101.564,49.4984 102.118,48.3589 102.16,47.373 102.283,44.5094 102.788,41.4134 103.271,38.6641 103.755,35.9148 104.218,33.5175 104.25,32 Z"
+ id="rtid-path1003-6-2-4-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccsscccsccscccccsccsccccscccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,0 C 9.3321,1.4439 10.0244,3.49809 10.0215,5.54492 10.0185,7.61813 9.43333,9.91675 8.75781,12.2051 8.0823,14.4934 7.31912,16.7704 6.97852,18.8281 6.63791,20.8858 6.7184,22.7522 7.80273,24.1523 9.90566,26.8678 13.6959,28.5386 17.5605,28.9531 21.4252,29.3676 25.3872,28.5264 27.8203,26.0938 28.188,25.7262 28.3727,25.2681 28.4004,24.7773 28.428,24.2866 28.3092,23.7633 28.0957,23.2109 27.6686,22.1062 26.8582,20.8739 25.9492,19.5684 24.1313,16.9573 21.9261,14.047 21.5547,11.6387 21.2526,9.67993 21.893,7.60466 22.6367,5.60547 23.3463,3.69786 24.1594,1.63409 24.25,0 H 23.75 C 23.731,1.52592 22.9179,3.41364 22.168,5.42969 21.418,7.44573 20.7344,9.59981 21.0605,11.7148 21.4671,14.3512 23.7315,17.2574 25.5391,19.8535 26.4428,21.1516 27.234,22.371 27.6289,23.3926 27.8264,23.9034 27.9242,24.3617 27.9023,24.75 27.8805,25.1383 27.7511,25.456 27.4668,25.7402 25.1861,28.0205 21.3698,28.8599 17.6133,28.457 13.8568,28.0541 10.1818,26.4102 8.19727,23.8477 7.23787,22.6088 7.14014,20.9072 7.4707,18.9102 7.80127,16.9131 8.55936,14.6475 9.23828,12.3477 9.9172,10.0478 10.5184,7.71299 10.5215,5.54688 10.5246,3.38076 9.99442,1.55527 8.25,0 Z"
+ id="rtid-path1003-9-5-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccscccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 55.75,0 C 55.7142,2.88399 57.5697,5.60171 58.1523,9.05664 58.6284,11.8781 59.084,13.7957 59.0645,15.3223 59.0449,16.8488 58.5863,17.9939 57.166,19.4141 56.9525,19.6275 56.8591,19.9208 56.8379,20.2363 56.8167,20.5518 56.8613,20.901 56.9453,21.2793 57.1133,22.0358 57.4376,22.9112 57.7559,23.7949 58.0741,24.6786 58.3862,25.5691 58.5332,26.3242 58.6802,27.0794 58.6475,27.6722 58.3887,28 58.0726,28.4004 57.2569,28.7538 56.1836,28.9824 55.1102,29.211 53.7882,29.3363 52.4648,29.3926 49.818,29.505 47.1478,29.3483 46.377,29.2715 45.9557,29.2295 45.4691,28.8889 44.9648,28.3203 44.4606,27.7517 43.9444,26.9738 43.4316,26.1367 42.4062,24.4625 41.4048,22.557 40.3691,21.5215 40.1273,21.2797 40.0241,21.0404 40.0059,20.7656 39.9876,20.4909 40.0644,20.1733 40.2266,19.8164 40.5509,19.1026 41.2133,18.254 41.9707,17.3301 43.4854,15.4823 45.3883,13.3225 45.6387,10.9355 45.9153,8.2963 44.5022,6.13225 43.0703,4.33984 42.3544,3.44364 41.6285,2.63493 41.0957,1.90625 40.5629,1.17757 40.2387,0.529636 40.25,0 H 39.75 C 39.8188,0.643008 40.202,1.52918 40.6934,2.20117 41.2492,2.96129 41.975,3.77022 42.6797,4.65234 44.0891,6.41659 45.3958,8.44786 45.1406,10.8828 44.915,13.034 43.1056,15.1575 41.584,17.0137 40.8232,17.9418 40.1388,18.8007 39.7715,19.6094 39.5878,20.0137 39.4819,20.4099 39.5078,20.7988 39.5337,21.1878 39.7011,21.5626 40.0156,21.877 40.9445,22.8057 41.969,24.7055 43.0059,26.3984 43.5243,27.2449 44.0482,28.0416 44.5898,28.6523 45.1315,29.2631 45.6951,29.7064 46.3281,29.7695 47.145,29.851 49.8061,30.0045 52.4863,29.8906 53.8265,29.8337 55.1682,29.711 56.2871,29.4727 57.406,29.2343 58.3139,28.9026 58.7812,28.3105 59.1947,27.787 59.1816,27.0405 59.0234,26.2285 58.8653,25.4165 58.5456,24.511 58.2266,23.625 57.9075,22.739 57.5895,21.8722 57.4336,21.1699 57.3556,20.8188 57.3198,20.5095 57.3359,20.2695 57.3521,20.0296 57.4157,19.8714 57.5195,19.7676 58.9996,18.2876 59.5436,16.9572 59.5645,15.3281 59.5853,13.699 59.1179,11.7804 58.6445,8.97461 58.0587,5.50069 56.3225,2.58451 56.25,0 Z"
+ id="rtid-path1003-6-3-0-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscccccccccccccccscccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,0 C 71.6916,0.326208 71.4946,0.944301 71.2363,1.42383 70.9218,2.00786 70.4936,2.67713 70.0449,3.40039 69.1476,4.84692 68.1684,6.50633 67.8809,8.20508 67.3507,11.3364 66.428,16.5919 67.2656,19.6289 67.6269,20.9383 68.0538,22.6978 68.5742,24.3164 69.0947,25.935 69.6888,27.4117 70.4805,28.2031 72.9332,30.6554 77.2286,30.999 81.4844,30.1758 85.7402,29.3525 89.9822,27.3554 92.3945,24.9434 93.1906,24.1475 93.4274,23.1797 93.2812,22.1543 93.1351,21.1289 92.6335,20.0329 91.9785,18.8516 90.6685,16.4889 88.7312,13.7811 87.6348,10.8262 87.0123,9.14881 87.1436,7.12424 87.4492,5.17969 87.7403,3.32754 88.1932,1.35928 88.25,0 H 87.75 C 87.7343,1.27047 87.2654,3.12701 86.9551,5.10156 86.6448,7.07611 86.4907,9.18003 87.166,11 88.2944,14.041 90.2543,16.7731 91.541,19.0938 92.1844,20.2541 92.6568,21.3104 92.7871,22.2246 92.9174,23.1389 92.7337,23.8974 92.041,24.5898 89.7396,26.891 85.5582,28.8794 81.3906,29.6855 77.2231,30.4917 73.0943,30.1095 70.834,27.8496 70.1814,27.1972 69.5633,25.758 69.0508,24.1641 68.5382,22.5701 68.1129,20.8186 67.748,19.4961 66.9767,16.6993 67.8428,11.4187 68.373,8.28711 68.638,6.72186 69.5765,5.10242 70.4688,3.66406 70.9149,2.94488 71.349,2.2706 71.6777,1.66016 72.0065,1.04972 72.2393,0.501447 72.25,0 Z"
+ id="rtid-path1003-1-1-3-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,0 C 103.647,0.80947 102.985,2.17388 102.252,3.55273 101.462,5.03836 100.589,6.7673 100.285,8.6543 99.3513,14.4563 100.844,21.1979 103.822,24.1758 105.011,25.3641 106.046,26.1936 107.021,26.6934 107.997,27.1932 108.922,27.358 109.836,27.2051 111.665,26.8993 113.404,25.3883 115.768,23.0254 117.119,21.6749 119.678,20.0341 120.666,17.4004 121.186,16.0148 122.397,14.6012 123.432,13.1465 124.466,11.6918 125.341,10.1651 125.059,8.51172 124.756,6.7403 123.509,5.23854 122.373,3.85156 121.313,2.55689 120.359,1.12102 120.25,0 H 119.75 C 119.732,1.46039 120.851,2.78259 121.986,4.16992 123.122,5.55726 124.295,7.00657 124.566,8.5957 124.811,10.027 124.041,11.43 123.025,12.8574 122.01,14.2848 120.766,15.7081 120.197,17.2246 119.286,19.6535 116.841,21.2464 115.414,22.6719 113.063,25.0221 111.363,26.4438 109.754,26.7129 108.949,26.8475 108.153,26.7107 107.25,26.248 106.347,25.7854 105.346,24.9899 104.178,23.8223 101.412,21.0572 99.8688,14.391 100.779,8.73438 101.067,6.94903 101.907,5.26482 102.693,3.78711 103.479,2.3094 104.228,1.05557 104.25,0 Z"
+ id="rtid-path1003-6-2-9-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/22.svg b/src/asset/tile/frontier/basic/22.svg
index 2ca08c9..b49efc6 100644
--- a/src/asset/tile/frontier/basic/22.svg
+++ b/src/asset/tile/frontier/basic/22.svg
@@ -1,71 +1,306 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="bnotrightborder.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask3062" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g3096" transform="matrix(0,1,-1,0,128,-2e-4)">
- <ns0:path d="M 0,362.834 V 483.779 H 120.945 V 362.834 L 90.7088,362.835 C 90.5797,373.202 97.8557,388.683 99.2003,401.957 102.823,437.718 98.9244,445.074 87.8908,456.105 79.1805,464.813 69.7202,463.527 59.9817,463.094 49.8011,462.642 39.3403,462.646 30.2363,453.543 20.9501,444.258 19.9609,426.185 22.4222,407.227 24.6823,389.82 30.0529,371.467 30.2363,362.835 Z" id="rtid-path3064" style="fill:#ffffff;stroke-width:1.972157" transform="scale(0.264583)" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 V 128 H 64 V 96 L 56,96.0003 C 55.7792,99.911 58.0485,102.515 58.2957,104.197 58.6205,106.408 59.3913,108.403 60.355,110.772 62.4244,115.86 62.5892,121.139 59.9995,123.728 56.7103,127.017 45.8911,127.212 40.8779,124.814 38.7067,123.775 37.2216,122.576 35.7973,121.152 32.2697,117.626 36.5416,110.369 37.6606,104.055 38.0367,101.932 40.1779,101.539 40,96.0003 Z" id="rtid-path3066" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.9997 V 128 H 96 V 95.9997 L 88,96 C 87.9103,103.205 91.2904,113.728 90.1692,119.729 89.5631,122.973 81.3103,126.239 77.2081,126.313 73.0916,126.387 70.1204,123.583 69.8309,119.729 69.2528,112.035 71.8986,100.771 72,96 Z" id="rtid-path3068" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 V 128 H 128 V 96 L 120,96.0003 C 119.981,97.4942 118.275,101.774 118.549,103.578 119.009,106.611 120.818,110.212 120.94,113.765 121.095,118.29 119.852,123.389 117.221,124.745 113.862,126.475 108.51,125.797 106.508,123.932 104.592,122.147 100.329,120.368 100.481,116.07 100.607,112.489 104.959,106.474 105.464,103.627 105.895,101.195 103.972,97.3349 104,96.0003 Z" id="rtid-path3070" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.9997 V 96 H 32 V 63.9997 L 24,64 C 23.9502,67.9981 17.2051,73.8369 17.7065,78.746 17.8402,80.0543 18.9443,84.2993 20.6536,83.0124 27.9719,77.5027 31.0273,87.2771 26.6437,90.3047 21.159,94.0929 12.3741,95.4912 7.66109,90.7792 5.41095,88.5295 2.50708,82.6214 3.00228,78.0294 3.5443,73.0034 7.94704,66.4932 8.00002,64 Z" id="rtid-path3072" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 V 96 H 64.0001 V 64 L 56.0001,64.0003 C 55.9598,67.2407 55.4617,70.6316 58.2751,72.9289 61.456,75.5263 62.8118,80.3259 60.2181,82.9192 55.5043,87.6322 50.3386,89.1506 47.0939,89.6297 44.1044,90.0712 37.9564,87.8568 37.815,84.753 37.523,78.3432 39.9149,68.0023 40,64.0003 Z" id="rtid-path3074" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,63.9997 V 96 H 96.0001 V 63.9997 L 88.0002,64 C 87.9417,68.7015 87.1866,72.2202 87.2912,77.6724 87.3469,80.5757 83.8863,82.2882 82.2484,83.9258 77.5345,88.6389 76.713,92.712 72,88 67.287,83.288 71.8987,68.771 72,64 Z" id="rtid-path3076" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 V 96 H 128 V 64 L 120,64.0003 C 119.968,66.5447 120.208,75.527 120.762,78.7486 121.777,84.6492 119.321,90.0354 116.272,93.0839 111.558,97.7969 100.057,93.3899 98.5771,88.6779 97.7913,86.1764 101.238,83.161 102.878,77.8789 104.328,73.211 103.953,66.2384 104,64.0003 Z" id="rtid-path3078" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.9997 V 64 H 32 V 31.9997 L 24,32 C 23.9556,35.5634 28.1758,40.3196 28.7819,44.7874 29.4014,49.3533 26.3826,53.6179 24.0001,56 19.2863,60.713 12.713,60.712 8.00002,56 5.4647,53.4652 12.5299,50.0102 13.2377,44.8442 13.8456,40.4069 7.95317,34.2045 8.00002,32 Z" id="rtid-path3080" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 V 64 H 64.0001 V 32 L 56.0001,32.0003 C 55.9104,39.205 57.6463,46.6856 52.9325,51.3986 48.2187,56.1116 39.5364,59.9451 34.8234,55.2331 30.1103,50.5211 39.8986,36.771 40,32.0003 Z" id="rtid-path3082" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="ccccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,31.9997 V 64 H 96.0001 V 31.9997 L 88.0002,32 C 87.9812,39.1615 101.435,45.9204 88.0002,56 74.5657,66.0796 76.713,60.712 72,56 69.4554,53.456 66.3696,45.3696 67.0839,40.1862 67.6926,35.7691 71.9534,34.1951 72,32 Z" id="rtid-path3084" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="ccccczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32 V 64 H 128 V 32 L 120,32.0003 C 119.948,36.1649 121.531,41.959 121.966,47.0177 122.284,50.7105 128.798,55.3553 125.368,59.3552 119.701,65.9652 117.389,56.8142 112.735,56.7543 107.815,56.6909 106.463,64.152 99.8779,61.0808 93.7178,58.2077 101.757,50.9482 101.911,47.3626 102.159,41.5924 103.938,34.9427 104,32.0003 Z" id="rtid-path3086" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,-3e-4 V 32 H 32 V -3e-4 L 24,0 C 23.9599,3.21896 20.6786,7.60311 21.3068,11.6769 22.0848,16.7216 30.2507,23.3099 27.6429,25.9173 22.9291,30.6303 12.0875,29.278 8.00002,24 3.91254,18.722 14.748,6.01635 8.00002,0 Z" id="rtid-path3088" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,0 V 32 H 64.0001 V 0 L 56.0001,3e-4 C 55.9656,2.77163 57.8055,5.49769 58.3988,9.01533 59.348,14.6426 60.2428,16.6902 57.3422,19.5903 56.0729,20.8594 59.9288,26.4522 58.5844,28.1549 57.0173,30.1396 47.9406,29.6791 46.3529,29.5208 44.2443,29.3106 42.1564,23.6635 40.1917,21.6993 37.9666,19.4747 44.9138,15.448 45.3897,10.9099 45.9217,5.83568 39.9465,2.51867 40,3e-4 Z" id="rtid-path3090" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,-3e-4 V 32 H 96.0001 V -3e-4 L 88.0002,0 C 87.9672,2.65434 86.1031,7.41677 87.4008,10.9141 89.6258,16.91 95.1954,21.7902 92.2182,24.7669 87.5043,29.48 75.3709,32.7383 70.6579,28.0263 69.2137,26.5824 68.2329,22.1951 67.5069,19.5632 66.7022,16.6463 67.5963,11.3777 68.1264,8.24622 68.679,4.98223 71.9641,1.68881 72,0 Z" id="rtid-path3092" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,0 V 32 H 128 V 0 L 120,3e-4 C 119.967,2.65051 124.239,5.19375 124.813,8.55431 125.34,11.639 121.521,14.4098 120.432,17.3119 119.482,19.8432 116.979,21.4616 115.59,22.8496 110.876,27.5627 108.713,28.712 104,24 101.128,21.1285 99.6098,14.4242 100.532,8.69489 101.124,5.02254 103.961,1.86377 104,3e-4 Z" id="rtid-path3094" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="374.088" ns1:cy="254.537" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="1.38" />
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask3062)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g3060" transform="rotate(90,64.056,63.944)">
- <ns0:path d="M 7.75,96 C 7.69534,97.1043 7.34116,98.9836 6.92773,100.951 6.4918,103.026 5.98635,105.396 5.68555,107.713 5.03061,112.757 5.25877,117.613 7.82422,120.178 10.3005,122.653 13.1738,122.659 15.8594,122.777 17.1404,122.835 18.4252,122.951 19.7012,122.756 20.9772,122.561 22.243,122.044 23.4316,120.855 24.9005,119.387 25.9315,118.113 26.4473,116.027 26.963,113.942 26.9765,111.068 26.4961,106.326 26.3147,104.535 25.7378,102.623 25.2168,100.818 24.7224,99.1064 24.28,97.2813 24.25,96 H 23.75 C 23.7322,97.4315 24.2144,99.1494 24.7363,100.957 25.2583,102.765 25.8238,104.656 25.998,106.377 26.4763,111.097 26.4531,113.926 25.9629,115.908 25.4726,117.891 24.5285,119.052 23.0781,120.502 21.9622,121.618 20.8228,122.079 19.627,122.262 18.4311,122.444 17.1766,122.335 15.8809,122.277 13.1797,122.158 10.5188,122.164 8.17773,119.822 5.82924,117.475 5.53218,112.765 6.17969,107.777 6.47687,105.488 6.97984,103.129 7.41602,101.053 7.85219,98.9769 8.22472,97.1899 8.25,96 Z" id="rtid-path1003-10" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,96 C 39.7946,98.541 39.3391,100.206 38.8164,101.191 38.2734,102.215 37.616,102.873 37.4141,104.012 36.8613,107.131 35.5172,110.519 34.7441,113.588 34.3576,115.122 34.1127,116.579 34.1934,117.896 34.2741,119.214 34.691,120.398 35.6211,121.328 37.0572,122.764 38.5708,123.987 40.7695,125.039 43.3417,126.269 47.3211,126.816 51.0957,126.654 54.8703,126.493 58.436,125.644 60.1758,123.904 61.5326,122.548 62.1495,120.512 62.1738,118.189 62.1981,115.867 61.6311,113.248 60.5859,110.678 59.623,108.311 58.8628,106.336 58.543,104.16 58.4061,103.229 57.7665,102.171 57.2031,100.838 56.665,99.5647 56.1982,97.7913 56.25,96 H 55.75 C 55.6367,98.0067 56.1644,99.6641 56.7422,101.031 57.32,102.398 57.9386,103.482 58.0488,104.232 58.379,106.478 59.1582,108.496 60.123,110.867 61.1467,113.385 61.6972,115.948 61.6738,118.184 61.6504,120.42 61.0552,122.318 59.8223,123.551 58.2728,125.1 54.7848,125.996 51.0742,126.154 47.3636,126.313 43.4274,125.756 40.9863,124.588 38.8426,123.562 37.3871,122.387 35.9746,120.975 35.1409,120.141 34.7669,119.098 34.6914,117.865 34.6159,116.633 34.8482,115.221 35.2285,113.711 35.9892,110.691 37.3401,107.292 37.9062,104.098 38.0806,103.114 38.6826,102.514 39.2598,101.426 39.8369,100.338 40.34,98.8017 40.25,96 Z" id="rtid-path1003-6-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccscccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,96 C 71.6723,98.3648 71.0003,102.46 70.4121,106.734 69.8095,111.114 69.2902,115.864 69.582,119.748 69.8804,123.72 72.9809,126.639 77.2129,126.562 79.3273,126.524 82.4257,125.68 85.1055,124.436 86.4454,123.813 87.6779,123.092 88.625,122.309 89.5721,121.525 90.2451,120.68 90.4141,119.775 90.9879,116.704 90.413,112.561 89.7188,108.275 89.0391,104.08 88.2416,99.5222 88.25,96 H 87.75 C 87.7046,99.6431 88.5316,104.078 89.2246,108.355 89.9176,112.633 90.4713,116.754 89.9238,119.684 89.7897,120.401 89.2056,121.18 88.3066,121.924 87.4077,122.667 86.2063,123.373 84.8945,123.982 82.2709,125.201 79.191,126.027 77.2031,126.062 73.2024,126.134 70.3607,123.447 70.0801,119.711 69.7938,115.901 70.307,111.172 70.9082,106.803 71.5094,102.434 72.1985,98.4275 72.25,96 Z" id="rtid-path1003-1-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,96 C 103.779,96.3567 103.895,96.9902 104.037,97.4824 104.209,98.0768 104.432,98.7594 104.643,99.4727 105.063,100.899 105.419,102.453 105.219,103.584 104.983,104.916 103.777,107.149 102.607,109.461 101.438,111.773 100.297,114.174 100.23,116.061 100.152,118.293 101.235,119.894 102.549,121.125 103.863,122.356 105.417,123.258 106.338,124.115 107.409,125.113 109.286,125.746 111.332,125.936 113.378,126.125 115.597,125.863 117.336,124.967 118.751,124.238 119.733,122.561 120.363,120.518 120.994,118.474 121.268,116.044 121.189,113.756 121.065,110.124 119.247,106.507 118.797,103.541 118.676,102.744 119.013,101.214 119.406,99.7363 119.774,98.3562 120.189,96.8528 120.25,96 H 119.75 C 119.742,96.6548 119.32,98.1224 118.924,99.6094 118.528,101.096 118.15,102.608 118.303,103.615 118.773,106.715 120.57,110.299 120.689,113.773 120.766,116.01 120.496,118.393 119.887,120.369 119.277,122.345 118.324,123.897 117.107,124.523 115.488,125.358 113.349,125.62 111.379,125.438 109.409,125.255 107.608,124.617 106.678,123.75 105.682,122.823 104.149,121.941 102.891,120.762 101.632,119.583 100.657,118.143 100.73,116.078 100.79,114.384 101.888,111.988 103.053,109.686 104.217,107.383 105.442,105.185 105.711,103.67 105.942,102.369 105.549,100.777 105.123,99.332 104.91,98.6094 104.685,97.9245 104.518,97.3438 104.35,96.763 104.244,96.2711 104.25,96 Z" id="rtid-path1003-6-2-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,64 C 7.69186,64.5515 7.42134,65.5192 7.04102,66.4414 6.61628,67.4713 6.0455,68.6751 5.45703,69.9609 4.2801,72.5325 3.03142,75.4286 2.75391,78.002 2.49949,80.361 3.11433,83.0185 4.07031,85.377 5.02629,87.7354 6.31995,89.7908 7.48438,90.9551 9.90455,93.3747 13.3576,94.2161 16.8789,93.9785 20.4002,93.741 24.0032,92.4312 26.7852,90.5098 29.1028,88.9092 29.4464,85.5825 28.2578,83.3398 27.6635,82.2185 26.6623,81.356 25.3301,81.1543 23.9979,80.9525 22.3686,81.4087 20.5039,82.8125 20.1397,83.0867 19.9131,83.0595 19.6328,82.8672 19.3525,82.6748 19.058,82.2558 18.8145,81.7441 18.3273,80.7207 18.0176,79.3329 17.9551,78.7207 17.7169,76.3889 19.2311,73.7336 20.8574,71.166 22.4253,68.6907 24.1079,66.0829 24.25,64 H 23.75 C 23.7268,65.86 22.0689,68.3198 20.4355,70.8984 18.8022,73.4771 17.1938,76.1943 17.457,78.7715 17.5282,79.4677 17.8376,80.8545 18.3633,81.959 18.6261,82.5112 18.9379,82.9968 19.3496,83.2793 19.7613,83.5618 20.3143,83.5821 20.8047,83.2129 22.5992,81.8619 24.0939,81.4725 25.2559,81.6484 26.4178,81.8244 27.28,82.5622 27.8164,83.5742 28.8892,85.5982 28.5679,88.6729 26.502,90.0996 23.7991,91.9665 20.2663,93.2497 16.8457,93.4805 13.4251,93.7112 10.1307,92.8939 7.83789,90.6016 6.75217,89.516 5.46789,87.4954 4.5332,85.1895 3.59852,82.8835 3.00921,80.2894 3.25,78.0566 3.51451,75.6039 4.73892,72.7314 5.91211,70.168 6.4987,68.8863 7.07129,67.6819 7.50391,66.6328 7.93652,65.5838 8.23524,64.6945 8.25,64 Z" id="rtid-path1003-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccsscsccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,64 C 39.6797,65.9884 39.0767,69.6524 38.5195,73.4375 37.9468,77.328 37.4167,81.5217 37.5645,84.7637 37.6035,85.6206 38.0564,86.3984 38.7285,87.0645 39.4006,87.7305 40.2974,88.2958 41.2812,88.748 43.249,89.6525 45.5518,90.1102 47.1309,89.877 50.4131,89.3925 55.6351,87.8543 60.3945,83.0957 61.7613,81.7291 62.0821,79.7803 61.6562,77.8711 61.2304,75.9618 60.0691,74.0698 58.4336,72.7344 57.0792,71.6284 56.5309,70.2839 56.3145,68.7832 56.1092,67.3598 56.2211,65.5489 56.25,64 H 55.75 C 55.73,65.6085 55.5926,67.2744 55.8203,68.8535 56.0481,70.4327 56.6583,71.9317 58.1172,73.123 59.6628,74.385 60.7691,76.1922 61.168,77.9805 61.5668,79.7687 61.2679,81.5154 60.041,82.7422 55.3728,87.4096 50.2636,88.9095 47.0566,89.3828 45.6462,89.5912 43.3793,89.1612 41.4902,88.293 40.5457,87.8588 39.6939,87.3173 39.0801,86.709 38.4662,86.1007 38.0961,85.4372 38.0645,84.7422 37.9201,81.5744 38.4421,77.3927 39.0137,73.5098 39.5853,69.6268 40.2065,66.0462 40.25,64 Z" id="rtid-path1003-6-3-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,64 C 71.6558,66.3661 70.5138,71.2603 69.9473,75.9922 69.6578,78.4097 69.5158,80.8316 69.748,82.9609 69.9803,85.0903 70.5862,86.94 71.8242,88.1777 73.0178,89.371 73.9789,90.0302 74.8652,90.2559 75.7516,90.4816 76.5425,90.2357 77.2715,89.6992 78.7294,88.6262 80.0892,86.4379 82.4258,84.1016 83.2133,83.3142 84.4915,82.4731 85.5762,81.457 86.6608,80.4409 87.5707,79.2198 87.541,77.668 87.4388,72.3428 88.1672,68.5947 88.25,64 H 87.75 C 87.6918,68.6765 86.9358,72.2006 87.041,77.6777 87.0669,79.0291 86.2756,80.1164 85.2344,81.0918 84.1932,82.0672 82.9227,82.8979 82.0723,83.748 79.695,86.125 78.2862,88.333 76.9766,89.2969 76.3218,89.7788 75.7288,89.9601 74.9883,89.7715 74.2477,89.5829 73.3407,88.985 72.1777,87.8223 71.0593,86.7041 70.4715,84.9732 70.2461,82.9062 70.0207,80.8393 70.1563,78.4499 70.4434,76.0527 71.0174,71.2584 72.1978,66.4606 72.25,64 Z" id="rtid-path1003-1-1-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccscccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,64 C 103.735,65.1823 103.804,67.5338 103.715,70.0195 103.622,72.6154 103.351,75.5102 102.639,77.8047 101.829,80.4113 100.572,82.4655 99.5996,84.1992 99.1134,85.0661 98.6974,85.8527 98.4492,86.5996 98.201,87.3465 98.1215,88.063 98.3379,88.752 99.1266,91.2633 102.437,93.5369 106.139,94.6543 109.84,95.7716 113.993,95.7175 116.449,93.2617 119.555,90.1566 122.039,84.699 121.008,78.707 120.474,75.6046 120.228,66.6952 120.25,64 H 119.75 C 119.718,66.5676 119.951,75.5048 120.516,78.791 121.515,84.6001 119.088,89.9144 116.096,92.9062 113.838,95.1632 109.881,95.2617 106.283,94.1758 102.686,93.0899 99.5076,90.8041 98.8164,88.6035 98.6399,88.0416 98.6955,87.443 98.9238,86.7559 99.1522,86.0687 99.5529,85.3033 100.035,84.4434 101,82.7235 102.286,80.6287 103.117,77.9531 103.854,75.5796 104.121,72.654 104.215,70.0371 104.309,67.4202 104.227,65.0996 104.25,64 Z" id="rtid-path1003-6-2-9-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscccccccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 23.75,32 C 23.7266,33.8817 24.7979,35.9738 25.9238,38.168 27.0497,40.3622 28.2389,42.6513 28.5332,44.8203 29.1353,49.2584 26.1759,53.471 23.8242,55.8223 19.1926,60.4531 12.8085,60.452 8.17773,55.8223 7.89139,55.536 7.75509,55.2614 7.71484,54.9707 7.6746,54.68 7.73395,54.3626 7.88086,54.0098 8.17468,53.3041 8.82703,52.4809 9.59375,51.5703 11.1272,49.7492 13.1183,47.5653 13.4863,44.8789 13.8071,42.5371 12.4423,39.8503 11.0449,37.459 10.3462,36.2633 9.63224,35.1421 9.10156,34.1914 8.57088,33.2407 8.2407,32.4373 8.25,32 H 7.75 C 7.81033,32.6217 8.18082,33.5663 8.66602,34.4355 9.20799,35.4065 9.92072,36.5258 10.6133,37.7109 11.9984,40.0813 13.2773,42.715 12.9902,44.8105 12.6505,47.2901 10.7532,49.4164 9.21094,51.248 8.4398,52.1638 7.75793,53.0018 7.41797,53.8184 7.24799,54.2266 7.16482,54.6354 7.2207,55.0391 7.27659,55.4427 7.47674,55.8303 7.82422,56.1777 12.6194,60.9718 19.3817,60.9729 24.1777,56.1777 26.5911,53.7648 29.666,49.4476 29.0293,44.7539 28.7174,42.4552 27.4938,40.1311 26.3691,37.9395 25.2944,35.8449 24.3161,33.639 24.25,32 Z" id="rtid-path1003-4-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccccscccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,32 C 39.6698,33.1145 39.0664,34.9623 38.2559,36.8828 37.4006,38.9094 36.3138,41.2249 35.375,43.5449 34.4362,45.865 33.6423,48.1881 33.3809,50.2539 33.1194,52.3197 33.3946,54.1586 34.6465,55.4102 37.0812,57.8443 40.5462,58.0632 43.9473,57.0898 47.3483,56.1165 50.7222,53.963 53.1094,51.5762 55.5239,49.1621 56.2813,46.0357 56.4492,42.6465 56.6132,39.3356 56.2266,35.5024 56.25,32 H 55.75 C 55.7049,35.6236 56.1162,39.2905 55.9512,42.6211 55.7862,45.9516 55.0552,48.9238 52.7559,51.2227 50.4293,53.5489 47.1054,55.6658 43.8086,56.6094 40.5118,57.5529 37.2782,57.3344 35,55.0566 33.8953,53.9522 33.6255,52.3031 33.877,50.3164 34.1284,48.3297 34.9061,46.0353 35.8379,43.7324 36.7697,41.4296 37.8556,39.1187 38.7168,37.0781 39.578,35.0375 40.2229,33.2755 40.25,32 Z" id="rtid-path1003-6-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,32 C 71.6766,32.384 71.4303,33.0141 71.1016,33.4297 70.7016,33.9353 70.1486,34.4728 69.5703,35.0879 68.4137,36.318 67.1505,37.8697 66.8359,40.1523 66.4697,42.8097 67.0736,46.1499 68.082,49.1621 69.0905,52.1743 70.4921,54.8478 71.8223,56.1777 72.977,57.3322 73.7153,58.5287 74.3906,59.543 75.0659,60.5572 75.6842,61.4095 76.6387,61.7793 77.5931,62.1491 78.813,61.995 80.6035,61.1406 82.394,60.2862 84.7858,58.7236 88.1504,56.1992 91.5358,53.6592 93.258,51.3059 93.9062,49.0742 94.5545,46.8425 94.114,44.7577 93.2598,42.8047 92.4055,40.8516 91.1397,39.0153 90.0977,37.2285 89.106,35.5281 88.3193,33.6309 88.25,32 H 87.75 C 87.7451,33.8688 88.6106,35.6708 89.666,37.4805 90.7214,39.2902 91.9753,41.114 92.8027,43.0059 93.6302,44.8977 94.0341,46.8412 93.4258,48.9355 92.8174,51.0299 91.1816,53.301 87.8496,55.8008 84.4969,58.3162 82.1193,59.8627 80.3867,60.6895 78.6541,61.5162 77.5975,61.6156 76.8203,61.3145 76.0431,61.0133 75.4741,60.27 74.8066,59.2676 74.1392,58.2652 73.3775,57.0237 72.1758,55.8223 70.9615,54.6082 69.5486,51.9668 68.5566,49.0039 67.5647,46.041 66.9839,42.7468 67.332,40.2207 67.6261,38.0864 68.7979,36.6416 69.9355,35.4316 70.5044,34.8267 71.0631,34.2832 71.4941,33.7383 71.9252,33.1934 72.2366,32.6289 72.25,32 Z" id="rtid-path1003-1-8-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccsccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,32 C 103.69,33.4417 103.244,35.9313 102.779,38.5781 102.295,41.3319 101.787,44.4449 101.662,47.3516 101.627,48.1583 101.118,49.2727 100.443,50.4941 99.7688,51.7156 98.9386,53.0524 98.3008,54.3809 97.6629,55.7094 97.2082,57.033 97.3262,58.2539 97.4441,59.4748 98.176,60.5625 99.7715,61.3066 101.456,62.0922 102.844,62.2157 104.031,61.9355 105.218,61.6554 106.19,60.9848 107.09,60.2383 107.99,59.4918 108.822,58.6663 109.719,58.041 110.616,57.4157 111.566,56.9888 112.732,57.0039 113.814,57.0178 114.78,57.5624 115.721,58.3105 116.662,59.0587 117.563,60.0015 118.518,60.752 119.472,61.5024 120.498,62.0726 121.674,61.9961 122.85,61.9196 124.118,61.1981 125.559,59.5176 126.457,58.4697 126.717,57.3408 126.576,56.2285 126.436,55.1162 125.916,54.0191 125.289,52.9453 124.035,50.7977 122.362,48.706 122.215,46.9961 121.784,41.9899 120.255,36.0846 120.25,32 H 119.75 C 119.697,36.2308 121.285,42.0156 121.717,47.0391 121.888,49.0219 123.632,51.0993 124.857,53.1973 125.47,54.2463 125.954,55.292 126.08,56.291 126.206,57.29 125.994,58.2412 125.178,59.1934 123.785,60.8179 122.637,61.4312 121.641,61.4961 120.644,61.5609 119.74,61.078 118.826,60.3594 117.912,59.6408 117.01,58.6979 116.031,57.9199 115.053,57.1419 113.983,56.5199 112.738,56.5039 111.445,56.4872 110.38,56.971 109.434,57.6309 108.487,58.2907 107.648,59.1265 106.771,59.8535 105.895,60.5805 104.988,61.1961 103.916,61.4492 102.844,61.7023 101.592,61.6036 99.9844,60.8535 98.4997,60.1611 97.9267,59.2655 97.8242,58.2051 97.7218,57.1447 98.1308,55.8914 98.752,54.5977 99.3731,53.3039 100.197,51.9742 100.881,50.7363 101.564,49.4984 102.118,48.3589 102.16,47.373 102.283,44.5094 102.788,41.4134 103.271,38.6641 103.755,35.9148 104.218,33.5175 104.25,32 Z" id="rtid-path1003-6-2-4-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccsscccsccscccccsccsccccscccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,0 C 9.3321,1.4439 10.0244,3.49809 10.0215,5.54492 10.0185,7.61813 9.43333,9.91675 8.75781,12.2051 8.0823,14.4934 7.31912,16.7704 6.97852,18.8281 6.63791,20.8858 6.7184,22.7522 7.80273,24.1523 9.90566,26.8678 13.6959,28.5386 17.5605,28.9531 21.4252,29.3676 25.3872,28.5264 27.8203,26.0938 28.188,25.7262 28.3727,25.2681 28.4004,24.7773 28.428,24.2866 28.3092,23.7633 28.0957,23.2109 27.6686,22.1062 26.8582,20.8739 25.9492,19.5684 24.1313,16.9573 21.9261,14.047 21.5547,11.6387 21.2526,9.67993 21.893,7.60466 22.6367,5.60547 23.3463,3.69786 24.1594,1.63409 24.25,0 H 23.75 C 23.731,1.52592 22.9179,3.41364 22.168,5.42969 21.418,7.44573 20.7344,9.59981 21.0605,11.7148 21.4671,14.3512 23.7315,17.2574 25.5391,19.8535 26.4428,21.1516 27.234,22.371 27.6289,23.3926 27.8264,23.9034 27.9242,24.3617 27.9023,24.75 27.8805,25.1383 27.7511,25.456 27.4668,25.7402 25.1861,28.0205 21.3698,28.8599 17.6133,28.457 13.8568,28.0541 10.1818,26.4102 8.19727,23.8477 7.23787,22.6088 7.14014,20.9072 7.4707,18.9102 7.80127,16.9131 8.55936,14.6475 9.23828,12.3477 9.9172,10.0478 10.5184,7.71299 10.5215,5.54688 10.5246,3.38076 9.99442,1.55527 8.25,0 Z" id="rtid-path1003-9-5-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccscccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 55.75,0 C 55.7142,2.88399 57.5697,5.60171 58.1523,9.05664 58.6284,11.8781 59.084,13.7957 59.0645,15.3223 59.0449,16.8488 58.5863,17.9939 57.166,19.4141 56.9525,19.6275 56.8591,19.9208 56.8379,20.2363 56.8167,20.5518 56.8613,20.901 56.9453,21.2793 57.1133,22.0358 57.4376,22.9112 57.7559,23.7949 58.0741,24.6786 58.3862,25.5691 58.5332,26.3242 58.6802,27.0794 58.6475,27.6722 58.3887,28 58.0726,28.4004 57.2569,28.7538 56.1836,28.9824 55.1102,29.211 53.7882,29.3363 52.4648,29.3926 49.818,29.505 47.1478,29.3483 46.377,29.2715 45.9557,29.2295 45.4691,28.8889 44.9648,28.3203 44.4606,27.7517 43.9444,26.9738 43.4316,26.1367 42.4062,24.4625 41.4048,22.557 40.3691,21.5215 40.1273,21.2797 40.0241,21.0404 40.0059,20.7656 39.9876,20.4909 40.0644,20.1733 40.2266,19.8164 40.5509,19.1026 41.2133,18.254 41.9707,17.3301 43.4854,15.4823 45.3883,13.3225 45.6387,10.9355 45.9153,8.2963 44.5022,6.13225 43.0703,4.33984 42.3544,3.44364 41.6285,2.63493 41.0957,1.90625 40.5629,1.17757 40.2387,0.529636 40.25,0 H 39.75 C 39.8188,0.643008 40.202,1.52918 40.6934,2.20117 41.2492,2.96129 41.975,3.77022 42.6797,4.65234 44.0891,6.41659 45.3958,8.44786 45.1406,10.8828 44.915,13.034 43.1056,15.1575 41.584,17.0137 40.8232,17.9418 40.1388,18.8007 39.7715,19.6094 39.5878,20.0137 39.4819,20.4099 39.5078,20.7988 39.5337,21.1878 39.7011,21.5626 40.0156,21.877 40.9445,22.8057 41.969,24.7055 43.0059,26.3984 43.5243,27.2449 44.0482,28.0416 44.5898,28.6523 45.1315,29.2631 45.6951,29.7064 46.3281,29.7695 47.145,29.851 49.8061,30.0045 52.4863,29.8906 53.8265,29.8337 55.1682,29.711 56.2871,29.4727 57.406,29.2343 58.3139,28.9026 58.7812,28.3105 59.1947,27.787 59.1816,27.0405 59.0234,26.2285 58.8653,25.4165 58.5456,24.511 58.2266,23.625 57.9075,22.739 57.5895,21.8722 57.4336,21.1699 57.3556,20.8188 57.3198,20.5095 57.3359,20.2695 57.3521,20.0296 57.4157,19.8714 57.5195,19.7676 58.9996,18.2876 59.5436,16.9572 59.5645,15.3281 59.5853,13.699 59.1179,11.7804 58.6445,8.97461 58.0587,5.50069 56.3225,2.58451 56.25,0 Z" id="rtid-path1003-6-3-0-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscccccccccccccccscccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,0 C 71.6916,0.326208 71.4946,0.944301 71.2363,1.42383 70.9218,2.00786 70.4936,2.67713 70.0449,3.40039 69.1476,4.84692 68.1684,6.50633 67.8809,8.20508 67.3507,11.3364 66.428,16.5919 67.2656,19.6289 67.6269,20.9383 68.0538,22.6978 68.5742,24.3164 69.0947,25.935 69.6888,27.4117 70.4805,28.2031 72.9332,30.6554 77.2286,30.999 81.4844,30.1758 85.7402,29.3525 89.9822,27.3554 92.3945,24.9434 93.1906,24.1475 93.4274,23.1797 93.2812,22.1543 93.1351,21.1289 92.6335,20.0329 91.9785,18.8516 90.6685,16.4889 88.7312,13.7811 87.6348,10.8262 87.0123,9.14881 87.1436,7.12424 87.4492,5.17969 87.7403,3.32754 88.1932,1.35928 88.25,0 H 87.75 C 87.7343,1.27047 87.2654,3.12701 86.9551,5.10156 86.6448,7.07611 86.4907,9.18003 87.166,11 88.2944,14.041 90.2543,16.7731 91.541,19.0938 92.1844,20.2541 92.6568,21.3104 92.7871,22.2246 92.9174,23.1389 92.7337,23.8974 92.041,24.5898 89.7396,26.891 85.5582,28.8794 81.3906,29.6855 77.2231,30.4917 73.0943,30.1095 70.834,27.8496 70.1814,27.1972 69.5633,25.758 69.0508,24.1641 68.5382,22.5701 68.1129,20.8186 67.748,19.4961 66.9767,16.6993 67.8428,11.4187 68.373,8.28711 68.638,6.72186 69.5765,5.10242 70.4688,3.66406 70.9149,2.94488 71.349,2.2706 71.6777,1.66016 72.0065,1.04972 72.2393,0.501447 72.25,0 Z" id="rtid-path1003-1-1-3-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,0 C 103.647,0.80947 102.985,2.17388 102.252,3.55273 101.462,5.03836 100.589,6.7673 100.285,8.6543 99.3513,14.4563 100.844,21.1979 103.822,24.1758 105.011,25.3641 106.046,26.1936 107.021,26.6934 107.997,27.1932 108.922,27.358 109.836,27.2051 111.665,26.8993 113.404,25.3883 115.768,23.0254 117.119,21.6749 119.678,20.0341 120.666,17.4004 121.186,16.0148 122.397,14.6012 123.432,13.1465 124.466,11.6918 125.341,10.1651 125.059,8.51172 124.756,6.7403 123.509,5.23854 122.373,3.85156 121.313,2.55689 120.359,1.12102 120.25,0 H 119.75 C 119.732,1.46039 120.851,2.78259 121.986,4.16992 123.122,5.55726 124.295,7.00657 124.566,8.5957 124.811,10.027 124.041,11.43 123.025,12.8574 122.01,14.2848 120.766,15.7081 120.197,17.2246 119.286,19.6535 116.841,21.2464 115.414,22.6719 113.063,25.0221 111.363,26.4438 109.754,26.7129 108.949,26.8475 108.153,26.7107 107.25,26.248 106.347,25.7854 105.346,24.9899 104.178,23.8223 101.412,21.0572 99.8688,14.391 100.779,8.73438 101.067,6.94903 101.907,5.26482 102.693,3.78711 103.479,2.3094 104.228,1.05557 104.25,0 Z" id="rtid-path1003-6-2-9-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccccscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="22.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask3062"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g3096"
+ transform="matrix(0,1,-1,0,128,-2e-4)">
+ <path
+ d="M 0,362.834 V 483.779 H 120.945 V 362.834 L 90.7088,362.835 C 90.5797,373.202 97.8557,388.683 99.2003,401.957 102.823,437.718 98.9244,445.074 87.8908,456.105 79.1805,464.813 69.7202,463.527 59.9817,463.094 49.8011,462.642 39.3403,462.646 30.2363,453.543 20.9501,444.258 19.9609,426.185 22.4222,407.227 24.6823,389.82 30.0529,371.467 30.2363,362.835 Z"
+ id="rtid-path3064"
+ style="fill:#ffffff;stroke-width:1.972157"
+ transform="scale(0.264583)"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 V 128 H 64 V 96 L 56,96.0003 C 55.7792,99.911 58.0485,102.515 58.2957,104.197 58.6205,106.408 59.3913,108.403 60.355,110.772 62.4244,115.86 62.5892,121.139 59.9995,123.728 56.7103,127.017 45.8911,127.212 40.8779,124.814 38.7067,123.775 37.2216,122.576 35.7973,121.152 32.2697,117.626 36.5416,110.369 37.6606,104.055 38.0367,101.932 40.1779,101.539 40,96.0003 Z"
+ id="rtid-path3066"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.9997 V 128 H 96 V 95.9997 L 88,96 C 87.9103,103.205 91.2904,113.728 90.1692,119.729 89.5631,122.973 81.3103,126.239 77.2081,126.313 73.0916,126.387 70.1204,123.583 69.8309,119.729 69.2528,112.035 71.8986,100.771 72,96 Z"
+ id="rtid-path3068"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 V 128 H 128 V 96 L 120,96.0003 C 119.981,97.4942 118.275,101.774 118.549,103.578 119.009,106.611 120.818,110.212 120.94,113.765 121.095,118.29 119.852,123.389 117.221,124.745 113.862,126.475 108.51,125.797 106.508,123.932 104.592,122.147 100.329,120.368 100.481,116.07 100.607,112.489 104.959,106.474 105.464,103.627 105.895,101.195 103.972,97.3349 104,96.0003 Z"
+ id="rtid-path3070"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.9997 V 96 H 32 V 63.9997 L 24,64 C 23.9502,67.9981 17.2051,73.8369 17.7065,78.746 17.8402,80.0543 18.9443,84.2993 20.6536,83.0124 27.9719,77.5027 31.0273,87.2771 26.6437,90.3047 21.159,94.0929 12.3741,95.4912 7.66109,90.7792 5.41095,88.5295 2.50708,82.6214 3.00228,78.0294 3.5443,73.0034 7.94704,66.4932 8.00002,64 Z"
+ id="rtid-path3072"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 V 96 H 64.0001 V 64 L 56.0001,64.0003 C 55.9598,67.2407 55.4617,70.6316 58.2751,72.9289 61.456,75.5263 62.8118,80.3259 60.2181,82.9192 55.5043,87.6322 50.3386,89.1506 47.0939,89.6297 44.1044,90.0712 37.9564,87.8568 37.815,84.753 37.523,78.3432 39.9149,68.0023 40,64.0003 Z"
+ id="rtid-path3074"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,63.9997 V 96 H 96.0001 V 63.9997 L 88.0002,64 C 87.9417,68.7015 87.1866,72.2202 87.2912,77.6724 87.3469,80.5757 83.8863,82.2882 82.2484,83.9258 77.5345,88.6389 76.713,92.712 72,88 67.287,83.288 71.8987,68.771 72,64 Z"
+ id="rtid-path3076"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 V 96 H 128 V 64 L 120,64.0003 C 119.968,66.5447 120.208,75.527 120.762,78.7486 121.777,84.6492 119.321,90.0354 116.272,93.0839 111.558,97.7969 100.057,93.3899 98.5771,88.6779 97.7913,86.1764 101.238,83.161 102.878,77.8789 104.328,73.211 103.953,66.2384 104,64.0003 Z"
+ id="rtid-path3078"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.9997 V 64 H 32 V 31.9997 L 24,32 C 23.9556,35.5634 28.1758,40.3196 28.7819,44.7874 29.4014,49.3533 26.3826,53.6179 24.0001,56 19.2863,60.713 12.713,60.712 8.00002,56 5.4647,53.4652 12.5299,50.0102 13.2377,44.8442 13.8456,40.4069 7.95317,34.2045 8.00002,32 Z"
+ id="rtid-path3080"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 V 64 H 64.0001 V 32 L 56.0001,32.0003 C 55.9104,39.205 57.6463,46.6856 52.9325,51.3986 48.2187,56.1116 39.5364,59.9451 34.8234,55.2331 30.1103,50.5211 39.8986,36.771 40,32.0003 Z"
+ id="rtid-path3082"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="ccccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,31.9997 V 64 H 96.0001 V 31.9997 L 88.0002,32 C 87.9812,39.1615 101.435,45.9204 88.0002,56 74.5657,66.0796 76.713,60.712 72,56 69.4554,53.456 66.3696,45.3696 67.0839,40.1862 67.6926,35.7691 71.9534,34.1951 72,32 Z"
+ id="rtid-path3084"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="ccccczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32 V 64 H 128 V 32 L 120,32.0003 C 119.948,36.1649 121.531,41.959 121.966,47.0177 122.284,50.7105 128.798,55.3553 125.368,59.3552 119.701,65.9652 117.389,56.8142 112.735,56.7543 107.815,56.6909 106.463,64.152 99.8779,61.0808 93.7178,58.2077 101.757,50.9482 101.911,47.3626 102.159,41.5924 103.938,34.9427 104,32.0003 Z"
+ id="rtid-path3086"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,-3e-4 V 32 H 32 V -3e-4 L 24,0 C 23.9599,3.21896 20.6786,7.60311 21.3068,11.6769 22.0848,16.7216 30.2507,23.3099 27.6429,25.9173 22.9291,30.6303 12.0875,29.278 8.00002,24 3.91254,18.722 14.748,6.01635 8.00002,0 Z"
+ id="rtid-path3088"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,0 V 32 H 64.0001 V 0 L 56.0001,3e-4 C 55.9656,2.77163 57.8055,5.49769 58.3988,9.01533 59.348,14.6426 60.2428,16.6902 57.3422,19.5903 56.0729,20.8594 59.9288,26.4522 58.5844,28.1549 57.0173,30.1396 47.9406,29.6791 46.3529,29.5208 44.2443,29.3106 42.1564,23.6635 40.1917,21.6993 37.9666,19.4747 44.9138,15.448 45.3897,10.9099 45.9217,5.83568 39.9465,2.51867 40,3e-4 Z"
+ id="rtid-path3090"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,-3e-4 V 32 H 96.0001 V -3e-4 L 88.0002,0 C 87.9672,2.65434 86.1031,7.41677 87.4008,10.9141 89.6258,16.91 95.1954,21.7902 92.2182,24.7669 87.5043,29.48 75.3709,32.7383 70.6579,28.0263 69.2137,26.5824 68.2329,22.1951 67.5069,19.5632 66.7022,16.6463 67.5963,11.3777 68.1264,8.24622 68.679,4.98223 71.9641,1.68881 72,0 Z"
+ id="rtid-path3092"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,0 V 32 H 128 V 0 L 120,3e-4 C 119.967,2.65051 124.239,5.19375 124.813,8.55431 125.34,11.639 121.521,14.4098 120.432,17.3119 119.482,19.8432 116.979,21.4616 115.59,22.8496 110.876,27.5627 108.713,28.712 104,24 101.128,21.1285 99.6098,14.4242 100.532,8.69489 101.124,5.02254 103.961,1.86377 104,3e-4 Z"
+ id="rtid-path3094"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="246.91409"
+ inkscape:cy="254.537"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.38" />
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask3062)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g3060"
+ transform="rotate(90,64.056,63.944)">
+ <path
+ d="M 7.75,96 C 7.69534,97.1043 7.34116,98.9836 6.92773,100.951 6.4918,103.026 5.98635,105.396 5.68555,107.713 5.03061,112.757 5.25877,117.613 7.82422,120.178 10.3005,122.653 13.1738,122.659 15.8594,122.777 17.1404,122.835 18.4252,122.951 19.7012,122.756 20.9772,122.561 22.243,122.044 23.4316,120.855 24.9005,119.387 25.9315,118.113 26.4473,116.027 26.963,113.942 26.9765,111.068 26.4961,106.326 26.3147,104.535 25.7378,102.623 25.2168,100.818 24.7224,99.1064 24.28,97.2813 24.25,96 H 23.75 C 23.7322,97.4315 24.2144,99.1494 24.7363,100.957 25.2583,102.765 25.8238,104.656 25.998,106.377 26.4763,111.097 26.4531,113.926 25.9629,115.908 25.4726,117.891 24.5285,119.052 23.0781,120.502 21.9622,121.618 20.8228,122.079 19.627,122.262 18.4311,122.444 17.1766,122.335 15.8809,122.277 13.1797,122.158 10.5188,122.164 8.17773,119.822 5.82924,117.475 5.53218,112.765 6.17969,107.777 6.47687,105.488 6.97984,103.129 7.41602,101.053 7.85219,98.9769 8.22472,97.1899 8.25,96 Z"
+ id="rtid-path1003-10"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,96 C 39.7946,98.541 39.3391,100.206 38.8164,101.191 38.2734,102.215 37.616,102.873 37.4141,104.012 36.8613,107.131 35.5172,110.519 34.7441,113.588 34.3576,115.122 34.1127,116.579 34.1934,117.896 34.2741,119.214 34.691,120.398 35.6211,121.328 37.0572,122.764 38.5708,123.987 40.7695,125.039 43.3417,126.269 47.3211,126.816 51.0957,126.654 54.8703,126.493 58.436,125.644 60.1758,123.904 61.5326,122.548 62.1495,120.512 62.1738,118.189 62.1981,115.867 61.6311,113.248 60.5859,110.678 59.623,108.311 58.8628,106.336 58.543,104.16 58.4061,103.229 57.7665,102.171 57.2031,100.838 56.665,99.5647 56.1982,97.7913 56.25,96 H 55.75 C 55.6367,98.0067 56.1644,99.6641 56.7422,101.031 57.32,102.398 57.9386,103.482 58.0488,104.232 58.379,106.478 59.1582,108.496 60.123,110.867 61.1467,113.385 61.6972,115.948 61.6738,118.184 61.6504,120.42 61.0552,122.318 59.8223,123.551 58.2728,125.1 54.7848,125.996 51.0742,126.154 47.3636,126.313 43.4274,125.756 40.9863,124.588 38.8426,123.562 37.3871,122.387 35.9746,120.975 35.1409,120.141 34.7669,119.098 34.6914,117.865 34.6159,116.633 34.8482,115.221 35.2285,113.711 35.9892,110.691 37.3401,107.292 37.9062,104.098 38.0806,103.114 38.6826,102.514 39.2598,101.426 39.8369,100.338 40.34,98.8017 40.25,96 Z"
+ id="rtid-path1003-6-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccscccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,96 C 71.6723,98.3648 71.0003,102.46 70.4121,106.734 69.8095,111.114 69.2902,115.864 69.582,119.748 69.8804,123.72 72.9809,126.639 77.2129,126.562 79.3273,126.524 82.4257,125.68 85.1055,124.436 86.4454,123.813 87.6779,123.092 88.625,122.309 89.5721,121.525 90.2451,120.68 90.4141,119.775 90.9879,116.704 90.413,112.561 89.7188,108.275 89.0391,104.08 88.2416,99.5222 88.25,96 H 87.75 C 87.7046,99.6431 88.5316,104.078 89.2246,108.355 89.9176,112.633 90.4713,116.754 89.9238,119.684 89.7897,120.401 89.2056,121.18 88.3066,121.924 87.4077,122.667 86.2063,123.373 84.8945,123.982 82.2709,125.201 79.191,126.027 77.2031,126.062 73.2024,126.134 70.3607,123.447 70.0801,119.711 69.7938,115.901 70.307,111.172 70.9082,106.803 71.5094,102.434 72.1985,98.4275 72.25,96 Z"
+ id="rtid-path1003-1-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,96 C 103.779,96.3567 103.895,96.9902 104.037,97.4824 104.209,98.0768 104.432,98.7594 104.643,99.4727 105.063,100.899 105.419,102.453 105.219,103.584 104.983,104.916 103.777,107.149 102.607,109.461 101.438,111.773 100.297,114.174 100.23,116.061 100.152,118.293 101.235,119.894 102.549,121.125 103.863,122.356 105.417,123.258 106.338,124.115 107.409,125.113 109.286,125.746 111.332,125.936 113.378,126.125 115.597,125.863 117.336,124.967 118.751,124.238 119.733,122.561 120.363,120.518 120.994,118.474 121.268,116.044 121.189,113.756 121.065,110.124 119.247,106.507 118.797,103.541 118.676,102.744 119.013,101.214 119.406,99.7363 119.774,98.3562 120.189,96.8528 120.25,96 H 119.75 C 119.742,96.6548 119.32,98.1224 118.924,99.6094 118.528,101.096 118.15,102.608 118.303,103.615 118.773,106.715 120.57,110.299 120.689,113.773 120.766,116.01 120.496,118.393 119.887,120.369 119.277,122.345 118.324,123.897 117.107,124.523 115.488,125.358 113.349,125.62 111.379,125.438 109.409,125.255 107.608,124.617 106.678,123.75 105.682,122.823 104.149,121.941 102.891,120.762 101.632,119.583 100.657,118.143 100.73,116.078 100.79,114.384 101.888,111.988 103.053,109.686 104.217,107.383 105.442,105.185 105.711,103.67 105.942,102.369 105.549,100.777 105.123,99.332 104.91,98.6094 104.685,97.9245 104.518,97.3438 104.35,96.763 104.244,96.2711 104.25,96 Z"
+ id="rtid-path1003-6-2-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,64 C 7.69186,64.5515 7.42134,65.5192 7.04102,66.4414 6.61628,67.4713 6.0455,68.6751 5.45703,69.9609 4.2801,72.5325 3.03142,75.4286 2.75391,78.002 2.49949,80.361 3.11433,83.0185 4.07031,85.377 5.02629,87.7354 6.31995,89.7908 7.48438,90.9551 9.90455,93.3747 13.3576,94.2161 16.8789,93.9785 20.4002,93.741 24.0032,92.4312 26.7852,90.5098 29.1028,88.9092 29.4464,85.5825 28.2578,83.3398 27.6635,82.2185 26.6623,81.356 25.3301,81.1543 23.9979,80.9525 22.3686,81.4087 20.5039,82.8125 20.1397,83.0867 19.9131,83.0595 19.6328,82.8672 19.3525,82.6748 19.058,82.2558 18.8145,81.7441 18.3273,80.7207 18.0176,79.3329 17.9551,78.7207 17.7169,76.3889 19.2311,73.7336 20.8574,71.166 22.4253,68.6907 24.1079,66.0829 24.25,64 H 23.75 C 23.7268,65.86 22.0689,68.3198 20.4355,70.8984 18.8022,73.4771 17.1938,76.1943 17.457,78.7715 17.5282,79.4677 17.8376,80.8545 18.3633,81.959 18.6261,82.5112 18.9379,82.9968 19.3496,83.2793 19.7613,83.5618 20.3143,83.5821 20.8047,83.2129 22.5992,81.8619 24.0939,81.4725 25.2559,81.6484 26.4178,81.8244 27.28,82.5622 27.8164,83.5742 28.8892,85.5982 28.5679,88.6729 26.502,90.0996 23.7991,91.9665 20.2663,93.2497 16.8457,93.4805 13.4251,93.7112 10.1307,92.8939 7.83789,90.6016 6.75217,89.516 5.46789,87.4954 4.5332,85.1895 3.59852,82.8835 3.00921,80.2894 3.25,78.0566 3.51451,75.6039 4.73892,72.7314 5.91211,70.168 6.4987,68.8863 7.07129,67.6819 7.50391,66.6328 7.93652,65.5838 8.23524,64.6945 8.25,64 Z"
+ id="rtid-path1003-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccsscsccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,64 C 39.6797,65.9884 39.0767,69.6524 38.5195,73.4375 37.9468,77.328 37.4167,81.5217 37.5645,84.7637 37.6035,85.6206 38.0564,86.3984 38.7285,87.0645 39.4006,87.7305 40.2974,88.2958 41.2812,88.748 43.249,89.6525 45.5518,90.1102 47.1309,89.877 50.4131,89.3925 55.6351,87.8543 60.3945,83.0957 61.7613,81.7291 62.0821,79.7803 61.6562,77.8711 61.2304,75.9618 60.0691,74.0698 58.4336,72.7344 57.0792,71.6284 56.5309,70.2839 56.3145,68.7832 56.1092,67.3598 56.2211,65.5489 56.25,64 H 55.75 C 55.73,65.6085 55.5926,67.2744 55.8203,68.8535 56.0481,70.4327 56.6583,71.9317 58.1172,73.123 59.6628,74.385 60.7691,76.1922 61.168,77.9805 61.5668,79.7687 61.2679,81.5154 60.041,82.7422 55.3728,87.4096 50.2636,88.9095 47.0566,89.3828 45.6462,89.5912 43.3793,89.1612 41.4902,88.293 40.5457,87.8588 39.6939,87.3173 39.0801,86.709 38.4662,86.1007 38.0961,85.4372 38.0645,84.7422 37.9201,81.5744 38.4421,77.3927 39.0137,73.5098 39.5853,69.6268 40.2065,66.0462 40.25,64 Z"
+ id="rtid-path1003-6-3-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,64 C 71.6558,66.3661 70.5138,71.2603 69.9473,75.9922 69.6578,78.4097 69.5158,80.8316 69.748,82.9609 69.9803,85.0903 70.5862,86.94 71.8242,88.1777 73.0178,89.371 73.9789,90.0302 74.8652,90.2559 75.7516,90.4816 76.5425,90.2357 77.2715,89.6992 78.7294,88.6262 80.0892,86.4379 82.4258,84.1016 83.2133,83.3142 84.4915,82.4731 85.5762,81.457 86.6608,80.4409 87.5707,79.2198 87.541,77.668 87.4388,72.3428 88.1672,68.5947 88.25,64 H 87.75 C 87.6918,68.6765 86.9358,72.2006 87.041,77.6777 87.0669,79.0291 86.2756,80.1164 85.2344,81.0918 84.1932,82.0672 82.9227,82.8979 82.0723,83.748 79.695,86.125 78.2862,88.333 76.9766,89.2969 76.3218,89.7788 75.7288,89.9601 74.9883,89.7715 74.2477,89.5829 73.3407,88.985 72.1777,87.8223 71.0593,86.7041 70.4715,84.9732 70.2461,82.9062 70.0207,80.8393 70.1563,78.4499 70.4434,76.0527 71.0174,71.2584 72.1978,66.4606 72.25,64 Z"
+ id="rtid-path1003-1-1-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccscccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,64 C 103.735,65.1823 103.804,67.5338 103.715,70.0195 103.622,72.6154 103.351,75.5102 102.639,77.8047 101.829,80.4113 100.572,82.4655 99.5996,84.1992 99.1134,85.0661 98.6974,85.8527 98.4492,86.5996 98.201,87.3465 98.1215,88.063 98.3379,88.752 99.1266,91.2633 102.437,93.5369 106.139,94.6543 109.84,95.7716 113.993,95.7175 116.449,93.2617 119.555,90.1566 122.039,84.699 121.008,78.707 120.474,75.6046 120.228,66.6952 120.25,64 H 119.75 C 119.718,66.5676 119.951,75.5048 120.516,78.791 121.515,84.6001 119.088,89.9144 116.096,92.9062 113.838,95.1632 109.881,95.2617 106.283,94.1758 102.686,93.0899 99.5076,90.8041 98.8164,88.6035 98.6399,88.0416 98.6955,87.443 98.9238,86.7559 99.1522,86.0687 99.5529,85.3033 100.035,84.4434 101,82.7235 102.286,80.6287 103.117,77.9531 103.854,75.5796 104.121,72.654 104.215,70.0371 104.309,67.4202 104.227,65.0996 104.25,64 Z"
+ id="rtid-path1003-6-2-9-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 23.75,32 C 23.7266,33.8817 24.7979,35.9738 25.9238,38.168 27.0497,40.3622 28.2389,42.6513 28.5332,44.8203 29.1353,49.2584 26.1759,53.471 23.8242,55.8223 19.1926,60.4531 12.8085,60.452 8.17773,55.8223 7.89139,55.536 7.75509,55.2614 7.71484,54.9707 7.6746,54.68 7.73395,54.3626 7.88086,54.0098 8.17468,53.3041 8.82703,52.4809 9.59375,51.5703 11.1272,49.7492 13.1183,47.5653 13.4863,44.8789 13.8071,42.5371 12.4423,39.8503 11.0449,37.459 10.3462,36.2633 9.63224,35.1421 9.10156,34.1914 8.57088,33.2407 8.2407,32.4373 8.25,32 H 7.75 C 7.81033,32.6217 8.18082,33.5663 8.66602,34.4355 9.20799,35.4065 9.92072,36.5258 10.6133,37.7109 11.9984,40.0813 13.2773,42.715 12.9902,44.8105 12.6505,47.2901 10.7532,49.4164 9.21094,51.248 8.4398,52.1638 7.75793,53.0018 7.41797,53.8184 7.24799,54.2266 7.16482,54.6354 7.2207,55.0391 7.27659,55.4427 7.47674,55.8303 7.82422,56.1777 12.6194,60.9718 19.3817,60.9729 24.1777,56.1777 26.5911,53.7648 29.666,49.4476 29.0293,44.7539 28.7174,42.4552 27.4938,40.1311 26.3691,37.9395 25.2944,35.8449 24.3161,33.639 24.25,32 Z"
+ id="rtid-path1003-4-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccccscccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,32 C 39.6698,33.1145 39.0664,34.9623 38.2559,36.8828 37.4006,38.9094 36.3138,41.2249 35.375,43.5449 34.4362,45.865 33.6423,48.1881 33.3809,50.2539 33.1194,52.3197 33.3946,54.1586 34.6465,55.4102 37.0812,57.8443 40.5462,58.0632 43.9473,57.0898 47.3483,56.1165 50.7222,53.963 53.1094,51.5762 55.5239,49.1621 56.2813,46.0357 56.4492,42.6465 56.6132,39.3356 56.2266,35.5024 56.25,32 H 55.75 C 55.7049,35.6236 56.1162,39.2905 55.9512,42.6211 55.7862,45.9516 55.0552,48.9238 52.7559,51.2227 50.4293,53.5489 47.1054,55.6658 43.8086,56.6094 40.5118,57.5529 37.2782,57.3344 35,55.0566 33.8953,53.9522 33.6255,52.3031 33.877,50.3164 34.1284,48.3297 34.9061,46.0353 35.8379,43.7324 36.7697,41.4296 37.8556,39.1187 38.7168,37.0781 39.578,35.0375 40.2229,33.2755 40.25,32 Z"
+ id="rtid-path1003-6-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,32 C 71.6766,32.384 71.4303,33.0141 71.1016,33.4297 70.7016,33.9353 70.1486,34.4728 69.5703,35.0879 68.4137,36.318 67.1505,37.8697 66.8359,40.1523 66.4697,42.8097 67.0736,46.1499 68.082,49.1621 69.0905,52.1743 70.4921,54.8478 71.8223,56.1777 72.977,57.3322 73.7153,58.5287 74.3906,59.543 75.0659,60.5572 75.6842,61.4095 76.6387,61.7793 77.5931,62.1491 78.813,61.995 80.6035,61.1406 82.394,60.2862 84.7858,58.7236 88.1504,56.1992 91.5358,53.6592 93.258,51.3059 93.9062,49.0742 94.5545,46.8425 94.114,44.7577 93.2598,42.8047 92.4055,40.8516 91.1397,39.0153 90.0977,37.2285 89.106,35.5281 88.3193,33.6309 88.25,32 H 87.75 C 87.7451,33.8688 88.6106,35.6708 89.666,37.4805 90.7214,39.2902 91.9753,41.114 92.8027,43.0059 93.6302,44.8977 94.0341,46.8412 93.4258,48.9355 92.8174,51.0299 91.1816,53.301 87.8496,55.8008 84.4969,58.3162 82.1193,59.8627 80.3867,60.6895 78.6541,61.5162 77.5975,61.6156 76.8203,61.3145 76.0431,61.0133 75.4741,60.27 74.8066,59.2676 74.1392,58.2652 73.3775,57.0237 72.1758,55.8223 70.9615,54.6082 69.5486,51.9668 68.5566,49.0039 67.5647,46.041 66.9839,42.7468 67.332,40.2207 67.6261,38.0864 68.7979,36.6416 69.9355,35.4316 70.5044,34.8267 71.0631,34.2832 71.4941,33.7383 71.9252,33.1934 72.2366,32.6289 72.25,32 Z"
+ id="rtid-path1003-1-8-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccsccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,32 C 103.69,33.4417 103.244,35.9313 102.779,38.5781 102.295,41.3319 101.787,44.4449 101.662,47.3516 101.627,48.1583 101.118,49.2727 100.443,50.4941 99.7688,51.7156 98.9386,53.0524 98.3008,54.3809 97.6629,55.7094 97.2082,57.033 97.3262,58.2539 97.4441,59.4748 98.176,60.5625 99.7715,61.3066 101.456,62.0922 102.844,62.2157 104.031,61.9355 105.218,61.6554 106.19,60.9848 107.09,60.2383 107.99,59.4918 108.822,58.6663 109.719,58.041 110.616,57.4157 111.566,56.9888 112.732,57.0039 113.814,57.0178 114.78,57.5624 115.721,58.3105 116.662,59.0587 117.563,60.0015 118.518,60.752 119.472,61.5024 120.498,62.0726 121.674,61.9961 122.85,61.9196 124.118,61.1981 125.559,59.5176 126.457,58.4697 126.717,57.3408 126.576,56.2285 126.436,55.1162 125.916,54.0191 125.289,52.9453 124.035,50.7977 122.362,48.706 122.215,46.9961 121.784,41.9899 120.255,36.0846 120.25,32 H 119.75 C 119.697,36.2308 121.285,42.0156 121.717,47.0391 121.888,49.0219 123.632,51.0993 124.857,53.1973 125.47,54.2463 125.954,55.292 126.08,56.291 126.206,57.29 125.994,58.2412 125.178,59.1934 123.785,60.8179 122.637,61.4312 121.641,61.4961 120.644,61.5609 119.74,61.078 118.826,60.3594 117.912,59.6408 117.01,58.6979 116.031,57.9199 115.053,57.1419 113.983,56.5199 112.738,56.5039 111.445,56.4872 110.38,56.971 109.434,57.6309 108.487,58.2907 107.648,59.1265 106.771,59.8535 105.895,60.5805 104.988,61.1961 103.916,61.4492 102.844,61.7023 101.592,61.6036 99.9844,60.8535 98.4997,60.1611 97.9267,59.2655 97.8242,58.2051 97.7218,57.1447 98.1308,55.8914 98.752,54.5977 99.3731,53.3039 100.197,51.9742 100.881,50.7363 101.564,49.4984 102.118,48.3589 102.16,47.373 102.283,44.5094 102.788,41.4134 103.271,38.6641 103.755,35.9148 104.218,33.5175 104.25,32 Z"
+ id="rtid-path1003-6-2-4-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccsscccsccscccccsccsccccscccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,0 C 9.3321,1.4439 10.0244,3.49809 10.0215,5.54492 10.0185,7.61813 9.43333,9.91675 8.75781,12.2051 8.0823,14.4934 7.31912,16.7704 6.97852,18.8281 6.63791,20.8858 6.7184,22.7522 7.80273,24.1523 9.90566,26.8678 13.6959,28.5386 17.5605,28.9531 21.4252,29.3676 25.3872,28.5264 27.8203,26.0938 28.188,25.7262 28.3727,25.2681 28.4004,24.7773 28.428,24.2866 28.3092,23.7633 28.0957,23.2109 27.6686,22.1062 26.8582,20.8739 25.9492,19.5684 24.1313,16.9573 21.9261,14.047 21.5547,11.6387 21.2526,9.67993 21.893,7.60466 22.6367,5.60547 23.3463,3.69786 24.1594,1.63409 24.25,0 H 23.75 C 23.731,1.52592 22.9179,3.41364 22.168,5.42969 21.418,7.44573 20.7344,9.59981 21.0605,11.7148 21.4671,14.3512 23.7315,17.2574 25.5391,19.8535 26.4428,21.1516 27.234,22.371 27.6289,23.3926 27.8264,23.9034 27.9242,24.3617 27.9023,24.75 27.8805,25.1383 27.7511,25.456 27.4668,25.7402 25.1861,28.0205 21.3698,28.8599 17.6133,28.457 13.8568,28.0541 10.1818,26.4102 8.19727,23.8477 7.23787,22.6088 7.14014,20.9072 7.4707,18.9102 7.80127,16.9131 8.55936,14.6475 9.23828,12.3477 9.9172,10.0478 10.5184,7.71299 10.5215,5.54688 10.5246,3.38076 9.99442,1.55527 8.25,0 Z"
+ id="rtid-path1003-9-5-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccscccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 55.75,0 C 55.7142,2.88399 57.5697,5.60171 58.1523,9.05664 58.6284,11.8781 59.084,13.7957 59.0645,15.3223 59.0449,16.8488 58.5863,17.9939 57.166,19.4141 56.9525,19.6275 56.8591,19.9208 56.8379,20.2363 56.8167,20.5518 56.8613,20.901 56.9453,21.2793 57.1133,22.0358 57.4376,22.9112 57.7559,23.7949 58.0741,24.6786 58.3862,25.5691 58.5332,26.3242 58.6802,27.0794 58.6475,27.6722 58.3887,28 58.0726,28.4004 57.2569,28.7538 56.1836,28.9824 55.1102,29.211 53.7882,29.3363 52.4648,29.3926 49.818,29.505 47.1478,29.3483 46.377,29.2715 45.9557,29.2295 45.4691,28.8889 44.9648,28.3203 44.4606,27.7517 43.9444,26.9738 43.4316,26.1367 42.4062,24.4625 41.4048,22.557 40.3691,21.5215 40.1273,21.2797 40.0241,21.0404 40.0059,20.7656 39.9876,20.4909 40.0644,20.1733 40.2266,19.8164 40.5509,19.1026 41.2133,18.254 41.9707,17.3301 43.4854,15.4823 45.3883,13.3225 45.6387,10.9355 45.9153,8.2963 44.5022,6.13225 43.0703,4.33984 42.3544,3.44364 41.6285,2.63493 41.0957,1.90625 40.5629,1.17757 40.2387,0.529636 40.25,0 H 39.75 C 39.8188,0.643008 40.202,1.52918 40.6934,2.20117 41.2492,2.96129 41.975,3.77022 42.6797,4.65234 44.0891,6.41659 45.3958,8.44786 45.1406,10.8828 44.915,13.034 43.1056,15.1575 41.584,17.0137 40.8232,17.9418 40.1388,18.8007 39.7715,19.6094 39.5878,20.0137 39.4819,20.4099 39.5078,20.7988 39.5337,21.1878 39.7011,21.5626 40.0156,21.877 40.9445,22.8057 41.969,24.7055 43.0059,26.3984 43.5243,27.2449 44.0482,28.0416 44.5898,28.6523 45.1315,29.2631 45.6951,29.7064 46.3281,29.7695 47.145,29.851 49.8061,30.0045 52.4863,29.8906 53.8265,29.8337 55.1682,29.711 56.2871,29.4727 57.406,29.2343 58.3139,28.9026 58.7812,28.3105 59.1947,27.787 59.1816,27.0405 59.0234,26.2285 58.8653,25.4165 58.5456,24.511 58.2266,23.625 57.9075,22.739 57.5895,21.8722 57.4336,21.1699 57.3556,20.8188 57.3198,20.5095 57.3359,20.2695 57.3521,20.0296 57.4157,19.8714 57.5195,19.7676 58.9996,18.2876 59.5436,16.9572 59.5645,15.3281 59.5853,13.699 59.1179,11.7804 58.6445,8.97461 58.0587,5.50069 56.3225,2.58451 56.25,0 Z"
+ id="rtid-path1003-6-3-0-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscccccccccccccccscccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,0 C 71.6916,0.326208 71.4946,0.944301 71.2363,1.42383 70.9218,2.00786 70.4936,2.67713 70.0449,3.40039 69.1476,4.84692 68.1684,6.50633 67.8809,8.20508 67.3507,11.3364 66.428,16.5919 67.2656,19.6289 67.6269,20.9383 68.0538,22.6978 68.5742,24.3164 69.0947,25.935 69.6888,27.4117 70.4805,28.2031 72.9332,30.6554 77.2286,30.999 81.4844,30.1758 85.7402,29.3525 89.9822,27.3554 92.3945,24.9434 93.1906,24.1475 93.4274,23.1797 93.2812,22.1543 93.1351,21.1289 92.6335,20.0329 91.9785,18.8516 90.6685,16.4889 88.7312,13.7811 87.6348,10.8262 87.0123,9.14881 87.1436,7.12424 87.4492,5.17969 87.7403,3.32754 88.1932,1.35928 88.25,0 H 87.75 C 87.7343,1.27047 87.2654,3.12701 86.9551,5.10156 86.6448,7.07611 86.4907,9.18003 87.166,11 88.2944,14.041 90.2543,16.7731 91.541,19.0938 92.1844,20.2541 92.6568,21.3104 92.7871,22.2246 92.9174,23.1389 92.7337,23.8974 92.041,24.5898 89.7396,26.891 85.5582,28.8794 81.3906,29.6855 77.2231,30.4917 73.0943,30.1095 70.834,27.8496 70.1814,27.1972 69.5633,25.758 69.0508,24.1641 68.5382,22.5701 68.1129,20.8186 67.748,19.4961 66.9767,16.6993 67.8428,11.4187 68.373,8.28711 68.638,6.72186 69.5765,5.10242 70.4688,3.66406 70.9149,2.94488 71.349,2.2706 71.6777,1.66016 72.0065,1.04972 72.2393,0.501447 72.25,0 Z"
+ id="rtid-path1003-1-1-3-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,0 C 103.647,0.80947 102.985,2.17388 102.252,3.55273 101.462,5.03836 100.589,6.7673 100.285,8.6543 99.3513,14.4563 100.844,21.1979 103.822,24.1758 105.011,25.3641 106.046,26.1936 107.021,26.6934 107.997,27.1932 108.922,27.358 109.836,27.2051 111.665,26.8993 113.404,25.3883 115.768,23.0254 117.119,21.6749 119.678,20.0341 120.666,17.4004 121.186,16.0148 122.397,14.6012 123.432,13.1465 124.466,11.6918 125.341,10.1651 125.059,8.51172 124.756,6.7403 123.509,5.23854 122.373,3.85156 121.313,2.55689 120.359,1.12102 120.25,0 H 119.75 C 119.732,1.46039 120.851,2.78259 121.986,4.16992 123.122,5.55726 124.295,7.00657 124.566,8.5957 124.811,10.027 124.041,11.43 123.025,12.8574 122.01,14.2848 120.766,15.7081 120.197,17.2246 119.286,19.6535 116.841,21.2464 115.414,22.6719 113.063,25.0221 111.363,26.4438 109.754,26.7129 108.949,26.8475 108.153,26.7107 107.25,26.248 106.347,25.7854 105.346,24.9899 104.178,23.8223 101.412,21.0572 99.8688,14.391 100.779,8.73438 101.067,6.94903 101.907,5.26482 102.693,3.78711 103.479,2.3094 104.228,1.05557 104.25,0 Z"
+ id="rtid-path1003-6-2-9-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/23.svg b/src/asset/tile/frontier/basic/23.svg
index 17119dc..e0e3bd0 100644
--- a/src/asset/tile/frontier/basic/23.svg
+++ b/src/asset/tile/frontier/basic/23.svg
@@ -1,69 +1,301 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="bnottopborder.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask3008" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g3042">
- <ns0:path d="M 0,362.834 V 483.779 H 120.945 V 362.834 L 90.7088,362.835 C 90.5797,373.202 97.8557,388.683 99.2003,401.957 102.823,437.718 98.9244,445.074 87.8908,456.105 79.1805,464.813 69.7202,463.527 59.9817,463.094 49.8011,462.642 39.3403,462.646 30.2363,453.543 20.9501,444.258 19.9609,426.185 22.4222,407.227 24.6823,389.82 30.0529,371.467 30.2363,362.835 Z" id="rtid-path3010" style="fill:#ffffff;stroke-width:1.972157" transform="scale(0.264583)" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 V 128 H 64 V 96 L 56,96.0003 C 55.7792,99.911 58.0485,102.515 58.2957,104.197 58.6205,106.408 59.3913,108.403 60.355,110.772 62.4244,115.86 62.5892,121.139 59.9995,123.728 56.7103,127.017 45.8911,127.212 40.8779,124.814 38.7067,123.775 37.2216,122.576 35.7973,121.152 32.2697,117.626 36.5416,110.369 37.6606,104.055 38.0367,101.932 40.1779,101.539 40,96.0003 Z" id="rtid-path3012" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.9997 V 128 H 96 V 95.9997 L 88,96 C 87.9103,103.205 91.2904,113.728 90.1692,119.729 89.5631,122.973 81.3103,126.239 77.2081,126.313 73.0916,126.387 70.1204,123.583 69.8309,119.729 69.2528,112.035 71.8986,100.771 72,96 Z" id="rtid-path3014" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 V 128 H 128 V 96 L 120,96.0003 C 119.981,97.4942 118.275,101.774 118.549,103.578 119.009,106.611 120.818,110.212 120.94,113.765 121.095,118.29 119.852,123.389 117.221,124.745 113.862,126.475 108.51,125.797 106.508,123.932 104.592,122.147 100.329,120.368 100.481,116.07 100.607,112.489 104.959,106.474 105.464,103.627 105.895,101.195 103.972,97.3349 104,96.0003 Z" id="rtid-path3016" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.9997 V 96 H 32 V 63.9997 L 24,64 C 23.9502,67.9981 17.2051,73.8369 17.7065,78.746 17.8402,80.0543 18.9443,84.2993 20.6536,83.0124 27.9719,77.5027 31.0273,87.2771 26.6437,90.3047 21.159,94.0929 12.3741,95.4912 7.66109,90.7792 5.41095,88.5295 2.50708,82.6214 3.00228,78.0294 3.5443,73.0034 7.94704,66.4932 8.00002,64 Z" id="rtid-path3018" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 V 96 H 64.0001 V 64 L 56.0001,64.0003 C 55.9598,67.2407 55.4617,70.6316 58.2751,72.9289 61.456,75.5263 62.8118,80.3259 60.2181,82.9192 55.5043,87.6322 50.3386,89.1506 47.0939,89.6297 44.1044,90.0712 37.9564,87.8568 37.815,84.753 37.523,78.3432 39.9149,68.0023 40,64.0003 Z" id="rtid-path3020" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,63.9997 V 96 H 96.0001 V 63.9997 L 88.0002,64 C 87.9417,68.7015 87.1866,72.2202 87.2912,77.6724 87.3469,80.5757 83.8863,82.2882 82.2484,83.9258 77.5345,88.6389 76.713,92.712 72,88 67.287,83.288 71.8987,68.771 72,64 Z" id="rtid-path3022" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 V 96 H 128 V 64 L 120,64.0003 C 119.968,66.5447 120.208,75.527 120.762,78.7486 121.777,84.6492 119.321,90.0354 116.272,93.0839 111.558,97.7969 100.057,93.3899 98.5771,88.6779 97.7913,86.1764 101.238,83.161 102.878,77.8789 104.328,73.211 103.953,66.2384 104,64.0003 Z" id="rtid-path3024" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.9997 V 64 H 32 V 31.9997 L 24,32 C 23.9556,35.5634 28.1758,40.3196 28.7819,44.7874 29.4014,49.3533 26.3826,53.6179 24.0001,56 19.2863,60.713 12.713,60.712 8.00002,56 5.4647,53.4652 12.5299,50.0102 13.2377,44.8442 13.8456,40.4069 7.95317,34.2045 8.00002,32 Z" id="rtid-path3026" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 V 64 H 64.0001 V 32 L 56.0001,32.0003 C 55.9104,39.205 57.6463,46.6856 52.9325,51.3986 48.2187,56.1116 39.5364,59.9451 34.8234,55.2331 30.1103,50.5211 39.8986,36.771 40,32.0003 Z" id="rtid-path3028" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="ccccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,31.9997 V 64 H 96.0001 V 31.9997 L 88.0002,32 C 87.9812,39.1615 101.435,45.9204 88.0002,56 74.5657,66.0796 76.713,60.712 72,56 69.4554,53.456 66.3696,45.3696 67.0839,40.1862 67.6926,35.7691 71.9534,34.1951 72,32 Z" id="rtid-path3030" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="ccccczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32 V 64 H 128 V 32 L 120,32.0003 C 119.948,36.1649 121.531,41.959 121.966,47.0177 122.284,50.7105 128.798,55.3553 125.368,59.3552 119.701,65.9652 117.389,56.8142 112.735,56.7543 107.815,56.6909 106.463,64.152 99.8779,61.0808 93.7178,58.2077 101.757,50.9482 101.911,47.3626 102.159,41.5924 103.938,34.9427 104,32.0003 Z" id="rtid-path3032" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,-3e-4 V 32 H 32 V -3e-4 L 24,0 C 23.9599,3.21896 20.6786,7.60311 21.3068,11.6769 22.0848,16.7216 30.2507,23.3099 27.6429,25.9173 22.9291,30.6303 12.0875,29.278 8.00002,24 3.91254,18.722 14.748,6.01635 8.00002,0 Z" id="rtid-path3034" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,0 V 32 H 64.0001 V 0 L 56.0001,3e-4 C 55.9656,2.77163 57.8055,5.49769 58.3988,9.01533 59.348,14.6426 60.2428,16.6902 57.3422,19.5903 56.0729,20.8594 59.9288,26.4522 58.5844,28.1549 57.0173,30.1396 47.9406,29.6791 46.3529,29.5208 44.2443,29.3106 42.1564,23.6635 40.1917,21.6993 37.9666,19.4747 44.9138,15.448 45.3897,10.9099 45.9217,5.83568 39.9465,2.51867 40,3e-4 Z" id="rtid-path3036" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,-3e-4 V 32 H 96.0001 V -3e-4 L 88.0002,0 C 87.9672,2.65434 86.1031,7.41677 87.4008,10.9141 89.6258,16.91 95.1954,21.7902 92.2182,24.7669 87.5043,29.48 75.3709,32.7383 70.6579,28.0263 69.2137,26.5824 68.2329,22.1951 67.5069,19.5632 66.7022,16.6463 67.5963,11.3777 68.1264,8.24622 68.679,4.98223 71.9641,1.68881 72,0 Z" id="rtid-path3038" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,0 V 32 H 128 V 0 L 120,3e-4 C 119.967,2.65051 124.239,5.19375 124.813,8.55431 125.34,11.639 121.521,14.4098 120.432,17.3119 119.482,19.8432 116.979,21.4616 115.59,22.8496 110.876,27.5627 108.713,28.712 104,24 101.128,21.1285 99.6098,14.4242 100.532,8.69489 101.124,5.02254 103.961,1.86377 104,3e-4 Z" id="rtid-path3040" style="fill:#ffffff;stroke-width:0.521799" ns2:nodetypes="cccccssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="228.924" ns1:cy="130.823" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="0.975807" />
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask3008)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:path d="M 7.75,96 C 7.69534,97.1043 7.34116,98.9836 6.92773,100.951 6.4918,103.026 5.98635,105.396 5.68555,107.713 5.03061,112.757 5.25877,117.613 7.82422,120.178 10.3005,122.653 13.1738,122.659 15.8594,122.777 17.1404,122.835 18.4252,122.951 19.7012,122.756 20.9772,122.561 22.243,122.044 23.4316,120.855 24.9005,119.387 25.9315,118.113 26.4473,116.027 26.963,113.942 26.9765,111.068 26.4961,106.326 26.3147,104.535 25.7378,102.623 25.2168,100.818 24.7224,99.1064 24.28,97.2813 24.25,96 H 23.75 C 23.7322,97.4315 24.2144,99.1494 24.7363,100.957 25.2583,102.765 25.8238,104.656 25.998,106.377 26.4763,111.097 26.4531,113.926 25.9629,115.908 25.4726,117.891 24.5285,119.052 23.0781,120.502 21.9622,121.618 20.8228,122.079 19.627,122.262 18.4311,122.444 17.1766,122.335 15.8809,122.277 13.1797,122.158 10.5188,122.164 8.17773,119.822 5.82924,117.475 5.53218,112.765 6.17969,107.777 6.47687,105.488 6.97984,103.129 7.41602,101.053 7.85219,98.9769 8.22472,97.1899 8.25,96 Z" id="rtid-path1003-10" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,96 C 39.7946,98.541 39.3391,100.206 38.8164,101.191 38.2734,102.215 37.616,102.873 37.4141,104.012 36.8613,107.131 35.5172,110.519 34.7441,113.588 34.3576,115.122 34.1127,116.579 34.1934,117.896 34.2741,119.214 34.691,120.398 35.6211,121.328 37.0572,122.764 38.5708,123.987 40.7695,125.039 43.3417,126.269 47.3211,126.816 51.0957,126.654 54.8703,126.493 58.436,125.644 60.1758,123.904 61.5326,122.548 62.1495,120.512 62.1738,118.189 62.1981,115.867 61.6311,113.248 60.5859,110.678 59.623,108.311 58.8628,106.336 58.543,104.16 58.4061,103.229 57.7665,102.171 57.2031,100.838 56.665,99.5647 56.1982,97.7913 56.25,96 H 55.75 C 55.6367,98.0067 56.1644,99.6641 56.7422,101.031 57.32,102.398 57.9386,103.482 58.0488,104.232 58.379,106.478 59.1582,108.496 60.123,110.867 61.1467,113.385 61.6972,115.948 61.6738,118.184 61.6504,120.42 61.0552,122.318 59.8223,123.551 58.2728,125.1 54.7848,125.996 51.0742,126.154 47.3636,126.313 43.4274,125.756 40.9863,124.588 38.8426,123.562 37.3871,122.387 35.9746,120.975 35.1409,120.141 34.7669,119.098 34.6914,117.865 34.6159,116.633 34.8482,115.221 35.2285,113.711 35.9892,110.691 37.3401,107.292 37.9062,104.098 38.0806,103.114 38.6826,102.514 39.2598,101.426 39.8369,100.338 40.34,98.8017 40.25,96 Z" id="rtid-path1003-6-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccscccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,96 C 71.6723,98.3648 71.0003,102.46 70.4121,106.734 69.8095,111.114 69.2902,115.864 69.582,119.748 69.8804,123.72 72.9809,126.639 77.2129,126.562 79.3273,126.524 82.4257,125.68 85.1055,124.436 86.4454,123.813 87.6779,123.092 88.625,122.309 89.5721,121.525 90.2451,120.68 90.4141,119.775 90.9879,116.704 90.413,112.561 89.7188,108.275 89.0391,104.08 88.2416,99.5222 88.25,96 H 87.75 C 87.7046,99.6431 88.5316,104.078 89.2246,108.355 89.9176,112.633 90.4713,116.754 89.9238,119.684 89.7897,120.401 89.2056,121.18 88.3066,121.924 87.4077,122.667 86.2063,123.373 84.8945,123.982 82.2709,125.201 79.191,126.027 77.2031,126.062 73.2024,126.134 70.3607,123.447 70.0801,119.711 69.7938,115.901 70.307,111.172 70.9082,106.803 71.5094,102.434 72.1985,98.4275 72.25,96 Z" id="rtid-path1003-1-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,96 C 103.779,96.3567 103.895,96.9902 104.037,97.4824 104.209,98.0768 104.432,98.7594 104.643,99.4727 105.063,100.899 105.419,102.453 105.219,103.584 104.983,104.916 103.777,107.149 102.607,109.461 101.438,111.773 100.297,114.174 100.23,116.061 100.152,118.293 101.235,119.894 102.549,121.125 103.863,122.356 105.417,123.258 106.338,124.115 107.409,125.113 109.286,125.746 111.332,125.936 113.378,126.125 115.597,125.863 117.336,124.967 118.751,124.238 119.733,122.561 120.363,120.518 120.994,118.474 121.268,116.044 121.189,113.756 121.065,110.124 119.247,106.507 118.797,103.541 118.676,102.744 119.013,101.214 119.406,99.7363 119.774,98.3562 120.189,96.8528 120.25,96 H 119.75 C 119.742,96.6548 119.32,98.1224 118.924,99.6094 118.528,101.096 118.15,102.608 118.303,103.615 118.773,106.715 120.57,110.299 120.689,113.773 120.766,116.01 120.496,118.393 119.887,120.369 119.277,122.345 118.324,123.897 117.107,124.523 115.488,125.358 113.349,125.62 111.379,125.438 109.409,125.255 107.608,124.617 106.678,123.75 105.682,122.823 104.149,121.941 102.891,120.762 101.632,119.583 100.657,118.143 100.73,116.078 100.79,114.384 101.888,111.988 103.053,109.686 104.217,107.383 105.442,105.185 105.711,103.67 105.942,102.369 105.549,100.777 105.123,99.332 104.91,98.6094 104.685,97.9245 104.518,97.3438 104.35,96.763 104.244,96.2711 104.25,96 Z" id="rtid-path1003-6-2-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,64 C 7.69186,64.5515 7.42134,65.5192 7.04102,66.4414 6.61628,67.4713 6.0455,68.6751 5.45703,69.9609 4.2801,72.5325 3.03142,75.4286 2.75391,78.002 2.49949,80.361 3.11433,83.0185 4.07031,85.377 5.02629,87.7354 6.31995,89.7908 7.48438,90.9551 9.90455,93.3747 13.3576,94.2161 16.8789,93.9785 20.4002,93.741 24.0032,92.4312 26.7852,90.5098 29.1028,88.9092 29.4464,85.5825 28.2578,83.3398 27.6635,82.2185 26.6623,81.356 25.3301,81.1543 23.9979,80.9525 22.3686,81.4087 20.5039,82.8125 20.1397,83.0867 19.9131,83.0595 19.6328,82.8672 19.3525,82.6748 19.058,82.2558 18.8145,81.7441 18.3273,80.7207 18.0176,79.3329 17.9551,78.7207 17.7169,76.3889 19.2311,73.7336 20.8574,71.166 22.4253,68.6907 24.1079,66.0829 24.25,64 H 23.75 C 23.7268,65.86 22.0689,68.3198 20.4355,70.8984 18.8022,73.4771 17.1938,76.1943 17.457,78.7715 17.5282,79.4677 17.8376,80.8545 18.3633,81.959 18.6261,82.5112 18.9379,82.9968 19.3496,83.2793 19.7613,83.5618 20.3143,83.5821 20.8047,83.2129 22.5992,81.8619 24.0939,81.4725 25.2559,81.6484 26.4178,81.8244 27.28,82.5622 27.8164,83.5742 28.8892,85.5982 28.5679,88.6729 26.502,90.0996 23.7991,91.9665 20.2663,93.2497 16.8457,93.4805 13.4251,93.7112 10.1307,92.8939 7.83789,90.6016 6.75217,89.516 5.46789,87.4954 4.5332,85.1895 3.59852,82.8835 3.00921,80.2894 3.25,78.0566 3.51451,75.6039 4.73892,72.7314 5.91211,70.168 6.4987,68.8863 7.07129,67.6819 7.50391,66.6328 7.93652,65.5838 8.23524,64.6945 8.25,64 Z" id="rtid-path1003-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccsscsccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,64 C 39.6797,65.9884 39.0767,69.6524 38.5195,73.4375 37.9468,77.328 37.4167,81.5217 37.5645,84.7637 37.6035,85.6206 38.0564,86.3984 38.7285,87.0645 39.4006,87.7305 40.2974,88.2958 41.2812,88.748 43.249,89.6525 45.5518,90.1102 47.1309,89.877 50.4131,89.3925 55.6351,87.8543 60.3945,83.0957 61.7613,81.7291 62.0821,79.7803 61.6562,77.8711 61.2304,75.9618 60.0691,74.0698 58.4336,72.7344 57.0792,71.6284 56.5309,70.2839 56.3145,68.7832 56.1092,67.3598 56.2211,65.5489 56.25,64 H 55.75 C 55.73,65.6085 55.5926,67.2744 55.8203,68.8535 56.0481,70.4327 56.6583,71.9317 58.1172,73.123 59.6628,74.385 60.7691,76.1922 61.168,77.9805 61.5668,79.7687 61.2679,81.5154 60.041,82.7422 55.3728,87.4096 50.2636,88.9095 47.0566,89.3828 45.6462,89.5912 43.3793,89.1612 41.4902,88.293 40.5457,87.8588 39.6939,87.3173 39.0801,86.709 38.4662,86.1007 38.0961,85.4372 38.0645,84.7422 37.9201,81.5744 38.4421,77.3927 39.0137,73.5098 39.5853,69.6268 40.2065,66.0462 40.25,64 Z" id="rtid-path1003-6-3-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,64 C 71.6558,66.3661 70.5138,71.2603 69.9473,75.9922 69.6578,78.4097 69.5158,80.8316 69.748,82.9609 69.9803,85.0903 70.5862,86.94 71.8242,88.1777 73.0178,89.371 73.9789,90.0302 74.8652,90.2559 75.7516,90.4816 76.5425,90.2357 77.2715,89.6992 78.7294,88.6262 80.0892,86.4379 82.4258,84.1016 83.2133,83.3142 84.4915,82.4731 85.5762,81.457 86.6608,80.4409 87.5707,79.2198 87.541,77.668 87.4388,72.3428 88.1672,68.5947 88.25,64 H 87.75 C 87.6918,68.6765 86.9358,72.2006 87.041,77.6777 87.0669,79.0291 86.2756,80.1164 85.2344,81.0918 84.1932,82.0672 82.9227,82.8979 82.0723,83.748 79.695,86.125 78.2862,88.333 76.9766,89.2969 76.3218,89.7788 75.7288,89.9601 74.9883,89.7715 74.2477,89.5829 73.3407,88.985 72.1777,87.8223 71.0593,86.7041 70.4715,84.9732 70.2461,82.9062 70.0207,80.8393 70.1563,78.4499 70.4434,76.0527 71.0174,71.2584 72.1978,66.4606 72.25,64 Z" id="rtid-path1003-1-1-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccscccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,64 C 103.735,65.1823 103.804,67.5338 103.715,70.0195 103.622,72.6154 103.351,75.5102 102.639,77.8047 101.829,80.4113 100.572,82.4655 99.5996,84.1992 99.1134,85.0661 98.6974,85.8527 98.4492,86.5996 98.201,87.3465 98.1215,88.063 98.3379,88.752 99.1266,91.2633 102.437,93.5369 106.139,94.6543 109.84,95.7716 113.993,95.7175 116.449,93.2617 119.555,90.1566 122.039,84.699 121.008,78.707 120.474,75.6046 120.228,66.6952 120.25,64 H 119.75 C 119.718,66.5676 119.951,75.5048 120.516,78.791 121.515,84.6001 119.088,89.9144 116.096,92.9062 113.838,95.1632 109.881,95.2617 106.283,94.1758 102.686,93.0899 99.5076,90.8041 98.8164,88.6035 98.6399,88.0416 98.6955,87.443 98.9238,86.7559 99.1522,86.0687 99.5529,85.3033 100.035,84.4434 101,82.7235 102.286,80.6287 103.117,77.9531 103.854,75.5796 104.121,72.654 104.215,70.0371 104.309,67.4202 104.227,65.0996 104.25,64 Z" id="rtid-path1003-6-2-9-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscccccccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 23.75,32 C 23.7266,33.8817 24.7979,35.9738 25.9238,38.168 27.0497,40.3622 28.2389,42.6513 28.5332,44.8203 29.1353,49.2584 26.1759,53.471 23.8242,55.8223 19.1926,60.4531 12.8085,60.452 8.17773,55.8223 7.89139,55.536 7.75509,55.2614 7.71484,54.9707 7.6746,54.68 7.73395,54.3626 7.88086,54.0098 8.17468,53.3041 8.82703,52.4809 9.59375,51.5703 11.1272,49.7492 13.1183,47.5653 13.4863,44.8789 13.8071,42.5371 12.4423,39.8503 11.0449,37.459 10.3462,36.2633 9.63224,35.1421 9.10156,34.1914 8.57088,33.2407 8.2407,32.4373 8.25,32 H 7.75 C 7.81033,32.6217 8.18082,33.5663 8.66602,34.4355 9.20799,35.4065 9.92072,36.5258 10.6133,37.7109 11.9984,40.0813 13.2773,42.715 12.9902,44.8105 12.6505,47.2901 10.7532,49.4164 9.21094,51.248 8.4398,52.1638 7.75793,53.0018 7.41797,53.8184 7.24799,54.2266 7.16482,54.6354 7.2207,55.0391 7.27659,55.4427 7.47674,55.8303 7.82422,56.1777 12.6194,60.9718 19.3817,60.9729 24.1777,56.1777 26.5911,53.7648 29.666,49.4476 29.0293,44.7539 28.7174,42.4552 27.4938,40.1311 26.3691,37.9395 25.2944,35.8449 24.3161,33.639 24.25,32 Z" id="rtid-path1003-4-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccccscccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,32 C 39.6698,33.1145 39.0664,34.9623 38.2559,36.8828 37.4006,38.9094 36.3138,41.2249 35.375,43.5449 34.4362,45.865 33.6423,48.1881 33.3809,50.2539 33.1194,52.3197 33.3946,54.1586 34.6465,55.4102 37.0812,57.8443 40.5462,58.0632 43.9473,57.0898 47.3483,56.1165 50.7222,53.963 53.1094,51.5762 55.5239,49.1621 56.2813,46.0357 56.4492,42.6465 56.6132,39.3356 56.2266,35.5024 56.25,32 H 55.75 C 55.7049,35.6236 56.1162,39.2905 55.9512,42.6211 55.7862,45.9516 55.0552,48.9238 52.7559,51.2227 50.4293,53.5489 47.1054,55.6658 43.8086,56.6094 40.5118,57.5529 37.2782,57.3344 35,55.0566 33.8953,53.9522 33.6255,52.3031 33.877,50.3164 34.1284,48.3297 34.9061,46.0353 35.8379,43.7324 36.7697,41.4296 37.8556,39.1187 38.7168,37.0781 39.578,35.0375 40.2229,33.2755 40.25,32 Z" id="rtid-path1003-6-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,32 C 71.6766,32.384 71.4303,33.0141 71.1016,33.4297 70.7016,33.9353 70.1486,34.4728 69.5703,35.0879 68.4137,36.318 67.1505,37.8697 66.8359,40.1523 66.4697,42.8097 67.0736,46.1499 68.082,49.1621 69.0905,52.1743 70.4921,54.8478 71.8223,56.1777 72.977,57.3322 73.7153,58.5287 74.3906,59.543 75.0659,60.5572 75.6842,61.4095 76.6387,61.7793 77.5931,62.1491 78.813,61.995 80.6035,61.1406 82.394,60.2862 84.7858,58.7236 88.1504,56.1992 91.5358,53.6592 93.258,51.3059 93.9062,49.0742 94.5545,46.8425 94.114,44.7577 93.2598,42.8047 92.4055,40.8516 91.1397,39.0153 90.0977,37.2285 89.106,35.5281 88.3193,33.6309 88.25,32 H 87.75 C 87.7451,33.8688 88.6106,35.6708 89.666,37.4805 90.7214,39.2902 91.9753,41.114 92.8027,43.0059 93.6302,44.8977 94.0341,46.8412 93.4258,48.9355 92.8174,51.0299 91.1816,53.301 87.8496,55.8008 84.4969,58.3162 82.1193,59.8627 80.3867,60.6895 78.6541,61.5162 77.5975,61.6156 76.8203,61.3145 76.0431,61.0133 75.4741,60.27 74.8066,59.2676 74.1392,58.2652 73.3775,57.0237 72.1758,55.8223 70.9615,54.6082 69.5486,51.9668 68.5566,49.0039 67.5647,46.041 66.9839,42.7468 67.332,40.2207 67.6261,38.0864 68.7979,36.6416 69.9355,35.4316 70.5044,34.8267 71.0631,34.2832 71.4941,33.7383 71.9252,33.1934 72.2366,32.6289 72.25,32 Z" id="rtid-path1003-1-8-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccsccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,32 C 103.69,33.4417 103.244,35.9313 102.779,38.5781 102.295,41.3319 101.787,44.4449 101.662,47.3516 101.627,48.1583 101.118,49.2727 100.443,50.4941 99.7688,51.7156 98.9386,53.0524 98.3008,54.3809 97.6629,55.7094 97.2082,57.033 97.3262,58.2539 97.4441,59.4748 98.176,60.5625 99.7715,61.3066 101.456,62.0922 102.844,62.2157 104.031,61.9355 105.218,61.6554 106.19,60.9848 107.09,60.2383 107.99,59.4918 108.822,58.6663 109.719,58.041 110.616,57.4157 111.566,56.9888 112.732,57.0039 113.814,57.0178 114.78,57.5624 115.721,58.3105 116.662,59.0587 117.563,60.0015 118.518,60.752 119.472,61.5024 120.498,62.0726 121.674,61.9961 122.85,61.9196 124.118,61.1981 125.559,59.5176 126.457,58.4697 126.717,57.3408 126.576,56.2285 126.436,55.1162 125.916,54.0191 125.289,52.9453 124.035,50.7977 122.362,48.706 122.215,46.9961 121.784,41.9899 120.255,36.0846 120.25,32 H 119.75 C 119.697,36.2308 121.285,42.0156 121.717,47.0391 121.888,49.0219 123.632,51.0993 124.857,53.1973 125.47,54.2463 125.954,55.292 126.08,56.291 126.206,57.29 125.994,58.2412 125.178,59.1934 123.785,60.8179 122.637,61.4312 121.641,61.4961 120.644,61.5609 119.74,61.078 118.826,60.3594 117.912,59.6408 117.01,58.6979 116.031,57.9199 115.053,57.1419 113.983,56.5199 112.738,56.5039 111.445,56.4872 110.38,56.971 109.434,57.6309 108.487,58.2907 107.648,59.1265 106.771,59.8535 105.895,60.5805 104.988,61.1961 103.916,61.4492 102.844,61.7023 101.592,61.6036 99.9844,60.8535 98.4997,60.1611 97.9267,59.2655 97.8242,58.2051 97.7218,57.1447 98.1308,55.8914 98.752,54.5977 99.3731,53.3039 100.197,51.9742 100.881,50.7363 101.564,49.4984 102.118,48.3589 102.16,47.373 102.283,44.5094 102.788,41.4134 103.271,38.6641 103.755,35.9148 104.218,33.5175 104.25,32 Z" id="rtid-path1003-6-2-4-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccsscccsccscccccsccsccccscccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,0 C 9.3321,1.4439 10.0244,3.49809 10.0215,5.54492 10.0185,7.61813 9.43333,9.91675 8.75781,12.2051 8.0823,14.4934 7.31912,16.7704 6.97852,18.8281 6.63791,20.8858 6.7184,22.7522 7.80273,24.1523 9.90566,26.8678 13.6959,28.5386 17.5605,28.9531 21.4252,29.3676 25.3872,28.5264 27.8203,26.0938 28.188,25.7262 28.3727,25.2681 28.4004,24.7773 28.428,24.2866 28.3092,23.7633 28.0957,23.2109 27.6686,22.1062 26.8582,20.8739 25.9492,19.5684 24.1313,16.9573 21.9261,14.047 21.5547,11.6387 21.2526,9.67993 21.893,7.60466 22.6367,5.60547 23.3463,3.69786 24.1594,1.63409 24.25,0 H 23.75 C 23.731,1.52592 22.9179,3.41364 22.168,5.42969 21.418,7.44573 20.7344,9.59981 21.0605,11.7148 21.4671,14.3512 23.7315,17.2574 25.5391,19.8535 26.4428,21.1516 27.234,22.371 27.6289,23.3926 27.8264,23.9034 27.9242,24.3617 27.9023,24.75 27.8805,25.1383 27.7511,25.456 27.4668,25.7402 25.1861,28.0205 21.3698,28.8599 17.6133,28.457 13.8568,28.0541 10.1818,26.4102 8.19727,23.8477 7.23787,22.6088 7.14014,20.9072 7.4707,18.9102 7.80127,16.9131 8.55936,14.6475 9.23828,12.3477 9.9172,10.0478 10.5184,7.71299 10.5215,5.54688 10.5246,3.38076 9.99442,1.55527 8.25,0 Z" id="rtid-path1003-9-5-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccscccscc" ns1:connector-curvature="0" />
- <ns0:path d="M 55.75,0 C 55.7142,2.88399 57.5697,5.60171 58.1523,9.05664 58.6284,11.8781 59.084,13.7957 59.0645,15.3223 59.0449,16.8488 58.5863,17.9939 57.166,19.4141 56.9525,19.6275 56.8591,19.9208 56.8379,20.2363 56.8167,20.5518 56.8613,20.901 56.9453,21.2793 57.1133,22.0358 57.4376,22.9112 57.7559,23.7949 58.0741,24.6786 58.3862,25.5691 58.5332,26.3242 58.6802,27.0794 58.6475,27.6722 58.3887,28 58.0726,28.4004 57.2569,28.7538 56.1836,28.9824 55.1102,29.211 53.7882,29.3363 52.4648,29.3926 49.818,29.505 47.1478,29.3483 46.377,29.2715 45.9557,29.2295 45.4691,28.8889 44.9648,28.3203 44.4606,27.7517 43.9444,26.9738 43.4316,26.1367 42.4062,24.4625 41.4048,22.557 40.3691,21.5215 40.1273,21.2797 40.0241,21.0404 40.0059,20.7656 39.9876,20.4909 40.0644,20.1733 40.2266,19.8164 40.5509,19.1026 41.2133,18.254 41.9707,17.3301 43.4854,15.4823 45.3883,13.3225 45.6387,10.9355 45.9153,8.2963 44.5022,6.13225 43.0703,4.33984 42.3544,3.44364 41.6285,2.63493 41.0957,1.90625 40.5629,1.17757 40.2387,0.529636 40.25,0 H 39.75 C 39.8188,0.643008 40.202,1.52918 40.6934,2.20117 41.2492,2.96129 41.975,3.77022 42.6797,4.65234 44.0891,6.41659 45.3958,8.44786 45.1406,10.8828 44.915,13.034 43.1056,15.1575 41.584,17.0137 40.8232,17.9418 40.1388,18.8007 39.7715,19.6094 39.5878,20.0137 39.4819,20.4099 39.5078,20.7988 39.5337,21.1878 39.7011,21.5626 40.0156,21.877 40.9445,22.8057 41.969,24.7055 43.0059,26.3984 43.5243,27.2449 44.0482,28.0416 44.5898,28.6523 45.1315,29.2631 45.6951,29.7064 46.3281,29.7695 47.145,29.851 49.8061,30.0045 52.4863,29.8906 53.8265,29.8337 55.1682,29.711 56.2871,29.4727 57.406,29.2343 58.3139,28.9026 58.7812,28.3105 59.1947,27.787 59.1816,27.0405 59.0234,26.2285 58.8653,25.4165 58.5456,24.511 58.2266,23.625 57.9075,22.739 57.5895,21.8722 57.4336,21.1699 57.3556,20.8188 57.3198,20.5095 57.3359,20.2695 57.3521,20.0296 57.4157,19.8714 57.5195,19.7676 58.9996,18.2876 59.5436,16.9572 59.5645,15.3281 59.5853,13.699 59.1179,11.7804 58.6445,8.97461 58.0587,5.50069 56.3225,2.58451 56.25,0 Z" id="rtid-path1003-6-3-0-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscccccccccccccccscccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,0 C 71.6916,0.326208 71.4946,0.944301 71.2363,1.42383 70.9218,2.00786 70.4936,2.67713 70.0449,3.40039 69.1476,4.84692 68.1684,6.50633 67.8809,8.20508 67.3507,11.3364 66.428,16.5919 67.2656,19.6289 67.6269,20.9383 68.0538,22.6978 68.5742,24.3164 69.0947,25.935 69.6888,27.4117 70.4805,28.2031 72.9332,30.6554 77.2286,30.999 81.4844,30.1758 85.7402,29.3525 89.9822,27.3554 92.3945,24.9434 93.1906,24.1475 93.4274,23.1797 93.2812,22.1543 93.1351,21.1289 92.6335,20.0329 91.9785,18.8516 90.6685,16.4889 88.7312,13.7811 87.6348,10.8262 87.0123,9.14881 87.1436,7.12424 87.4492,5.17969 87.7403,3.32754 88.1932,1.35928 88.25,0 H 87.75 C 87.7343,1.27047 87.2654,3.12701 86.9551,5.10156 86.6448,7.07611 86.4907,9.18003 87.166,11 88.2944,14.041 90.2543,16.7731 91.541,19.0938 92.1844,20.2541 92.6568,21.3104 92.7871,22.2246 92.9174,23.1389 92.7337,23.8974 92.041,24.5898 89.7396,26.891 85.5582,28.8794 81.3906,29.6855 77.2231,30.4917 73.0943,30.1095 70.834,27.8496 70.1814,27.1972 69.5633,25.758 69.0508,24.1641 68.5382,22.5701 68.1129,20.8186 67.748,19.4961 66.9767,16.6993 67.8428,11.4187 68.373,8.28711 68.638,6.72186 69.5765,5.10242 70.4688,3.66406 70.9149,2.94488 71.349,2.2706 71.6777,1.66016 72.0065,1.04972 72.2393,0.501447 72.25,0 Z" id="rtid-path1003-1-1-3-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,0 C 103.647,0.80947 102.985,2.17388 102.252,3.55273 101.462,5.03836 100.589,6.7673 100.285,8.6543 99.3513,14.4563 100.844,21.1979 103.822,24.1758 105.011,25.3641 106.046,26.1936 107.021,26.6934 107.997,27.1932 108.922,27.358 109.836,27.2051 111.665,26.8993 113.404,25.3883 115.768,23.0254 117.119,21.6749 119.678,20.0341 120.666,17.4004 121.186,16.0148 122.397,14.6012 123.432,13.1465 124.466,11.6918 125.341,10.1651 125.059,8.51172 124.756,6.7403 123.509,5.23854 122.373,3.85156 121.313,2.55689 120.359,1.12102 120.25,0 H 119.75 C 119.732,1.46039 120.851,2.78259 121.986,4.16992 123.122,5.55726 124.295,7.00657 124.566,8.5957 124.811,10.027 124.041,11.43 123.025,12.8574 122.01,14.2848 120.766,15.7081 120.197,17.2246 119.286,19.6535 116.841,21.2464 115.414,22.6719 113.063,25.0221 111.363,26.4438 109.754,26.7129 108.949,26.8475 108.153,26.7107 107.25,26.248 106.347,25.7854 105.346,24.9899 104.178,23.8223 101.412,21.0572 99.8688,14.391 100.779,8.73438 101.067,6.94903 101.907,5.26482 102.693,3.78711 103.479,2.3094 104.228,1.05557 104.25,0 Z" id="rtid-path1003-6-2-9-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccccscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="23.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask3008"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g3042">
+ <path
+ d="M 0,362.834 V 483.779 H 120.945 V 362.834 L 90.7088,362.835 C 90.5797,373.202 97.8557,388.683 99.2003,401.957 102.823,437.718 98.9244,445.074 87.8908,456.105 79.1805,464.813 69.7202,463.527 59.9817,463.094 49.8011,462.642 39.3403,462.646 30.2363,453.543 20.9501,444.258 19.9609,426.185 22.4222,407.227 24.6823,389.82 30.0529,371.467 30.2363,362.835 Z"
+ id="rtid-path3010"
+ style="fill:#ffffff;stroke-width:1.972157"
+ transform="scale(0.264583)"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 V 128 H 64 V 96 L 56,96.0003 C 55.7792,99.911 58.0485,102.515 58.2957,104.197 58.6205,106.408 59.3913,108.403 60.355,110.772 62.4244,115.86 62.5892,121.139 59.9995,123.728 56.7103,127.017 45.8911,127.212 40.8779,124.814 38.7067,123.775 37.2216,122.576 35.7973,121.152 32.2697,117.626 36.5416,110.369 37.6606,104.055 38.0367,101.932 40.1779,101.539 40,96.0003 Z"
+ id="rtid-path3012"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.9997 V 128 H 96 V 95.9997 L 88,96 C 87.9103,103.205 91.2904,113.728 90.1692,119.729 89.5631,122.973 81.3103,126.239 77.2081,126.313 73.0916,126.387 70.1204,123.583 69.8309,119.729 69.2528,112.035 71.8986,100.771 72,96 Z"
+ id="rtid-path3014"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 V 128 H 128 V 96 L 120,96.0003 C 119.981,97.4942 118.275,101.774 118.549,103.578 119.009,106.611 120.818,110.212 120.94,113.765 121.095,118.29 119.852,123.389 117.221,124.745 113.862,126.475 108.51,125.797 106.508,123.932 104.592,122.147 100.329,120.368 100.481,116.07 100.607,112.489 104.959,106.474 105.464,103.627 105.895,101.195 103.972,97.3349 104,96.0003 Z"
+ id="rtid-path3016"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.9997 V 96 H 32 V 63.9997 L 24,64 C 23.9502,67.9981 17.2051,73.8369 17.7065,78.746 17.8402,80.0543 18.9443,84.2993 20.6536,83.0124 27.9719,77.5027 31.0273,87.2771 26.6437,90.3047 21.159,94.0929 12.3741,95.4912 7.66109,90.7792 5.41095,88.5295 2.50708,82.6214 3.00228,78.0294 3.5443,73.0034 7.94704,66.4932 8.00002,64 Z"
+ id="rtid-path3018"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 V 96 H 64.0001 V 64 L 56.0001,64.0003 C 55.9598,67.2407 55.4617,70.6316 58.2751,72.9289 61.456,75.5263 62.8118,80.3259 60.2181,82.9192 55.5043,87.6322 50.3386,89.1506 47.0939,89.6297 44.1044,90.0712 37.9564,87.8568 37.815,84.753 37.523,78.3432 39.9149,68.0023 40,64.0003 Z"
+ id="rtid-path3020"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,63.9997 V 96 H 96.0001 V 63.9997 L 88.0002,64 C 87.9417,68.7015 87.1866,72.2202 87.2912,77.6724 87.3469,80.5757 83.8863,82.2882 82.2484,83.9258 77.5345,88.6389 76.713,92.712 72,88 67.287,83.288 71.8987,68.771 72,64 Z"
+ id="rtid-path3022"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 V 96 H 128 V 64 L 120,64.0003 C 119.968,66.5447 120.208,75.527 120.762,78.7486 121.777,84.6492 119.321,90.0354 116.272,93.0839 111.558,97.7969 100.057,93.3899 98.5771,88.6779 97.7913,86.1764 101.238,83.161 102.878,77.8789 104.328,73.211 103.953,66.2384 104,64.0003 Z"
+ id="rtid-path3024"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.9997 V 64 H 32 V 31.9997 L 24,32 C 23.9556,35.5634 28.1758,40.3196 28.7819,44.7874 29.4014,49.3533 26.3826,53.6179 24.0001,56 19.2863,60.713 12.713,60.712 8.00002,56 5.4647,53.4652 12.5299,50.0102 13.2377,44.8442 13.8456,40.4069 7.95317,34.2045 8.00002,32 Z"
+ id="rtid-path3026"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 V 64 H 64.0001 V 32 L 56.0001,32.0003 C 55.9104,39.205 57.6463,46.6856 52.9325,51.3986 48.2187,56.1116 39.5364,59.9451 34.8234,55.2331 30.1103,50.5211 39.8986,36.771 40,32.0003 Z"
+ id="rtid-path3028"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="ccccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,31.9997 V 64 H 96.0001 V 31.9997 L 88.0002,32 C 87.9812,39.1615 101.435,45.9204 88.0002,56 74.5657,66.0796 76.713,60.712 72,56 69.4554,53.456 66.3696,45.3696 67.0839,40.1862 67.6926,35.7691 71.9534,34.1951 72,32 Z"
+ id="rtid-path3030"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="ccccczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32 V 64 H 128 V 32 L 120,32.0003 C 119.948,36.1649 121.531,41.959 121.966,47.0177 122.284,50.7105 128.798,55.3553 125.368,59.3552 119.701,65.9652 117.389,56.8142 112.735,56.7543 107.815,56.6909 106.463,64.152 99.8779,61.0808 93.7178,58.2077 101.757,50.9482 101.911,47.3626 102.159,41.5924 103.938,34.9427 104,32.0003 Z"
+ id="rtid-path3032"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,-3e-4 V 32 H 32 V -3e-4 L 24,0 C 23.9599,3.21896 20.6786,7.60311 21.3068,11.6769 22.0848,16.7216 30.2507,23.3099 27.6429,25.9173 22.9291,30.6303 12.0875,29.278 8.00002,24 3.91254,18.722 14.748,6.01635 8.00002,0 Z"
+ id="rtid-path3034"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,0 V 32 H 64.0001 V 0 L 56.0001,3e-4 C 55.9656,2.77163 57.8055,5.49769 58.3988,9.01533 59.348,14.6426 60.2428,16.6902 57.3422,19.5903 56.0729,20.8594 59.9288,26.4522 58.5844,28.1549 57.0173,30.1396 47.9406,29.6791 46.3529,29.5208 44.2443,29.3106 42.1564,23.6635 40.1917,21.6993 37.9666,19.4747 44.9138,15.448 45.3897,10.9099 45.9217,5.83568 39.9465,2.51867 40,3e-4 Z"
+ id="rtid-path3036"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,-3e-4 V 32 H 96.0001 V -3e-4 L 88.0002,0 C 87.9672,2.65434 86.1031,7.41677 87.4008,10.9141 89.6258,16.91 95.1954,21.7902 92.2182,24.7669 87.5043,29.48 75.3709,32.7383 70.6579,28.0263 69.2137,26.5824 68.2329,22.1951 67.5069,19.5632 66.7022,16.6463 67.5963,11.3777 68.1264,8.24622 68.679,4.98223 71.9641,1.68881 72,0 Z"
+ id="rtid-path3038"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,0 V 32 H 128 V 0 L 120,3e-4 C 119.967,2.65051 124.239,5.19375 124.813,8.55431 125.34,11.639 121.521,14.4098 120.432,17.3119 119.482,19.8432 116.979,21.4616 115.59,22.8496 110.876,27.5627 108.713,28.712 104,24 101.128,21.1285 99.6098,14.4242 100.532,8.69489 101.124,5.02254 103.961,1.86377 104,3e-4 Z"
+ id="rtid-path3040"
+ style="fill:#ffffff;stroke-width:0.521799"
+ sodipodi:nodetypes="cccccssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="49.072861"
+ inkscape:cy="130.823"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.975807" />
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask3008)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <path
+ d="M 7.75,96 C 7.69534,97.1043 7.34116,98.9836 6.92773,100.951 6.4918,103.026 5.98635,105.396 5.68555,107.713 5.03061,112.757 5.25877,117.613 7.82422,120.178 10.3005,122.653 13.1738,122.659 15.8594,122.777 17.1404,122.835 18.4252,122.951 19.7012,122.756 20.9772,122.561 22.243,122.044 23.4316,120.855 24.9005,119.387 25.9315,118.113 26.4473,116.027 26.963,113.942 26.9765,111.068 26.4961,106.326 26.3147,104.535 25.7378,102.623 25.2168,100.818 24.7224,99.1064 24.28,97.2813 24.25,96 H 23.75 C 23.7322,97.4315 24.2144,99.1494 24.7363,100.957 25.2583,102.765 25.8238,104.656 25.998,106.377 26.4763,111.097 26.4531,113.926 25.9629,115.908 25.4726,117.891 24.5285,119.052 23.0781,120.502 21.9622,121.618 20.8228,122.079 19.627,122.262 18.4311,122.444 17.1766,122.335 15.8809,122.277 13.1797,122.158 10.5188,122.164 8.17773,119.822 5.82924,117.475 5.53218,112.765 6.17969,107.777 6.47687,105.488 6.97984,103.129 7.41602,101.053 7.85219,98.9769 8.22472,97.1899 8.25,96 Z"
+ id="rtid-path1003-10"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,96 C 39.7946,98.541 39.3391,100.206 38.8164,101.191 38.2734,102.215 37.616,102.873 37.4141,104.012 36.8613,107.131 35.5172,110.519 34.7441,113.588 34.3576,115.122 34.1127,116.579 34.1934,117.896 34.2741,119.214 34.691,120.398 35.6211,121.328 37.0572,122.764 38.5708,123.987 40.7695,125.039 43.3417,126.269 47.3211,126.816 51.0957,126.654 54.8703,126.493 58.436,125.644 60.1758,123.904 61.5326,122.548 62.1495,120.512 62.1738,118.189 62.1981,115.867 61.6311,113.248 60.5859,110.678 59.623,108.311 58.8628,106.336 58.543,104.16 58.4061,103.229 57.7665,102.171 57.2031,100.838 56.665,99.5647 56.1982,97.7913 56.25,96 H 55.75 C 55.6367,98.0067 56.1644,99.6641 56.7422,101.031 57.32,102.398 57.9386,103.482 58.0488,104.232 58.379,106.478 59.1582,108.496 60.123,110.867 61.1467,113.385 61.6972,115.948 61.6738,118.184 61.6504,120.42 61.0552,122.318 59.8223,123.551 58.2728,125.1 54.7848,125.996 51.0742,126.154 47.3636,126.313 43.4274,125.756 40.9863,124.588 38.8426,123.562 37.3871,122.387 35.9746,120.975 35.1409,120.141 34.7669,119.098 34.6914,117.865 34.6159,116.633 34.8482,115.221 35.2285,113.711 35.9892,110.691 37.3401,107.292 37.9062,104.098 38.0806,103.114 38.6826,102.514 39.2598,101.426 39.8369,100.338 40.34,98.8017 40.25,96 Z"
+ id="rtid-path1003-6-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccscccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,96 C 71.6723,98.3648 71.0003,102.46 70.4121,106.734 69.8095,111.114 69.2902,115.864 69.582,119.748 69.8804,123.72 72.9809,126.639 77.2129,126.562 79.3273,126.524 82.4257,125.68 85.1055,124.436 86.4454,123.813 87.6779,123.092 88.625,122.309 89.5721,121.525 90.2451,120.68 90.4141,119.775 90.9879,116.704 90.413,112.561 89.7188,108.275 89.0391,104.08 88.2416,99.5222 88.25,96 H 87.75 C 87.7046,99.6431 88.5316,104.078 89.2246,108.355 89.9176,112.633 90.4713,116.754 89.9238,119.684 89.7897,120.401 89.2056,121.18 88.3066,121.924 87.4077,122.667 86.2063,123.373 84.8945,123.982 82.2709,125.201 79.191,126.027 77.2031,126.062 73.2024,126.134 70.3607,123.447 70.0801,119.711 69.7938,115.901 70.307,111.172 70.9082,106.803 71.5094,102.434 72.1985,98.4275 72.25,96 Z"
+ id="rtid-path1003-1-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,96 C 103.779,96.3567 103.895,96.9902 104.037,97.4824 104.209,98.0768 104.432,98.7594 104.643,99.4727 105.063,100.899 105.419,102.453 105.219,103.584 104.983,104.916 103.777,107.149 102.607,109.461 101.438,111.773 100.297,114.174 100.23,116.061 100.152,118.293 101.235,119.894 102.549,121.125 103.863,122.356 105.417,123.258 106.338,124.115 107.409,125.113 109.286,125.746 111.332,125.936 113.378,126.125 115.597,125.863 117.336,124.967 118.751,124.238 119.733,122.561 120.363,120.518 120.994,118.474 121.268,116.044 121.189,113.756 121.065,110.124 119.247,106.507 118.797,103.541 118.676,102.744 119.013,101.214 119.406,99.7363 119.774,98.3562 120.189,96.8528 120.25,96 H 119.75 C 119.742,96.6548 119.32,98.1224 118.924,99.6094 118.528,101.096 118.15,102.608 118.303,103.615 118.773,106.715 120.57,110.299 120.689,113.773 120.766,116.01 120.496,118.393 119.887,120.369 119.277,122.345 118.324,123.897 117.107,124.523 115.488,125.358 113.349,125.62 111.379,125.438 109.409,125.255 107.608,124.617 106.678,123.75 105.682,122.823 104.149,121.941 102.891,120.762 101.632,119.583 100.657,118.143 100.73,116.078 100.79,114.384 101.888,111.988 103.053,109.686 104.217,107.383 105.442,105.185 105.711,103.67 105.942,102.369 105.549,100.777 105.123,99.332 104.91,98.6094 104.685,97.9245 104.518,97.3438 104.35,96.763 104.244,96.2711 104.25,96 Z"
+ id="rtid-path1003-6-2-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,64 C 7.69186,64.5515 7.42134,65.5192 7.04102,66.4414 6.61628,67.4713 6.0455,68.6751 5.45703,69.9609 4.2801,72.5325 3.03142,75.4286 2.75391,78.002 2.49949,80.361 3.11433,83.0185 4.07031,85.377 5.02629,87.7354 6.31995,89.7908 7.48438,90.9551 9.90455,93.3747 13.3576,94.2161 16.8789,93.9785 20.4002,93.741 24.0032,92.4312 26.7852,90.5098 29.1028,88.9092 29.4464,85.5825 28.2578,83.3398 27.6635,82.2185 26.6623,81.356 25.3301,81.1543 23.9979,80.9525 22.3686,81.4087 20.5039,82.8125 20.1397,83.0867 19.9131,83.0595 19.6328,82.8672 19.3525,82.6748 19.058,82.2558 18.8145,81.7441 18.3273,80.7207 18.0176,79.3329 17.9551,78.7207 17.7169,76.3889 19.2311,73.7336 20.8574,71.166 22.4253,68.6907 24.1079,66.0829 24.25,64 H 23.75 C 23.7268,65.86 22.0689,68.3198 20.4355,70.8984 18.8022,73.4771 17.1938,76.1943 17.457,78.7715 17.5282,79.4677 17.8376,80.8545 18.3633,81.959 18.6261,82.5112 18.9379,82.9968 19.3496,83.2793 19.7613,83.5618 20.3143,83.5821 20.8047,83.2129 22.5992,81.8619 24.0939,81.4725 25.2559,81.6484 26.4178,81.8244 27.28,82.5622 27.8164,83.5742 28.8892,85.5982 28.5679,88.6729 26.502,90.0996 23.7991,91.9665 20.2663,93.2497 16.8457,93.4805 13.4251,93.7112 10.1307,92.8939 7.83789,90.6016 6.75217,89.516 5.46789,87.4954 4.5332,85.1895 3.59852,82.8835 3.00921,80.2894 3.25,78.0566 3.51451,75.6039 4.73892,72.7314 5.91211,70.168 6.4987,68.8863 7.07129,67.6819 7.50391,66.6328 7.93652,65.5838 8.23524,64.6945 8.25,64 Z"
+ id="rtid-path1003-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccsscsccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,64 C 39.6797,65.9884 39.0767,69.6524 38.5195,73.4375 37.9468,77.328 37.4167,81.5217 37.5645,84.7637 37.6035,85.6206 38.0564,86.3984 38.7285,87.0645 39.4006,87.7305 40.2974,88.2958 41.2812,88.748 43.249,89.6525 45.5518,90.1102 47.1309,89.877 50.4131,89.3925 55.6351,87.8543 60.3945,83.0957 61.7613,81.7291 62.0821,79.7803 61.6562,77.8711 61.2304,75.9618 60.0691,74.0698 58.4336,72.7344 57.0792,71.6284 56.5309,70.2839 56.3145,68.7832 56.1092,67.3598 56.2211,65.5489 56.25,64 H 55.75 C 55.73,65.6085 55.5926,67.2744 55.8203,68.8535 56.0481,70.4327 56.6583,71.9317 58.1172,73.123 59.6628,74.385 60.7691,76.1922 61.168,77.9805 61.5668,79.7687 61.2679,81.5154 60.041,82.7422 55.3728,87.4096 50.2636,88.9095 47.0566,89.3828 45.6462,89.5912 43.3793,89.1612 41.4902,88.293 40.5457,87.8588 39.6939,87.3173 39.0801,86.709 38.4662,86.1007 38.0961,85.4372 38.0645,84.7422 37.9201,81.5744 38.4421,77.3927 39.0137,73.5098 39.5853,69.6268 40.2065,66.0462 40.25,64 Z"
+ id="rtid-path1003-6-3-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,64 C 71.6558,66.3661 70.5138,71.2603 69.9473,75.9922 69.6578,78.4097 69.5158,80.8316 69.748,82.9609 69.9803,85.0903 70.5862,86.94 71.8242,88.1777 73.0178,89.371 73.9789,90.0302 74.8652,90.2559 75.7516,90.4816 76.5425,90.2357 77.2715,89.6992 78.7294,88.6262 80.0892,86.4379 82.4258,84.1016 83.2133,83.3142 84.4915,82.4731 85.5762,81.457 86.6608,80.4409 87.5707,79.2198 87.541,77.668 87.4388,72.3428 88.1672,68.5947 88.25,64 H 87.75 C 87.6918,68.6765 86.9358,72.2006 87.041,77.6777 87.0669,79.0291 86.2756,80.1164 85.2344,81.0918 84.1932,82.0672 82.9227,82.8979 82.0723,83.748 79.695,86.125 78.2862,88.333 76.9766,89.2969 76.3218,89.7788 75.7288,89.9601 74.9883,89.7715 74.2477,89.5829 73.3407,88.985 72.1777,87.8223 71.0593,86.7041 70.4715,84.9732 70.2461,82.9062 70.0207,80.8393 70.1563,78.4499 70.4434,76.0527 71.0174,71.2584 72.1978,66.4606 72.25,64 Z"
+ id="rtid-path1003-1-1-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccscccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,64 C 103.735,65.1823 103.804,67.5338 103.715,70.0195 103.622,72.6154 103.351,75.5102 102.639,77.8047 101.829,80.4113 100.572,82.4655 99.5996,84.1992 99.1134,85.0661 98.6974,85.8527 98.4492,86.5996 98.201,87.3465 98.1215,88.063 98.3379,88.752 99.1266,91.2633 102.437,93.5369 106.139,94.6543 109.84,95.7716 113.993,95.7175 116.449,93.2617 119.555,90.1566 122.039,84.699 121.008,78.707 120.474,75.6046 120.228,66.6952 120.25,64 H 119.75 C 119.718,66.5676 119.951,75.5048 120.516,78.791 121.515,84.6001 119.088,89.9144 116.096,92.9062 113.838,95.1632 109.881,95.2617 106.283,94.1758 102.686,93.0899 99.5076,90.8041 98.8164,88.6035 98.6399,88.0416 98.6955,87.443 98.9238,86.7559 99.1522,86.0687 99.5529,85.3033 100.035,84.4434 101,82.7235 102.286,80.6287 103.117,77.9531 103.854,75.5796 104.121,72.654 104.215,70.0371 104.309,67.4202 104.227,65.0996 104.25,64 Z"
+ id="rtid-path1003-6-2-9-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 23.75,32 C 23.7266,33.8817 24.7979,35.9738 25.9238,38.168 27.0497,40.3622 28.2389,42.6513 28.5332,44.8203 29.1353,49.2584 26.1759,53.471 23.8242,55.8223 19.1926,60.4531 12.8085,60.452 8.17773,55.8223 7.89139,55.536 7.75509,55.2614 7.71484,54.9707 7.6746,54.68 7.73395,54.3626 7.88086,54.0098 8.17468,53.3041 8.82703,52.4809 9.59375,51.5703 11.1272,49.7492 13.1183,47.5653 13.4863,44.8789 13.8071,42.5371 12.4423,39.8503 11.0449,37.459 10.3462,36.2633 9.63224,35.1421 9.10156,34.1914 8.57088,33.2407 8.2407,32.4373 8.25,32 H 7.75 C 7.81033,32.6217 8.18082,33.5663 8.66602,34.4355 9.20799,35.4065 9.92072,36.5258 10.6133,37.7109 11.9984,40.0813 13.2773,42.715 12.9902,44.8105 12.6505,47.2901 10.7532,49.4164 9.21094,51.248 8.4398,52.1638 7.75793,53.0018 7.41797,53.8184 7.24799,54.2266 7.16482,54.6354 7.2207,55.0391 7.27659,55.4427 7.47674,55.8303 7.82422,56.1777 12.6194,60.9718 19.3817,60.9729 24.1777,56.1777 26.5911,53.7648 29.666,49.4476 29.0293,44.7539 28.7174,42.4552 27.4938,40.1311 26.3691,37.9395 25.2944,35.8449 24.3161,33.639 24.25,32 Z"
+ id="rtid-path1003-4-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccccscccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,32 C 39.6698,33.1145 39.0664,34.9623 38.2559,36.8828 37.4006,38.9094 36.3138,41.2249 35.375,43.5449 34.4362,45.865 33.6423,48.1881 33.3809,50.2539 33.1194,52.3197 33.3946,54.1586 34.6465,55.4102 37.0812,57.8443 40.5462,58.0632 43.9473,57.0898 47.3483,56.1165 50.7222,53.963 53.1094,51.5762 55.5239,49.1621 56.2813,46.0357 56.4492,42.6465 56.6132,39.3356 56.2266,35.5024 56.25,32 H 55.75 C 55.7049,35.6236 56.1162,39.2905 55.9512,42.6211 55.7862,45.9516 55.0552,48.9238 52.7559,51.2227 50.4293,53.5489 47.1054,55.6658 43.8086,56.6094 40.5118,57.5529 37.2782,57.3344 35,55.0566 33.8953,53.9522 33.6255,52.3031 33.877,50.3164 34.1284,48.3297 34.9061,46.0353 35.8379,43.7324 36.7697,41.4296 37.8556,39.1187 38.7168,37.0781 39.578,35.0375 40.2229,33.2755 40.25,32 Z"
+ id="rtid-path1003-6-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,32 C 71.6766,32.384 71.4303,33.0141 71.1016,33.4297 70.7016,33.9353 70.1486,34.4728 69.5703,35.0879 68.4137,36.318 67.1505,37.8697 66.8359,40.1523 66.4697,42.8097 67.0736,46.1499 68.082,49.1621 69.0905,52.1743 70.4921,54.8478 71.8223,56.1777 72.977,57.3322 73.7153,58.5287 74.3906,59.543 75.0659,60.5572 75.6842,61.4095 76.6387,61.7793 77.5931,62.1491 78.813,61.995 80.6035,61.1406 82.394,60.2862 84.7858,58.7236 88.1504,56.1992 91.5358,53.6592 93.258,51.3059 93.9062,49.0742 94.5545,46.8425 94.114,44.7577 93.2598,42.8047 92.4055,40.8516 91.1397,39.0153 90.0977,37.2285 89.106,35.5281 88.3193,33.6309 88.25,32 H 87.75 C 87.7451,33.8688 88.6106,35.6708 89.666,37.4805 90.7214,39.2902 91.9753,41.114 92.8027,43.0059 93.6302,44.8977 94.0341,46.8412 93.4258,48.9355 92.8174,51.0299 91.1816,53.301 87.8496,55.8008 84.4969,58.3162 82.1193,59.8627 80.3867,60.6895 78.6541,61.5162 77.5975,61.6156 76.8203,61.3145 76.0431,61.0133 75.4741,60.27 74.8066,59.2676 74.1392,58.2652 73.3775,57.0237 72.1758,55.8223 70.9615,54.6082 69.5486,51.9668 68.5566,49.0039 67.5647,46.041 66.9839,42.7468 67.332,40.2207 67.6261,38.0864 68.7979,36.6416 69.9355,35.4316 70.5044,34.8267 71.0631,34.2832 71.4941,33.7383 71.9252,33.1934 72.2366,32.6289 72.25,32 Z"
+ id="rtid-path1003-1-8-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccsccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,32 C 103.69,33.4417 103.244,35.9313 102.779,38.5781 102.295,41.3319 101.787,44.4449 101.662,47.3516 101.627,48.1583 101.118,49.2727 100.443,50.4941 99.7688,51.7156 98.9386,53.0524 98.3008,54.3809 97.6629,55.7094 97.2082,57.033 97.3262,58.2539 97.4441,59.4748 98.176,60.5625 99.7715,61.3066 101.456,62.0922 102.844,62.2157 104.031,61.9355 105.218,61.6554 106.19,60.9848 107.09,60.2383 107.99,59.4918 108.822,58.6663 109.719,58.041 110.616,57.4157 111.566,56.9888 112.732,57.0039 113.814,57.0178 114.78,57.5624 115.721,58.3105 116.662,59.0587 117.563,60.0015 118.518,60.752 119.472,61.5024 120.498,62.0726 121.674,61.9961 122.85,61.9196 124.118,61.1981 125.559,59.5176 126.457,58.4697 126.717,57.3408 126.576,56.2285 126.436,55.1162 125.916,54.0191 125.289,52.9453 124.035,50.7977 122.362,48.706 122.215,46.9961 121.784,41.9899 120.255,36.0846 120.25,32 H 119.75 C 119.697,36.2308 121.285,42.0156 121.717,47.0391 121.888,49.0219 123.632,51.0993 124.857,53.1973 125.47,54.2463 125.954,55.292 126.08,56.291 126.206,57.29 125.994,58.2412 125.178,59.1934 123.785,60.8179 122.637,61.4312 121.641,61.4961 120.644,61.5609 119.74,61.078 118.826,60.3594 117.912,59.6408 117.01,58.6979 116.031,57.9199 115.053,57.1419 113.983,56.5199 112.738,56.5039 111.445,56.4872 110.38,56.971 109.434,57.6309 108.487,58.2907 107.648,59.1265 106.771,59.8535 105.895,60.5805 104.988,61.1961 103.916,61.4492 102.844,61.7023 101.592,61.6036 99.9844,60.8535 98.4997,60.1611 97.9267,59.2655 97.8242,58.2051 97.7218,57.1447 98.1308,55.8914 98.752,54.5977 99.3731,53.3039 100.197,51.9742 100.881,50.7363 101.564,49.4984 102.118,48.3589 102.16,47.373 102.283,44.5094 102.788,41.4134 103.271,38.6641 103.755,35.9148 104.218,33.5175 104.25,32 Z"
+ id="rtid-path1003-6-2-4-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccsscccsccscccccsccsccccscccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,0 C 9.3321,1.4439 10.0244,3.49809 10.0215,5.54492 10.0185,7.61813 9.43333,9.91675 8.75781,12.2051 8.0823,14.4934 7.31912,16.7704 6.97852,18.8281 6.63791,20.8858 6.7184,22.7522 7.80273,24.1523 9.90566,26.8678 13.6959,28.5386 17.5605,28.9531 21.4252,29.3676 25.3872,28.5264 27.8203,26.0938 28.188,25.7262 28.3727,25.2681 28.4004,24.7773 28.428,24.2866 28.3092,23.7633 28.0957,23.2109 27.6686,22.1062 26.8582,20.8739 25.9492,19.5684 24.1313,16.9573 21.9261,14.047 21.5547,11.6387 21.2526,9.67993 21.893,7.60466 22.6367,5.60547 23.3463,3.69786 24.1594,1.63409 24.25,0 H 23.75 C 23.731,1.52592 22.9179,3.41364 22.168,5.42969 21.418,7.44573 20.7344,9.59981 21.0605,11.7148 21.4671,14.3512 23.7315,17.2574 25.5391,19.8535 26.4428,21.1516 27.234,22.371 27.6289,23.3926 27.8264,23.9034 27.9242,24.3617 27.9023,24.75 27.8805,25.1383 27.7511,25.456 27.4668,25.7402 25.1861,28.0205 21.3698,28.8599 17.6133,28.457 13.8568,28.0541 10.1818,26.4102 8.19727,23.8477 7.23787,22.6088 7.14014,20.9072 7.4707,18.9102 7.80127,16.9131 8.55936,14.6475 9.23828,12.3477 9.9172,10.0478 10.5184,7.71299 10.5215,5.54688 10.5246,3.38076 9.99442,1.55527 8.25,0 Z"
+ id="rtid-path1003-9-5-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccscccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 55.75,0 C 55.7142,2.88399 57.5697,5.60171 58.1523,9.05664 58.6284,11.8781 59.084,13.7957 59.0645,15.3223 59.0449,16.8488 58.5863,17.9939 57.166,19.4141 56.9525,19.6275 56.8591,19.9208 56.8379,20.2363 56.8167,20.5518 56.8613,20.901 56.9453,21.2793 57.1133,22.0358 57.4376,22.9112 57.7559,23.7949 58.0741,24.6786 58.3862,25.5691 58.5332,26.3242 58.6802,27.0794 58.6475,27.6722 58.3887,28 58.0726,28.4004 57.2569,28.7538 56.1836,28.9824 55.1102,29.211 53.7882,29.3363 52.4648,29.3926 49.818,29.505 47.1478,29.3483 46.377,29.2715 45.9557,29.2295 45.4691,28.8889 44.9648,28.3203 44.4606,27.7517 43.9444,26.9738 43.4316,26.1367 42.4062,24.4625 41.4048,22.557 40.3691,21.5215 40.1273,21.2797 40.0241,21.0404 40.0059,20.7656 39.9876,20.4909 40.0644,20.1733 40.2266,19.8164 40.5509,19.1026 41.2133,18.254 41.9707,17.3301 43.4854,15.4823 45.3883,13.3225 45.6387,10.9355 45.9153,8.2963 44.5022,6.13225 43.0703,4.33984 42.3544,3.44364 41.6285,2.63493 41.0957,1.90625 40.5629,1.17757 40.2387,0.529636 40.25,0 H 39.75 C 39.8188,0.643008 40.202,1.52918 40.6934,2.20117 41.2492,2.96129 41.975,3.77022 42.6797,4.65234 44.0891,6.41659 45.3958,8.44786 45.1406,10.8828 44.915,13.034 43.1056,15.1575 41.584,17.0137 40.8232,17.9418 40.1388,18.8007 39.7715,19.6094 39.5878,20.0137 39.4819,20.4099 39.5078,20.7988 39.5337,21.1878 39.7011,21.5626 40.0156,21.877 40.9445,22.8057 41.969,24.7055 43.0059,26.3984 43.5243,27.2449 44.0482,28.0416 44.5898,28.6523 45.1315,29.2631 45.6951,29.7064 46.3281,29.7695 47.145,29.851 49.8061,30.0045 52.4863,29.8906 53.8265,29.8337 55.1682,29.711 56.2871,29.4727 57.406,29.2343 58.3139,28.9026 58.7812,28.3105 59.1947,27.787 59.1816,27.0405 59.0234,26.2285 58.8653,25.4165 58.5456,24.511 58.2266,23.625 57.9075,22.739 57.5895,21.8722 57.4336,21.1699 57.3556,20.8188 57.3198,20.5095 57.3359,20.2695 57.3521,20.0296 57.4157,19.8714 57.5195,19.7676 58.9996,18.2876 59.5436,16.9572 59.5645,15.3281 59.5853,13.699 59.1179,11.7804 58.6445,8.97461 58.0587,5.50069 56.3225,2.58451 56.25,0 Z"
+ id="rtid-path1003-6-3-0-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscccccccccccccccscccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,0 C 71.6916,0.326208 71.4946,0.944301 71.2363,1.42383 70.9218,2.00786 70.4936,2.67713 70.0449,3.40039 69.1476,4.84692 68.1684,6.50633 67.8809,8.20508 67.3507,11.3364 66.428,16.5919 67.2656,19.6289 67.6269,20.9383 68.0538,22.6978 68.5742,24.3164 69.0947,25.935 69.6888,27.4117 70.4805,28.2031 72.9332,30.6554 77.2286,30.999 81.4844,30.1758 85.7402,29.3525 89.9822,27.3554 92.3945,24.9434 93.1906,24.1475 93.4274,23.1797 93.2812,22.1543 93.1351,21.1289 92.6335,20.0329 91.9785,18.8516 90.6685,16.4889 88.7312,13.7811 87.6348,10.8262 87.0123,9.14881 87.1436,7.12424 87.4492,5.17969 87.7403,3.32754 88.1932,1.35928 88.25,0 H 87.75 C 87.7343,1.27047 87.2654,3.12701 86.9551,5.10156 86.6448,7.07611 86.4907,9.18003 87.166,11 88.2944,14.041 90.2543,16.7731 91.541,19.0938 92.1844,20.2541 92.6568,21.3104 92.7871,22.2246 92.9174,23.1389 92.7337,23.8974 92.041,24.5898 89.7396,26.891 85.5582,28.8794 81.3906,29.6855 77.2231,30.4917 73.0943,30.1095 70.834,27.8496 70.1814,27.1972 69.5633,25.758 69.0508,24.1641 68.5382,22.5701 68.1129,20.8186 67.748,19.4961 66.9767,16.6993 67.8428,11.4187 68.373,8.28711 68.638,6.72186 69.5765,5.10242 70.4688,3.66406 70.9149,2.94488 71.349,2.2706 71.6777,1.66016 72.0065,1.04972 72.2393,0.501447 72.25,0 Z"
+ id="rtid-path1003-1-1-3-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,0 C 103.647,0.80947 102.985,2.17388 102.252,3.55273 101.462,5.03836 100.589,6.7673 100.285,8.6543 99.3513,14.4563 100.844,21.1979 103.822,24.1758 105.011,25.3641 106.046,26.1936 107.021,26.6934 107.997,27.1932 108.922,27.358 109.836,27.2051 111.665,26.8993 113.404,25.3883 115.768,23.0254 117.119,21.6749 119.678,20.0341 120.666,17.4004 121.186,16.0148 122.397,14.6012 123.432,13.1465 124.466,11.6918 125.341,10.1651 125.059,8.51172 124.756,6.7403 123.509,5.23854 122.373,3.85156 121.313,2.55689 120.359,1.12102 120.25,0 H 119.75 C 119.732,1.46039 120.851,2.78259 121.986,4.16992 123.122,5.55726 124.295,7.00657 124.566,8.5957 124.811,10.027 124.041,11.43 123.025,12.8574 122.01,14.2848 120.766,15.7081 120.197,17.2246 119.286,19.6535 116.841,21.2464 115.414,22.6719 113.063,25.0221 111.363,26.4438 109.754,26.7129 108.949,26.8475 108.153,26.7107 107.25,26.248 106.347,25.7854 105.346,24.9899 104.178,23.8223 101.412,21.0572 99.8688,14.391 100.779,8.73438 101.067,6.94903 101.907,5.26482 102.693,3.78711 103.479,2.3094 104.228,1.05557 104.25,0 Z"
+ id="rtid-path1003-6-2-9-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccccscc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/24.svg b/src/asset/tile/frontier/basic/24.svg
index 891a390..16e3f4e 100644
--- a/src/asset/tile/frontier/basic/24.svg
+++ b/src/asset/tile/frontier/basic/24.svg
@@ -1,111 +1,533 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bnottopleftcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1859" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1963" transform="scale(1)">
- <ns0:g id="rtid-g1893" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path1861" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path1863" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path1865" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path1867" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path1869" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path1871" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path1873" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path1875" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path1877" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path1879" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path1881" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path1883" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path1885" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path1887" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path1889" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path1891" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1927" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path1895" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path1897" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path1899" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path1901" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path1903" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path1905" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path1907" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path1909" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path1911" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path1913" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path1915" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path1917" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path1919" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path1921" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path1923" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path1925" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1961" transform="matrix(-1,0,0,1,128,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path1929" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path1931" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path1933" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path1935" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path1937" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path1939" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path1941" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path1943" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path1945" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path1947" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path1949" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path1951" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path1953" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path1955" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path1957" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path1959" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="39.815282" ns1:cy="11.556413" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="15.612918" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="24.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1859"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1963"
+ transform="scale(1)">
+ <g
+ id="rtid-g1893"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path1861"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path1863"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path1865"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path1867"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path1869"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path1871"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path1873"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path1875"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path1877"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path1879"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path1881"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path1883"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path1885"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path1887"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path1889"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path1891"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1927"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path1895"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path1897"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path1899"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path1901"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path1903"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path1905"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path1907"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path1909"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path1911"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path1913"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path1915"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path1917"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path1919"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path1921"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path1923"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path1925"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1961"
+ transform="matrix(-1,0,0,1,128,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path1929"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path1931"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path1933"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path1935"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path1937"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path1939"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path1941"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path1943"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path1945"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path1947"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path1949"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path1951"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path1953"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path1955"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path1957"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path1959"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="39.815282"
+ inkscape:cy="11.556413"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="15.612918" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" style="display:inline" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1859)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.25 0.644302,-0.24592 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccsccscccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssscsccsscccccccsccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.48214,-0.47922 2.11,-1.05 0.583615,-0.53056 1.198107,-1.18653 1.87,-1.6 0.62838,-0.3867 1.32,-0.3 2.12,-0.3 0.3,0 0.68695,-0.12111 1,-0.3 0.38829,-0.22188 0.70482,-0.5981 0.9,-1.1 0.50483,-1.298132 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.0812,0.7413 -0.5,2.02 -0.219,0.48181 -0.35746,0.74448 -0.6,0.89 -0.27116,0.1627 -0.5,0.2 -0.9,0.2 -0.6,0 -1.47604,-0.061 -2.27,0.4 -0.75806,0.44016 -1.390125,1.07718 -1.96,1.6 -0.521048,0.47803 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssssssccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 v 0.5 c 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.645268 -0.13,-1.025268 L 39.75,64" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccccccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.64634,0.365298 -0.8,0.93 -0.2472,0.908456 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.2051,-2.535994 2.49,-3.64 0.11519,-0.446354 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccscsccccccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="matrix(-1,0,0,1,128,0)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- <ns0:use height="100%" id="rtid-use1804" transform="rotate(-180,64,64)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ style="display:inline"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1859)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.25 0.644302,-0.24592 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccsccscccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssscsccsscccccccsccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.48214,-0.47922 2.11,-1.05 0.583615,-0.53056 1.198107,-1.18653 1.87,-1.6 0.62838,-0.3867 1.32,-0.3 2.12,-0.3 0.3,0 0.68695,-0.12111 1,-0.3 0.38829,-0.22188 0.70482,-0.5981 0.9,-1.1 0.50483,-1.298132 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.0812,0.7413 -0.5,2.02 -0.219,0.48181 -0.35746,0.74448 -0.6,0.89 -0.27116,0.1627 -0.5,0.2 -0.9,0.2 -0.6,0 -1.47604,-0.061 -2.27,0.4 -0.75806,0.44016 -1.390125,1.07718 -1.96,1.6 -0.521048,0.47803 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssssssccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 v 0.5 c 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.645268 -0.13,-1.025268 L 39.75,64"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccccccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.64634,0.365298 -0.8,0.93 -0.2472,0.908456 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.2051,-2.535994 2.49,-3.64 0.11519,-0.446354 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccscsccccccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="matrix(-1,0,0,1,128,0)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ <use
+ height="100%"
+ id="rtid-use1804"
+ transform="rotate(-180,64,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/25.svg b/src/asset/tile/frontier/basic/25.svg
index 3c4692f..9ad98be 100644
--- a/src/asset/tile/frontier/basic/25.svg
+++ b/src/asset/tile/frontier/basic/25.svg
@@ -1,111 +1,531 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bnottoprightcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask3118" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g3222" transform="scale(1)">
- <ns0:g id="rtid-g3152" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path3120" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path3122" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path3124" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path3126" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path3128" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path3130" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path3132" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path3134" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path3136" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path3138" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path3140" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path3142" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path3144" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path3146" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path3148" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path3150" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g3186" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path3154" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path3156" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path3158" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path3160" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path3162" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path3164" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path3166" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path3168" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path3170" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path3172" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path3174" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path3176" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path3178" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path3180" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path3182" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path3184" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g3220">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path3188" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path3190" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path3192" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path3194" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path3196" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path3198" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path3200" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path3202" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path3204" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path3206" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path3208" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path3210" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path3212" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path3214" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path3216" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path3218" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="-37.57321" ns1:cy="177.82541" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="0.69" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="25.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask3118"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g3222"
+ transform="scale(1)">
+ <g
+ id="rtid-g3152"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path3120"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path3122"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path3124"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path3126"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path3128"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path3130"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path3132"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path3134"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path3136"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path3138"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path3140"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path3142"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path3144"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path3146"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path3148"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path3150"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g3186"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path3154"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path3156"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path3158"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path3160"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path3162"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path3164"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path3166"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path3168"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path3170"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path3172"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path3174"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path3176"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path3178"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path3180"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path3182"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path3184"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g3220">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path3188"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path3190"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path3192"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path3194"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path3196"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path3198"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path3200"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path3202"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path3204"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path3206"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path3208"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path3210"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path3212"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path3214"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path3216"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path3218"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-291.92104"
+ inkscape:cy="177.82541"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.69" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask3118)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.25 0.644302,-0.24592 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccsccscccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.797893,-0.0921 1.2,-0.5 0.288077,-0.29225 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.109947,-0.350068 0.35,-0.54 0.669947,-0.530068 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.578636,0.491722 -1.26,1.03 -0.318643,0.251728 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssssssssssccccssssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="matrix(-1,0,0,1,128,0)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- <ns0:use height="100%" id="rtid-use2110" transform="matrix(1,0,0,-1,0,128)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask3118)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.25 0.644302,-0.24592 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccsccscccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.797893,-0.0921 1.2,-0.5 0.288077,-0.29225 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.109947,-0.350068 0.35,-0.54 0.669947,-0.530068 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.578636,0.491722 -1.26,1.03 -0.318643,0.251728 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssssssssssccccssssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="matrix(-1,0,0,1,128,0)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ <use
+ height="100%"
+ id="rtid-use2110"
+ transform="matrix(1,0,0,-1,0,128)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/26.svg b/src/asset/tile/frontier/basic/26.svg
index e8bc2a5..b7bea0f 100644
--- a/src/asset/tile/frontier/basic/26.svg
+++ b/src/asset/tile/frontier/basic/26.svg
@@ -1,94 +1,424 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Brightandleftborders.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask9074" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g9144">
- <ns0:g id="rtid-g9108" transform="matrix(0,1,1,0,0,0)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path9076" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path9078" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path9080" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path9082" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path9084" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path9086" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path9088" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path9090" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path9092" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path9094" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path9096" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path9098" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path9100" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path9102" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path9104" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path9106" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g9142" transform="rotate(90,64.0001,64.0001)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path9110" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path9112" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path9114" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path9116" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path9118" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path9120" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path9122" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path9124" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path9126" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path9128" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path9130" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path9132" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path9134" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path9136" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path9138" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path9140" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="284.817" ns1:cy="256.333" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="1.28">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask9074)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="matrix(0,1,1,0,-0.186627,0)">
- <ns0:path d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use9072" transform="matrix(-1,0,0,1,127.723,0)" width="100%" x="0" y="0" ns6:href="#rtid-g1219" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="26.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask9074"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g9144">
+ <g
+ id="rtid-g9108"
+ transform="matrix(0,1,1,0,0,0)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path9076"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path9078"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path9080"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path9082"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path9084"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path9086"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path9088"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path9090"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path9092"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path9094"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path9096"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path9098"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path9100"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path9102"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path9104"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path9106"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g9142"
+ transform="rotate(90,64.0001,64.0001)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path9110"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path9112"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path9114"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path9116"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path9118"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path9120"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path9122"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path9124"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path9126"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path9128"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path9130"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path9132"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path9134"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path9136"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path9138"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path9140"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="147.70762"
+ inkscape:cy="256.333"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.28">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask9074)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g1219"
+ transform="matrix(0,1,1,0,-0.186627,0)">
+ <path
+ d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use9072"
+ transform="matrix(-1,0,0,1,127.723,0)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1219" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/27.svg b/src/asset/tile/frontier/basic/27.svg
index 4ee2e84..0ca4667 100644
--- a/src/asset/tile/frontier/basic/27.svg
+++ b/src/asset/tile/frontier/basic/27.svg
@@ -1,111 +1,523 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Brightborderandbottomleftcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask6300" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g6370">
- <ns0:g id="rtid-g6334" transform="matrix(0,1,1,0,0,0)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path6302" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path6304" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path6306" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path6308" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path6310" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path6312" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path6314" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path6316" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path6318" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path6320" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path6322" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path6324" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path6326" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path6328" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path6330" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path6332" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g6368" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path6336" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path6338" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path6340" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path6342" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path6344" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path6346" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path6348" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path6350" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path6352" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path6354" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path6356" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path6358" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path6360" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path6362" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path6364" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path6366" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="53.031218" ns1:cy="-15.664876" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="7.2407734">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="27.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask6300"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g6370">
+ <g
+ id="rtid-g6334"
+ transform="matrix(0,1,1,0,0,0)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path6302"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path6304"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path6306"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path6308"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path6310"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path6312"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path6314"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path6316"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path6318"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path6320"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path6322"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path6324"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path6326"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path6328"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path6330"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path6332"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g6368"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path6336"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path6338"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path6340"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path6342"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path6344"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path6346"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path6348"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path6350"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path6352"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path6354"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path6356"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path6358"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path6360"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path6362"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path6364"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path6366"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-17.283819"
+ inkscape:cy="261.32873"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.28">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask6300)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="matrix(0,1,1,0,-0.186627,0)">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-use1484" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-path6230" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-path6232" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-path6234" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="csssssccssccccccssccsssssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-path6236" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-path6238" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-path6240" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-path6242" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-path6244" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-path6246" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-path6248" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-path6250" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-path6252" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-path6254" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-path6256" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-path6258" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-path6260" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask6300)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219"
+ transform="matrix(0,1,1,0,-0.186627,0)">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-use1484"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-path6230"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-path6232"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-path6234"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="csssssccssccccccssccsssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-path6236"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-path6238"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-path6240"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-path6242"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-path6244"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-path6246"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-path6248"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-path6250"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-path6252"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-path6254"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-path6256"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-path6258"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-path6260"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/28.svg b/src/asset/tile/frontier/basic/28.svg
index 764dec4..bdd0936 100644
--- a/src/asset/tile/frontier/basic/28.svg
+++ b/src/asset/tile/frontier/basic/28.svg
@@ -1,132 +1,635 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Brightborderandleftcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask5942" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g6048">
- <ns0:g id="rtid-g5976" transform="matrix(0,1,1,0,0,0)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path5944" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path5946" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path5948" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path5950" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path5952" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path5954" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path5956" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path5958" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path5960" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path5962" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path5964" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path5966" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path5968" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path5970" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path5972" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path5974" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g6046" transform="translate(0,-1.25e-4)">
- <ns0:g id="rtid-g6010" transform="translate(0,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path5978" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path5980" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path5982" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path5984" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path5986" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path5988" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path5990" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path5992" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path5994" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path5996" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path5998" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path6000" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path6002" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path6004" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path6006" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path6008" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g6044" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path6012" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path6014" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path6016" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path6018" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path6020" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path6022" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path6024" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path6026" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path6028" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path6030" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path6032" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path6034" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path6036" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path6038" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path6040" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path6042" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="254.90864" ns1:cy="169.41712" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="1.28">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="28.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask5942"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g6048">
+ <g
+ id="rtid-g5976"
+ transform="matrix(0,1,1,0,0,0)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path5944"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path5946"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path5948"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path5950"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path5952"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path5954"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path5956"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path5958"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path5960"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path5962"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path5964"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path5966"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path5968"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path5970"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path5972"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path5974"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g6046"
+ transform="translate(0,-1.25e-4)">
+ <g
+ id="rtid-g6010"
+ transform="translate(0,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path5978"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path5980"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path5982"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path5984"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path5986"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path5988"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path5990"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path5992"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path5994"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path5996"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path5998"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path6000"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path6002"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path6004"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path6006"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path6008"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g6044"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path6012"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path6014"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path6016"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path6018"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path6020"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path6022"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path6024"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path6026"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path6028"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path6030"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path6032"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path6034"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path6036"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path6038"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path6040"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path6042"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="117.79927"
+ inkscape:cy="169.41712"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.28">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask5942)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="matrix(0,1,1,0,-0.186627,0)">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="translate(0,-1.25e-4)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25013 c 0.8,0 1.49,-0.25013 2.04,-0.75013 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25012 c 0.85,0 1.51,-0.45012 2.11,-1.05012 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85012 -1.77,0.95012 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="matrix(1,0,0,-1,0,128)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask5942)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219"
+ transform="matrix(0,1,1,0,-0.186627,0)">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="translate(0,-1.25e-4)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25013 c 0.8,0 1.49,-0.25013 2.04,-0.75013 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25012 c 0.85,0 1.51,-0.45012 2.11,-1.05012 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85012 -1.77,0.95012 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="matrix(1,0,0,-1,0,128)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/29.svg b/src/asset/tile/frontier/basic/29.svg
index c79e69d..37dfa76 100644
--- a/src/asset/tile/frontier/basic/29.svg
+++ b/src/asset/tile/frontier/basic/29.svg
@@ -1,111 +1,523 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Brightborderandtopleftcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask6139" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g6209">
- <ns0:g id="rtid-g6173" transform="matrix(0,1,1,0,0,0)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path6141" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path6143" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path6145" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path6147" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path6149" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path6151" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path6153" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path6155" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path6157" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path6159" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path6161" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path6163" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path6165" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path6167" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path6169" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path6171" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g6207" transform="translate(0,0.005275)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path6175" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path6177" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path6179" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path6181" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path6183" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path6185" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path6187" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path6189" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path6191" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path6193" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path6195" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path6197" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path6199" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path6201" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path6203" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path6205" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="343.54573" ns1:cy="56.692353" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="7.2407734">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="29.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask6139"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g6209">
+ <g
+ id="rtid-g6173"
+ transform="matrix(0,1,1,0,0,0)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path6141"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path6143"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path6145"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path6147"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path6149"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path6151"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path6153"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path6155"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path6157"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path6159"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path6161"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path6163"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path6165"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path6167"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path6169"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path6171"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g6207"
+ transform="translate(0,0.005275)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path6175"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path6177"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path6179"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path6181"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path6183"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path6185"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path6187"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path6189"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path6191"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path6193"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path6195"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path6197"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path6199"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path6201"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path6203"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path6205"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="319.30799"
+ inkscape:cy="56.692353"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="7.2407734">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask6139)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="matrix(0,1,1,0,-0.186627,0)">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="translate(0,-1.25e-4)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25013 c 0.8,0 1.49,-0.25013 2.04,-0.75013 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25012 c 0.85,0 1.51,-0.45012 2.11,-1.05012 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85012 -1.77,0.95012 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccsccsccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask6139)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219"
+ transform="matrix(0,1,1,0,-0.186627,0)">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="translate(0,-1.25e-4)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25013 c 0.8,0 1.49,-0.25013 2.04,-0.75013 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25012 c 0.85,0 1.51,-0.45012 2.11,-1.05012 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85012 -1.77,0.95012 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccsccsccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/3.svg b/src/asset/tile/frontier/basic/3.svg
index 3e4f2ff..8a91ec4 100644
--- a/src/asset/tile/frontier/basic/3.svg
+++ b/src/asset/tile/frontier/basic/3.svg
@@ -1,71 +1,307 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomandleftborders.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1860" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1894">
- <ns0:path d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z" id="rtid-path1862" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z" id="rtid-path1864" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z" id="rtid-path1866" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z" id="rtid-path1868" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z" id="rtid-path1870" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z" id="rtid-path1872" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z" id="rtid-path1874" style="fill:#ffffff;stroke-width:0.5215" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z" id="rtid-path1876" style="fill:#ffffff;stroke-width:0.5214" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z" id="rtid-path1878" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z" id="rtid-path1880" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccsssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z" id="rtid-path1882" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z" id="rtid-path1884" style="fill:#ffffff;stroke-width:0.5232" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z" id="rtid-path1886" style="fill:#ffffff;stroke-width:0.5231" ns2:nodetypes="cccsssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z" id="rtid-path1888" style="fill:#ffffff;stroke-width:0.5212" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z" id="rtid-path1890" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z" id="rtid-path1892" style="fill:#ffffff;stroke-width:0.5213" ns2:nodetypes="cccssssssssssssssccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="94.047" ns1:cy="229.977" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="0.975807">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1860)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:path d="M 7.75,96 C 7.74413,96.0179 7.6706,96.2775 7.66406,96.2969 7.60119,96.4836 7.50682,96.7367 7.39258,97.0449 7.1641,97.6613 6.85018,98.4935 6.51562,99.457 5.84652,101.384 5.09228,103.836 4.75977,106.164 V 106.166 C 4.27027,109.713 4.25383,117.154 4.32422,118.414 4.36917,119.211 4.86061,120.005 5.58203,120.771 6.30345,121.538 7.26793,122.279 8.31836,122.938 10.4192,124.254 12.8433,125.243 14.4141,125.35 H 14.4219 14.4297 C 15.2725,125.35 16.3526,124.72 17.7422,123.971 19.1313,123.221 20.7935,122.329 22.6152,121.738 26.5001,120.5 31.1618,120.265 32,120.25 V 119.75 C 31.3263,119.75 26.5914,119.947 22.4648,121.262 H 22.4629 C 20.5853,121.871 18.8943,122.779 17.5039,123.529 16.116,124.278 14.9938,124.846 14.4355,124.848 13.0448,124.75 10.6273,123.794 8.58398,122.514 7.56017,121.872 6.62615,121.149 5.94727,120.428 5.26838,119.707 4.85826,118.99 4.82422,118.387 4.76057,117.247 4.77936,109.687 5.25586,106.234 5.58032,103.963 6.32414,101.534 6.98828,99.6211 7.32035,98.6647 7.63203,97.8373 7.86133,97.2188 7.97598,96.9095 8.07015,96.6528 8.13672,96.4551 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z" id="rtid-path1429-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,96 C 39.7589,96.1209 39.7815,96.4553 39.7949,96.6895 39.8157,97.0537 39.8346,97.5392 39.8301,98.0879 39.8211,99.1853 39.7142,100.535 39.3457,101.643 39.0687,102.475 38.5295,103.063 37.9902,103.717 37.451,104.37 36.915,105.096 36.7617,106.164 36.6377,107.029 37.1772,107.985 37.6875,109.01 38.1978,110.034 38.7,111.113 38.6699,112.068 38.5768,115.018 38.3864,116.694 38.4316,117.465 38.4718,118.154 38.4286,119.184 38.6504,120.219 38.8722,121.253 39.378,122.311 40.5059,123.008 41.5905,123.678 42.8156,123.789 43.9336,123.754 45.0516,123.718 46.0824,123.542 46.752,123.588 47.2156,123.619 48.0051,123.932 48.9785,124.15 49.952,124.369 51.1332,124.484 52.4453,124.088 52.6834,124.016 53.0799,123.819 53.623,123.545 54.1662,123.271 54.8285,122.924 55.4941,122.576 56.1597,122.228 56.8282,121.878 57.3789,121.6 57.9297,121.322 58.382,121.112 58.5391,121.061 60.5622,120.404 61.7683,120.205 62.5352,120.166 63.1712,120.134 63.6896,120.222 64,120.25 V 119.75 C 63.751,119.75 63.3364,119.624 62.5098,119.666 61.6832,119.708 60.435,119.919 58.3848,120.584 58.1343,120.665 57.7103,120.872 57.1543,121.152 56.5983,121.433 55.9293,121.785 55.2637,122.133 54.598,122.481 53.9344,122.826 53.3965,123.098 52.8586,123.369 52.4188,123.574 52.3008,123.609 51.0931,123.974 50.0162,123.87 49.0898,123.662 48.1635,123.454 47.4105,123.13 46.7852,123.088 46.0016,123.035 44.991,123.22 43.918,123.254 42.8449,123.288 41.7295,123.177 40.7676,122.582 39.7732,121.967 39.3432,121.067 39.1387,120.113 38.9342,119.16 38.9745,118.171 38.9316,117.436 38.8943,116.8 39.0763,115.048 39.1699,112.084 39.2057,110.949 38.6476,109.817 38.1348,108.787 37.6219,107.758 37.1741,106.82 37.2578,106.236 37.3927,105.297 37.8477,104.674 38.375,104.035 38.9023,103.396 39.5044,102.75 39.8203,101.801 40.2175,100.606 40.3209,99.2174 40.3301,98.0918 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z" id="rtid-path1429-3-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,119.75 C 95.8696,119.75 95.4649,119.725 94.9004,119.707 94.3359,119.689 93.5984,119.677 92.752,119.707 91.059,119.768 88.9282,119.992 86.8516,120.652 H 86.8496 C 83.1999,121.836 82.072,120.946 79.9922,120.918 79.4506,120.911 78.7617,121.114 77.9551,121.352 77.1484,121.589 76.236,121.869 75.3184,122.037 74.4007,122.205 73.4814,122.26 72.666,122.07 71.8506,121.88 71.1366,121.458 70.5781,120.625 69.9512,119.69 69.9225,118.382 70.0879,117.043 70.2533,115.704 70.6068,114.358 70.6602,113.328 70.693,112.697 70.6395,111.535 70.6426,110.078 70.6456,108.621 70.7028,106.882 70.9512,105.15 71.2795,102.862 71.2675,102.437 71.9258,100.531 72.2674,99.5424 72.3393,99.0056 72.3242,98.4277 72.3091,97.8498 72.219,97.2389 72.25,96 H 71.75 C 71.7428,97.0234 71.8117,97.9639 71.8242,98.4414 71.8381,98.9747 71.7841,99.409 71.4531,100.367 70.7864,102.297 70.7839,102.802 70.457,105.08 70.2035,106.847 70.1457,108.607 70.1426,110.076 70.1395,111.545 70.1898,112.734 70.1602,113.303 70.1117,114.238 69.7626,115.599 69.5918,116.982 69.421,118.366 69.4217,119.798 70.1621,120.902 70.7884,121.836 71.6344,122.345 72.5508,122.559 73.4671,122.772 74.4525,122.703 75.4082,122.527 76.3639,122.352 77.2927,122.069 78.0957,121.832 78.8987,121.595 79.5875,121.413 79.9863,121.418 81.9203,121.444 83.2538,122.343 87.0039,121.127 L 87.002,121.129 C 89.0153,120.489 91.1058,120.267 92.7695,120.207 93.6014,120.177 94.326,120.189 94.8828,120.207 95.315,120.221 95.7909,120.243 96,120.25 Z" id="rtid-path1429-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccscsccccscccccscccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,119.75 C 125.968,119.784 125.01,119.665 124.115,119.625 123.221,119.585 122.397,119.631 120.719,119.994 120.567,120.027 120.238,120.034 119.848,120.014 119.457,119.993 118.997,119.951 118.535,119.912 118.073,119.873 117.608,119.835 117.201,119.824 116.795,119.813 116.455,119.822 116.188,119.906 115.308,120.185 114.615,120.122 114.02,119.881 113.424,119.639 112.923,119.207 112.48,118.725 112.038,118.243 111.657,117.714 111.287,117.291 110.917,116.868 110.546,116.512 110.061,116.512 108.572,116.412 107.025,116.689 105.883,116.645 105.31,116.622 104.853,116.518 104.551,116.293 104.249,116.068 104.058,115.719 104.035,115.068 V 115.062 115.057 C 103.979,114.379 103.604,113.352 103.314,112.023 103.025,110.695 102.819,109.094 103.078,107.389 103.224,106.427 103.538,105.716 103.854,104.971 104.169,104.225 104.482,103.445 104.584,102.396 104.715,101.052 104.631,100.276 104.514,99.4375 104.397,98.5986 104.25,97.6918 104.25,96 H 103.75 C 103.769,97.4996 103.91,98.7336 104.018,99.5059 104.133,100.337 104.215,101.042 104.088,102.348 103.993,103.322 103.705,104.035 103.393,104.775 103.08,105.516 102.739,106.284 102.582,107.314 102.31,109.105 102.53,110.768 102.826,112.129 103.123,113.49 103.494,114.578 103.537,115.1 V 115.088 C 103.564,115.837 103.821,116.374 104.252,116.695 104.683,117.017 105.243,117.121 105.863,117.145 107.104,117.192 108.637,116.915 110.043,117.012 H 110.053 110.061 C 110.275,117.012 110.565,117.226 110.91,117.621 111.255,118.016 111.644,118.552 112.113,119.062 112.582,119.573 113.136,120.061 113.832,120.344 114.528,120.626 115.363,120.692 116.338,120.383 116.478,120.339 116.801,120.314 117.188,120.324 117.574,120.335 118.032,120.371 118.492,120.41 118.952,120.449 119.415,120.491 119.82,120.512 120.225,120.533 120.564,120.539 120.824,120.482 122.478,120.124 123.227,120.087 124.092,120.125 124.901,120.161 126.204,120.264 128,120.25 Z" id="rtid-path1429-3-6-7-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,64 C 103.752,64.7276 103.773,69.8956 103.102,74.3066 V 74.3086 C 102.846,76.1016 103.075,77.4813 103.379,78.5508 103.682,79.6168 104.043,80.3855 104.088,80.9004 104.108,81.4973 103.751,82.1522 103.176,82.8301 102.6,83.5093 101.823,84.2006 101.09,84.8828 100.356,85.565 99.6657,86.2353 99.252,86.9199 99.0451,87.2622 98.9048,87.613 98.8848,87.9746 98.8647,88.3362 98.9743,88.7028 99.2246,89.0332 99.2306,89.0411 99.2966,89.1646 99.3652,89.332 99.4339,89.4994 99.5177,89.7212 99.6191,89.9766 99.822,90.4872 100.093,91.1361 100.453,91.8008 101.173,93.1301 102.258,94.5413 103.912,94.9805 105.518,95.4067 107.608,94.9132 109.355,94.2754 110.229,93.9565 111.016,93.5986 111.607,93.2852 111.903,93.1284 112.15,92.9833 112.338,92.8574 112.526,92.7315 112.645,92.6603 112.74,92.5 112.839,92.3329 112.866,92.1453 112.881,91.9238 112.896,91.7023 112.89,91.4476 112.877,91.166 112.85,90.6029 112.789,89.937 112.77,89.2852 112.75,88.6333 112.776,87.9953 112.904,87.5137 113.033,87.032 113.237,86.7351 113.59,86.623 113.75,86.5725 114.162,86.6393 114.654,86.8398 115.147,87.0404 115.725,87.3472 116.299,87.6602 116.873,87.9731 117.441,88.294 117.932,88.5273 118.177,88.644 118.403,88.7388 118.607,88.8008 118.811,88.8628 118.992,88.9002 119.182,88.8555 121.333,88.3476 125.412,88.2846 128,88.25 V 87.75 C 125.417,87.7844 121.404,87.8178 119.068,88.3691 119.039,88.376 118.916,88.3722 118.752,88.3223 118.588,88.2723 118.379,88.1849 118.146,88.0742 117.681,87.8528 117.116,87.5357 116.539,87.2207 115.962,86.9057 115.373,86.5926 114.844,86.377 114.314,86.1613 113.849,86.0168 113.439,86.1465 112.886,86.3219 112.574,86.8157 112.422,87.3848 112.27,87.9539 112.25,88.6261 112.27,89.2988 112.289,89.9715 112.351,90.6439 112.377,91.1895 112.39,91.4622 112.395,91.7035 112.383,91.8906 112.37,92.0777 112.331,92.2116 112.311,92.2461 112.332,92.2096 112.226,92.3296 112.059,92.4414 111.892,92.5532 111.658,92.693 111.373,92.8438 110.804,93.1452 110.035,93.4961 109.184,93.8066 107.482,94.4278 105.443,94.8703 104.041,94.498 102.593,94.1138 101.582,92.8363 100.893,91.5625 100.548,90.9256 100.284,90.295 100.084,89.791 99.9839,89.539 99.9006,89.3192 99.8281,89.1426 99.7557,88.9659 99.7079,88.8424 99.623,88.7305 99.4345,88.4816 99.3709,88.2521 99.3848,88.002 99.3986,87.7518 99.5002,87.4747 99.6797,87.1777 100.039,86.5837 100.704,85.9267 101.432,85.25 102.159,84.5733 102.946,83.8744 103.557,83.1543 104.167,82.4342 104.617,81.681 104.588,80.8789 V 80.873 80.8672 C 104.531,80.1822 104.151,79.4391 103.859,78.4141 103.568,77.3895 103.352,76.0967 103.596,74.3809 V 74.3789 C 104.3,69.7492 104.25,64.3795 104.25,64 Z" id="rtid-path1429-3-6-7-5-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,64 C 71.7591,65.5714 71.8302,67.0066 71.8008,67.8496 71.7693,68.7512 71.6353,69.3402 71.207,69.9727 71.1257,70.0927 71.0312,70.1192 70.8047,70.0977 70.5782,70.0761 70.2661,69.979 69.9316,69.8652 69.5972,69.7515 69.2384,69.6232 68.8789,69.5586 68.5194,69.494 68.146,69.4904 67.8164,69.668 67.094,70.0569 66.7262,70.9815 66.4727,71.918 66.2191,72.8545 66.1009,73.8313 66.0215,74.3535 65.4786,77.9211 65.8996,84.6875 66.002,85.9199 66.0163,86.3207 66.1588,86.6625 66.4004,86.9141 66.642,87.1656 66.9689,87.3267 67.3438,87.4297 68.0935,87.6357 69.0544,87.6218 70.0977,87.5332 72.1841,87.3561 74.6131,86.8655 75.9863,86.9648 H 75.9941 76.0039 C 76.5972,86.9648 77.62,87.3999 78.9336,87.707 80.2472,88.0141 81.88,88.1748 83.7852,87.5723 84.5283,87.3372 85.3891,87.4751 86.2734,87.666 87.1578,87.857 88.0565,88.1024 88.9004,87.9785 90.0304,87.8127 90.8129,87.8754 91.8203,87.9824 92.7675,88.083 94.2477,88.2336 96,88.25 V 87.75 C 94.077,87.75 92.8875,87.5921 91.873,87.4844 90.8586,87.3767 90.0098,87.309 88.8281,87.4824 88.1346,87.5842 87.277,87.3716 86.3789,87.1777 85.4808,86.9838 84.5334,86.8095 83.6348,87.0938 81.8313,87.6641 80.3094,87.5158 79.0469,87.2207 77.7869,86.9261 76.8154,86.4686 76.0098,86.4668 74.4825,86.359 72.0921,86.8624 70.0566,87.0352 69.0369,87.1217 68.1115,87.1218 67.4766,86.9473 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 C 66.4017,84.7115 65.9924,77.8679 66.5156,74.4297 66.5976,73.8902 66.7142,72.9383 66.9551,72.0488 67.1959,71.1594 67.5811,70.3614 68.0527,70.1074 68.2373,70.008 68.4868,69.9965 68.7891,70.0508 69.0913,70.1051 69.4342,70.2231 69.7715,70.3379 70.1088,70.4526 70.4383,70.5655 70.7559,70.5957 71.0734,70.6259 71.4237,70.5452 71.6211,70.2539 72.1061,69.5378 72.2658,68.8132 72.2988,67.8672 72.3318,66.9211 72.25,65.7359 72.25,64 Z" id="rtid-path1429-3-6-7-5-3-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,64 C 39.7459,64.9064 39.7094,66.456 39.5938,67.8125 39.4699,69.2642 39.2467,70.7154 38.8984,71.543 38.6239,72.1942 37.7361,73.4248 37.0762,74.6816 36.746,75.3104 36.4705,75.9506 36.3555,76.5664 36.2404,77.1822 36.2928,77.7918 36.6562,78.2793 38.5344,80.7983 38.7552,82.977 38.9316,84.4258 39.0198,85.1502 39.062,85.7146 39.4277,86.0723 39.6106,86.2511 39.8772,86.3347 40.1738,86.3203 40.4705,86.3059 40.8126,86.2101 41.2461,86.0371 41.5488,85.9163 41.7646,85.8883 41.9062,85.9082 42.0479,85.9281 42.1291,85.9825 42.2129,86.0898 42.3805,86.3045 42.4868,86.7729 42.5879,87.3066 42.689,87.8404 42.7964,88.4382 43.0938,88.9434 43.3911,89.4485 43.9112,89.8437 44.7051,89.8984 H 44.7148 44.7227 C 46.2229,89.8984 48.5984,89.0436 52.3027,87.8691 52.7323,87.7329 53.7019,87.8992 54.666,88.1191 55.6302,88.339 56.5837,88.6034 57.2617,88.4766 58.7344,88.2007 59.579,88.1561 60.4805,88.1738 61.3169,88.1902 62.5516,88.259 64,88.25 V 87.75 C 62.3616,87.7738 61.4146,87.692 60.4902,87.6738 59.5659,87.6557 58.6677,87.7038 57.1699,87.9844 56.7295,88.0668 55.7474,87.854 54.7773,87.6328 53.8073,87.4116 52.8441,87.1732 52.1523,87.3926 48.448,88.5671 46.0336,89.3936 44.7324,89.3965 44.0844,89.3488 43.7581,89.0848 43.5254,88.6895 43.2912,88.2917 43.1791,87.7459 43.0781,87.2129 42.9772,86.6799 42.8996,86.16 42.6055,85.7832 42.4584,85.5948 42.2392,85.4513 41.9746,85.4141 41.7101,85.3769 41.4131,85.4316 41.0605,85.5723 40.6542,85.7344 40.3517,85.8104 40.1484,85.8203 39.9452,85.8302 39.8557,85.7915 39.7773,85.7148 39.6206,85.5615 39.5173,85.0851 39.4297,84.3652 39.2544,82.9254 39.007,80.5962 37.0566,77.9805 36.7973,77.6326 36.746,77.1935 36.8457,76.6602 36.9454,76.1268 37.2015,75.5197 37.5195,74.9141 38.1555,73.7029 39.0284,72.5225 39.3594,71.7363 39.7567,70.7923 39.9682,69.3282 40.0938,67.8555 40.2193,66.3827 40.25,64.9102 40.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-93" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,64 C 7.70545,66.0095 7.24505,67.1644 6.68359,68.0684 6.09283,69.0195 5.38169,70.0494 5.04883,72.3906 4.97398,72.9173 5.10015,73.6566 5.16406,74.5156 5.22798,75.3746 5.236,76.3324 4.98047,77.1875 4.63496,78.3436 3.99971,79.4731 3.43945,80.5137 2.87919,81.5542 2.38099,82.4979 2.37305,83.3711 2.36493,84.264 2.02912,85.4163 1.68945,86.3965 1.51962,86.8866 1.35044,87.3353 1.22266,87.6973 1.15877,87.8782 1.1049,88.038 1.06641,88.1738 1.02792,88.3097 0.999524,88.4116 1.00391,88.5352 1.05355,89.9353 2.46874,91.6919 5.05859,93.1504 6.80023,94.1311 9.69217,94.3991 12.375,94.4668 13.7164,94.5006 15.0024,94.4788 16.0547,94.457 17.107,94.4352 17.9362,94.4142 18.3125,94.4414 18.7341,94.4719 19.0702,94.2806 19.3125,94.0117 19.5548,93.7428 19.7452,93.4034 20.002,93.0371 20.5154,92.3046 21.269,91.4492 23.0723,90.8789 23.8476,90.6337 24.2874,89.954 24.6934,89.3672 25.0993,88.7804 25.4601,88.2992 25.9941,88.209 28.5462,87.7778 29.872,88.1744 32,88.25 V 87.75 C 29.7305,87.7028 28.65,87.2523 25.9121,87.7148 25.1363,87.8459 24.6901,88.491 24.2812,89.082 23.8724,89.6731 23.4887,90.2231 22.9219,90.4023 21.0166,91.0049 20.1355,91.9744 19.5918,92.75 19.32,93.1378 19.1255,93.4734 18.9414,93.6777 18.7573,93.8821 18.6242,93.9634 18.3477,93.9434 17.905,93.9113 17.0954,93.9353 16.0449,93.957 14.9945,93.9788 13.7149,94.0003 12.3867,93.9668 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 1.5039,88.5173 1.51374,88.4256 1.54688,88.3086 1.58001,88.1916 1.63102,88.0399 1.69336,87.8633 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-6-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,55.75 C 30.7706,55.75 29.9617,55.8559 29.3789,56.0527 28.7961,56.2496 28.4429,56.5383 28.1738,56.8281 27.6358,57.4078 27.4404,57.9403 25.875,58.2656 25.7525,58.2911 25.5439,58.2338 25.2891,58.0801 25.0342,57.9263 24.7459,57.6927 24.4512,57.457 24.1565,57.2214 23.8551,56.983 23.5527,56.8125 23.2503,56.642 22.9249,56.5246 22.5977,56.6289 21.7224,56.9079 21.3056,57.6704 20.9609,58.3906 20.6163,59.1109 20.318,59.8022 19.7773,60.1387 18.9423,60.6583 17.7235,61.0026 16.668,61.1289 16.1402,61.1921 15.6529,61.2007 15.2812,61.1582 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 H 7.75 C 7.73169,33.7885 7.90046,35.2142 7.98633,36.1387 8.07785,37.124 8.07472,37.9447 7.63281,39.416 7.45659,40.0028 6.88652,40.2715 6.24219,40.584 5.92002,40.7402 5.58725,40.9026 5.30859,41.1406 5.02993,41.3787 4.80864,41.7071 4.75,42.1367 4.60687,43.1855 4.88219,44.4813 5.17188,45.8555 5.46156,47.2297 5.77214,48.6773 5.75,49.9609 5.73269,50.9645 5.38203,51.9064 5.03125,52.668 4.85586,53.0488 4.68217,53.3823 4.54883,53.6641 4.41549,53.9458 4.30592,54.1523 4.32031,54.4043 4.34182,54.7808 4.41652,55.0721 4.57227,55.2969 4.72801,55.5217 4.9589,55.6563 5.20898,55.7344 5.70916,55.8905 6.32343,55.8835 7.125,56.043 8.72815,56.3619 11.0808,57.2922 14.2344,61.2559 14.4468,61.5229 14.7973,61.6074 15.2246,61.6562 15.6519,61.7051 16.1689,61.6917 16.7266,61.625 17.8418,61.4916 19.1097,61.1433 20.043,60.5625 20.764,60.1138 21.0761,59.3076 21.4121,58.6055 21.7481,57.9034 22.082,57.3184 22.75,57.1055 22.8689,57.0676 23.0594,57.1075 23.3086,57.248 23.5578,57.3886 23.8454,57.6131 24.1387,57.8477 24.432,58.0822 24.7308,58.3266 25.0312,58.5078 25.3317,58.6891 25.6455,58.8247 25.9766,58.7559 27.6514,58.4078 28.0654,57.6804 28.541,57.168 28.7788,56.9118 29.0341,56.696 29.5391,56.5254 29.9927,56.3721 31.0025,56.2706 32,56.25 Z" id="rtid-path1429-2-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,32 C 39.6686,35.1631 38.9577,37.2367 38.1484,38.8906 37.909,39.3799 37.3209,40.609 36.7617,41.9277 36.2025,43.2465 35.6712,44.6351 35.543,45.5234 35.276,47.3721 36.0796,49.1405 37.0059,50.5684 37.469,51.2823 37.9662,51.9146 38.3848,52.4297 38.8034,52.9448 39.1485,53.3543 39.2832,53.5723 40.0848,54.8688 40.1484,56.417 40.3711,57.7207 40.4824,58.3725 40.6325,58.9694 40.9805,59.4375 41.3285,59.9056 41.8835,60.2121 42.6758,60.2656 H 42.6836 42.6914 C 43.0831,60.2656 43.7644,60.1809 44.6562,60.0371 45.5481,59.8933 46.6393,59.6886 47.8027,59.4473 50.1291,58.9648 52.739,58.3338 54.6055,57.7285 58.5655,56.4668 60.1726,56.3195 64,56.25 V 55.75 C 59.9084,55.8178 58.545,55.9489 54.4551,57.252 H 54.4531 C 52.6198,57.8466 50.0159,58.477 47.7012,58.957 46.5438,59.1971 45.4581,59.4008 44.5762,59.543 43.7007,59.6841 43.0216,59.7625 42.7051,59.7637 42.0213,59.7163 41.6451,59.4941 41.3809,59.1387 41.1159,58.7822 40.9701,58.26 40.8633,57.6348 40.6497,56.3843 40.5946,54.7442 39.707,53.3086 39.5255,53.0149 39.1861,52.6234 38.7715,52.1133 38.3569,51.6031 37.8732,50.9867 37.4258,50.2969 36.5309,48.9172 35.7972,47.2573 36.0371,45.5957 36.147,44.8348 36.669,43.4288 37.2227,42.123 37.7764,40.8173 38.3617,39.5914 38.5977,39.1094 39.4461,37.3754 40.2065,35.4289 40.25,32 Z" id="rtid-path1429-3-9-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccsccscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,32 C 71.7468,34.801 71.7028,34.5586 71.0742,38.9707 71.0004,39.4885 70.5731,40.0927 70.0957,40.8477 69.6183,41.6026 69.1051,42.5187 68.9395,43.7148 68.6823,45.5713 68.1173,46.3844 67.5879,47.002 67.3232,47.3107 67.0593,47.5702 66.8457,47.8887 66.6321,48.2072 66.4803,48.5885 66.4609,49.0859 66.4405,49.6085 66.3282,50.6359 66.2715,51.6387 66.2431,52.1401 66.2285,52.638 66.248,53.0742 66.2676,53.5104 66.3113,53.8806 66.4434,54.166 66.6508,54.6143 66.6585,55.7657 66.5664,56.8984 66.4743,58.0312 66.3133,59.154 66.3066,59.7559 66.2957,60.7236 66.731,61.3839 67.4023,61.7246 68.0736,62.0653 68.9454,62.1299 69.8945,62.0957 71.7929,62.0273 74.0385,61.5416 75.4414,61.6367 75.8853,61.6668 76.5119,61.4948 77.334,61.2246 78.1561,60.9544 79.149,60.575 80.2129,60.1562 82.3393,59.3193 84.7462,58.3233 86.5645,57.7285 L 86.5684,57.7266 C 90.5648,56.4658 92.2928,56.2606 96,56.25 V 55.75 C 92.0379,55.75 90.5427,55.9492 86.4141,57.252 H 86.4121 C 84.5606,57.8574 82.1507,58.8564 80.0293,59.6914 78.9686,60.1089 77.9816,60.4858 77.1777,60.75 76.3739,61.0142 75.7291,61.1559 75.4746,61.1387 73.9274,61.0337 71.7019,61.53 69.877,61.5957 68.9645,61.6286 68.1619,61.5478 67.6289,61.2773 67.0959,61.0069 66.7973,60.5912 66.8066,59.7617 66.8124,59.2481 66.9727,58.0917 67.0664,56.9395 67.1601,55.7872 67.2183,54.6463 66.8984,53.9551 66.8243,53.7948 66.7644,53.4587 66.7461,53.0508 66.7278,52.6428 66.7417,52.1601 66.7695,51.668 66.8252,50.6837 66.9388,49.6728 66.9609,49.1055 66.9769,48.6946 67.0864,48.4295 67.2617,48.168 67.4371,47.9065 67.6888,47.6528 67.9688,47.3262 68.5287,46.673 69.167,45.7215 69.4355,43.7832 69.5867,42.6912 70.0534,41.8504 70.5195,41.1133 70.9857,40.3761 71.4671,39.7519 71.5684,39.041 72.2188,34.4749 72.25,35.1813 72.25,32 Z" id="rtid-path1429-3-6-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,32 C 103.74,33.3903 103.469,34.2117 103.047,34.707 102.593,35.2391 101.91,35.7792 101.295,37.209 100.432,39.2126 99.6066,41.4686 99.3281,43.4219 99.2628,43.881 99.4581,44.2959 99.7383,44.6621 100.018,45.0283 100.392,45.369 100.76,45.7227 101.495,46.43 102.178,47.1635 102.15,48.1074 102.109,49.5179 101.655,50.8878 101.213,51.9941 100.992,52.5473 100.775,53.0338 100.613,53.4336 100.451,53.8334 100.327,54.1182 100.352,54.4102 100.418,55.2031 100.922,56.0056 101.654,56.7871 102.386,57.5687 103.357,58.3291 104.412,59.002 106.522,60.3476 108.934,61.3496 110.5,61.3496 110.612,61.3496 110.738,61.2714 110.791,61.1875 110.844,61.1036 110.857,61.0255 110.865,60.9473 110.882,60.7908 110.866,60.6162 110.838,60.4043 110.781,59.9805 110.666,59.4225 110.559,58.8164 110.344,57.6042 110.202,56.1945 110.533,55.5215 111.109,54.3531 112.298,53.6223 113.654,53.0977 115.01,52.573 116.51,52.2631 117.66,51.8984 118.056,51.7728 118.269,51.8459 118.479,52.0371 118.688,52.2283 118.872,52.5782 119.031,52.9883 119.191,53.3984 119.33,53.862 119.5,54.2812 119.67,54.7005 119.866,55.0859 120.203,55.3184 120.484,55.5123 120.929,55.666 121.51,55.8164 122.09,55.9668 122.798,56.1018 123.555,56.2031 124.969,56.3924 126.76,56.4374 128,56.25 V 55.75 C 126.826,55.9723 125.1,55.9051 123.621,55.707 122.882,55.608 122.19,55.4759 121.635,55.332 121.079,55.1882 120.65,55.0211 120.486,54.9082 120.301,54.7801 120.12,54.4808 119.963,54.0938 119.806,53.7067 119.666,53.2427 119.496,52.8066 119.327,52.3706 119.131,51.9568 118.814,51.668 118.497,51.3791 118.034,51.2556 117.51,51.4219 116.403,51.7729 114.882,52.0855 113.473,52.6309 112.063,53.1762 110.743,53.9633 110.084,55.3008 109.622,56.2384 109.849,57.6729 110.066,58.9023 110.175,59.5171 110.29,60.0795 110.342,60.4707 110.363,60.6303 110.365,60.7331 110.363,60.8164 109.003,60.7685 106.684,59.8594 104.682,58.582 103.654,57.9264 102.711,57.1836 102.02,56.4453 101.328,55.707 100.9,54.9721 100.85,54.3691 100.845,54.3144 100.92,54.0071 101.076,53.6211 101.233,53.2351 101.452,52.744 101.678,52.1797 102.129,51.0511 102.606,49.6282 102.65,48.1211 102.685,46.933 101.851,46.0809 101.105,45.3633 100.733,45.0045 100.376,44.6722 100.137,44.3594 99.8974,44.0465 99.7841,43.7742 99.8242,43.4922 100.091,41.6229 100.899,39.3924 101.754,37.4082 102.335,36.0575 102.923,35.6207 103.426,35.0312 103.928,34.4418 104.285,33.7087 104.25,32 Z" id="rtid-path1429-3-6-7-2-8" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,23.75 C 126.348,23.7003 125.42,24.2716 124.797,24.7695 124.485,25.0185 124.246,25.2388 124.047,25.3477 123.848,25.4565 123.718,25.4831 123.469,25.373 122.047,24.7447 120.614,24.5417 118.424,25.252 H 118.422 C 118.213,25.3198 117.766,25.1758 117.295,24.9863 117.059,24.8916 116.818,24.7948 116.576,24.7383 116.335,24.6817 116.081,24.6603 115.844,24.7695 114.43,25.4215 113.331,26.4908 112.449,27.3691 112.008,27.8083 111.619,28.2002 111.287,28.4668 110.955,28.7334 110.689,28.8523 110.518,28.8398 110.251,28.8205 110.045,28.6675 109.822,28.3672 109.6,28.0669 109.39,27.6336 109.156,27.1523 108.689,26.1898 108.126,25.0261 107.018,24.3418 105.884,23.642 104.317,23.4655 103.031,23.2656 102.389,23.1657 101.814,23.0602 101.424,22.9082 101.229,22.8322 101.083,22.7449 100.992,22.6562 100.901,22.5676 100.859,22.4863 100.85,22.3691 100.85,22.3778 100.864,22.2809 100.934,22.1484 101.003,22.016 101.115,21.8422 101.254,21.6426 101.531,21.2433 101.915,20.7346 102.307,20.1504 103.09,18.982 103.912,17.5116 103.959,15.9453 103.994,14.784 103.213,13.6831 102.498,12.6855 102.14,12.1868 101.794,11.7134 101.557,11.291 101.32,10.8686 101.207,10.5066 101.248,10.2383 101.304,9.86904 101.446,9.63991 101.645,9.45703 101.843,9.27415 102.108,9.14217 102.4,9.02148 102.693,8.9008 103.01,8.7935 103.301,8.63477 103.591,8.47603 103.864,8.25378 104.014,7.91406 104.467,6.88656 104.505,5.59067 104.449,4.20898 104.393,2.8273 104.235,1.35423 104.25,0 H 103.75 C 103.754,1.32161 103.897,2.95144 103.949,4.22852 104.004,5.58647 103.95,6.82163 103.557,7.71289 103.463,7.92412 103.298,8.06567 103.061,8.19531 102.823,8.32496 102.522,8.43035 102.211,8.55859 101.9,8.68684 101.576,8.84012 101.305,9.08984 101.033,9.33957 100.823,9.69195 100.752,10.1621 100.683,10.616 100.861,11.0709 101.121,11.5352 101.381,11.9994 101.737,12.4811 102.092,12.9766 102.802,13.9675 103.488,15.0133 103.461,15.9297 103.419,17.3278 102.657,18.731 101.893,19.8711 101.51,20.4412 101.13,20.946 100.844,21.3594 100.7,21.5661 100.58,21.7497 100.492,21.916 100.405,22.0823 100.336,22.2252 100.352,22.4102 100.371,22.6467 100.481,22.8569 100.643,23.0137 100.804,23.1704 101.008,23.282 101.242,23.373 101.71,23.5552 102.304,23.6588 102.953,23.7598 104.251,23.9617 105.768,24.1591 106.754,24.7676 107.709,25.3572 108.239,26.4106 108.705,27.3711 108.938,27.8514 109.155,28.3053 109.422,28.666 109.689,29.0267 110.034,29.3073 110.482,29.3398 110.876,29.3683 111.232,29.1541 111.602,28.8574 111.971,28.5608 112.362,28.1597 112.801,27.7227 113.678,26.8485 114.739,25.8305 116.053,25.2246 116.137,25.1857 116.274,25.1808 116.461,25.2246 116.648,25.2685 116.873,25.3551 117.107,25.4492 117.575,25.6375 118.082,25.8894 118.578,25.7285 120.683,25.0464 121.918,25.2339 123.268,25.8301 123.638,25.9935 123.997,25.9443 124.285,25.7871 124.573,25.6299 124.816,25.3946 125.109,25.1602 125.657,24.7228 126.664,24.2729 128,24.25 Z" id="rtid-path1429-3-6-7-5-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,0 C 71.7641,2.21123 71.2319,3.78788 70.5781,5.08594 69.8959,6.44042 69.0863,7.81724 68.752,10.1641 68.6831,10.647 68.8889,11.1403 69.1875,11.6562 69.4861,12.1722 69.8941,12.7175 70.3008,13.2773 71.1141,14.3971 71.8995,15.5826 71.873,16.5469 71.837,17.8658 71.0606,18.9483 70.2305,19.877 69.8154,20.3413 69.3897,20.7633 69.0469,21.1602 68.7041,21.5571 68.4305,21.9265 68.3633,22.3398 68.2656,22.9396 68.0528,24.3567 68.0762,25.7891 68.0995,27.2214 68.3283,28.7022 69.293,29.3906 70.5075,30.2574 72.3847,30.1724 74.1621,29.9336 75.0508,29.8142 75.9174,29.6495 76.6602,29.5234 77.4029,29.3974 78.0317,29.3138 78.3926,29.3398 78.6378,29.3575 78.867,29.2639 79.0703,29.1191 79.2736,28.9744 79.4617,28.7765 79.6543,28.541 80.0395,28.07 80.4422,27.4435 80.9141,26.7852 81.8579,25.4685 83.068,24.0375 84.8398,23.4824 85.685,23.2177 86.1963,22.6416 86.6543,22.1504 87.1123,21.6592 87.5049,21.2596 88.1504,21.1602 88.7064,21.0745 89.1586,21.1996 89.6309,21.4531 90.1031,21.7066 90.5845,22.0946 91.1406,22.5059 92.2047,23.2926 93.8564,24.1769 96,24.25 V 23.75 C 93.8108,23.75 92.5275,22.9095 91.4375,22.1035 90.8925,21.7005 90.4002,21.2978 89.8672,21.0117 89.3341,20.7256 88.7476,20.5622 88.0742,20.666 87.2563,20.7921 86.7519,21.3142 86.2891,21.8105 85.8262,22.3069 85.3949,22.7835 84.6914,23.0039 82.7485,23.6125 81.4689,25.1534 80.5078,26.4941 80.0273,27.1645 79.6226,27.7904 79.2676,28.2246 79.0901,28.4417 78.925,28.6086 78.7812,28.7109 78.6375,28.8133 78.5266,28.847 78.4277,28.8398 77.9591,28.806 77.3263,28.902 76.5762,29.0293 75.826,29.1566 74.9668,29.3205 74.0957,29.4375 72.3535,29.6715 70.5752,29.6932 69.582,28.9844 68.8814,28.4843 68.5986,27.1566 68.5762,25.7793 68.5537,24.402 68.7614,23.0092 68.8574,22.4199 68.8947,22.1903 69.1024,21.8627 69.4258,21.4883 69.7492,21.1138 70.1741,20.6891 70.6016,20.2109 71.4564,19.2547 72.3318,18.0668 72.373,16.5605 72.4067,15.3325 71.523,14.1085 70.7051,12.9824 70.2961,12.4194 69.897,11.883 69.6211,11.4062 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z" id="rtid-path1429-3-6-7-5-3-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,0 C 39.4141,0.76718 39.1383,1.75827 38.8848,2.49023 38.5895,3.3428 38.1112,4.22909 36.8477,5.30273 36.7578,5.37914 36.7252,5.45046 36.6777,5.54492 36.6303,5.63939 36.5805,5.75349 36.5293,5.88867 36.4268,6.15903 36.3126,6.51245 36.1895,6.92578 35.9432,7.75245 35.6641,8.81832 35.3984,9.89648 35.1328,10.9747 34.8809,12.0658 34.6914,12.9434 34.5019,13.8209 34.3754,14.4513 34.3555,14.7285 34.2158,16.6655 34.7076,18.3697 35.2344,19.7031 35.4978,20.3699 35.7709,20.9453 35.9785,21.4082 36.1861,21.8711 36.3195,22.237 36.3301,22.3965 36.349,22.6804 36.2704,23.181 36.1582,23.7617 36.046,24.3424 35.9061,25.0127 35.8262,25.6875 35.7462,26.3623 35.7234,27.0431 35.8594,27.6602 35.9954,28.2772 36.3042,28.8381 36.8672,29.1992 38.0372,29.9495 40.0342,29.9094 41.9492,29.752 42.9067,29.6732 43.842,29.5572 44.627,29.4668 45.4119,29.3764 46.0596,29.3165 46.3828,29.3398 46.8274,29.3719 48.1812,29.6981 49.6855,29.8652 51.1899,30.0323 52.8845,30.0518 54.1797,29.4141 54.4869,29.2629 54.6744,28.9596 54.8457,28.6113 55.017,28.263 55.1648,27.8535 55.3145,27.4551 55.4641,27.0566 55.6163,26.6694 55.7793,26.377 55.9423,26.0845 56.1147,25.9076 56.252,25.8633 58.3051,25.1992 59.2573,24.7928 60.1719,24.5586 61.0267,24.3397 62.2522,24.2595 64,24.25 V 23.75 C 61.978,23.75 61.016,23.8265 60.0488,24.0742 59.0816,24.3219 58.1369,24.7271 56.0977,25.3867 55.7553,25.4974 55.5311,25.793 55.3418,26.1328 55.1524,26.4726 54.9966,26.8776 54.8457,27.2793 54.6948,27.681 54.5492,28.0801 54.3965,28.3906 54.2438,28.7011 54.0748,28.9078 53.959,28.9648 52.827,29.5222 51.2053,29.5299 49.7402,29.3672 48.2752,29.2044 47.0089,28.8825 46.418,28.8398 45.9964,28.8094 45.3592,28.8779 44.5703,28.9688 43.7814,29.0596 42.8517,29.1763 41.9082,29.2539 40.0211,29.4091 38.0662,29.3734 37.1367,28.7773 36.6984,28.4962 36.4641,28.0812 36.3477,27.5527 36.2312,27.0243 36.2458,26.3915 36.3223,25.7461 36.3987,25.1006 36.5352,24.4435 36.6484,23.8574 36.7616,23.2714 36.8568,22.7642 36.8301,22.3633 36.8082,22.035 36.6447,21.6739 36.4336,21.2031 36.2224,20.7324 35.9553,20.1679 35.6992,19.5195 35.187,18.2228 34.7234,16.5978 34.8555,14.7656 34.8667,14.6089 34.9934,13.9207 35.1816,13.0488 35.3699,12.177 35.6203,11.0889 35.8848,10.0156 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z" id="rtid-path1429-3-6-7-5-3-5-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,23.75 C 30.6701,23.75 29.1294,24.4713 28.1543,25.4707 27.7598,25.8751 27.5394,26.3293 27.3145,26.6738 27.0895,27.0183 26.8918,27.2414 26.5117,27.3223 26.3663,27.3532 26.1181,27.2712 25.8125,27.0664 25.5069,26.8617 25.1582,26.5562 24.793,26.252 24.4277,25.9477 24.045,25.6428 23.6465,25.4336 23.2479,25.2244 22.8131,25.107 22.3848,25.2422 21.6284,25.4808 21.0906,26.0212 20.6094,26.5488 20.1281,27.0765 19.6948,27.5929 19.1953,27.8613 17.3396,28.8586 15.2632,28.901 14.418,28.8398 14.4093,28.8392 14.3947,28.8402 14.3496,28.7852 14.3045,28.7301 14.2468,28.6265 14.1934,28.4922 14.0864,28.2236 13.9879,27.8348 13.8789,27.4277 13.7699,27.0206 13.6502,26.5938 13.4805,26.2246 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 3.74718,11.0845 3.78774,10.9973 3.83594,10.9434 3.88414,10.8894 3.93995,10.8565 4.05078,10.8418 4.04227,10.8429 4.09634,10.8456 4.1875,10.9062 4.27866,10.9669 4.39723,11.0728 4.52734,11.209 4.78756,11.4813 5.09489,11.8737 5.4082,12.2871 5.72151,12.7005 6.04195,13.1351 6.34375,13.502 6.64555,13.8688 6.91366,14.1681 7.20117,14.3262 7.5333,14.5088 7.90835,14.4765 8.23047,14.3398 8.55258,14.2032 8.84357,13.9692 9.10156,13.7109 9.35956,13.4527 9.58243,13.1686 9.74805,12.916 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 3.33591,10.7535 3.26658,10.9291 3.23047,11.1152 3.15824,11.4876 3.20691,11.9189 3.28711,12.3652 3.3673,12.8115 3.4852,13.2721 3.58008,13.6738 3.67495,14.0756 3.74158,14.4286 3.73633,14.5938 3.68747,16.1298 3.82602,17.897 3.98438,19.373 4.14273,20.8491 4.32251,22.0557 4.34961,22.3809 4.39603,22.938 4.73393,24.4105 5.24609,25.8574 5.50218,26.5809 5.80023,27.2897 6.13477,27.8535 6.4693,28.4173 6.8298,28.8608 7.31055,28.9883 7.48505,29.0346 7.67602,29.0107 7.81836,28.9199 7.9607,28.8292 8.05127,28.6951 8.12109,28.5488 8.26073,28.2563 8.32927,27.8864 8.40625,27.4844 8.5602,26.6803 8.74426,25.7645 9.18359,25.3379 9.30271,25.2222 9.51437,25.1521 9.80078,25.1406 10.0872,25.1291 10.4354,25.1776 10.7871,25.2578 11.4905,25.4182 12.2029,25.7018 12.5391,25.8398 12.7104,25.9102 12.8802,26.1178 13.0254,26.4336 13.1706,26.7494 13.2889,27.1546 13.3965,27.5566 13.5041,27.9587 13.6006,28.3566 13.7285,28.6777 13.7925,28.8383 13.8642,28.981 13.9629,29.1016 14.0616,29.2221 14.2067,29.327 14.3828,29.3398 15.3002,29.4063 17.446,29.3698 19.4316,28.3027 20.0544,27.968 20.5091,27.3994 20.9785,26.8848 21.4479,26.3701 21.9224,25.9121 22.5352,25.7188 22.7905,25.6382 23.0784,25.7007 23.4141,25.877 23.7498,26.0532 24.1137,26.3376 24.4727,26.6367 24.8316,26.9358 25.1872,27.2474 25.5352,27.4805 25.8831,27.7136 26.2384,27.8906 26.6152,27.8105 27.1573,27.6953 27.483,27.3292 27.7324,26.9473 27.9818,26.5654 28.1845,26.1558 28.5117,25.8203 29.3257,24.986 30.9022,24.3358 32,24.25 Z" id="rtid-path1429-3-6-7-5-3-5-6-3-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="3.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1860"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1894">
+ <path
+ d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z"
+ id="rtid-path1862"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z"
+ id="rtid-path1864"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z"
+ id="rtid-path1866"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z"
+ id="rtid-path1868"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z"
+ id="rtid-path1870"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z"
+ id="rtid-path1872"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z"
+ id="rtid-path1874"
+ style="fill:#ffffff;stroke-width:0.5215"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z"
+ id="rtid-path1876"
+ style="fill:#ffffff;stroke-width:0.5214"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z"
+ id="rtid-path1878"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z"
+ id="rtid-path1880"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccsssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z"
+ id="rtid-path1882"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z"
+ id="rtid-path1884"
+ style="fill:#ffffff;stroke-width:0.5232"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z"
+ id="rtid-path1886"
+ style="fill:#ffffff;stroke-width:0.5231"
+ sodipodi:nodetypes="cccsssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z"
+ id="rtid-path1888"
+ style="fill:#ffffff;stroke-width:0.5212"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z"
+ id="rtid-path1890"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z"
+ id="rtid-path1892"
+ style="fill:#ffffff;stroke-width:0.5213"
+ sodipodi:nodetypes="cccssssssssssssssccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-85.804139"
+ inkscape:cy="229.977"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.975807">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1860)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <path
+ d="M 7.75,96 C 7.74413,96.0179 7.6706,96.2775 7.66406,96.2969 7.60119,96.4836 7.50682,96.7367 7.39258,97.0449 7.1641,97.6613 6.85018,98.4935 6.51562,99.457 5.84652,101.384 5.09228,103.836 4.75977,106.164 V 106.166 C 4.27027,109.713 4.25383,117.154 4.32422,118.414 4.36917,119.211 4.86061,120.005 5.58203,120.771 6.30345,121.538 7.26793,122.279 8.31836,122.938 10.4192,124.254 12.8433,125.243 14.4141,125.35 H 14.4219 14.4297 C 15.2725,125.35 16.3526,124.72 17.7422,123.971 19.1313,123.221 20.7935,122.329 22.6152,121.738 26.5001,120.5 31.1618,120.265 32,120.25 V 119.75 C 31.3263,119.75 26.5914,119.947 22.4648,121.262 H 22.4629 C 20.5853,121.871 18.8943,122.779 17.5039,123.529 16.116,124.278 14.9938,124.846 14.4355,124.848 13.0448,124.75 10.6273,123.794 8.58398,122.514 7.56017,121.872 6.62615,121.149 5.94727,120.428 5.26838,119.707 4.85826,118.99 4.82422,118.387 4.76057,117.247 4.77936,109.687 5.25586,106.234 5.58032,103.963 6.32414,101.534 6.98828,99.6211 7.32035,98.6647 7.63203,97.8373 7.86133,97.2188 7.97598,96.9095 8.07015,96.6528 8.13672,96.4551 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z"
+ id="rtid-path1429-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,96 C 39.7589,96.1209 39.7815,96.4553 39.7949,96.6895 39.8157,97.0537 39.8346,97.5392 39.8301,98.0879 39.8211,99.1853 39.7142,100.535 39.3457,101.643 39.0687,102.475 38.5295,103.063 37.9902,103.717 37.451,104.37 36.915,105.096 36.7617,106.164 36.6377,107.029 37.1772,107.985 37.6875,109.01 38.1978,110.034 38.7,111.113 38.6699,112.068 38.5768,115.018 38.3864,116.694 38.4316,117.465 38.4718,118.154 38.4286,119.184 38.6504,120.219 38.8722,121.253 39.378,122.311 40.5059,123.008 41.5905,123.678 42.8156,123.789 43.9336,123.754 45.0516,123.718 46.0824,123.542 46.752,123.588 47.2156,123.619 48.0051,123.932 48.9785,124.15 49.952,124.369 51.1332,124.484 52.4453,124.088 52.6834,124.016 53.0799,123.819 53.623,123.545 54.1662,123.271 54.8285,122.924 55.4941,122.576 56.1597,122.228 56.8282,121.878 57.3789,121.6 57.9297,121.322 58.382,121.112 58.5391,121.061 60.5622,120.404 61.7683,120.205 62.5352,120.166 63.1712,120.134 63.6896,120.222 64,120.25 V 119.75 C 63.751,119.75 63.3364,119.624 62.5098,119.666 61.6832,119.708 60.435,119.919 58.3848,120.584 58.1343,120.665 57.7103,120.872 57.1543,121.152 56.5983,121.433 55.9293,121.785 55.2637,122.133 54.598,122.481 53.9344,122.826 53.3965,123.098 52.8586,123.369 52.4188,123.574 52.3008,123.609 51.0931,123.974 50.0162,123.87 49.0898,123.662 48.1635,123.454 47.4105,123.13 46.7852,123.088 46.0016,123.035 44.991,123.22 43.918,123.254 42.8449,123.288 41.7295,123.177 40.7676,122.582 39.7732,121.967 39.3432,121.067 39.1387,120.113 38.9342,119.16 38.9745,118.171 38.9316,117.436 38.8943,116.8 39.0763,115.048 39.1699,112.084 39.2057,110.949 38.6476,109.817 38.1348,108.787 37.6219,107.758 37.1741,106.82 37.2578,106.236 37.3927,105.297 37.8477,104.674 38.375,104.035 38.9023,103.396 39.5044,102.75 39.8203,101.801 40.2175,100.606 40.3209,99.2174 40.3301,98.0918 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z"
+ id="rtid-path1429-3-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,119.75 C 95.8696,119.75 95.4649,119.725 94.9004,119.707 94.3359,119.689 93.5984,119.677 92.752,119.707 91.059,119.768 88.9282,119.992 86.8516,120.652 H 86.8496 C 83.1999,121.836 82.072,120.946 79.9922,120.918 79.4506,120.911 78.7617,121.114 77.9551,121.352 77.1484,121.589 76.236,121.869 75.3184,122.037 74.4007,122.205 73.4814,122.26 72.666,122.07 71.8506,121.88 71.1366,121.458 70.5781,120.625 69.9512,119.69 69.9225,118.382 70.0879,117.043 70.2533,115.704 70.6068,114.358 70.6602,113.328 70.693,112.697 70.6395,111.535 70.6426,110.078 70.6456,108.621 70.7028,106.882 70.9512,105.15 71.2795,102.862 71.2675,102.437 71.9258,100.531 72.2674,99.5424 72.3393,99.0056 72.3242,98.4277 72.3091,97.8498 72.219,97.2389 72.25,96 H 71.75 C 71.7428,97.0234 71.8117,97.9639 71.8242,98.4414 71.8381,98.9747 71.7841,99.409 71.4531,100.367 70.7864,102.297 70.7839,102.802 70.457,105.08 70.2035,106.847 70.1457,108.607 70.1426,110.076 70.1395,111.545 70.1898,112.734 70.1602,113.303 70.1117,114.238 69.7626,115.599 69.5918,116.982 69.421,118.366 69.4217,119.798 70.1621,120.902 70.7884,121.836 71.6344,122.345 72.5508,122.559 73.4671,122.772 74.4525,122.703 75.4082,122.527 76.3639,122.352 77.2927,122.069 78.0957,121.832 78.8987,121.595 79.5875,121.413 79.9863,121.418 81.9203,121.444 83.2538,122.343 87.0039,121.127 L 87.002,121.129 C 89.0153,120.489 91.1058,120.267 92.7695,120.207 93.6014,120.177 94.326,120.189 94.8828,120.207 95.315,120.221 95.7909,120.243 96,120.25 Z"
+ id="rtid-path1429-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccscsccccscccccscccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,119.75 C 125.968,119.784 125.01,119.665 124.115,119.625 123.221,119.585 122.397,119.631 120.719,119.994 120.567,120.027 120.238,120.034 119.848,120.014 119.457,119.993 118.997,119.951 118.535,119.912 118.073,119.873 117.608,119.835 117.201,119.824 116.795,119.813 116.455,119.822 116.188,119.906 115.308,120.185 114.615,120.122 114.02,119.881 113.424,119.639 112.923,119.207 112.48,118.725 112.038,118.243 111.657,117.714 111.287,117.291 110.917,116.868 110.546,116.512 110.061,116.512 108.572,116.412 107.025,116.689 105.883,116.645 105.31,116.622 104.853,116.518 104.551,116.293 104.249,116.068 104.058,115.719 104.035,115.068 V 115.062 115.057 C 103.979,114.379 103.604,113.352 103.314,112.023 103.025,110.695 102.819,109.094 103.078,107.389 103.224,106.427 103.538,105.716 103.854,104.971 104.169,104.225 104.482,103.445 104.584,102.396 104.715,101.052 104.631,100.276 104.514,99.4375 104.397,98.5986 104.25,97.6918 104.25,96 H 103.75 C 103.769,97.4996 103.91,98.7336 104.018,99.5059 104.133,100.337 104.215,101.042 104.088,102.348 103.993,103.322 103.705,104.035 103.393,104.775 103.08,105.516 102.739,106.284 102.582,107.314 102.31,109.105 102.53,110.768 102.826,112.129 103.123,113.49 103.494,114.578 103.537,115.1 V 115.088 C 103.564,115.837 103.821,116.374 104.252,116.695 104.683,117.017 105.243,117.121 105.863,117.145 107.104,117.192 108.637,116.915 110.043,117.012 H 110.053 110.061 C 110.275,117.012 110.565,117.226 110.91,117.621 111.255,118.016 111.644,118.552 112.113,119.062 112.582,119.573 113.136,120.061 113.832,120.344 114.528,120.626 115.363,120.692 116.338,120.383 116.478,120.339 116.801,120.314 117.188,120.324 117.574,120.335 118.032,120.371 118.492,120.41 118.952,120.449 119.415,120.491 119.82,120.512 120.225,120.533 120.564,120.539 120.824,120.482 122.478,120.124 123.227,120.087 124.092,120.125 124.901,120.161 126.204,120.264 128,120.25 Z"
+ id="rtid-path1429-3-6-7-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,64 C 103.752,64.7276 103.773,69.8956 103.102,74.3066 V 74.3086 C 102.846,76.1016 103.075,77.4813 103.379,78.5508 103.682,79.6168 104.043,80.3855 104.088,80.9004 104.108,81.4973 103.751,82.1522 103.176,82.8301 102.6,83.5093 101.823,84.2006 101.09,84.8828 100.356,85.565 99.6657,86.2353 99.252,86.9199 99.0451,87.2622 98.9048,87.613 98.8848,87.9746 98.8647,88.3362 98.9743,88.7028 99.2246,89.0332 99.2306,89.0411 99.2966,89.1646 99.3652,89.332 99.4339,89.4994 99.5177,89.7212 99.6191,89.9766 99.822,90.4872 100.093,91.1361 100.453,91.8008 101.173,93.1301 102.258,94.5413 103.912,94.9805 105.518,95.4067 107.608,94.9132 109.355,94.2754 110.229,93.9565 111.016,93.5986 111.607,93.2852 111.903,93.1284 112.15,92.9833 112.338,92.8574 112.526,92.7315 112.645,92.6603 112.74,92.5 112.839,92.3329 112.866,92.1453 112.881,91.9238 112.896,91.7023 112.89,91.4476 112.877,91.166 112.85,90.6029 112.789,89.937 112.77,89.2852 112.75,88.6333 112.776,87.9953 112.904,87.5137 113.033,87.032 113.237,86.7351 113.59,86.623 113.75,86.5725 114.162,86.6393 114.654,86.8398 115.147,87.0404 115.725,87.3472 116.299,87.6602 116.873,87.9731 117.441,88.294 117.932,88.5273 118.177,88.644 118.403,88.7388 118.607,88.8008 118.811,88.8628 118.992,88.9002 119.182,88.8555 121.333,88.3476 125.412,88.2846 128,88.25 V 87.75 C 125.417,87.7844 121.404,87.8178 119.068,88.3691 119.039,88.376 118.916,88.3722 118.752,88.3223 118.588,88.2723 118.379,88.1849 118.146,88.0742 117.681,87.8528 117.116,87.5357 116.539,87.2207 115.962,86.9057 115.373,86.5926 114.844,86.377 114.314,86.1613 113.849,86.0168 113.439,86.1465 112.886,86.3219 112.574,86.8157 112.422,87.3848 112.27,87.9539 112.25,88.6261 112.27,89.2988 112.289,89.9715 112.351,90.6439 112.377,91.1895 112.39,91.4622 112.395,91.7035 112.383,91.8906 112.37,92.0777 112.331,92.2116 112.311,92.2461 112.332,92.2096 112.226,92.3296 112.059,92.4414 111.892,92.5532 111.658,92.693 111.373,92.8438 110.804,93.1452 110.035,93.4961 109.184,93.8066 107.482,94.4278 105.443,94.8703 104.041,94.498 102.593,94.1138 101.582,92.8363 100.893,91.5625 100.548,90.9256 100.284,90.295 100.084,89.791 99.9839,89.539 99.9006,89.3192 99.8281,89.1426 99.7557,88.9659 99.7079,88.8424 99.623,88.7305 99.4345,88.4816 99.3709,88.2521 99.3848,88.002 99.3986,87.7518 99.5002,87.4747 99.6797,87.1777 100.039,86.5837 100.704,85.9267 101.432,85.25 102.159,84.5733 102.946,83.8744 103.557,83.1543 104.167,82.4342 104.617,81.681 104.588,80.8789 V 80.873 80.8672 C 104.531,80.1822 104.151,79.4391 103.859,78.4141 103.568,77.3895 103.352,76.0967 103.596,74.3809 V 74.3789 C 104.3,69.7492 104.25,64.3795 104.25,64 Z"
+ id="rtid-path1429-3-6-7-5-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,64 C 71.7591,65.5714 71.8302,67.0066 71.8008,67.8496 71.7693,68.7512 71.6353,69.3402 71.207,69.9727 71.1257,70.0927 71.0312,70.1192 70.8047,70.0977 70.5782,70.0761 70.2661,69.979 69.9316,69.8652 69.5972,69.7515 69.2384,69.6232 68.8789,69.5586 68.5194,69.494 68.146,69.4904 67.8164,69.668 67.094,70.0569 66.7262,70.9815 66.4727,71.918 66.2191,72.8545 66.1009,73.8313 66.0215,74.3535 65.4786,77.9211 65.8996,84.6875 66.002,85.9199 66.0163,86.3207 66.1588,86.6625 66.4004,86.9141 66.642,87.1656 66.9689,87.3267 67.3438,87.4297 68.0935,87.6357 69.0544,87.6218 70.0977,87.5332 72.1841,87.3561 74.6131,86.8655 75.9863,86.9648 H 75.9941 76.0039 C 76.5972,86.9648 77.62,87.3999 78.9336,87.707 80.2472,88.0141 81.88,88.1748 83.7852,87.5723 84.5283,87.3372 85.3891,87.4751 86.2734,87.666 87.1578,87.857 88.0565,88.1024 88.9004,87.9785 90.0304,87.8127 90.8129,87.8754 91.8203,87.9824 92.7675,88.083 94.2477,88.2336 96,88.25 V 87.75 C 94.077,87.75 92.8875,87.5921 91.873,87.4844 90.8586,87.3767 90.0098,87.309 88.8281,87.4824 88.1346,87.5842 87.277,87.3716 86.3789,87.1777 85.4808,86.9838 84.5334,86.8095 83.6348,87.0938 81.8313,87.6641 80.3094,87.5158 79.0469,87.2207 77.7869,86.9261 76.8154,86.4686 76.0098,86.4668 74.4825,86.359 72.0921,86.8624 70.0566,87.0352 69.0369,87.1217 68.1115,87.1218 67.4766,86.9473 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 C 66.4017,84.7115 65.9924,77.8679 66.5156,74.4297 66.5976,73.8902 66.7142,72.9383 66.9551,72.0488 67.1959,71.1594 67.5811,70.3614 68.0527,70.1074 68.2373,70.008 68.4868,69.9965 68.7891,70.0508 69.0913,70.1051 69.4342,70.2231 69.7715,70.3379 70.1088,70.4526 70.4383,70.5655 70.7559,70.5957 71.0734,70.6259 71.4237,70.5452 71.6211,70.2539 72.1061,69.5378 72.2658,68.8132 72.2988,67.8672 72.3318,66.9211 72.25,65.7359 72.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,64 C 39.7459,64.9064 39.7094,66.456 39.5938,67.8125 39.4699,69.2642 39.2467,70.7154 38.8984,71.543 38.6239,72.1942 37.7361,73.4248 37.0762,74.6816 36.746,75.3104 36.4705,75.9506 36.3555,76.5664 36.2404,77.1822 36.2928,77.7918 36.6562,78.2793 38.5344,80.7983 38.7552,82.977 38.9316,84.4258 39.0198,85.1502 39.062,85.7146 39.4277,86.0723 39.6106,86.2511 39.8772,86.3347 40.1738,86.3203 40.4705,86.3059 40.8126,86.2101 41.2461,86.0371 41.5488,85.9163 41.7646,85.8883 41.9062,85.9082 42.0479,85.9281 42.1291,85.9825 42.2129,86.0898 42.3805,86.3045 42.4868,86.7729 42.5879,87.3066 42.689,87.8404 42.7964,88.4382 43.0938,88.9434 43.3911,89.4485 43.9112,89.8437 44.7051,89.8984 H 44.7148 44.7227 C 46.2229,89.8984 48.5984,89.0436 52.3027,87.8691 52.7323,87.7329 53.7019,87.8992 54.666,88.1191 55.6302,88.339 56.5837,88.6034 57.2617,88.4766 58.7344,88.2007 59.579,88.1561 60.4805,88.1738 61.3169,88.1902 62.5516,88.259 64,88.25 V 87.75 C 62.3616,87.7738 61.4146,87.692 60.4902,87.6738 59.5659,87.6557 58.6677,87.7038 57.1699,87.9844 56.7295,88.0668 55.7474,87.854 54.7773,87.6328 53.8073,87.4116 52.8441,87.1732 52.1523,87.3926 48.448,88.5671 46.0336,89.3936 44.7324,89.3965 44.0844,89.3488 43.7581,89.0848 43.5254,88.6895 43.2912,88.2917 43.1791,87.7459 43.0781,87.2129 42.9772,86.6799 42.8996,86.16 42.6055,85.7832 42.4584,85.5948 42.2392,85.4513 41.9746,85.4141 41.7101,85.3769 41.4131,85.4316 41.0605,85.5723 40.6542,85.7344 40.3517,85.8104 40.1484,85.8203 39.9452,85.8302 39.8557,85.7915 39.7773,85.7148 39.6206,85.5615 39.5173,85.0851 39.4297,84.3652 39.2544,82.9254 39.007,80.5962 37.0566,77.9805 36.7973,77.6326 36.746,77.1935 36.8457,76.6602 36.9454,76.1268 37.2015,75.5197 37.5195,74.9141 38.1555,73.7029 39.0284,72.5225 39.3594,71.7363 39.7567,70.7923 39.9682,69.3282 40.0938,67.8555 40.2193,66.3827 40.25,64.9102 40.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-93"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,64 C 7.70545,66.0095 7.24505,67.1644 6.68359,68.0684 6.09283,69.0195 5.38169,70.0494 5.04883,72.3906 4.97398,72.9173 5.10015,73.6566 5.16406,74.5156 5.22798,75.3746 5.236,76.3324 4.98047,77.1875 4.63496,78.3436 3.99971,79.4731 3.43945,80.5137 2.87919,81.5542 2.38099,82.4979 2.37305,83.3711 2.36493,84.264 2.02912,85.4163 1.68945,86.3965 1.51962,86.8866 1.35044,87.3353 1.22266,87.6973 1.15877,87.8782 1.1049,88.038 1.06641,88.1738 1.02792,88.3097 0.999524,88.4116 1.00391,88.5352 1.05355,89.9353 2.46874,91.6919 5.05859,93.1504 6.80023,94.1311 9.69217,94.3991 12.375,94.4668 13.7164,94.5006 15.0024,94.4788 16.0547,94.457 17.107,94.4352 17.9362,94.4142 18.3125,94.4414 18.7341,94.4719 19.0702,94.2806 19.3125,94.0117 19.5548,93.7428 19.7452,93.4034 20.002,93.0371 20.5154,92.3046 21.269,91.4492 23.0723,90.8789 23.8476,90.6337 24.2874,89.954 24.6934,89.3672 25.0993,88.7804 25.4601,88.2992 25.9941,88.209 28.5462,87.7778 29.872,88.1744 32,88.25 V 87.75 C 29.7305,87.7028 28.65,87.2523 25.9121,87.7148 25.1363,87.8459 24.6901,88.491 24.2812,89.082 23.8724,89.6731 23.4887,90.2231 22.9219,90.4023 21.0166,91.0049 20.1355,91.9744 19.5918,92.75 19.32,93.1378 19.1255,93.4734 18.9414,93.6777 18.7573,93.8821 18.6242,93.9634 18.3477,93.9434 17.905,93.9113 17.0954,93.9353 16.0449,93.957 14.9945,93.9788 13.7149,94.0003 12.3867,93.9668 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 1.5039,88.5173 1.51374,88.4256 1.54688,88.3086 1.58001,88.1916 1.63102,88.0399 1.69336,87.8633 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,55.75 C 30.7706,55.75 29.9617,55.8559 29.3789,56.0527 28.7961,56.2496 28.4429,56.5383 28.1738,56.8281 27.6358,57.4078 27.4404,57.9403 25.875,58.2656 25.7525,58.2911 25.5439,58.2338 25.2891,58.0801 25.0342,57.9263 24.7459,57.6927 24.4512,57.457 24.1565,57.2214 23.8551,56.983 23.5527,56.8125 23.2503,56.642 22.9249,56.5246 22.5977,56.6289 21.7224,56.9079 21.3056,57.6704 20.9609,58.3906 20.6163,59.1109 20.318,59.8022 19.7773,60.1387 18.9423,60.6583 17.7235,61.0026 16.668,61.1289 16.1402,61.1921 15.6529,61.2007 15.2812,61.1582 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 H 7.75 C 7.73169,33.7885 7.90046,35.2142 7.98633,36.1387 8.07785,37.124 8.07472,37.9447 7.63281,39.416 7.45659,40.0028 6.88652,40.2715 6.24219,40.584 5.92002,40.7402 5.58725,40.9026 5.30859,41.1406 5.02993,41.3787 4.80864,41.7071 4.75,42.1367 4.60687,43.1855 4.88219,44.4813 5.17188,45.8555 5.46156,47.2297 5.77214,48.6773 5.75,49.9609 5.73269,50.9645 5.38203,51.9064 5.03125,52.668 4.85586,53.0488 4.68217,53.3823 4.54883,53.6641 4.41549,53.9458 4.30592,54.1523 4.32031,54.4043 4.34182,54.7808 4.41652,55.0721 4.57227,55.2969 4.72801,55.5217 4.9589,55.6563 5.20898,55.7344 5.70916,55.8905 6.32343,55.8835 7.125,56.043 8.72815,56.3619 11.0808,57.2922 14.2344,61.2559 14.4468,61.5229 14.7973,61.6074 15.2246,61.6562 15.6519,61.7051 16.1689,61.6917 16.7266,61.625 17.8418,61.4916 19.1097,61.1433 20.043,60.5625 20.764,60.1138 21.0761,59.3076 21.4121,58.6055 21.7481,57.9034 22.082,57.3184 22.75,57.1055 22.8689,57.0676 23.0594,57.1075 23.3086,57.248 23.5578,57.3886 23.8454,57.6131 24.1387,57.8477 24.432,58.0822 24.7308,58.3266 25.0312,58.5078 25.3317,58.6891 25.6455,58.8247 25.9766,58.7559 27.6514,58.4078 28.0654,57.6804 28.541,57.168 28.7788,56.9118 29.0341,56.696 29.5391,56.5254 29.9927,56.3721 31.0025,56.2706 32,56.25 Z"
+ id="rtid-path1429-2-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,32 C 39.6686,35.1631 38.9577,37.2367 38.1484,38.8906 37.909,39.3799 37.3209,40.609 36.7617,41.9277 36.2025,43.2465 35.6712,44.6351 35.543,45.5234 35.276,47.3721 36.0796,49.1405 37.0059,50.5684 37.469,51.2823 37.9662,51.9146 38.3848,52.4297 38.8034,52.9448 39.1485,53.3543 39.2832,53.5723 40.0848,54.8688 40.1484,56.417 40.3711,57.7207 40.4824,58.3725 40.6325,58.9694 40.9805,59.4375 41.3285,59.9056 41.8835,60.2121 42.6758,60.2656 H 42.6836 42.6914 C 43.0831,60.2656 43.7644,60.1809 44.6562,60.0371 45.5481,59.8933 46.6393,59.6886 47.8027,59.4473 50.1291,58.9648 52.739,58.3338 54.6055,57.7285 58.5655,56.4668 60.1726,56.3195 64,56.25 V 55.75 C 59.9084,55.8178 58.545,55.9489 54.4551,57.252 H 54.4531 C 52.6198,57.8466 50.0159,58.477 47.7012,58.957 46.5438,59.1971 45.4581,59.4008 44.5762,59.543 43.7007,59.6841 43.0216,59.7625 42.7051,59.7637 42.0213,59.7163 41.6451,59.4941 41.3809,59.1387 41.1159,58.7822 40.9701,58.26 40.8633,57.6348 40.6497,56.3843 40.5946,54.7442 39.707,53.3086 39.5255,53.0149 39.1861,52.6234 38.7715,52.1133 38.3569,51.6031 37.8732,50.9867 37.4258,50.2969 36.5309,48.9172 35.7972,47.2573 36.0371,45.5957 36.147,44.8348 36.669,43.4288 37.2227,42.123 37.7764,40.8173 38.3617,39.5914 38.5977,39.1094 39.4461,37.3754 40.2065,35.4289 40.25,32 Z"
+ id="rtid-path1429-3-9-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccsccscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,32 C 71.7468,34.801 71.7028,34.5586 71.0742,38.9707 71.0004,39.4885 70.5731,40.0927 70.0957,40.8477 69.6183,41.6026 69.1051,42.5187 68.9395,43.7148 68.6823,45.5713 68.1173,46.3844 67.5879,47.002 67.3232,47.3107 67.0593,47.5702 66.8457,47.8887 66.6321,48.2072 66.4803,48.5885 66.4609,49.0859 66.4405,49.6085 66.3282,50.6359 66.2715,51.6387 66.2431,52.1401 66.2285,52.638 66.248,53.0742 66.2676,53.5104 66.3113,53.8806 66.4434,54.166 66.6508,54.6143 66.6585,55.7657 66.5664,56.8984 66.4743,58.0312 66.3133,59.154 66.3066,59.7559 66.2957,60.7236 66.731,61.3839 67.4023,61.7246 68.0736,62.0653 68.9454,62.1299 69.8945,62.0957 71.7929,62.0273 74.0385,61.5416 75.4414,61.6367 75.8853,61.6668 76.5119,61.4948 77.334,61.2246 78.1561,60.9544 79.149,60.575 80.2129,60.1562 82.3393,59.3193 84.7462,58.3233 86.5645,57.7285 L 86.5684,57.7266 C 90.5648,56.4658 92.2928,56.2606 96,56.25 V 55.75 C 92.0379,55.75 90.5427,55.9492 86.4141,57.252 H 86.4121 C 84.5606,57.8574 82.1507,58.8564 80.0293,59.6914 78.9686,60.1089 77.9816,60.4858 77.1777,60.75 76.3739,61.0142 75.7291,61.1559 75.4746,61.1387 73.9274,61.0337 71.7019,61.53 69.877,61.5957 68.9645,61.6286 68.1619,61.5478 67.6289,61.2773 67.0959,61.0069 66.7973,60.5912 66.8066,59.7617 66.8124,59.2481 66.9727,58.0917 67.0664,56.9395 67.1601,55.7872 67.2183,54.6463 66.8984,53.9551 66.8243,53.7948 66.7644,53.4587 66.7461,53.0508 66.7278,52.6428 66.7417,52.1601 66.7695,51.668 66.8252,50.6837 66.9388,49.6728 66.9609,49.1055 66.9769,48.6946 67.0864,48.4295 67.2617,48.168 67.4371,47.9065 67.6888,47.6528 67.9688,47.3262 68.5287,46.673 69.167,45.7215 69.4355,43.7832 69.5867,42.6912 70.0534,41.8504 70.5195,41.1133 70.9857,40.3761 71.4671,39.7519 71.5684,39.041 72.2188,34.4749 72.25,35.1813 72.25,32 Z"
+ id="rtid-path1429-3-6-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,32 C 103.74,33.3903 103.469,34.2117 103.047,34.707 102.593,35.2391 101.91,35.7792 101.295,37.209 100.432,39.2126 99.6066,41.4686 99.3281,43.4219 99.2628,43.881 99.4581,44.2959 99.7383,44.6621 100.018,45.0283 100.392,45.369 100.76,45.7227 101.495,46.43 102.178,47.1635 102.15,48.1074 102.109,49.5179 101.655,50.8878 101.213,51.9941 100.992,52.5473 100.775,53.0338 100.613,53.4336 100.451,53.8334 100.327,54.1182 100.352,54.4102 100.418,55.2031 100.922,56.0056 101.654,56.7871 102.386,57.5687 103.357,58.3291 104.412,59.002 106.522,60.3476 108.934,61.3496 110.5,61.3496 110.612,61.3496 110.738,61.2714 110.791,61.1875 110.844,61.1036 110.857,61.0255 110.865,60.9473 110.882,60.7908 110.866,60.6162 110.838,60.4043 110.781,59.9805 110.666,59.4225 110.559,58.8164 110.344,57.6042 110.202,56.1945 110.533,55.5215 111.109,54.3531 112.298,53.6223 113.654,53.0977 115.01,52.573 116.51,52.2631 117.66,51.8984 118.056,51.7728 118.269,51.8459 118.479,52.0371 118.688,52.2283 118.872,52.5782 119.031,52.9883 119.191,53.3984 119.33,53.862 119.5,54.2812 119.67,54.7005 119.866,55.0859 120.203,55.3184 120.484,55.5123 120.929,55.666 121.51,55.8164 122.09,55.9668 122.798,56.1018 123.555,56.2031 124.969,56.3924 126.76,56.4374 128,56.25 V 55.75 C 126.826,55.9723 125.1,55.9051 123.621,55.707 122.882,55.608 122.19,55.4759 121.635,55.332 121.079,55.1882 120.65,55.0211 120.486,54.9082 120.301,54.7801 120.12,54.4808 119.963,54.0938 119.806,53.7067 119.666,53.2427 119.496,52.8066 119.327,52.3706 119.131,51.9568 118.814,51.668 118.497,51.3791 118.034,51.2556 117.51,51.4219 116.403,51.7729 114.882,52.0855 113.473,52.6309 112.063,53.1762 110.743,53.9633 110.084,55.3008 109.622,56.2384 109.849,57.6729 110.066,58.9023 110.175,59.5171 110.29,60.0795 110.342,60.4707 110.363,60.6303 110.365,60.7331 110.363,60.8164 109.003,60.7685 106.684,59.8594 104.682,58.582 103.654,57.9264 102.711,57.1836 102.02,56.4453 101.328,55.707 100.9,54.9721 100.85,54.3691 100.845,54.3144 100.92,54.0071 101.076,53.6211 101.233,53.2351 101.452,52.744 101.678,52.1797 102.129,51.0511 102.606,49.6282 102.65,48.1211 102.685,46.933 101.851,46.0809 101.105,45.3633 100.733,45.0045 100.376,44.6722 100.137,44.3594 99.8974,44.0465 99.7841,43.7742 99.8242,43.4922 100.091,41.6229 100.899,39.3924 101.754,37.4082 102.335,36.0575 102.923,35.6207 103.426,35.0312 103.928,34.4418 104.285,33.7087 104.25,32 Z"
+ id="rtid-path1429-3-6-7-2-8"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,23.75 C 126.348,23.7003 125.42,24.2716 124.797,24.7695 124.485,25.0185 124.246,25.2388 124.047,25.3477 123.848,25.4565 123.718,25.4831 123.469,25.373 122.047,24.7447 120.614,24.5417 118.424,25.252 H 118.422 C 118.213,25.3198 117.766,25.1758 117.295,24.9863 117.059,24.8916 116.818,24.7948 116.576,24.7383 116.335,24.6817 116.081,24.6603 115.844,24.7695 114.43,25.4215 113.331,26.4908 112.449,27.3691 112.008,27.8083 111.619,28.2002 111.287,28.4668 110.955,28.7334 110.689,28.8523 110.518,28.8398 110.251,28.8205 110.045,28.6675 109.822,28.3672 109.6,28.0669 109.39,27.6336 109.156,27.1523 108.689,26.1898 108.126,25.0261 107.018,24.3418 105.884,23.642 104.317,23.4655 103.031,23.2656 102.389,23.1657 101.814,23.0602 101.424,22.9082 101.229,22.8322 101.083,22.7449 100.992,22.6562 100.901,22.5676 100.859,22.4863 100.85,22.3691 100.85,22.3778 100.864,22.2809 100.934,22.1484 101.003,22.016 101.115,21.8422 101.254,21.6426 101.531,21.2433 101.915,20.7346 102.307,20.1504 103.09,18.982 103.912,17.5116 103.959,15.9453 103.994,14.784 103.213,13.6831 102.498,12.6855 102.14,12.1868 101.794,11.7134 101.557,11.291 101.32,10.8686 101.207,10.5066 101.248,10.2383 101.304,9.86904 101.446,9.63991 101.645,9.45703 101.843,9.27415 102.108,9.14217 102.4,9.02148 102.693,8.9008 103.01,8.7935 103.301,8.63477 103.591,8.47603 103.864,8.25378 104.014,7.91406 104.467,6.88656 104.505,5.59067 104.449,4.20898 104.393,2.8273 104.235,1.35423 104.25,0 H 103.75 C 103.754,1.32161 103.897,2.95144 103.949,4.22852 104.004,5.58647 103.95,6.82163 103.557,7.71289 103.463,7.92412 103.298,8.06567 103.061,8.19531 102.823,8.32496 102.522,8.43035 102.211,8.55859 101.9,8.68684 101.576,8.84012 101.305,9.08984 101.033,9.33957 100.823,9.69195 100.752,10.1621 100.683,10.616 100.861,11.0709 101.121,11.5352 101.381,11.9994 101.737,12.4811 102.092,12.9766 102.802,13.9675 103.488,15.0133 103.461,15.9297 103.419,17.3278 102.657,18.731 101.893,19.8711 101.51,20.4412 101.13,20.946 100.844,21.3594 100.7,21.5661 100.58,21.7497 100.492,21.916 100.405,22.0823 100.336,22.2252 100.352,22.4102 100.371,22.6467 100.481,22.8569 100.643,23.0137 100.804,23.1704 101.008,23.282 101.242,23.373 101.71,23.5552 102.304,23.6588 102.953,23.7598 104.251,23.9617 105.768,24.1591 106.754,24.7676 107.709,25.3572 108.239,26.4106 108.705,27.3711 108.938,27.8514 109.155,28.3053 109.422,28.666 109.689,29.0267 110.034,29.3073 110.482,29.3398 110.876,29.3683 111.232,29.1541 111.602,28.8574 111.971,28.5608 112.362,28.1597 112.801,27.7227 113.678,26.8485 114.739,25.8305 116.053,25.2246 116.137,25.1857 116.274,25.1808 116.461,25.2246 116.648,25.2685 116.873,25.3551 117.107,25.4492 117.575,25.6375 118.082,25.8894 118.578,25.7285 120.683,25.0464 121.918,25.2339 123.268,25.8301 123.638,25.9935 123.997,25.9443 124.285,25.7871 124.573,25.6299 124.816,25.3946 125.109,25.1602 125.657,24.7228 126.664,24.2729 128,24.25 Z"
+ id="rtid-path1429-3-6-7-5-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,0 C 71.7641,2.21123 71.2319,3.78788 70.5781,5.08594 69.8959,6.44042 69.0863,7.81724 68.752,10.1641 68.6831,10.647 68.8889,11.1403 69.1875,11.6562 69.4861,12.1722 69.8941,12.7175 70.3008,13.2773 71.1141,14.3971 71.8995,15.5826 71.873,16.5469 71.837,17.8658 71.0606,18.9483 70.2305,19.877 69.8154,20.3413 69.3897,20.7633 69.0469,21.1602 68.7041,21.5571 68.4305,21.9265 68.3633,22.3398 68.2656,22.9396 68.0528,24.3567 68.0762,25.7891 68.0995,27.2214 68.3283,28.7022 69.293,29.3906 70.5075,30.2574 72.3847,30.1724 74.1621,29.9336 75.0508,29.8142 75.9174,29.6495 76.6602,29.5234 77.4029,29.3974 78.0317,29.3138 78.3926,29.3398 78.6378,29.3575 78.867,29.2639 79.0703,29.1191 79.2736,28.9744 79.4617,28.7765 79.6543,28.541 80.0395,28.07 80.4422,27.4435 80.9141,26.7852 81.8579,25.4685 83.068,24.0375 84.8398,23.4824 85.685,23.2177 86.1963,22.6416 86.6543,22.1504 87.1123,21.6592 87.5049,21.2596 88.1504,21.1602 88.7064,21.0745 89.1586,21.1996 89.6309,21.4531 90.1031,21.7066 90.5845,22.0946 91.1406,22.5059 92.2047,23.2926 93.8564,24.1769 96,24.25 V 23.75 C 93.8108,23.75 92.5275,22.9095 91.4375,22.1035 90.8925,21.7005 90.4002,21.2978 89.8672,21.0117 89.3341,20.7256 88.7476,20.5622 88.0742,20.666 87.2563,20.7921 86.7519,21.3142 86.2891,21.8105 85.8262,22.3069 85.3949,22.7835 84.6914,23.0039 82.7485,23.6125 81.4689,25.1534 80.5078,26.4941 80.0273,27.1645 79.6226,27.7904 79.2676,28.2246 79.0901,28.4417 78.925,28.6086 78.7812,28.7109 78.6375,28.8133 78.5266,28.847 78.4277,28.8398 77.9591,28.806 77.3263,28.902 76.5762,29.0293 75.826,29.1566 74.9668,29.3205 74.0957,29.4375 72.3535,29.6715 70.5752,29.6932 69.582,28.9844 68.8814,28.4843 68.5986,27.1566 68.5762,25.7793 68.5537,24.402 68.7614,23.0092 68.8574,22.4199 68.8947,22.1903 69.1024,21.8627 69.4258,21.4883 69.7492,21.1138 70.1741,20.6891 70.6016,20.2109 71.4564,19.2547 72.3318,18.0668 72.373,16.5605 72.4067,15.3325 71.523,14.1085 70.7051,12.9824 70.2961,12.4194 69.897,11.883 69.6211,11.4062 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z"
+ id="rtid-path1429-3-6-7-5-3-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,0 C 39.4141,0.76718 39.1383,1.75827 38.8848,2.49023 38.5895,3.3428 38.1112,4.22909 36.8477,5.30273 36.7578,5.37914 36.7252,5.45046 36.6777,5.54492 36.6303,5.63939 36.5805,5.75349 36.5293,5.88867 36.4268,6.15903 36.3126,6.51245 36.1895,6.92578 35.9432,7.75245 35.6641,8.81832 35.3984,9.89648 35.1328,10.9747 34.8809,12.0658 34.6914,12.9434 34.5019,13.8209 34.3754,14.4513 34.3555,14.7285 34.2158,16.6655 34.7076,18.3697 35.2344,19.7031 35.4978,20.3699 35.7709,20.9453 35.9785,21.4082 36.1861,21.8711 36.3195,22.237 36.3301,22.3965 36.349,22.6804 36.2704,23.181 36.1582,23.7617 36.046,24.3424 35.9061,25.0127 35.8262,25.6875 35.7462,26.3623 35.7234,27.0431 35.8594,27.6602 35.9954,28.2772 36.3042,28.8381 36.8672,29.1992 38.0372,29.9495 40.0342,29.9094 41.9492,29.752 42.9067,29.6732 43.842,29.5572 44.627,29.4668 45.4119,29.3764 46.0596,29.3165 46.3828,29.3398 46.8274,29.3719 48.1812,29.6981 49.6855,29.8652 51.1899,30.0323 52.8845,30.0518 54.1797,29.4141 54.4869,29.2629 54.6744,28.9596 54.8457,28.6113 55.017,28.263 55.1648,27.8535 55.3145,27.4551 55.4641,27.0566 55.6163,26.6694 55.7793,26.377 55.9423,26.0845 56.1147,25.9076 56.252,25.8633 58.3051,25.1992 59.2573,24.7928 60.1719,24.5586 61.0267,24.3397 62.2522,24.2595 64,24.25 V 23.75 C 61.978,23.75 61.016,23.8265 60.0488,24.0742 59.0816,24.3219 58.1369,24.7271 56.0977,25.3867 55.7553,25.4974 55.5311,25.793 55.3418,26.1328 55.1524,26.4726 54.9966,26.8776 54.8457,27.2793 54.6948,27.681 54.5492,28.0801 54.3965,28.3906 54.2438,28.7011 54.0748,28.9078 53.959,28.9648 52.827,29.5222 51.2053,29.5299 49.7402,29.3672 48.2752,29.2044 47.0089,28.8825 46.418,28.8398 45.9964,28.8094 45.3592,28.8779 44.5703,28.9688 43.7814,29.0596 42.8517,29.1763 41.9082,29.2539 40.0211,29.4091 38.0662,29.3734 37.1367,28.7773 36.6984,28.4962 36.4641,28.0812 36.3477,27.5527 36.2312,27.0243 36.2458,26.3915 36.3223,25.7461 36.3987,25.1006 36.5352,24.4435 36.6484,23.8574 36.7616,23.2714 36.8568,22.7642 36.8301,22.3633 36.8082,22.035 36.6447,21.6739 36.4336,21.2031 36.2224,20.7324 35.9553,20.1679 35.6992,19.5195 35.187,18.2228 34.7234,16.5978 34.8555,14.7656 34.8667,14.6089 34.9934,13.9207 35.1816,13.0488 35.3699,12.177 35.6203,11.0889 35.8848,10.0156 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z"
+ id="rtid-path1429-3-6-7-5-3-5-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,23.75 C 30.6701,23.75 29.1294,24.4713 28.1543,25.4707 27.7598,25.8751 27.5394,26.3293 27.3145,26.6738 27.0895,27.0183 26.8918,27.2414 26.5117,27.3223 26.3663,27.3532 26.1181,27.2712 25.8125,27.0664 25.5069,26.8617 25.1582,26.5562 24.793,26.252 24.4277,25.9477 24.045,25.6428 23.6465,25.4336 23.2479,25.2244 22.8131,25.107 22.3848,25.2422 21.6284,25.4808 21.0906,26.0212 20.6094,26.5488 20.1281,27.0765 19.6948,27.5929 19.1953,27.8613 17.3396,28.8586 15.2632,28.901 14.418,28.8398 14.4093,28.8392 14.3947,28.8402 14.3496,28.7852 14.3045,28.7301 14.2468,28.6265 14.1934,28.4922 14.0864,28.2236 13.9879,27.8348 13.8789,27.4277 13.7699,27.0206 13.6502,26.5938 13.4805,26.2246 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 3.74718,11.0845 3.78774,10.9973 3.83594,10.9434 3.88414,10.8894 3.93995,10.8565 4.05078,10.8418 4.04227,10.8429 4.09634,10.8456 4.1875,10.9062 4.27866,10.9669 4.39723,11.0728 4.52734,11.209 4.78756,11.4813 5.09489,11.8737 5.4082,12.2871 5.72151,12.7005 6.04195,13.1351 6.34375,13.502 6.64555,13.8688 6.91366,14.1681 7.20117,14.3262 7.5333,14.5088 7.90835,14.4765 8.23047,14.3398 8.55258,14.2032 8.84357,13.9692 9.10156,13.7109 9.35956,13.4527 9.58243,13.1686 9.74805,12.916 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 3.33591,10.7535 3.26658,10.9291 3.23047,11.1152 3.15824,11.4876 3.20691,11.9189 3.28711,12.3652 3.3673,12.8115 3.4852,13.2721 3.58008,13.6738 3.67495,14.0756 3.74158,14.4286 3.73633,14.5938 3.68747,16.1298 3.82602,17.897 3.98438,19.373 4.14273,20.8491 4.32251,22.0557 4.34961,22.3809 4.39603,22.938 4.73393,24.4105 5.24609,25.8574 5.50218,26.5809 5.80023,27.2897 6.13477,27.8535 6.4693,28.4173 6.8298,28.8608 7.31055,28.9883 7.48505,29.0346 7.67602,29.0107 7.81836,28.9199 7.9607,28.8292 8.05127,28.6951 8.12109,28.5488 8.26073,28.2563 8.32927,27.8864 8.40625,27.4844 8.5602,26.6803 8.74426,25.7645 9.18359,25.3379 9.30271,25.2222 9.51437,25.1521 9.80078,25.1406 10.0872,25.1291 10.4354,25.1776 10.7871,25.2578 11.4905,25.4182 12.2029,25.7018 12.5391,25.8398 12.7104,25.9102 12.8802,26.1178 13.0254,26.4336 13.1706,26.7494 13.2889,27.1546 13.3965,27.5566 13.5041,27.9587 13.6006,28.3566 13.7285,28.6777 13.7925,28.8383 13.8642,28.981 13.9629,29.1016 14.0616,29.2221 14.2067,29.327 14.3828,29.3398 15.3002,29.4063 17.446,29.3698 19.4316,28.3027 20.0544,27.968 20.5091,27.3994 20.9785,26.8848 21.4479,26.3701 21.9224,25.9121 22.5352,25.7188 22.7905,25.6382 23.0784,25.7007 23.4141,25.877 23.7498,26.0532 24.1137,26.3376 24.4727,26.6367 24.8316,26.9358 25.1872,27.2474 25.5352,27.4805 25.8831,27.7136 26.2384,27.8906 26.6152,27.8105 27.1573,27.6953 27.483,27.3292 27.7324,26.9473 27.9818,26.5654 28.1845,26.1558 28.5117,25.8203 29.3257,24.986 30.9022,24.3358 32,24.25 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-3-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/30.svg b/src/asset/tile/frontier/basic/30.svg
index c13d2b8..de3e31f 100644
--- a/src/asset/tile/frontier/basic/30.svg
+++ b/src/asset/tile/frontier/basic/30.svg
@@ -1,73 +1,313 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Brightborder.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1421" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1455" transform="matrix(0,1,1,0,0,0)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path1423" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path1425" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path1427" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path1429" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path1431" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path1433" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path1435" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path1437" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path1439" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path1441" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path1443" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path1445" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path1447" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path1449" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path1451" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path1453" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="284.817" ns1:cy="162.583" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="1.28">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1421)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="matrix(0,1,1,0,-0.186627,0)">
- <ns0:path d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="30.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1421"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1455"
+ transform="matrix(0,1,1,0,0,0)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path1423"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path1425"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path1427"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path1429"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path1431"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path1433"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path1435"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path1437"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path1439"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path1441"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path1443"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path1445"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path1447"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path1449"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path1451"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path1453"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="147.70762"
+ inkscape:cy="162.583"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.28">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1421)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g1219"
+ transform="matrix(0,1,1,0,-0.186627,0)">
+ <path
+ d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/31.svg b/src/asset/tile/frontier/basic/31.svg
index 3e90501..cb3e860 100644
--- a/src/asset/tile/frontier/basic/31.svg
+++ b/src/asset/tile/frontier/basic/31.svg
@@ -1,92 +1,422 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Brightcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask3071" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g3141" transform="scale(1)">
- <ns0:g id="rtid-g3105" transform="matrix(-1,0,0,1,128,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path3073" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path3075" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path3077" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path3079" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path3081" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path3083" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path3085" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path3087" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path3089" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path3091" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path3093" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path3095" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path3097" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path3099" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path3101" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path3103" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g3139" transform="rotate(-180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path3107" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path3109" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path3111" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path3113" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path3115" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path3117" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path3119" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path3121" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path3123" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path3125" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path3127" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path3129" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path3131" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path3133" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path3135" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path3137" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="450.72911" ns1:cy="16.759405" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="5.52" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="31.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask3071"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g3141"
+ transform="scale(1)">
+ <g
+ id="rtid-g3105"
+ transform="matrix(-1,0,0,1,128,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path3073"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path3075"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path3077"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path3079"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path3081"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path3083"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path3085"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path3087"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path3089"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path3091"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path3093"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path3095"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path3097"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path3099"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path3101"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path3103"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g3139"
+ transform="rotate(-180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path3107"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path3109"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path3111"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path3113"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path3115"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path3117"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path3119"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path3121"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path3123"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path3125"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path3127"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path3129"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path3131"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path3133"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path3135"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path3137"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="418.93563"
+ inkscape:cy="16.759405"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="5.52" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask3071)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046" transform="matrix(-1,0,0,1,128,0)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.83,-0.641 5.83,-4.154 0,0 -0.5,0 -0.5,0 -0.2,2.977 -3.2,4.531 -5.13,3.695 C 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="matrix(1,0,0,-1,0,128)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask3071)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046"
+ transform="matrix(-1,0,0,1,128,0)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.83,-0.641 5.83,-4.154 0,0 -0.5,0 -0.5,0 -0.2,2.977 -3.2,4.531 -5.13,3.695 C 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="matrix(1,0,0,-1,0,128)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/32.svg b/src/asset/tile/frontier/basic/32.svg
index 3584cb3..01336e8 100644
--- a/src/asset/tile/frontier/basic/32.svg
+++ b/src/asset/tile/frontier/basic/32.svg
@@ -1,94 +1,423 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopandbottomborders.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask9685" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g9755">
- <ns0:g id="rtid-g9719" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path9687" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path9689" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path9691" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path9693" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path9695" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path9697" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path9699" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path9701" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path9703" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path9705" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path9707" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path9709" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path9711" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path9713" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path9715" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path9717" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g9753">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path9721" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path9723" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path9725" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path9727" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path9729" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path9731" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path9733" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path9735" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path9737" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path9739" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path9741" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path9743" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path9745" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path9747" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path9749" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path9751" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="284.58" ns1:cy="193.577" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="1.28">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask9685)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="matrix(1,0,0,-1,0,128.187)">
- <ns0:path d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use9647" transform="matrix(1,0,0,-1,0,128.278)" width="100%" x="0" y="0" ns6:href="#rtid-g1219" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="32.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask9685"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g9755">
+ <g
+ id="rtid-g9719"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path9687"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path9689"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path9691"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path9693"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path9695"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path9697"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path9699"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path9701"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path9703"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path9705"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path9707"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path9709"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path9711"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path9713"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path9715"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path9717"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g9753">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path9721"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path9723"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path9725"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path9727"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path9729"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path9731"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path9733"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path9735"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path9737"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path9739"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path9741"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path9743"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path9745"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path9747"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path9749"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path9751"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="147.47062"
+ inkscape:cy="193.577"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.28">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask9685)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g1219"
+ transform="matrix(1,0,0,-1,0,128.187)">
+ <path
+ d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use9647"
+ transform="matrix(1,0,0,-1,0,128.278)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1219" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/33.svg b/src/asset/tile/frontier/basic/33.svg
index 2ab3478..7b9b5e4 100644
--- a/src/asset/tile/frontier/basic/33.svg
+++ b/src/asset/tile/frontier/basic/33.svg
@@ -1,113 +1,525 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopandleftbordersandcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask4296" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g4366">
- <ns0:g id="rtid-g4330" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z" id="rtid-path4298" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z" id="rtid-path4300" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z" id="rtid-path4302" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z" id="rtid-path4304" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z" id="rtid-path4306" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z" id="rtid-path4308" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z" id="rtid-path4310" style="fill:#ffffff;stroke-width:0.5215" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z" id="rtid-path4312" style="fill:#ffffff;stroke-width:0.5214" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z" id="rtid-path4314" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z" id="rtid-path4316" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccsssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z" id="rtid-path4318" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z" id="rtid-path4320" style="fill:#ffffff;stroke-width:0.5232" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z" id="rtid-path4322" style="fill:#ffffff;stroke-width:0.5231" ns2:nodetypes="cccsssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z" id="rtid-path4324" style="fill:#ffffff;stroke-width:0.5212" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z" id="rtid-path4326" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z" id="rtid-path4328" style="fill:#ffffff;stroke-width:0.5213" ns2:nodetypes="cccssssssssssssssccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g4364" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path4332" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path4334" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path4336" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path4338" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path4340" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path4342" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path4344" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path4346" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path4348" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path4350" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path4352" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path4354" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path4356" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path4358" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path4360" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path4362" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="463.59108" ns1:cy="70.572617" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="11.039996">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="33.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask4296"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g4366">
+ <g
+ id="rtid-g4330"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z"
+ id="rtid-path4298"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z"
+ id="rtid-path4300"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z"
+ id="rtid-path4302"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z"
+ id="rtid-path4304"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z"
+ id="rtid-path4306"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z"
+ id="rtid-path4308"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z"
+ id="rtid-path4310"
+ style="fill:#ffffff;stroke-width:0.5215"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z"
+ id="rtid-path4312"
+ style="fill:#ffffff;stroke-width:0.5214"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z"
+ id="rtid-path4314"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z"
+ id="rtid-path4316"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccsssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z"
+ id="rtid-path4318"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z"
+ id="rtid-path4320"
+ style="fill:#ffffff;stroke-width:0.5232"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z"
+ id="rtid-path4322"
+ style="fill:#ffffff;stroke-width:0.5231"
+ sodipodi:nodetypes="cccsssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z"
+ id="rtid-path4324"
+ style="fill:#ffffff;stroke-width:0.5212"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z"
+ id="rtid-path4326"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z"
+ id="rtid-path4328"
+ style="fill:#ffffff;stroke-width:0.5213"
+ sodipodi:nodetypes="cccssssssssssssssccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g4364"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path4332"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path4334"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path4336"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path4338"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path4340"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path4342"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path4344"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path4346"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path4348"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path4350"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path4352"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path4354"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path4356"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path4358"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path4360"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path4362"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="53.624278"
+ inkscape:cy="161.43669"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.3799995">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask4296)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g4258">
- <ns0:g id="rtid-g1931" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 7.75,96 C 7.74413,96.0179 7.6706,96.2775 7.66406,96.2969 7.60119,96.4836 7.50682,96.7367 7.39258,97.0449 7.1641,97.6613 6.85018,98.4935 6.51562,99.457 5.84652,101.384 5.09228,103.836 4.75977,106.164 V 106.166 C 4.27027,109.713 4.25383,117.154 4.32422,118.414 4.36917,119.211 4.86061,120.005 5.58203,120.771 6.30345,121.538 7.26793,122.279 8.31836,122.938 10.4192,124.254 12.8433,125.243 14.4141,125.35 H 14.4219 14.4297 C 15.2725,125.35 16.3526,124.72 17.7422,123.971 19.1313,123.221 20.7935,122.329 22.6152,121.738 26.5001,120.5 31.1618,120.265 32,120.25 V 119.75 C 31.3263,119.75 26.5914,119.947 22.4648,121.262 H 22.4629 C 20.5853,121.871 18.8943,122.779 17.5039,123.529 16.116,124.278 14.9938,124.846 14.4355,124.848 13.0448,124.75 10.6273,123.794 8.58398,122.514 7.56017,121.872 6.62615,121.149 5.94727,120.428 5.26838,119.707 4.85826,118.99 4.82422,118.387 4.76057,117.247 4.77936,109.687 5.25586,106.234 5.58032,103.963 6.32414,101.534 6.98828,99.6211 7.32035,98.6647 7.63203,97.8373 7.86133,97.2188 7.97598,96.9095 8.07015,96.6528 8.13672,96.4551 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z" id="rtid-path1429-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,96 C 39.7589,96.1209 39.7815,96.4553 39.7949,96.6895 39.8157,97.0537 39.8346,97.5392 39.8301,98.0879 39.8211,99.1853 39.7142,100.535 39.3457,101.643 39.0687,102.475 38.5295,103.063 37.9902,103.717 37.451,104.37 36.915,105.096 36.7617,106.164 36.6377,107.029 37.1772,107.985 37.6875,109.01 38.1978,110.034 38.7,111.113 38.6699,112.068 38.5768,115.018 38.3864,116.694 38.4316,117.465 38.4718,118.154 38.4286,119.184 38.6504,120.219 38.8722,121.253 39.378,122.311 40.5059,123.008 41.5905,123.678 42.8156,123.789 43.9336,123.754 45.0516,123.718 46.0824,123.542 46.752,123.588 47.2156,123.619 48.0051,123.932 48.9785,124.15 49.952,124.369 51.1332,124.484 52.4453,124.088 52.6834,124.016 53.0799,123.819 53.623,123.545 54.1662,123.271 54.8285,122.924 55.4941,122.576 56.1597,122.228 56.8282,121.878 57.3789,121.6 57.9297,121.322 58.382,121.112 58.5391,121.061 60.5622,120.404 61.7683,120.205 62.5352,120.166 63.1712,120.134 63.6896,120.222 64,120.25 V 119.75 C 63.751,119.75 63.3364,119.624 62.5098,119.666 61.6832,119.708 60.435,119.919 58.3848,120.584 58.1343,120.665 57.7103,120.872 57.1543,121.152 56.5983,121.433 55.9293,121.785 55.2637,122.133 54.598,122.481 53.9344,122.826 53.3965,123.098 52.8586,123.369 52.4188,123.574 52.3008,123.609 51.0931,123.974 50.0162,123.87 49.0898,123.662 48.1635,123.454 47.4105,123.13 46.7852,123.088 46.0016,123.035 44.991,123.22 43.918,123.254 42.8449,123.288 41.7295,123.177 40.7676,122.582 39.7732,121.967 39.3432,121.067 39.1387,120.113 38.9342,119.16 38.9745,118.171 38.9316,117.436 38.8943,116.8 39.0763,115.048 39.1699,112.084 39.2057,110.949 38.6476,109.817 38.1348,108.787 37.6219,107.758 37.1741,106.82 37.2578,106.236 37.3927,105.297 37.8477,104.674 38.375,104.035 38.9023,103.396 39.5044,102.75 39.8203,101.801 40.2175,100.606 40.3209,99.2174 40.3301,98.0918 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z" id="rtid-path1429-3-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,119.75 C 95.8696,119.75 95.4649,119.725 94.9004,119.707 94.3359,119.689 93.5984,119.677 92.752,119.707 91.059,119.768 88.9282,119.992 86.8516,120.652 H 86.8496 C 83.1999,121.836 82.072,120.946 79.9922,120.918 79.4506,120.911 78.7617,121.114 77.9551,121.352 77.1484,121.589 76.236,121.869 75.3184,122.037 74.4007,122.205 73.4814,122.26 72.666,122.07 71.8506,121.88 71.1366,121.458 70.5781,120.625 69.9512,119.69 69.9225,118.382 70.0879,117.043 70.2533,115.704 70.6068,114.358 70.6602,113.328 70.693,112.697 70.6395,111.535 70.6426,110.078 70.6456,108.621 70.7028,106.882 70.9512,105.15 71.2795,102.862 71.2675,102.437 71.9258,100.531 72.2674,99.5424 72.3393,99.0056 72.3242,98.4277 72.3091,97.8498 72.219,97.2389 72.25,96 H 71.75 C 71.7428,97.0234 71.8117,97.9639 71.8242,98.4414 71.8381,98.9747 71.7841,99.409 71.4531,100.367 70.7864,102.297 70.7839,102.802 70.457,105.08 70.2035,106.847 70.1457,108.607 70.1426,110.076 70.1395,111.545 70.1898,112.734 70.1602,113.303 70.1117,114.238 69.7626,115.599 69.5918,116.982 69.421,118.366 69.4217,119.798 70.1621,120.902 70.7884,121.836 71.6344,122.345 72.5508,122.559 73.4671,122.772 74.4525,122.703 75.4082,122.527 76.3639,122.352 77.2927,122.069 78.0957,121.832 78.8987,121.595 79.5875,121.413 79.9863,121.418 81.9203,121.444 83.2538,122.343 87.0039,121.127 L 87.002,121.129 C 89.0153,120.489 91.1058,120.267 92.7695,120.207 93.6014,120.177 94.326,120.189 94.8828,120.207 95.315,120.221 95.7909,120.243 96,120.25 Z" id="rtid-path1429-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccscsccccscccccscccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,119.75 C 125.968,119.784 125.01,119.665 124.115,119.625 123.221,119.585 122.397,119.631 120.719,119.994 120.567,120.027 120.238,120.034 119.848,120.014 119.457,119.993 118.997,119.951 118.535,119.912 118.073,119.873 117.608,119.835 117.201,119.824 116.795,119.813 116.455,119.822 116.188,119.906 115.308,120.185 114.615,120.122 114.02,119.881 113.424,119.639 112.923,119.207 112.48,118.725 112.038,118.243 111.657,117.714 111.287,117.291 110.917,116.868 110.546,116.512 110.061,116.512 108.572,116.412 107.025,116.689 105.883,116.645 105.31,116.622 104.853,116.518 104.551,116.293 104.249,116.068 104.058,115.719 104.035,115.068 V 115.062 115.057 C 103.979,114.379 103.604,113.352 103.314,112.023 103.025,110.695 102.819,109.094 103.078,107.389 103.224,106.427 103.538,105.716 103.854,104.971 104.169,104.225 104.482,103.445 104.584,102.396 104.715,101.052 104.631,100.276 104.514,99.4375 104.397,98.5986 104.25,97.6918 104.25,96 H 103.75 C 103.769,97.4996 103.91,98.7336 104.018,99.5059 104.133,100.337 104.215,101.042 104.088,102.348 103.993,103.322 103.705,104.035 103.393,104.775 103.08,105.516 102.739,106.284 102.582,107.314 102.31,109.105 102.53,110.768 102.826,112.129 103.123,113.49 103.494,114.578 103.537,115.1 V 115.088 C 103.564,115.837 103.821,116.374 104.252,116.695 104.683,117.017 105.243,117.121 105.863,117.145 107.104,117.192 108.637,116.915 110.043,117.012 H 110.053 110.061 C 110.275,117.012 110.565,117.226 110.91,117.621 111.255,118.016 111.644,118.552 112.113,119.062 112.582,119.573 113.136,120.061 113.832,120.344 114.528,120.626 115.363,120.692 116.338,120.383 116.478,120.339 116.801,120.314 117.188,120.324 117.574,120.335 118.032,120.371 118.492,120.41 118.952,120.449 119.415,120.491 119.82,120.512 120.225,120.533 120.564,120.539 120.824,120.482 122.478,120.124 123.227,120.087 124.092,120.125 124.901,120.161 126.204,120.264 128,120.25 Z" id="rtid-path1429-3-6-7-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,64 C 103.752,64.7276 103.773,69.8956 103.102,74.3066 V 74.3086 C 102.846,76.1016 103.075,77.4813 103.379,78.5508 103.682,79.6168 104.043,80.3855 104.088,80.9004 104.108,81.4973 103.751,82.1522 103.176,82.8301 102.6,83.5093 101.823,84.2006 101.09,84.8828 100.356,85.565 99.6657,86.2353 99.252,86.9199 99.0451,87.2622 98.9048,87.613 98.8848,87.9746 98.8647,88.3362 98.9743,88.7028 99.2246,89.0332 99.2306,89.0411 99.2966,89.1646 99.3652,89.332 99.4339,89.4994 99.5177,89.7212 99.6191,89.9766 99.822,90.4872 100.093,91.1361 100.453,91.8008 101.173,93.1301 102.258,94.5413 103.912,94.9805 105.518,95.4067 107.608,94.9132 109.355,94.2754 110.229,93.9565 111.016,93.5986 111.607,93.2852 111.903,93.1284 112.15,92.9833 112.338,92.8574 112.526,92.7315 112.645,92.6603 112.74,92.5 112.839,92.3329 112.866,92.1453 112.881,91.9238 112.896,91.7023 112.89,91.4476 112.877,91.166 112.85,90.6029 112.789,89.937 112.77,89.2852 112.75,88.6333 112.776,87.9953 112.904,87.5137 113.033,87.032 113.237,86.7351 113.59,86.623 113.75,86.5725 114.162,86.6393 114.654,86.8398 115.147,87.0404 115.725,87.3472 116.299,87.6602 116.873,87.9731 117.441,88.294 117.932,88.5273 118.177,88.644 118.403,88.7388 118.607,88.8008 118.811,88.8628 118.992,88.9002 119.182,88.8555 121.333,88.3476 125.412,88.2846 128,88.25 V 87.75 C 125.417,87.7844 121.404,87.8178 119.068,88.3691 119.039,88.376 118.916,88.3722 118.752,88.3223 118.588,88.2723 118.379,88.1849 118.146,88.0742 117.681,87.8528 117.116,87.5357 116.539,87.2207 115.962,86.9057 115.373,86.5926 114.844,86.377 114.314,86.1613 113.849,86.0168 113.439,86.1465 112.886,86.3219 112.574,86.8157 112.422,87.3848 112.27,87.9539 112.25,88.6261 112.27,89.2988 112.289,89.9715 112.351,90.6439 112.377,91.1895 112.39,91.4622 112.395,91.7035 112.383,91.8906 112.37,92.0777 112.331,92.2116 112.311,92.2461 112.332,92.2096 112.226,92.3296 112.059,92.4414 111.892,92.5532 111.658,92.693 111.373,92.8438 110.804,93.1452 110.035,93.4961 109.184,93.8066 107.482,94.4278 105.443,94.8703 104.041,94.498 102.593,94.1138 101.582,92.8363 100.893,91.5625 100.548,90.9256 100.284,90.295 100.084,89.791 99.9839,89.539 99.9006,89.3192 99.8281,89.1426 99.7557,88.9659 99.7079,88.8424 99.623,88.7305 99.4345,88.4816 99.3709,88.2521 99.3848,88.002 99.3986,87.7518 99.5002,87.4747 99.6797,87.1777 100.039,86.5837 100.704,85.9267 101.432,85.25 102.159,84.5733 102.946,83.8744 103.557,83.1543 104.167,82.4342 104.617,81.681 104.588,80.8789 V 80.873 80.8672 C 104.531,80.1822 104.151,79.4391 103.859,78.4141 103.568,77.3895 103.352,76.0967 103.596,74.3809 V 74.3789 C 104.3,69.7492 104.25,64.3795 104.25,64 Z" id="rtid-path1429-3-6-7-5-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,64 C 71.7591,65.5714 71.8302,67.0066 71.8008,67.8496 71.7693,68.7512 71.6353,69.3402 71.207,69.9727 71.1257,70.0927 71.0312,70.1192 70.8047,70.0977 70.5782,70.0761 70.2661,69.979 69.9316,69.8652 69.5972,69.7515 69.2384,69.6232 68.8789,69.5586 68.5194,69.494 68.146,69.4904 67.8164,69.668 67.094,70.0569 66.7262,70.9815 66.4727,71.918 66.2191,72.8545 66.1009,73.8313 66.0215,74.3535 65.4786,77.9211 65.8996,84.6875 66.002,85.9199 66.0163,86.3207 66.1588,86.6625 66.4004,86.9141 66.642,87.1656 66.9689,87.3267 67.3438,87.4297 68.0935,87.6357 69.0544,87.6218 70.0977,87.5332 72.1841,87.3561 74.6131,86.8655 75.9863,86.9648 H 75.9941 76.0039 C 76.5972,86.9648 77.62,87.3999 78.9336,87.707 80.2472,88.0141 81.88,88.1748 83.7852,87.5723 84.5283,87.3372 85.3891,87.4751 86.2734,87.666 87.1578,87.857 88.0565,88.1024 88.9004,87.9785 90.0304,87.8127 90.8129,87.8754 91.8203,87.9824 92.7675,88.083 94.2477,88.2336 96,88.25 V 87.75 C 94.077,87.75 92.8875,87.5921 91.873,87.4844 90.8586,87.3767 90.0098,87.309 88.8281,87.4824 88.1346,87.5842 87.277,87.3716 86.3789,87.1777 85.4808,86.9838 84.5334,86.8095 83.6348,87.0938 81.8313,87.6641 80.3094,87.5158 79.0469,87.2207 77.7869,86.9261 76.8154,86.4686 76.0098,86.4668 74.4825,86.359 72.0921,86.8624 70.0566,87.0352 69.0369,87.1217 68.1115,87.1218 67.4766,86.9473 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 C 66.4017,84.7115 65.9924,77.8679 66.5156,74.4297 66.5976,73.8902 66.7142,72.9383 66.9551,72.0488 67.1959,71.1594 67.5811,70.3614 68.0527,70.1074 68.2373,70.008 68.4868,69.9965 68.7891,70.0508 69.0913,70.1051 69.4342,70.2231 69.7715,70.3379 70.1088,70.4526 70.4383,70.5655 70.7559,70.5957 71.0734,70.6259 71.4237,70.5452 71.6211,70.2539 72.1061,69.5378 72.2658,68.8132 72.2988,67.8672 72.3318,66.9211 72.25,65.7359 72.25,64 Z" id="rtid-path1429-3-6-7-5-3-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,64 C 39.7459,64.9064 39.7094,66.456 39.5938,67.8125 39.4699,69.2642 39.2467,70.7154 38.8984,71.543 38.6239,72.1942 37.7361,73.4248 37.0762,74.6816 36.746,75.3104 36.4705,75.9506 36.3555,76.5664 36.2404,77.1822 36.2928,77.7918 36.6562,78.2793 38.5344,80.7983 38.7552,82.977 38.9316,84.4258 39.0198,85.1502 39.062,85.7146 39.4277,86.0723 39.6106,86.2511 39.8772,86.3347 40.1738,86.3203 40.4705,86.3059 40.8126,86.2101 41.2461,86.0371 41.5488,85.9163 41.7646,85.8883 41.9062,85.9082 42.0479,85.9281 42.1291,85.9825 42.2129,86.0898 42.3805,86.3045 42.4868,86.7729 42.5879,87.3066 42.689,87.8404 42.7964,88.4382 43.0938,88.9434 43.3911,89.4485 43.9112,89.8437 44.7051,89.8984 H 44.7148 44.7227 C 46.2229,89.8984 48.5984,89.0436 52.3027,87.8691 52.7323,87.7329 53.7019,87.8992 54.666,88.1191 55.6302,88.339 56.5837,88.6034 57.2617,88.4766 58.7344,88.2007 59.579,88.1561 60.4805,88.1738 61.3169,88.1902 62.5516,88.259 64,88.25 V 87.75 C 62.3616,87.7738 61.4146,87.692 60.4902,87.6738 59.5659,87.6557 58.6677,87.7038 57.1699,87.9844 56.7295,88.0668 55.7474,87.854 54.7773,87.6328 53.8073,87.4116 52.8441,87.1732 52.1523,87.3926 48.448,88.5671 46.0336,89.3936 44.7324,89.3965 44.0844,89.3488 43.7581,89.0848 43.5254,88.6895 43.2912,88.2917 43.1791,87.7459 43.0781,87.2129 42.9772,86.6799 42.8996,86.16 42.6055,85.7832 42.4584,85.5948 42.2392,85.4513 41.9746,85.4141 41.7101,85.3769 41.4131,85.4316 41.0605,85.5723 40.6542,85.7344 40.3517,85.8104 40.1484,85.8203 39.9452,85.8302 39.8557,85.7915 39.7773,85.7148 39.6206,85.5615 39.5173,85.0851 39.4297,84.3652 39.2544,82.9254 39.007,80.5962 37.0566,77.9805 36.7973,77.6326 36.746,77.1935 36.8457,76.6602 36.9454,76.1268 37.2015,75.5197 37.5195,74.9141 38.1555,73.7029 39.0284,72.5225 39.3594,71.7363 39.7567,70.7923 39.9682,69.3282 40.0938,67.8555 40.2193,66.3827 40.25,64.9102 40.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-93" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,64 C 7.70545,66.0095 7.24505,67.1644 6.68359,68.0684 6.09283,69.0195 5.38169,70.0494 5.04883,72.3906 4.97398,72.9173 5.10015,73.6566 5.16406,74.5156 5.22798,75.3746 5.236,76.3324 4.98047,77.1875 4.63496,78.3436 3.99971,79.4731 3.43945,80.5137 2.87919,81.5542 2.38099,82.4979 2.37305,83.3711 2.36493,84.264 2.02912,85.4163 1.68945,86.3965 1.51962,86.8866 1.35044,87.3353 1.22266,87.6973 1.15877,87.8782 1.1049,88.038 1.06641,88.1738 1.02792,88.3097 0.999524,88.4116 1.00391,88.5352 1.05355,89.9353 2.46874,91.6919 5.05859,93.1504 6.80023,94.1311 9.69217,94.3991 12.375,94.4668 13.7164,94.5006 15.0024,94.4788 16.0547,94.457 17.107,94.4352 17.9362,94.4142 18.3125,94.4414 18.7341,94.4719 19.0702,94.2806 19.3125,94.0117 19.5548,93.7428 19.7452,93.4034 20.002,93.0371 20.5154,92.3046 21.269,91.4492 23.0723,90.8789 23.8476,90.6337 24.2874,89.954 24.6934,89.3672 25.0993,88.7804 25.4601,88.2992 25.9941,88.209 28.5462,87.7778 29.872,88.1744 32,88.25 V 87.75 C 29.7305,87.7028 28.65,87.2523 25.9121,87.7148 25.1363,87.8459 24.6901,88.491 24.2812,89.082 23.8724,89.6731 23.4887,90.2231 22.9219,90.4023 21.0166,91.0049 20.1355,91.9744 19.5918,92.75 19.32,93.1378 19.1255,93.4734 18.9414,93.6777 18.7573,93.8821 18.6242,93.9634 18.3477,93.9434 17.905,93.9113 17.0954,93.9353 16.0449,93.957 14.9945,93.9788 13.7149,94.0003 12.3867,93.9668 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 1.5039,88.5173 1.51374,88.4256 1.54688,88.3086 1.58001,88.1916 1.63102,88.0399 1.69336,87.8633 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-6-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,55.75 C 30.7706,55.75 29.9617,55.8559 29.3789,56.0527 28.7961,56.2496 28.4429,56.5383 28.1738,56.8281 27.6358,57.4078 27.4404,57.9403 25.875,58.2656 25.7525,58.2911 25.5439,58.2338 25.2891,58.0801 25.0342,57.9263 24.7459,57.6927 24.4512,57.457 24.1565,57.2214 23.8551,56.983 23.5527,56.8125 23.2503,56.642 22.9249,56.5246 22.5977,56.6289 21.7224,56.9079 21.3056,57.6704 20.9609,58.3906 20.6163,59.1109 20.318,59.8022 19.7773,60.1387 18.9423,60.6583 17.7235,61.0026 16.668,61.1289 16.1402,61.1921 15.6529,61.2007 15.2812,61.1582 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 H 7.75 C 7.73169,33.7885 7.90046,35.2142 7.98633,36.1387 8.07785,37.124 8.07472,37.9447 7.63281,39.416 7.45659,40.0028 6.88652,40.2715 6.24219,40.584 5.92002,40.7402 5.58725,40.9026 5.30859,41.1406 5.02993,41.3787 4.80864,41.7071 4.75,42.1367 4.60687,43.1855 4.88219,44.4813 5.17188,45.8555 5.46156,47.2297 5.77214,48.6773 5.75,49.9609 5.73269,50.9645 5.38203,51.9064 5.03125,52.668 4.85586,53.0488 4.68217,53.3823 4.54883,53.6641 4.41549,53.9458 4.30592,54.1523 4.32031,54.4043 4.34182,54.7808 4.41652,55.0721 4.57227,55.2969 4.72801,55.5217 4.9589,55.6563 5.20898,55.7344 5.70916,55.8905 6.32343,55.8835 7.125,56.043 8.72815,56.3619 11.0808,57.2922 14.2344,61.2559 14.4468,61.5229 14.7973,61.6074 15.2246,61.6562 15.6519,61.7051 16.1689,61.6917 16.7266,61.625 17.8418,61.4916 19.1097,61.1433 20.043,60.5625 20.764,60.1138 21.0761,59.3076 21.4121,58.6055 21.7481,57.9034 22.082,57.3184 22.75,57.1055 22.8689,57.0676 23.0594,57.1075 23.3086,57.248 23.5578,57.3886 23.8454,57.6131 24.1387,57.8477 24.432,58.0822 24.7308,58.3266 25.0312,58.5078 25.3317,58.6891 25.6455,58.8247 25.9766,58.7559 27.6514,58.4078 28.0654,57.6804 28.541,57.168 28.7788,56.9118 29.0341,56.696 29.5391,56.5254 29.9927,56.3721 31.0025,56.2706 32,56.25 Z" id="rtid-path1429-2-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,32 C 39.6686,35.1631 38.9577,37.2367 38.1484,38.8906 37.909,39.3799 37.3209,40.609 36.7617,41.9277 36.2025,43.2465 35.6712,44.6351 35.543,45.5234 35.276,47.3721 36.0796,49.1405 37.0059,50.5684 37.469,51.2823 37.9662,51.9146 38.3848,52.4297 38.8034,52.9448 39.1485,53.3543 39.2832,53.5723 40.0848,54.8688 40.1484,56.417 40.3711,57.7207 40.4824,58.3725 40.6325,58.9694 40.9805,59.4375 41.3285,59.9056 41.8835,60.2121 42.6758,60.2656 H 42.6836 42.6914 C 43.0831,60.2656 43.7644,60.1809 44.6562,60.0371 45.5481,59.8933 46.6393,59.6886 47.8027,59.4473 50.1291,58.9648 52.739,58.3338 54.6055,57.7285 58.5655,56.4668 60.1726,56.3195 64,56.25 V 55.75 C 59.9084,55.8178 58.545,55.9489 54.4551,57.252 H 54.4531 C 52.6198,57.8466 50.0159,58.477 47.7012,58.957 46.5438,59.1971 45.4581,59.4008 44.5762,59.543 43.7007,59.6841 43.0216,59.7625 42.7051,59.7637 42.0213,59.7163 41.6451,59.4941 41.3809,59.1387 41.1159,58.7822 40.9701,58.26 40.8633,57.6348 40.6497,56.3843 40.5946,54.7442 39.707,53.3086 39.5255,53.0149 39.1861,52.6234 38.7715,52.1133 38.3569,51.6031 37.8732,50.9867 37.4258,50.2969 36.5309,48.9172 35.7972,47.2573 36.0371,45.5957 36.147,44.8348 36.669,43.4288 37.2227,42.123 37.7764,40.8173 38.3617,39.5914 38.5977,39.1094 39.4461,37.3754 40.2065,35.4289 40.25,32 Z" id="rtid-path1429-3-9-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccsccscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,32 C 71.7468,34.801 71.7028,34.5586 71.0742,38.9707 71.0004,39.4885 70.5731,40.0927 70.0957,40.8477 69.6183,41.6026 69.1051,42.5187 68.9395,43.7148 68.6823,45.5713 68.1173,46.3844 67.5879,47.002 67.3232,47.3107 67.0593,47.5702 66.8457,47.8887 66.6321,48.2072 66.4803,48.5885 66.4609,49.0859 66.4405,49.6085 66.3282,50.6359 66.2715,51.6387 66.2431,52.1401 66.2285,52.638 66.248,53.0742 66.2676,53.5104 66.3113,53.8806 66.4434,54.166 66.6508,54.6143 66.6585,55.7657 66.5664,56.8984 66.4743,58.0312 66.3133,59.154 66.3066,59.7559 66.2957,60.7236 66.731,61.3839 67.4023,61.7246 68.0736,62.0653 68.9454,62.1299 69.8945,62.0957 71.7929,62.0273 74.0385,61.5416 75.4414,61.6367 75.8853,61.6668 76.5119,61.4948 77.334,61.2246 78.1561,60.9544 79.149,60.575 80.2129,60.1562 82.3393,59.3193 84.7462,58.3233 86.5645,57.7285 L 86.5684,57.7266 C 90.5648,56.4658 92.2928,56.2606 96,56.25 V 55.75 C 92.0379,55.75 90.5427,55.9492 86.4141,57.252 H 86.4121 C 84.5606,57.8574 82.1507,58.8564 80.0293,59.6914 78.9686,60.1089 77.9816,60.4858 77.1777,60.75 76.3739,61.0142 75.7291,61.1559 75.4746,61.1387 73.9274,61.0337 71.7019,61.53 69.877,61.5957 68.9645,61.6286 68.1619,61.5478 67.6289,61.2773 67.0959,61.0069 66.7973,60.5912 66.8066,59.7617 66.8124,59.2481 66.9727,58.0917 67.0664,56.9395 67.1601,55.7872 67.2183,54.6463 66.8984,53.9551 66.8243,53.7948 66.7644,53.4587 66.7461,53.0508 66.7278,52.6428 66.7417,52.1601 66.7695,51.668 66.8252,50.6837 66.9388,49.6728 66.9609,49.1055 66.9769,48.6946 67.0864,48.4295 67.2617,48.168 67.4371,47.9065 67.6888,47.6528 67.9688,47.3262 68.5287,46.673 69.167,45.7215 69.4355,43.7832 69.5867,42.6912 70.0534,41.8504 70.5195,41.1133 70.9857,40.3761 71.4671,39.7519 71.5684,39.041 72.2188,34.4749 72.25,35.1813 72.25,32 Z" id="rtid-path1429-3-6-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,32 C 103.74,33.3903 103.469,34.2117 103.047,34.707 102.593,35.2391 101.91,35.7792 101.295,37.209 100.432,39.2126 99.6066,41.4686 99.3281,43.4219 99.2628,43.881 99.4581,44.2959 99.7383,44.6621 100.018,45.0283 100.392,45.369 100.76,45.7227 101.495,46.43 102.178,47.1635 102.15,48.1074 102.109,49.5179 101.655,50.8878 101.213,51.9941 100.992,52.5473 100.775,53.0338 100.613,53.4336 100.451,53.8334 100.327,54.1182 100.352,54.4102 100.418,55.2031 100.922,56.0056 101.654,56.7871 102.386,57.5687 103.357,58.3291 104.412,59.002 106.522,60.3476 108.934,61.3496 110.5,61.3496 110.612,61.3496 110.738,61.2714 110.791,61.1875 110.844,61.1036 110.857,61.0255 110.865,60.9473 110.882,60.7908 110.866,60.6162 110.838,60.4043 110.781,59.9805 110.666,59.4225 110.559,58.8164 110.344,57.6042 110.202,56.1945 110.533,55.5215 111.109,54.3531 112.298,53.6223 113.654,53.0977 115.01,52.573 116.51,52.2631 117.66,51.8984 118.056,51.7728 118.269,51.8459 118.479,52.0371 118.688,52.2283 118.872,52.5782 119.031,52.9883 119.191,53.3984 119.33,53.862 119.5,54.2812 119.67,54.7005 119.866,55.0859 120.203,55.3184 120.484,55.5123 120.929,55.666 121.51,55.8164 122.09,55.9668 122.798,56.1018 123.555,56.2031 124.969,56.3924 126.76,56.4374 128,56.25 V 55.75 C 126.826,55.9723 125.1,55.9051 123.621,55.707 122.882,55.608 122.19,55.4759 121.635,55.332 121.079,55.1882 120.65,55.0211 120.486,54.9082 120.301,54.7801 120.12,54.4808 119.963,54.0938 119.806,53.7067 119.666,53.2427 119.496,52.8066 119.327,52.3706 119.131,51.9568 118.814,51.668 118.497,51.3791 118.034,51.2556 117.51,51.4219 116.403,51.7729 114.882,52.0855 113.473,52.6309 112.063,53.1762 110.743,53.9633 110.084,55.3008 109.622,56.2384 109.849,57.6729 110.066,58.9023 110.175,59.5171 110.29,60.0795 110.342,60.4707 110.363,60.6303 110.365,60.7331 110.363,60.8164 109.003,60.7685 106.684,59.8594 104.682,58.582 103.654,57.9264 102.711,57.1836 102.02,56.4453 101.328,55.707 100.9,54.9721 100.85,54.3691 100.845,54.3144 100.92,54.0071 101.076,53.6211 101.233,53.2351 101.452,52.744 101.678,52.1797 102.129,51.0511 102.606,49.6282 102.65,48.1211 102.685,46.933 101.851,46.0809 101.105,45.3633 100.733,45.0045 100.376,44.6722 100.137,44.3594 99.8974,44.0465 99.7841,43.7742 99.8242,43.4922 100.091,41.6229 100.899,39.3924 101.754,37.4082 102.335,36.0575 102.923,35.6207 103.426,35.0312 103.928,34.4418 104.285,33.7087 104.25,32 Z" id="rtid-path1429-3-6-7-2-8" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,23.75 C 126.348,23.7003 125.42,24.2716 124.797,24.7695 124.485,25.0185 124.246,25.2388 124.047,25.3477 123.848,25.4565 123.718,25.4831 123.469,25.373 122.047,24.7447 120.614,24.5417 118.424,25.252 H 118.422 C 118.213,25.3198 117.766,25.1758 117.295,24.9863 117.059,24.8916 116.818,24.7948 116.576,24.7383 116.335,24.6817 116.081,24.6603 115.844,24.7695 114.43,25.4215 113.331,26.4908 112.449,27.3691 112.008,27.8083 111.619,28.2002 111.287,28.4668 110.955,28.7334 110.689,28.8523 110.518,28.8398 110.251,28.8205 110.045,28.6675 109.822,28.3672 109.6,28.0669 109.39,27.6336 109.156,27.1523 108.689,26.1898 108.126,25.0261 107.018,24.3418 105.884,23.642 104.317,23.4655 103.031,23.2656 102.389,23.1657 101.814,23.0602 101.424,22.9082 101.229,22.8322 101.083,22.7449 100.992,22.6562 100.901,22.5676 100.859,22.4863 100.85,22.3691 100.85,22.3778 100.864,22.2809 100.934,22.1484 101.003,22.016 101.115,21.8422 101.254,21.6426 101.531,21.2433 101.915,20.7346 102.307,20.1504 103.09,18.982 103.912,17.5116 103.959,15.9453 103.994,14.784 103.213,13.6831 102.498,12.6855 102.14,12.1868 101.794,11.7134 101.557,11.291 101.32,10.8686 101.207,10.5066 101.248,10.2383 101.304,9.86904 101.446,9.63991 101.645,9.45703 101.843,9.27415 102.108,9.14217 102.4,9.02148 102.693,8.9008 103.01,8.7935 103.301,8.63477 103.591,8.47603 103.864,8.25378 104.014,7.91406 104.467,6.88656 104.505,5.59067 104.449,4.20898 104.393,2.8273 104.235,1.35423 104.25,0 H 103.75 C 103.754,1.32161 103.897,2.95144 103.949,4.22852 104.004,5.58647 103.95,6.82163 103.557,7.71289 103.463,7.92412 103.298,8.06567 103.061,8.19531 102.823,8.32496 102.522,8.43035 102.211,8.55859 101.9,8.68684 101.576,8.84012 101.305,9.08984 101.033,9.33957 100.823,9.69195 100.752,10.1621 100.683,10.616 100.861,11.0709 101.121,11.5352 101.381,11.9994 101.737,12.4811 102.092,12.9766 102.802,13.9675 103.488,15.0133 103.461,15.9297 103.419,17.3278 102.657,18.731 101.893,19.8711 101.51,20.4412 101.13,20.946 100.844,21.3594 100.7,21.5661 100.58,21.7497 100.492,21.916 100.405,22.0823 100.336,22.2252 100.352,22.4102 100.371,22.6467 100.481,22.8569 100.643,23.0137 100.804,23.1704 101.008,23.282 101.242,23.373 101.71,23.5552 102.304,23.6588 102.953,23.7598 104.251,23.9617 105.768,24.1591 106.754,24.7676 107.709,25.3572 108.239,26.4106 108.705,27.3711 108.938,27.8514 109.155,28.3053 109.422,28.666 109.689,29.0267 110.034,29.3073 110.482,29.3398 110.876,29.3683 111.232,29.1541 111.602,28.8574 111.971,28.5608 112.362,28.1597 112.801,27.7227 113.678,26.8485 114.739,25.8305 116.053,25.2246 116.137,25.1857 116.274,25.1808 116.461,25.2246 116.648,25.2685 116.873,25.3551 117.107,25.4492 117.575,25.6375 118.082,25.8894 118.578,25.7285 120.683,25.0464 121.918,25.2339 123.268,25.8301 123.638,25.9935 123.997,25.9443 124.285,25.7871 124.573,25.6299 124.816,25.3946 125.109,25.1602 125.657,24.7228 126.664,24.2729 128,24.25 Z" id="rtid-path1429-3-6-7-5-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,0 C 71.7641,2.21123 71.2319,3.78788 70.5781,5.08594 69.8959,6.44042 69.0863,7.81724 68.752,10.1641 68.6831,10.647 68.8889,11.1403 69.1875,11.6562 69.4861,12.1722 69.8941,12.7175 70.3008,13.2773 71.1141,14.3971 71.8995,15.5826 71.873,16.5469 71.837,17.8658 71.0606,18.9483 70.2305,19.877 69.8154,20.3413 69.3897,20.7633 69.0469,21.1602 68.7041,21.5571 68.4305,21.9265 68.3633,22.3398 68.2656,22.9396 68.0528,24.3567 68.0762,25.7891 68.0995,27.2214 68.3283,28.7022 69.293,29.3906 70.5075,30.2574 72.3847,30.1724 74.1621,29.9336 75.0508,29.8142 75.9174,29.6495 76.6602,29.5234 77.4029,29.3974 78.0317,29.3138 78.3926,29.3398 78.6378,29.3575 78.867,29.2639 79.0703,29.1191 79.2736,28.9744 79.4617,28.7765 79.6543,28.541 80.0395,28.07 80.4422,27.4435 80.9141,26.7852 81.8579,25.4685 83.068,24.0375 84.8398,23.4824 85.685,23.2177 86.1963,22.6416 86.6543,22.1504 87.1123,21.6592 87.5049,21.2596 88.1504,21.1602 88.7064,21.0745 89.1586,21.1996 89.6309,21.4531 90.1031,21.7066 90.5845,22.0946 91.1406,22.5059 92.2047,23.2926 93.8564,24.1769 96,24.25 V 23.75 C 93.8108,23.75 92.5275,22.9095 91.4375,22.1035 90.8925,21.7005 90.4002,21.2978 89.8672,21.0117 89.3341,20.7256 88.7476,20.5622 88.0742,20.666 87.2563,20.7921 86.7519,21.3142 86.2891,21.8105 85.8262,22.3069 85.3949,22.7835 84.6914,23.0039 82.7485,23.6125 81.4689,25.1534 80.5078,26.4941 80.0273,27.1645 79.6226,27.7904 79.2676,28.2246 79.0901,28.4417 78.925,28.6086 78.7812,28.7109 78.6375,28.8133 78.5266,28.847 78.4277,28.8398 77.9591,28.806 77.3263,28.902 76.5762,29.0293 75.826,29.1566 74.9668,29.3205 74.0957,29.4375 72.3535,29.6715 70.5752,29.6932 69.582,28.9844 68.8814,28.4843 68.5986,27.1566 68.5762,25.7793 68.5537,24.402 68.7614,23.0092 68.8574,22.4199 68.8947,22.1903 69.1024,21.8627 69.4258,21.4883 69.7492,21.1138 70.1741,20.6891 70.6016,20.2109 71.4564,19.2547 72.3318,18.0668 72.373,16.5605 72.4067,15.3325 71.523,14.1085 70.7051,12.9824 70.2961,12.4194 69.897,11.883 69.6211,11.4062 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z" id="rtid-path1429-3-6-7-5-3-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,0 C 39.4141,0.76718 39.1383,1.75827 38.8848,2.49023 38.5895,3.3428 38.1112,4.22909 36.8477,5.30273 36.7578,5.37914 36.7252,5.45046 36.6777,5.54492 36.6303,5.63939 36.5805,5.75349 36.5293,5.88867 36.4268,6.15903 36.3126,6.51245 36.1895,6.92578 35.9432,7.75245 35.6641,8.81832 35.3984,9.89648 35.1328,10.9747 34.8809,12.0658 34.6914,12.9434 34.5019,13.8209 34.3754,14.4513 34.3555,14.7285 34.2158,16.6655 34.7076,18.3697 35.2344,19.7031 35.4978,20.3699 35.7709,20.9453 35.9785,21.4082 36.1861,21.8711 36.3195,22.237 36.3301,22.3965 36.349,22.6804 36.2704,23.181 36.1582,23.7617 36.046,24.3424 35.9061,25.0127 35.8262,25.6875 35.7462,26.3623 35.7234,27.0431 35.8594,27.6602 35.9954,28.2772 36.3042,28.8381 36.8672,29.1992 38.0372,29.9495 40.0342,29.9094 41.9492,29.752 42.9067,29.6732 43.842,29.5572 44.627,29.4668 45.4119,29.3764 46.0596,29.3165 46.3828,29.3398 46.8274,29.3719 48.1812,29.6981 49.6855,29.8652 51.1899,30.0323 52.8845,30.0518 54.1797,29.4141 54.4869,29.2629 54.6744,28.9596 54.8457,28.6113 55.017,28.263 55.1648,27.8535 55.3145,27.4551 55.4641,27.0566 55.6163,26.6694 55.7793,26.377 55.9423,26.0845 56.1147,25.9076 56.252,25.8633 58.3051,25.1992 59.2573,24.7928 60.1719,24.5586 61.0267,24.3397 62.2522,24.2595 64,24.25 V 23.75 C 61.978,23.75 61.016,23.8265 60.0488,24.0742 59.0816,24.3219 58.1369,24.7271 56.0977,25.3867 55.7553,25.4974 55.5311,25.793 55.3418,26.1328 55.1524,26.4726 54.9966,26.8776 54.8457,27.2793 54.6948,27.681 54.5492,28.0801 54.3965,28.3906 54.2438,28.7011 54.0748,28.9078 53.959,28.9648 52.827,29.5222 51.2053,29.5299 49.7402,29.3672 48.2752,29.2044 47.0089,28.8825 46.418,28.8398 45.9964,28.8094 45.3592,28.8779 44.5703,28.9688 43.7814,29.0596 42.8517,29.1763 41.9082,29.2539 40.0211,29.4091 38.0662,29.3734 37.1367,28.7773 36.6984,28.4962 36.4641,28.0812 36.3477,27.5527 36.2312,27.0243 36.2458,26.3915 36.3223,25.7461 36.3987,25.1006 36.5352,24.4435 36.6484,23.8574 36.7616,23.2714 36.8568,22.7642 36.8301,22.3633 36.8082,22.035 36.6447,21.6739 36.4336,21.2031 36.2224,20.7324 35.9553,20.1679 35.6992,19.5195 35.187,18.2228 34.7234,16.5978 34.8555,14.7656 34.8667,14.6089 34.9934,13.9207 35.1816,13.0488 35.3699,12.177 35.6203,11.0889 35.8848,10.0156 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z" id="rtid-path1429-3-6-7-5-3-5-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,23.75 C 30.6701,23.75 29.1294,24.4713 28.1543,25.4707 27.7598,25.8751 27.5394,26.3293 27.3145,26.6738 27.0895,27.0183 26.8918,27.2414 26.5117,27.3223 26.3663,27.3532 26.1181,27.2712 25.8125,27.0664 25.5069,26.8617 25.1582,26.5562 24.793,26.252 24.4277,25.9477 24.045,25.6428 23.6465,25.4336 23.2479,25.2244 22.8131,25.107 22.3848,25.2422 21.6284,25.4808 21.0906,26.0212 20.6094,26.5488 20.1281,27.0765 19.6948,27.5929 19.1953,27.8613 17.3396,28.8586 15.2632,28.901 14.418,28.8398 14.4093,28.8392 14.3947,28.8402 14.3496,28.7852 14.3045,28.7301 14.2468,28.6265 14.1934,28.4922 14.0864,28.2236 13.9879,27.8348 13.8789,27.4277 13.7699,27.0206 13.6502,26.5938 13.4805,26.2246 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 3.74718,11.0845 3.78774,10.9973 3.83594,10.9434 3.88414,10.8894 3.93995,10.8565 4.05078,10.8418 4.04227,10.8429 4.09634,10.8456 4.1875,10.9062 4.27866,10.9669 4.39723,11.0728 4.52734,11.209 4.78756,11.4813 5.09489,11.8737 5.4082,12.2871 5.72151,12.7005 6.04195,13.1351 6.34375,13.502 6.64555,13.8688 6.91366,14.1681 7.20117,14.3262 7.5333,14.5088 7.90835,14.4765 8.23047,14.3398 8.55258,14.2032 8.84357,13.9692 9.10156,13.7109 9.35956,13.4527 9.58243,13.1686 9.74805,12.916 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 3.33591,10.7535 3.26658,10.9291 3.23047,11.1152 3.15824,11.4876 3.20691,11.9189 3.28711,12.3652 3.3673,12.8115 3.4852,13.2721 3.58008,13.6738 3.67495,14.0756 3.74158,14.4286 3.73633,14.5938 3.68747,16.1298 3.82602,17.897 3.98438,19.373 4.14273,20.8491 4.32251,22.0557 4.34961,22.3809 4.39603,22.938 4.73393,24.4105 5.24609,25.8574 5.50218,26.5809 5.80023,27.2897 6.13477,27.8535 6.4693,28.4173 6.8298,28.8608 7.31055,28.9883 7.48505,29.0346 7.67602,29.0107 7.81836,28.9199 7.9607,28.8292 8.05127,28.6951 8.12109,28.5488 8.26073,28.2563 8.32927,27.8864 8.40625,27.4844 8.5602,26.6803 8.74426,25.7645 9.18359,25.3379 9.30271,25.2222 9.51437,25.1521 9.80078,25.1406 10.0872,25.1291 10.4354,25.1776 10.7871,25.2578 11.4905,25.4182 12.2029,25.7018 12.5391,25.8398 12.7104,25.9102 12.8802,26.1178 13.0254,26.4336 13.1706,26.7494 13.2889,27.1546 13.3965,27.5566 13.5041,27.9587 13.6006,28.3566 13.7285,28.6777 13.7925,28.8383 13.8642,28.981 13.9629,29.1016 14.0616,29.2221 14.2067,29.327 14.3828,29.3398 15.3002,29.4063 17.446,29.3698 19.4316,28.3027 20.0544,27.968 20.5091,27.3994 20.9785,26.8848 21.4479,26.3701 21.9224,25.9121 22.5352,25.7188 22.7905,25.6382 23.0784,25.7007 23.4141,25.877 23.7498,26.0532 24.1137,26.3376 24.4727,26.6367 24.8316,26.9358 25.1872,27.2474 25.5352,27.4805 25.8831,27.7136 26.2384,27.8906 26.6152,27.8105 27.1573,27.6953 27.483,27.3292 27.7324,26.9473 27.9818,26.5654 28.1845,26.1558 28.5117,25.8203 29.3257,24.986 30.9022,24.3358 32,24.25 Z" id="rtid-path1429-3-6-7-5-3-5-6-3-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="rotate(180,64,63.9999)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.7498 0,103.7498 v 0.5 c 0.7015,0 2.386,0.2502 3.914,0.1502 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.1498 -1.7,0.1498 v 0.5 c 0.75,0 1.23,0.0502 1.88,-0.2498 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.2498 c 0.8,0 1.49,-0.2498 2.04,-0.7498 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.5498 -1.7,0.6498 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.2498 c 0.85,0 1.51,-0.4498 2.11,-1.0498 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.8498 -1.77,0.9498 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 8.25,64 7.75,64 7.75,64 7.708,64.12 7.59,64.55 7.506,64.59 7.359,64.67 7.083,64.7 6.74,64.69 6.398,64.69 5.996,64.67 5.586,64.76 5.176,64.84 4.752,65.03 4.416,65.43 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 2.602,66.57 2.404,66.84 2.156,67.28 1.889,67.77 1.866,68.22 1.969,68.59 2.071,68.97 2.283,69.26 2.453,69.5 2.623,69.73 2.725,69.92 2.727,69.97 2.727,70 2.733,70 2.686,70.05 2.638,70.1 2.528,70.17 2.342,70.24 1.478,70.58 1.172,71.05 0.9629,71.34 0.8585,71.49 0.7841,71.58 0.6641,71.65 0.5886,71.69 0.1526,71.73 0,71.75 0,71.75 0,72.25 0,72.25" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.1871" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,64 C 39.79,64.32 39.89,64.86 39.88,65.1 39.87,65.41 39.73,65.84 39.07,66.67 38.76,67.07 38.5,67.22 38.29,67.27 38.07,67.33 37.87,67.29 37.64,67.24 37.42,67.19 37.17,67.12 36.88,67.2 36.6,67.29 36.38,67.54 36.21,67.98 35.52,69.72 35.34,70.48 35.25,70.72 35.24,70.76 35.24,70.75 35.24,70.76 35.2,70.76 35.07,70.75 34.83,70.79 33.88,70.92 33.46,71.21 33.16,71.42 32.93,71.59 32.4,71.72 32,71.75 32,71.75 32,72.25 32,72.25 32.79,72.27 33.15,72.04 33.45,71.83 33.75,71.61 34.02,71.4 34.9,71.28 35.11,71.25 35.2,71.27 35.35,71.25 35.43,71.24 35.53,71.2 35.6,71.12 35.66,71.05 35.69,70.97 35.72,70.89 35.84,70.55 35.99,69.89 36.67,68.16 36.82,67.8 36.93,67.71 37.03,67.68 37.13,67.65 37.3,67.68 37.53,67.73 37.77,67.78 38.07,67.84 38.41,67.76 38.75,67.67 39.1,67.43 39.46,66.98 40.15,66.11 40.36,65.57 40.38,65.11 40.4,64.66 40.24,64.38 40.25,64 40.25,64 39.75,64 39.75,64" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.1871" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,64 C 71.65,67.11 70.81,69.17 69.2,70.79 67.67,72.32 65.53,71.83 64,71.75 64,71.75 64,72.25 64,72.25 65.43,72.29 67.76,72.95 69.55,71.14 71.29,69.4 72.2,67.39 72.25,64 72.25,64 71.75,64 71.75,64" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.1871" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,32 C 7.695,32.16 7.549,32.58 7.418,32.72 7.217,32.93 6.943,33.12 6.689,33.3 6.436,33.48 6.187,33.64 6.076,33.93 6.021,34.08 6.028,34.26 6.104,34.41 6.179,34.56 6.305,34.69 6.48,34.83 6.882,35.13 7.128,35.35 7.262,35.52 7.396,35.68 7.417,35.77 7.418,35.85 7.42,36.02 7.219,36.34 7.193,36.94 7.151,37.92 7.385,38.36 7.434,38.55 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 0,39.75 0,40.25 0,40.25 0.1904,40.26 0.3136,40.18 0.457,40.11 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 8.25,32 7.75,32 7.75,32" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.1871" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,32 C 39.65,33.39 39.03,34.38 38.27,34.88 37.45,35.41 36.44,35.67 35.73,36.24 35.04,36.79 34.45,37.7 33.83,38.46 33.53,38.83 33.22,39.17 32.91,39.4 32.68,39.57 32.22,39.71 32,39.75 32,39.75 32,40.25 32,40.25 32.45,40.26 32.85,40.08 33.21,39.8 33.57,39.53 33.9,39.16 34.22,38.77 34.86,37.99 35.46,37.1 36.04,36.63 36.62,36.17 37.64,35.89 38.54,35.3 39.45,34.71 40.22,33.74 40.25,32 40.25,32 39.75,32 39.75,32" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.1871" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,32 C 71.79,32.69 71.98,33.5 72.24,33.83 72.55,34.21 72.95,34.37 73.27,34.47 73.42,34.51 73.56,34.55 73.65,34.58 73.74,34.61 73.76,34.64 73.74,34.61 73.72,34.58 73.75,34.56 73.7,34.65 73.66,34.74 73.55,34.89 73.36,35.11 72.65,35.92 70.63,37.13 68.64,38.09 67.65,38.57 66.65,38.99 65.82,39.29 65.1,39.55 64.34,39.72 64,39.75 64,39.75 64,40.25 64,40.25 64.46,40.26 65.13,40.07 65.99,39.76 66.84,39.46 67.85,39.03 68.86,38.54 70.88,37.57 72.89,36.4 73.73,35.44 73.93,35.21 74.07,35.04 74.15,34.87 74.23,34.71 74.26,34.51 74.17,34.36 74.08,34.2 73.94,34.15 73.81,34.11 73.68,34.06 73.55,34.03 73.41,33.99 73.13,33.9 72.85,33.79 72.63,33.52 72.41,33.25 72.24,32.8 72.25,32 72.25,32 71.75,32 71.75,32" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.1871" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 0,7.75 0,8.25 0,8.25" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.1871" ns1:connector-curvature="0" />
- <ns0:path d="M 32,8.25 C 32.21,8.255 32.37,8.236 32.51,8.178 32.66,8.12 32.77,8.011 32.84,7.889 32.96,7.644 32.92,7.413 32.92,7.205 32.93,6.997 32.95,6.819 33.08,6.649 33.2,6.478 33.45,6.293 33.98,6.147 34.54,5.994 34.91,5.941 35.16,5.947 35.41,5.954 35.53,6.009 35.66,6.096 35.92,6.269 36.19,6.673 36.93,6.934 37.17,7.02 37.44,6.972 37.65,6.846 37.87,6.72 38.06,6.524 38.25,6.281 38.61,5.796 38.94,5.115 39.24,4.358 39.82,2.843 40.23,1.048 40.25,0 40.25,0 39.75,0 39.75,0 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 33.25,5.829 32.89,6.065 32.67,6.352 32.46,6.638 32.43,6.953 32.42,7.195 32.42,7.438 32.41,7.617 32.39,7.664 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.1871" ns1:connector-curvature="0" />
- <ns0:path d="M 64,8.25 C 64.3,8.258 64.53,8.39 64.77,8.594 65,8.798 65.22,9.072 65.45,9.322 65.68,9.573 65.92,9.816 66.27,9.885 66.61,9.954 66.99,9.802 67.37,9.428 67.78,9.028 67.93,8.484 67.95,7.916 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 67.64,3.009 67.76,2.892 67.87,2.844 67.98,2.796 68.12,2.796 68.34,2.838 68.78,2.922 69.48,3.159 70.5,3.016 71.02,2.944 71.4,2.795 71.68,2.576 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 72.25,0 71.75,0 71.75,0 71.76,0.5068 71.82,1.273 71.72,1.643 71.66,1.861 71.56,2.035 71.37,2.184 71.18,2.332 70.89,2.456 70.43,2.52 69.51,2.648 68.94,2.445 68.43,2.348 68.18,2.299 67.92,2.275 67.67,2.387 67.42,2.498 67.22,2.727 67.04,3.08 66.83,3.49 66.84,3.99 66.92,4.531 66.99,5.073 67.14,5.663 67.26,6.246 67.38,6.83 67.47,7.406 67.45,7.898 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 64,7.75 64,8.25 64,8.25" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.1871" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 l -0.5,0 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask4296)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g4258">
+ <g
+ id="rtid-g1931"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.00587,0.0179 -0.0794,0.2775 -0.08594,0.2969 -0.06287,0.1867 -0.15724,0.4398 -0.27148,0.748 -0.22848,0.6164 -0.5424,1.4486 -0.87696,2.4121 -0.6691,1.927 -1.42334,4.379 -1.75585,6.707 v 0.002 c -0.4895,3.547 -0.50594,10.988 -0.43555,12.248 0.04495,0.797 0.53639,1.591 1.25781,2.357 0.72142,0.767 1.6859,1.508 2.73633,2.167 2.10084,1.316 4.52494,2.305 6.09574,2.412 h 0.0078 0.0078 c 0.8428,0 1.9229,-0.63 3.3125,-1.379 1.3891,-0.75 3.0513,-1.642 4.873,-2.233 3.8849,-1.238 8.5466,-1.473 9.3848,-1.488 v -0.5 c -0.6737,0 -5.4086,0.197 -9.5352,1.512 h -0.0019 c -1.8776,0.609 -3.5686,1.517 -4.959,2.267 -1.3879,0.749 -2.5101,1.317 -3.0684,1.319 -1.3907,-0.098 -3.8082,-1.054 -5.85152,-2.334 -1.02381,-0.642 -1.95783,-1.365 -2.63671,-2.086 -0.67889,-0.721 -1.08901,-1.438 -1.12305,-2.041 -0.06365,-1.14 -0.04486,-8.7 0.43164,-12.153 0.32446,-2.271 1.06828,-4.7 1.73242,-6.6129 0.33207,-0.9564 0.64375,-1.7838 0.87305,-2.4023 0.11465,-0.3093 0.20882,-0.566 0.27539,-0.7637 C 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z"
+ id="rtid-path1429-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c 0.0089,0.1209 0.0315,0.4553 0.0449,0.6895 0.0208,0.3642 0.0397,0.8497 0.0352,1.3984 -0.009,1.0974 -0.1159,2.4471 -0.4844,3.5551 -0.277,0.832 -0.8162,1.42 -1.3555,2.074 -0.5392,0.653 -1.0752,1.379 -1.2285,2.447 -0.124,0.865 0.4155,1.821 0.9258,2.846 0.5103,1.024 1.0125,2.103 0.9824,3.058 -0.0931,2.95 -0.2835,4.626 -0.2383,5.397 0.0402,0.689 -0.003,1.719 0.2188,2.754 0.2218,1.034 0.7276,2.092 1.8555,2.789 1.0846,0.67 2.3097,0.781 3.4277,0.746 1.118,-0.036 2.1488,-0.212 2.8184,-0.166 0.4636,0.031 1.2531,0.344 2.2265,0.562 0.9735,0.219 2.1547,0.334 3.4668,-0.062 0.2381,-0.072 0.6346,-0.269 1.1777,-0.543 0.5432,-0.274 1.2055,-0.621 1.8711,-0.969 0.6656,-0.348 1.3341,-0.698 1.8848,-0.976 0.5508,-0.278 1.0031,-0.488 1.1602,-0.539 2.0231,-0.657 3.2292,-0.856 3.9961,-0.895 0.636,-0.032 1.1544,0.056 1.4648,0.084 v -0.5 c -0.249,0 -0.6636,-0.126 -1.4902,-0.084 -0.8266,0.042 -2.0748,0.253 -4.125,0.918 -0.2505,0.081 -0.6745,0.288 -1.2305,0.568 -0.556,0.281 -1.225,0.633 -1.8906,0.981 -0.6657,0.348 -1.3293,0.693 -1.8672,0.965 -0.5379,0.271 -0.9777,0.476 -1.0957,0.511 -1.2077,0.365 -2.2846,0.261 -3.211,0.053 -0.9263,-0.208 -1.6793,-0.532 -2.3046,-0.574 -0.7836,-0.053 -1.7942,0.132 -2.8672,0.166 -1.0731,0.034 -2.1885,-0.077 -3.1504,-0.672 -0.9944,-0.615 -1.4244,-1.515 -1.6289,-2.469 -0.2045,-0.953 -0.1642,-1.942 -0.2071,-2.677 -0.0373,-0.636 0.1447,-2.388 0.2383,-5.352 0.0358,-1.135 -0.5223,-2.267 -1.0351,-3.297 -0.5129,-1.029 -0.9607,-1.967 -0.877,-2.551 0.1349,-0.939 0.5899,-1.562 1.1172,-2.201 0.5273,-0.639 1.1294,-1.285 1.4453,-2.234 0.3972,-1.195 0.5006,-2.5836 0.5098,-3.7092 C 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z"
+ id="rtid-path1429-3-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,119.75 c -0.1304,0 -0.5351,-0.025 -1.0996,-0.043 -0.5645,-0.018 -1.302,-0.03 -2.1484,0 -1.693,0.061 -3.8238,0.285 -5.9004,0.945 h -0.002 c -3.6497,1.184 -4.7776,0.294 -6.8574,0.266 -0.5416,-0.007 -1.2305,0.196 -2.0371,0.434 -0.8067,0.237 -1.7191,0.517 -2.6367,0.685 -0.9177,0.168 -1.837,0.223 -2.6524,0.033 -0.8154,-0.19 -1.5294,-0.612 -2.0879,-1.445 -0.6269,-0.935 -0.6556,-2.243 -0.4902,-3.582 0.1654,-1.339 0.5189,-2.685 0.5723,-3.715 0.0328,-0.631 -0.0207,-1.793 -0.0176,-3.25 0.003,-1.457 0.0602,-3.196 0.3086,-4.928 0.3283,-2.288 0.3163,-2.713 0.9746,-4.619 0.3416,-0.9886 0.4135,-1.5254 0.3984,-2.1033 C 72.3091,97.8498 72.219,97.2389 72.25,96 h -0.5 c -0.0072,1.0234 0.0617,1.9639 0.0742,2.4414 0.0139,0.5333 -0.0401,0.9676 -0.3711,1.9256 -0.6667,1.93 -0.6692,2.435 -0.9961,4.713 -0.2535,1.767 -0.3113,3.527 -0.3144,4.996 -0.0031,1.469 0.0472,2.658 0.0176,3.227 -0.0485,0.935 -0.3976,2.296 -0.5684,3.679 -0.1708,1.384 -0.1701,2.816 0.5703,3.92 0.6263,0.934 1.4723,1.443 2.3887,1.657 0.9163,0.213 1.9017,0.144 2.8574,-0.032 0.9557,-0.175 1.8845,-0.458 2.6875,-0.695 0.803,-0.237 1.4918,-0.419 1.8906,-0.414 1.934,0.026 3.2675,0.925 7.0176,-0.291 l -0.0019,0.002 c 2.0133,-0.64 4.1038,-0.862 5.7675,-0.922 0.8319,-0.03 1.5565,-0.018 2.1133,0 0.4322,0.014 0.9081,0.036 1.1172,0.043 z"
+ id="rtid-path1429-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccscsccccscccccscccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,119.75 c -2.032,0.034 -2.99,-0.085 -3.885,-0.125 -0.894,-0.04 -1.718,0.006 -3.396,0.369 -0.152,0.033 -0.481,0.04 -0.871,0.02 -0.391,-0.021 -0.851,-0.063 -1.313,-0.102 -0.462,-0.039 -0.927,-0.077 -1.334,-0.088 -0.406,-0.011 -0.746,-0.002 -1.013,0.082 -0.88,0.279 -1.573,0.216 -2.168,-0.025 -0.596,-0.242 -1.097,-0.674 -1.54,-1.156 -0.442,-0.482 -0.823,-1.011 -1.193,-1.434 -0.37,-0.423 -0.741,-0.779 -1.226,-0.779 -1.489,-0.1 -3.036,0.177 -4.178,0.133 -0.573,-0.023 -1.03,-0.127 -1.332,-0.352 -0.302,-0.225 -0.493,-0.574 -0.516,-1.225 v -0.006 -0.005 c -0.056,-0.678 -0.431,-1.705 -0.721,-3.034 -0.289,-1.328 -0.495,-2.929 -0.236,-4.634 0.146,-0.962 0.46,-1.673 0.776,-2.418 0.315,-0.746 0.628,-1.526 0.73,-2.575 0.131,-1.344 0.047,-2.12 -0.07,-2.9585 C 104.397,98.5986 104.25,97.6918 104.25,96 h -0.5 c 0.019,1.4996 0.16,2.7336 0.268,3.5059 0.115,0.8311 0.197,1.5361 0.07,2.8421 -0.095,0.974 -0.383,1.687 -0.695,2.427 -0.313,0.741 -0.654,1.509 -0.811,2.539 -0.272,1.791 -0.052,3.454 0.244,4.815 0.297,1.361 0.668,2.449 0.711,2.971 v -0.012 c 0.027,0.749 0.284,1.286 0.715,1.607 0.431,0.322 0.991,0.426 1.611,0.45 1.241,0.047 2.774,-0.23 4.18,-0.133 h 0.01 0.008 c 0.214,0 0.504,0.214 0.849,0.609 0.345,0.395 0.734,0.931 1.203,1.441 0.469,0.511 1.023,0.999 1.719,1.282 0.696,0.282 1.531,0.348 2.506,0.039 0.14,-0.044 0.463,-0.069 0.85,-0.059 0.386,0.011 0.844,0.047 1.304,0.086 0.46,0.039 0.923,0.081 1.328,0.102 0.405,0.021 0.744,0.027 1.004,-0.03 1.654,-0.358 2.403,-0.395 3.268,-0.357 0.809,0.036 2.112,0.139 3.908,0.125 z"
+ id="rtid-path1429-3-6-7-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c 0.002,0.7276 0.023,5.8956 -0.648,10.3066 v 0.002 c -0.256,1.793 -0.027,3.1727 0.277,4.2422 0.303,1.066 0.664,1.8347 0.709,2.3496 0.02,0.5969 -0.337,1.2518 -0.912,1.9297 -0.576,0.6792 -1.353,1.3705 -2.086,2.0527 -0.734,0.6822 -1.4243,1.3525 -1.838,2.0371 -0.2069,0.3423 -0.3472,0.6931 -0.3672,1.0547 -0.0201,0.3616 0.0895,0.7282 0.3398,1.0586 0.006,0.0079 0.072,0.1314 0.1406,0.2988 0.0687,0.1674 0.1525,0.3892 0.2539,0.6446 0.2029,0.5106 0.4739,1.1595 0.8339,1.8242 0.72,1.3293 1.805,2.7405 3.459,3.1797 1.606,0.4262 3.696,-0.0673 5.443,-0.7051 0.874,-0.3189 1.661,-0.6768 2.252,-0.9902 0.296,-0.1568 0.543,-0.3019 0.731,-0.4278 0.188,-0.1259 0.307,-0.1971 0.402,-0.3574 0.099,-0.1671 0.126,-0.3547 0.141,-0.5762 0.015,-0.2215 0.009,-0.4762 -0.004,-0.7578 -0.027,-0.5631 -0.088,-1.229 -0.107,-1.8808 -0.02,-0.6519 0.006,-1.2899 0.134,-1.7715 0.129,-0.4817 0.333,-0.7786 0.686,-0.8907 0.16,-0.0505 0.572,0.0163 1.064,0.2168 0.493,0.2006 1.071,0.5074 1.645,0.8204 0.574,0.3129 1.142,0.6338 1.633,0.8671 0.245,0.1167 0.471,0.2115 0.675,0.2735 0.204,0.062 0.385,0.0994 0.575,0.0547 2.151,-0.5079 6.23,-0.5709 8.818,-0.6055 v -0.5 c -2.583,0.0344 -6.596,0.0678 -8.932,0.6191 -0.029,0.0069 -0.152,0.0031 -0.316,-0.0468 -0.164,-0.05 -0.373,-0.1374 -0.606,-0.2481 -0.465,-0.2214 -1.03,-0.5385 -1.607,-0.8535 -0.577,-0.315 -1.166,-0.6281 -1.695,-0.8437 -0.53,-0.2157 -0.995,-0.3602 -1.405,-0.2305 -0.553,0.1754 -0.865,0.6692 -1.017,1.2383 -0.152,0.5691 -0.172,1.2413 -0.152,1.914 0.019,0.6727 0.081,1.3451 0.107,1.8907 0.013,0.2727 0.018,0.514 0.006,0.7011 -0.013,0.1871 -0.052,0.321 -0.072,0.3555 0.021,-0.0365 -0.085,0.0835 -0.252,0.1953 -0.167,0.1118 -0.401,0.2516 -0.686,0.4024 -0.569,0.3014 -1.338,0.6523 -2.189,0.9628 -1.702,0.6212 -3.741,1.0637 -5.143,0.6914 -1.448,-0.3842 -2.459,-1.6617 -3.148,-2.9355 -0.345,-0.6369 -0.609,-1.2675 -0.809,-1.7715 -0.1001,-0.252 -0.1834,-0.4718 -0.2559,-0.6484 -0.0724,-0.1767 -0.1202,-0.3002 -0.2051,-0.4121 -0.1885,-0.2489 -0.2521,-0.4784 -0.2382,-0.7285 0.0138,-0.2502 0.1154,-0.5273 0.2949,-0.8243 0.3593,-0.594 1.0243,-1.251 1.7523,-1.9277 0.727,-0.6767 1.514,-1.3756 2.125,-2.0957 0.61,-0.7201 1.06,-1.4733 1.031,-2.2754 V 80.873 80.8672 c -0.057,-0.685 -0.437,-1.4281 -0.729,-2.4531 -0.291,-1.0246 -0.507,-2.3174 -0.263,-4.0332 v -0.002 C 104.3,69.7492 104.25,64.3795 104.25,64 Z"
+ id="rtid-path1429-3-6-7-5-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c 0.0091,1.5714 0.0802,3.0066 0.0508,3.8496 -0.0315,0.9016 -0.1655,1.4906 -0.5938,2.1231 -0.0813,0.12 -0.1758,0.1465 -0.4023,0.125 -0.2265,-0.0216 -0.5386,-0.1187 -0.8731,-0.2325 -0.3344,-0.1137 -0.6932,-0.242 -1.0527,-0.3066 -0.3595,-0.0646 -0.7329,-0.0682 -1.0625,0.1094 -0.7224,0.3889 -1.0902,1.3135 -1.3437,2.25 -0.2536,0.9365 -0.3718,1.9133 -0.4512,2.4355 -0.5429,3.5676 -0.1219,10.334 -0.0195,11.5664 0.0143,0.4008 0.1568,0.7426 0.3984,0.9942 0.2416,0.2515 0.5685,0.4126 0.9434,0.5156 0.7497,0.206 1.7106,0.1921 2.7539,0.1035 2.0864,-0.1771 4.5154,-0.6677 5.8886,-0.5684 h 0.0078 0.0098 c 0.5933,0 1.6161,0.4351 2.9297,0.7422 1.3136,0.3071 2.9464,0.4678 4.8516,-0.1347 0.7431,-0.2351 1.6039,-0.0972 2.4882,0.0937 0.8844,0.191 1.7831,0.4364 2.627,0.3125 1.13,-0.1658 1.9125,-0.1031 2.9199,0.0039 0.9472,0.1006 2.4274,0.2512 4.1797,0.2676 v -0.5 c -1.923,0 -3.1125,-0.1579 -4.127,-0.2656 -1.0144,-0.1077 -1.8632,-0.1754 -3.0449,-0.002 -0.6935,0.1018 -1.5511,-0.1108 -2.4492,-0.3047 -0.8981,-0.1939 -1.8455,-0.3682 -2.7441,-0.0839 -1.8035,0.5703 -3.3254,0.422 -4.5879,0.1269 -1.26,-0.2946 -2.2315,-0.7521 -3.0371,-0.7539 -1.5273,-0.1078 -3.9177,0.3956 -5.9532,0.5684 -1.0197,0.0865 -1.9451,0.0866 -2.58,-0.0879 C 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 c -0.0983,-1.1791 -0.5076,-8.0227 0.0156,-11.4609 0.082,-0.5395 0.1986,-1.4914 0.4395,-2.3809 0.2408,-0.8894 0.626,-1.6874 1.0976,-1.9414 0.1846,-0.0994 0.4341,-0.1109 0.7364,-0.0566 0.3022,0.0543 0.6451,0.1723 0.9824,0.2871 0.3373,0.1147 0.6668,0.2276 0.9844,0.2578 0.3175,0.0302 0.6678,-0.0505 0.8652,-0.3418 0.485,-0.7161 0.6447,-1.4407 0.6777,-2.3867 C 72.3318,66.9211 72.25,65.7359 72.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c -0.0041,0.9064 -0.0406,2.456 -0.1562,3.8125 -0.1239,1.4517 -0.3471,2.9029 -0.6954,3.7305 -0.2745,0.6512 -1.1623,1.8818 -1.8222,3.1386 -0.3302,0.6288 -0.6057,1.269 -0.7207,1.8848 -0.1151,0.6158 -0.0627,1.2254 0.3007,1.7129 1.8782,2.519 2.099,4.6977 2.2754,6.1465 0.0882,0.7244 0.1304,1.2888 0.4961,1.6465 0.1829,0.1788 0.4495,0.2624 0.7461,0.248 0.2967,-0.0144 0.6388,-0.1102 1.0723,-0.2832 0.3027,-0.1208 0.5185,-0.1488 0.6601,-0.1289 0.1417,0.0199 0.2229,0.0743 0.3067,0.1816 0.1676,0.2147 0.2739,0.6831 0.375,1.2168 0.1011,0.5338 0.2085,1.1316 0.5059,1.6368 0.2973,0.5051 0.8174,0.9003 1.6113,0.955 h 0.0097 0.0079 c 1.5002,0 3.8757,-0.8548 7.58,-2.0293 0.4296,-0.1362 1.3992,0.0301 2.3633,0.25 0.9642,0.2199 1.9177,0.4843 2.5957,0.3575 1.4727,-0.2759 2.3173,-0.3205 3.2188,-0.3028 0.8364,0.0164 2.0711,0.0852 3.5195,0.0762 v -0.5 c -1.6384,0.0238 -2.5854,-0.058 -3.5098,-0.0762 -0.9243,-0.0181 -1.8225,0.03 -3.3203,0.3106 -0.4404,0.0824 -1.4225,-0.1304 -2.3926,-0.3516 -0.97,-0.2212 -1.9332,-0.4596 -2.625,-0.2402 -3.7043,1.1745 -6.1187,2.001 -7.4199,2.0039 -0.648,-0.0477 -0.9743,-0.3117 -1.207,-0.707 -0.2342,-0.3978 -0.3463,-0.9436 -0.4473,-1.4766 -0.1009,-0.533 -0.1785,-1.0529 -0.4726,-1.4297 -0.1471,-0.1884 -0.3663,-0.3319 -0.6309,-0.3691 -0.2645,-0.0372 -0.5615,0.0175 -0.9141,0.1582 -0.4063,0.1621 -0.7088,0.2381 -0.9121,0.248 -0.2032,0.0099 -0.2927,-0.0288 -0.3711,-0.1055 -0.1567,-0.1533 -0.26,-0.6297 -0.3476,-1.3496 -0.1753,-1.4398 -0.4227,-3.769 -2.3731,-6.3847 -0.2593,-0.3479 -0.3106,-0.787 -0.2109,-1.3203 0.0997,-0.5334 0.3558,-1.1405 0.6738,-1.7461 0.636,-1.2112 1.5089,-2.3916 1.8399,-3.1778 0.3973,-0.944 0.6088,-2.4081 0.7344,-3.8808 C 40.2193,66.3827 40.25,64.9102 40.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-93"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,64 c -0.04455,2.0095 -0.50495,3.1644 -1.06641,4.0684 -0.59076,0.9511 -1.3019,1.981 -1.63476,4.3222 -0.07485,0.5267 0.05132,1.266 0.11523,2.125 0.06392,0.859 0.07194,1.8168 -0.18359,2.6719 -0.34551,1.1561 -0.98076,2.2856 -1.54102,3.3262 -0.56026,1.0405 -1.05846,1.9842 -1.0664,2.8574 -0.00812,0.8929 -0.34393,2.0452 -0.6836,3.0254 -0.16983,0.4901 -0.33901,0.9388 -0.46679,1.3008 -0.06389,0.1809 -0.11776,0.3407 -0.15625,0.4765 -0.03849,0.1359 -0.066886,0.2378 -0.0625,0.3614 0.04964,1.4001 1.46483,3.1567 4.05468,4.6152 1.74164,0.9807 4.63358,1.2487 7.31641,1.3164 1.3414,0.0338 2.6274,0.012 3.6797,-0.0098 1.0523,-0.0218 1.8815,-0.0428 2.2578,-0.0156 0.4216,0.0305 0.7577,-0.1608 1,-0.4297 0.2423,-0.2689 0.4327,-0.6083 0.6895,-0.9746 0.5134,-0.7325 1.267,-1.5879 3.0703,-2.1582 0.7753,-0.2452 1.2151,-0.9249 1.6211,-1.5117 0.4059,-0.5868 0.7667,-1.068 1.3007,-1.1582 C 28.5462,87.7778 29.872,88.1744 32,88.25 v -0.5 c -2.2695,-0.0472 -3.35,-0.4977 -6.0879,-0.0352 -0.7758,0.1311 -1.222,0.7762 -1.6309,1.3672 -0.4088,0.5911 -0.7925,1.1411 -1.3593,1.3203 -1.9053,0.6026 -2.7864,1.5721 -3.3301,2.3477 -0.2718,0.3878 -0.4663,0.7234 -0.6504,0.9277 -0.1841,0.2044 -0.3172,0.2857 -0.5937,0.2657 -0.4427,-0.0321 -1.2523,-0.0081 -2.3028,0.0136 -1.0504,0.0218 -2.33,0.0433 -3.6582,0.0098 C 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 c -1e-5,-3e-4 0.00983,-0.092 0.04297,-0.209 0.03313,-0.117 0.08414,-0.2687 0.14648,-0.4453 C 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,55.75 c -1.2294,0 -2.0383,0.1059 -2.6211,0.3027 -0.5828,0.1969 -0.936,0.4856 -1.2051,0.7754 -0.538,0.5797 -0.7334,1.1122 -2.2988,1.4375 -0.1225,0.0255 -0.3311,-0.0318 -0.5859,-0.1855 -0.2549,-0.1538 -0.5432,-0.3874 -0.8379,-0.6231 -0.2947,-0.2356 -0.5961,-0.474 -0.8985,-0.6445 -0.3024,-0.1705 -0.6278,-0.2879 -0.955,-0.1836 -0.8753,0.279 -1.2921,1.0415 -1.6368,1.7617 -0.3446,0.7203 -0.6429,1.4116 -1.1836,1.7481 -0.835,0.5196 -2.0538,0.8639 -3.1093,0.9902 -0.5278,0.0632 -1.0151,0.0718 -1.3868,0.0293 C 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 h -0.5 c -0.01831,1.7885 0.15046,3.2142 0.23633,4.1387 0.09152,0.9853 0.08839,1.806 -0.35352,3.2773 -0.17622,0.5868 -0.74629,0.8555 -1.39062,1.168 -0.32217,0.1562 -0.65494,0.3186 -0.9336,0.5566 -0.27866,0.2381 -0.49995,0.5665 -0.55859,0.9961 -0.14313,1.0488 0.13219,2.3446 0.42188,3.7188 0.28968,1.3742 0.60026,2.8218 0.57812,4.1054 -0.01731,1.0036 -0.36797,1.9455 -0.71875,2.7071 -0.17539,0.3808 -0.34908,0.7143 -0.48242,0.9961 -0.13334,0.2817 -0.24291,0.4882 -0.22852,0.7402 0.02151,0.3765 0.09621,0.6678 0.25196,0.8926 0.15574,0.2248 0.38663,0.3594 0.63671,0.4375 0.50018,0.1561 1.11445,0.1491 1.91602,0.3086 1.60315,0.3189 3.9558,1.2492 7.1094,5.2129 0.2124,0.267 0.5629,0.3515 0.9902,0.4003 0.4273,0.0489 0.9443,0.0355 1.502,-0.0312 1.1152,-0.1334 2.3831,-0.4817 3.3164,-1.0625 0.721,-0.4487 1.0331,-1.2549 1.3691,-1.957 0.336,-0.7021 0.6699,-1.2871 1.3379,-1.5 0.1189,-0.0379 0.3094,0.002 0.5586,0.1425 0.2492,0.1406 0.5368,0.3651 0.8301,0.5997 0.2933,0.2345 0.5921,0.4789 0.8925,0.6601 0.3005,0.1813 0.6143,0.3169 0.9454,0.2481 1.6748,-0.3481 2.0888,-1.0755 2.5644,-1.5879 0.2378,-0.2562 0.4931,-0.472 0.9981,-0.6426 C 29.9927,56.3721 31.0025,56.2706 32,56.25 Z"
+ id="rtid-path1429-2-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.0814,3.1631 -0.7923,5.2367 -1.6016,6.8906 -0.2394,0.4893 -0.8275,1.7184 -1.3867,3.0371 -0.5592,1.3188 -1.0905,2.7074 -1.2187,3.5957 -0.267,1.8487 0.5366,3.6171 1.4629,5.045 0.4631,0.7139 0.9603,1.3462 1.3789,1.8613 0.4186,0.5151 0.7637,0.9246 0.8984,1.1426 0.8016,1.2965 0.8652,2.8447 1.0879,4.1484 0.1113,0.6518 0.2614,1.2487 0.6094,1.7168 0.348,0.4681 0.903,0.7746 1.6953,0.8281 h 0.0078 0.0078 c 0.3917,0 1.073,-0.0847 1.9648,-0.2285 0.8919,-0.1438 1.9831,-0.3485 3.1465,-0.5898 2.3264,-0.4825 4.9363,-1.1135 6.8028,-1.7188 3.96,-1.2617 5.5671,-1.409 9.3945,-1.4785 v -0.5 c -4.0916,0.0678 -5.455,0.1989 -9.5449,1.502 h -0.002 c -1.8333,0.5946 -4.4372,1.225 -6.7519,1.705 -1.1574,0.2401 -2.2431,0.4438 -3.125,0.586 -0.8755,0.1411 -1.5546,0.2195 -1.8711,0.2207 -0.6838,-0.0474 -1.06,-0.2696 -1.3242,-0.625 -0.265,-0.3565 -0.4108,-0.8787 -0.5176,-1.5039 -0.2136,-1.2505 -0.2687,-2.8906 -1.1563,-4.3262 -0.1815,-0.2937 -0.5209,-0.6852 -0.9355,-1.1953 -0.4146,-0.5102 -0.8983,-1.1266 -1.3457,-1.8164 -0.8949,-1.3797 -1.6286,-3.0396 -1.3887,-4.7012 0.1099,-0.7609 0.6319,-2.1669 1.1856,-3.4727 0.5537,-1.3057 1.139,-2.5316 1.375,-3.0136 C 39.4461,37.3754 40.2065,35.4289 40.25,32 Z"
+ id="rtid-path1429-3-9-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccsccscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c -0.0032,2.801 -0.0472,2.5586 -0.6758,6.9707 -0.0738,0.5178 -0.5011,1.122 -0.9785,1.877 -0.4774,0.7549 -0.9906,1.671 -1.1562,2.8671 -0.2572,1.8565 -0.8222,2.6696 -1.3516,3.2872 -0.2647,0.3087 -0.5286,0.5682 -0.7422,0.8867 -0.2136,0.3185 -0.3654,0.6998 -0.3848,1.1972 -0.0204,0.5226 -0.1327,1.55 -0.1894,2.5528 -0.0284,0.5014 -0.043,0.9993 -0.0235,1.4355 0.0196,0.4362 0.0633,0.8064 0.1954,1.0918 0.2074,0.4483 0.2151,1.5997 0.123,2.7324 -0.0921,1.1328 -0.2531,2.2556 -0.2598,2.8575 -0.0109,0.9677 0.4244,1.628 1.0957,1.9687 0.6713,0.3407 1.5431,0.4053 2.4922,0.3711 1.8984,-0.0684 4.144,-0.5541 5.5469,-0.459 0.4439,0.0301 1.0705,-0.1419 1.8926,-0.4121 0.8221,-0.2702 1.815,-0.6496 2.8789,-1.0684 2.1264,-0.8369 4.5333,-1.8329 6.3516,-2.4277 l 0.0039,-0.0019 C 90.5648,56.4658 92.2928,56.2606 96,56.25 v -0.5 c -3.9621,0 -5.4573,0.1992 -9.5859,1.502 h -0.002 c -1.8515,0.6054 -4.2614,1.6044 -6.3828,2.4394 -1.0607,0.4175 -2.0477,0.7944 -2.8516,1.0586 -0.8038,0.2642 -1.4486,0.4059 -1.7031,0.3887 -1.5472,-0.105 -3.7727,0.3913 -5.5976,0.457 -0.9125,0.0329 -1.7151,-0.0479 -2.2481,-0.3184 -0.533,-0.2704 -0.8316,-0.6861 -0.8223,-1.5156 0.0058,-0.5136 0.1661,-1.67 0.2598,-2.8222 0.0937,-1.1523 0.1519,-2.2932 -0.168,-2.9844 -0.0741,-0.1603 -0.134,-0.4964 -0.1523,-0.9043 -0.0183,-0.408 -0.0044,-0.8907 0.0234,-1.3828 0.0557,-0.9843 0.1693,-1.9952 0.1914,-2.5625 0.016,-0.4109 0.1255,-0.676 0.3008,-0.9375 0.1754,-0.2615 0.4271,-0.5152 0.7071,-0.8418 0.5599,-0.6532 1.1982,-1.6047 1.4667,-3.543 0.1512,-1.092 0.6179,-1.9328 1.084,-2.6699 0.4662,-0.7372 0.9476,-1.3614 1.0489,-2.0723 C 72.2188,34.4749 72.25,35.1813 72.25,32 Z"
+ id="rtid-path1429-3-6-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.01,1.3903 -0.281,2.2117 -0.703,2.707 -0.454,0.5321 -1.137,1.0722 -1.752,2.502 -0.863,2.0036 -1.6884,4.2596 -1.9669,6.2129 -0.0653,0.4591 0.13,0.874 0.4102,1.2402 0.2797,0.3662 0.6537,0.7069 1.0217,1.0606 0.735,0.7073 1.418,1.4408 1.39,2.3847 -0.041,1.4105 -0.495,2.7804 -0.937,3.8867 -0.221,0.5532 -0.438,1.0397 -0.6,1.4395 -0.162,0.3998 -0.286,0.6846 -0.261,0.9766 0.066,0.7929 0.57,1.5954 1.302,2.3769 0.732,0.7816 1.703,1.542 2.758,2.2149 2.11,1.3456 4.522,2.3476 6.088,2.3476 0.112,0 0.238,-0.0782 0.291,-0.1621 0.053,-0.0839 0.066,-0.162 0.074,-0.2402 0.017,-0.1565 0.001,-0.3311 -0.027,-0.543 -0.057,-0.4238 -0.172,-0.9818 -0.279,-1.5879 -0.215,-1.2122 -0.357,-2.6219 -0.026,-3.2949 0.576,-1.1684 1.765,-1.8992 3.121,-2.4238 1.356,-0.5247 2.856,-0.8346 4.006,-1.1993 0.396,-0.1256 0.609,-0.0525 0.819,0.1387 0.209,0.1912 0.393,0.5411 0.552,0.9512 0.16,0.4101 0.299,0.8737 0.469,1.2929 0.17,0.4193 0.366,0.8047 0.703,1.0372 0.281,0.1939 0.726,0.3476 1.307,0.498 0.58,0.1504 1.288,0.2854 2.045,0.3867 1.414,0.1893 3.205,0.2343 4.445,0.0469 v -0.5 c -1.174,0.2223 -2.9,0.1551 -4.379,-0.043 -0.739,-0.099 -1.431,-0.2311 -1.986,-0.375 -0.556,-0.1438 -0.985,-0.3109 -1.149,-0.4238 -0.185,-0.1281 -0.366,-0.4274 -0.523,-0.8144 -0.157,-0.3871 -0.297,-0.8511 -0.467,-1.2872 -0.169,-0.436 -0.365,-0.8498 -0.682,-1.1386 -0.317,-0.2889 -0.78,-0.4124 -1.304,-0.2461 -1.107,0.351 -2.628,0.6636 -4.037,1.209 -1.41,0.5453 -2.73,1.3324 -3.389,2.6699 -0.462,0.9376 -0.235,2.3721 -0.018,3.6015 0.109,0.6148 0.224,1.1772 0.276,1.5684 0.021,0.1596 0.023,0.2624 0.021,0.3457 -1.36,-0.0479 -3.679,-0.957 -5.681,-2.2344 -1.028,-0.6556 -1.971,-1.3984 -2.662,-2.1367 -0.692,-0.7383 -1.12,-1.4732 -1.17,-2.0762 -0.005,-0.0547 0.07,-0.362 0.226,-0.748 0.157,-0.386 0.376,-0.8771 0.602,-1.4414 0.451,-1.1286 0.928,-2.5515 0.972,-4.0586 0.035,-1.1881 -0.799,-2.0402 -1.545,-2.7578 -0.372,-0.3588 -0.729,-0.6911 -0.968,-1.0039 -0.2396,-0.3129 -0.3529,-0.5852 -0.3128,-0.8672 0.2668,-1.8693 1.0748,-4.0998 1.9298,-6.084 0.581,-1.3507 1.169,-1.7875 1.672,-2.377 0.502,-0.5894 0.859,-1.3225 0.824,-3.0312 z"
+ id="rtid-path1429-3-6-7-2-8"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,23.75 c -1.652,-0.0497 -2.58,0.5216 -3.203,1.0195 -0.312,0.249 -0.551,0.4693 -0.75,0.5782 -0.199,0.1088 -0.329,0.1354 -0.578,0.0253 -1.422,-0.6283 -2.855,-0.8313 -5.045,-0.121 h -0.002 c -0.209,0.0678 -0.656,-0.0762 -1.127,-0.2657 -0.236,-0.0947 -0.477,-0.1915 -0.719,-0.248 -0.241,-0.0566 -0.495,-0.078 -0.732,0.0312 -1.414,0.652 -2.513,1.7213 -3.395,2.5996 -0.441,0.4392 -0.83,0.8311 -1.162,1.0977 -0.332,0.2666 -0.598,0.3855 -0.769,0.373 -0.267,-0.0193 -0.473,-0.1723 -0.696,-0.4726 -0.222,-0.3003 -0.432,-0.7336 -0.666,-1.2149 -0.467,-0.9625 -1.03,-2.1262 -2.138,-2.8105 -1.134,-0.6998 -2.701,-0.8763 -3.987,-1.0762 -0.642,-0.0999 -1.217,-0.2054 -1.607,-0.3574 -0.195,-0.076 -0.341,-0.1633 -0.432,-0.252 -0.091,-0.0886 -0.133,-0.1699 -0.142,-0.2871 0,0.0087 0.014,-0.0882 0.084,-0.2207 0.069,-0.1324 0.181,-0.3062 0.32,-0.5058 0.277,-0.3993 0.661,-0.908 1.053,-1.4922 0.783,-1.1684 1.605,-2.6388 1.652,-4.2051 0.035,-1.1613 -0.746,-2.2622 -1.461,-3.2598 -0.358,-0.4987 -0.704,-0.9721 -0.941,-1.3945 -0.237,-0.4224 -0.35,-0.7844 -0.309,-1.0527 0.056,-0.36926 0.198,-0.59839 0.397,-0.78127 0.198,-0.18288 0.463,-0.31486 0.755,-0.43555 0.293,-0.12068 0.61,-0.22798 0.901,-0.38671 0.29,-0.15874 0.563,-0.38099 0.713,-0.72071 0.453,-1.0275 0.491,-2.32339 0.435,-3.70508 C 104.393,2.8273 104.235,1.35423 104.25,0 h -0.5 c 0.004,1.32161 0.147,2.95144 0.199,4.22852 0.055,1.35795 0.001,2.59311 -0.392,3.48437 -0.094,0.21123 -0.259,0.35278 -0.496,0.48242 -0.238,0.12965 -0.539,0.23504 -0.85,0.36328 -0.311,0.12825 -0.635,0.28153 -0.906,0.53125 -0.272,0.24973 -0.482,0.60211 -0.553,1.07226 -0.069,0.4539 0.109,0.9088 0.369,1.3731 0.26,0.4642 0.616,0.9459 0.971,1.4414 0.71,0.9909 1.396,2.0367 1.369,2.9531 -0.042,1.3981 -0.804,2.8013 -1.568,3.9414 -0.383,0.5701 -0.763,1.0749 -1.049,1.4883 -0.144,0.2067 -0.264,0.3903 -0.352,0.5566 -0.087,0.1663 -0.156,0.3092 -0.14,0.4942 0.019,0.2365 0.129,0.4467 0.291,0.6035 0.161,0.1567 0.365,0.2683 0.599,0.3593 0.468,0.1822 1.062,0.2858 1.711,0.3868 1.298,0.2019 2.815,0.3993 3.801,1.0078 0.955,0.5896 1.485,1.643 1.951,2.6035 0.233,0.4803 0.45,0.9342 0.717,1.2949 0.267,0.3607 0.612,0.6413 1.06,0.6738 0.394,0.0285 0.75,-0.1857 1.12,-0.4824 0.369,-0.2966 0.76,-0.6977 1.199,-1.1347 0.877,-0.8742 1.938,-1.8922 3.252,-2.4981 0.084,-0.0389 0.221,-0.0438 0.408,0 0.187,0.0439 0.412,0.1305 0.646,0.2246 0.468,0.1883 0.975,0.4402 1.471,0.2793 2.105,-0.6821 3.34,-0.4946 4.69,0.1016 0.37,0.1634 0.729,0.1142 1.017,-0.043 0.288,-0.1572 0.531,-0.3925 0.824,-0.6269 0.548,-0.4374 1.555,-0.8873 2.891,-0.9102 z"
+ id="rtid-path1429-3-6-7-5-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,0 c 0.0141,2.21123 -0.5181,3.78788 -1.1719,5.08594 -0.6822,1.35448 -1.4918,2.7313 -1.8261,5.07816 -0.0689,0.4829 0.1369,0.9762 0.4355,1.4921 0.2986,0.516 0.7066,1.0613 1.1133,1.6211 0.8133,1.1198 1.5987,2.3053 1.5722,3.2696 -0.036,1.3189 -0.8124,2.4014 -1.6425,3.3301 -0.4151,0.4643 -0.8408,0.8863 -1.1836,1.2832 -0.3428,0.3969 -0.6164,0.7663 -0.6836,1.1796 -0.0977,0.5998 -0.3105,2.0169 -0.2871,3.4493 0.0233,1.4323 0.2521,2.9131 1.2168,3.6015 1.2145,0.8668 3.0917,0.7818 4.8691,0.543 0.8887,-0.1194 1.7553,-0.2841 2.4981,-0.4102 0.7427,-0.126 1.3715,-0.2096 1.7324,-0.1836 0.2452,0.0177 0.4744,-0.0759 0.6777,-0.2207 0.2033,-0.1447 0.3914,-0.3426 0.584,-0.5781 0.3852,-0.471 0.7879,-1.0975 1.2598,-1.7558 0.9438,-1.3167 2.1539,-2.7477 3.9257,-3.3028 0.8452,-0.2647 1.3565,-0.8408 1.8145,-1.332 0.458,-0.4912 0.8506,-0.8908 1.4961,-0.9902 0.556,-0.0857 1.0082,0.0394 1.4805,0.2929 0.4722,0.2535 0.9536,0.6415 1.5097,1.0528 1.0641,0.7867 2.7158,1.671 4.8594,1.7441 v -0.5 c -2.1892,0 -3.4725,-0.8405 -4.5625,-1.6465 -0.545,-0.403 -1.0373,-0.8057 -1.5703,-1.0918 -0.5331,-0.2861 -1.1196,-0.4495 -1.793,-0.3457 -0.8179,0.1261 -1.3223,0.6482 -1.7851,1.1445 -0.4629,0.4964 -0.8942,0.973 -1.5977,1.1934 -1.9429,0.6086 -3.2225,2.1495 -4.1836,3.4902 -0.4805,0.6704 -0.8852,1.2963 -1.2402,1.7305 -0.1775,0.2171 -0.3426,0.384 -0.4864,0.4863 -0.1437,0.1024 -0.2546,0.1361 -0.3535,0.1289 -0.4686,-0.0338 -1.1014,0.0622 -1.8515,0.1895 -0.7502,0.1273 -1.6094,0.2912 -2.4805,0.4082 -1.7422,0.234 -3.5205,0.2557 -4.5137,-0.4531 -0.7006,-0.5001 -0.9834,-1.8278 -1.0058,-3.2051 -0.0225,-1.3773 0.1852,-2.7701 0.2812,-3.3594 0.0373,-0.2296 0.245,-0.5572 0.5684,-0.9316 0.3234,-0.3745 0.7483,-0.7992 1.1758,-1.2774 0.8548,-0.9562 1.7302,-2.1441 1.7714,-3.6504 0.0337,-1.228 -0.85,-2.452 -1.6679,-3.5781 -0.409,-0.563 -0.8081,-1.0994 -1.084,-1.5762 C 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z"
+ id="rtid-path1429-3-6-7-5-3-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,0 c -0.3359,0.76718 -0.6117,1.75827 -0.8652,2.49023 -0.2953,0.85257 -0.7736,1.73886 -2.0371,2.8125 -0.0899,0.07641 -0.1225,0.14773 -0.17,0.24219 -0.0474,0.09447 -0.0972,0.20857 -0.1484,0.34375 -0.1025,0.27036 -0.2167,0.62378 -0.3398,1.03711 -0.2463,0.82667 -0.5254,1.89254 -0.7911,2.9707 -0.2656,1.07822 -0.5175,2.16932 -0.707,3.04692 -0.1895,0.8775 -0.316,1.5079 -0.3359,1.7851 -0.1397,1.937 0.3521,3.6412 0.8789,4.9746 0.2634,0.6668 0.5365,1.2422 0.7441,1.7051 0.2076,0.4629 0.341,0.8288 0.3516,0.9883 0.0189,0.2839 -0.0597,0.7845 -0.1719,1.3652 -0.1122,0.5807 -0.2521,1.251 -0.332,1.9258 -0.08,0.6748 -0.1028,1.3556 0.0332,1.9727 0.136,0.617 0.4448,1.1779 1.0078,1.539 1.17,0.7503 3.167,0.7102 5.082,0.5528 0.9575,-0.0788 1.8928,-0.1948 2.6778,-0.2852 0.7849,-0.0904 1.4326,-0.1503 1.7558,-0.127 0.4446,0.0321 1.7984,0.3583 3.3027,0.5254 1.5044,0.1671 3.199,0.1866 4.4942,-0.4511 0.3072,-0.1512 0.4947,-0.4545 0.666,-0.8028 0.1713,-0.3483 0.3191,-0.7578 0.4688,-1.1562 0.1496,-0.3985 0.3018,-0.7857 0.4648,-1.0781 0.163,-0.2925 0.3354,-0.4694 0.4727,-0.5137 2.0531,-0.6641 3.0053,-1.0705 3.9199,-1.3047 C 61.0267,24.3397 62.2522,24.2595 64,24.25 v -0.5 c -2.022,0 -2.984,0.0765 -3.9512,0.3242 -0.9672,0.2477 -1.9119,0.6529 -3.9511,1.3125 -0.3424,0.1107 -0.5666,0.4063 -0.7559,0.7461 -0.1894,0.3398 -0.3452,0.7448 -0.4961,1.1465 -0.1509,0.4017 -0.2965,0.8008 -0.4492,1.1113 -0.1527,0.3105 -0.3217,0.5172 -0.4375,0.5742 -1.132,0.5574 -2.7537,0.5651 -4.2188,0.4024 -1.465,-0.1628 -2.7313,-0.4847 -3.3222,-0.5274 -0.4216,-0.0304 -1.0588,0.0381 -1.8477,0.129 -0.7889,0.0908 -1.7186,0.2075 -2.6621,0.2851 -1.8871,0.1552 -3.842,0.1195 -4.7715,-0.4766 -0.4383,-0.2811 -0.6726,-0.6961 -0.789,-1.2246 -0.1165,-0.5284 -0.1019,-1.1612 -0.0254,-1.8066 0.0764,-0.6455 0.2129,-1.3026 0.3261,-1.8887 0.1132,-0.586 0.2084,-1.0932 0.1817,-1.4941 -0.0219,-0.3283 -0.1854,-0.6894 -0.3965,-1.1602 -0.2112,-0.4707 -0.4783,-1.0352 -0.7344,-1.6836 -0.5122,-1.2967 -0.9758,-2.9217 -0.8437,-4.7539 0.0112,-0.1567 0.1379,-0.8449 0.3261,-1.7168 0.1883,-0.8718 0.4387,-1.9599 0.7032,-3.0332 C 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z"
+ id="rtid-path1429-3-6-7-5-3-5-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,23.75 c -1.3299,0 -2.8706,0.7213 -3.8457,1.7207 -0.3945,0.4044 -0.6149,0.8586 -0.8398,1.2031 -0.225,0.3445 -0.4227,0.5676 -0.8028,0.6485 -0.1454,0.0309 -0.3936,-0.0511 -0.6992,-0.2559 -0.3056,-0.2047 -0.6543,-0.5102 -1.0195,-0.8144 -0.3653,-0.3043 -0.748,-0.6092 -1.1465,-0.8184 -0.3986,-0.2092 -0.8334,-0.3266 -1.2617,-0.1914 -0.7564,0.2386 -1.2942,0.779 -1.7754,1.3066 -0.4813,0.5277 -0.9146,1.0441 -1.4141,1.3125 -1.8557,0.9973 -3.9321,1.0397 -4.7773,0.9785 -0.0087,-6e-4 -0.0233,4e-4 -0.0684,-0.0546 -0.0451,-0.0551 -0.1028,-0.1587 -0.1562,-0.293 -0.107,-0.2686 -0.2055,-0.6574 -0.3145,-1.0645 -0.109,-0.4071 -0.2287,-0.8339 -0.3984,-1.2031 C 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 c 0.02452,-0.1264 0.06508,-0.2136 0.11328,-0.2675 0.0482,-0.054 0.10401,-0.0869 0.21484,-0.1016 -0.00851,0.0011 0.04556,0.0038 0.13672,0.0644 0.09116,0.0607 0.20973,0.1666 0.33984,0.3028 0.26022,0.2723 0.56755,0.6647 0.88086,1.0781 0.31331,0.4134 0.63375,0.848 0.93555,1.2149 0.3018,0.3668 0.56991,0.6661 0.85742,0.8242 0.33213,0.1826 0.70718,0.1503 1.0293,0.0136 0.32211,-0.1366 0.6131,-0.3706 0.87109,-0.6289 0.258,-0.2582 0.48087,-0.5423 0.64649,-0.7949 C 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 c -0.12698,0.1422 -0.19631,0.3178 -0.23242,0.5039 -0.07223,0.3724 -0.02356,0.8037 0.05664,1.25 0.08019,0.4463 0.19809,0.9069 0.29297,1.3086 0.09487,0.4018 0.1615,0.7548 0.15625,0.92 -0.04886,1.536 0.08969,3.3032 0.24805,4.7792 0.15835,1.4761 0.33813,2.6827 0.36523,3.0079 0.04642,0.5571 0.38432,2.0296 0.89648,3.4765 0.25609,0.7235 0.55414,1.4323 0.88868,1.9961 0.33453,0.5638 0.69503,1.0073 1.17578,1.1348 0.1745,0.0463 0.36547,0.0224 0.50781,-0.0684 0.14234,-0.0907 0.23291,-0.2248 0.30273,-0.3711 0.13964,-0.2925 0.20818,-0.6624 0.28516,-1.0644 0.15395,-0.8041 0.33801,-1.7199 0.77734,-2.1465 0.11912,-0.1157 0.33078,-0.1858 0.61719,-0.1973 0.28642,-0.0115 0.63462,0.037 0.98632,0.1172 0.7034,0.1604 1.4158,0.444 1.752,0.582 0.1713,0.0704 0.3411,0.278 0.4863,0.5938 0.1452,0.3158 0.2635,0.721 0.3711,1.123 0.1076,0.4021 0.2041,0.8 0.332,1.1211 0.064,0.1606 0.1357,0.3033 0.2344,0.4239 0.0987,0.1205 0.2438,0.2254 0.4199,0.2382 0.9174,0.0665 3.0632,0.03 5.0488,-1.0371 0.6228,-0.3347 1.0775,-0.9033 1.5469,-1.4179 0.4694,-0.5147 0.9439,-0.9727 1.5567,-1.166 0.2553,-0.0806 0.5432,-0.0181 0.8789,0.1582 0.3357,0.1762 0.6996,0.4606 1.0586,0.7597 0.3589,0.2991 0.7145,0.6107 1.0625,0.8438 0.3479,0.2331 0.7032,0.4101 1.08,0.33 0.5421,-0.1152 0.8678,-0.4813 1.1172,-0.8632 0.2494,-0.3819 0.4521,-0.7915 0.7793,-1.127 C 29.3257,24.986 30.9022,24.3358 32,24.25 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-3-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="rotate(180,64,63.9999)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.7498 0,103.7498 v 0.5 c 0.7015,0 2.386,0.2502 3.914,0.1502 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.1498 -1.7,0.1498 v 0.5 c 0.75,0 1.23,0.0502 1.88,-0.2498 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.2498 c 0.8,0 1.49,-0.2498 2.04,-0.7498 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.5498 -1.7,0.6498 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.2498 c 0.85,0 1.51,-0.4498 2.11,-1.0498 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.8498 -1.77,0.9498 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/34.svg b/src/asset/tile/frontier/basic/34.svg
index 877173b..aeb390c 100644
--- a/src/asset/tile/frontier/basic/34.svg
+++ b/src/asset/tile/frontier/basic/34.svg
@@ -1,73 +1,312 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopandleftborders.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2043" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g2077" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z" id="rtid-path2045" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z" id="rtid-path2047" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z" id="rtid-path2049" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z" id="rtid-path2051" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z" id="rtid-path2053" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z" id="rtid-path2055" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z" id="rtid-path2057" style="fill:#ffffff;stroke-width:0.5215" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z" id="rtid-path2059" style="fill:#ffffff;stroke-width:0.5214" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z" id="rtid-path2061" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z" id="rtid-path2063" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccsssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z" id="rtid-path2065" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z" id="rtid-path2067" style="fill:#ffffff;stroke-width:0.5232" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z" id="rtid-path2069" style="fill:#ffffff;stroke-width:0.5231" ns2:nodetypes="cccsssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z" id="rtid-path2071" style="fill:#ffffff;stroke-width:0.5212" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z" id="rtid-path2073" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z" id="rtid-path2075" style="fill:#ffffff;stroke-width:0.5213" ns2:nodetypes="cccssssssssssssssccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="94.0703" ns1:cy="230.083" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="0.975807">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2043)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1931" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 7.75,96 C 7.74413,96.0179 7.6706,96.2775 7.66406,96.2969 7.60119,96.4836 7.50682,96.7367 7.39258,97.0449 7.1641,97.6613 6.85018,98.4935 6.51562,99.457 5.84652,101.384 5.09228,103.836 4.75977,106.164 V 106.166 C 4.27027,109.713 4.25383,117.154 4.32422,118.414 4.36917,119.211 4.86061,120.005 5.58203,120.771 6.30345,121.538 7.26793,122.279 8.31836,122.938 10.4192,124.254 12.8433,125.243 14.4141,125.35 H 14.4219 14.4297 C 15.2725,125.35 16.3526,124.72 17.7422,123.971 19.1313,123.221 20.7935,122.329 22.6152,121.738 26.5001,120.5 31.1618,120.265 32,120.25 V 119.75 C 31.3263,119.75 26.5914,119.947 22.4648,121.262 H 22.4629 C 20.5853,121.871 18.8943,122.779 17.5039,123.529 16.116,124.278 14.9938,124.846 14.4355,124.848 13.0448,124.75 10.6273,123.794 8.58398,122.514 7.56017,121.872 6.62615,121.149 5.94727,120.428 5.26838,119.707 4.85826,118.99 4.82422,118.387 4.76057,117.247 4.77936,109.687 5.25586,106.234 5.58032,103.963 6.32414,101.534 6.98828,99.6211 7.32035,98.6647 7.63203,97.8373 7.86133,97.2188 7.97598,96.9095 8.07015,96.6528 8.13672,96.4551 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z" id="rtid-path1429-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,96 C 39.7589,96.1209 39.7815,96.4553 39.7949,96.6895 39.8157,97.0537 39.8346,97.5392 39.8301,98.0879 39.8211,99.1853 39.7142,100.535 39.3457,101.643 39.0687,102.475 38.5295,103.063 37.9902,103.717 37.451,104.37 36.915,105.096 36.7617,106.164 36.6377,107.029 37.1772,107.985 37.6875,109.01 38.1978,110.034 38.7,111.113 38.6699,112.068 38.5768,115.018 38.3864,116.694 38.4316,117.465 38.4718,118.154 38.4286,119.184 38.6504,120.219 38.8722,121.253 39.378,122.311 40.5059,123.008 41.5905,123.678 42.8156,123.789 43.9336,123.754 45.0516,123.718 46.0824,123.542 46.752,123.588 47.2156,123.619 48.0051,123.932 48.9785,124.15 49.952,124.369 51.1332,124.484 52.4453,124.088 52.6834,124.016 53.0799,123.819 53.623,123.545 54.1662,123.271 54.8285,122.924 55.4941,122.576 56.1597,122.228 56.8282,121.878 57.3789,121.6 57.9297,121.322 58.382,121.112 58.5391,121.061 60.5622,120.404 61.7683,120.205 62.5352,120.166 63.1712,120.134 63.6896,120.222 64,120.25 V 119.75 C 63.751,119.75 63.3364,119.624 62.5098,119.666 61.6832,119.708 60.435,119.919 58.3848,120.584 58.1343,120.665 57.7103,120.872 57.1543,121.152 56.5983,121.433 55.9293,121.785 55.2637,122.133 54.598,122.481 53.9344,122.826 53.3965,123.098 52.8586,123.369 52.4188,123.574 52.3008,123.609 51.0931,123.974 50.0162,123.87 49.0898,123.662 48.1635,123.454 47.4105,123.13 46.7852,123.088 46.0016,123.035 44.991,123.22 43.918,123.254 42.8449,123.288 41.7295,123.177 40.7676,122.582 39.7732,121.967 39.3432,121.067 39.1387,120.113 38.9342,119.16 38.9745,118.171 38.9316,117.436 38.8943,116.8 39.0763,115.048 39.1699,112.084 39.2057,110.949 38.6476,109.817 38.1348,108.787 37.6219,107.758 37.1741,106.82 37.2578,106.236 37.3927,105.297 37.8477,104.674 38.375,104.035 38.9023,103.396 39.5044,102.75 39.8203,101.801 40.2175,100.606 40.3209,99.2174 40.3301,98.0918 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z" id="rtid-path1429-3-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,119.75 C 95.8696,119.75 95.4649,119.725 94.9004,119.707 94.3359,119.689 93.5984,119.677 92.752,119.707 91.059,119.768 88.9282,119.992 86.8516,120.652 H 86.8496 C 83.1999,121.836 82.072,120.946 79.9922,120.918 79.4506,120.911 78.7617,121.114 77.9551,121.352 77.1484,121.589 76.236,121.869 75.3184,122.037 74.4007,122.205 73.4814,122.26 72.666,122.07 71.8506,121.88 71.1366,121.458 70.5781,120.625 69.9512,119.69 69.9225,118.382 70.0879,117.043 70.2533,115.704 70.6068,114.358 70.6602,113.328 70.693,112.697 70.6395,111.535 70.6426,110.078 70.6456,108.621 70.7028,106.882 70.9512,105.15 71.2795,102.862 71.2675,102.437 71.9258,100.531 72.2674,99.5424 72.3393,99.0056 72.3242,98.4277 72.3091,97.8498 72.219,97.2389 72.25,96 H 71.75 C 71.7428,97.0234 71.8117,97.9639 71.8242,98.4414 71.8381,98.9747 71.7841,99.409 71.4531,100.367 70.7864,102.297 70.7839,102.802 70.457,105.08 70.2035,106.847 70.1457,108.607 70.1426,110.076 70.1395,111.545 70.1898,112.734 70.1602,113.303 70.1117,114.238 69.7626,115.599 69.5918,116.982 69.421,118.366 69.4217,119.798 70.1621,120.902 70.7884,121.836 71.6344,122.345 72.5508,122.559 73.4671,122.772 74.4525,122.703 75.4082,122.527 76.3639,122.352 77.2927,122.069 78.0957,121.832 78.8987,121.595 79.5875,121.413 79.9863,121.418 81.9203,121.444 83.2538,122.343 87.0039,121.127 L 87.002,121.129 C 89.0153,120.489 91.1058,120.267 92.7695,120.207 93.6014,120.177 94.326,120.189 94.8828,120.207 95.315,120.221 95.7909,120.243 96,120.25 Z" id="rtid-path1429-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccscsccccscccccscccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,119.75 C 125.968,119.784 125.01,119.665 124.115,119.625 123.221,119.585 122.397,119.631 120.719,119.994 120.567,120.027 120.238,120.034 119.848,120.014 119.457,119.993 118.997,119.951 118.535,119.912 118.073,119.873 117.608,119.835 117.201,119.824 116.795,119.813 116.455,119.822 116.188,119.906 115.308,120.185 114.615,120.122 114.02,119.881 113.424,119.639 112.923,119.207 112.48,118.725 112.038,118.243 111.657,117.714 111.287,117.291 110.917,116.868 110.546,116.512 110.061,116.512 108.572,116.412 107.025,116.689 105.883,116.645 105.31,116.622 104.853,116.518 104.551,116.293 104.249,116.068 104.058,115.719 104.035,115.068 V 115.062 115.057 C 103.979,114.379 103.604,113.352 103.314,112.023 103.025,110.695 102.819,109.094 103.078,107.389 103.224,106.427 103.538,105.716 103.854,104.971 104.169,104.225 104.482,103.445 104.584,102.396 104.715,101.052 104.631,100.276 104.514,99.4375 104.397,98.5986 104.25,97.6918 104.25,96 H 103.75 C 103.769,97.4996 103.91,98.7336 104.018,99.5059 104.133,100.337 104.215,101.042 104.088,102.348 103.993,103.322 103.705,104.035 103.393,104.775 103.08,105.516 102.739,106.284 102.582,107.314 102.31,109.105 102.53,110.768 102.826,112.129 103.123,113.49 103.494,114.578 103.537,115.1 V 115.088 C 103.564,115.837 103.821,116.374 104.252,116.695 104.683,117.017 105.243,117.121 105.863,117.145 107.104,117.192 108.637,116.915 110.043,117.012 H 110.053 110.061 C 110.275,117.012 110.565,117.226 110.91,117.621 111.255,118.016 111.644,118.552 112.113,119.062 112.582,119.573 113.136,120.061 113.832,120.344 114.528,120.626 115.363,120.692 116.338,120.383 116.478,120.339 116.801,120.314 117.188,120.324 117.574,120.335 118.032,120.371 118.492,120.41 118.952,120.449 119.415,120.491 119.82,120.512 120.225,120.533 120.564,120.539 120.824,120.482 122.478,120.124 123.227,120.087 124.092,120.125 124.901,120.161 126.204,120.264 128,120.25 Z" id="rtid-path1429-3-6-7-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,64 C 103.752,64.7276 103.773,69.8956 103.102,74.3066 V 74.3086 C 102.846,76.1016 103.075,77.4813 103.379,78.5508 103.682,79.6168 104.043,80.3855 104.088,80.9004 104.108,81.4973 103.751,82.1522 103.176,82.8301 102.6,83.5093 101.823,84.2006 101.09,84.8828 100.356,85.565 99.6657,86.2353 99.252,86.9199 99.0451,87.2622 98.9048,87.613 98.8848,87.9746 98.8647,88.3362 98.9743,88.7028 99.2246,89.0332 99.2306,89.0411 99.2966,89.1646 99.3652,89.332 99.4339,89.4994 99.5177,89.7212 99.6191,89.9766 99.822,90.4872 100.093,91.1361 100.453,91.8008 101.173,93.1301 102.258,94.5413 103.912,94.9805 105.518,95.4067 107.608,94.9132 109.355,94.2754 110.229,93.9565 111.016,93.5986 111.607,93.2852 111.903,93.1284 112.15,92.9833 112.338,92.8574 112.526,92.7315 112.645,92.6603 112.74,92.5 112.839,92.3329 112.866,92.1453 112.881,91.9238 112.896,91.7023 112.89,91.4476 112.877,91.166 112.85,90.6029 112.789,89.937 112.77,89.2852 112.75,88.6333 112.776,87.9953 112.904,87.5137 113.033,87.032 113.237,86.7351 113.59,86.623 113.75,86.5725 114.162,86.6393 114.654,86.8398 115.147,87.0404 115.725,87.3472 116.299,87.6602 116.873,87.9731 117.441,88.294 117.932,88.5273 118.177,88.644 118.403,88.7388 118.607,88.8008 118.811,88.8628 118.992,88.9002 119.182,88.8555 121.333,88.3476 125.412,88.2846 128,88.25 V 87.75 C 125.417,87.7844 121.404,87.8178 119.068,88.3691 119.039,88.376 118.916,88.3722 118.752,88.3223 118.588,88.2723 118.379,88.1849 118.146,88.0742 117.681,87.8528 117.116,87.5357 116.539,87.2207 115.962,86.9057 115.373,86.5926 114.844,86.377 114.314,86.1613 113.849,86.0168 113.439,86.1465 112.886,86.3219 112.574,86.8157 112.422,87.3848 112.27,87.9539 112.25,88.6261 112.27,89.2988 112.289,89.9715 112.351,90.6439 112.377,91.1895 112.39,91.4622 112.395,91.7035 112.383,91.8906 112.37,92.0777 112.331,92.2116 112.311,92.2461 112.332,92.2096 112.226,92.3296 112.059,92.4414 111.892,92.5532 111.658,92.693 111.373,92.8438 110.804,93.1452 110.035,93.4961 109.184,93.8066 107.482,94.4278 105.443,94.8703 104.041,94.498 102.593,94.1138 101.582,92.8363 100.893,91.5625 100.548,90.9256 100.284,90.295 100.084,89.791 99.9839,89.539 99.9006,89.3192 99.8281,89.1426 99.7557,88.9659 99.7079,88.8424 99.623,88.7305 99.4345,88.4816 99.3709,88.2521 99.3848,88.002 99.3986,87.7518 99.5002,87.4747 99.6797,87.1777 100.039,86.5837 100.704,85.9267 101.432,85.25 102.159,84.5733 102.946,83.8744 103.557,83.1543 104.167,82.4342 104.617,81.681 104.588,80.8789 V 80.873 80.8672 C 104.531,80.1822 104.151,79.4391 103.859,78.4141 103.568,77.3895 103.352,76.0967 103.596,74.3809 V 74.3789 C 104.3,69.7492 104.25,64.3795 104.25,64 Z" id="rtid-path1429-3-6-7-5-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,64 C 71.7591,65.5714 71.8302,67.0066 71.8008,67.8496 71.7693,68.7512 71.6353,69.3402 71.207,69.9727 71.1257,70.0927 71.0312,70.1192 70.8047,70.0977 70.5782,70.0761 70.2661,69.979 69.9316,69.8652 69.5972,69.7515 69.2384,69.6232 68.8789,69.5586 68.5194,69.494 68.146,69.4904 67.8164,69.668 67.094,70.0569 66.7262,70.9815 66.4727,71.918 66.2191,72.8545 66.1009,73.8313 66.0215,74.3535 65.4786,77.9211 65.8996,84.6875 66.002,85.9199 66.0163,86.3207 66.1588,86.6625 66.4004,86.9141 66.642,87.1656 66.9689,87.3267 67.3438,87.4297 68.0935,87.6357 69.0544,87.6218 70.0977,87.5332 72.1841,87.3561 74.6131,86.8655 75.9863,86.9648 H 75.9941 76.0039 C 76.5972,86.9648 77.62,87.3999 78.9336,87.707 80.2472,88.0141 81.88,88.1748 83.7852,87.5723 84.5283,87.3372 85.3891,87.4751 86.2734,87.666 87.1578,87.857 88.0565,88.1024 88.9004,87.9785 90.0304,87.8127 90.8129,87.8754 91.8203,87.9824 92.7675,88.083 94.2477,88.2336 96,88.25 V 87.75 C 94.077,87.75 92.8875,87.5921 91.873,87.4844 90.8586,87.3767 90.0098,87.309 88.8281,87.4824 88.1346,87.5842 87.277,87.3716 86.3789,87.1777 85.4808,86.9838 84.5334,86.8095 83.6348,87.0938 81.8313,87.6641 80.3094,87.5158 79.0469,87.2207 77.7869,86.9261 76.8154,86.4686 76.0098,86.4668 74.4825,86.359 72.0921,86.8624 70.0566,87.0352 69.0369,87.1217 68.1115,87.1218 67.4766,86.9473 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 C 66.4017,84.7115 65.9924,77.8679 66.5156,74.4297 66.5976,73.8902 66.7142,72.9383 66.9551,72.0488 67.1959,71.1594 67.5811,70.3614 68.0527,70.1074 68.2373,70.008 68.4868,69.9965 68.7891,70.0508 69.0913,70.1051 69.4342,70.2231 69.7715,70.3379 70.1088,70.4526 70.4383,70.5655 70.7559,70.5957 71.0734,70.6259 71.4237,70.5452 71.6211,70.2539 72.1061,69.5378 72.2658,68.8132 72.2988,67.8672 72.3318,66.9211 72.25,65.7359 72.25,64 Z" id="rtid-path1429-3-6-7-5-3-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,64 C 39.7459,64.9064 39.7094,66.456 39.5938,67.8125 39.4699,69.2642 39.2467,70.7154 38.8984,71.543 38.6239,72.1942 37.7361,73.4248 37.0762,74.6816 36.746,75.3104 36.4705,75.9506 36.3555,76.5664 36.2404,77.1822 36.2928,77.7918 36.6562,78.2793 38.5344,80.7983 38.7552,82.977 38.9316,84.4258 39.0198,85.1502 39.062,85.7146 39.4277,86.0723 39.6106,86.2511 39.8772,86.3347 40.1738,86.3203 40.4705,86.3059 40.8126,86.2101 41.2461,86.0371 41.5488,85.9163 41.7646,85.8883 41.9062,85.9082 42.0479,85.9281 42.1291,85.9825 42.2129,86.0898 42.3805,86.3045 42.4868,86.7729 42.5879,87.3066 42.689,87.8404 42.7964,88.4382 43.0938,88.9434 43.3911,89.4485 43.9112,89.8437 44.7051,89.8984 H 44.7148 44.7227 C 46.2229,89.8984 48.5984,89.0436 52.3027,87.8691 52.7323,87.7329 53.7019,87.8992 54.666,88.1191 55.6302,88.339 56.5837,88.6034 57.2617,88.4766 58.7344,88.2007 59.579,88.1561 60.4805,88.1738 61.3169,88.1902 62.5516,88.259 64,88.25 V 87.75 C 62.3616,87.7738 61.4146,87.692 60.4902,87.6738 59.5659,87.6557 58.6677,87.7038 57.1699,87.9844 56.7295,88.0668 55.7474,87.854 54.7773,87.6328 53.8073,87.4116 52.8441,87.1732 52.1523,87.3926 48.448,88.5671 46.0336,89.3936 44.7324,89.3965 44.0844,89.3488 43.7581,89.0848 43.5254,88.6895 43.2912,88.2917 43.1791,87.7459 43.0781,87.2129 42.9772,86.6799 42.8996,86.16 42.6055,85.7832 42.4584,85.5948 42.2392,85.4513 41.9746,85.4141 41.7101,85.3769 41.4131,85.4316 41.0605,85.5723 40.6542,85.7344 40.3517,85.8104 40.1484,85.8203 39.9452,85.8302 39.8557,85.7915 39.7773,85.7148 39.6206,85.5615 39.5173,85.0851 39.4297,84.3652 39.2544,82.9254 39.007,80.5962 37.0566,77.9805 36.7973,77.6326 36.746,77.1935 36.8457,76.6602 36.9454,76.1268 37.2015,75.5197 37.5195,74.9141 38.1555,73.7029 39.0284,72.5225 39.3594,71.7363 39.7567,70.7923 39.9682,69.3282 40.0938,67.8555 40.2193,66.3827 40.25,64.9102 40.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-93" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,64 C 7.70545,66.0095 7.24505,67.1644 6.68359,68.0684 6.09283,69.0195 5.38169,70.0494 5.04883,72.3906 4.97398,72.9173 5.10015,73.6566 5.16406,74.5156 5.22798,75.3746 5.236,76.3324 4.98047,77.1875 4.63496,78.3436 3.99971,79.4731 3.43945,80.5137 2.87919,81.5542 2.38099,82.4979 2.37305,83.3711 2.36493,84.264 2.02912,85.4163 1.68945,86.3965 1.51962,86.8866 1.35044,87.3353 1.22266,87.6973 1.15877,87.8782 1.1049,88.038 1.06641,88.1738 1.02792,88.3097 0.999524,88.4116 1.00391,88.5352 1.05355,89.9353 2.46874,91.6919 5.05859,93.1504 6.80023,94.1311 9.69217,94.3991 12.375,94.4668 13.7164,94.5006 15.0024,94.4788 16.0547,94.457 17.107,94.4352 17.9362,94.4142 18.3125,94.4414 18.7341,94.4719 19.0702,94.2806 19.3125,94.0117 19.5548,93.7428 19.7452,93.4034 20.002,93.0371 20.5154,92.3046 21.269,91.4492 23.0723,90.8789 23.8476,90.6337 24.2874,89.954 24.6934,89.3672 25.0993,88.7804 25.4601,88.2992 25.9941,88.209 28.5462,87.7778 29.872,88.1744 32,88.25 V 87.75 C 29.7305,87.7028 28.65,87.2523 25.9121,87.7148 25.1363,87.8459 24.6901,88.491 24.2812,89.082 23.8724,89.6731 23.4887,90.2231 22.9219,90.4023 21.0166,91.0049 20.1355,91.9744 19.5918,92.75 19.32,93.1378 19.1255,93.4734 18.9414,93.6777 18.7573,93.8821 18.6242,93.9634 18.3477,93.9434 17.905,93.9113 17.0954,93.9353 16.0449,93.957 14.9945,93.9788 13.7149,94.0003 12.3867,93.9668 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 1.5039,88.5173 1.51374,88.4256 1.54688,88.3086 1.58001,88.1916 1.63102,88.0399 1.69336,87.8633 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-6-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,55.75 C 30.7706,55.75 29.9617,55.8559 29.3789,56.0527 28.7961,56.2496 28.4429,56.5383 28.1738,56.8281 27.6358,57.4078 27.4404,57.9403 25.875,58.2656 25.7525,58.2911 25.5439,58.2338 25.2891,58.0801 25.0342,57.9263 24.7459,57.6927 24.4512,57.457 24.1565,57.2214 23.8551,56.983 23.5527,56.8125 23.2503,56.642 22.9249,56.5246 22.5977,56.6289 21.7224,56.9079 21.3056,57.6704 20.9609,58.3906 20.6163,59.1109 20.318,59.8022 19.7773,60.1387 18.9423,60.6583 17.7235,61.0026 16.668,61.1289 16.1402,61.1921 15.6529,61.2007 15.2812,61.1582 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 H 7.75 C 7.73169,33.7885 7.90046,35.2142 7.98633,36.1387 8.07785,37.124 8.07472,37.9447 7.63281,39.416 7.45659,40.0028 6.88652,40.2715 6.24219,40.584 5.92002,40.7402 5.58725,40.9026 5.30859,41.1406 5.02993,41.3787 4.80864,41.7071 4.75,42.1367 4.60687,43.1855 4.88219,44.4813 5.17188,45.8555 5.46156,47.2297 5.77214,48.6773 5.75,49.9609 5.73269,50.9645 5.38203,51.9064 5.03125,52.668 4.85586,53.0488 4.68217,53.3823 4.54883,53.6641 4.41549,53.9458 4.30592,54.1523 4.32031,54.4043 4.34182,54.7808 4.41652,55.0721 4.57227,55.2969 4.72801,55.5217 4.9589,55.6563 5.20898,55.7344 5.70916,55.8905 6.32343,55.8835 7.125,56.043 8.72815,56.3619 11.0808,57.2922 14.2344,61.2559 14.4468,61.5229 14.7973,61.6074 15.2246,61.6562 15.6519,61.7051 16.1689,61.6917 16.7266,61.625 17.8418,61.4916 19.1097,61.1433 20.043,60.5625 20.764,60.1138 21.0761,59.3076 21.4121,58.6055 21.7481,57.9034 22.082,57.3184 22.75,57.1055 22.8689,57.0676 23.0594,57.1075 23.3086,57.248 23.5578,57.3886 23.8454,57.6131 24.1387,57.8477 24.432,58.0822 24.7308,58.3266 25.0312,58.5078 25.3317,58.6891 25.6455,58.8247 25.9766,58.7559 27.6514,58.4078 28.0654,57.6804 28.541,57.168 28.7788,56.9118 29.0341,56.696 29.5391,56.5254 29.9927,56.3721 31.0025,56.2706 32,56.25 Z" id="rtid-path1429-2-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,32 C 39.6686,35.1631 38.9577,37.2367 38.1484,38.8906 37.909,39.3799 37.3209,40.609 36.7617,41.9277 36.2025,43.2465 35.6712,44.6351 35.543,45.5234 35.276,47.3721 36.0796,49.1405 37.0059,50.5684 37.469,51.2823 37.9662,51.9146 38.3848,52.4297 38.8034,52.9448 39.1485,53.3543 39.2832,53.5723 40.0848,54.8688 40.1484,56.417 40.3711,57.7207 40.4824,58.3725 40.6325,58.9694 40.9805,59.4375 41.3285,59.9056 41.8835,60.2121 42.6758,60.2656 H 42.6836 42.6914 C 43.0831,60.2656 43.7644,60.1809 44.6562,60.0371 45.5481,59.8933 46.6393,59.6886 47.8027,59.4473 50.1291,58.9648 52.739,58.3338 54.6055,57.7285 58.5655,56.4668 60.1726,56.3195 64,56.25 V 55.75 C 59.9084,55.8178 58.545,55.9489 54.4551,57.252 H 54.4531 C 52.6198,57.8466 50.0159,58.477 47.7012,58.957 46.5438,59.1971 45.4581,59.4008 44.5762,59.543 43.7007,59.6841 43.0216,59.7625 42.7051,59.7637 42.0213,59.7163 41.6451,59.4941 41.3809,59.1387 41.1159,58.7822 40.9701,58.26 40.8633,57.6348 40.6497,56.3843 40.5946,54.7442 39.707,53.3086 39.5255,53.0149 39.1861,52.6234 38.7715,52.1133 38.3569,51.6031 37.8732,50.9867 37.4258,50.2969 36.5309,48.9172 35.7972,47.2573 36.0371,45.5957 36.147,44.8348 36.669,43.4288 37.2227,42.123 37.7764,40.8173 38.3617,39.5914 38.5977,39.1094 39.4461,37.3754 40.2065,35.4289 40.25,32 Z" id="rtid-path1429-3-9-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccsccscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,32 C 71.7468,34.801 71.7028,34.5586 71.0742,38.9707 71.0004,39.4885 70.5731,40.0927 70.0957,40.8477 69.6183,41.6026 69.1051,42.5187 68.9395,43.7148 68.6823,45.5713 68.1173,46.3844 67.5879,47.002 67.3232,47.3107 67.0593,47.5702 66.8457,47.8887 66.6321,48.2072 66.4803,48.5885 66.4609,49.0859 66.4405,49.6085 66.3282,50.6359 66.2715,51.6387 66.2431,52.1401 66.2285,52.638 66.248,53.0742 66.2676,53.5104 66.3113,53.8806 66.4434,54.166 66.6508,54.6143 66.6585,55.7657 66.5664,56.8984 66.4743,58.0312 66.3133,59.154 66.3066,59.7559 66.2957,60.7236 66.731,61.3839 67.4023,61.7246 68.0736,62.0653 68.9454,62.1299 69.8945,62.0957 71.7929,62.0273 74.0385,61.5416 75.4414,61.6367 75.8853,61.6668 76.5119,61.4948 77.334,61.2246 78.1561,60.9544 79.149,60.575 80.2129,60.1562 82.3393,59.3193 84.7462,58.3233 86.5645,57.7285 L 86.5684,57.7266 C 90.5648,56.4658 92.2928,56.2606 96,56.25 V 55.75 C 92.0379,55.75 90.5427,55.9492 86.4141,57.252 H 86.4121 C 84.5606,57.8574 82.1507,58.8564 80.0293,59.6914 78.9686,60.1089 77.9816,60.4858 77.1777,60.75 76.3739,61.0142 75.7291,61.1559 75.4746,61.1387 73.9274,61.0337 71.7019,61.53 69.877,61.5957 68.9645,61.6286 68.1619,61.5478 67.6289,61.2773 67.0959,61.0069 66.7973,60.5912 66.8066,59.7617 66.8124,59.2481 66.9727,58.0917 67.0664,56.9395 67.1601,55.7872 67.2183,54.6463 66.8984,53.9551 66.8243,53.7948 66.7644,53.4587 66.7461,53.0508 66.7278,52.6428 66.7417,52.1601 66.7695,51.668 66.8252,50.6837 66.9388,49.6728 66.9609,49.1055 66.9769,48.6946 67.0864,48.4295 67.2617,48.168 67.4371,47.9065 67.6888,47.6528 67.9688,47.3262 68.5287,46.673 69.167,45.7215 69.4355,43.7832 69.5867,42.6912 70.0534,41.8504 70.5195,41.1133 70.9857,40.3761 71.4671,39.7519 71.5684,39.041 72.2188,34.4749 72.25,35.1813 72.25,32 Z" id="rtid-path1429-3-6-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,32 C 103.74,33.3903 103.469,34.2117 103.047,34.707 102.593,35.2391 101.91,35.7792 101.295,37.209 100.432,39.2126 99.6066,41.4686 99.3281,43.4219 99.2628,43.881 99.4581,44.2959 99.7383,44.6621 100.018,45.0283 100.392,45.369 100.76,45.7227 101.495,46.43 102.178,47.1635 102.15,48.1074 102.109,49.5179 101.655,50.8878 101.213,51.9941 100.992,52.5473 100.775,53.0338 100.613,53.4336 100.451,53.8334 100.327,54.1182 100.352,54.4102 100.418,55.2031 100.922,56.0056 101.654,56.7871 102.386,57.5687 103.357,58.3291 104.412,59.002 106.522,60.3476 108.934,61.3496 110.5,61.3496 110.612,61.3496 110.738,61.2714 110.791,61.1875 110.844,61.1036 110.857,61.0255 110.865,60.9473 110.882,60.7908 110.866,60.6162 110.838,60.4043 110.781,59.9805 110.666,59.4225 110.559,58.8164 110.344,57.6042 110.202,56.1945 110.533,55.5215 111.109,54.3531 112.298,53.6223 113.654,53.0977 115.01,52.573 116.51,52.2631 117.66,51.8984 118.056,51.7728 118.269,51.8459 118.479,52.0371 118.688,52.2283 118.872,52.5782 119.031,52.9883 119.191,53.3984 119.33,53.862 119.5,54.2812 119.67,54.7005 119.866,55.0859 120.203,55.3184 120.484,55.5123 120.929,55.666 121.51,55.8164 122.09,55.9668 122.798,56.1018 123.555,56.2031 124.969,56.3924 126.76,56.4374 128,56.25 V 55.75 C 126.826,55.9723 125.1,55.9051 123.621,55.707 122.882,55.608 122.19,55.4759 121.635,55.332 121.079,55.1882 120.65,55.0211 120.486,54.9082 120.301,54.7801 120.12,54.4808 119.963,54.0938 119.806,53.7067 119.666,53.2427 119.496,52.8066 119.327,52.3706 119.131,51.9568 118.814,51.668 118.497,51.3791 118.034,51.2556 117.51,51.4219 116.403,51.7729 114.882,52.0855 113.473,52.6309 112.063,53.1762 110.743,53.9633 110.084,55.3008 109.622,56.2384 109.849,57.6729 110.066,58.9023 110.175,59.5171 110.29,60.0795 110.342,60.4707 110.363,60.6303 110.365,60.7331 110.363,60.8164 109.003,60.7685 106.684,59.8594 104.682,58.582 103.654,57.9264 102.711,57.1836 102.02,56.4453 101.328,55.707 100.9,54.9721 100.85,54.3691 100.845,54.3144 100.92,54.0071 101.076,53.6211 101.233,53.2351 101.452,52.744 101.678,52.1797 102.129,51.0511 102.606,49.6282 102.65,48.1211 102.685,46.933 101.851,46.0809 101.105,45.3633 100.733,45.0045 100.376,44.6722 100.137,44.3594 99.8974,44.0465 99.7841,43.7742 99.8242,43.4922 100.091,41.6229 100.899,39.3924 101.754,37.4082 102.335,36.0575 102.923,35.6207 103.426,35.0312 103.928,34.4418 104.285,33.7087 104.25,32 Z" id="rtid-path1429-3-6-7-2-8" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,23.75 C 126.348,23.7003 125.42,24.2716 124.797,24.7695 124.485,25.0185 124.246,25.2388 124.047,25.3477 123.848,25.4565 123.718,25.4831 123.469,25.373 122.047,24.7447 120.614,24.5417 118.424,25.252 H 118.422 C 118.213,25.3198 117.766,25.1758 117.295,24.9863 117.059,24.8916 116.818,24.7948 116.576,24.7383 116.335,24.6817 116.081,24.6603 115.844,24.7695 114.43,25.4215 113.331,26.4908 112.449,27.3691 112.008,27.8083 111.619,28.2002 111.287,28.4668 110.955,28.7334 110.689,28.8523 110.518,28.8398 110.251,28.8205 110.045,28.6675 109.822,28.3672 109.6,28.0669 109.39,27.6336 109.156,27.1523 108.689,26.1898 108.126,25.0261 107.018,24.3418 105.884,23.642 104.317,23.4655 103.031,23.2656 102.389,23.1657 101.814,23.0602 101.424,22.9082 101.229,22.8322 101.083,22.7449 100.992,22.6562 100.901,22.5676 100.859,22.4863 100.85,22.3691 100.85,22.3778 100.864,22.2809 100.934,22.1484 101.003,22.016 101.115,21.8422 101.254,21.6426 101.531,21.2433 101.915,20.7346 102.307,20.1504 103.09,18.982 103.912,17.5116 103.959,15.9453 103.994,14.784 103.213,13.6831 102.498,12.6855 102.14,12.1868 101.794,11.7134 101.557,11.291 101.32,10.8686 101.207,10.5066 101.248,10.2383 101.304,9.86904 101.446,9.63991 101.645,9.45703 101.843,9.27415 102.108,9.14217 102.4,9.02148 102.693,8.9008 103.01,8.7935 103.301,8.63477 103.591,8.47603 103.864,8.25378 104.014,7.91406 104.467,6.88656 104.505,5.59067 104.449,4.20898 104.393,2.8273 104.235,1.35423 104.25,0 H 103.75 C 103.754,1.32161 103.897,2.95144 103.949,4.22852 104.004,5.58647 103.95,6.82163 103.557,7.71289 103.463,7.92412 103.298,8.06567 103.061,8.19531 102.823,8.32496 102.522,8.43035 102.211,8.55859 101.9,8.68684 101.576,8.84012 101.305,9.08984 101.033,9.33957 100.823,9.69195 100.752,10.1621 100.683,10.616 100.861,11.0709 101.121,11.5352 101.381,11.9994 101.737,12.4811 102.092,12.9766 102.802,13.9675 103.488,15.0133 103.461,15.9297 103.419,17.3278 102.657,18.731 101.893,19.8711 101.51,20.4412 101.13,20.946 100.844,21.3594 100.7,21.5661 100.58,21.7497 100.492,21.916 100.405,22.0823 100.336,22.2252 100.352,22.4102 100.371,22.6467 100.481,22.8569 100.643,23.0137 100.804,23.1704 101.008,23.282 101.242,23.373 101.71,23.5552 102.304,23.6588 102.953,23.7598 104.251,23.9617 105.768,24.1591 106.754,24.7676 107.709,25.3572 108.239,26.4106 108.705,27.3711 108.938,27.8514 109.155,28.3053 109.422,28.666 109.689,29.0267 110.034,29.3073 110.482,29.3398 110.876,29.3683 111.232,29.1541 111.602,28.8574 111.971,28.5608 112.362,28.1597 112.801,27.7227 113.678,26.8485 114.739,25.8305 116.053,25.2246 116.137,25.1857 116.274,25.1808 116.461,25.2246 116.648,25.2685 116.873,25.3551 117.107,25.4492 117.575,25.6375 118.082,25.8894 118.578,25.7285 120.683,25.0464 121.918,25.2339 123.268,25.8301 123.638,25.9935 123.997,25.9443 124.285,25.7871 124.573,25.6299 124.816,25.3946 125.109,25.1602 125.657,24.7228 126.664,24.2729 128,24.25 Z" id="rtid-path1429-3-6-7-5-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,0 C 71.7641,2.21123 71.2319,3.78788 70.5781,5.08594 69.8959,6.44042 69.0863,7.81724 68.752,10.1641 68.6831,10.647 68.8889,11.1403 69.1875,11.6562 69.4861,12.1722 69.8941,12.7175 70.3008,13.2773 71.1141,14.3971 71.8995,15.5826 71.873,16.5469 71.837,17.8658 71.0606,18.9483 70.2305,19.877 69.8154,20.3413 69.3897,20.7633 69.0469,21.1602 68.7041,21.5571 68.4305,21.9265 68.3633,22.3398 68.2656,22.9396 68.0528,24.3567 68.0762,25.7891 68.0995,27.2214 68.3283,28.7022 69.293,29.3906 70.5075,30.2574 72.3847,30.1724 74.1621,29.9336 75.0508,29.8142 75.9174,29.6495 76.6602,29.5234 77.4029,29.3974 78.0317,29.3138 78.3926,29.3398 78.6378,29.3575 78.867,29.2639 79.0703,29.1191 79.2736,28.9744 79.4617,28.7765 79.6543,28.541 80.0395,28.07 80.4422,27.4435 80.9141,26.7852 81.8579,25.4685 83.068,24.0375 84.8398,23.4824 85.685,23.2177 86.1963,22.6416 86.6543,22.1504 87.1123,21.6592 87.5049,21.2596 88.1504,21.1602 88.7064,21.0745 89.1586,21.1996 89.6309,21.4531 90.1031,21.7066 90.5845,22.0946 91.1406,22.5059 92.2047,23.2926 93.8564,24.1769 96,24.25 V 23.75 C 93.8108,23.75 92.5275,22.9095 91.4375,22.1035 90.8925,21.7005 90.4002,21.2978 89.8672,21.0117 89.3341,20.7256 88.7476,20.5622 88.0742,20.666 87.2563,20.7921 86.7519,21.3142 86.2891,21.8105 85.8262,22.3069 85.3949,22.7835 84.6914,23.0039 82.7485,23.6125 81.4689,25.1534 80.5078,26.4941 80.0273,27.1645 79.6226,27.7904 79.2676,28.2246 79.0901,28.4417 78.925,28.6086 78.7812,28.7109 78.6375,28.8133 78.5266,28.847 78.4277,28.8398 77.9591,28.806 77.3263,28.902 76.5762,29.0293 75.826,29.1566 74.9668,29.3205 74.0957,29.4375 72.3535,29.6715 70.5752,29.6932 69.582,28.9844 68.8814,28.4843 68.5986,27.1566 68.5762,25.7793 68.5537,24.402 68.7614,23.0092 68.8574,22.4199 68.8947,22.1903 69.1024,21.8627 69.4258,21.4883 69.7492,21.1138 70.1741,20.6891 70.6016,20.2109 71.4564,19.2547 72.3318,18.0668 72.373,16.5605 72.4067,15.3325 71.523,14.1085 70.7051,12.9824 70.2961,12.4194 69.897,11.883 69.6211,11.4062 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z" id="rtid-path1429-3-6-7-5-3-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,0 C 39.4141,0.76718 39.1383,1.75827 38.8848,2.49023 38.5895,3.3428 38.1112,4.22909 36.8477,5.30273 36.7578,5.37914 36.7252,5.45046 36.6777,5.54492 36.6303,5.63939 36.5805,5.75349 36.5293,5.88867 36.4268,6.15903 36.3126,6.51245 36.1895,6.92578 35.9432,7.75245 35.6641,8.81832 35.3984,9.89648 35.1328,10.9747 34.8809,12.0658 34.6914,12.9434 34.5019,13.8209 34.3754,14.4513 34.3555,14.7285 34.2158,16.6655 34.7076,18.3697 35.2344,19.7031 35.4978,20.3699 35.7709,20.9453 35.9785,21.4082 36.1861,21.8711 36.3195,22.237 36.3301,22.3965 36.349,22.6804 36.2704,23.181 36.1582,23.7617 36.046,24.3424 35.9061,25.0127 35.8262,25.6875 35.7462,26.3623 35.7234,27.0431 35.8594,27.6602 35.9954,28.2772 36.3042,28.8381 36.8672,29.1992 38.0372,29.9495 40.0342,29.9094 41.9492,29.752 42.9067,29.6732 43.842,29.5572 44.627,29.4668 45.4119,29.3764 46.0596,29.3165 46.3828,29.3398 46.8274,29.3719 48.1812,29.6981 49.6855,29.8652 51.1899,30.0323 52.8845,30.0518 54.1797,29.4141 54.4869,29.2629 54.6744,28.9596 54.8457,28.6113 55.017,28.263 55.1648,27.8535 55.3145,27.4551 55.4641,27.0566 55.6163,26.6694 55.7793,26.377 55.9423,26.0845 56.1147,25.9076 56.252,25.8633 58.3051,25.1992 59.2573,24.7928 60.1719,24.5586 61.0267,24.3397 62.2522,24.2595 64,24.25 V 23.75 C 61.978,23.75 61.016,23.8265 60.0488,24.0742 59.0816,24.3219 58.1369,24.7271 56.0977,25.3867 55.7553,25.4974 55.5311,25.793 55.3418,26.1328 55.1524,26.4726 54.9966,26.8776 54.8457,27.2793 54.6948,27.681 54.5492,28.0801 54.3965,28.3906 54.2438,28.7011 54.0748,28.9078 53.959,28.9648 52.827,29.5222 51.2053,29.5299 49.7402,29.3672 48.2752,29.2044 47.0089,28.8825 46.418,28.8398 45.9964,28.8094 45.3592,28.8779 44.5703,28.9688 43.7814,29.0596 42.8517,29.1763 41.9082,29.2539 40.0211,29.4091 38.0662,29.3734 37.1367,28.7773 36.6984,28.4962 36.4641,28.0812 36.3477,27.5527 36.2312,27.0243 36.2458,26.3915 36.3223,25.7461 36.3987,25.1006 36.5352,24.4435 36.6484,23.8574 36.7616,23.2714 36.8568,22.7642 36.8301,22.3633 36.8082,22.035 36.6447,21.6739 36.4336,21.2031 36.2224,20.7324 35.9553,20.1679 35.6992,19.5195 35.187,18.2228 34.7234,16.5978 34.8555,14.7656 34.8667,14.6089 34.9934,13.9207 35.1816,13.0488 35.3699,12.177 35.6203,11.0889 35.8848,10.0156 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z" id="rtid-path1429-3-6-7-5-3-5-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,23.75 C 30.6701,23.75 29.1294,24.4713 28.1543,25.4707 27.7598,25.8751 27.5394,26.3293 27.3145,26.6738 27.0895,27.0183 26.8918,27.2414 26.5117,27.3223 26.3663,27.3532 26.1181,27.2712 25.8125,27.0664 25.5069,26.8617 25.1582,26.5562 24.793,26.252 24.4277,25.9477 24.045,25.6428 23.6465,25.4336 23.2479,25.2244 22.8131,25.107 22.3848,25.2422 21.6284,25.4808 21.0906,26.0212 20.6094,26.5488 20.1281,27.0765 19.6948,27.5929 19.1953,27.8613 17.3396,28.8586 15.2632,28.901 14.418,28.8398 14.4093,28.8392 14.3947,28.8402 14.3496,28.7852 14.3045,28.7301 14.2468,28.6265 14.1934,28.4922 14.0864,28.2236 13.9879,27.8348 13.8789,27.4277 13.7699,27.0206 13.6502,26.5938 13.4805,26.2246 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 3.74718,11.0845 3.78774,10.9973 3.83594,10.9434 3.88414,10.8894 3.93995,10.8565 4.05078,10.8418 4.04227,10.8429 4.09634,10.8456 4.1875,10.9062 4.27866,10.9669 4.39723,11.0728 4.52734,11.209 4.78756,11.4813 5.09489,11.8737 5.4082,12.2871 5.72151,12.7005 6.04195,13.1351 6.34375,13.502 6.64555,13.8688 6.91366,14.1681 7.20117,14.3262 7.5333,14.5088 7.90835,14.4765 8.23047,14.3398 8.55258,14.2032 8.84357,13.9692 9.10156,13.7109 9.35956,13.4527 9.58243,13.1686 9.74805,12.916 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 3.33591,10.7535 3.26658,10.9291 3.23047,11.1152 3.15824,11.4876 3.20691,11.9189 3.28711,12.3652 3.3673,12.8115 3.4852,13.2721 3.58008,13.6738 3.67495,14.0756 3.74158,14.4286 3.73633,14.5938 3.68747,16.1298 3.82602,17.897 3.98438,19.373 4.14273,20.8491 4.32251,22.0557 4.34961,22.3809 4.39603,22.938 4.73393,24.4105 5.24609,25.8574 5.50218,26.5809 5.80023,27.2897 6.13477,27.8535 6.4693,28.4173 6.8298,28.8608 7.31055,28.9883 7.48505,29.0346 7.67602,29.0107 7.81836,28.9199 7.9607,28.8292 8.05127,28.6951 8.12109,28.5488 8.26073,28.2563 8.32927,27.8864 8.40625,27.4844 8.5602,26.6803 8.74426,25.7645 9.18359,25.3379 9.30271,25.2222 9.51437,25.1521 9.80078,25.1406 10.0872,25.1291 10.4354,25.1776 10.7871,25.2578 11.4905,25.4182 12.2029,25.7018 12.5391,25.8398 12.7104,25.9102 12.8802,26.1178 13.0254,26.4336 13.1706,26.7494 13.2889,27.1546 13.3965,27.5566 13.5041,27.9587 13.6006,28.3566 13.7285,28.6777 13.7925,28.8383 13.8642,28.981 13.9629,29.1016 14.0616,29.2221 14.2067,29.327 14.3828,29.3398 15.3002,29.4063 17.446,29.3698 19.4316,28.3027 20.0544,27.968 20.5091,27.3994 20.9785,26.8848 21.4479,26.3701 21.9224,25.9121 22.5352,25.7188 22.7905,25.6382 23.0784,25.7007 23.4141,25.877 23.7498,26.0532 24.1137,26.3376 24.4727,26.6367 24.8316,26.9358 25.1872,27.2474 25.5352,27.4805 25.8831,27.7136 26.2384,27.8906 26.6152,27.8105 27.1573,27.6953 27.483,27.3292 27.7324,26.9473 27.9818,26.5654 28.1845,26.1558 28.5117,25.8203 29.3257,24.986 30.9022,24.3358 32,24.25 Z" id="rtid-path1429-3-6-7-5-3-5-6-3-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="34.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2043"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g2077"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z"
+ id="rtid-path2045"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z"
+ id="rtid-path2047"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z"
+ id="rtid-path2049"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z"
+ id="rtid-path2051"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z"
+ id="rtid-path2053"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z"
+ id="rtid-path2055"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z"
+ id="rtid-path2057"
+ style="fill:#ffffff;stroke-width:0.5215"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z"
+ id="rtid-path2059"
+ style="fill:#ffffff;stroke-width:0.5214"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z"
+ id="rtid-path2061"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z"
+ id="rtid-path2063"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccsssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z"
+ id="rtid-path2065"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z"
+ id="rtid-path2067"
+ style="fill:#ffffff;stroke-width:0.5232"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z"
+ id="rtid-path2069"
+ style="fill:#ffffff;stroke-width:0.5231"
+ sodipodi:nodetypes="cccsssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z"
+ id="rtid-path2071"
+ style="fill:#ffffff;stroke-width:0.5212"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z"
+ id="rtid-path2073"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z"
+ id="rtid-path2075"
+ style="fill:#ffffff;stroke-width:0.5213"
+ sodipodi:nodetypes="cccssssssssssssssccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-85.780839"
+ inkscape:cy="230.083"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.975807">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2043)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g1931"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 7.75,96 C 7.74413,96.0179 7.6706,96.2775 7.66406,96.2969 7.60119,96.4836 7.50682,96.7367 7.39258,97.0449 7.1641,97.6613 6.85018,98.4935 6.51562,99.457 5.84652,101.384 5.09228,103.836 4.75977,106.164 V 106.166 C 4.27027,109.713 4.25383,117.154 4.32422,118.414 4.36917,119.211 4.86061,120.005 5.58203,120.771 6.30345,121.538 7.26793,122.279 8.31836,122.938 10.4192,124.254 12.8433,125.243 14.4141,125.35 H 14.4219 14.4297 C 15.2725,125.35 16.3526,124.72 17.7422,123.971 19.1313,123.221 20.7935,122.329 22.6152,121.738 26.5001,120.5 31.1618,120.265 32,120.25 V 119.75 C 31.3263,119.75 26.5914,119.947 22.4648,121.262 H 22.4629 C 20.5853,121.871 18.8943,122.779 17.5039,123.529 16.116,124.278 14.9938,124.846 14.4355,124.848 13.0448,124.75 10.6273,123.794 8.58398,122.514 7.56017,121.872 6.62615,121.149 5.94727,120.428 5.26838,119.707 4.85826,118.99 4.82422,118.387 4.76057,117.247 4.77936,109.687 5.25586,106.234 5.58032,103.963 6.32414,101.534 6.98828,99.6211 7.32035,98.6647 7.63203,97.8373 7.86133,97.2188 7.97598,96.9095 8.07015,96.6528 8.13672,96.4551 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z"
+ id="rtid-path1429-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,96 C 39.7589,96.1209 39.7815,96.4553 39.7949,96.6895 39.8157,97.0537 39.8346,97.5392 39.8301,98.0879 39.8211,99.1853 39.7142,100.535 39.3457,101.643 39.0687,102.475 38.5295,103.063 37.9902,103.717 37.451,104.37 36.915,105.096 36.7617,106.164 36.6377,107.029 37.1772,107.985 37.6875,109.01 38.1978,110.034 38.7,111.113 38.6699,112.068 38.5768,115.018 38.3864,116.694 38.4316,117.465 38.4718,118.154 38.4286,119.184 38.6504,120.219 38.8722,121.253 39.378,122.311 40.5059,123.008 41.5905,123.678 42.8156,123.789 43.9336,123.754 45.0516,123.718 46.0824,123.542 46.752,123.588 47.2156,123.619 48.0051,123.932 48.9785,124.15 49.952,124.369 51.1332,124.484 52.4453,124.088 52.6834,124.016 53.0799,123.819 53.623,123.545 54.1662,123.271 54.8285,122.924 55.4941,122.576 56.1597,122.228 56.8282,121.878 57.3789,121.6 57.9297,121.322 58.382,121.112 58.5391,121.061 60.5622,120.404 61.7683,120.205 62.5352,120.166 63.1712,120.134 63.6896,120.222 64,120.25 V 119.75 C 63.751,119.75 63.3364,119.624 62.5098,119.666 61.6832,119.708 60.435,119.919 58.3848,120.584 58.1343,120.665 57.7103,120.872 57.1543,121.152 56.5983,121.433 55.9293,121.785 55.2637,122.133 54.598,122.481 53.9344,122.826 53.3965,123.098 52.8586,123.369 52.4188,123.574 52.3008,123.609 51.0931,123.974 50.0162,123.87 49.0898,123.662 48.1635,123.454 47.4105,123.13 46.7852,123.088 46.0016,123.035 44.991,123.22 43.918,123.254 42.8449,123.288 41.7295,123.177 40.7676,122.582 39.7732,121.967 39.3432,121.067 39.1387,120.113 38.9342,119.16 38.9745,118.171 38.9316,117.436 38.8943,116.8 39.0763,115.048 39.1699,112.084 39.2057,110.949 38.6476,109.817 38.1348,108.787 37.6219,107.758 37.1741,106.82 37.2578,106.236 37.3927,105.297 37.8477,104.674 38.375,104.035 38.9023,103.396 39.5044,102.75 39.8203,101.801 40.2175,100.606 40.3209,99.2174 40.3301,98.0918 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z"
+ id="rtid-path1429-3-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,119.75 C 95.8696,119.75 95.4649,119.725 94.9004,119.707 94.3359,119.689 93.5984,119.677 92.752,119.707 91.059,119.768 88.9282,119.992 86.8516,120.652 H 86.8496 C 83.1999,121.836 82.072,120.946 79.9922,120.918 79.4506,120.911 78.7617,121.114 77.9551,121.352 77.1484,121.589 76.236,121.869 75.3184,122.037 74.4007,122.205 73.4814,122.26 72.666,122.07 71.8506,121.88 71.1366,121.458 70.5781,120.625 69.9512,119.69 69.9225,118.382 70.0879,117.043 70.2533,115.704 70.6068,114.358 70.6602,113.328 70.693,112.697 70.6395,111.535 70.6426,110.078 70.6456,108.621 70.7028,106.882 70.9512,105.15 71.2795,102.862 71.2675,102.437 71.9258,100.531 72.2674,99.5424 72.3393,99.0056 72.3242,98.4277 72.3091,97.8498 72.219,97.2389 72.25,96 H 71.75 C 71.7428,97.0234 71.8117,97.9639 71.8242,98.4414 71.8381,98.9747 71.7841,99.409 71.4531,100.367 70.7864,102.297 70.7839,102.802 70.457,105.08 70.2035,106.847 70.1457,108.607 70.1426,110.076 70.1395,111.545 70.1898,112.734 70.1602,113.303 70.1117,114.238 69.7626,115.599 69.5918,116.982 69.421,118.366 69.4217,119.798 70.1621,120.902 70.7884,121.836 71.6344,122.345 72.5508,122.559 73.4671,122.772 74.4525,122.703 75.4082,122.527 76.3639,122.352 77.2927,122.069 78.0957,121.832 78.8987,121.595 79.5875,121.413 79.9863,121.418 81.9203,121.444 83.2538,122.343 87.0039,121.127 L 87.002,121.129 C 89.0153,120.489 91.1058,120.267 92.7695,120.207 93.6014,120.177 94.326,120.189 94.8828,120.207 95.315,120.221 95.7909,120.243 96,120.25 Z"
+ id="rtid-path1429-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccscsccccscccccscccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,119.75 C 125.968,119.784 125.01,119.665 124.115,119.625 123.221,119.585 122.397,119.631 120.719,119.994 120.567,120.027 120.238,120.034 119.848,120.014 119.457,119.993 118.997,119.951 118.535,119.912 118.073,119.873 117.608,119.835 117.201,119.824 116.795,119.813 116.455,119.822 116.188,119.906 115.308,120.185 114.615,120.122 114.02,119.881 113.424,119.639 112.923,119.207 112.48,118.725 112.038,118.243 111.657,117.714 111.287,117.291 110.917,116.868 110.546,116.512 110.061,116.512 108.572,116.412 107.025,116.689 105.883,116.645 105.31,116.622 104.853,116.518 104.551,116.293 104.249,116.068 104.058,115.719 104.035,115.068 V 115.062 115.057 C 103.979,114.379 103.604,113.352 103.314,112.023 103.025,110.695 102.819,109.094 103.078,107.389 103.224,106.427 103.538,105.716 103.854,104.971 104.169,104.225 104.482,103.445 104.584,102.396 104.715,101.052 104.631,100.276 104.514,99.4375 104.397,98.5986 104.25,97.6918 104.25,96 H 103.75 C 103.769,97.4996 103.91,98.7336 104.018,99.5059 104.133,100.337 104.215,101.042 104.088,102.348 103.993,103.322 103.705,104.035 103.393,104.775 103.08,105.516 102.739,106.284 102.582,107.314 102.31,109.105 102.53,110.768 102.826,112.129 103.123,113.49 103.494,114.578 103.537,115.1 V 115.088 C 103.564,115.837 103.821,116.374 104.252,116.695 104.683,117.017 105.243,117.121 105.863,117.145 107.104,117.192 108.637,116.915 110.043,117.012 H 110.053 110.061 C 110.275,117.012 110.565,117.226 110.91,117.621 111.255,118.016 111.644,118.552 112.113,119.062 112.582,119.573 113.136,120.061 113.832,120.344 114.528,120.626 115.363,120.692 116.338,120.383 116.478,120.339 116.801,120.314 117.188,120.324 117.574,120.335 118.032,120.371 118.492,120.41 118.952,120.449 119.415,120.491 119.82,120.512 120.225,120.533 120.564,120.539 120.824,120.482 122.478,120.124 123.227,120.087 124.092,120.125 124.901,120.161 126.204,120.264 128,120.25 Z"
+ id="rtid-path1429-3-6-7-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,64 C 103.752,64.7276 103.773,69.8956 103.102,74.3066 V 74.3086 C 102.846,76.1016 103.075,77.4813 103.379,78.5508 103.682,79.6168 104.043,80.3855 104.088,80.9004 104.108,81.4973 103.751,82.1522 103.176,82.8301 102.6,83.5093 101.823,84.2006 101.09,84.8828 100.356,85.565 99.6657,86.2353 99.252,86.9199 99.0451,87.2622 98.9048,87.613 98.8848,87.9746 98.8647,88.3362 98.9743,88.7028 99.2246,89.0332 99.2306,89.0411 99.2966,89.1646 99.3652,89.332 99.4339,89.4994 99.5177,89.7212 99.6191,89.9766 99.822,90.4872 100.093,91.1361 100.453,91.8008 101.173,93.1301 102.258,94.5413 103.912,94.9805 105.518,95.4067 107.608,94.9132 109.355,94.2754 110.229,93.9565 111.016,93.5986 111.607,93.2852 111.903,93.1284 112.15,92.9833 112.338,92.8574 112.526,92.7315 112.645,92.6603 112.74,92.5 112.839,92.3329 112.866,92.1453 112.881,91.9238 112.896,91.7023 112.89,91.4476 112.877,91.166 112.85,90.6029 112.789,89.937 112.77,89.2852 112.75,88.6333 112.776,87.9953 112.904,87.5137 113.033,87.032 113.237,86.7351 113.59,86.623 113.75,86.5725 114.162,86.6393 114.654,86.8398 115.147,87.0404 115.725,87.3472 116.299,87.6602 116.873,87.9731 117.441,88.294 117.932,88.5273 118.177,88.644 118.403,88.7388 118.607,88.8008 118.811,88.8628 118.992,88.9002 119.182,88.8555 121.333,88.3476 125.412,88.2846 128,88.25 V 87.75 C 125.417,87.7844 121.404,87.8178 119.068,88.3691 119.039,88.376 118.916,88.3722 118.752,88.3223 118.588,88.2723 118.379,88.1849 118.146,88.0742 117.681,87.8528 117.116,87.5357 116.539,87.2207 115.962,86.9057 115.373,86.5926 114.844,86.377 114.314,86.1613 113.849,86.0168 113.439,86.1465 112.886,86.3219 112.574,86.8157 112.422,87.3848 112.27,87.9539 112.25,88.6261 112.27,89.2988 112.289,89.9715 112.351,90.6439 112.377,91.1895 112.39,91.4622 112.395,91.7035 112.383,91.8906 112.37,92.0777 112.331,92.2116 112.311,92.2461 112.332,92.2096 112.226,92.3296 112.059,92.4414 111.892,92.5532 111.658,92.693 111.373,92.8438 110.804,93.1452 110.035,93.4961 109.184,93.8066 107.482,94.4278 105.443,94.8703 104.041,94.498 102.593,94.1138 101.582,92.8363 100.893,91.5625 100.548,90.9256 100.284,90.295 100.084,89.791 99.9839,89.539 99.9006,89.3192 99.8281,89.1426 99.7557,88.9659 99.7079,88.8424 99.623,88.7305 99.4345,88.4816 99.3709,88.2521 99.3848,88.002 99.3986,87.7518 99.5002,87.4747 99.6797,87.1777 100.039,86.5837 100.704,85.9267 101.432,85.25 102.159,84.5733 102.946,83.8744 103.557,83.1543 104.167,82.4342 104.617,81.681 104.588,80.8789 V 80.873 80.8672 C 104.531,80.1822 104.151,79.4391 103.859,78.4141 103.568,77.3895 103.352,76.0967 103.596,74.3809 V 74.3789 C 104.3,69.7492 104.25,64.3795 104.25,64 Z"
+ id="rtid-path1429-3-6-7-5-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,64 C 71.7591,65.5714 71.8302,67.0066 71.8008,67.8496 71.7693,68.7512 71.6353,69.3402 71.207,69.9727 71.1257,70.0927 71.0312,70.1192 70.8047,70.0977 70.5782,70.0761 70.2661,69.979 69.9316,69.8652 69.5972,69.7515 69.2384,69.6232 68.8789,69.5586 68.5194,69.494 68.146,69.4904 67.8164,69.668 67.094,70.0569 66.7262,70.9815 66.4727,71.918 66.2191,72.8545 66.1009,73.8313 66.0215,74.3535 65.4786,77.9211 65.8996,84.6875 66.002,85.9199 66.0163,86.3207 66.1588,86.6625 66.4004,86.9141 66.642,87.1656 66.9689,87.3267 67.3438,87.4297 68.0935,87.6357 69.0544,87.6218 70.0977,87.5332 72.1841,87.3561 74.6131,86.8655 75.9863,86.9648 H 75.9941 76.0039 C 76.5972,86.9648 77.62,87.3999 78.9336,87.707 80.2472,88.0141 81.88,88.1748 83.7852,87.5723 84.5283,87.3372 85.3891,87.4751 86.2734,87.666 87.1578,87.857 88.0565,88.1024 88.9004,87.9785 90.0304,87.8127 90.8129,87.8754 91.8203,87.9824 92.7675,88.083 94.2477,88.2336 96,88.25 V 87.75 C 94.077,87.75 92.8875,87.5921 91.873,87.4844 90.8586,87.3767 90.0098,87.309 88.8281,87.4824 88.1346,87.5842 87.277,87.3716 86.3789,87.1777 85.4808,86.9838 84.5334,86.8095 83.6348,87.0938 81.8313,87.6641 80.3094,87.5158 79.0469,87.2207 77.7869,86.9261 76.8154,86.4686 76.0098,86.4668 74.4825,86.359 72.0921,86.8624 70.0566,87.0352 69.0369,87.1217 68.1115,87.1218 67.4766,86.9473 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 C 66.4017,84.7115 65.9924,77.8679 66.5156,74.4297 66.5976,73.8902 66.7142,72.9383 66.9551,72.0488 67.1959,71.1594 67.5811,70.3614 68.0527,70.1074 68.2373,70.008 68.4868,69.9965 68.7891,70.0508 69.0913,70.1051 69.4342,70.2231 69.7715,70.3379 70.1088,70.4526 70.4383,70.5655 70.7559,70.5957 71.0734,70.6259 71.4237,70.5452 71.6211,70.2539 72.1061,69.5378 72.2658,68.8132 72.2988,67.8672 72.3318,66.9211 72.25,65.7359 72.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,64 C 39.7459,64.9064 39.7094,66.456 39.5938,67.8125 39.4699,69.2642 39.2467,70.7154 38.8984,71.543 38.6239,72.1942 37.7361,73.4248 37.0762,74.6816 36.746,75.3104 36.4705,75.9506 36.3555,76.5664 36.2404,77.1822 36.2928,77.7918 36.6562,78.2793 38.5344,80.7983 38.7552,82.977 38.9316,84.4258 39.0198,85.1502 39.062,85.7146 39.4277,86.0723 39.6106,86.2511 39.8772,86.3347 40.1738,86.3203 40.4705,86.3059 40.8126,86.2101 41.2461,86.0371 41.5488,85.9163 41.7646,85.8883 41.9062,85.9082 42.0479,85.9281 42.1291,85.9825 42.2129,86.0898 42.3805,86.3045 42.4868,86.7729 42.5879,87.3066 42.689,87.8404 42.7964,88.4382 43.0938,88.9434 43.3911,89.4485 43.9112,89.8437 44.7051,89.8984 H 44.7148 44.7227 C 46.2229,89.8984 48.5984,89.0436 52.3027,87.8691 52.7323,87.7329 53.7019,87.8992 54.666,88.1191 55.6302,88.339 56.5837,88.6034 57.2617,88.4766 58.7344,88.2007 59.579,88.1561 60.4805,88.1738 61.3169,88.1902 62.5516,88.259 64,88.25 V 87.75 C 62.3616,87.7738 61.4146,87.692 60.4902,87.6738 59.5659,87.6557 58.6677,87.7038 57.1699,87.9844 56.7295,88.0668 55.7474,87.854 54.7773,87.6328 53.8073,87.4116 52.8441,87.1732 52.1523,87.3926 48.448,88.5671 46.0336,89.3936 44.7324,89.3965 44.0844,89.3488 43.7581,89.0848 43.5254,88.6895 43.2912,88.2917 43.1791,87.7459 43.0781,87.2129 42.9772,86.6799 42.8996,86.16 42.6055,85.7832 42.4584,85.5948 42.2392,85.4513 41.9746,85.4141 41.7101,85.3769 41.4131,85.4316 41.0605,85.5723 40.6542,85.7344 40.3517,85.8104 40.1484,85.8203 39.9452,85.8302 39.8557,85.7915 39.7773,85.7148 39.6206,85.5615 39.5173,85.0851 39.4297,84.3652 39.2544,82.9254 39.007,80.5962 37.0566,77.9805 36.7973,77.6326 36.746,77.1935 36.8457,76.6602 36.9454,76.1268 37.2015,75.5197 37.5195,74.9141 38.1555,73.7029 39.0284,72.5225 39.3594,71.7363 39.7567,70.7923 39.9682,69.3282 40.0938,67.8555 40.2193,66.3827 40.25,64.9102 40.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-93"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,64 C 7.70545,66.0095 7.24505,67.1644 6.68359,68.0684 6.09283,69.0195 5.38169,70.0494 5.04883,72.3906 4.97398,72.9173 5.10015,73.6566 5.16406,74.5156 5.22798,75.3746 5.236,76.3324 4.98047,77.1875 4.63496,78.3436 3.99971,79.4731 3.43945,80.5137 2.87919,81.5542 2.38099,82.4979 2.37305,83.3711 2.36493,84.264 2.02912,85.4163 1.68945,86.3965 1.51962,86.8866 1.35044,87.3353 1.22266,87.6973 1.15877,87.8782 1.1049,88.038 1.06641,88.1738 1.02792,88.3097 0.999524,88.4116 1.00391,88.5352 1.05355,89.9353 2.46874,91.6919 5.05859,93.1504 6.80023,94.1311 9.69217,94.3991 12.375,94.4668 13.7164,94.5006 15.0024,94.4788 16.0547,94.457 17.107,94.4352 17.9362,94.4142 18.3125,94.4414 18.7341,94.4719 19.0702,94.2806 19.3125,94.0117 19.5548,93.7428 19.7452,93.4034 20.002,93.0371 20.5154,92.3046 21.269,91.4492 23.0723,90.8789 23.8476,90.6337 24.2874,89.954 24.6934,89.3672 25.0993,88.7804 25.4601,88.2992 25.9941,88.209 28.5462,87.7778 29.872,88.1744 32,88.25 V 87.75 C 29.7305,87.7028 28.65,87.2523 25.9121,87.7148 25.1363,87.8459 24.6901,88.491 24.2812,89.082 23.8724,89.6731 23.4887,90.2231 22.9219,90.4023 21.0166,91.0049 20.1355,91.9744 19.5918,92.75 19.32,93.1378 19.1255,93.4734 18.9414,93.6777 18.7573,93.8821 18.6242,93.9634 18.3477,93.9434 17.905,93.9113 17.0954,93.9353 16.0449,93.957 14.9945,93.9788 13.7149,94.0003 12.3867,93.9668 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 1.5039,88.5173 1.51374,88.4256 1.54688,88.3086 1.58001,88.1916 1.63102,88.0399 1.69336,87.8633 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,55.75 C 30.7706,55.75 29.9617,55.8559 29.3789,56.0527 28.7961,56.2496 28.4429,56.5383 28.1738,56.8281 27.6358,57.4078 27.4404,57.9403 25.875,58.2656 25.7525,58.2911 25.5439,58.2338 25.2891,58.0801 25.0342,57.9263 24.7459,57.6927 24.4512,57.457 24.1565,57.2214 23.8551,56.983 23.5527,56.8125 23.2503,56.642 22.9249,56.5246 22.5977,56.6289 21.7224,56.9079 21.3056,57.6704 20.9609,58.3906 20.6163,59.1109 20.318,59.8022 19.7773,60.1387 18.9423,60.6583 17.7235,61.0026 16.668,61.1289 16.1402,61.1921 15.6529,61.2007 15.2812,61.1582 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 H 7.75 C 7.73169,33.7885 7.90046,35.2142 7.98633,36.1387 8.07785,37.124 8.07472,37.9447 7.63281,39.416 7.45659,40.0028 6.88652,40.2715 6.24219,40.584 5.92002,40.7402 5.58725,40.9026 5.30859,41.1406 5.02993,41.3787 4.80864,41.7071 4.75,42.1367 4.60687,43.1855 4.88219,44.4813 5.17188,45.8555 5.46156,47.2297 5.77214,48.6773 5.75,49.9609 5.73269,50.9645 5.38203,51.9064 5.03125,52.668 4.85586,53.0488 4.68217,53.3823 4.54883,53.6641 4.41549,53.9458 4.30592,54.1523 4.32031,54.4043 4.34182,54.7808 4.41652,55.0721 4.57227,55.2969 4.72801,55.5217 4.9589,55.6563 5.20898,55.7344 5.70916,55.8905 6.32343,55.8835 7.125,56.043 8.72815,56.3619 11.0808,57.2922 14.2344,61.2559 14.4468,61.5229 14.7973,61.6074 15.2246,61.6562 15.6519,61.7051 16.1689,61.6917 16.7266,61.625 17.8418,61.4916 19.1097,61.1433 20.043,60.5625 20.764,60.1138 21.0761,59.3076 21.4121,58.6055 21.7481,57.9034 22.082,57.3184 22.75,57.1055 22.8689,57.0676 23.0594,57.1075 23.3086,57.248 23.5578,57.3886 23.8454,57.6131 24.1387,57.8477 24.432,58.0822 24.7308,58.3266 25.0312,58.5078 25.3317,58.6891 25.6455,58.8247 25.9766,58.7559 27.6514,58.4078 28.0654,57.6804 28.541,57.168 28.7788,56.9118 29.0341,56.696 29.5391,56.5254 29.9927,56.3721 31.0025,56.2706 32,56.25 Z"
+ id="rtid-path1429-2-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,32 C 39.6686,35.1631 38.9577,37.2367 38.1484,38.8906 37.909,39.3799 37.3209,40.609 36.7617,41.9277 36.2025,43.2465 35.6712,44.6351 35.543,45.5234 35.276,47.3721 36.0796,49.1405 37.0059,50.5684 37.469,51.2823 37.9662,51.9146 38.3848,52.4297 38.8034,52.9448 39.1485,53.3543 39.2832,53.5723 40.0848,54.8688 40.1484,56.417 40.3711,57.7207 40.4824,58.3725 40.6325,58.9694 40.9805,59.4375 41.3285,59.9056 41.8835,60.2121 42.6758,60.2656 H 42.6836 42.6914 C 43.0831,60.2656 43.7644,60.1809 44.6562,60.0371 45.5481,59.8933 46.6393,59.6886 47.8027,59.4473 50.1291,58.9648 52.739,58.3338 54.6055,57.7285 58.5655,56.4668 60.1726,56.3195 64,56.25 V 55.75 C 59.9084,55.8178 58.545,55.9489 54.4551,57.252 H 54.4531 C 52.6198,57.8466 50.0159,58.477 47.7012,58.957 46.5438,59.1971 45.4581,59.4008 44.5762,59.543 43.7007,59.6841 43.0216,59.7625 42.7051,59.7637 42.0213,59.7163 41.6451,59.4941 41.3809,59.1387 41.1159,58.7822 40.9701,58.26 40.8633,57.6348 40.6497,56.3843 40.5946,54.7442 39.707,53.3086 39.5255,53.0149 39.1861,52.6234 38.7715,52.1133 38.3569,51.6031 37.8732,50.9867 37.4258,50.2969 36.5309,48.9172 35.7972,47.2573 36.0371,45.5957 36.147,44.8348 36.669,43.4288 37.2227,42.123 37.7764,40.8173 38.3617,39.5914 38.5977,39.1094 39.4461,37.3754 40.2065,35.4289 40.25,32 Z"
+ id="rtid-path1429-3-9-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccsccscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,32 C 71.7468,34.801 71.7028,34.5586 71.0742,38.9707 71.0004,39.4885 70.5731,40.0927 70.0957,40.8477 69.6183,41.6026 69.1051,42.5187 68.9395,43.7148 68.6823,45.5713 68.1173,46.3844 67.5879,47.002 67.3232,47.3107 67.0593,47.5702 66.8457,47.8887 66.6321,48.2072 66.4803,48.5885 66.4609,49.0859 66.4405,49.6085 66.3282,50.6359 66.2715,51.6387 66.2431,52.1401 66.2285,52.638 66.248,53.0742 66.2676,53.5104 66.3113,53.8806 66.4434,54.166 66.6508,54.6143 66.6585,55.7657 66.5664,56.8984 66.4743,58.0312 66.3133,59.154 66.3066,59.7559 66.2957,60.7236 66.731,61.3839 67.4023,61.7246 68.0736,62.0653 68.9454,62.1299 69.8945,62.0957 71.7929,62.0273 74.0385,61.5416 75.4414,61.6367 75.8853,61.6668 76.5119,61.4948 77.334,61.2246 78.1561,60.9544 79.149,60.575 80.2129,60.1562 82.3393,59.3193 84.7462,58.3233 86.5645,57.7285 L 86.5684,57.7266 C 90.5648,56.4658 92.2928,56.2606 96,56.25 V 55.75 C 92.0379,55.75 90.5427,55.9492 86.4141,57.252 H 86.4121 C 84.5606,57.8574 82.1507,58.8564 80.0293,59.6914 78.9686,60.1089 77.9816,60.4858 77.1777,60.75 76.3739,61.0142 75.7291,61.1559 75.4746,61.1387 73.9274,61.0337 71.7019,61.53 69.877,61.5957 68.9645,61.6286 68.1619,61.5478 67.6289,61.2773 67.0959,61.0069 66.7973,60.5912 66.8066,59.7617 66.8124,59.2481 66.9727,58.0917 67.0664,56.9395 67.1601,55.7872 67.2183,54.6463 66.8984,53.9551 66.8243,53.7948 66.7644,53.4587 66.7461,53.0508 66.7278,52.6428 66.7417,52.1601 66.7695,51.668 66.8252,50.6837 66.9388,49.6728 66.9609,49.1055 66.9769,48.6946 67.0864,48.4295 67.2617,48.168 67.4371,47.9065 67.6888,47.6528 67.9688,47.3262 68.5287,46.673 69.167,45.7215 69.4355,43.7832 69.5867,42.6912 70.0534,41.8504 70.5195,41.1133 70.9857,40.3761 71.4671,39.7519 71.5684,39.041 72.2188,34.4749 72.25,35.1813 72.25,32 Z"
+ id="rtid-path1429-3-6-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,32 C 103.74,33.3903 103.469,34.2117 103.047,34.707 102.593,35.2391 101.91,35.7792 101.295,37.209 100.432,39.2126 99.6066,41.4686 99.3281,43.4219 99.2628,43.881 99.4581,44.2959 99.7383,44.6621 100.018,45.0283 100.392,45.369 100.76,45.7227 101.495,46.43 102.178,47.1635 102.15,48.1074 102.109,49.5179 101.655,50.8878 101.213,51.9941 100.992,52.5473 100.775,53.0338 100.613,53.4336 100.451,53.8334 100.327,54.1182 100.352,54.4102 100.418,55.2031 100.922,56.0056 101.654,56.7871 102.386,57.5687 103.357,58.3291 104.412,59.002 106.522,60.3476 108.934,61.3496 110.5,61.3496 110.612,61.3496 110.738,61.2714 110.791,61.1875 110.844,61.1036 110.857,61.0255 110.865,60.9473 110.882,60.7908 110.866,60.6162 110.838,60.4043 110.781,59.9805 110.666,59.4225 110.559,58.8164 110.344,57.6042 110.202,56.1945 110.533,55.5215 111.109,54.3531 112.298,53.6223 113.654,53.0977 115.01,52.573 116.51,52.2631 117.66,51.8984 118.056,51.7728 118.269,51.8459 118.479,52.0371 118.688,52.2283 118.872,52.5782 119.031,52.9883 119.191,53.3984 119.33,53.862 119.5,54.2812 119.67,54.7005 119.866,55.0859 120.203,55.3184 120.484,55.5123 120.929,55.666 121.51,55.8164 122.09,55.9668 122.798,56.1018 123.555,56.2031 124.969,56.3924 126.76,56.4374 128,56.25 V 55.75 C 126.826,55.9723 125.1,55.9051 123.621,55.707 122.882,55.608 122.19,55.4759 121.635,55.332 121.079,55.1882 120.65,55.0211 120.486,54.9082 120.301,54.7801 120.12,54.4808 119.963,54.0938 119.806,53.7067 119.666,53.2427 119.496,52.8066 119.327,52.3706 119.131,51.9568 118.814,51.668 118.497,51.3791 118.034,51.2556 117.51,51.4219 116.403,51.7729 114.882,52.0855 113.473,52.6309 112.063,53.1762 110.743,53.9633 110.084,55.3008 109.622,56.2384 109.849,57.6729 110.066,58.9023 110.175,59.5171 110.29,60.0795 110.342,60.4707 110.363,60.6303 110.365,60.7331 110.363,60.8164 109.003,60.7685 106.684,59.8594 104.682,58.582 103.654,57.9264 102.711,57.1836 102.02,56.4453 101.328,55.707 100.9,54.9721 100.85,54.3691 100.845,54.3144 100.92,54.0071 101.076,53.6211 101.233,53.2351 101.452,52.744 101.678,52.1797 102.129,51.0511 102.606,49.6282 102.65,48.1211 102.685,46.933 101.851,46.0809 101.105,45.3633 100.733,45.0045 100.376,44.6722 100.137,44.3594 99.8974,44.0465 99.7841,43.7742 99.8242,43.4922 100.091,41.6229 100.899,39.3924 101.754,37.4082 102.335,36.0575 102.923,35.6207 103.426,35.0312 103.928,34.4418 104.285,33.7087 104.25,32 Z"
+ id="rtid-path1429-3-6-7-2-8"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,23.75 C 126.348,23.7003 125.42,24.2716 124.797,24.7695 124.485,25.0185 124.246,25.2388 124.047,25.3477 123.848,25.4565 123.718,25.4831 123.469,25.373 122.047,24.7447 120.614,24.5417 118.424,25.252 H 118.422 C 118.213,25.3198 117.766,25.1758 117.295,24.9863 117.059,24.8916 116.818,24.7948 116.576,24.7383 116.335,24.6817 116.081,24.6603 115.844,24.7695 114.43,25.4215 113.331,26.4908 112.449,27.3691 112.008,27.8083 111.619,28.2002 111.287,28.4668 110.955,28.7334 110.689,28.8523 110.518,28.8398 110.251,28.8205 110.045,28.6675 109.822,28.3672 109.6,28.0669 109.39,27.6336 109.156,27.1523 108.689,26.1898 108.126,25.0261 107.018,24.3418 105.884,23.642 104.317,23.4655 103.031,23.2656 102.389,23.1657 101.814,23.0602 101.424,22.9082 101.229,22.8322 101.083,22.7449 100.992,22.6562 100.901,22.5676 100.859,22.4863 100.85,22.3691 100.85,22.3778 100.864,22.2809 100.934,22.1484 101.003,22.016 101.115,21.8422 101.254,21.6426 101.531,21.2433 101.915,20.7346 102.307,20.1504 103.09,18.982 103.912,17.5116 103.959,15.9453 103.994,14.784 103.213,13.6831 102.498,12.6855 102.14,12.1868 101.794,11.7134 101.557,11.291 101.32,10.8686 101.207,10.5066 101.248,10.2383 101.304,9.86904 101.446,9.63991 101.645,9.45703 101.843,9.27415 102.108,9.14217 102.4,9.02148 102.693,8.9008 103.01,8.7935 103.301,8.63477 103.591,8.47603 103.864,8.25378 104.014,7.91406 104.467,6.88656 104.505,5.59067 104.449,4.20898 104.393,2.8273 104.235,1.35423 104.25,0 H 103.75 C 103.754,1.32161 103.897,2.95144 103.949,4.22852 104.004,5.58647 103.95,6.82163 103.557,7.71289 103.463,7.92412 103.298,8.06567 103.061,8.19531 102.823,8.32496 102.522,8.43035 102.211,8.55859 101.9,8.68684 101.576,8.84012 101.305,9.08984 101.033,9.33957 100.823,9.69195 100.752,10.1621 100.683,10.616 100.861,11.0709 101.121,11.5352 101.381,11.9994 101.737,12.4811 102.092,12.9766 102.802,13.9675 103.488,15.0133 103.461,15.9297 103.419,17.3278 102.657,18.731 101.893,19.8711 101.51,20.4412 101.13,20.946 100.844,21.3594 100.7,21.5661 100.58,21.7497 100.492,21.916 100.405,22.0823 100.336,22.2252 100.352,22.4102 100.371,22.6467 100.481,22.8569 100.643,23.0137 100.804,23.1704 101.008,23.282 101.242,23.373 101.71,23.5552 102.304,23.6588 102.953,23.7598 104.251,23.9617 105.768,24.1591 106.754,24.7676 107.709,25.3572 108.239,26.4106 108.705,27.3711 108.938,27.8514 109.155,28.3053 109.422,28.666 109.689,29.0267 110.034,29.3073 110.482,29.3398 110.876,29.3683 111.232,29.1541 111.602,28.8574 111.971,28.5608 112.362,28.1597 112.801,27.7227 113.678,26.8485 114.739,25.8305 116.053,25.2246 116.137,25.1857 116.274,25.1808 116.461,25.2246 116.648,25.2685 116.873,25.3551 117.107,25.4492 117.575,25.6375 118.082,25.8894 118.578,25.7285 120.683,25.0464 121.918,25.2339 123.268,25.8301 123.638,25.9935 123.997,25.9443 124.285,25.7871 124.573,25.6299 124.816,25.3946 125.109,25.1602 125.657,24.7228 126.664,24.2729 128,24.25 Z"
+ id="rtid-path1429-3-6-7-5-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,0 C 71.7641,2.21123 71.2319,3.78788 70.5781,5.08594 69.8959,6.44042 69.0863,7.81724 68.752,10.1641 68.6831,10.647 68.8889,11.1403 69.1875,11.6562 69.4861,12.1722 69.8941,12.7175 70.3008,13.2773 71.1141,14.3971 71.8995,15.5826 71.873,16.5469 71.837,17.8658 71.0606,18.9483 70.2305,19.877 69.8154,20.3413 69.3897,20.7633 69.0469,21.1602 68.7041,21.5571 68.4305,21.9265 68.3633,22.3398 68.2656,22.9396 68.0528,24.3567 68.0762,25.7891 68.0995,27.2214 68.3283,28.7022 69.293,29.3906 70.5075,30.2574 72.3847,30.1724 74.1621,29.9336 75.0508,29.8142 75.9174,29.6495 76.6602,29.5234 77.4029,29.3974 78.0317,29.3138 78.3926,29.3398 78.6378,29.3575 78.867,29.2639 79.0703,29.1191 79.2736,28.9744 79.4617,28.7765 79.6543,28.541 80.0395,28.07 80.4422,27.4435 80.9141,26.7852 81.8579,25.4685 83.068,24.0375 84.8398,23.4824 85.685,23.2177 86.1963,22.6416 86.6543,22.1504 87.1123,21.6592 87.5049,21.2596 88.1504,21.1602 88.7064,21.0745 89.1586,21.1996 89.6309,21.4531 90.1031,21.7066 90.5845,22.0946 91.1406,22.5059 92.2047,23.2926 93.8564,24.1769 96,24.25 V 23.75 C 93.8108,23.75 92.5275,22.9095 91.4375,22.1035 90.8925,21.7005 90.4002,21.2978 89.8672,21.0117 89.3341,20.7256 88.7476,20.5622 88.0742,20.666 87.2563,20.7921 86.7519,21.3142 86.2891,21.8105 85.8262,22.3069 85.3949,22.7835 84.6914,23.0039 82.7485,23.6125 81.4689,25.1534 80.5078,26.4941 80.0273,27.1645 79.6226,27.7904 79.2676,28.2246 79.0901,28.4417 78.925,28.6086 78.7812,28.7109 78.6375,28.8133 78.5266,28.847 78.4277,28.8398 77.9591,28.806 77.3263,28.902 76.5762,29.0293 75.826,29.1566 74.9668,29.3205 74.0957,29.4375 72.3535,29.6715 70.5752,29.6932 69.582,28.9844 68.8814,28.4843 68.5986,27.1566 68.5762,25.7793 68.5537,24.402 68.7614,23.0092 68.8574,22.4199 68.8947,22.1903 69.1024,21.8627 69.4258,21.4883 69.7492,21.1138 70.1741,20.6891 70.6016,20.2109 71.4564,19.2547 72.3318,18.0668 72.373,16.5605 72.4067,15.3325 71.523,14.1085 70.7051,12.9824 70.2961,12.4194 69.897,11.883 69.6211,11.4062 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z"
+ id="rtid-path1429-3-6-7-5-3-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,0 C 39.4141,0.76718 39.1383,1.75827 38.8848,2.49023 38.5895,3.3428 38.1112,4.22909 36.8477,5.30273 36.7578,5.37914 36.7252,5.45046 36.6777,5.54492 36.6303,5.63939 36.5805,5.75349 36.5293,5.88867 36.4268,6.15903 36.3126,6.51245 36.1895,6.92578 35.9432,7.75245 35.6641,8.81832 35.3984,9.89648 35.1328,10.9747 34.8809,12.0658 34.6914,12.9434 34.5019,13.8209 34.3754,14.4513 34.3555,14.7285 34.2158,16.6655 34.7076,18.3697 35.2344,19.7031 35.4978,20.3699 35.7709,20.9453 35.9785,21.4082 36.1861,21.8711 36.3195,22.237 36.3301,22.3965 36.349,22.6804 36.2704,23.181 36.1582,23.7617 36.046,24.3424 35.9061,25.0127 35.8262,25.6875 35.7462,26.3623 35.7234,27.0431 35.8594,27.6602 35.9954,28.2772 36.3042,28.8381 36.8672,29.1992 38.0372,29.9495 40.0342,29.9094 41.9492,29.752 42.9067,29.6732 43.842,29.5572 44.627,29.4668 45.4119,29.3764 46.0596,29.3165 46.3828,29.3398 46.8274,29.3719 48.1812,29.6981 49.6855,29.8652 51.1899,30.0323 52.8845,30.0518 54.1797,29.4141 54.4869,29.2629 54.6744,28.9596 54.8457,28.6113 55.017,28.263 55.1648,27.8535 55.3145,27.4551 55.4641,27.0566 55.6163,26.6694 55.7793,26.377 55.9423,26.0845 56.1147,25.9076 56.252,25.8633 58.3051,25.1992 59.2573,24.7928 60.1719,24.5586 61.0267,24.3397 62.2522,24.2595 64,24.25 V 23.75 C 61.978,23.75 61.016,23.8265 60.0488,24.0742 59.0816,24.3219 58.1369,24.7271 56.0977,25.3867 55.7553,25.4974 55.5311,25.793 55.3418,26.1328 55.1524,26.4726 54.9966,26.8776 54.8457,27.2793 54.6948,27.681 54.5492,28.0801 54.3965,28.3906 54.2438,28.7011 54.0748,28.9078 53.959,28.9648 52.827,29.5222 51.2053,29.5299 49.7402,29.3672 48.2752,29.2044 47.0089,28.8825 46.418,28.8398 45.9964,28.8094 45.3592,28.8779 44.5703,28.9688 43.7814,29.0596 42.8517,29.1763 41.9082,29.2539 40.0211,29.4091 38.0662,29.3734 37.1367,28.7773 36.6984,28.4962 36.4641,28.0812 36.3477,27.5527 36.2312,27.0243 36.2458,26.3915 36.3223,25.7461 36.3987,25.1006 36.5352,24.4435 36.6484,23.8574 36.7616,23.2714 36.8568,22.7642 36.8301,22.3633 36.8082,22.035 36.6447,21.6739 36.4336,21.2031 36.2224,20.7324 35.9553,20.1679 35.6992,19.5195 35.187,18.2228 34.7234,16.5978 34.8555,14.7656 34.8667,14.6089 34.9934,13.9207 35.1816,13.0488 35.3699,12.177 35.6203,11.0889 35.8848,10.0156 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z"
+ id="rtid-path1429-3-6-7-5-3-5-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,23.75 C 30.6701,23.75 29.1294,24.4713 28.1543,25.4707 27.7598,25.8751 27.5394,26.3293 27.3145,26.6738 27.0895,27.0183 26.8918,27.2414 26.5117,27.3223 26.3663,27.3532 26.1181,27.2712 25.8125,27.0664 25.5069,26.8617 25.1582,26.5562 24.793,26.252 24.4277,25.9477 24.045,25.6428 23.6465,25.4336 23.2479,25.2244 22.8131,25.107 22.3848,25.2422 21.6284,25.4808 21.0906,26.0212 20.6094,26.5488 20.1281,27.0765 19.6948,27.5929 19.1953,27.8613 17.3396,28.8586 15.2632,28.901 14.418,28.8398 14.4093,28.8392 14.3947,28.8402 14.3496,28.7852 14.3045,28.7301 14.2468,28.6265 14.1934,28.4922 14.0864,28.2236 13.9879,27.8348 13.8789,27.4277 13.7699,27.0206 13.6502,26.5938 13.4805,26.2246 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 3.74718,11.0845 3.78774,10.9973 3.83594,10.9434 3.88414,10.8894 3.93995,10.8565 4.05078,10.8418 4.04227,10.8429 4.09634,10.8456 4.1875,10.9062 4.27866,10.9669 4.39723,11.0728 4.52734,11.209 4.78756,11.4813 5.09489,11.8737 5.4082,12.2871 5.72151,12.7005 6.04195,13.1351 6.34375,13.502 6.64555,13.8688 6.91366,14.1681 7.20117,14.3262 7.5333,14.5088 7.90835,14.4765 8.23047,14.3398 8.55258,14.2032 8.84357,13.9692 9.10156,13.7109 9.35956,13.4527 9.58243,13.1686 9.74805,12.916 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 3.33591,10.7535 3.26658,10.9291 3.23047,11.1152 3.15824,11.4876 3.20691,11.9189 3.28711,12.3652 3.3673,12.8115 3.4852,13.2721 3.58008,13.6738 3.67495,14.0756 3.74158,14.4286 3.73633,14.5938 3.68747,16.1298 3.82602,17.897 3.98438,19.373 4.14273,20.8491 4.32251,22.0557 4.34961,22.3809 4.39603,22.938 4.73393,24.4105 5.24609,25.8574 5.50218,26.5809 5.80023,27.2897 6.13477,27.8535 6.4693,28.4173 6.8298,28.8608 7.31055,28.9883 7.48505,29.0346 7.67602,29.0107 7.81836,28.9199 7.9607,28.8292 8.05127,28.6951 8.12109,28.5488 8.26073,28.2563 8.32927,27.8864 8.40625,27.4844 8.5602,26.6803 8.74426,25.7645 9.18359,25.3379 9.30271,25.2222 9.51437,25.1521 9.80078,25.1406 10.0872,25.1291 10.4354,25.1776 10.7871,25.2578 11.4905,25.4182 12.2029,25.7018 12.5391,25.8398 12.7104,25.9102 12.8802,26.1178 13.0254,26.4336 13.1706,26.7494 13.2889,27.1546 13.3965,27.5566 13.5041,27.9587 13.6006,28.3566 13.7285,28.6777 13.7925,28.8383 13.8642,28.981 13.9629,29.1016 14.0616,29.2221 14.2067,29.327 14.3828,29.3398 15.3002,29.4063 17.446,29.3698 19.4316,28.3027 20.0544,27.968 20.5091,27.3994 20.9785,26.8848 21.4479,26.3701 21.9224,25.9121 22.5352,25.7188 22.7905,25.6382 23.0784,25.7007 23.4141,25.877 23.7498,26.0532 24.1137,26.3376 24.4727,26.6367 24.8316,26.9358 25.1872,27.2474 25.5352,27.4805 25.8831,27.7136 26.2384,27.8906 26.6152,27.8105 27.1573,27.6953 27.483,27.3292 27.7324,26.9473 27.9818,26.5654 28.1845,26.1558 28.5117,25.8203 29.3257,24.986 30.9022,24.3358 32,24.25 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-3-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/35.svg b/src/asset/tile/frontier/basic/35.svg
index f76c5d9..c5c8e18 100644
--- a/src/asset/tile/frontier/basic/35.svg
+++ b/src/asset/tile/frontier/basic/35.svg
@@ -1,113 +1,527 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopandrightbordersandcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask4877" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g4947" transform="matrix(-1,0,0,1,128,-4.0005e-4)">
- <ns0:g id="rtid-g4911" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z" id="rtid-path4879" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z" id="rtid-path4881" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z" id="rtid-path4883" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z" id="rtid-path4885" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z" id="rtid-path4887" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z" id="rtid-path4889" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z" id="rtid-path4891" style="fill:#ffffff;stroke-width:0.5215" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z" id="rtid-path4893" style="fill:#ffffff;stroke-width:0.5214" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z" id="rtid-path4895" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z" id="rtid-path4897" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccsssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z" id="rtid-path4899" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z" id="rtid-path4901" style="fill:#ffffff;stroke-width:0.5232" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z" id="rtid-path4903" style="fill:#ffffff;stroke-width:0.5231" ns2:nodetypes="cccsssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z" id="rtid-path4905" style="fill:#ffffff;stroke-width:0.5212" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z" id="rtid-path4907" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z" id="rtid-path4909" style="fill:#ffffff;stroke-width:0.5213" ns2:nodetypes="cccssssssssssssssccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g4945" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path4913" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path4915" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path4917" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path4919" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path4921" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path4923" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path4925" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path4927" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path4929" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path4931" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path4933" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path4935" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path4937" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path4939" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path4941" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path4943" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="33.313711" ns1:cy="1.2703214" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="11.039996">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="35.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask4877"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g4947"
+ transform="matrix(-1,0,0,1,128,-4.0005e-4)">
+ <g
+ id="rtid-g4911"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z"
+ id="rtid-path4879"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z"
+ id="rtid-path4881"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z"
+ id="rtid-path4883"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z"
+ id="rtid-path4885"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z"
+ id="rtid-path4887"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z"
+ id="rtid-path4889"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z"
+ id="rtid-path4891"
+ style="fill:#ffffff;stroke-width:0.5215"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z"
+ id="rtid-path4893"
+ style="fill:#ffffff;stroke-width:0.5214"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z"
+ id="rtid-path4895"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z"
+ id="rtid-path4897"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccsssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z"
+ id="rtid-path4899"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z"
+ id="rtid-path4901"
+ style="fill:#ffffff;stroke-width:0.5232"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z"
+ id="rtid-path4903"
+ style="fill:#ffffff;stroke-width:0.5231"
+ sodipodi:nodetypes="cccsssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z"
+ id="rtid-path4905"
+ style="fill:#ffffff;stroke-width:0.5212"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z"
+ id="rtid-path4907"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z"
+ id="rtid-path4909"
+ style="fill:#ffffff;stroke-width:0.5213"
+ sodipodi:nodetypes="cccssssssssssssssccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g4945"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path4913"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path4915"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path4917"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path4919"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path4921"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path4923"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path4925"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path4927"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path4929"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path4931"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path4933"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path4935"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path4937"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path4939"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path4941"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path4943"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="17.416966"
+ inkscape:cy="1.2703214"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="11.039996">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask4877)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g4258" transform="matrix(-1,0,0,1,128,0)">
- <ns0:g id="rtid-g1931" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.00587,0.0179 -0.0794,0.2775 -0.08594,0.2969 -0.06287,0.1867 -0.15724,0.4398 -0.27148,0.748 -0.22848,0.6164 -0.5424,1.4486 -0.87696,2.4121 -0.6691,1.927 -1.42334,4.379 -1.75585,6.707 v 0.002 c -0.4895,3.547 -0.50594,10.988 -0.43555,12.248 0.04495,0.797 0.53639,1.591 1.25781,2.357 0.72142,0.767 1.6859,1.508 2.73633,2.167 2.10084,1.316 4.52494,2.305 6.09574,2.412 h 0.0078 0.0078 c 0.8428,0 1.9229,-0.63 3.3125,-1.379 1.3891,-0.75 3.0513,-1.642 4.873,-2.233 3.8849,-1.238 8.5466,-1.473 9.3848,-1.488 v -0.5 c -0.6737,0 -5.4086,0.197 -9.5352,1.512 h -0.0019 c -1.8776,0.609 -3.5686,1.517 -4.959,2.267 -1.3879,0.749 -2.5101,1.317 -3.0684,1.319 -1.3907,-0.098 -3.8082,-1.054 -5.85152,-2.334 -1.02381,-0.642 -1.95783,-1.365 -2.63671,-2.086 -0.67889,-0.721 -1.08901,-1.438 -1.12305,-2.041 -0.06365,-1.14 -0.04486,-8.7 0.43164,-12.153 0.32446,-2.271 1.06828,-4.7 1.73242,-6.6129 0.33207,-0.9564 0.64375,-1.7838 0.87305,-2.4023 0.11465,-0.3093 0.20882,-0.566 0.27539,-0.7637 C 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z" id="rtid-path1429-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c 0.0089,0.1209 0.0315,0.4553 0.0449,0.6895 0.0208,0.3642 0.0397,0.8497 0.0352,1.3984 -0.009,1.0974 -0.1159,2.4471 -0.4844,3.5551 -0.277,0.832 -0.8162,1.42 -1.3555,2.074 -0.5392,0.653 -1.0752,1.379 -1.2285,2.447 -0.124,0.865 0.4155,1.821 0.9258,2.846 0.5103,1.024 1.0125,2.103 0.9824,3.058 -0.0931,2.95 -0.2835,4.626 -0.2383,5.397 0.0402,0.689 -0.003,1.719 0.2188,2.754 0.2218,1.034 0.7276,2.092 1.8555,2.789 1.0846,0.67 2.3097,0.781 3.4277,0.746 1.118,-0.036 2.1488,-0.212 2.8184,-0.166 0.4636,0.031 1.2531,0.344 2.2265,0.562 0.9735,0.219 2.1547,0.334 3.4668,-0.062 0.2381,-0.072 0.6346,-0.269 1.1777,-0.543 0.5432,-0.274 1.2055,-0.621 1.8711,-0.969 0.6656,-0.348 1.3341,-0.698 1.8848,-0.976 0.5508,-0.278 1.0031,-0.488 1.1602,-0.539 2.0231,-0.657 3.2292,-0.856 3.9961,-0.895 0.636,-0.032 1.1544,0.056 1.4648,0.084 v -0.5 c -0.249,0 -0.6636,-0.126 -1.4902,-0.084 -0.8266,0.042 -2.0748,0.253 -4.125,0.918 -0.2505,0.081 -0.6745,0.288 -1.2305,0.568 -0.556,0.281 -1.225,0.633 -1.8906,0.981 -0.6657,0.348 -1.3293,0.693 -1.8672,0.965 -0.5379,0.271 -0.9777,0.476 -1.0957,0.511 -1.2077,0.365 -2.2846,0.261 -3.211,0.053 -0.9263,-0.208 -1.6793,-0.532 -2.3046,-0.574 -0.7836,-0.053 -1.7942,0.132 -2.8672,0.166 -1.0731,0.034 -2.1885,-0.077 -3.1504,-0.672 -0.9944,-0.615 -1.4244,-1.515 -1.6289,-2.469 -0.2045,-0.953 -0.1642,-1.942 -0.2071,-2.677 -0.0373,-0.636 0.1447,-2.388 0.2383,-5.352 0.0358,-1.135 -0.5223,-2.267 -1.0351,-3.297 -0.5129,-1.029 -0.9607,-1.967 -0.877,-2.551 0.1349,-0.939 0.5899,-1.562 1.1172,-2.201 0.5273,-0.639 1.1294,-1.285 1.4453,-2.234 0.3972,-1.195 0.5006,-2.5836 0.5098,-3.7092 C 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z" id="rtid-path1429-3-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,119.75 c -0.1304,0 -0.5351,-0.025 -1.0996,-0.043 -0.5645,-0.018 -1.302,-0.03 -2.1484,0 -1.693,0.061 -3.8238,0.285 -5.9004,0.945 h -0.002 c -3.6497,1.184 -4.7776,0.294 -6.8574,0.266 -0.5416,-0.007 -1.2305,0.196 -2.0371,0.434 -0.8067,0.237 -1.7191,0.517 -2.6367,0.685 -0.9177,0.168 -1.837,0.223 -2.6524,0.033 -0.8154,-0.19 -1.5294,-0.612 -2.0879,-1.445 -0.6269,-0.935 -0.6556,-2.243 -0.4902,-3.582 0.1654,-1.339 0.5189,-2.685 0.5723,-3.715 0.0328,-0.631 -0.0207,-1.793 -0.0176,-3.25 0.003,-1.457 0.0602,-3.196 0.3086,-4.928 0.3283,-2.288 0.3163,-2.713 0.9746,-4.619 0.3416,-0.9886 0.4135,-1.5254 0.3984,-2.1033 C 72.3091,97.8498 72.219,97.2389 72.25,96 h -0.5 c -0.0072,1.0234 0.0617,1.9639 0.0742,2.4414 0.0139,0.5333 -0.0401,0.9676 -0.3711,1.9256 -0.6667,1.93 -0.6692,2.435 -0.9961,4.713 -0.2535,1.767 -0.3113,3.527 -0.3144,4.996 -0.0031,1.469 0.0472,2.658 0.0176,3.227 -0.0485,0.935 -0.3976,2.296 -0.5684,3.679 -0.1708,1.384 -0.1701,2.816 0.5703,3.92 0.6263,0.934 1.4723,1.443 2.3887,1.657 0.9163,0.213 1.9017,0.144 2.8574,-0.032 0.9557,-0.175 1.8845,-0.458 2.6875,-0.695 0.803,-0.237 1.4918,-0.419 1.8906,-0.414 1.934,0.026 3.2675,0.925 7.0176,-0.291 l -0.0019,0.002 c 2.0133,-0.64 4.1038,-0.862 5.7675,-0.922 0.8319,-0.03 1.5565,-0.018 2.1133,0 0.4322,0.014 0.9081,0.036 1.1172,0.043 z" id="rtid-path1429-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccscsccccscccccscccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,119.75 c -2.032,0.034 -2.99,-0.085 -3.885,-0.125 -0.894,-0.04 -1.718,0.006 -3.396,0.369 -0.152,0.033 -0.481,0.04 -0.871,0.02 -0.391,-0.021 -0.851,-0.063 -1.313,-0.102 -0.462,-0.039 -0.927,-0.077 -1.334,-0.088 -0.406,-0.011 -0.746,-0.002 -1.013,0.082 -0.88,0.279 -1.573,0.216 -2.168,-0.025 -0.596,-0.242 -1.097,-0.674 -1.54,-1.156 -0.442,-0.482 -0.823,-1.011 -1.193,-1.434 -0.37,-0.423 -0.741,-0.779 -1.226,-0.779 -1.489,-0.1 -3.036,0.177 -4.178,0.133 -0.573,-0.023 -1.03,-0.127 -1.332,-0.352 -0.302,-0.225 -0.493,-0.574 -0.516,-1.225 v -0.006 -0.005 c -0.056,-0.678 -0.431,-1.705 -0.721,-3.034 -0.289,-1.328 -0.495,-2.929 -0.236,-4.634 0.146,-0.962 0.46,-1.673 0.776,-2.418 0.315,-0.746 0.628,-1.526 0.73,-2.575 0.131,-1.344 0.047,-2.12 -0.07,-2.9585 C 104.397,98.5986 104.25,97.6918 104.25,96 h -0.5 c 0.019,1.4996 0.16,2.7336 0.268,3.5059 0.115,0.8311 0.197,1.5361 0.07,2.8421 -0.095,0.974 -0.383,1.687 -0.695,2.427 -0.313,0.741 -0.654,1.509 -0.811,2.539 -0.272,1.791 -0.052,3.454 0.244,4.815 0.297,1.361 0.668,2.449 0.711,2.971 v -0.012 c 0.027,0.749 0.284,1.286 0.715,1.607 0.431,0.322 0.991,0.426 1.611,0.45 1.241,0.047 2.774,-0.23 4.18,-0.133 h 0.01 0.008 c 0.214,0 0.504,0.214 0.849,0.609 0.345,0.395 0.734,0.931 1.203,1.441 0.469,0.511 1.023,0.999 1.719,1.282 0.696,0.282 1.531,0.348 2.506,0.039 0.14,-0.044 0.463,-0.069 0.85,-0.059 0.386,0.011 0.844,0.047 1.304,0.086 0.46,0.039 0.923,0.081 1.328,0.102 0.405,0.021 0.744,0.027 1.004,-0.03 1.654,-0.358 2.403,-0.395 3.268,-0.357 0.809,0.036 2.112,0.139 3.908,0.125 z" id="rtid-path1429-3-6-7-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c 0.002,0.7276 0.023,5.8956 -0.648,10.3066 v 0.002 c -0.256,1.793 -0.027,3.1727 0.277,4.2422 0.303,1.066 0.664,1.8347 0.709,2.3496 0.02,0.5969 -0.337,1.2518 -0.912,1.9297 -0.576,0.6792 -1.353,1.3705 -2.086,2.0527 -0.734,0.6822 -1.4243,1.3525 -1.838,2.0371 -0.2069,0.3423 -0.3472,0.6931 -0.3672,1.0547 -0.0201,0.3616 0.0895,0.7282 0.3398,1.0586 0.006,0.0079 0.072,0.1314 0.1406,0.2988 0.0687,0.1674 0.1525,0.3892 0.2539,0.6446 0.2029,0.5106 0.4739,1.1595 0.8339,1.8242 0.72,1.3293 1.805,2.7405 3.459,3.1797 1.606,0.4262 3.696,-0.0673 5.443,-0.7051 0.874,-0.3189 1.661,-0.6768 2.252,-0.9902 0.296,-0.1568 0.543,-0.3019 0.731,-0.4278 0.188,-0.1259 0.307,-0.1971 0.402,-0.3574 0.099,-0.1671 0.126,-0.3547 0.141,-0.5762 0.015,-0.2215 0.009,-0.4762 -0.004,-0.7578 -0.027,-0.5631 -0.088,-1.229 -0.107,-1.8808 -0.02,-0.6519 0.006,-1.2899 0.134,-1.7715 0.129,-0.4817 0.333,-0.7786 0.686,-0.8907 0.16,-0.0505 0.572,0.0163 1.064,0.2168 0.493,0.2006 1.071,0.5074 1.645,0.8204 0.574,0.3129 1.142,0.6338 1.633,0.8671 0.245,0.1167 0.471,0.2115 0.675,0.2735 0.204,0.062 0.385,0.0994 0.575,0.0547 2.151,-0.5079 6.23,-0.5709 8.818,-0.6055 v -0.5 c -2.583,0.0344 -6.596,0.0678 -8.932,0.6191 -0.029,0.0069 -0.152,0.0031 -0.316,-0.0468 -0.164,-0.05 -0.373,-0.1374 -0.606,-0.2481 -0.465,-0.2214 -1.03,-0.5385 -1.607,-0.8535 -0.577,-0.315 -1.166,-0.6281 -1.695,-0.8437 -0.53,-0.2157 -0.995,-0.3602 -1.405,-0.2305 -0.553,0.1754 -0.865,0.6692 -1.017,1.2383 -0.152,0.5691 -0.172,1.2413 -0.152,1.914 0.019,0.6727 0.081,1.3451 0.107,1.8907 0.013,0.2727 0.018,0.514 0.006,0.7011 -0.013,0.1871 -0.052,0.321 -0.072,0.3555 0.021,-0.0365 -0.085,0.0835 -0.252,0.1953 -0.167,0.1118 -0.401,0.2516 -0.686,0.4024 -0.569,0.3014 -1.338,0.6523 -2.189,0.9628 -1.702,0.6212 -3.741,1.0637 -5.143,0.6914 -1.448,-0.3842 -2.459,-1.6617 -3.148,-2.9355 -0.345,-0.6369 -0.609,-1.2675 -0.809,-1.7715 -0.1001,-0.252 -0.1834,-0.4718 -0.2559,-0.6484 -0.0724,-0.1767 -0.1202,-0.3002 -0.2051,-0.4121 -0.1885,-0.2489 -0.2521,-0.4784 -0.2382,-0.7285 0.0138,-0.2502 0.1154,-0.5273 0.2949,-0.8243 0.3593,-0.594 1.0243,-1.251 1.7523,-1.9277 0.727,-0.6767 1.514,-1.3756 2.125,-2.0957 0.61,-0.7201 1.06,-1.4733 1.031,-2.2754 V 80.873 80.8672 c -0.057,-0.685 -0.437,-1.4281 -0.729,-2.4531 -0.291,-1.0246 -0.507,-2.3174 -0.263,-4.0332 v -0.002 C 104.3,69.7492 104.25,64.3795 104.25,64 Z" id="rtid-path1429-3-6-7-5-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c 0.0091,1.5714 0.0802,3.0066 0.0508,3.8496 -0.0315,0.9016 -0.1655,1.4906 -0.5938,2.1231 -0.0813,0.12 -0.1758,0.1465 -0.4023,0.125 -0.2265,-0.0216 -0.5386,-0.1187 -0.8731,-0.2325 -0.3344,-0.1137 -0.6932,-0.242 -1.0527,-0.3066 -0.3595,-0.0646 -0.7329,-0.0682 -1.0625,0.1094 -0.7224,0.3889 -1.0902,1.3135 -1.3437,2.25 -0.2536,0.9365 -0.3718,1.9133 -0.4512,2.4355 -0.5429,3.5676 -0.1219,10.334 -0.0195,11.5664 0.0143,0.4008 0.1568,0.7426 0.3984,0.9942 0.2416,0.2515 0.5685,0.4126 0.9434,0.5156 0.7497,0.206 1.7106,0.1921 2.7539,0.1035 2.0864,-0.1771 4.5154,-0.6677 5.8886,-0.5684 h 0.0078 0.0098 c 0.5933,0 1.6161,0.4351 2.9297,0.7422 1.3136,0.3071 2.9464,0.4678 4.8516,-0.1347 0.7431,-0.2351 1.6039,-0.0972 2.4882,0.0937 0.8844,0.191 1.7831,0.4364 2.627,0.3125 1.13,-0.1658 1.9125,-0.1031 2.9199,0.0039 0.9472,0.1006 2.4274,0.2512 4.1797,0.2676 v -0.5 c -1.923,0 -3.1125,-0.1579 -4.127,-0.2656 -1.0144,-0.1077 -1.8632,-0.1754 -3.0449,-0.002 -0.6935,0.1018 -1.5511,-0.1108 -2.4492,-0.3047 -0.8981,-0.1939 -1.8455,-0.3682 -2.7441,-0.0839 -1.8035,0.5703 -3.3254,0.422 -4.5879,0.1269 -1.26,-0.2946 -2.2315,-0.7521 -3.0371,-0.7539 -1.5273,-0.1078 -3.9177,0.3956 -5.9532,0.5684 -1.0197,0.0865 -1.9451,0.0866 -2.58,-0.0879 C 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 c -0.0983,-1.1791 -0.5076,-8.0227 0.0156,-11.4609 0.082,-0.5395 0.1986,-1.4914 0.4395,-2.3809 0.2408,-0.8894 0.626,-1.6874 1.0976,-1.9414 0.1846,-0.0994 0.4341,-0.1109 0.7364,-0.0566 0.3022,0.0543 0.6451,0.1723 0.9824,0.2871 0.3373,0.1147 0.6668,0.2276 0.9844,0.2578 0.3175,0.0302 0.6678,-0.0505 0.8652,-0.3418 0.485,-0.7161 0.6447,-1.4407 0.6777,-2.3867 C 72.3318,66.9211 72.25,65.7359 72.25,64 Z" id="rtid-path1429-3-6-7-5-3-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c -0.0041,0.9064 -0.0406,2.456 -0.1562,3.8125 -0.1239,1.4517 -0.3471,2.9029 -0.6954,3.7305 -0.2745,0.6512 -1.1623,1.8818 -1.8222,3.1386 -0.3302,0.6288 -0.6057,1.269 -0.7207,1.8848 -0.1151,0.6158 -0.0627,1.2254 0.3007,1.7129 1.8782,2.519 2.099,4.6977 2.2754,6.1465 0.0882,0.7244 0.1304,1.2888 0.4961,1.6465 0.1829,0.1788 0.4495,0.2624 0.7461,0.248 0.2967,-0.0144 0.6388,-0.1102 1.0723,-0.2832 0.3027,-0.1208 0.5185,-0.1488 0.6601,-0.1289 0.1417,0.0199 0.2229,0.0743 0.3067,0.1816 0.1676,0.2147 0.2739,0.6831 0.375,1.2168 0.1011,0.5338 0.2085,1.1316 0.5059,1.6368 0.2973,0.5051 0.8174,0.9003 1.6113,0.955 h 0.0097 0.0079 c 1.5002,0 3.8757,-0.8548 7.58,-2.0293 0.4296,-0.1362 1.3992,0.0301 2.3633,0.25 0.9642,0.2199 1.9177,0.4843 2.5957,0.3575 1.4727,-0.2759 2.3173,-0.3205 3.2188,-0.3028 0.8364,0.0164 2.0711,0.0852 3.5195,0.0762 v -0.5 c -1.6384,0.0238 -2.5854,-0.058 -3.5098,-0.0762 -0.9243,-0.0181 -1.8225,0.03 -3.3203,0.3106 -0.4404,0.0824 -1.4225,-0.1304 -2.3926,-0.3516 -0.97,-0.2212 -1.9332,-0.4596 -2.625,-0.2402 -3.7043,1.1745 -6.1187,2.001 -7.4199,2.0039 -0.648,-0.0477 -0.9743,-0.3117 -1.207,-0.707 -0.2342,-0.3978 -0.3463,-0.9436 -0.4473,-1.4766 -0.1009,-0.533 -0.1785,-1.0529 -0.4726,-1.4297 -0.1471,-0.1884 -0.3663,-0.3319 -0.6309,-0.3691 -0.2645,-0.0372 -0.5615,0.0175 -0.9141,0.1582 -0.4063,0.1621 -0.7088,0.2381 -0.9121,0.248 -0.2032,0.0099 -0.2927,-0.0288 -0.3711,-0.1055 -0.1567,-0.1533 -0.26,-0.6297 -0.3476,-1.3496 -0.1753,-1.4398 -0.4227,-3.769 -2.3731,-6.3847 -0.2593,-0.3479 -0.3106,-0.787 -0.2109,-1.3203 0.0997,-0.5334 0.3558,-1.1405 0.6738,-1.7461 0.636,-1.2112 1.5089,-2.3916 1.8399,-3.1778 0.3973,-0.944 0.6088,-2.4081 0.7344,-3.8808 C 40.2193,66.3827 40.25,64.9102 40.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-93" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,64 c -0.04455,2.0095 -0.50495,3.1644 -1.06641,4.0684 -0.59076,0.9511 -1.3019,1.981 -1.63476,4.3222 -0.07485,0.5267 0.05132,1.266 0.11523,2.125 0.06392,0.859 0.07194,1.8168 -0.18359,2.6719 -0.34551,1.1561 -0.98076,2.2856 -1.54102,3.3262 -0.56026,1.0405 -1.05846,1.9842 -1.0664,2.8574 -0.00812,0.8929 -0.34393,2.0452 -0.6836,3.0254 -0.16983,0.4901 -0.33901,0.9388 -0.46679,1.3008 -0.06389,0.1809 -0.11776,0.3407 -0.15625,0.4765 -0.03849,0.1359 -0.066886,0.2378 -0.0625,0.3614 0.04964,1.4001 1.46483,3.1567 4.05468,4.6152 1.74164,0.9807 4.63358,1.2487 7.31641,1.3164 1.3414,0.0338 2.6274,0.012 3.6797,-0.0098 1.0523,-0.0218 1.8815,-0.0428 2.2578,-0.0156 0.4216,0.0305 0.7577,-0.1608 1,-0.4297 0.2423,-0.2689 0.4327,-0.6083 0.6895,-0.9746 0.5134,-0.7325 1.267,-1.5879 3.0703,-2.1582 0.7753,-0.2452 1.2151,-0.9249 1.6211,-1.5117 0.4059,-0.5868 0.7667,-1.068 1.3007,-1.1582 C 28.5462,87.7778 29.872,88.1744 32,88.25 v -0.5 c -2.2695,-0.0472 -3.35,-0.4977 -6.0879,-0.0352 -0.7758,0.1311 -1.222,0.7762 -1.6309,1.3672 -0.4088,0.5911 -0.7925,1.1411 -1.3593,1.3203 -1.9053,0.6026 -2.7864,1.5721 -3.3301,2.3477 -0.2718,0.3878 -0.4663,0.7234 -0.6504,0.9277 -0.1841,0.2044 -0.3172,0.2857 -0.5937,0.2657 -0.4427,-0.0321 -1.2523,-0.0081 -2.3028,0.0136 -1.0504,0.0218 -2.33,0.0433 -3.6582,0.0098 C 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 c -1e-5,-3e-4 0.00983,-0.092 0.04297,-0.209 0.03313,-0.117 0.08414,-0.2687 0.14648,-0.4453 C 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-6-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,55.75 c -1.2294,0 -2.0383,0.1059 -2.6211,0.3027 -0.5828,0.1969 -0.936,0.4856 -1.2051,0.7754 -0.538,0.5797 -0.7334,1.1122 -2.2988,1.4375 -0.1225,0.0255 -0.3311,-0.0318 -0.5859,-0.1855 -0.2549,-0.1538 -0.5432,-0.3874 -0.8379,-0.6231 -0.2947,-0.2356 -0.5961,-0.474 -0.8985,-0.6445 -0.3024,-0.1705 -0.6278,-0.2879 -0.955,-0.1836 -0.8753,0.279 -1.2921,1.0415 -1.6368,1.7617 -0.3446,0.7203 -0.6429,1.4116 -1.1836,1.7481 -0.835,0.5196 -2.0538,0.8639 -3.1093,0.9902 -0.5278,0.0632 -1.0151,0.0718 -1.3868,0.0293 C 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 h -0.5 c -0.01831,1.7885 0.15046,3.2142 0.23633,4.1387 0.09152,0.9853 0.08839,1.806 -0.35352,3.2773 -0.17622,0.5868 -0.74629,0.8555 -1.39062,1.168 -0.32217,0.1562 -0.65494,0.3186 -0.9336,0.5566 -0.27866,0.2381 -0.49995,0.5665 -0.55859,0.9961 -0.14313,1.0488 0.13219,2.3446 0.42188,3.7188 0.28968,1.3742 0.60026,2.8218 0.57812,4.1054 -0.01731,1.0036 -0.36797,1.9455 -0.71875,2.7071 -0.17539,0.3808 -0.34908,0.7143 -0.48242,0.9961 -0.13334,0.2817 -0.24291,0.4882 -0.22852,0.7402 0.02151,0.3765 0.09621,0.6678 0.25196,0.8926 0.15574,0.2248 0.38663,0.3594 0.63671,0.4375 0.50018,0.1561 1.11445,0.1491 1.91602,0.3086 1.60315,0.3189 3.9558,1.2492 7.1094,5.2129 0.2124,0.267 0.5629,0.3515 0.9902,0.4003 0.4273,0.0489 0.9443,0.0355 1.502,-0.0312 1.1152,-0.1334 2.3831,-0.4817 3.3164,-1.0625 0.721,-0.4487 1.0331,-1.2549 1.3691,-1.957 0.336,-0.7021 0.6699,-1.2871 1.3379,-1.5 0.1189,-0.0379 0.3094,0.002 0.5586,0.1425 0.2492,0.1406 0.5368,0.3651 0.8301,0.5997 0.2933,0.2345 0.5921,0.4789 0.8925,0.6601 0.3005,0.1813 0.6143,0.3169 0.9454,0.2481 1.6748,-0.3481 2.0888,-1.0755 2.5644,-1.5879 0.2378,-0.2562 0.4931,-0.472 0.9981,-0.6426 C 29.9927,56.3721 31.0025,56.2706 32,56.25 Z" id="rtid-path1429-2-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.0814,3.1631 -0.7923,5.2367 -1.6016,6.8906 -0.2394,0.4893 -0.8275,1.7184 -1.3867,3.0371 -0.5592,1.3188 -1.0905,2.7074 -1.2187,3.5957 -0.267,1.8487 0.5366,3.6171 1.4629,5.045 0.4631,0.7139 0.9603,1.3462 1.3789,1.8613 0.4186,0.5151 0.7637,0.9246 0.8984,1.1426 0.8016,1.2965 0.8652,2.8447 1.0879,4.1484 0.1113,0.6518 0.2614,1.2487 0.6094,1.7168 0.348,0.4681 0.903,0.7746 1.6953,0.8281 h 0.0078 0.0078 c 0.3917,0 1.073,-0.0847 1.9648,-0.2285 0.8919,-0.1438 1.9831,-0.3485 3.1465,-0.5898 2.3264,-0.4825 4.9363,-1.1135 6.8028,-1.7188 3.96,-1.2617 5.5671,-1.409 9.3945,-1.4785 v -0.5 c -4.0916,0.0678 -5.455,0.1989 -9.5449,1.502 h -0.002 c -1.8333,0.5946 -4.4372,1.225 -6.7519,1.705 -1.1574,0.2401 -2.2431,0.4438 -3.125,0.586 -0.8755,0.1411 -1.5546,0.2195 -1.8711,0.2207 -0.6838,-0.0474 -1.06,-0.2696 -1.3242,-0.625 -0.265,-0.3565 -0.4108,-0.8787 -0.5176,-1.5039 -0.2136,-1.2505 -0.2687,-2.8906 -1.1563,-4.3262 -0.1815,-0.2937 -0.5209,-0.6852 -0.9355,-1.1953 -0.4146,-0.5102 -0.8983,-1.1266 -1.3457,-1.8164 -0.8949,-1.3797 -1.6286,-3.0396 -1.3887,-4.7012 0.1099,-0.7609 0.6319,-2.1669 1.1856,-3.4727 0.5537,-1.3057 1.139,-2.5316 1.375,-3.0136 C 39.4461,37.3754 40.2065,35.4289 40.25,32 Z" id="rtid-path1429-3-9-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccsccscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c -0.0032,2.801 -0.0472,2.5586 -0.6758,6.9707 -0.0738,0.5178 -0.5011,1.122 -0.9785,1.877 -0.4774,0.7549 -0.9906,1.671 -1.1562,2.8671 -0.2572,1.8565 -0.8222,2.6696 -1.3516,3.2872 -0.2647,0.3087 -0.5286,0.5682 -0.7422,0.8867 -0.2136,0.3185 -0.3654,0.6998 -0.3848,1.1972 -0.0204,0.5226 -0.1327,1.55 -0.1894,2.5528 -0.0284,0.5014 -0.043,0.9993 -0.0235,1.4355 0.0196,0.4362 0.0633,0.8064 0.1954,1.0918 0.2074,0.4483 0.2151,1.5997 0.123,2.7324 -0.0921,1.1328 -0.2531,2.2556 -0.2598,2.8575 -0.0109,0.9677 0.4244,1.628 1.0957,1.9687 0.6713,0.3407 1.5431,0.4053 2.4922,0.3711 1.8984,-0.0684 4.144,-0.5541 5.5469,-0.459 0.4439,0.0301 1.0705,-0.1419 1.8926,-0.4121 0.8221,-0.2702 1.815,-0.6496 2.8789,-1.0684 2.1264,-0.8369 4.5333,-1.8329 6.3516,-2.4277 l 0.0039,-0.0019 C 90.5648,56.4658 92.2928,56.2606 96,56.25 v -0.5 c -3.9621,0 -5.4573,0.1992 -9.5859,1.502 h -0.002 c -1.8515,0.6054 -4.2614,1.6044 -6.3828,2.4394 -1.0607,0.4175 -2.0477,0.7944 -2.8516,1.0586 -0.8038,0.2642 -1.4486,0.4059 -1.7031,0.3887 -1.5472,-0.105 -3.7727,0.3913 -5.5976,0.457 -0.9125,0.0329 -1.7151,-0.0479 -2.2481,-0.3184 -0.533,-0.2704 -0.8316,-0.6861 -0.8223,-1.5156 0.0058,-0.5136 0.1661,-1.67 0.2598,-2.8222 0.0937,-1.1523 0.1519,-2.2932 -0.168,-2.9844 -0.0741,-0.1603 -0.134,-0.4964 -0.1523,-0.9043 -0.0183,-0.408 -0.0044,-0.8907 0.0234,-1.3828 0.0557,-0.9843 0.1693,-1.9952 0.1914,-2.5625 0.016,-0.4109 0.1255,-0.676 0.3008,-0.9375 0.1754,-0.2615 0.4271,-0.5152 0.7071,-0.8418 0.5599,-0.6532 1.1982,-1.6047 1.4667,-3.543 0.1512,-1.092 0.6179,-1.9328 1.084,-2.6699 0.4662,-0.7372 0.9476,-1.3614 1.0489,-2.0723 C 72.2188,34.4749 72.25,35.1813 72.25,32 Z" id="rtid-path1429-3-6-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.01,1.3903 -0.281,2.2117 -0.703,2.707 -0.454,0.5321 -1.137,1.0722 -1.752,2.502 -0.863,2.0036 -1.6884,4.2596 -1.9669,6.2129 -0.0653,0.4591 0.13,0.874 0.4102,1.2402 0.2797,0.3662 0.6537,0.7069 1.0217,1.0606 0.735,0.7073 1.418,1.4408 1.39,2.3847 -0.041,1.4105 -0.495,2.7804 -0.937,3.8867 -0.221,0.5532 -0.438,1.0397 -0.6,1.4395 -0.162,0.3998 -0.286,0.6846 -0.261,0.9766 0.066,0.7929 0.57,1.5954 1.302,2.3769 0.732,0.7816 1.703,1.542 2.758,2.2149 2.11,1.3456 4.522,2.3476 6.088,2.3476 0.112,0 0.238,-0.0782 0.291,-0.1621 0.053,-0.0839 0.066,-0.162 0.074,-0.2402 0.017,-0.1565 0.001,-0.3311 -0.027,-0.543 -0.057,-0.4238 -0.172,-0.9818 -0.279,-1.5879 -0.215,-1.2122 -0.357,-2.6219 -0.026,-3.2949 0.576,-1.1684 1.765,-1.8992 3.121,-2.4238 1.356,-0.5247 2.856,-0.8346 4.006,-1.1993 0.396,-0.1256 0.609,-0.0525 0.819,0.1387 0.209,0.1912 0.393,0.5411 0.552,0.9512 0.16,0.4101 0.299,0.8737 0.469,1.2929 0.17,0.4193 0.366,0.8047 0.703,1.0372 0.281,0.1939 0.726,0.3476 1.307,0.498 0.58,0.1504 1.288,0.2854 2.045,0.3867 1.414,0.1893 3.205,0.2343 4.445,0.0469 v -0.5 c -1.174,0.2223 -2.9,0.1551 -4.379,-0.043 -0.739,-0.099 -1.431,-0.2311 -1.986,-0.375 -0.556,-0.1438 -0.985,-0.3109 -1.149,-0.4238 -0.185,-0.1281 -0.366,-0.4274 -0.523,-0.8144 -0.157,-0.3871 -0.297,-0.8511 -0.467,-1.2872 -0.169,-0.436 -0.365,-0.8498 -0.682,-1.1386 -0.317,-0.2889 -0.78,-0.4124 -1.304,-0.2461 -1.107,0.351 -2.628,0.6636 -4.037,1.209 -1.41,0.5453 -2.73,1.3324 -3.389,2.6699 -0.462,0.9376 -0.235,2.3721 -0.018,3.6015 0.109,0.6148 0.224,1.1772 0.276,1.5684 0.021,0.1596 0.023,0.2624 0.021,0.3457 -1.36,-0.0479 -3.679,-0.957 -5.681,-2.2344 -1.028,-0.6556 -1.971,-1.3984 -2.662,-2.1367 -0.692,-0.7383 -1.12,-1.4732 -1.17,-2.0762 -0.005,-0.0547 0.07,-0.362 0.226,-0.748 0.157,-0.386 0.376,-0.8771 0.602,-1.4414 0.451,-1.1286 0.928,-2.5515 0.972,-4.0586 0.035,-1.1881 -0.799,-2.0402 -1.545,-2.7578 -0.372,-0.3588 -0.729,-0.6911 -0.968,-1.0039 -0.2396,-0.3129 -0.3529,-0.5852 -0.3128,-0.8672 0.2668,-1.8693 1.0748,-4.0998 1.9298,-6.084 0.581,-1.3507 1.169,-1.7875 1.672,-2.377 0.502,-0.5894 0.859,-1.3225 0.824,-3.0312 z" id="rtid-path1429-3-6-7-2-8" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,23.75 c -1.652,-0.0497 -2.58,0.5216 -3.203,1.0195 -0.312,0.249 -0.551,0.4693 -0.75,0.5782 -0.199,0.1088 -0.329,0.1354 -0.578,0.0253 -1.422,-0.6283 -2.855,-0.8313 -5.045,-0.121 h -0.002 c -0.209,0.0678 -0.656,-0.0762 -1.127,-0.2657 -0.236,-0.0947 -0.477,-0.1915 -0.719,-0.248 -0.241,-0.0566 -0.495,-0.078 -0.732,0.0312 -1.414,0.652 -2.513,1.7213 -3.395,2.5996 -0.441,0.4392 -0.83,0.8311 -1.162,1.0977 -0.332,0.2666 -0.598,0.3855 -0.769,0.373 -0.267,-0.0193 -0.473,-0.1723 -0.696,-0.4726 -0.222,-0.3003 -0.432,-0.7336 -0.666,-1.2149 -0.467,-0.9625 -1.03,-2.1262 -2.138,-2.8105 -1.134,-0.6998 -2.701,-0.8763 -3.987,-1.0762 -0.642,-0.0999 -1.217,-0.2054 -1.607,-0.3574 -0.195,-0.076 -0.341,-0.1633 -0.432,-0.252 -0.091,-0.0886 -0.133,-0.1699 -0.142,-0.2871 0,0.0087 0.014,-0.0882 0.084,-0.2207 0.069,-0.1324 0.181,-0.3062 0.32,-0.5058 0.277,-0.3993 0.661,-0.908 1.053,-1.4922 0.783,-1.1684 1.605,-2.6388 1.652,-4.2051 0.035,-1.1613 -0.746,-2.2622 -1.461,-3.2598 -0.358,-0.4987 -0.704,-0.9721 -0.941,-1.3945 -0.237,-0.4224 -0.35,-0.7844 -0.309,-1.0527 0.056,-0.36926 0.198,-0.59839 0.397,-0.78127 0.198,-0.18288 0.463,-0.31486 0.755,-0.43555 0.293,-0.12068 0.61,-0.22798 0.901,-0.38671 0.29,-0.15874 0.563,-0.38099 0.713,-0.72071 0.453,-1.0275 0.491,-2.32339 0.435,-3.70508 C 104.393,2.8273 104.235,1.35423 104.25,0 h -0.5 c 0.004,1.32161 0.147,2.95144 0.199,4.22852 0.055,1.35795 0.001,2.59311 -0.392,3.48437 -0.094,0.21123 -0.259,0.35278 -0.496,0.48242 -0.238,0.12965 -0.539,0.23504 -0.85,0.36328 -0.311,0.12825 -0.635,0.28153 -0.906,0.53125 -0.272,0.24973 -0.482,0.60211 -0.553,1.07226 -0.069,0.4539 0.109,0.9088 0.369,1.3731 0.26,0.4642 0.616,0.9459 0.971,1.4414 0.71,0.9909 1.396,2.0367 1.369,2.9531 -0.042,1.3981 -0.804,2.8013 -1.568,3.9414 -0.383,0.5701 -0.763,1.0749 -1.049,1.4883 -0.144,0.2067 -0.264,0.3903 -0.352,0.5566 -0.087,0.1663 -0.156,0.3092 -0.14,0.4942 0.019,0.2365 0.129,0.4467 0.291,0.6035 0.161,0.1567 0.365,0.2683 0.599,0.3593 0.468,0.1822 1.062,0.2858 1.711,0.3868 1.298,0.2019 2.815,0.3993 3.801,1.0078 0.955,0.5896 1.485,1.643 1.951,2.6035 0.233,0.4803 0.45,0.9342 0.717,1.2949 0.267,0.3607 0.612,0.6413 1.06,0.6738 0.394,0.0285 0.75,-0.1857 1.12,-0.4824 0.369,-0.2966 0.76,-0.6977 1.199,-1.1347 0.877,-0.8742 1.938,-1.8922 3.252,-2.4981 0.084,-0.0389 0.221,-0.0438 0.408,0 0.187,0.0439 0.412,0.1305 0.646,0.2246 0.468,0.1883 0.975,0.4402 1.471,0.2793 2.105,-0.6821 3.34,-0.4946 4.69,0.1016 0.37,0.1634 0.729,0.1142 1.017,-0.043 0.288,-0.1572 0.531,-0.3925 0.824,-0.6269 0.548,-0.4374 1.555,-0.8873 2.891,-0.9102 z" id="rtid-path1429-3-6-7-5-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,0 c 0.0141,2.21123 -0.5181,3.78788 -1.1719,5.08594 -0.6822,1.35448 -1.4918,2.7313 -1.8261,5.07816 -0.0689,0.4829 0.1369,0.9762 0.4355,1.4921 0.2986,0.516 0.7066,1.0613 1.1133,1.6211 0.8133,1.1198 1.5987,2.3053 1.5722,3.2696 -0.036,1.3189 -0.8124,2.4014 -1.6425,3.3301 -0.4151,0.4643 -0.8408,0.8863 -1.1836,1.2832 -0.3428,0.3969 -0.6164,0.7663 -0.6836,1.1796 -0.0977,0.5998 -0.3105,2.0169 -0.2871,3.4493 0.0233,1.4323 0.2521,2.9131 1.2168,3.6015 1.2145,0.8668 3.0917,0.7818 4.8691,0.543 0.8887,-0.1194 1.7553,-0.2841 2.4981,-0.4102 0.7427,-0.126 1.3715,-0.2096 1.7324,-0.1836 0.2452,0.0177 0.4744,-0.0759 0.6777,-0.2207 0.2033,-0.1447 0.3914,-0.3426 0.584,-0.5781 0.3852,-0.471 0.7879,-1.0975 1.2598,-1.7558 0.9438,-1.3167 2.1539,-2.7477 3.9257,-3.3028 0.8452,-0.2647 1.3565,-0.8408 1.8145,-1.332 0.458,-0.4912 0.8506,-0.8908 1.4961,-0.9902 0.556,-0.0857 1.0082,0.0394 1.4805,0.2929 0.4722,0.2535 0.9536,0.6415 1.5097,1.0528 1.0641,0.7867 2.7158,1.671 4.8594,1.7441 v -0.5 c -2.1892,0 -3.4725,-0.8405 -4.5625,-1.6465 -0.545,-0.403 -1.0373,-0.8057 -1.5703,-1.0918 -0.5331,-0.2861 -1.1196,-0.4495 -1.793,-0.3457 -0.8179,0.1261 -1.3223,0.6482 -1.7851,1.1445 -0.4629,0.4964 -0.8942,0.973 -1.5977,1.1934 -1.9429,0.6086 -3.2225,2.1495 -4.1836,3.4902 -0.4805,0.6704 -0.8852,1.2963 -1.2402,1.7305 -0.1775,0.2171 -0.3426,0.384 -0.4864,0.4863 -0.1437,0.1024 -0.2546,0.1361 -0.3535,0.1289 -0.4686,-0.0338 -1.1014,0.0622 -1.8515,0.1895 -0.7502,0.1273 -1.6094,0.2912 -2.4805,0.4082 -1.7422,0.234 -3.5205,0.2557 -4.5137,-0.4531 -0.7006,-0.5001 -0.9834,-1.8278 -1.0058,-3.2051 -0.0225,-1.3773 0.1852,-2.7701 0.2812,-3.3594 0.0373,-0.2296 0.245,-0.5572 0.5684,-0.9316 0.3234,-0.3745 0.7483,-0.7992 1.1758,-1.2774 0.8548,-0.9562 1.7302,-2.1441 1.7714,-3.6504 0.0337,-1.228 -0.85,-2.452 -1.6679,-3.5781 -0.409,-0.563 -0.8081,-1.0994 -1.084,-1.5762 C 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z" id="rtid-path1429-3-6-7-5-3-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,0 c -0.3359,0.76718 -0.6117,1.75827 -0.8652,2.49023 -0.2953,0.85257 -0.7736,1.73886 -2.0371,2.8125 -0.0899,0.07641 -0.1225,0.14773 -0.17,0.24219 -0.0474,0.09447 -0.0972,0.20857 -0.1484,0.34375 -0.1025,0.27036 -0.2167,0.62378 -0.3398,1.03711 -0.2463,0.82667 -0.5254,1.89254 -0.7911,2.9707 -0.2656,1.07822 -0.5175,2.16932 -0.707,3.04692 -0.1895,0.8775 -0.316,1.5079 -0.3359,1.7851 -0.1397,1.937 0.3521,3.6412 0.8789,4.9746 0.2634,0.6668 0.5365,1.2422 0.7441,1.7051 0.2076,0.4629 0.341,0.8288 0.3516,0.9883 0.0189,0.2839 -0.0597,0.7845 -0.1719,1.3652 -0.1122,0.5807 -0.2521,1.251 -0.332,1.9258 -0.08,0.6748 -0.1028,1.3556 0.0332,1.9727 0.136,0.617 0.4448,1.1779 1.0078,1.539 1.17,0.7503 3.167,0.7102 5.082,0.5528 0.9575,-0.0788 1.8928,-0.1948 2.6778,-0.2852 0.7849,-0.0904 1.4326,-0.1503 1.7558,-0.127 0.4446,0.0321 1.7984,0.3583 3.3027,0.5254 1.5044,0.1671 3.199,0.1866 4.4942,-0.4511 0.3072,-0.1512 0.4947,-0.4545 0.666,-0.8028 0.1713,-0.3483 0.3191,-0.7578 0.4688,-1.1562 0.1496,-0.3985 0.3018,-0.7857 0.4648,-1.0781 0.163,-0.2925 0.3354,-0.4694 0.4727,-0.5137 2.0531,-0.6641 3.0053,-1.0705 3.9199,-1.3047 C 61.0267,24.3397 62.2522,24.2595 64,24.25 v -0.5 c -2.022,0 -2.984,0.0765 -3.9512,0.3242 -0.9672,0.2477 -1.9119,0.6529 -3.9511,1.3125 -0.3424,0.1107 -0.5666,0.4063 -0.7559,0.7461 -0.1894,0.3398 -0.3452,0.7448 -0.4961,1.1465 -0.1509,0.4017 -0.2965,0.8008 -0.4492,1.1113 -0.1527,0.3105 -0.3217,0.5172 -0.4375,0.5742 -1.132,0.5574 -2.7537,0.5651 -4.2188,0.4024 -1.465,-0.1628 -2.7313,-0.4847 -3.3222,-0.5274 -0.4216,-0.0304 -1.0588,0.0381 -1.8477,0.129 -0.7889,0.0908 -1.7186,0.2075 -2.6621,0.2851 -1.8871,0.1552 -3.842,0.1195 -4.7715,-0.4766 -0.4383,-0.2811 -0.6726,-0.6961 -0.789,-1.2246 -0.1165,-0.5284 -0.1019,-1.1612 -0.0254,-1.8066 0.0764,-0.6455 0.2129,-1.3026 0.3261,-1.8887 0.1132,-0.586 0.2084,-1.0932 0.1817,-1.4941 -0.0219,-0.3283 -0.1854,-0.6894 -0.3965,-1.1602 -0.2112,-0.4707 -0.4783,-1.0352 -0.7344,-1.6836 -0.5122,-1.2967 -0.9758,-2.9217 -0.8437,-4.7539 0.0112,-0.1567 0.1379,-0.8449 0.3261,-1.7168 0.1883,-0.8718 0.4387,-1.9599 0.7032,-3.0332 C 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z" id="rtid-path1429-3-6-7-5-3-5-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,23.75 c -1.3299,0 -2.8706,0.7213 -3.8457,1.7207 -0.3945,0.4044 -0.6149,0.8586 -0.8398,1.2031 -0.225,0.3445 -0.4227,0.5676 -0.8028,0.6485 -0.1454,0.0309 -0.3936,-0.0511 -0.6992,-0.2559 -0.3056,-0.2047 -0.6543,-0.5102 -1.0195,-0.8144 -0.3653,-0.3043 -0.748,-0.6092 -1.1465,-0.8184 -0.3986,-0.2092 -0.8334,-0.3266 -1.2617,-0.1914 -0.7564,0.2386 -1.2942,0.779 -1.7754,1.3066 -0.4813,0.5277 -0.9146,1.0441 -1.4141,1.3125 -1.8557,0.9973 -3.9321,1.0397 -4.7773,0.9785 -0.0087,-6e-4 -0.0233,4e-4 -0.0684,-0.0546 -0.0451,-0.0551 -0.1028,-0.1587 -0.1562,-0.293 -0.107,-0.2686 -0.2055,-0.6574 -0.3145,-1.0645 -0.109,-0.4071 -0.2287,-0.8339 -0.3984,-1.2031 C 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 c 0.02452,-0.1264 0.06508,-0.2136 0.11328,-0.2675 0.0482,-0.054 0.10401,-0.0869 0.21484,-0.1016 -0.00851,0.0011 0.04556,0.0038 0.13672,0.0644 0.09116,0.0607 0.20973,0.1666 0.33984,0.3028 0.26022,0.2723 0.56755,0.6647 0.88086,1.0781 0.31331,0.4134 0.63375,0.848 0.93555,1.2149 0.3018,0.3668 0.56991,0.6661 0.85742,0.8242 0.33213,0.1826 0.70718,0.1503 1.0293,0.0136 0.32211,-0.1366 0.6131,-0.3706 0.87109,-0.6289 0.258,-0.2582 0.48087,-0.5423 0.64649,-0.7949 C 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 c -0.12698,0.1422 -0.19631,0.3178 -0.23242,0.5039 -0.07223,0.3724 -0.02356,0.8037 0.05664,1.25 0.08019,0.4463 0.19809,0.9069 0.29297,1.3086 0.09487,0.4018 0.1615,0.7548 0.15625,0.92 -0.04886,1.536 0.08969,3.3032 0.24805,4.7792 0.15835,1.4761 0.33813,2.6827 0.36523,3.0079 0.04642,0.5571 0.38432,2.0296 0.89648,3.4765 0.25609,0.7235 0.55414,1.4323 0.88868,1.9961 0.33453,0.5638 0.69503,1.0073 1.17578,1.1348 0.1745,0.0463 0.36547,0.0224 0.50781,-0.0684 0.14234,-0.0907 0.23291,-0.2248 0.30273,-0.3711 0.13964,-0.2925 0.20818,-0.6624 0.28516,-1.0644 0.15395,-0.8041 0.33801,-1.7199 0.77734,-2.1465 0.11912,-0.1157 0.33078,-0.1858 0.61719,-0.1973 0.28642,-0.0115 0.63462,0.037 0.98632,0.1172 0.7034,0.1604 1.4158,0.444 1.752,0.582 0.1713,0.0704 0.3411,0.278 0.4863,0.5938 0.1452,0.3158 0.2635,0.721 0.3711,1.123 0.1076,0.4021 0.2041,0.8 0.332,1.1211 0.064,0.1606 0.1357,0.3033 0.2344,0.4239 0.0987,0.1205 0.2438,0.2254 0.4199,0.2382 0.9174,0.0665 3.0632,0.03 5.0488,-1.0371 0.6228,-0.3347 1.0775,-0.9033 1.5469,-1.4179 0.4694,-0.5147 0.9439,-0.9727 1.5567,-1.166 0.2553,-0.0806 0.5432,-0.0181 0.8789,0.1582 0.3357,0.1762 0.6996,0.4606 1.0586,0.7597 0.3589,0.2991 0.7145,0.6107 1.0625,0.8438 0.3479,0.2331 0.7032,0.4101 1.08,0.33 0.5421,-0.1152 0.8678,-0.4813 1.1172,-0.8632 0.2494,-0.3819 0.4521,-0.7915 0.7793,-1.127 C 29.3257,24.986 30.9022,24.3358 32,24.25 Z" id="rtid-path1429-3-6-7-5-3-5-6-3-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="rotate(180,64,63.9999)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.7498 0,103.7498 l 0,0.5 c 0.7015,0 2.386,0.2502 3.914,0.1502 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.1498 -1.7,0.1498 v 0.5 c 0.75,0 1.23,0.0502 1.88,-0.2498 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.2498 c 0.8,0 1.49,-0.2498 2.04,-0.7498 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.5498 -1.7,0.6498 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.2498 c 0.85,0 1.51,-0.4498 2.11,-1.0498 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.8498 -1.77,0.9498 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 l -0.5,0 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.328563,7.5428884 96.26,7.633 96.258183,7.6353875 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccsssc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask4877)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g4258"
+ transform="matrix(-1,0,0,1,128,0)">
+ <g
+ id="rtid-g1931"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.00587,0.0179 -0.0794,0.2775 -0.08594,0.2969 -0.06287,0.1867 -0.15724,0.4398 -0.27148,0.748 -0.22848,0.6164 -0.5424,1.4486 -0.87696,2.4121 -0.6691,1.927 -1.42334,4.379 -1.75585,6.707 v 0.002 c -0.4895,3.547 -0.50594,10.988 -0.43555,12.248 0.04495,0.797 0.53639,1.591 1.25781,2.357 0.72142,0.767 1.6859,1.508 2.73633,2.167 2.10084,1.316 4.52494,2.305 6.09574,2.412 h 0.0078 0.0078 c 0.8428,0 1.9229,-0.63 3.3125,-1.379 1.3891,-0.75 3.0513,-1.642 4.873,-2.233 3.8849,-1.238 8.5466,-1.473 9.3848,-1.488 v -0.5 c -0.6737,0 -5.4086,0.197 -9.5352,1.512 h -0.0019 c -1.8776,0.609 -3.5686,1.517 -4.959,2.267 -1.3879,0.749 -2.5101,1.317 -3.0684,1.319 -1.3907,-0.098 -3.8082,-1.054 -5.85152,-2.334 -1.02381,-0.642 -1.95783,-1.365 -2.63671,-2.086 -0.67889,-0.721 -1.08901,-1.438 -1.12305,-2.041 -0.06365,-1.14 -0.04486,-8.7 0.43164,-12.153 0.32446,-2.271 1.06828,-4.7 1.73242,-6.6129 0.33207,-0.9564 0.64375,-1.7838 0.87305,-2.4023 0.11465,-0.3093 0.20882,-0.566 0.27539,-0.7637 C 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z"
+ id="rtid-path1429-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c 0.0089,0.1209 0.0315,0.4553 0.0449,0.6895 0.0208,0.3642 0.0397,0.8497 0.0352,1.3984 -0.009,1.0974 -0.1159,2.4471 -0.4844,3.5551 -0.277,0.832 -0.8162,1.42 -1.3555,2.074 -0.5392,0.653 -1.0752,1.379 -1.2285,2.447 -0.124,0.865 0.4155,1.821 0.9258,2.846 0.5103,1.024 1.0125,2.103 0.9824,3.058 -0.0931,2.95 -0.2835,4.626 -0.2383,5.397 0.0402,0.689 -0.003,1.719 0.2188,2.754 0.2218,1.034 0.7276,2.092 1.8555,2.789 1.0846,0.67 2.3097,0.781 3.4277,0.746 1.118,-0.036 2.1488,-0.212 2.8184,-0.166 0.4636,0.031 1.2531,0.344 2.2265,0.562 0.9735,0.219 2.1547,0.334 3.4668,-0.062 0.2381,-0.072 0.6346,-0.269 1.1777,-0.543 0.5432,-0.274 1.2055,-0.621 1.8711,-0.969 0.6656,-0.348 1.3341,-0.698 1.8848,-0.976 0.5508,-0.278 1.0031,-0.488 1.1602,-0.539 2.0231,-0.657 3.2292,-0.856 3.9961,-0.895 0.636,-0.032 1.1544,0.056 1.4648,0.084 v -0.5 c -0.249,0 -0.6636,-0.126 -1.4902,-0.084 -0.8266,0.042 -2.0748,0.253 -4.125,0.918 -0.2505,0.081 -0.6745,0.288 -1.2305,0.568 -0.556,0.281 -1.225,0.633 -1.8906,0.981 -0.6657,0.348 -1.3293,0.693 -1.8672,0.965 -0.5379,0.271 -0.9777,0.476 -1.0957,0.511 -1.2077,0.365 -2.2846,0.261 -3.211,0.053 -0.9263,-0.208 -1.6793,-0.532 -2.3046,-0.574 -0.7836,-0.053 -1.7942,0.132 -2.8672,0.166 -1.0731,0.034 -2.1885,-0.077 -3.1504,-0.672 -0.9944,-0.615 -1.4244,-1.515 -1.6289,-2.469 -0.2045,-0.953 -0.1642,-1.942 -0.2071,-2.677 -0.0373,-0.636 0.1447,-2.388 0.2383,-5.352 0.0358,-1.135 -0.5223,-2.267 -1.0351,-3.297 -0.5129,-1.029 -0.9607,-1.967 -0.877,-2.551 0.1349,-0.939 0.5899,-1.562 1.1172,-2.201 0.5273,-0.639 1.1294,-1.285 1.4453,-2.234 0.3972,-1.195 0.5006,-2.5836 0.5098,-3.7092 C 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z"
+ id="rtid-path1429-3-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,119.75 c -0.1304,0 -0.5351,-0.025 -1.0996,-0.043 -0.5645,-0.018 -1.302,-0.03 -2.1484,0 -1.693,0.061 -3.8238,0.285 -5.9004,0.945 h -0.002 c -3.6497,1.184 -4.7776,0.294 -6.8574,0.266 -0.5416,-0.007 -1.2305,0.196 -2.0371,0.434 -0.8067,0.237 -1.7191,0.517 -2.6367,0.685 -0.9177,0.168 -1.837,0.223 -2.6524,0.033 -0.8154,-0.19 -1.5294,-0.612 -2.0879,-1.445 -0.6269,-0.935 -0.6556,-2.243 -0.4902,-3.582 0.1654,-1.339 0.5189,-2.685 0.5723,-3.715 0.0328,-0.631 -0.0207,-1.793 -0.0176,-3.25 0.003,-1.457 0.0602,-3.196 0.3086,-4.928 0.3283,-2.288 0.3163,-2.713 0.9746,-4.619 0.3416,-0.9886 0.4135,-1.5254 0.3984,-2.1033 C 72.3091,97.8498 72.219,97.2389 72.25,96 h -0.5 c -0.0072,1.0234 0.0617,1.9639 0.0742,2.4414 0.0139,0.5333 -0.0401,0.9676 -0.3711,1.9256 -0.6667,1.93 -0.6692,2.435 -0.9961,4.713 -0.2535,1.767 -0.3113,3.527 -0.3144,4.996 -0.0031,1.469 0.0472,2.658 0.0176,3.227 -0.0485,0.935 -0.3976,2.296 -0.5684,3.679 -0.1708,1.384 -0.1701,2.816 0.5703,3.92 0.6263,0.934 1.4723,1.443 2.3887,1.657 0.9163,0.213 1.9017,0.144 2.8574,-0.032 0.9557,-0.175 1.8845,-0.458 2.6875,-0.695 0.803,-0.237 1.4918,-0.419 1.8906,-0.414 1.934,0.026 3.2675,0.925 7.0176,-0.291 l -0.0019,0.002 c 2.0133,-0.64 4.1038,-0.862 5.7675,-0.922 0.8319,-0.03 1.5565,-0.018 2.1133,0 0.4322,0.014 0.9081,0.036 1.1172,0.043 z"
+ id="rtid-path1429-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccscsccccscccccscccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,119.75 c -2.032,0.034 -2.99,-0.085 -3.885,-0.125 -0.894,-0.04 -1.718,0.006 -3.396,0.369 -0.152,0.033 -0.481,0.04 -0.871,0.02 -0.391,-0.021 -0.851,-0.063 -1.313,-0.102 -0.462,-0.039 -0.927,-0.077 -1.334,-0.088 -0.406,-0.011 -0.746,-0.002 -1.013,0.082 -0.88,0.279 -1.573,0.216 -2.168,-0.025 -0.596,-0.242 -1.097,-0.674 -1.54,-1.156 -0.442,-0.482 -0.823,-1.011 -1.193,-1.434 -0.37,-0.423 -0.741,-0.779 -1.226,-0.779 -1.489,-0.1 -3.036,0.177 -4.178,0.133 -0.573,-0.023 -1.03,-0.127 -1.332,-0.352 -0.302,-0.225 -0.493,-0.574 -0.516,-1.225 v -0.006 -0.005 c -0.056,-0.678 -0.431,-1.705 -0.721,-3.034 -0.289,-1.328 -0.495,-2.929 -0.236,-4.634 0.146,-0.962 0.46,-1.673 0.776,-2.418 0.315,-0.746 0.628,-1.526 0.73,-2.575 0.131,-1.344 0.047,-2.12 -0.07,-2.9585 C 104.397,98.5986 104.25,97.6918 104.25,96 h -0.5 c 0.019,1.4996 0.16,2.7336 0.268,3.5059 0.115,0.8311 0.197,1.5361 0.07,2.8421 -0.095,0.974 -0.383,1.687 -0.695,2.427 -0.313,0.741 -0.654,1.509 -0.811,2.539 -0.272,1.791 -0.052,3.454 0.244,4.815 0.297,1.361 0.668,2.449 0.711,2.971 v -0.012 c 0.027,0.749 0.284,1.286 0.715,1.607 0.431,0.322 0.991,0.426 1.611,0.45 1.241,0.047 2.774,-0.23 4.18,-0.133 h 0.01 0.008 c 0.214,0 0.504,0.214 0.849,0.609 0.345,0.395 0.734,0.931 1.203,1.441 0.469,0.511 1.023,0.999 1.719,1.282 0.696,0.282 1.531,0.348 2.506,0.039 0.14,-0.044 0.463,-0.069 0.85,-0.059 0.386,0.011 0.844,0.047 1.304,0.086 0.46,0.039 0.923,0.081 1.328,0.102 0.405,0.021 0.744,0.027 1.004,-0.03 1.654,-0.358 2.403,-0.395 3.268,-0.357 0.809,0.036 2.112,0.139 3.908,0.125 z"
+ id="rtid-path1429-3-6-7-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c 0.002,0.7276 0.023,5.8956 -0.648,10.3066 v 0.002 c -0.256,1.793 -0.027,3.1727 0.277,4.2422 0.303,1.066 0.664,1.8347 0.709,2.3496 0.02,0.5969 -0.337,1.2518 -0.912,1.9297 -0.576,0.6792 -1.353,1.3705 -2.086,2.0527 -0.734,0.6822 -1.4243,1.3525 -1.838,2.0371 -0.2069,0.3423 -0.3472,0.6931 -0.3672,1.0547 -0.0201,0.3616 0.0895,0.7282 0.3398,1.0586 0.006,0.0079 0.072,0.1314 0.1406,0.2988 0.0687,0.1674 0.1525,0.3892 0.2539,0.6446 0.2029,0.5106 0.4739,1.1595 0.8339,1.8242 0.72,1.3293 1.805,2.7405 3.459,3.1797 1.606,0.4262 3.696,-0.0673 5.443,-0.7051 0.874,-0.3189 1.661,-0.6768 2.252,-0.9902 0.296,-0.1568 0.543,-0.3019 0.731,-0.4278 0.188,-0.1259 0.307,-0.1971 0.402,-0.3574 0.099,-0.1671 0.126,-0.3547 0.141,-0.5762 0.015,-0.2215 0.009,-0.4762 -0.004,-0.7578 -0.027,-0.5631 -0.088,-1.229 -0.107,-1.8808 -0.02,-0.6519 0.006,-1.2899 0.134,-1.7715 0.129,-0.4817 0.333,-0.7786 0.686,-0.8907 0.16,-0.0505 0.572,0.0163 1.064,0.2168 0.493,0.2006 1.071,0.5074 1.645,0.8204 0.574,0.3129 1.142,0.6338 1.633,0.8671 0.245,0.1167 0.471,0.2115 0.675,0.2735 0.204,0.062 0.385,0.0994 0.575,0.0547 2.151,-0.5079 6.23,-0.5709 8.818,-0.6055 v -0.5 c -2.583,0.0344 -6.596,0.0678 -8.932,0.6191 -0.029,0.0069 -0.152,0.0031 -0.316,-0.0468 -0.164,-0.05 -0.373,-0.1374 -0.606,-0.2481 -0.465,-0.2214 -1.03,-0.5385 -1.607,-0.8535 -0.577,-0.315 -1.166,-0.6281 -1.695,-0.8437 -0.53,-0.2157 -0.995,-0.3602 -1.405,-0.2305 -0.553,0.1754 -0.865,0.6692 -1.017,1.2383 -0.152,0.5691 -0.172,1.2413 -0.152,1.914 0.019,0.6727 0.081,1.3451 0.107,1.8907 0.013,0.2727 0.018,0.514 0.006,0.7011 -0.013,0.1871 -0.052,0.321 -0.072,0.3555 0.021,-0.0365 -0.085,0.0835 -0.252,0.1953 -0.167,0.1118 -0.401,0.2516 -0.686,0.4024 -0.569,0.3014 -1.338,0.6523 -2.189,0.9628 -1.702,0.6212 -3.741,1.0637 -5.143,0.6914 -1.448,-0.3842 -2.459,-1.6617 -3.148,-2.9355 -0.345,-0.6369 -0.609,-1.2675 -0.809,-1.7715 -0.1001,-0.252 -0.1834,-0.4718 -0.2559,-0.6484 -0.0724,-0.1767 -0.1202,-0.3002 -0.2051,-0.4121 -0.1885,-0.2489 -0.2521,-0.4784 -0.2382,-0.7285 0.0138,-0.2502 0.1154,-0.5273 0.2949,-0.8243 0.3593,-0.594 1.0243,-1.251 1.7523,-1.9277 0.727,-0.6767 1.514,-1.3756 2.125,-2.0957 0.61,-0.7201 1.06,-1.4733 1.031,-2.2754 V 80.873 80.8672 c -0.057,-0.685 -0.437,-1.4281 -0.729,-2.4531 -0.291,-1.0246 -0.507,-2.3174 -0.263,-4.0332 v -0.002 C 104.3,69.7492 104.25,64.3795 104.25,64 Z"
+ id="rtid-path1429-3-6-7-5-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c 0.0091,1.5714 0.0802,3.0066 0.0508,3.8496 -0.0315,0.9016 -0.1655,1.4906 -0.5938,2.1231 -0.0813,0.12 -0.1758,0.1465 -0.4023,0.125 -0.2265,-0.0216 -0.5386,-0.1187 -0.8731,-0.2325 -0.3344,-0.1137 -0.6932,-0.242 -1.0527,-0.3066 -0.3595,-0.0646 -0.7329,-0.0682 -1.0625,0.1094 -0.7224,0.3889 -1.0902,1.3135 -1.3437,2.25 -0.2536,0.9365 -0.3718,1.9133 -0.4512,2.4355 -0.5429,3.5676 -0.1219,10.334 -0.0195,11.5664 0.0143,0.4008 0.1568,0.7426 0.3984,0.9942 0.2416,0.2515 0.5685,0.4126 0.9434,0.5156 0.7497,0.206 1.7106,0.1921 2.7539,0.1035 2.0864,-0.1771 4.5154,-0.6677 5.8886,-0.5684 h 0.0078 0.0098 c 0.5933,0 1.6161,0.4351 2.9297,0.7422 1.3136,0.3071 2.9464,0.4678 4.8516,-0.1347 0.7431,-0.2351 1.6039,-0.0972 2.4882,0.0937 0.8844,0.191 1.7831,0.4364 2.627,0.3125 1.13,-0.1658 1.9125,-0.1031 2.9199,0.0039 0.9472,0.1006 2.4274,0.2512 4.1797,0.2676 v -0.5 c -1.923,0 -3.1125,-0.1579 -4.127,-0.2656 -1.0144,-0.1077 -1.8632,-0.1754 -3.0449,-0.002 -0.6935,0.1018 -1.5511,-0.1108 -2.4492,-0.3047 -0.8981,-0.1939 -1.8455,-0.3682 -2.7441,-0.0839 -1.8035,0.5703 -3.3254,0.422 -4.5879,0.1269 -1.26,-0.2946 -2.2315,-0.7521 -3.0371,-0.7539 -1.5273,-0.1078 -3.9177,0.3956 -5.9532,0.5684 -1.0197,0.0865 -1.9451,0.0866 -2.58,-0.0879 C 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 c -0.0983,-1.1791 -0.5076,-8.0227 0.0156,-11.4609 0.082,-0.5395 0.1986,-1.4914 0.4395,-2.3809 0.2408,-0.8894 0.626,-1.6874 1.0976,-1.9414 0.1846,-0.0994 0.4341,-0.1109 0.7364,-0.0566 0.3022,0.0543 0.6451,0.1723 0.9824,0.2871 0.3373,0.1147 0.6668,0.2276 0.9844,0.2578 0.3175,0.0302 0.6678,-0.0505 0.8652,-0.3418 0.485,-0.7161 0.6447,-1.4407 0.6777,-2.3867 C 72.3318,66.9211 72.25,65.7359 72.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c -0.0041,0.9064 -0.0406,2.456 -0.1562,3.8125 -0.1239,1.4517 -0.3471,2.9029 -0.6954,3.7305 -0.2745,0.6512 -1.1623,1.8818 -1.8222,3.1386 -0.3302,0.6288 -0.6057,1.269 -0.7207,1.8848 -0.1151,0.6158 -0.0627,1.2254 0.3007,1.7129 1.8782,2.519 2.099,4.6977 2.2754,6.1465 0.0882,0.7244 0.1304,1.2888 0.4961,1.6465 0.1829,0.1788 0.4495,0.2624 0.7461,0.248 0.2967,-0.0144 0.6388,-0.1102 1.0723,-0.2832 0.3027,-0.1208 0.5185,-0.1488 0.6601,-0.1289 0.1417,0.0199 0.2229,0.0743 0.3067,0.1816 0.1676,0.2147 0.2739,0.6831 0.375,1.2168 0.1011,0.5338 0.2085,1.1316 0.5059,1.6368 0.2973,0.5051 0.8174,0.9003 1.6113,0.955 h 0.0097 0.0079 c 1.5002,0 3.8757,-0.8548 7.58,-2.0293 0.4296,-0.1362 1.3992,0.0301 2.3633,0.25 0.9642,0.2199 1.9177,0.4843 2.5957,0.3575 1.4727,-0.2759 2.3173,-0.3205 3.2188,-0.3028 0.8364,0.0164 2.0711,0.0852 3.5195,0.0762 v -0.5 c -1.6384,0.0238 -2.5854,-0.058 -3.5098,-0.0762 -0.9243,-0.0181 -1.8225,0.03 -3.3203,0.3106 -0.4404,0.0824 -1.4225,-0.1304 -2.3926,-0.3516 -0.97,-0.2212 -1.9332,-0.4596 -2.625,-0.2402 -3.7043,1.1745 -6.1187,2.001 -7.4199,2.0039 -0.648,-0.0477 -0.9743,-0.3117 -1.207,-0.707 -0.2342,-0.3978 -0.3463,-0.9436 -0.4473,-1.4766 -0.1009,-0.533 -0.1785,-1.0529 -0.4726,-1.4297 -0.1471,-0.1884 -0.3663,-0.3319 -0.6309,-0.3691 -0.2645,-0.0372 -0.5615,0.0175 -0.9141,0.1582 -0.4063,0.1621 -0.7088,0.2381 -0.9121,0.248 -0.2032,0.0099 -0.2927,-0.0288 -0.3711,-0.1055 -0.1567,-0.1533 -0.26,-0.6297 -0.3476,-1.3496 -0.1753,-1.4398 -0.4227,-3.769 -2.3731,-6.3847 -0.2593,-0.3479 -0.3106,-0.787 -0.2109,-1.3203 0.0997,-0.5334 0.3558,-1.1405 0.6738,-1.7461 0.636,-1.2112 1.5089,-2.3916 1.8399,-3.1778 0.3973,-0.944 0.6088,-2.4081 0.7344,-3.8808 C 40.2193,66.3827 40.25,64.9102 40.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-93"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,64 c -0.04455,2.0095 -0.50495,3.1644 -1.06641,4.0684 -0.59076,0.9511 -1.3019,1.981 -1.63476,4.3222 -0.07485,0.5267 0.05132,1.266 0.11523,2.125 0.06392,0.859 0.07194,1.8168 -0.18359,2.6719 -0.34551,1.1561 -0.98076,2.2856 -1.54102,3.3262 -0.56026,1.0405 -1.05846,1.9842 -1.0664,2.8574 -0.00812,0.8929 -0.34393,2.0452 -0.6836,3.0254 -0.16983,0.4901 -0.33901,0.9388 -0.46679,1.3008 -0.06389,0.1809 -0.11776,0.3407 -0.15625,0.4765 -0.03849,0.1359 -0.066886,0.2378 -0.0625,0.3614 0.04964,1.4001 1.46483,3.1567 4.05468,4.6152 1.74164,0.9807 4.63358,1.2487 7.31641,1.3164 1.3414,0.0338 2.6274,0.012 3.6797,-0.0098 1.0523,-0.0218 1.8815,-0.0428 2.2578,-0.0156 0.4216,0.0305 0.7577,-0.1608 1,-0.4297 0.2423,-0.2689 0.4327,-0.6083 0.6895,-0.9746 0.5134,-0.7325 1.267,-1.5879 3.0703,-2.1582 0.7753,-0.2452 1.2151,-0.9249 1.6211,-1.5117 0.4059,-0.5868 0.7667,-1.068 1.3007,-1.1582 C 28.5462,87.7778 29.872,88.1744 32,88.25 v -0.5 c -2.2695,-0.0472 -3.35,-0.4977 -6.0879,-0.0352 -0.7758,0.1311 -1.222,0.7762 -1.6309,1.3672 -0.4088,0.5911 -0.7925,1.1411 -1.3593,1.3203 -1.9053,0.6026 -2.7864,1.5721 -3.3301,2.3477 -0.2718,0.3878 -0.4663,0.7234 -0.6504,0.9277 -0.1841,0.2044 -0.3172,0.2857 -0.5937,0.2657 -0.4427,-0.0321 -1.2523,-0.0081 -2.3028,0.0136 -1.0504,0.0218 -2.33,0.0433 -3.6582,0.0098 C 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 c -1e-5,-3e-4 0.00983,-0.092 0.04297,-0.209 0.03313,-0.117 0.08414,-0.2687 0.14648,-0.4453 C 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,55.75 c -1.2294,0 -2.0383,0.1059 -2.6211,0.3027 -0.5828,0.1969 -0.936,0.4856 -1.2051,0.7754 -0.538,0.5797 -0.7334,1.1122 -2.2988,1.4375 -0.1225,0.0255 -0.3311,-0.0318 -0.5859,-0.1855 -0.2549,-0.1538 -0.5432,-0.3874 -0.8379,-0.6231 -0.2947,-0.2356 -0.5961,-0.474 -0.8985,-0.6445 -0.3024,-0.1705 -0.6278,-0.2879 -0.955,-0.1836 -0.8753,0.279 -1.2921,1.0415 -1.6368,1.7617 -0.3446,0.7203 -0.6429,1.4116 -1.1836,1.7481 -0.835,0.5196 -2.0538,0.8639 -3.1093,0.9902 -0.5278,0.0632 -1.0151,0.0718 -1.3868,0.0293 C 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 h -0.5 c -0.01831,1.7885 0.15046,3.2142 0.23633,4.1387 0.09152,0.9853 0.08839,1.806 -0.35352,3.2773 -0.17622,0.5868 -0.74629,0.8555 -1.39062,1.168 -0.32217,0.1562 -0.65494,0.3186 -0.9336,0.5566 -0.27866,0.2381 -0.49995,0.5665 -0.55859,0.9961 -0.14313,1.0488 0.13219,2.3446 0.42188,3.7188 0.28968,1.3742 0.60026,2.8218 0.57812,4.1054 -0.01731,1.0036 -0.36797,1.9455 -0.71875,2.7071 -0.17539,0.3808 -0.34908,0.7143 -0.48242,0.9961 -0.13334,0.2817 -0.24291,0.4882 -0.22852,0.7402 0.02151,0.3765 0.09621,0.6678 0.25196,0.8926 0.15574,0.2248 0.38663,0.3594 0.63671,0.4375 0.50018,0.1561 1.11445,0.1491 1.91602,0.3086 1.60315,0.3189 3.9558,1.2492 7.1094,5.2129 0.2124,0.267 0.5629,0.3515 0.9902,0.4003 0.4273,0.0489 0.9443,0.0355 1.502,-0.0312 1.1152,-0.1334 2.3831,-0.4817 3.3164,-1.0625 0.721,-0.4487 1.0331,-1.2549 1.3691,-1.957 0.336,-0.7021 0.6699,-1.2871 1.3379,-1.5 0.1189,-0.0379 0.3094,0.002 0.5586,0.1425 0.2492,0.1406 0.5368,0.3651 0.8301,0.5997 0.2933,0.2345 0.5921,0.4789 0.8925,0.6601 0.3005,0.1813 0.6143,0.3169 0.9454,0.2481 1.6748,-0.3481 2.0888,-1.0755 2.5644,-1.5879 0.2378,-0.2562 0.4931,-0.472 0.9981,-0.6426 C 29.9927,56.3721 31.0025,56.2706 32,56.25 Z"
+ id="rtid-path1429-2-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.0814,3.1631 -0.7923,5.2367 -1.6016,6.8906 -0.2394,0.4893 -0.8275,1.7184 -1.3867,3.0371 -0.5592,1.3188 -1.0905,2.7074 -1.2187,3.5957 -0.267,1.8487 0.5366,3.6171 1.4629,5.045 0.4631,0.7139 0.9603,1.3462 1.3789,1.8613 0.4186,0.5151 0.7637,0.9246 0.8984,1.1426 0.8016,1.2965 0.8652,2.8447 1.0879,4.1484 0.1113,0.6518 0.2614,1.2487 0.6094,1.7168 0.348,0.4681 0.903,0.7746 1.6953,0.8281 h 0.0078 0.0078 c 0.3917,0 1.073,-0.0847 1.9648,-0.2285 0.8919,-0.1438 1.9831,-0.3485 3.1465,-0.5898 2.3264,-0.4825 4.9363,-1.1135 6.8028,-1.7188 3.96,-1.2617 5.5671,-1.409 9.3945,-1.4785 v -0.5 c -4.0916,0.0678 -5.455,0.1989 -9.5449,1.502 h -0.002 c -1.8333,0.5946 -4.4372,1.225 -6.7519,1.705 -1.1574,0.2401 -2.2431,0.4438 -3.125,0.586 -0.8755,0.1411 -1.5546,0.2195 -1.8711,0.2207 -0.6838,-0.0474 -1.06,-0.2696 -1.3242,-0.625 -0.265,-0.3565 -0.4108,-0.8787 -0.5176,-1.5039 -0.2136,-1.2505 -0.2687,-2.8906 -1.1563,-4.3262 -0.1815,-0.2937 -0.5209,-0.6852 -0.9355,-1.1953 -0.4146,-0.5102 -0.8983,-1.1266 -1.3457,-1.8164 -0.8949,-1.3797 -1.6286,-3.0396 -1.3887,-4.7012 0.1099,-0.7609 0.6319,-2.1669 1.1856,-3.4727 0.5537,-1.3057 1.139,-2.5316 1.375,-3.0136 C 39.4461,37.3754 40.2065,35.4289 40.25,32 Z"
+ id="rtid-path1429-3-9-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccsccscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c -0.0032,2.801 -0.0472,2.5586 -0.6758,6.9707 -0.0738,0.5178 -0.5011,1.122 -0.9785,1.877 -0.4774,0.7549 -0.9906,1.671 -1.1562,2.8671 -0.2572,1.8565 -0.8222,2.6696 -1.3516,3.2872 -0.2647,0.3087 -0.5286,0.5682 -0.7422,0.8867 -0.2136,0.3185 -0.3654,0.6998 -0.3848,1.1972 -0.0204,0.5226 -0.1327,1.55 -0.1894,2.5528 -0.0284,0.5014 -0.043,0.9993 -0.0235,1.4355 0.0196,0.4362 0.0633,0.8064 0.1954,1.0918 0.2074,0.4483 0.2151,1.5997 0.123,2.7324 -0.0921,1.1328 -0.2531,2.2556 -0.2598,2.8575 -0.0109,0.9677 0.4244,1.628 1.0957,1.9687 0.6713,0.3407 1.5431,0.4053 2.4922,0.3711 1.8984,-0.0684 4.144,-0.5541 5.5469,-0.459 0.4439,0.0301 1.0705,-0.1419 1.8926,-0.4121 0.8221,-0.2702 1.815,-0.6496 2.8789,-1.0684 2.1264,-0.8369 4.5333,-1.8329 6.3516,-2.4277 l 0.0039,-0.0019 C 90.5648,56.4658 92.2928,56.2606 96,56.25 v -0.5 c -3.9621,0 -5.4573,0.1992 -9.5859,1.502 h -0.002 c -1.8515,0.6054 -4.2614,1.6044 -6.3828,2.4394 -1.0607,0.4175 -2.0477,0.7944 -2.8516,1.0586 -0.8038,0.2642 -1.4486,0.4059 -1.7031,0.3887 -1.5472,-0.105 -3.7727,0.3913 -5.5976,0.457 -0.9125,0.0329 -1.7151,-0.0479 -2.2481,-0.3184 -0.533,-0.2704 -0.8316,-0.6861 -0.8223,-1.5156 0.0058,-0.5136 0.1661,-1.67 0.2598,-2.8222 0.0937,-1.1523 0.1519,-2.2932 -0.168,-2.9844 -0.0741,-0.1603 -0.134,-0.4964 -0.1523,-0.9043 -0.0183,-0.408 -0.0044,-0.8907 0.0234,-1.3828 0.0557,-0.9843 0.1693,-1.9952 0.1914,-2.5625 0.016,-0.4109 0.1255,-0.676 0.3008,-0.9375 0.1754,-0.2615 0.4271,-0.5152 0.7071,-0.8418 0.5599,-0.6532 1.1982,-1.6047 1.4667,-3.543 0.1512,-1.092 0.6179,-1.9328 1.084,-2.6699 0.4662,-0.7372 0.9476,-1.3614 1.0489,-2.0723 C 72.2188,34.4749 72.25,35.1813 72.25,32 Z"
+ id="rtid-path1429-3-6-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.01,1.3903 -0.281,2.2117 -0.703,2.707 -0.454,0.5321 -1.137,1.0722 -1.752,2.502 -0.863,2.0036 -1.6884,4.2596 -1.9669,6.2129 -0.0653,0.4591 0.13,0.874 0.4102,1.2402 0.2797,0.3662 0.6537,0.7069 1.0217,1.0606 0.735,0.7073 1.418,1.4408 1.39,2.3847 -0.041,1.4105 -0.495,2.7804 -0.937,3.8867 -0.221,0.5532 -0.438,1.0397 -0.6,1.4395 -0.162,0.3998 -0.286,0.6846 -0.261,0.9766 0.066,0.7929 0.57,1.5954 1.302,2.3769 0.732,0.7816 1.703,1.542 2.758,2.2149 2.11,1.3456 4.522,2.3476 6.088,2.3476 0.112,0 0.238,-0.0782 0.291,-0.1621 0.053,-0.0839 0.066,-0.162 0.074,-0.2402 0.017,-0.1565 0.001,-0.3311 -0.027,-0.543 -0.057,-0.4238 -0.172,-0.9818 -0.279,-1.5879 -0.215,-1.2122 -0.357,-2.6219 -0.026,-3.2949 0.576,-1.1684 1.765,-1.8992 3.121,-2.4238 1.356,-0.5247 2.856,-0.8346 4.006,-1.1993 0.396,-0.1256 0.609,-0.0525 0.819,0.1387 0.209,0.1912 0.393,0.5411 0.552,0.9512 0.16,0.4101 0.299,0.8737 0.469,1.2929 0.17,0.4193 0.366,0.8047 0.703,1.0372 0.281,0.1939 0.726,0.3476 1.307,0.498 0.58,0.1504 1.288,0.2854 2.045,0.3867 1.414,0.1893 3.205,0.2343 4.445,0.0469 v -0.5 c -1.174,0.2223 -2.9,0.1551 -4.379,-0.043 -0.739,-0.099 -1.431,-0.2311 -1.986,-0.375 -0.556,-0.1438 -0.985,-0.3109 -1.149,-0.4238 -0.185,-0.1281 -0.366,-0.4274 -0.523,-0.8144 -0.157,-0.3871 -0.297,-0.8511 -0.467,-1.2872 -0.169,-0.436 -0.365,-0.8498 -0.682,-1.1386 -0.317,-0.2889 -0.78,-0.4124 -1.304,-0.2461 -1.107,0.351 -2.628,0.6636 -4.037,1.209 -1.41,0.5453 -2.73,1.3324 -3.389,2.6699 -0.462,0.9376 -0.235,2.3721 -0.018,3.6015 0.109,0.6148 0.224,1.1772 0.276,1.5684 0.021,0.1596 0.023,0.2624 0.021,0.3457 -1.36,-0.0479 -3.679,-0.957 -5.681,-2.2344 -1.028,-0.6556 -1.971,-1.3984 -2.662,-2.1367 -0.692,-0.7383 -1.12,-1.4732 -1.17,-2.0762 -0.005,-0.0547 0.07,-0.362 0.226,-0.748 0.157,-0.386 0.376,-0.8771 0.602,-1.4414 0.451,-1.1286 0.928,-2.5515 0.972,-4.0586 0.035,-1.1881 -0.799,-2.0402 -1.545,-2.7578 -0.372,-0.3588 -0.729,-0.6911 -0.968,-1.0039 -0.2396,-0.3129 -0.3529,-0.5852 -0.3128,-0.8672 0.2668,-1.8693 1.0748,-4.0998 1.9298,-6.084 0.581,-1.3507 1.169,-1.7875 1.672,-2.377 0.502,-0.5894 0.859,-1.3225 0.824,-3.0312 z"
+ id="rtid-path1429-3-6-7-2-8"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,23.75 c -1.652,-0.0497 -2.58,0.5216 -3.203,1.0195 -0.312,0.249 -0.551,0.4693 -0.75,0.5782 -0.199,0.1088 -0.329,0.1354 -0.578,0.0253 -1.422,-0.6283 -2.855,-0.8313 -5.045,-0.121 h -0.002 c -0.209,0.0678 -0.656,-0.0762 -1.127,-0.2657 -0.236,-0.0947 -0.477,-0.1915 -0.719,-0.248 -0.241,-0.0566 -0.495,-0.078 -0.732,0.0312 -1.414,0.652 -2.513,1.7213 -3.395,2.5996 -0.441,0.4392 -0.83,0.8311 -1.162,1.0977 -0.332,0.2666 -0.598,0.3855 -0.769,0.373 -0.267,-0.0193 -0.473,-0.1723 -0.696,-0.4726 -0.222,-0.3003 -0.432,-0.7336 -0.666,-1.2149 -0.467,-0.9625 -1.03,-2.1262 -2.138,-2.8105 -1.134,-0.6998 -2.701,-0.8763 -3.987,-1.0762 -0.642,-0.0999 -1.217,-0.2054 -1.607,-0.3574 -0.195,-0.076 -0.341,-0.1633 -0.432,-0.252 -0.091,-0.0886 -0.133,-0.1699 -0.142,-0.2871 0,0.0087 0.014,-0.0882 0.084,-0.2207 0.069,-0.1324 0.181,-0.3062 0.32,-0.5058 0.277,-0.3993 0.661,-0.908 1.053,-1.4922 0.783,-1.1684 1.605,-2.6388 1.652,-4.2051 0.035,-1.1613 -0.746,-2.2622 -1.461,-3.2598 -0.358,-0.4987 -0.704,-0.9721 -0.941,-1.3945 -0.237,-0.4224 -0.35,-0.7844 -0.309,-1.0527 0.056,-0.36926 0.198,-0.59839 0.397,-0.78127 0.198,-0.18288 0.463,-0.31486 0.755,-0.43555 0.293,-0.12068 0.61,-0.22798 0.901,-0.38671 0.29,-0.15874 0.563,-0.38099 0.713,-0.72071 0.453,-1.0275 0.491,-2.32339 0.435,-3.70508 C 104.393,2.8273 104.235,1.35423 104.25,0 h -0.5 c 0.004,1.32161 0.147,2.95144 0.199,4.22852 0.055,1.35795 0.001,2.59311 -0.392,3.48437 -0.094,0.21123 -0.259,0.35278 -0.496,0.48242 -0.238,0.12965 -0.539,0.23504 -0.85,0.36328 -0.311,0.12825 -0.635,0.28153 -0.906,0.53125 -0.272,0.24973 -0.482,0.60211 -0.553,1.07226 -0.069,0.4539 0.109,0.9088 0.369,1.3731 0.26,0.4642 0.616,0.9459 0.971,1.4414 0.71,0.9909 1.396,2.0367 1.369,2.9531 -0.042,1.3981 -0.804,2.8013 -1.568,3.9414 -0.383,0.5701 -0.763,1.0749 -1.049,1.4883 -0.144,0.2067 -0.264,0.3903 -0.352,0.5566 -0.087,0.1663 -0.156,0.3092 -0.14,0.4942 0.019,0.2365 0.129,0.4467 0.291,0.6035 0.161,0.1567 0.365,0.2683 0.599,0.3593 0.468,0.1822 1.062,0.2858 1.711,0.3868 1.298,0.2019 2.815,0.3993 3.801,1.0078 0.955,0.5896 1.485,1.643 1.951,2.6035 0.233,0.4803 0.45,0.9342 0.717,1.2949 0.267,0.3607 0.612,0.6413 1.06,0.6738 0.394,0.0285 0.75,-0.1857 1.12,-0.4824 0.369,-0.2966 0.76,-0.6977 1.199,-1.1347 0.877,-0.8742 1.938,-1.8922 3.252,-2.4981 0.084,-0.0389 0.221,-0.0438 0.408,0 0.187,0.0439 0.412,0.1305 0.646,0.2246 0.468,0.1883 0.975,0.4402 1.471,0.2793 2.105,-0.6821 3.34,-0.4946 4.69,0.1016 0.37,0.1634 0.729,0.1142 1.017,-0.043 0.288,-0.1572 0.531,-0.3925 0.824,-0.6269 0.548,-0.4374 1.555,-0.8873 2.891,-0.9102 z"
+ id="rtid-path1429-3-6-7-5-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,0 c 0.0141,2.21123 -0.5181,3.78788 -1.1719,5.08594 -0.6822,1.35448 -1.4918,2.7313 -1.8261,5.07816 -0.0689,0.4829 0.1369,0.9762 0.4355,1.4921 0.2986,0.516 0.7066,1.0613 1.1133,1.6211 0.8133,1.1198 1.5987,2.3053 1.5722,3.2696 -0.036,1.3189 -0.8124,2.4014 -1.6425,3.3301 -0.4151,0.4643 -0.8408,0.8863 -1.1836,1.2832 -0.3428,0.3969 -0.6164,0.7663 -0.6836,1.1796 -0.0977,0.5998 -0.3105,2.0169 -0.2871,3.4493 0.0233,1.4323 0.2521,2.9131 1.2168,3.6015 1.2145,0.8668 3.0917,0.7818 4.8691,0.543 0.8887,-0.1194 1.7553,-0.2841 2.4981,-0.4102 0.7427,-0.126 1.3715,-0.2096 1.7324,-0.1836 0.2452,0.0177 0.4744,-0.0759 0.6777,-0.2207 0.2033,-0.1447 0.3914,-0.3426 0.584,-0.5781 0.3852,-0.471 0.7879,-1.0975 1.2598,-1.7558 0.9438,-1.3167 2.1539,-2.7477 3.9257,-3.3028 0.8452,-0.2647 1.3565,-0.8408 1.8145,-1.332 0.458,-0.4912 0.8506,-0.8908 1.4961,-0.9902 0.556,-0.0857 1.0082,0.0394 1.4805,0.2929 0.4722,0.2535 0.9536,0.6415 1.5097,1.0528 1.0641,0.7867 2.7158,1.671 4.8594,1.7441 v -0.5 c -2.1892,0 -3.4725,-0.8405 -4.5625,-1.6465 -0.545,-0.403 -1.0373,-0.8057 -1.5703,-1.0918 -0.5331,-0.2861 -1.1196,-0.4495 -1.793,-0.3457 -0.8179,0.1261 -1.3223,0.6482 -1.7851,1.1445 -0.4629,0.4964 -0.8942,0.973 -1.5977,1.1934 -1.9429,0.6086 -3.2225,2.1495 -4.1836,3.4902 -0.4805,0.6704 -0.8852,1.2963 -1.2402,1.7305 -0.1775,0.2171 -0.3426,0.384 -0.4864,0.4863 -0.1437,0.1024 -0.2546,0.1361 -0.3535,0.1289 -0.4686,-0.0338 -1.1014,0.0622 -1.8515,0.1895 -0.7502,0.1273 -1.6094,0.2912 -2.4805,0.4082 -1.7422,0.234 -3.5205,0.2557 -4.5137,-0.4531 -0.7006,-0.5001 -0.9834,-1.8278 -1.0058,-3.2051 -0.0225,-1.3773 0.1852,-2.7701 0.2812,-3.3594 0.0373,-0.2296 0.245,-0.5572 0.5684,-0.9316 0.3234,-0.3745 0.7483,-0.7992 1.1758,-1.2774 0.8548,-0.9562 1.7302,-2.1441 1.7714,-3.6504 0.0337,-1.228 -0.85,-2.452 -1.6679,-3.5781 -0.409,-0.563 -0.8081,-1.0994 -1.084,-1.5762 C 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z"
+ id="rtid-path1429-3-6-7-5-3-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,0 c -0.3359,0.76718 -0.6117,1.75827 -0.8652,2.49023 -0.2953,0.85257 -0.7736,1.73886 -2.0371,2.8125 -0.0899,0.07641 -0.1225,0.14773 -0.17,0.24219 -0.0474,0.09447 -0.0972,0.20857 -0.1484,0.34375 -0.1025,0.27036 -0.2167,0.62378 -0.3398,1.03711 -0.2463,0.82667 -0.5254,1.89254 -0.7911,2.9707 -0.2656,1.07822 -0.5175,2.16932 -0.707,3.04692 -0.1895,0.8775 -0.316,1.5079 -0.3359,1.7851 -0.1397,1.937 0.3521,3.6412 0.8789,4.9746 0.2634,0.6668 0.5365,1.2422 0.7441,1.7051 0.2076,0.4629 0.341,0.8288 0.3516,0.9883 0.0189,0.2839 -0.0597,0.7845 -0.1719,1.3652 -0.1122,0.5807 -0.2521,1.251 -0.332,1.9258 -0.08,0.6748 -0.1028,1.3556 0.0332,1.9727 0.136,0.617 0.4448,1.1779 1.0078,1.539 1.17,0.7503 3.167,0.7102 5.082,0.5528 0.9575,-0.0788 1.8928,-0.1948 2.6778,-0.2852 0.7849,-0.0904 1.4326,-0.1503 1.7558,-0.127 0.4446,0.0321 1.7984,0.3583 3.3027,0.5254 1.5044,0.1671 3.199,0.1866 4.4942,-0.4511 0.3072,-0.1512 0.4947,-0.4545 0.666,-0.8028 0.1713,-0.3483 0.3191,-0.7578 0.4688,-1.1562 0.1496,-0.3985 0.3018,-0.7857 0.4648,-1.0781 0.163,-0.2925 0.3354,-0.4694 0.4727,-0.5137 2.0531,-0.6641 3.0053,-1.0705 3.9199,-1.3047 C 61.0267,24.3397 62.2522,24.2595 64,24.25 v -0.5 c -2.022,0 -2.984,0.0765 -3.9512,0.3242 -0.9672,0.2477 -1.9119,0.6529 -3.9511,1.3125 -0.3424,0.1107 -0.5666,0.4063 -0.7559,0.7461 -0.1894,0.3398 -0.3452,0.7448 -0.4961,1.1465 -0.1509,0.4017 -0.2965,0.8008 -0.4492,1.1113 -0.1527,0.3105 -0.3217,0.5172 -0.4375,0.5742 -1.132,0.5574 -2.7537,0.5651 -4.2188,0.4024 -1.465,-0.1628 -2.7313,-0.4847 -3.3222,-0.5274 -0.4216,-0.0304 -1.0588,0.0381 -1.8477,0.129 -0.7889,0.0908 -1.7186,0.2075 -2.6621,0.2851 -1.8871,0.1552 -3.842,0.1195 -4.7715,-0.4766 -0.4383,-0.2811 -0.6726,-0.6961 -0.789,-1.2246 -0.1165,-0.5284 -0.1019,-1.1612 -0.0254,-1.8066 0.0764,-0.6455 0.2129,-1.3026 0.3261,-1.8887 0.1132,-0.586 0.2084,-1.0932 0.1817,-1.4941 -0.0219,-0.3283 -0.1854,-0.6894 -0.3965,-1.1602 -0.2112,-0.4707 -0.4783,-1.0352 -0.7344,-1.6836 -0.5122,-1.2967 -0.9758,-2.9217 -0.8437,-4.7539 0.0112,-0.1567 0.1379,-0.8449 0.3261,-1.7168 0.1883,-0.8718 0.4387,-1.9599 0.7032,-3.0332 C 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z"
+ id="rtid-path1429-3-6-7-5-3-5-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,23.75 c -1.3299,0 -2.8706,0.7213 -3.8457,1.7207 -0.3945,0.4044 -0.6149,0.8586 -0.8398,1.2031 -0.225,0.3445 -0.4227,0.5676 -0.8028,0.6485 -0.1454,0.0309 -0.3936,-0.0511 -0.6992,-0.2559 -0.3056,-0.2047 -0.6543,-0.5102 -1.0195,-0.8144 -0.3653,-0.3043 -0.748,-0.6092 -1.1465,-0.8184 -0.3986,-0.2092 -0.8334,-0.3266 -1.2617,-0.1914 -0.7564,0.2386 -1.2942,0.779 -1.7754,1.3066 -0.4813,0.5277 -0.9146,1.0441 -1.4141,1.3125 -1.8557,0.9973 -3.9321,1.0397 -4.7773,0.9785 -0.0087,-6e-4 -0.0233,4e-4 -0.0684,-0.0546 -0.0451,-0.0551 -0.1028,-0.1587 -0.1562,-0.293 -0.107,-0.2686 -0.2055,-0.6574 -0.3145,-1.0645 -0.109,-0.4071 -0.2287,-0.8339 -0.3984,-1.2031 C 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 c 0.02452,-0.1264 0.06508,-0.2136 0.11328,-0.2675 0.0482,-0.054 0.10401,-0.0869 0.21484,-0.1016 -0.00851,0.0011 0.04556,0.0038 0.13672,0.0644 0.09116,0.0607 0.20973,0.1666 0.33984,0.3028 0.26022,0.2723 0.56755,0.6647 0.88086,1.0781 0.31331,0.4134 0.63375,0.848 0.93555,1.2149 0.3018,0.3668 0.56991,0.6661 0.85742,0.8242 0.33213,0.1826 0.70718,0.1503 1.0293,0.0136 0.32211,-0.1366 0.6131,-0.3706 0.87109,-0.6289 0.258,-0.2582 0.48087,-0.5423 0.64649,-0.7949 C 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 c -0.12698,0.1422 -0.19631,0.3178 -0.23242,0.5039 -0.07223,0.3724 -0.02356,0.8037 0.05664,1.25 0.08019,0.4463 0.19809,0.9069 0.29297,1.3086 0.09487,0.4018 0.1615,0.7548 0.15625,0.92 -0.04886,1.536 0.08969,3.3032 0.24805,4.7792 0.15835,1.4761 0.33813,2.6827 0.36523,3.0079 0.04642,0.5571 0.38432,2.0296 0.89648,3.4765 0.25609,0.7235 0.55414,1.4323 0.88868,1.9961 0.33453,0.5638 0.69503,1.0073 1.17578,1.1348 0.1745,0.0463 0.36547,0.0224 0.50781,-0.0684 0.14234,-0.0907 0.23291,-0.2248 0.30273,-0.3711 0.13964,-0.2925 0.20818,-0.6624 0.28516,-1.0644 0.15395,-0.8041 0.33801,-1.7199 0.77734,-2.1465 0.11912,-0.1157 0.33078,-0.1858 0.61719,-0.1973 0.28642,-0.0115 0.63462,0.037 0.98632,0.1172 0.7034,0.1604 1.4158,0.444 1.752,0.582 0.1713,0.0704 0.3411,0.278 0.4863,0.5938 0.1452,0.3158 0.2635,0.721 0.3711,1.123 0.1076,0.4021 0.2041,0.8 0.332,1.1211 0.064,0.1606 0.1357,0.3033 0.2344,0.4239 0.0987,0.1205 0.2438,0.2254 0.4199,0.2382 0.9174,0.0665 3.0632,0.03 5.0488,-1.0371 0.6228,-0.3347 1.0775,-0.9033 1.5469,-1.4179 0.4694,-0.5147 0.9439,-0.9727 1.5567,-1.166 0.2553,-0.0806 0.5432,-0.0181 0.8789,0.1582 0.3357,0.1762 0.6996,0.4606 1.0586,0.7597 0.3589,0.2991 0.7145,0.6107 1.0625,0.8438 0.3479,0.2331 0.7032,0.4101 1.08,0.33 0.5421,-0.1152 0.8678,-0.4813 1.1172,-0.8632 0.2494,-0.3819 0.4521,-0.7915 0.7793,-1.127 C 29.3257,24.986 30.9022,24.3358 32,24.25 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-3-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="rotate(180,64,63.9999)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.7498 0,103.7498 v 0.5 c 0.7015,0 2.386,0.2502 3.914,0.1502 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.1498 -1.7,0.1498 v 0.5 c 0.75,0 1.23,0.0502 1.88,-0.2498 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.2498 c 0.8,0 1.49,-0.2498 2.04,-0.7498 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.5498 -1.7,0.6498 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.2498 c 0.85,0 1.51,-0.4498 2.11,-1.0498 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.8498 -1.77,0.9498 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.328563,7.5428884 96.26,7.633 96.258183,7.6353875 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccsssc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/36.svg b/src/asset/tile/frontier/basic/36.svg
index bbc59b4..ea1ba3f 100644
--- a/src/asset/tile/frontier/basic/36.svg
+++ b/src/asset/tile/frontier/basic/36.svg
@@ -1,73 +1,312 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopandrightborders.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1988" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g2022" transform="matrix(-1,0,0,-1,128,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z" id="rtid-path1990" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z" id="rtid-path1992" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z" id="rtid-path1994" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z" id="rtid-path1996" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z" id="rtid-path1998" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z" id="rtid-path2000" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z" id="rtid-path2002" style="fill:#ffffff;stroke-width:0.5215" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z" id="rtid-path2004" style="fill:#ffffff;stroke-width:0.5214" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z" id="rtid-path2006" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z" id="rtid-path2008" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccsssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z" id="rtid-path2010" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z" id="rtid-path2012" style="fill:#ffffff;stroke-width:0.5232" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z" id="rtid-path2014" style="fill:#ffffff;stroke-width:0.5231" ns2:nodetypes="cccsssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z" id="rtid-path2016" style="fill:#ffffff;stroke-width:0.5212" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z" id="rtid-path2018" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z" id="rtid-path2020" style="fill:#ffffff;stroke-width:0.5213" ns2:nodetypes="cccssssssssssssssccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="94.0703" ns1:cy="230.083" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="0.975807">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1988)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1931" transform="rotate(-180,64,64)">
- <ns0:path d="M 7.75,96 C 7.74413,96.0179 7.6706,96.2775 7.66406,96.2969 7.60119,96.4836 7.50682,96.7367 7.39258,97.0449 7.1641,97.6613 6.85018,98.4935 6.51562,99.457 5.84652,101.384 5.09228,103.836 4.75977,106.164 V 106.166 C 4.27027,109.713 4.25383,117.154 4.32422,118.414 4.36917,119.211 4.86061,120.005 5.58203,120.771 6.30345,121.538 7.26793,122.279 8.31836,122.938 10.4192,124.254 12.8433,125.243 14.4141,125.35 H 14.4219 14.4297 C 15.2725,125.35 16.3526,124.72 17.7422,123.971 19.1313,123.221 20.7935,122.329 22.6152,121.738 26.5001,120.5 31.1618,120.265 32,120.25 V 119.75 C 31.3263,119.75 26.5914,119.947 22.4648,121.262 H 22.4629 C 20.5853,121.871 18.8943,122.779 17.5039,123.529 16.116,124.278 14.9938,124.846 14.4355,124.848 13.0448,124.75 10.6273,123.794 8.58398,122.514 7.56017,121.872 6.62615,121.149 5.94727,120.428 5.26838,119.707 4.85826,118.99 4.82422,118.387 4.76057,117.247 4.77936,109.687 5.25586,106.234 5.58032,103.963 6.32414,101.534 6.98828,99.6211 7.32035,98.6647 7.63203,97.8373 7.86133,97.2188 7.97598,96.9095 8.07015,96.6528 8.13672,96.4551 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z" id="rtid-path1429-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,96 C 39.7589,96.1209 39.7815,96.4553 39.7949,96.6895 39.8157,97.0537 39.8346,97.5392 39.8301,98.0879 39.8211,99.1853 39.7142,100.535 39.3457,101.643 39.0687,102.475 38.5295,103.063 37.9902,103.717 37.451,104.37 36.915,105.096 36.7617,106.164 36.6377,107.029 37.1772,107.985 37.6875,109.01 38.1978,110.034 38.7,111.113 38.6699,112.068 38.5768,115.018 38.3864,116.694 38.4316,117.465 38.4718,118.154 38.4286,119.184 38.6504,120.219 38.8722,121.253 39.378,122.311 40.5059,123.008 41.5905,123.678 42.8156,123.789 43.9336,123.754 45.0516,123.718 46.0824,123.542 46.752,123.588 47.2156,123.619 48.0051,123.932 48.9785,124.15 49.952,124.369 51.1332,124.484 52.4453,124.088 52.6834,124.016 53.0799,123.819 53.623,123.545 54.1662,123.271 54.8285,122.924 55.4941,122.576 56.1597,122.228 56.8282,121.878 57.3789,121.6 57.9297,121.322 58.382,121.112 58.5391,121.061 60.5622,120.404 61.7683,120.205 62.5352,120.166 63.1712,120.134 63.6896,120.222 64,120.25 V 119.75 C 63.751,119.75 63.3364,119.624 62.5098,119.666 61.6832,119.708 60.435,119.919 58.3848,120.584 58.1343,120.665 57.7103,120.872 57.1543,121.152 56.5983,121.433 55.9293,121.785 55.2637,122.133 54.598,122.481 53.9344,122.826 53.3965,123.098 52.8586,123.369 52.4188,123.574 52.3008,123.609 51.0931,123.974 50.0162,123.87 49.0898,123.662 48.1635,123.454 47.4105,123.13 46.7852,123.088 46.0016,123.035 44.991,123.22 43.918,123.254 42.8449,123.288 41.7295,123.177 40.7676,122.582 39.7732,121.967 39.3432,121.067 39.1387,120.113 38.9342,119.16 38.9745,118.171 38.9316,117.436 38.8943,116.8 39.0763,115.048 39.1699,112.084 39.2057,110.949 38.6476,109.817 38.1348,108.787 37.6219,107.758 37.1741,106.82 37.2578,106.236 37.3927,105.297 37.8477,104.674 38.375,104.035 38.9023,103.396 39.5044,102.75 39.8203,101.801 40.2175,100.606 40.3209,99.2174 40.3301,98.0918 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z" id="rtid-path1429-3-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,119.75 C 95.8696,119.75 95.4649,119.725 94.9004,119.707 94.3359,119.689 93.5984,119.677 92.752,119.707 91.059,119.768 88.9282,119.992 86.8516,120.652 H 86.8496 C 83.1999,121.836 82.072,120.946 79.9922,120.918 79.4506,120.911 78.7617,121.114 77.9551,121.352 77.1484,121.589 76.236,121.869 75.3184,122.037 74.4007,122.205 73.4814,122.26 72.666,122.07 71.8506,121.88 71.1366,121.458 70.5781,120.625 69.9512,119.69 69.9225,118.382 70.0879,117.043 70.2533,115.704 70.6068,114.358 70.6602,113.328 70.693,112.697 70.6395,111.535 70.6426,110.078 70.6456,108.621 70.7028,106.882 70.9512,105.15 71.2795,102.862 71.2675,102.437 71.9258,100.531 72.2674,99.5424 72.3393,99.0056 72.3242,98.4277 72.3091,97.8498 72.219,97.2389 72.25,96 H 71.75 C 71.7428,97.0234 71.8117,97.9639 71.8242,98.4414 71.8381,98.9747 71.7841,99.409 71.4531,100.367 70.7864,102.297 70.7839,102.802 70.457,105.08 70.2035,106.847 70.1457,108.607 70.1426,110.076 70.1395,111.545 70.1898,112.734 70.1602,113.303 70.1117,114.238 69.7626,115.599 69.5918,116.982 69.421,118.366 69.4217,119.798 70.1621,120.902 70.7884,121.836 71.6344,122.345 72.5508,122.559 73.4671,122.772 74.4525,122.703 75.4082,122.527 76.3639,122.352 77.2927,122.069 78.0957,121.832 78.8987,121.595 79.5875,121.413 79.9863,121.418 81.9203,121.444 83.2538,122.343 87.0039,121.127 L 87.002,121.129 C 89.0153,120.489 91.1058,120.267 92.7695,120.207 93.6014,120.177 94.326,120.189 94.8828,120.207 95.315,120.221 95.7909,120.243 96,120.25 Z" id="rtid-path1429-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccscsccccscccccscccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,119.75 C 125.968,119.784 125.01,119.665 124.115,119.625 123.221,119.585 122.397,119.631 120.719,119.994 120.567,120.027 120.238,120.034 119.848,120.014 119.457,119.993 118.997,119.951 118.535,119.912 118.073,119.873 117.608,119.835 117.201,119.824 116.795,119.813 116.455,119.822 116.188,119.906 115.308,120.185 114.615,120.122 114.02,119.881 113.424,119.639 112.923,119.207 112.48,118.725 112.038,118.243 111.657,117.714 111.287,117.291 110.917,116.868 110.546,116.512 110.061,116.512 108.572,116.412 107.025,116.689 105.883,116.645 105.31,116.622 104.853,116.518 104.551,116.293 104.249,116.068 104.058,115.719 104.035,115.068 V 115.062 115.057 C 103.979,114.379 103.604,113.352 103.314,112.023 103.025,110.695 102.819,109.094 103.078,107.389 103.224,106.427 103.538,105.716 103.854,104.971 104.169,104.225 104.482,103.445 104.584,102.396 104.715,101.052 104.631,100.276 104.514,99.4375 104.397,98.5986 104.25,97.6918 104.25,96 H 103.75 C 103.769,97.4996 103.91,98.7336 104.018,99.5059 104.133,100.337 104.215,101.042 104.088,102.348 103.993,103.322 103.705,104.035 103.393,104.775 103.08,105.516 102.739,106.284 102.582,107.314 102.31,109.105 102.53,110.768 102.826,112.129 103.123,113.49 103.494,114.578 103.537,115.1 V 115.088 C 103.564,115.837 103.821,116.374 104.252,116.695 104.683,117.017 105.243,117.121 105.863,117.145 107.104,117.192 108.637,116.915 110.043,117.012 H 110.053 110.061 C 110.275,117.012 110.565,117.226 110.91,117.621 111.255,118.016 111.644,118.552 112.113,119.062 112.582,119.573 113.136,120.061 113.832,120.344 114.528,120.626 115.363,120.692 116.338,120.383 116.478,120.339 116.801,120.314 117.188,120.324 117.574,120.335 118.032,120.371 118.492,120.41 118.952,120.449 119.415,120.491 119.82,120.512 120.225,120.533 120.564,120.539 120.824,120.482 122.478,120.124 123.227,120.087 124.092,120.125 124.901,120.161 126.204,120.264 128,120.25 Z" id="rtid-path1429-3-6-7-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,64 C 103.752,64.7276 103.773,69.8956 103.102,74.3066 V 74.3086 C 102.846,76.1016 103.075,77.4813 103.379,78.5508 103.682,79.6168 104.043,80.3855 104.088,80.9004 104.108,81.4973 103.751,82.1522 103.176,82.8301 102.6,83.5093 101.823,84.2006 101.09,84.8828 100.356,85.565 99.6657,86.2353 99.252,86.9199 99.0451,87.2622 98.9048,87.613 98.8848,87.9746 98.8647,88.3362 98.9743,88.7028 99.2246,89.0332 99.2306,89.0411 99.2966,89.1646 99.3652,89.332 99.4339,89.4994 99.5177,89.7212 99.6191,89.9766 99.822,90.4872 100.093,91.1361 100.453,91.8008 101.173,93.1301 102.258,94.5413 103.912,94.9805 105.518,95.4067 107.608,94.9132 109.355,94.2754 110.229,93.9565 111.016,93.5986 111.607,93.2852 111.903,93.1284 112.15,92.9833 112.338,92.8574 112.526,92.7315 112.645,92.6603 112.74,92.5 112.839,92.3329 112.866,92.1453 112.881,91.9238 112.896,91.7023 112.89,91.4476 112.877,91.166 112.85,90.6029 112.789,89.937 112.77,89.2852 112.75,88.6333 112.776,87.9953 112.904,87.5137 113.033,87.032 113.237,86.7351 113.59,86.623 113.75,86.5725 114.162,86.6393 114.654,86.8398 115.147,87.0404 115.725,87.3472 116.299,87.6602 116.873,87.9731 117.441,88.294 117.932,88.5273 118.177,88.644 118.403,88.7388 118.607,88.8008 118.811,88.8628 118.992,88.9002 119.182,88.8555 121.333,88.3476 125.412,88.2846 128,88.25 V 87.75 C 125.417,87.7844 121.404,87.8178 119.068,88.3691 119.039,88.376 118.916,88.3722 118.752,88.3223 118.588,88.2723 118.379,88.1849 118.146,88.0742 117.681,87.8528 117.116,87.5357 116.539,87.2207 115.962,86.9057 115.373,86.5926 114.844,86.377 114.314,86.1613 113.849,86.0168 113.439,86.1465 112.886,86.3219 112.574,86.8157 112.422,87.3848 112.27,87.9539 112.25,88.6261 112.27,89.2988 112.289,89.9715 112.351,90.6439 112.377,91.1895 112.39,91.4622 112.395,91.7035 112.383,91.8906 112.37,92.0777 112.331,92.2116 112.311,92.2461 112.332,92.2096 112.226,92.3296 112.059,92.4414 111.892,92.5532 111.658,92.693 111.373,92.8438 110.804,93.1452 110.035,93.4961 109.184,93.8066 107.482,94.4278 105.443,94.8703 104.041,94.498 102.593,94.1138 101.582,92.8363 100.893,91.5625 100.548,90.9256 100.284,90.295 100.084,89.791 99.9839,89.539 99.9006,89.3192 99.8281,89.1426 99.7557,88.9659 99.7079,88.8424 99.623,88.7305 99.4345,88.4816 99.3709,88.2521 99.3848,88.002 99.3986,87.7518 99.5002,87.4747 99.6797,87.1777 100.039,86.5837 100.704,85.9267 101.432,85.25 102.159,84.5733 102.946,83.8744 103.557,83.1543 104.167,82.4342 104.617,81.681 104.588,80.8789 V 80.873 80.8672 C 104.531,80.1822 104.151,79.4391 103.859,78.4141 103.568,77.3895 103.352,76.0967 103.596,74.3809 V 74.3789 C 104.3,69.7492 104.25,64.3795 104.25,64 Z" id="rtid-path1429-3-6-7-5-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,64 C 71.7591,65.5714 71.8302,67.0066 71.8008,67.8496 71.7693,68.7512 71.6353,69.3402 71.207,69.9727 71.1257,70.0927 71.0312,70.1192 70.8047,70.0977 70.5782,70.0761 70.2661,69.979 69.9316,69.8652 69.5972,69.7515 69.2384,69.6232 68.8789,69.5586 68.5194,69.494 68.146,69.4904 67.8164,69.668 67.094,70.0569 66.7262,70.9815 66.4727,71.918 66.2191,72.8545 66.1009,73.8313 66.0215,74.3535 65.4786,77.9211 65.8996,84.6875 66.002,85.9199 66.0163,86.3207 66.1588,86.6625 66.4004,86.9141 66.642,87.1656 66.9689,87.3267 67.3438,87.4297 68.0935,87.6357 69.0544,87.6218 70.0977,87.5332 72.1841,87.3561 74.6131,86.8655 75.9863,86.9648 H 75.9941 76.0039 C 76.5972,86.9648 77.62,87.3999 78.9336,87.707 80.2472,88.0141 81.88,88.1748 83.7852,87.5723 84.5283,87.3372 85.3891,87.4751 86.2734,87.666 87.1578,87.857 88.0565,88.1024 88.9004,87.9785 90.0304,87.8127 90.8129,87.8754 91.8203,87.9824 92.7675,88.083 94.2477,88.2336 96,88.25 V 87.75 C 94.077,87.75 92.8875,87.5921 91.873,87.4844 90.8586,87.3767 90.0098,87.309 88.8281,87.4824 88.1346,87.5842 87.277,87.3716 86.3789,87.1777 85.4808,86.9838 84.5334,86.8095 83.6348,87.0938 81.8313,87.6641 80.3094,87.5158 79.0469,87.2207 77.7869,86.9261 76.8154,86.4686 76.0098,86.4668 74.4825,86.359 72.0921,86.8624 70.0566,87.0352 69.0369,87.1217 68.1115,87.1218 67.4766,86.9473 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 C 66.4017,84.7115 65.9924,77.8679 66.5156,74.4297 66.5976,73.8902 66.7142,72.9383 66.9551,72.0488 67.1959,71.1594 67.5811,70.3614 68.0527,70.1074 68.2373,70.008 68.4868,69.9965 68.7891,70.0508 69.0913,70.1051 69.4342,70.2231 69.7715,70.3379 70.1088,70.4526 70.4383,70.5655 70.7559,70.5957 71.0734,70.6259 71.4237,70.5452 71.6211,70.2539 72.1061,69.5378 72.2658,68.8132 72.2988,67.8672 72.3318,66.9211 72.25,65.7359 72.25,64 Z" id="rtid-path1429-3-6-7-5-3-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,64 C 39.7459,64.9064 39.7094,66.456 39.5938,67.8125 39.4699,69.2642 39.2467,70.7154 38.8984,71.543 38.6239,72.1942 37.7361,73.4248 37.0762,74.6816 36.746,75.3104 36.4705,75.9506 36.3555,76.5664 36.2404,77.1822 36.2928,77.7918 36.6562,78.2793 38.5344,80.7983 38.7552,82.977 38.9316,84.4258 39.0198,85.1502 39.062,85.7146 39.4277,86.0723 39.6106,86.2511 39.8772,86.3347 40.1738,86.3203 40.4705,86.3059 40.8126,86.2101 41.2461,86.0371 41.5488,85.9163 41.7646,85.8883 41.9062,85.9082 42.0479,85.9281 42.1291,85.9825 42.2129,86.0898 42.3805,86.3045 42.4868,86.7729 42.5879,87.3066 42.689,87.8404 42.7964,88.4382 43.0938,88.9434 43.3911,89.4485 43.9112,89.8437 44.7051,89.8984 H 44.7148 44.7227 C 46.2229,89.8984 48.5984,89.0436 52.3027,87.8691 52.7323,87.7329 53.7019,87.8992 54.666,88.1191 55.6302,88.339 56.5837,88.6034 57.2617,88.4766 58.7344,88.2007 59.579,88.1561 60.4805,88.1738 61.3169,88.1902 62.5516,88.259 64,88.25 V 87.75 C 62.3616,87.7738 61.4146,87.692 60.4902,87.6738 59.5659,87.6557 58.6677,87.7038 57.1699,87.9844 56.7295,88.0668 55.7474,87.854 54.7773,87.6328 53.8073,87.4116 52.8441,87.1732 52.1523,87.3926 48.448,88.5671 46.0336,89.3936 44.7324,89.3965 44.0844,89.3488 43.7581,89.0848 43.5254,88.6895 43.2912,88.2917 43.1791,87.7459 43.0781,87.2129 42.9772,86.6799 42.8996,86.16 42.6055,85.7832 42.4584,85.5948 42.2392,85.4513 41.9746,85.4141 41.7101,85.3769 41.4131,85.4316 41.0605,85.5723 40.6542,85.7344 40.3517,85.8104 40.1484,85.8203 39.9452,85.8302 39.8557,85.7915 39.7773,85.7148 39.6206,85.5615 39.5173,85.0851 39.4297,84.3652 39.2544,82.9254 39.007,80.5962 37.0566,77.9805 36.7973,77.6326 36.746,77.1935 36.8457,76.6602 36.9454,76.1268 37.2015,75.5197 37.5195,74.9141 38.1555,73.7029 39.0284,72.5225 39.3594,71.7363 39.7567,70.7923 39.9682,69.3282 40.0938,67.8555 40.2193,66.3827 40.25,64.9102 40.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-93" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,64 C 7.70545,66.0095 7.24505,67.1644 6.68359,68.0684 6.09283,69.0195 5.38169,70.0494 5.04883,72.3906 4.97398,72.9173 5.10015,73.6566 5.16406,74.5156 5.22798,75.3746 5.236,76.3324 4.98047,77.1875 4.63496,78.3436 3.99971,79.4731 3.43945,80.5137 2.87919,81.5542 2.38099,82.4979 2.37305,83.3711 2.36493,84.264 2.02912,85.4163 1.68945,86.3965 1.51962,86.8866 1.35044,87.3353 1.22266,87.6973 1.15877,87.8782 1.1049,88.038 1.06641,88.1738 1.02792,88.3097 0.999524,88.4116 1.00391,88.5352 1.05355,89.9353 2.46874,91.6919 5.05859,93.1504 6.80023,94.1311 9.69217,94.3991 12.375,94.4668 13.7164,94.5006 15.0024,94.4788 16.0547,94.457 17.107,94.4352 17.9362,94.4142 18.3125,94.4414 18.7341,94.4719 19.0702,94.2806 19.3125,94.0117 19.5548,93.7428 19.7452,93.4034 20.002,93.0371 20.5154,92.3046 21.269,91.4492 23.0723,90.8789 23.8476,90.6337 24.2874,89.954 24.6934,89.3672 25.0993,88.7804 25.4601,88.2992 25.9941,88.209 28.5462,87.7778 29.872,88.1744 32,88.25 V 87.75 C 29.7305,87.7028 28.65,87.2523 25.9121,87.7148 25.1363,87.8459 24.6901,88.491 24.2812,89.082 23.8724,89.6731 23.4887,90.2231 22.9219,90.4023 21.0166,91.0049 20.1355,91.9744 19.5918,92.75 19.32,93.1378 19.1255,93.4734 18.9414,93.6777 18.7573,93.8821 18.6242,93.9634 18.3477,93.9434 17.905,93.9113 17.0954,93.9353 16.0449,93.957 14.9945,93.9788 13.7149,94.0003 12.3867,93.9668 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 1.5039,88.5173 1.51374,88.4256 1.54688,88.3086 1.58001,88.1916 1.63102,88.0399 1.69336,87.8633 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-6-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,55.75 C 30.7706,55.75 29.9617,55.8559 29.3789,56.0527 28.7961,56.2496 28.4429,56.5383 28.1738,56.8281 27.6358,57.4078 27.4404,57.9403 25.875,58.2656 25.7525,58.2911 25.5439,58.2338 25.2891,58.0801 25.0342,57.9263 24.7459,57.6927 24.4512,57.457 24.1565,57.2214 23.8551,56.983 23.5527,56.8125 23.2503,56.642 22.9249,56.5246 22.5977,56.6289 21.7224,56.9079 21.3056,57.6704 20.9609,58.3906 20.6163,59.1109 20.318,59.8022 19.7773,60.1387 18.9423,60.6583 17.7235,61.0026 16.668,61.1289 16.1402,61.1921 15.6529,61.2007 15.2812,61.1582 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 H 7.75 C 7.73169,33.7885 7.90046,35.2142 7.98633,36.1387 8.07785,37.124 8.07472,37.9447 7.63281,39.416 7.45659,40.0028 6.88652,40.2715 6.24219,40.584 5.92002,40.7402 5.58725,40.9026 5.30859,41.1406 5.02993,41.3787 4.80864,41.7071 4.75,42.1367 4.60687,43.1855 4.88219,44.4813 5.17188,45.8555 5.46156,47.2297 5.77214,48.6773 5.75,49.9609 5.73269,50.9645 5.38203,51.9064 5.03125,52.668 4.85586,53.0488 4.68217,53.3823 4.54883,53.6641 4.41549,53.9458 4.30592,54.1523 4.32031,54.4043 4.34182,54.7808 4.41652,55.0721 4.57227,55.2969 4.72801,55.5217 4.9589,55.6563 5.20898,55.7344 5.70916,55.8905 6.32343,55.8835 7.125,56.043 8.72815,56.3619 11.0808,57.2922 14.2344,61.2559 14.4468,61.5229 14.7973,61.6074 15.2246,61.6562 15.6519,61.7051 16.1689,61.6917 16.7266,61.625 17.8418,61.4916 19.1097,61.1433 20.043,60.5625 20.764,60.1138 21.0761,59.3076 21.4121,58.6055 21.7481,57.9034 22.082,57.3184 22.75,57.1055 22.8689,57.0676 23.0594,57.1075 23.3086,57.248 23.5578,57.3886 23.8454,57.6131 24.1387,57.8477 24.432,58.0822 24.7308,58.3266 25.0312,58.5078 25.3317,58.6891 25.6455,58.8247 25.9766,58.7559 27.6514,58.4078 28.0654,57.6804 28.541,57.168 28.7788,56.9118 29.0341,56.696 29.5391,56.5254 29.9927,56.3721 31.0025,56.2706 32,56.25 Z" id="rtid-path1429-2-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,32 C 39.6686,35.1631 38.9577,37.2367 38.1484,38.8906 37.909,39.3799 37.3209,40.609 36.7617,41.9277 36.2025,43.2465 35.6712,44.6351 35.543,45.5234 35.276,47.3721 36.0796,49.1405 37.0059,50.5684 37.469,51.2823 37.9662,51.9146 38.3848,52.4297 38.8034,52.9448 39.1485,53.3543 39.2832,53.5723 40.0848,54.8688 40.1484,56.417 40.3711,57.7207 40.4824,58.3725 40.6325,58.9694 40.9805,59.4375 41.3285,59.9056 41.8835,60.2121 42.6758,60.2656 H 42.6836 42.6914 C 43.0831,60.2656 43.7644,60.1809 44.6562,60.0371 45.5481,59.8933 46.6393,59.6886 47.8027,59.4473 50.1291,58.9648 52.739,58.3338 54.6055,57.7285 58.5655,56.4668 60.1726,56.3195 64,56.25 V 55.75 C 59.9084,55.8178 58.545,55.9489 54.4551,57.252 H 54.4531 C 52.6198,57.8466 50.0159,58.477 47.7012,58.957 46.5438,59.1971 45.4581,59.4008 44.5762,59.543 43.7007,59.6841 43.0216,59.7625 42.7051,59.7637 42.0213,59.7163 41.6451,59.4941 41.3809,59.1387 41.1159,58.7822 40.9701,58.26 40.8633,57.6348 40.6497,56.3843 40.5946,54.7442 39.707,53.3086 39.5255,53.0149 39.1861,52.6234 38.7715,52.1133 38.3569,51.6031 37.8732,50.9867 37.4258,50.2969 36.5309,48.9172 35.7972,47.2573 36.0371,45.5957 36.147,44.8348 36.669,43.4288 37.2227,42.123 37.7764,40.8173 38.3617,39.5914 38.5977,39.1094 39.4461,37.3754 40.2065,35.4289 40.25,32 Z" id="rtid-path1429-3-9-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccsccscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,32 C 71.7468,34.801 71.7028,34.5586 71.0742,38.9707 71.0004,39.4885 70.5731,40.0927 70.0957,40.8477 69.6183,41.6026 69.1051,42.5187 68.9395,43.7148 68.6823,45.5713 68.1173,46.3844 67.5879,47.002 67.3232,47.3107 67.0593,47.5702 66.8457,47.8887 66.6321,48.2072 66.4803,48.5885 66.4609,49.0859 66.4405,49.6085 66.3282,50.6359 66.2715,51.6387 66.2431,52.1401 66.2285,52.638 66.248,53.0742 66.2676,53.5104 66.3113,53.8806 66.4434,54.166 66.6508,54.6143 66.6585,55.7657 66.5664,56.8984 66.4743,58.0312 66.3133,59.154 66.3066,59.7559 66.2957,60.7236 66.731,61.3839 67.4023,61.7246 68.0736,62.0653 68.9454,62.1299 69.8945,62.0957 71.7929,62.0273 74.0385,61.5416 75.4414,61.6367 75.8853,61.6668 76.5119,61.4948 77.334,61.2246 78.1561,60.9544 79.149,60.575 80.2129,60.1562 82.3393,59.3193 84.7462,58.3233 86.5645,57.7285 L 86.5684,57.7266 C 90.5648,56.4658 92.2928,56.2606 96,56.25 V 55.75 C 92.0379,55.75 90.5427,55.9492 86.4141,57.252 H 86.4121 C 84.5606,57.8574 82.1507,58.8564 80.0293,59.6914 78.9686,60.1089 77.9816,60.4858 77.1777,60.75 76.3739,61.0142 75.7291,61.1559 75.4746,61.1387 73.9274,61.0337 71.7019,61.53 69.877,61.5957 68.9645,61.6286 68.1619,61.5478 67.6289,61.2773 67.0959,61.0069 66.7973,60.5912 66.8066,59.7617 66.8124,59.2481 66.9727,58.0917 67.0664,56.9395 67.1601,55.7872 67.2183,54.6463 66.8984,53.9551 66.8243,53.7948 66.7644,53.4587 66.7461,53.0508 66.7278,52.6428 66.7417,52.1601 66.7695,51.668 66.8252,50.6837 66.9388,49.6728 66.9609,49.1055 66.9769,48.6946 67.0864,48.4295 67.2617,48.168 67.4371,47.9065 67.6888,47.6528 67.9688,47.3262 68.5287,46.673 69.167,45.7215 69.4355,43.7832 69.5867,42.6912 70.0534,41.8504 70.5195,41.1133 70.9857,40.3761 71.4671,39.7519 71.5684,39.041 72.2188,34.4749 72.25,35.1813 72.25,32 Z" id="rtid-path1429-3-6-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,32 C 103.74,33.3903 103.469,34.2117 103.047,34.707 102.593,35.2391 101.91,35.7792 101.295,37.209 100.432,39.2126 99.6066,41.4686 99.3281,43.4219 99.2628,43.881 99.4581,44.2959 99.7383,44.6621 100.018,45.0283 100.392,45.369 100.76,45.7227 101.495,46.43 102.178,47.1635 102.15,48.1074 102.109,49.5179 101.655,50.8878 101.213,51.9941 100.992,52.5473 100.775,53.0338 100.613,53.4336 100.451,53.8334 100.327,54.1182 100.352,54.4102 100.418,55.2031 100.922,56.0056 101.654,56.7871 102.386,57.5687 103.357,58.3291 104.412,59.002 106.522,60.3476 108.934,61.3496 110.5,61.3496 110.612,61.3496 110.738,61.2714 110.791,61.1875 110.844,61.1036 110.857,61.0255 110.865,60.9473 110.882,60.7908 110.866,60.6162 110.838,60.4043 110.781,59.9805 110.666,59.4225 110.559,58.8164 110.344,57.6042 110.202,56.1945 110.533,55.5215 111.109,54.3531 112.298,53.6223 113.654,53.0977 115.01,52.573 116.51,52.2631 117.66,51.8984 118.056,51.7728 118.269,51.8459 118.479,52.0371 118.688,52.2283 118.872,52.5782 119.031,52.9883 119.191,53.3984 119.33,53.862 119.5,54.2812 119.67,54.7005 119.866,55.0859 120.203,55.3184 120.484,55.5123 120.929,55.666 121.51,55.8164 122.09,55.9668 122.798,56.1018 123.555,56.2031 124.969,56.3924 126.76,56.4374 128,56.25 V 55.75 C 126.826,55.9723 125.1,55.9051 123.621,55.707 122.882,55.608 122.19,55.4759 121.635,55.332 121.079,55.1882 120.65,55.0211 120.486,54.9082 120.301,54.7801 120.12,54.4808 119.963,54.0938 119.806,53.7067 119.666,53.2427 119.496,52.8066 119.327,52.3706 119.131,51.9568 118.814,51.668 118.497,51.3791 118.034,51.2556 117.51,51.4219 116.403,51.7729 114.882,52.0855 113.473,52.6309 112.063,53.1762 110.743,53.9633 110.084,55.3008 109.622,56.2384 109.849,57.6729 110.066,58.9023 110.175,59.5171 110.29,60.0795 110.342,60.4707 110.363,60.6303 110.365,60.7331 110.363,60.8164 109.003,60.7685 106.684,59.8594 104.682,58.582 103.654,57.9264 102.711,57.1836 102.02,56.4453 101.328,55.707 100.9,54.9721 100.85,54.3691 100.845,54.3144 100.92,54.0071 101.076,53.6211 101.233,53.2351 101.452,52.744 101.678,52.1797 102.129,51.0511 102.606,49.6282 102.65,48.1211 102.685,46.933 101.851,46.0809 101.105,45.3633 100.733,45.0045 100.376,44.6722 100.137,44.3594 99.8974,44.0465 99.7841,43.7742 99.8242,43.4922 100.091,41.6229 100.899,39.3924 101.754,37.4082 102.335,36.0575 102.923,35.6207 103.426,35.0312 103.928,34.4418 104.285,33.7087 104.25,32 Z" id="rtid-path1429-3-6-7-2-8" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,23.75 C 126.348,23.7003 125.42,24.2716 124.797,24.7695 124.485,25.0185 124.246,25.2388 124.047,25.3477 123.848,25.4565 123.718,25.4831 123.469,25.373 122.047,24.7447 120.614,24.5417 118.424,25.252 H 118.422 C 118.213,25.3198 117.766,25.1758 117.295,24.9863 117.059,24.8916 116.818,24.7948 116.576,24.7383 116.335,24.6817 116.081,24.6603 115.844,24.7695 114.43,25.4215 113.331,26.4908 112.449,27.3691 112.008,27.8083 111.619,28.2002 111.287,28.4668 110.955,28.7334 110.689,28.8523 110.518,28.8398 110.251,28.8205 110.045,28.6675 109.822,28.3672 109.6,28.0669 109.39,27.6336 109.156,27.1523 108.689,26.1898 108.126,25.0261 107.018,24.3418 105.884,23.642 104.317,23.4655 103.031,23.2656 102.389,23.1657 101.814,23.0602 101.424,22.9082 101.229,22.8322 101.083,22.7449 100.992,22.6562 100.901,22.5676 100.859,22.4863 100.85,22.3691 100.85,22.3778 100.864,22.2809 100.934,22.1484 101.003,22.016 101.115,21.8422 101.254,21.6426 101.531,21.2433 101.915,20.7346 102.307,20.1504 103.09,18.982 103.912,17.5116 103.959,15.9453 103.994,14.784 103.213,13.6831 102.498,12.6855 102.14,12.1868 101.794,11.7134 101.557,11.291 101.32,10.8686 101.207,10.5066 101.248,10.2383 101.304,9.86904 101.446,9.63991 101.645,9.45703 101.843,9.27415 102.108,9.14217 102.4,9.02148 102.693,8.9008 103.01,8.7935 103.301,8.63477 103.591,8.47603 103.864,8.25378 104.014,7.91406 104.467,6.88656 104.505,5.59067 104.449,4.20898 104.393,2.8273 104.235,1.35423 104.25,0 H 103.75 C 103.754,1.32161 103.897,2.95144 103.949,4.22852 104.004,5.58647 103.95,6.82163 103.557,7.71289 103.463,7.92412 103.298,8.06567 103.061,8.19531 102.823,8.32496 102.522,8.43035 102.211,8.55859 101.9,8.68684 101.576,8.84012 101.305,9.08984 101.033,9.33957 100.823,9.69195 100.752,10.1621 100.683,10.616 100.861,11.0709 101.121,11.5352 101.381,11.9994 101.737,12.4811 102.092,12.9766 102.802,13.9675 103.488,15.0133 103.461,15.9297 103.419,17.3278 102.657,18.731 101.893,19.8711 101.51,20.4412 101.13,20.946 100.844,21.3594 100.7,21.5661 100.58,21.7497 100.492,21.916 100.405,22.0823 100.336,22.2252 100.352,22.4102 100.371,22.6467 100.481,22.8569 100.643,23.0137 100.804,23.1704 101.008,23.282 101.242,23.373 101.71,23.5552 102.304,23.6588 102.953,23.7598 104.251,23.9617 105.768,24.1591 106.754,24.7676 107.709,25.3572 108.239,26.4106 108.705,27.3711 108.938,27.8514 109.155,28.3053 109.422,28.666 109.689,29.0267 110.034,29.3073 110.482,29.3398 110.876,29.3683 111.232,29.1541 111.602,28.8574 111.971,28.5608 112.362,28.1597 112.801,27.7227 113.678,26.8485 114.739,25.8305 116.053,25.2246 116.137,25.1857 116.274,25.1808 116.461,25.2246 116.648,25.2685 116.873,25.3551 117.107,25.4492 117.575,25.6375 118.082,25.8894 118.578,25.7285 120.683,25.0464 121.918,25.2339 123.268,25.8301 123.638,25.9935 123.997,25.9443 124.285,25.7871 124.573,25.6299 124.816,25.3946 125.109,25.1602 125.657,24.7228 126.664,24.2729 128,24.25 Z" id="rtid-path1429-3-6-7-5-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,0 C 71.7641,2.21123 71.2319,3.78788 70.5781,5.08594 69.8959,6.44042 69.0863,7.81724 68.752,10.1641 68.6831,10.647 68.8889,11.1403 69.1875,11.6562 69.4861,12.1722 69.8941,12.7175 70.3008,13.2773 71.1141,14.3971 71.8995,15.5826 71.873,16.5469 71.837,17.8658 71.0606,18.9483 70.2305,19.877 69.8154,20.3413 69.3897,20.7633 69.0469,21.1602 68.7041,21.5571 68.4305,21.9265 68.3633,22.3398 68.2656,22.9396 68.0528,24.3567 68.0762,25.7891 68.0995,27.2214 68.3283,28.7022 69.293,29.3906 70.5075,30.2574 72.3847,30.1724 74.1621,29.9336 75.0508,29.8142 75.9174,29.6495 76.6602,29.5234 77.4029,29.3974 78.0317,29.3138 78.3926,29.3398 78.6378,29.3575 78.867,29.2639 79.0703,29.1191 79.2736,28.9744 79.4617,28.7765 79.6543,28.541 80.0395,28.07 80.4422,27.4435 80.9141,26.7852 81.8579,25.4685 83.068,24.0375 84.8398,23.4824 85.685,23.2177 86.1963,22.6416 86.6543,22.1504 87.1123,21.6592 87.5049,21.2596 88.1504,21.1602 88.7064,21.0745 89.1586,21.1996 89.6309,21.4531 90.1031,21.7066 90.5845,22.0946 91.1406,22.5059 92.2047,23.2926 93.8564,24.1769 96,24.25 V 23.75 C 93.8108,23.75 92.5275,22.9095 91.4375,22.1035 90.8925,21.7005 90.4002,21.2978 89.8672,21.0117 89.3341,20.7256 88.7476,20.5622 88.0742,20.666 87.2563,20.7921 86.7519,21.3142 86.2891,21.8105 85.8262,22.3069 85.3949,22.7835 84.6914,23.0039 82.7485,23.6125 81.4689,25.1534 80.5078,26.4941 80.0273,27.1645 79.6226,27.7904 79.2676,28.2246 79.0901,28.4417 78.925,28.6086 78.7812,28.7109 78.6375,28.8133 78.5266,28.847 78.4277,28.8398 77.9591,28.806 77.3263,28.902 76.5762,29.0293 75.826,29.1566 74.9668,29.3205 74.0957,29.4375 72.3535,29.6715 70.5752,29.6932 69.582,28.9844 68.8814,28.4843 68.5986,27.1566 68.5762,25.7793 68.5537,24.402 68.7614,23.0092 68.8574,22.4199 68.8947,22.1903 69.1024,21.8627 69.4258,21.4883 69.7492,21.1138 70.1741,20.6891 70.6016,20.2109 71.4564,19.2547 72.3318,18.0668 72.373,16.5605 72.4067,15.3325 71.523,14.1085 70.7051,12.9824 70.2961,12.4194 69.897,11.883 69.6211,11.4062 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z" id="rtid-path1429-3-6-7-5-3-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,0 C 39.4141,0.76718 39.1383,1.75827 38.8848,2.49023 38.5895,3.3428 38.1112,4.22909 36.8477,5.30273 36.7578,5.37914 36.7252,5.45046 36.6777,5.54492 36.6303,5.63939 36.5805,5.75349 36.5293,5.88867 36.4268,6.15903 36.3126,6.51245 36.1895,6.92578 35.9432,7.75245 35.6641,8.81832 35.3984,9.89648 35.1328,10.9747 34.8809,12.0658 34.6914,12.9434 34.5019,13.8209 34.3754,14.4513 34.3555,14.7285 34.2158,16.6655 34.7076,18.3697 35.2344,19.7031 35.4978,20.3699 35.7709,20.9453 35.9785,21.4082 36.1861,21.8711 36.3195,22.237 36.3301,22.3965 36.349,22.6804 36.2704,23.181 36.1582,23.7617 36.046,24.3424 35.9061,25.0127 35.8262,25.6875 35.7462,26.3623 35.7234,27.0431 35.8594,27.6602 35.9954,28.2772 36.3042,28.8381 36.8672,29.1992 38.0372,29.9495 40.0342,29.9094 41.9492,29.752 42.9067,29.6732 43.842,29.5572 44.627,29.4668 45.4119,29.3764 46.0596,29.3165 46.3828,29.3398 46.8274,29.3719 48.1812,29.6981 49.6855,29.8652 51.1899,30.0323 52.8845,30.0518 54.1797,29.4141 54.4869,29.2629 54.6744,28.9596 54.8457,28.6113 55.017,28.263 55.1648,27.8535 55.3145,27.4551 55.4641,27.0566 55.6163,26.6694 55.7793,26.377 55.9423,26.0845 56.1147,25.9076 56.252,25.8633 58.3051,25.1992 59.2573,24.7928 60.1719,24.5586 61.0267,24.3397 62.2522,24.2595 64,24.25 V 23.75 C 61.978,23.75 61.016,23.8265 60.0488,24.0742 59.0816,24.3219 58.1369,24.7271 56.0977,25.3867 55.7553,25.4974 55.5311,25.793 55.3418,26.1328 55.1524,26.4726 54.9966,26.8776 54.8457,27.2793 54.6948,27.681 54.5492,28.0801 54.3965,28.3906 54.2438,28.7011 54.0748,28.9078 53.959,28.9648 52.827,29.5222 51.2053,29.5299 49.7402,29.3672 48.2752,29.2044 47.0089,28.8825 46.418,28.8398 45.9964,28.8094 45.3592,28.8779 44.5703,28.9688 43.7814,29.0596 42.8517,29.1763 41.9082,29.2539 40.0211,29.4091 38.0662,29.3734 37.1367,28.7773 36.6984,28.4962 36.4641,28.0812 36.3477,27.5527 36.2312,27.0243 36.2458,26.3915 36.3223,25.7461 36.3987,25.1006 36.5352,24.4435 36.6484,23.8574 36.7616,23.2714 36.8568,22.7642 36.8301,22.3633 36.8082,22.035 36.6447,21.6739 36.4336,21.2031 36.2224,20.7324 35.9553,20.1679 35.6992,19.5195 35.187,18.2228 34.7234,16.5978 34.8555,14.7656 34.8667,14.6089 34.9934,13.9207 35.1816,13.0488 35.3699,12.177 35.6203,11.0889 35.8848,10.0156 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z" id="rtid-path1429-3-6-7-5-3-5-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,23.75 C 30.6701,23.75 29.1294,24.4713 28.1543,25.4707 27.7598,25.8751 27.5394,26.3293 27.3145,26.6738 27.0895,27.0183 26.8918,27.2414 26.5117,27.3223 26.3663,27.3532 26.1181,27.2712 25.8125,27.0664 25.5069,26.8617 25.1582,26.5562 24.793,26.252 24.4277,25.9477 24.045,25.6428 23.6465,25.4336 23.2479,25.2244 22.8131,25.107 22.3848,25.2422 21.6284,25.4808 21.0906,26.0212 20.6094,26.5488 20.1281,27.0765 19.6948,27.5929 19.1953,27.8613 17.3396,28.8586 15.2632,28.901 14.418,28.8398 14.4093,28.8392 14.3947,28.8402 14.3496,28.7852 14.3045,28.7301 14.2468,28.6265 14.1934,28.4922 14.0864,28.2236 13.9879,27.8348 13.8789,27.4277 13.7699,27.0206 13.6502,26.5938 13.4805,26.2246 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 3.74718,11.0845 3.78774,10.9973 3.83594,10.9434 3.88414,10.8894 3.93995,10.8565 4.05078,10.8418 4.04227,10.8429 4.09634,10.8456 4.1875,10.9062 4.27866,10.9669 4.39723,11.0728 4.52734,11.209 4.78756,11.4813 5.09489,11.8737 5.4082,12.2871 5.72151,12.7005 6.04195,13.1351 6.34375,13.502 6.64555,13.8688 6.91366,14.1681 7.20117,14.3262 7.5333,14.5088 7.90835,14.4765 8.23047,14.3398 8.55258,14.2032 8.84357,13.9692 9.10156,13.7109 9.35956,13.4527 9.58243,13.1686 9.74805,12.916 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 3.33591,10.7535 3.26658,10.9291 3.23047,11.1152 3.15824,11.4876 3.20691,11.9189 3.28711,12.3652 3.3673,12.8115 3.4852,13.2721 3.58008,13.6738 3.67495,14.0756 3.74158,14.4286 3.73633,14.5938 3.68747,16.1298 3.82602,17.897 3.98438,19.373 4.14273,20.8491 4.32251,22.0557 4.34961,22.3809 4.39603,22.938 4.73393,24.4105 5.24609,25.8574 5.50218,26.5809 5.80023,27.2897 6.13477,27.8535 6.4693,28.4173 6.8298,28.8608 7.31055,28.9883 7.48505,29.0346 7.67602,29.0107 7.81836,28.9199 7.9607,28.8292 8.05127,28.6951 8.12109,28.5488 8.26073,28.2563 8.32927,27.8864 8.40625,27.4844 8.5602,26.6803 8.74426,25.7645 9.18359,25.3379 9.30271,25.2222 9.51437,25.1521 9.80078,25.1406 10.0872,25.1291 10.4354,25.1776 10.7871,25.2578 11.4905,25.4182 12.2029,25.7018 12.5391,25.8398 12.7104,25.9102 12.8802,26.1178 13.0254,26.4336 13.1706,26.7494 13.2889,27.1546 13.3965,27.5566 13.5041,27.9587 13.6006,28.3566 13.7285,28.6777 13.7925,28.8383 13.8642,28.981 13.9629,29.1016 14.0616,29.2221 14.2067,29.327 14.3828,29.3398 15.3002,29.4063 17.446,29.3698 19.4316,28.3027 20.0544,27.968 20.5091,27.3994 20.9785,26.8848 21.4479,26.3701 21.9224,25.9121 22.5352,25.7188 22.7905,25.6382 23.0784,25.7007 23.4141,25.877 23.7498,26.0532 24.1137,26.3376 24.4727,26.6367 24.8316,26.9358 25.1872,27.2474 25.5352,27.4805 25.8831,27.7136 26.2384,27.8906 26.6152,27.8105 27.1573,27.6953 27.483,27.3292 27.7324,26.9473 27.9818,26.5654 28.1845,26.1558 28.5117,25.8203 29.3257,24.986 30.9022,24.3358 32,24.25 Z" id="rtid-path1429-3-6-7-5-3-5-6-3-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="36.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1988"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g2022"
+ transform="matrix(-1,0,0,-1,128,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z"
+ id="rtid-path1990"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z"
+ id="rtid-path1992"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z"
+ id="rtid-path1994"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z"
+ id="rtid-path1996"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z"
+ id="rtid-path1998"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z"
+ id="rtid-path2000"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z"
+ id="rtid-path2002"
+ style="fill:#ffffff;stroke-width:0.5215"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z"
+ id="rtid-path2004"
+ style="fill:#ffffff;stroke-width:0.5214"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z"
+ id="rtid-path2006"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z"
+ id="rtid-path2008"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccsssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z"
+ id="rtid-path2010"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z"
+ id="rtid-path2012"
+ style="fill:#ffffff;stroke-width:0.5232"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z"
+ id="rtid-path2014"
+ style="fill:#ffffff;stroke-width:0.5231"
+ sodipodi:nodetypes="cccsssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z"
+ id="rtid-path2016"
+ style="fill:#ffffff;stroke-width:0.5212"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z"
+ id="rtid-path2018"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z"
+ id="rtid-path2020"
+ style="fill:#ffffff;stroke-width:0.5213"
+ sodipodi:nodetypes="cccssssssssssssssccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-85.780839"
+ inkscape:cy="230.083"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.975807">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1988)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g1931"
+ transform="rotate(-180,64,64)">
+ <path
+ d="M 7.75,96 C 7.74413,96.0179 7.6706,96.2775 7.66406,96.2969 7.60119,96.4836 7.50682,96.7367 7.39258,97.0449 7.1641,97.6613 6.85018,98.4935 6.51562,99.457 5.84652,101.384 5.09228,103.836 4.75977,106.164 V 106.166 C 4.27027,109.713 4.25383,117.154 4.32422,118.414 4.36917,119.211 4.86061,120.005 5.58203,120.771 6.30345,121.538 7.26793,122.279 8.31836,122.938 10.4192,124.254 12.8433,125.243 14.4141,125.35 H 14.4219 14.4297 C 15.2725,125.35 16.3526,124.72 17.7422,123.971 19.1313,123.221 20.7935,122.329 22.6152,121.738 26.5001,120.5 31.1618,120.265 32,120.25 V 119.75 C 31.3263,119.75 26.5914,119.947 22.4648,121.262 H 22.4629 C 20.5853,121.871 18.8943,122.779 17.5039,123.529 16.116,124.278 14.9938,124.846 14.4355,124.848 13.0448,124.75 10.6273,123.794 8.58398,122.514 7.56017,121.872 6.62615,121.149 5.94727,120.428 5.26838,119.707 4.85826,118.99 4.82422,118.387 4.76057,117.247 4.77936,109.687 5.25586,106.234 5.58032,103.963 6.32414,101.534 6.98828,99.6211 7.32035,98.6647 7.63203,97.8373 7.86133,97.2188 7.97598,96.9095 8.07015,96.6528 8.13672,96.4551 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z"
+ id="rtid-path1429-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,96 C 39.7589,96.1209 39.7815,96.4553 39.7949,96.6895 39.8157,97.0537 39.8346,97.5392 39.8301,98.0879 39.8211,99.1853 39.7142,100.535 39.3457,101.643 39.0687,102.475 38.5295,103.063 37.9902,103.717 37.451,104.37 36.915,105.096 36.7617,106.164 36.6377,107.029 37.1772,107.985 37.6875,109.01 38.1978,110.034 38.7,111.113 38.6699,112.068 38.5768,115.018 38.3864,116.694 38.4316,117.465 38.4718,118.154 38.4286,119.184 38.6504,120.219 38.8722,121.253 39.378,122.311 40.5059,123.008 41.5905,123.678 42.8156,123.789 43.9336,123.754 45.0516,123.718 46.0824,123.542 46.752,123.588 47.2156,123.619 48.0051,123.932 48.9785,124.15 49.952,124.369 51.1332,124.484 52.4453,124.088 52.6834,124.016 53.0799,123.819 53.623,123.545 54.1662,123.271 54.8285,122.924 55.4941,122.576 56.1597,122.228 56.8282,121.878 57.3789,121.6 57.9297,121.322 58.382,121.112 58.5391,121.061 60.5622,120.404 61.7683,120.205 62.5352,120.166 63.1712,120.134 63.6896,120.222 64,120.25 V 119.75 C 63.751,119.75 63.3364,119.624 62.5098,119.666 61.6832,119.708 60.435,119.919 58.3848,120.584 58.1343,120.665 57.7103,120.872 57.1543,121.152 56.5983,121.433 55.9293,121.785 55.2637,122.133 54.598,122.481 53.9344,122.826 53.3965,123.098 52.8586,123.369 52.4188,123.574 52.3008,123.609 51.0931,123.974 50.0162,123.87 49.0898,123.662 48.1635,123.454 47.4105,123.13 46.7852,123.088 46.0016,123.035 44.991,123.22 43.918,123.254 42.8449,123.288 41.7295,123.177 40.7676,122.582 39.7732,121.967 39.3432,121.067 39.1387,120.113 38.9342,119.16 38.9745,118.171 38.9316,117.436 38.8943,116.8 39.0763,115.048 39.1699,112.084 39.2057,110.949 38.6476,109.817 38.1348,108.787 37.6219,107.758 37.1741,106.82 37.2578,106.236 37.3927,105.297 37.8477,104.674 38.375,104.035 38.9023,103.396 39.5044,102.75 39.8203,101.801 40.2175,100.606 40.3209,99.2174 40.3301,98.0918 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z"
+ id="rtid-path1429-3-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,119.75 C 95.8696,119.75 95.4649,119.725 94.9004,119.707 94.3359,119.689 93.5984,119.677 92.752,119.707 91.059,119.768 88.9282,119.992 86.8516,120.652 H 86.8496 C 83.1999,121.836 82.072,120.946 79.9922,120.918 79.4506,120.911 78.7617,121.114 77.9551,121.352 77.1484,121.589 76.236,121.869 75.3184,122.037 74.4007,122.205 73.4814,122.26 72.666,122.07 71.8506,121.88 71.1366,121.458 70.5781,120.625 69.9512,119.69 69.9225,118.382 70.0879,117.043 70.2533,115.704 70.6068,114.358 70.6602,113.328 70.693,112.697 70.6395,111.535 70.6426,110.078 70.6456,108.621 70.7028,106.882 70.9512,105.15 71.2795,102.862 71.2675,102.437 71.9258,100.531 72.2674,99.5424 72.3393,99.0056 72.3242,98.4277 72.3091,97.8498 72.219,97.2389 72.25,96 H 71.75 C 71.7428,97.0234 71.8117,97.9639 71.8242,98.4414 71.8381,98.9747 71.7841,99.409 71.4531,100.367 70.7864,102.297 70.7839,102.802 70.457,105.08 70.2035,106.847 70.1457,108.607 70.1426,110.076 70.1395,111.545 70.1898,112.734 70.1602,113.303 70.1117,114.238 69.7626,115.599 69.5918,116.982 69.421,118.366 69.4217,119.798 70.1621,120.902 70.7884,121.836 71.6344,122.345 72.5508,122.559 73.4671,122.772 74.4525,122.703 75.4082,122.527 76.3639,122.352 77.2927,122.069 78.0957,121.832 78.8987,121.595 79.5875,121.413 79.9863,121.418 81.9203,121.444 83.2538,122.343 87.0039,121.127 L 87.002,121.129 C 89.0153,120.489 91.1058,120.267 92.7695,120.207 93.6014,120.177 94.326,120.189 94.8828,120.207 95.315,120.221 95.7909,120.243 96,120.25 Z"
+ id="rtid-path1429-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccscsccccscccccscccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,119.75 C 125.968,119.784 125.01,119.665 124.115,119.625 123.221,119.585 122.397,119.631 120.719,119.994 120.567,120.027 120.238,120.034 119.848,120.014 119.457,119.993 118.997,119.951 118.535,119.912 118.073,119.873 117.608,119.835 117.201,119.824 116.795,119.813 116.455,119.822 116.188,119.906 115.308,120.185 114.615,120.122 114.02,119.881 113.424,119.639 112.923,119.207 112.48,118.725 112.038,118.243 111.657,117.714 111.287,117.291 110.917,116.868 110.546,116.512 110.061,116.512 108.572,116.412 107.025,116.689 105.883,116.645 105.31,116.622 104.853,116.518 104.551,116.293 104.249,116.068 104.058,115.719 104.035,115.068 V 115.062 115.057 C 103.979,114.379 103.604,113.352 103.314,112.023 103.025,110.695 102.819,109.094 103.078,107.389 103.224,106.427 103.538,105.716 103.854,104.971 104.169,104.225 104.482,103.445 104.584,102.396 104.715,101.052 104.631,100.276 104.514,99.4375 104.397,98.5986 104.25,97.6918 104.25,96 H 103.75 C 103.769,97.4996 103.91,98.7336 104.018,99.5059 104.133,100.337 104.215,101.042 104.088,102.348 103.993,103.322 103.705,104.035 103.393,104.775 103.08,105.516 102.739,106.284 102.582,107.314 102.31,109.105 102.53,110.768 102.826,112.129 103.123,113.49 103.494,114.578 103.537,115.1 V 115.088 C 103.564,115.837 103.821,116.374 104.252,116.695 104.683,117.017 105.243,117.121 105.863,117.145 107.104,117.192 108.637,116.915 110.043,117.012 H 110.053 110.061 C 110.275,117.012 110.565,117.226 110.91,117.621 111.255,118.016 111.644,118.552 112.113,119.062 112.582,119.573 113.136,120.061 113.832,120.344 114.528,120.626 115.363,120.692 116.338,120.383 116.478,120.339 116.801,120.314 117.188,120.324 117.574,120.335 118.032,120.371 118.492,120.41 118.952,120.449 119.415,120.491 119.82,120.512 120.225,120.533 120.564,120.539 120.824,120.482 122.478,120.124 123.227,120.087 124.092,120.125 124.901,120.161 126.204,120.264 128,120.25 Z"
+ id="rtid-path1429-3-6-7-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,64 C 103.752,64.7276 103.773,69.8956 103.102,74.3066 V 74.3086 C 102.846,76.1016 103.075,77.4813 103.379,78.5508 103.682,79.6168 104.043,80.3855 104.088,80.9004 104.108,81.4973 103.751,82.1522 103.176,82.8301 102.6,83.5093 101.823,84.2006 101.09,84.8828 100.356,85.565 99.6657,86.2353 99.252,86.9199 99.0451,87.2622 98.9048,87.613 98.8848,87.9746 98.8647,88.3362 98.9743,88.7028 99.2246,89.0332 99.2306,89.0411 99.2966,89.1646 99.3652,89.332 99.4339,89.4994 99.5177,89.7212 99.6191,89.9766 99.822,90.4872 100.093,91.1361 100.453,91.8008 101.173,93.1301 102.258,94.5413 103.912,94.9805 105.518,95.4067 107.608,94.9132 109.355,94.2754 110.229,93.9565 111.016,93.5986 111.607,93.2852 111.903,93.1284 112.15,92.9833 112.338,92.8574 112.526,92.7315 112.645,92.6603 112.74,92.5 112.839,92.3329 112.866,92.1453 112.881,91.9238 112.896,91.7023 112.89,91.4476 112.877,91.166 112.85,90.6029 112.789,89.937 112.77,89.2852 112.75,88.6333 112.776,87.9953 112.904,87.5137 113.033,87.032 113.237,86.7351 113.59,86.623 113.75,86.5725 114.162,86.6393 114.654,86.8398 115.147,87.0404 115.725,87.3472 116.299,87.6602 116.873,87.9731 117.441,88.294 117.932,88.5273 118.177,88.644 118.403,88.7388 118.607,88.8008 118.811,88.8628 118.992,88.9002 119.182,88.8555 121.333,88.3476 125.412,88.2846 128,88.25 V 87.75 C 125.417,87.7844 121.404,87.8178 119.068,88.3691 119.039,88.376 118.916,88.3722 118.752,88.3223 118.588,88.2723 118.379,88.1849 118.146,88.0742 117.681,87.8528 117.116,87.5357 116.539,87.2207 115.962,86.9057 115.373,86.5926 114.844,86.377 114.314,86.1613 113.849,86.0168 113.439,86.1465 112.886,86.3219 112.574,86.8157 112.422,87.3848 112.27,87.9539 112.25,88.6261 112.27,89.2988 112.289,89.9715 112.351,90.6439 112.377,91.1895 112.39,91.4622 112.395,91.7035 112.383,91.8906 112.37,92.0777 112.331,92.2116 112.311,92.2461 112.332,92.2096 112.226,92.3296 112.059,92.4414 111.892,92.5532 111.658,92.693 111.373,92.8438 110.804,93.1452 110.035,93.4961 109.184,93.8066 107.482,94.4278 105.443,94.8703 104.041,94.498 102.593,94.1138 101.582,92.8363 100.893,91.5625 100.548,90.9256 100.284,90.295 100.084,89.791 99.9839,89.539 99.9006,89.3192 99.8281,89.1426 99.7557,88.9659 99.7079,88.8424 99.623,88.7305 99.4345,88.4816 99.3709,88.2521 99.3848,88.002 99.3986,87.7518 99.5002,87.4747 99.6797,87.1777 100.039,86.5837 100.704,85.9267 101.432,85.25 102.159,84.5733 102.946,83.8744 103.557,83.1543 104.167,82.4342 104.617,81.681 104.588,80.8789 V 80.873 80.8672 C 104.531,80.1822 104.151,79.4391 103.859,78.4141 103.568,77.3895 103.352,76.0967 103.596,74.3809 V 74.3789 C 104.3,69.7492 104.25,64.3795 104.25,64 Z"
+ id="rtid-path1429-3-6-7-5-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,64 C 71.7591,65.5714 71.8302,67.0066 71.8008,67.8496 71.7693,68.7512 71.6353,69.3402 71.207,69.9727 71.1257,70.0927 71.0312,70.1192 70.8047,70.0977 70.5782,70.0761 70.2661,69.979 69.9316,69.8652 69.5972,69.7515 69.2384,69.6232 68.8789,69.5586 68.5194,69.494 68.146,69.4904 67.8164,69.668 67.094,70.0569 66.7262,70.9815 66.4727,71.918 66.2191,72.8545 66.1009,73.8313 66.0215,74.3535 65.4786,77.9211 65.8996,84.6875 66.002,85.9199 66.0163,86.3207 66.1588,86.6625 66.4004,86.9141 66.642,87.1656 66.9689,87.3267 67.3438,87.4297 68.0935,87.6357 69.0544,87.6218 70.0977,87.5332 72.1841,87.3561 74.6131,86.8655 75.9863,86.9648 H 75.9941 76.0039 C 76.5972,86.9648 77.62,87.3999 78.9336,87.707 80.2472,88.0141 81.88,88.1748 83.7852,87.5723 84.5283,87.3372 85.3891,87.4751 86.2734,87.666 87.1578,87.857 88.0565,88.1024 88.9004,87.9785 90.0304,87.8127 90.8129,87.8754 91.8203,87.9824 92.7675,88.083 94.2477,88.2336 96,88.25 V 87.75 C 94.077,87.75 92.8875,87.5921 91.873,87.4844 90.8586,87.3767 90.0098,87.309 88.8281,87.4824 88.1346,87.5842 87.277,87.3716 86.3789,87.1777 85.4808,86.9838 84.5334,86.8095 83.6348,87.0938 81.8313,87.6641 80.3094,87.5158 79.0469,87.2207 77.7869,86.9261 76.8154,86.4686 76.0098,86.4668 74.4825,86.359 72.0921,86.8624 70.0566,87.0352 69.0369,87.1217 68.1115,87.1218 67.4766,86.9473 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 C 66.4017,84.7115 65.9924,77.8679 66.5156,74.4297 66.5976,73.8902 66.7142,72.9383 66.9551,72.0488 67.1959,71.1594 67.5811,70.3614 68.0527,70.1074 68.2373,70.008 68.4868,69.9965 68.7891,70.0508 69.0913,70.1051 69.4342,70.2231 69.7715,70.3379 70.1088,70.4526 70.4383,70.5655 70.7559,70.5957 71.0734,70.6259 71.4237,70.5452 71.6211,70.2539 72.1061,69.5378 72.2658,68.8132 72.2988,67.8672 72.3318,66.9211 72.25,65.7359 72.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,64 C 39.7459,64.9064 39.7094,66.456 39.5938,67.8125 39.4699,69.2642 39.2467,70.7154 38.8984,71.543 38.6239,72.1942 37.7361,73.4248 37.0762,74.6816 36.746,75.3104 36.4705,75.9506 36.3555,76.5664 36.2404,77.1822 36.2928,77.7918 36.6562,78.2793 38.5344,80.7983 38.7552,82.977 38.9316,84.4258 39.0198,85.1502 39.062,85.7146 39.4277,86.0723 39.6106,86.2511 39.8772,86.3347 40.1738,86.3203 40.4705,86.3059 40.8126,86.2101 41.2461,86.0371 41.5488,85.9163 41.7646,85.8883 41.9062,85.9082 42.0479,85.9281 42.1291,85.9825 42.2129,86.0898 42.3805,86.3045 42.4868,86.7729 42.5879,87.3066 42.689,87.8404 42.7964,88.4382 43.0938,88.9434 43.3911,89.4485 43.9112,89.8437 44.7051,89.8984 H 44.7148 44.7227 C 46.2229,89.8984 48.5984,89.0436 52.3027,87.8691 52.7323,87.7329 53.7019,87.8992 54.666,88.1191 55.6302,88.339 56.5837,88.6034 57.2617,88.4766 58.7344,88.2007 59.579,88.1561 60.4805,88.1738 61.3169,88.1902 62.5516,88.259 64,88.25 V 87.75 C 62.3616,87.7738 61.4146,87.692 60.4902,87.6738 59.5659,87.6557 58.6677,87.7038 57.1699,87.9844 56.7295,88.0668 55.7474,87.854 54.7773,87.6328 53.8073,87.4116 52.8441,87.1732 52.1523,87.3926 48.448,88.5671 46.0336,89.3936 44.7324,89.3965 44.0844,89.3488 43.7581,89.0848 43.5254,88.6895 43.2912,88.2917 43.1791,87.7459 43.0781,87.2129 42.9772,86.6799 42.8996,86.16 42.6055,85.7832 42.4584,85.5948 42.2392,85.4513 41.9746,85.4141 41.7101,85.3769 41.4131,85.4316 41.0605,85.5723 40.6542,85.7344 40.3517,85.8104 40.1484,85.8203 39.9452,85.8302 39.8557,85.7915 39.7773,85.7148 39.6206,85.5615 39.5173,85.0851 39.4297,84.3652 39.2544,82.9254 39.007,80.5962 37.0566,77.9805 36.7973,77.6326 36.746,77.1935 36.8457,76.6602 36.9454,76.1268 37.2015,75.5197 37.5195,74.9141 38.1555,73.7029 39.0284,72.5225 39.3594,71.7363 39.7567,70.7923 39.9682,69.3282 40.0938,67.8555 40.2193,66.3827 40.25,64.9102 40.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-93"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,64 C 7.70545,66.0095 7.24505,67.1644 6.68359,68.0684 6.09283,69.0195 5.38169,70.0494 5.04883,72.3906 4.97398,72.9173 5.10015,73.6566 5.16406,74.5156 5.22798,75.3746 5.236,76.3324 4.98047,77.1875 4.63496,78.3436 3.99971,79.4731 3.43945,80.5137 2.87919,81.5542 2.38099,82.4979 2.37305,83.3711 2.36493,84.264 2.02912,85.4163 1.68945,86.3965 1.51962,86.8866 1.35044,87.3353 1.22266,87.6973 1.15877,87.8782 1.1049,88.038 1.06641,88.1738 1.02792,88.3097 0.999524,88.4116 1.00391,88.5352 1.05355,89.9353 2.46874,91.6919 5.05859,93.1504 6.80023,94.1311 9.69217,94.3991 12.375,94.4668 13.7164,94.5006 15.0024,94.4788 16.0547,94.457 17.107,94.4352 17.9362,94.4142 18.3125,94.4414 18.7341,94.4719 19.0702,94.2806 19.3125,94.0117 19.5548,93.7428 19.7452,93.4034 20.002,93.0371 20.5154,92.3046 21.269,91.4492 23.0723,90.8789 23.8476,90.6337 24.2874,89.954 24.6934,89.3672 25.0993,88.7804 25.4601,88.2992 25.9941,88.209 28.5462,87.7778 29.872,88.1744 32,88.25 V 87.75 C 29.7305,87.7028 28.65,87.2523 25.9121,87.7148 25.1363,87.8459 24.6901,88.491 24.2812,89.082 23.8724,89.6731 23.4887,90.2231 22.9219,90.4023 21.0166,91.0049 20.1355,91.9744 19.5918,92.75 19.32,93.1378 19.1255,93.4734 18.9414,93.6777 18.7573,93.8821 18.6242,93.9634 18.3477,93.9434 17.905,93.9113 17.0954,93.9353 16.0449,93.957 14.9945,93.9788 13.7149,94.0003 12.3867,93.9668 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 1.5039,88.5173 1.51374,88.4256 1.54688,88.3086 1.58001,88.1916 1.63102,88.0399 1.69336,87.8633 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,55.75 C 30.7706,55.75 29.9617,55.8559 29.3789,56.0527 28.7961,56.2496 28.4429,56.5383 28.1738,56.8281 27.6358,57.4078 27.4404,57.9403 25.875,58.2656 25.7525,58.2911 25.5439,58.2338 25.2891,58.0801 25.0342,57.9263 24.7459,57.6927 24.4512,57.457 24.1565,57.2214 23.8551,56.983 23.5527,56.8125 23.2503,56.642 22.9249,56.5246 22.5977,56.6289 21.7224,56.9079 21.3056,57.6704 20.9609,58.3906 20.6163,59.1109 20.318,59.8022 19.7773,60.1387 18.9423,60.6583 17.7235,61.0026 16.668,61.1289 16.1402,61.1921 15.6529,61.2007 15.2812,61.1582 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 H 7.75 C 7.73169,33.7885 7.90046,35.2142 7.98633,36.1387 8.07785,37.124 8.07472,37.9447 7.63281,39.416 7.45659,40.0028 6.88652,40.2715 6.24219,40.584 5.92002,40.7402 5.58725,40.9026 5.30859,41.1406 5.02993,41.3787 4.80864,41.7071 4.75,42.1367 4.60687,43.1855 4.88219,44.4813 5.17188,45.8555 5.46156,47.2297 5.77214,48.6773 5.75,49.9609 5.73269,50.9645 5.38203,51.9064 5.03125,52.668 4.85586,53.0488 4.68217,53.3823 4.54883,53.6641 4.41549,53.9458 4.30592,54.1523 4.32031,54.4043 4.34182,54.7808 4.41652,55.0721 4.57227,55.2969 4.72801,55.5217 4.9589,55.6563 5.20898,55.7344 5.70916,55.8905 6.32343,55.8835 7.125,56.043 8.72815,56.3619 11.0808,57.2922 14.2344,61.2559 14.4468,61.5229 14.7973,61.6074 15.2246,61.6562 15.6519,61.7051 16.1689,61.6917 16.7266,61.625 17.8418,61.4916 19.1097,61.1433 20.043,60.5625 20.764,60.1138 21.0761,59.3076 21.4121,58.6055 21.7481,57.9034 22.082,57.3184 22.75,57.1055 22.8689,57.0676 23.0594,57.1075 23.3086,57.248 23.5578,57.3886 23.8454,57.6131 24.1387,57.8477 24.432,58.0822 24.7308,58.3266 25.0312,58.5078 25.3317,58.6891 25.6455,58.8247 25.9766,58.7559 27.6514,58.4078 28.0654,57.6804 28.541,57.168 28.7788,56.9118 29.0341,56.696 29.5391,56.5254 29.9927,56.3721 31.0025,56.2706 32,56.25 Z"
+ id="rtid-path1429-2-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,32 C 39.6686,35.1631 38.9577,37.2367 38.1484,38.8906 37.909,39.3799 37.3209,40.609 36.7617,41.9277 36.2025,43.2465 35.6712,44.6351 35.543,45.5234 35.276,47.3721 36.0796,49.1405 37.0059,50.5684 37.469,51.2823 37.9662,51.9146 38.3848,52.4297 38.8034,52.9448 39.1485,53.3543 39.2832,53.5723 40.0848,54.8688 40.1484,56.417 40.3711,57.7207 40.4824,58.3725 40.6325,58.9694 40.9805,59.4375 41.3285,59.9056 41.8835,60.2121 42.6758,60.2656 H 42.6836 42.6914 C 43.0831,60.2656 43.7644,60.1809 44.6562,60.0371 45.5481,59.8933 46.6393,59.6886 47.8027,59.4473 50.1291,58.9648 52.739,58.3338 54.6055,57.7285 58.5655,56.4668 60.1726,56.3195 64,56.25 V 55.75 C 59.9084,55.8178 58.545,55.9489 54.4551,57.252 H 54.4531 C 52.6198,57.8466 50.0159,58.477 47.7012,58.957 46.5438,59.1971 45.4581,59.4008 44.5762,59.543 43.7007,59.6841 43.0216,59.7625 42.7051,59.7637 42.0213,59.7163 41.6451,59.4941 41.3809,59.1387 41.1159,58.7822 40.9701,58.26 40.8633,57.6348 40.6497,56.3843 40.5946,54.7442 39.707,53.3086 39.5255,53.0149 39.1861,52.6234 38.7715,52.1133 38.3569,51.6031 37.8732,50.9867 37.4258,50.2969 36.5309,48.9172 35.7972,47.2573 36.0371,45.5957 36.147,44.8348 36.669,43.4288 37.2227,42.123 37.7764,40.8173 38.3617,39.5914 38.5977,39.1094 39.4461,37.3754 40.2065,35.4289 40.25,32 Z"
+ id="rtid-path1429-3-9-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccsccscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,32 C 71.7468,34.801 71.7028,34.5586 71.0742,38.9707 71.0004,39.4885 70.5731,40.0927 70.0957,40.8477 69.6183,41.6026 69.1051,42.5187 68.9395,43.7148 68.6823,45.5713 68.1173,46.3844 67.5879,47.002 67.3232,47.3107 67.0593,47.5702 66.8457,47.8887 66.6321,48.2072 66.4803,48.5885 66.4609,49.0859 66.4405,49.6085 66.3282,50.6359 66.2715,51.6387 66.2431,52.1401 66.2285,52.638 66.248,53.0742 66.2676,53.5104 66.3113,53.8806 66.4434,54.166 66.6508,54.6143 66.6585,55.7657 66.5664,56.8984 66.4743,58.0312 66.3133,59.154 66.3066,59.7559 66.2957,60.7236 66.731,61.3839 67.4023,61.7246 68.0736,62.0653 68.9454,62.1299 69.8945,62.0957 71.7929,62.0273 74.0385,61.5416 75.4414,61.6367 75.8853,61.6668 76.5119,61.4948 77.334,61.2246 78.1561,60.9544 79.149,60.575 80.2129,60.1562 82.3393,59.3193 84.7462,58.3233 86.5645,57.7285 L 86.5684,57.7266 C 90.5648,56.4658 92.2928,56.2606 96,56.25 V 55.75 C 92.0379,55.75 90.5427,55.9492 86.4141,57.252 H 86.4121 C 84.5606,57.8574 82.1507,58.8564 80.0293,59.6914 78.9686,60.1089 77.9816,60.4858 77.1777,60.75 76.3739,61.0142 75.7291,61.1559 75.4746,61.1387 73.9274,61.0337 71.7019,61.53 69.877,61.5957 68.9645,61.6286 68.1619,61.5478 67.6289,61.2773 67.0959,61.0069 66.7973,60.5912 66.8066,59.7617 66.8124,59.2481 66.9727,58.0917 67.0664,56.9395 67.1601,55.7872 67.2183,54.6463 66.8984,53.9551 66.8243,53.7948 66.7644,53.4587 66.7461,53.0508 66.7278,52.6428 66.7417,52.1601 66.7695,51.668 66.8252,50.6837 66.9388,49.6728 66.9609,49.1055 66.9769,48.6946 67.0864,48.4295 67.2617,48.168 67.4371,47.9065 67.6888,47.6528 67.9688,47.3262 68.5287,46.673 69.167,45.7215 69.4355,43.7832 69.5867,42.6912 70.0534,41.8504 70.5195,41.1133 70.9857,40.3761 71.4671,39.7519 71.5684,39.041 72.2188,34.4749 72.25,35.1813 72.25,32 Z"
+ id="rtid-path1429-3-6-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,32 C 103.74,33.3903 103.469,34.2117 103.047,34.707 102.593,35.2391 101.91,35.7792 101.295,37.209 100.432,39.2126 99.6066,41.4686 99.3281,43.4219 99.2628,43.881 99.4581,44.2959 99.7383,44.6621 100.018,45.0283 100.392,45.369 100.76,45.7227 101.495,46.43 102.178,47.1635 102.15,48.1074 102.109,49.5179 101.655,50.8878 101.213,51.9941 100.992,52.5473 100.775,53.0338 100.613,53.4336 100.451,53.8334 100.327,54.1182 100.352,54.4102 100.418,55.2031 100.922,56.0056 101.654,56.7871 102.386,57.5687 103.357,58.3291 104.412,59.002 106.522,60.3476 108.934,61.3496 110.5,61.3496 110.612,61.3496 110.738,61.2714 110.791,61.1875 110.844,61.1036 110.857,61.0255 110.865,60.9473 110.882,60.7908 110.866,60.6162 110.838,60.4043 110.781,59.9805 110.666,59.4225 110.559,58.8164 110.344,57.6042 110.202,56.1945 110.533,55.5215 111.109,54.3531 112.298,53.6223 113.654,53.0977 115.01,52.573 116.51,52.2631 117.66,51.8984 118.056,51.7728 118.269,51.8459 118.479,52.0371 118.688,52.2283 118.872,52.5782 119.031,52.9883 119.191,53.3984 119.33,53.862 119.5,54.2812 119.67,54.7005 119.866,55.0859 120.203,55.3184 120.484,55.5123 120.929,55.666 121.51,55.8164 122.09,55.9668 122.798,56.1018 123.555,56.2031 124.969,56.3924 126.76,56.4374 128,56.25 V 55.75 C 126.826,55.9723 125.1,55.9051 123.621,55.707 122.882,55.608 122.19,55.4759 121.635,55.332 121.079,55.1882 120.65,55.0211 120.486,54.9082 120.301,54.7801 120.12,54.4808 119.963,54.0938 119.806,53.7067 119.666,53.2427 119.496,52.8066 119.327,52.3706 119.131,51.9568 118.814,51.668 118.497,51.3791 118.034,51.2556 117.51,51.4219 116.403,51.7729 114.882,52.0855 113.473,52.6309 112.063,53.1762 110.743,53.9633 110.084,55.3008 109.622,56.2384 109.849,57.6729 110.066,58.9023 110.175,59.5171 110.29,60.0795 110.342,60.4707 110.363,60.6303 110.365,60.7331 110.363,60.8164 109.003,60.7685 106.684,59.8594 104.682,58.582 103.654,57.9264 102.711,57.1836 102.02,56.4453 101.328,55.707 100.9,54.9721 100.85,54.3691 100.845,54.3144 100.92,54.0071 101.076,53.6211 101.233,53.2351 101.452,52.744 101.678,52.1797 102.129,51.0511 102.606,49.6282 102.65,48.1211 102.685,46.933 101.851,46.0809 101.105,45.3633 100.733,45.0045 100.376,44.6722 100.137,44.3594 99.8974,44.0465 99.7841,43.7742 99.8242,43.4922 100.091,41.6229 100.899,39.3924 101.754,37.4082 102.335,36.0575 102.923,35.6207 103.426,35.0312 103.928,34.4418 104.285,33.7087 104.25,32 Z"
+ id="rtid-path1429-3-6-7-2-8"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,23.75 C 126.348,23.7003 125.42,24.2716 124.797,24.7695 124.485,25.0185 124.246,25.2388 124.047,25.3477 123.848,25.4565 123.718,25.4831 123.469,25.373 122.047,24.7447 120.614,24.5417 118.424,25.252 H 118.422 C 118.213,25.3198 117.766,25.1758 117.295,24.9863 117.059,24.8916 116.818,24.7948 116.576,24.7383 116.335,24.6817 116.081,24.6603 115.844,24.7695 114.43,25.4215 113.331,26.4908 112.449,27.3691 112.008,27.8083 111.619,28.2002 111.287,28.4668 110.955,28.7334 110.689,28.8523 110.518,28.8398 110.251,28.8205 110.045,28.6675 109.822,28.3672 109.6,28.0669 109.39,27.6336 109.156,27.1523 108.689,26.1898 108.126,25.0261 107.018,24.3418 105.884,23.642 104.317,23.4655 103.031,23.2656 102.389,23.1657 101.814,23.0602 101.424,22.9082 101.229,22.8322 101.083,22.7449 100.992,22.6562 100.901,22.5676 100.859,22.4863 100.85,22.3691 100.85,22.3778 100.864,22.2809 100.934,22.1484 101.003,22.016 101.115,21.8422 101.254,21.6426 101.531,21.2433 101.915,20.7346 102.307,20.1504 103.09,18.982 103.912,17.5116 103.959,15.9453 103.994,14.784 103.213,13.6831 102.498,12.6855 102.14,12.1868 101.794,11.7134 101.557,11.291 101.32,10.8686 101.207,10.5066 101.248,10.2383 101.304,9.86904 101.446,9.63991 101.645,9.45703 101.843,9.27415 102.108,9.14217 102.4,9.02148 102.693,8.9008 103.01,8.7935 103.301,8.63477 103.591,8.47603 103.864,8.25378 104.014,7.91406 104.467,6.88656 104.505,5.59067 104.449,4.20898 104.393,2.8273 104.235,1.35423 104.25,0 H 103.75 C 103.754,1.32161 103.897,2.95144 103.949,4.22852 104.004,5.58647 103.95,6.82163 103.557,7.71289 103.463,7.92412 103.298,8.06567 103.061,8.19531 102.823,8.32496 102.522,8.43035 102.211,8.55859 101.9,8.68684 101.576,8.84012 101.305,9.08984 101.033,9.33957 100.823,9.69195 100.752,10.1621 100.683,10.616 100.861,11.0709 101.121,11.5352 101.381,11.9994 101.737,12.4811 102.092,12.9766 102.802,13.9675 103.488,15.0133 103.461,15.9297 103.419,17.3278 102.657,18.731 101.893,19.8711 101.51,20.4412 101.13,20.946 100.844,21.3594 100.7,21.5661 100.58,21.7497 100.492,21.916 100.405,22.0823 100.336,22.2252 100.352,22.4102 100.371,22.6467 100.481,22.8569 100.643,23.0137 100.804,23.1704 101.008,23.282 101.242,23.373 101.71,23.5552 102.304,23.6588 102.953,23.7598 104.251,23.9617 105.768,24.1591 106.754,24.7676 107.709,25.3572 108.239,26.4106 108.705,27.3711 108.938,27.8514 109.155,28.3053 109.422,28.666 109.689,29.0267 110.034,29.3073 110.482,29.3398 110.876,29.3683 111.232,29.1541 111.602,28.8574 111.971,28.5608 112.362,28.1597 112.801,27.7227 113.678,26.8485 114.739,25.8305 116.053,25.2246 116.137,25.1857 116.274,25.1808 116.461,25.2246 116.648,25.2685 116.873,25.3551 117.107,25.4492 117.575,25.6375 118.082,25.8894 118.578,25.7285 120.683,25.0464 121.918,25.2339 123.268,25.8301 123.638,25.9935 123.997,25.9443 124.285,25.7871 124.573,25.6299 124.816,25.3946 125.109,25.1602 125.657,24.7228 126.664,24.2729 128,24.25 Z"
+ id="rtid-path1429-3-6-7-5-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,0 C 71.7641,2.21123 71.2319,3.78788 70.5781,5.08594 69.8959,6.44042 69.0863,7.81724 68.752,10.1641 68.6831,10.647 68.8889,11.1403 69.1875,11.6562 69.4861,12.1722 69.8941,12.7175 70.3008,13.2773 71.1141,14.3971 71.8995,15.5826 71.873,16.5469 71.837,17.8658 71.0606,18.9483 70.2305,19.877 69.8154,20.3413 69.3897,20.7633 69.0469,21.1602 68.7041,21.5571 68.4305,21.9265 68.3633,22.3398 68.2656,22.9396 68.0528,24.3567 68.0762,25.7891 68.0995,27.2214 68.3283,28.7022 69.293,29.3906 70.5075,30.2574 72.3847,30.1724 74.1621,29.9336 75.0508,29.8142 75.9174,29.6495 76.6602,29.5234 77.4029,29.3974 78.0317,29.3138 78.3926,29.3398 78.6378,29.3575 78.867,29.2639 79.0703,29.1191 79.2736,28.9744 79.4617,28.7765 79.6543,28.541 80.0395,28.07 80.4422,27.4435 80.9141,26.7852 81.8579,25.4685 83.068,24.0375 84.8398,23.4824 85.685,23.2177 86.1963,22.6416 86.6543,22.1504 87.1123,21.6592 87.5049,21.2596 88.1504,21.1602 88.7064,21.0745 89.1586,21.1996 89.6309,21.4531 90.1031,21.7066 90.5845,22.0946 91.1406,22.5059 92.2047,23.2926 93.8564,24.1769 96,24.25 V 23.75 C 93.8108,23.75 92.5275,22.9095 91.4375,22.1035 90.8925,21.7005 90.4002,21.2978 89.8672,21.0117 89.3341,20.7256 88.7476,20.5622 88.0742,20.666 87.2563,20.7921 86.7519,21.3142 86.2891,21.8105 85.8262,22.3069 85.3949,22.7835 84.6914,23.0039 82.7485,23.6125 81.4689,25.1534 80.5078,26.4941 80.0273,27.1645 79.6226,27.7904 79.2676,28.2246 79.0901,28.4417 78.925,28.6086 78.7812,28.7109 78.6375,28.8133 78.5266,28.847 78.4277,28.8398 77.9591,28.806 77.3263,28.902 76.5762,29.0293 75.826,29.1566 74.9668,29.3205 74.0957,29.4375 72.3535,29.6715 70.5752,29.6932 69.582,28.9844 68.8814,28.4843 68.5986,27.1566 68.5762,25.7793 68.5537,24.402 68.7614,23.0092 68.8574,22.4199 68.8947,22.1903 69.1024,21.8627 69.4258,21.4883 69.7492,21.1138 70.1741,20.6891 70.6016,20.2109 71.4564,19.2547 72.3318,18.0668 72.373,16.5605 72.4067,15.3325 71.523,14.1085 70.7051,12.9824 70.2961,12.4194 69.897,11.883 69.6211,11.4062 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z"
+ id="rtid-path1429-3-6-7-5-3-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,0 C 39.4141,0.76718 39.1383,1.75827 38.8848,2.49023 38.5895,3.3428 38.1112,4.22909 36.8477,5.30273 36.7578,5.37914 36.7252,5.45046 36.6777,5.54492 36.6303,5.63939 36.5805,5.75349 36.5293,5.88867 36.4268,6.15903 36.3126,6.51245 36.1895,6.92578 35.9432,7.75245 35.6641,8.81832 35.3984,9.89648 35.1328,10.9747 34.8809,12.0658 34.6914,12.9434 34.5019,13.8209 34.3754,14.4513 34.3555,14.7285 34.2158,16.6655 34.7076,18.3697 35.2344,19.7031 35.4978,20.3699 35.7709,20.9453 35.9785,21.4082 36.1861,21.8711 36.3195,22.237 36.3301,22.3965 36.349,22.6804 36.2704,23.181 36.1582,23.7617 36.046,24.3424 35.9061,25.0127 35.8262,25.6875 35.7462,26.3623 35.7234,27.0431 35.8594,27.6602 35.9954,28.2772 36.3042,28.8381 36.8672,29.1992 38.0372,29.9495 40.0342,29.9094 41.9492,29.752 42.9067,29.6732 43.842,29.5572 44.627,29.4668 45.4119,29.3764 46.0596,29.3165 46.3828,29.3398 46.8274,29.3719 48.1812,29.6981 49.6855,29.8652 51.1899,30.0323 52.8845,30.0518 54.1797,29.4141 54.4869,29.2629 54.6744,28.9596 54.8457,28.6113 55.017,28.263 55.1648,27.8535 55.3145,27.4551 55.4641,27.0566 55.6163,26.6694 55.7793,26.377 55.9423,26.0845 56.1147,25.9076 56.252,25.8633 58.3051,25.1992 59.2573,24.7928 60.1719,24.5586 61.0267,24.3397 62.2522,24.2595 64,24.25 V 23.75 C 61.978,23.75 61.016,23.8265 60.0488,24.0742 59.0816,24.3219 58.1369,24.7271 56.0977,25.3867 55.7553,25.4974 55.5311,25.793 55.3418,26.1328 55.1524,26.4726 54.9966,26.8776 54.8457,27.2793 54.6948,27.681 54.5492,28.0801 54.3965,28.3906 54.2438,28.7011 54.0748,28.9078 53.959,28.9648 52.827,29.5222 51.2053,29.5299 49.7402,29.3672 48.2752,29.2044 47.0089,28.8825 46.418,28.8398 45.9964,28.8094 45.3592,28.8779 44.5703,28.9688 43.7814,29.0596 42.8517,29.1763 41.9082,29.2539 40.0211,29.4091 38.0662,29.3734 37.1367,28.7773 36.6984,28.4962 36.4641,28.0812 36.3477,27.5527 36.2312,27.0243 36.2458,26.3915 36.3223,25.7461 36.3987,25.1006 36.5352,24.4435 36.6484,23.8574 36.7616,23.2714 36.8568,22.7642 36.8301,22.3633 36.8082,22.035 36.6447,21.6739 36.4336,21.2031 36.2224,20.7324 35.9553,20.1679 35.6992,19.5195 35.187,18.2228 34.7234,16.5978 34.8555,14.7656 34.8667,14.6089 34.9934,13.9207 35.1816,13.0488 35.3699,12.177 35.6203,11.0889 35.8848,10.0156 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z"
+ id="rtid-path1429-3-6-7-5-3-5-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,23.75 C 30.6701,23.75 29.1294,24.4713 28.1543,25.4707 27.7598,25.8751 27.5394,26.3293 27.3145,26.6738 27.0895,27.0183 26.8918,27.2414 26.5117,27.3223 26.3663,27.3532 26.1181,27.2712 25.8125,27.0664 25.5069,26.8617 25.1582,26.5562 24.793,26.252 24.4277,25.9477 24.045,25.6428 23.6465,25.4336 23.2479,25.2244 22.8131,25.107 22.3848,25.2422 21.6284,25.4808 21.0906,26.0212 20.6094,26.5488 20.1281,27.0765 19.6948,27.5929 19.1953,27.8613 17.3396,28.8586 15.2632,28.901 14.418,28.8398 14.4093,28.8392 14.3947,28.8402 14.3496,28.7852 14.3045,28.7301 14.2468,28.6265 14.1934,28.4922 14.0864,28.2236 13.9879,27.8348 13.8789,27.4277 13.7699,27.0206 13.6502,26.5938 13.4805,26.2246 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 3.74718,11.0845 3.78774,10.9973 3.83594,10.9434 3.88414,10.8894 3.93995,10.8565 4.05078,10.8418 4.04227,10.8429 4.09634,10.8456 4.1875,10.9062 4.27866,10.9669 4.39723,11.0728 4.52734,11.209 4.78756,11.4813 5.09489,11.8737 5.4082,12.2871 5.72151,12.7005 6.04195,13.1351 6.34375,13.502 6.64555,13.8688 6.91366,14.1681 7.20117,14.3262 7.5333,14.5088 7.90835,14.4765 8.23047,14.3398 8.55258,14.2032 8.84357,13.9692 9.10156,13.7109 9.35956,13.4527 9.58243,13.1686 9.74805,12.916 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 3.33591,10.7535 3.26658,10.9291 3.23047,11.1152 3.15824,11.4876 3.20691,11.9189 3.28711,12.3652 3.3673,12.8115 3.4852,13.2721 3.58008,13.6738 3.67495,14.0756 3.74158,14.4286 3.73633,14.5938 3.68747,16.1298 3.82602,17.897 3.98438,19.373 4.14273,20.8491 4.32251,22.0557 4.34961,22.3809 4.39603,22.938 4.73393,24.4105 5.24609,25.8574 5.50218,26.5809 5.80023,27.2897 6.13477,27.8535 6.4693,28.4173 6.8298,28.8608 7.31055,28.9883 7.48505,29.0346 7.67602,29.0107 7.81836,28.9199 7.9607,28.8292 8.05127,28.6951 8.12109,28.5488 8.26073,28.2563 8.32927,27.8864 8.40625,27.4844 8.5602,26.6803 8.74426,25.7645 9.18359,25.3379 9.30271,25.2222 9.51437,25.1521 9.80078,25.1406 10.0872,25.1291 10.4354,25.1776 10.7871,25.2578 11.4905,25.4182 12.2029,25.7018 12.5391,25.8398 12.7104,25.9102 12.8802,26.1178 13.0254,26.4336 13.1706,26.7494 13.2889,27.1546 13.3965,27.5566 13.5041,27.9587 13.6006,28.3566 13.7285,28.6777 13.7925,28.8383 13.8642,28.981 13.9629,29.1016 14.0616,29.2221 14.2067,29.327 14.3828,29.3398 15.3002,29.4063 17.446,29.3698 19.4316,28.3027 20.0544,27.968 20.5091,27.3994 20.9785,26.8848 21.4479,26.3701 21.9224,25.9121 22.5352,25.7188 22.7905,25.6382 23.0784,25.7007 23.4141,25.877 23.7498,26.0532 24.1137,26.3376 24.4727,26.6367 24.8316,26.9358 25.1872,27.2474 25.5352,27.4805 25.8831,27.7136 26.2384,27.8906 26.6152,27.8105 27.1573,27.6953 27.483,27.3292 27.7324,26.9473 27.9818,26.5654 28.1845,26.1558 28.5117,25.8203 29.3257,24.986 30.9022,24.3358 32,24.25 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-3-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/37.svg b/src/asset/tile/frontier/basic/37.svg
index 8ceafca..23328a2 100644
--- a/src/asset/tile/frontier/basic/37.svg
+++ b/src/asset/tile/frontier/basic/37.svg
@@ -1,133 +1,640 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopborderandbottomcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2528" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g2634">
- <ns0:g id="rtid-g2562" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path2530" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path2532" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path2534" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path2536" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path2538" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path2540" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path2542" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path2544" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path2546" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path2548" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path2550" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path2552" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path2554" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path2556" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path2558" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path2560" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2632">
- <ns0:g id="rtid-g2596" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2564" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2566" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2568" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2570" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2572" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2574" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2576" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2578" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2580" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2582" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2584" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2586" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2588" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2590" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2592" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2594" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2630" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2598" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2600" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2602" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2604" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2606" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2608" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2610" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2612" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2614" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2616" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2618" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2620" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2622" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2624" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2626" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2628" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="true" ns1:current-layer="rtid-layer3" ns1:cx="476.68067" ns1:cy="4.42081" ns1:document-units="mm" ns1:guide-bbox="true" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="20.48">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- <ns2:guide id="rtid-guide55526" orientation="0,1" position="31.044616,8.9658608" ns1:locked="false" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="37.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2528"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g2634">
+ <g
+ id="rtid-g2562"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path2530"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path2532"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path2534"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path2536"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path2538"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path2540"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path2542"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path2544"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path2546"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path2548"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path2550"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path2552"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path2554"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path2556"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path2558"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path2560"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2632">
+ <g
+ id="rtid-g2596"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2564"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2566"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2568"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2570"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2572"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2574"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2576"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2578"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2580"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2582"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2584"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2586"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2588"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2590"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2592"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2594"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2630"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2598"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2600"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2602"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2604"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2606"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2608"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2610"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2612"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2614"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2616"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2618"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2620"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2622"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2624"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2626"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2628"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="true"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="468.11133"
+ inkscape:cy="4.42081"
+ inkscape:document-units="mm"
+ inkscape:guide-bbox="true"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="20.48">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ <sodipodi:guide
+ id="rtid-guide55526"
+ orientation="0,1"
+ position="31.044616,8.9658608"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2528)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="matrix(1,0,0,-1,0,128.187)">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssscsccsscccccccsccsssssccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="matrix(-1,0,0,1,128,0)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2528)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219"
+ transform="matrix(1,0,0,-1,0,128.187)">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssscsccsscccccccsccsssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="matrix(-1,0,0,1,128,0)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/38.svg b/src/asset/tile/frontier/basic/38.svg
index bbe52ea..a765922 100644
--- a/src/asset/tile/frontier/basic/38.svg
+++ b/src/asset/tile/frontier/basic/38.svg
@@ -1,111 +1,523 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopborderandbottomleftcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2938" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g3008">
- <ns0:g id="rtid-g2972" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path2940" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path2942" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path2944" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path2946" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path2948" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path2950" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path2952" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path2954" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path2956" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path2958" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path2960" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path2962" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path2964" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path2966" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path2968" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path2970" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g3006" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2974" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2976" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2978" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2980" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2982" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2984" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2986" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2988" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2990" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2992" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2994" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2996" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2998" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path3000" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path3002" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path3004" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="352.07884" ns1:cy="62.571202" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="5.12">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="38.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2938"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g3008">
+ <g
+ id="rtid-g2972"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path2940"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path2942"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path2944"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path2946"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path2948"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path2950"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path2952"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path2954"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path2956"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path2958"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path2960"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path2962"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path2964"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path2966"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path2968"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path2970"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g3006"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2974"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2976"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2978"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2980"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2982"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2984"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2986"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2988"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2990"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2992"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2994"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2996"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2998"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path3000"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path3002"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path3004"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="317.8015"
+ inkscape:cy="62.571202"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="5.12">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2938)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="matrix(1,0,0,-1,0,128.187)">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2938)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219"
+ transform="matrix(1,0,0,-1,0,128.187)">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/39.svg b/src/asset/tile/frontier/basic/39.svg
index 8e3d87a..23e3263 100644
--- a/src/asset/tile/frontier/basic/39.svg
+++ b/src/asset/tile/frontier/basic/39.svg
@@ -1,111 +1,523 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopborderandbottomrightcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2811" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g2881">
- <ns0:g id="rtid-g2845" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path2813" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path2815" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path2817" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path2819" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path2821" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path2823" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path2825" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path2827" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path2829" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path2831" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path2833" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path2835" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path2837" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path2839" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path2841" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path2843" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2879" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2847" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2849" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2851" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2853" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2855" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2857" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2859" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2861" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2863" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2865" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2867" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2869" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2871" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2873" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2875" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2877" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="472.33256" ns1:cy="16.250376" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="20.48">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="39.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2811"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g2881">
+ <g
+ id="rtid-g2845"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path2813"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path2815"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path2817"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path2819"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path2821"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path2823"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path2825"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path2827"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path2829"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path2831"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path2833"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path2835"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path2837"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path2839"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path2841"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path2843"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2879"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2847"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2849"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2851"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2853"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2855"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2857"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2859"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2861"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2863"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2865"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2867"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2869"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2871"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2873"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2875"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2877"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-72.057127"
+ inkscape:cy="210.77171"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.90509668">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2811)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="matrix(1,0,0,-1,0,128.187)">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-use1484" transform="rotate(180,64,64)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-path2741" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-path2743" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-path2745" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-path2747" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-path2749" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-path2751" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-path2753" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-path2755" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-path2757" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-path2759" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-path2761" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-path2763" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-path2765" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-path2767" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-path2769" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 l -0.5,0 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-path2771" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2811)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219"
+ transform="matrix(1,0,0,-1,0,128.187)">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-use1484"
+ transform="rotate(180,64,64)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-path2741"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-path2743"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-path2745"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-path2747"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-path2749"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-path2751"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-path2753"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-path2755"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-path2757"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-path2759"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-path2761"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-path2763"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-path2765"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-path2767"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-path2769"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-path2771"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/4.svg b/src/asset/tile/frontier/basic/4.svg
index b8f6cf8..d6c58c6 100644
--- a/src/asset/tile/frontier/basic/4.svg
+++ b/src/asset/tile/frontier/basic/4.svg
@@ -1,113 +1,530 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomandrightbordersandcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask4786" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g4856" transform="matrix(-1,0,0,-1,128,128.005)">
- <ns0:g id="rtid-g4820" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z" id="rtid-path4788" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z" id="rtid-path4790" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z" id="rtid-path4792" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z" id="rtid-path4794" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z" id="rtid-path4796" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z" id="rtid-path4798" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z" id="rtid-path4800" style="fill:#ffffff;stroke-width:0.5215" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z" id="rtid-path4802" style="fill:#ffffff;stroke-width:0.5214" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z" id="rtid-path4804" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z" id="rtid-path4806" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccsssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z" id="rtid-path4808" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z" id="rtid-path4810" style="fill:#ffffff;stroke-width:0.5232" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z" id="rtid-path4812" style="fill:#ffffff;stroke-width:0.5231" ns2:nodetypes="cccsssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z" id="rtid-path4814" style="fill:#ffffff;stroke-width:0.5212" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z" id="rtid-path4816" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z" id="rtid-path4818" style="fill:#ffffff;stroke-width:0.5213" ns2:nodetypes="cccssssssssssssssccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g4854" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path4822" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path4824" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path4826" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path4828" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path4830" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path4832" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path4834" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path4836" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path4838" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path4840" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path4842" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path4844" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path4846" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path4848" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path4850" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path4852" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="30.24696" ns1:cy="224.077" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="22.079992">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="4.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask4786"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g4856"
+ transform="matrix(-1,0,0,-1,128,128.005)">
+ <g
+ id="rtid-g4820"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z"
+ id="rtid-path4788"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z"
+ id="rtid-path4790"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z"
+ id="rtid-path4792"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z"
+ id="rtid-path4794"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z"
+ id="rtid-path4796"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z"
+ id="rtid-path4798"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z"
+ id="rtid-path4800"
+ style="fill:#ffffff;stroke-width:0.5215"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z"
+ id="rtid-path4802"
+ style="fill:#ffffff;stroke-width:0.5214"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z"
+ id="rtid-path4804"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z"
+ id="rtid-path4806"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccsssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z"
+ id="rtid-path4808"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z"
+ id="rtid-path4810"
+ style="fill:#ffffff;stroke-width:0.5232"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z"
+ id="rtid-path4812"
+ style="fill:#ffffff;stroke-width:0.5231"
+ sodipodi:nodetypes="cccsssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z"
+ id="rtid-path4814"
+ style="fill:#ffffff;stroke-width:0.5212"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z"
+ id="rtid-path4816"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z"
+ id="rtid-path4818"
+ style="fill:#ffffff;stroke-width:0.5213"
+ sodipodi:nodetypes="cccssssssssssssssccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g4854"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path4822"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path4824"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path4826"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path4828"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path4830"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path4832"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path4834"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path4836"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path4838"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path4840"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path4842"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path4844"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path4846"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path4848"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path4850"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path4852"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="22.298588"
+ inkscape:cy="224.077"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="22.079992">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask4786)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g4258" transform="rotate(-180,64,64)">
- <ns0:g id="rtid-g1931" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="m 7.75,96 c -0.00587,0.0179 -0.0794,0.2775 -0.08594,0.2969 -0.06287,0.1867 -0.15724,0.4398 -0.27148,0.748 -0.22848,0.6164 -0.5424,1.4486 -0.87696,2.4121 -0.6691,1.927 -1.42334,4.379 -1.75585,6.707 v 0.002 c -0.4895,3.547 -0.50594,10.988 -0.43555,12.248 0.04495,0.797 0.53639,1.591 1.25781,2.357 0.72142,0.767 1.6859,1.508 2.73633,2.167 2.10084,1.316 4.52494,2.305 6.09574,2.412 h 0.0078 0.0078 c 0.8428,0 1.9229,-0.63 3.3125,-1.379 1.3891,-0.75 3.0513,-1.642 4.873,-2.233 3.8849,-1.238 8.5466,-1.473 9.3848,-1.488 v -0.5 c -0.6737,0 -5.4086,0.197 -9.5352,1.512 h -0.0019 c -1.8776,0.609 -3.5686,1.517 -4.959,2.267 -1.3879,0.749 -2.5101,1.317 -3.0684,1.319 -1.3907,-0.098 -3.8082,-1.054 -5.85152,-2.334 -1.02381,-0.642 -1.95783,-1.365 -2.63671,-2.086 -0.67889,-0.721 -1.08901,-1.438 -1.12305,-2.041 -0.06365,-1.14 -0.04486,-8.7 0.43164,-12.153 0.32446,-2.271 1.06828,-4.7 1.73242,-6.6129 0.33207,-0.9564 0.64375,-1.7838 0.87305,-2.4023 0.11465,-0.3093 0.20882,-0.566 0.27539,-0.7637 C 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z" id="rtid-path1429-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c 0.0089,0.1209 0.0315,0.4553 0.0449,0.6895 0.0208,0.3642 0.0397,0.8497 0.0352,1.3984 -0.009,1.0974 -0.1159,2.4471 -0.4844,3.5551 -0.277,0.832 -0.8162,1.42 -1.3555,2.074 -0.5392,0.653 -1.0752,1.379 -1.2285,2.447 -0.124,0.865 0.4155,1.821 0.9258,2.846 0.5103,1.024 1.0125,2.103 0.9824,3.058 -0.0931,2.95 -0.2835,4.626 -0.2383,5.397 0.0402,0.689 -0.003,1.719 0.2188,2.754 0.2218,1.034 0.7276,2.092 1.8555,2.789 1.0846,0.67 2.3097,0.781 3.4277,0.746 1.118,-0.036 2.1488,-0.212 2.8184,-0.166 0.4636,0.031 1.2531,0.344 2.2265,0.562 0.9735,0.219 2.1547,0.334 3.4668,-0.062 0.2381,-0.072 0.6346,-0.269 1.1777,-0.543 0.5432,-0.274 1.2055,-0.621 1.8711,-0.969 0.6656,-0.348 1.3341,-0.698 1.8848,-0.976 0.5508,-0.278 1.0031,-0.488 1.1602,-0.539 2.0231,-0.657 3.2292,-0.856 3.9961,-0.895 0.636,-0.032 1.1544,0.056 1.4648,0.084 v -0.5 c -0.249,0 -0.6636,-0.126 -1.4902,-0.084 -0.8266,0.042 -2.0748,0.253 -4.125,0.918 -0.2505,0.081 -0.6745,0.288 -1.2305,0.568 -0.556,0.281 -1.225,0.633 -1.8906,0.981 -0.6657,0.348 -1.3293,0.693 -1.8672,0.965 -0.5379,0.271 -0.9777,0.476 -1.0957,0.511 -1.2077,0.365 -2.2846,0.261 -3.211,0.053 -0.9263,-0.208 -1.6793,-0.532 -2.3046,-0.574 -0.7836,-0.053 -1.7942,0.132 -2.8672,0.166 -1.0731,0.034 -2.1885,-0.077 -3.1504,-0.672 -0.9944,-0.615 -1.4244,-1.515 -1.6289,-2.469 -0.2045,-0.953 -0.1642,-1.942 -0.2071,-2.677 -0.0373,-0.636 0.1447,-2.388 0.2383,-5.352 0.0358,-1.135 -0.5223,-2.267 -1.0351,-3.297 -0.5129,-1.029 -0.9607,-1.967 -0.877,-2.551 0.1349,-0.939 0.5899,-1.562 1.1172,-2.201 0.5273,-0.639 1.1294,-1.285 1.4453,-2.234 0.3972,-1.195 0.5006,-2.5836 0.5098,-3.7092 C 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z" id="rtid-path1429-3-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,119.75 c -0.1304,0 -0.5351,-0.025 -1.0996,-0.043 -0.5645,-0.018 -1.302,-0.03 -2.1484,0 -1.693,0.061 -3.8238,0.285 -5.9004,0.945 h -0.002 c -3.6497,1.184 -4.7776,0.294 -6.8574,0.266 -0.5416,-0.007 -1.2305,0.196 -2.0371,0.434 -0.8067,0.237 -1.7191,0.517 -2.6367,0.685 -0.9177,0.168 -1.837,0.223 -2.6524,0.033 -0.8154,-0.19 -1.5294,-0.612 -2.0879,-1.445 -0.6269,-0.935 -0.6556,-2.243 -0.4902,-3.582 0.1654,-1.339 0.5189,-2.685 0.5723,-3.715 0.0328,-0.631 -0.0207,-1.793 -0.0176,-3.25 0.003,-1.457 0.0602,-3.196 0.3086,-4.928 0.3283,-2.288 0.3163,-2.713 0.9746,-4.619 0.3416,-0.9886 0.4135,-1.5254 0.3984,-2.1033 C 72.3091,97.8498 72.219,97.2389 72.25,96 h -0.5 c -0.0072,1.0234 0.0617,1.9639 0.0742,2.4414 0.0139,0.5333 -0.0401,0.9676 -0.3711,1.9256 -0.6667,1.93 -0.6692,2.435 -0.9961,4.713 -0.2535,1.767 -0.3113,3.527 -0.3144,4.996 -0.0031,1.469 0.0472,2.658 0.0176,3.227 -0.0485,0.935 -0.3976,2.296 -0.5684,3.679 -0.1708,1.384 -0.1701,2.816 0.5703,3.92 0.6263,0.934 1.4723,1.443 2.3887,1.657 0.9163,0.213 1.9017,0.144 2.8574,-0.032 0.9557,-0.175 1.8845,-0.458 2.6875,-0.695 0.803,-0.237 1.4918,-0.419 1.8906,-0.414 1.934,0.026 3.2675,0.925 7.0176,-0.291 l -0.0019,0.002 c 2.0133,-0.64 4.1038,-0.862 5.7675,-0.922 0.8319,-0.03 1.5565,-0.018 2.1133,0 0.4322,0.014 0.9081,0.036 1.1172,0.043 z" id="rtid-path1429-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccscsccccscccccscccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,119.75 c -2.032,0.034 -2.99,-0.085 -3.885,-0.125 -0.894,-0.04 -1.718,0.006 -3.396,0.369 -0.152,0.033 -0.481,0.04 -0.871,0.02 -0.391,-0.021 -0.851,-0.063 -1.313,-0.102 -0.462,-0.039 -0.927,-0.077 -1.334,-0.088 -0.406,-0.011 -0.746,-0.002 -1.013,0.082 -0.88,0.279 -1.573,0.216 -2.168,-0.025 -0.596,-0.242 -1.097,-0.674 -1.54,-1.156 -0.442,-0.482 -0.823,-1.011 -1.193,-1.434 -0.37,-0.423 -0.741,-0.779 -1.226,-0.779 -1.489,-0.1 -3.036,0.177 -4.178,0.133 -0.573,-0.023 -1.03,-0.127 -1.332,-0.352 -0.302,-0.225 -0.493,-0.574 -0.516,-1.225 v -0.006 -0.005 c -0.056,-0.678 -0.431,-1.705 -0.721,-3.034 -0.289,-1.328 -0.495,-2.929 -0.236,-4.634 0.146,-0.962 0.46,-1.673 0.776,-2.418 0.315,-0.746 0.628,-1.526 0.73,-2.575 0.131,-1.344 0.047,-2.12 -0.07,-2.9585 C 104.397,98.5986 104.25,97.6918 104.25,96 h -0.5 c 0.019,1.4996 0.16,2.7336 0.268,3.5059 0.115,0.8311 0.197,1.5361 0.07,2.8421 -0.095,0.974 -0.383,1.687 -0.695,2.427 -0.313,0.741 -0.654,1.509 -0.811,2.539 -0.272,1.791 -0.052,3.454 0.244,4.815 0.297,1.361 0.668,2.449 0.711,2.971 v -0.012 c 0.027,0.749 0.284,1.286 0.715,1.607 0.431,0.322 0.991,0.426 1.611,0.45 1.241,0.047 2.774,-0.23 4.18,-0.133 h 0.01 0.008 c 0.214,0 0.504,0.214 0.849,0.609 0.345,0.395 0.734,0.931 1.203,1.441 0.469,0.511 1.023,0.999 1.719,1.282 0.696,0.282 1.531,0.348 2.506,0.039 0.14,-0.044 0.463,-0.069 0.85,-0.059 0.386,0.011 0.844,0.047 1.304,0.086 0.46,0.039 0.923,0.081 1.328,0.102 0.405,0.021 0.744,0.027 1.004,-0.03 1.654,-0.358 2.403,-0.395 3.268,-0.357 0.809,0.036 2.112,0.139 3.908,0.125 z" id="rtid-path1429-3-6-7-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c 0.002,0.7276 0.023,5.8956 -0.648,10.3066 v 0.002 c -0.256,1.793 -0.027,3.1727 0.277,4.2422 0.303,1.066 0.664,1.8347 0.709,2.3496 0.02,0.5969 -0.337,1.2518 -0.912,1.9297 -0.576,0.6792 -1.353,1.3705 -2.086,2.0527 -0.734,0.6822 -1.4243,1.3525 -1.838,2.0371 -0.2069,0.3423 -0.3472,0.6931 -0.3672,1.0547 -0.0201,0.3616 0.0895,0.7282 0.3398,1.0586 0.006,0.0079 0.072,0.1314 0.1406,0.2988 0.0687,0.1674 0.1525,0.3892 0.2539,0.6446 0.2029,0.5106 0.4739,1.1595 0.8339,1.8242 0.72,1.3293 1.805,2.7405 3.459,3.1797 1.606,0.4262 3.696,-0.0673 5.443,-0.7051 0.874,-0.3189 1.661,-0.6768 2.252,-0.9902 0.296,-0.1568 0.543,-0.3019 0.731,-0.4278 0.188,-0.1259 0.307,-0.1971 0.402,-0.3574 0.099,-0.1671 0.126,-0.3547 0.141,-0.5762 0.015,-0.2215 0.009,-0.4762 -0.004,-0.7578 -0.027,-0.5631 -0.088,-1.229 -0.107,-1.8808 -0.02,-0.6519 0.006,-1.2899 0.134,-1.7715 0.129,-0.4817 0.333,-0.7786 0.686,-0.8907 0.16,-0.0505 0.572,0.0163 1.064,0.2168 0.493,0.2006 1.071,0.5074 1.645,0.8204 0.574,0.3129 1.142,0.6338 1.633,0.8671 0.245,0.1167 0.471,0.2115 0.675,0.2735 0.204,0.062 0.385,0.0994 0.575,0.0547 2.151,-0.5079 6.23,-0.5709 8.818,-0.6055 v -0.5 c -2.583,0.0344 -6.596,0.0678 -8.932,0.6191 -0.029,0.0069 -0.152,0.0031 -0.316,-0.0468 -0.164,-0.05 -0.373,-0.1374 -0.606,-0.2481 -0.465,-0.2214 -1.03,-0.5385 -1.607,-0.8535 -0.577,-0.315 -1.166,-0.6281 -1.695,-0.8437 -0.53,-0.2157 -0.995,-0.3602 -1.405,-0.2305 -0.553,0.1754 -0.865,0.6692 -1.017,1.2383 -0.152,0.5691 -0.172,1.2413 -0.152,1.914 0.019,0.6727 0.081,1.3451 0.107,1.8907 0.013,0.2727 0.018,0.514 0.006,0.7011 -0.013,0.1871 -0.052,0.321 -0.072,0.3555 0.021,-0.0365 -0.085,0.0835 -0.252,0.1953 -0.167,0.1118 -0.401,0.2516 -0.686,0.4024 -0.569,0.3014 -1.338,0.6523 -2.189,0.9628 -1.702,0.6212 -3.741,1.0637 -5.143,0.6914 -1.448,-0.3842 -2.459,-1.6617 -3.148,-2.9355 -0.345,-0.6369 -0.609,-1.2675 -0.809,-1.7715 -0.1001,-0.252 -0.1834,-0.4718 -0.2559,-0.6484 -0.0724,-0.1767 -0.1202,-0.3002 -0.2051,-0.4121 -0.1885,-0.2489 -0.2521,-0.4784 -0.2382,-0.7285 0.0138,-0.2502 0.1154,-0.5273 0.2949,-0.8243 0.3593,-0.594 1.0243,-1.251 1.7523,-1.9277 0.727,-0.6767 1.514,-1.3756 2.125,-2.0957 0.61,-0.7201 1.06,-1.4733 1.031,-2.2754 V 80.873 80.8672 c -0.057,-0.685 -0.437,-1.4281 -0.729,-2.4531 -0.291,-1.0246 -0.507,-2.3174 -0.263,-4.0332 v -0.002 C 104.3,69.7492 104.25,64.3795 104.25,64 Z" id="rtid-path1429-3-6-7-5-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c 0.0091,1.5714 0.0802,3.0066 0.0508,3.8496 -0.0315,0.9016 -0.1655,1.4906 -0.5938,2.1231 -0.0813,0.12 -0.1758,0.1465 -0.4023,0.125 -0.2265,-0.0216 -0.5386,-0.1187 -0.8731,-0.2325 -0.3344,-0.1137 -0.6932,-0.242 -1.0527,-0.3066 -0.3595,-0.0646 -0.7329,-0.0682 -1.0625,0.1094 -0.7224,0.3889 -1.0902,1.3135 -1.3437,2.25 -0.2536,0.9365 -0.3718,1.9133 -0.4512,2.4355 -0.5429,3.5676 -0.1219,10.334 -0.0195,11.5664 0.0143,0.4008 0.1568,0.7426 0.3984,0.9942 0.2416,0.2515 0.5685,0.4126 0.9434,0.5156 0.7497,0.206 1.7106,0.1921 2.7539,0.1035 2.0864,-0.1771 4.5154,-0.6677 5.8886,-0.5684 h 0.0078 0.0098 c 0.5933,0 1.6161,0.4351 2.9297,0.7422 1.3136,0.3071 2.9464,0.4678 4.8516,-0.1347 0.7431,-0.2351 1.6039,-0.0972 2.4882,0.0937 0.8844,0.191 1.7831,0.4364 2.627,0.3125 1.13,-0.1658 1.9125,-0.1031 2.9199,0.0039 0.9472,0.1006 2.4274,0.2512 4.1797,0.2676 v -0.5 c -1.923,0 -3.1125,-0.1579 -4.127,-0.2656 -1.0144,-0.1077 -1.8632,-0.1754 -3.0449,-0.002 -0.6935,0.1018 -1.5511,-0.1108 -2.4492,-0.3047 -0.8981,-0.1939 -1.8455,-0.3682 -2.7441,-0.0839 -1.8035,0.5703 -3.3254,0.422 -4.5879,0.1269 -1.26,-0.2946 -2.2315,-0.7521 -3.0371,-0.7539 -1.5273,-0.1078 -3.9177,0.3956 -5.9532,0.5684 -1.0197,0.0865 -1.9451,0.0866 -2.58,-0.0879 C 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 c -0.0983,-1.1791 -0.5076,-8.0227 0.0156,-11.4609 0.082,-0.5395 0.1986,-1.4914 0.4395,-2.3809 0.2408,-0.8894 0.626,-1.6874 1.0976,-1.9414 0.1846,-0.0994 0.4341,-0.1109 0.7364,-0.0566 0.3022,0.0543 0.6451,0.1723 0.9824,0.2871 0.3373,0.1147 0.6668,0.2276 0.9844,0.2578 0.3175,0.0302 0.6678,-0.0505 0.8652,-0.3418 0.485,-0.7161 0.6447,-1.4407 0.6777,-2.3867 C 72.3318,66.9211 72.25,65.7359 72.25,64 Z" id="rtid-path1429-3-6-7-5-3-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c -0.0041,0.9064 -0.0406,2.456 -0.1562,3.8125 -0.1239,1.4517 -0.3471,2.9029 -0.6954,3.7305 -0.2745,0.6512 -1.1623,1.8818 -1.8222,3.1386 -0.3302,0.6288 -0.6057,1.269 -0.7207,1.8848 -0.1151,0.6158 -0.0627,1.2254 0.3007,1.7129 1.8782,2.519 2.099,4.6977 2.2754,6.1465 0.0882,0.7244 0.1304,1.2888 0.4961,1.6465 0.1829,0.1788 0.4495,0.2624 0.7461,0.248 0.2967,-0.0144 0.6388,-0.1102 1.0723,-0.2832 0.3027,-0.1208 0.5185,-0.1488 0.6601,-0.1289 0.1417,0.0199 0.2229,0.0743 0.3067,0.1816 0.1676,0.2147 0.2739,0.6831 0.375,1.2168 0.1011,0.5338 0.2085,1.1316 0.5059,1.6368 0.2973,0.5051 0.8174,0.9003 1.6113,0.955 h 0.0097 0.0079 c 1.5002,0 3.8757,-0.8548 7.58,-2.0293 0.4296,-0.1362 1.3992,0.0301 2.3633,0.25 0.9642,0.2199 1.9177,0.4843 2.5957,0.3575 1.4727,-0.2759 2.3173,-0.3205 3.2188,-0.3028 0.8364,0.0164 2.0711,0.0852 3.5195,0.0762 v -0.5 c -1.6384,0.0238 -2.5854,-0.058 -3.5098,-0.0762 -0.9243,-0.0181 -1.8225,0.03 -3.3203,0.3106 -0.4404,0.0824 -1.4225,-0.1304 -2.3926,-0.3516 -0.97,-0.2212 -1.9332,-0.4596 -2.625,-0.2402 -3.7043,1.1745 -6.1187,2.001 -7.4199,2.0039 -0.648,-0.0477 -0.9743,-0.3117 -1.207,-0.707 -0.2342,-0.3978 -0.3463,-0.9436 -0.4473,-1.4766 -0.1009,-0.533 -0.1785,-1.0529 -0.4726,-1.4297 -0.1471,-0.1884 -0.3663,-0.3319 -0.6309,-0.3691 -0.2645,-0.0372 -0.5615,0.0175 -0.9141,0.1582 -0.4063,0.1621 -0.7088,0.2381 -0.9121,0.248 -0.2032,0.0099 -0.2927,-0.0288 -0.3711,-0.1055 -0.1567,-0.1533 -0.26,-0.6297 -0.3476,-1.3496 -0.1753,-1.4398 -0.4227,-3.769 -2.3731,-6.3847 -0.2593,-0.3479 -0.3106,-0.787 -0.2109,-1.3203 0.0997,-0.5334 0.3558,-1.1405 0.6738,-1.7461 0.636,-1.2112 1.5089,-2.3916 1.8399,-3.1778 0.3973,-0.944 0.6088,-2.4081 0.7344,-3.8808 C 40.2193,66.3827 40.25,64.9102 40.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-93" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,64 c -0.04455,2.0095 -0.50495,3.1644 -1.06641,4.0684 -0.59076,0.9511 -1.3019,1.981 -1.63476,4.3222 -0.07485,0.5267 0.05132,1.266 0.11523,2.125 0.06392,0.859 0.07194,1.8168 -0.18359,2.6719 -0.34551,1.1561 -0.98076,2.2856 -1.54102,3.3262 -0.56026,1.0405 -1.05846,1.9842 -1.0664,2.8574 -0.00812,0.8929 -0.34393,2.0452 -0.6836,3.0254 -0.16983,0.4901 -0.33901,0.9388 -0.46679,1.3008 -0.06389,0.1809 -0.11776,0.3407 -0.15625,0.4765 -0.03849,0.1359 -0.066886,0.2378 -0.0625,0.3614 0.04964,1.4001 1.46483,3.1567 4.05468,4.6152 1.74164,0.9807 4.63358,1.2487 7.31641,1.3164 1.3414,0.0338 2.6274,0.012 3.6797,-0.0098 1.0523,-0.0218 1.8815,-0.0428 2.2578,-0.0156 0.4216,0.0305 0.7577,-0.1608 1,-0.4297 0.2423,-0.2689 0.4327,-0.6083 0.6895,-0.9746 0.5134,-0.7325 1.267,-1.5879 3.0703,-2.1582 0.7753,-0.2452 1.2151,-0.9249 1.6211,-1.5117 0.4059,-0.5868 0.7667,-1.068 1.3007,-1.1582 C 28.5462,87.7778 29.872,88.1744 32,88.25 v -0.5 c -2.2695,-0.0472 -3.35,-0.4977 -6.0879,-0.0352 -0.7758,0.1311 -1.222,0.7762 -1.6309,1.3672 -0.4088,0.5911 -0.7925,1.1411 -1.3593,1.3203 -1.9053,0.6026 -2.7864,1.5721 -3.3301,2.3477 -0.2718,0.3878 -0.4663,0.7234 -0.6504,0.9277 -0.1841,0.2044 -0.3172,0.2857 -0.5937,0.2657 -0.4427,-0.0321 -1.2523,-0.0081 -2.3028,0.0136 -1.0504,0.0218 -2.33,0.0433 -3.6582,0.0098 C 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 c -1e-5,-3e-4 0.00983,-0.092 0.04297,-0.209 0.03313,-0.117 0.08414,-0.2687 0.14648,-0.4453 C 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-6-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,55.75 c -1.2294,0 -2.0383,0.1059 -2.6211,0.3027 -0.5828,0.1969 -0.936,0.4856 -1.2051,0.7754 -0.538,0.5797 -0.7334,1.1122 -2.2988,1.4375 -0.1225,0.0255 -0.3311,-0.0318 -0.5859,-0.1855 -0.2549,-0.1538 -0.5432,-0.3874 -0.8379,-0.6231 -0.2947,-0.2356 -0.5961,-0.474 -0.8985,-0.6445 -0.3024,-0.1705 -0.6278,-0.2879 -0.955,-0.1836 -0.8753,0.279 -1.2921,1.0415 -1.6368,1.7617 -0.3446,0.7203 -0.6429,1.4116 -1.1836,1.7481 -0.835,0.5196 -2.0538,0.8639 -3.1093,0.9902 -0.5278,0.0632 -1.0151,0.0718 -1.3868,0.0293 C 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 h -0.5 c -0.01831,1.7885 0.15046,3.2142 0.23633,4.1387 0.09152,0.9853 0.08839,1.806 -0.35352,3.2773 -0.17622,0.5868 -0.74629,0.8555 -1.39062,1.168 -0.32217,0.1562 -0.65494,0.3186 -0.9336,0.5566 -0.27866,0.2381 -0.49995,0.5665 -0.55859,0.9961 -0.14313,1.0488 0.13219,2.3446 0.42188,3.7188 0.28968,1.3742 0.60026,2.8218 0.57812,4.1054 -0.01731,1.0036 -0.36797,1.9455 -0.71875,2.7071 -0.17539,0.3808 -0.34908,0.7143 -0.48242,0.9961 -0.13334,0.2817 -0.24291,0.4882 -0.22852,0.7402 0.02151,0.3765 0.09621,0.6678 0.25196,0.8926 0.15574,0.2248 0.38663,0.3594 0.63671,0.4375 0.50018,0.1561 1.11445,0.1491 1.91602,0.3086 1.60315,0.3189 3.9558,1.2492 7.1094,5.2129 0.2124,0.267 0.5629,0.3515 0.9902,0.4003 0.4273,0.0489 0.9443,0.0355 1.502,-0.0312 1.1152,-0.1334 2.3831,-0.4817 3.3164,-1.0625 0.721,-0.4487 1.0331,-1.2549 1.3691,-1.957 0.336,-0.7021 0.6699,-1.2871 1.3379,-1.5 0.1189,-0.0379 0.3094,0.002 0.5586,0.1425 0.2492,0.1406 0.5368,0.3651 0.8301,0.5997 0.2933,0.2345 0.5921,0.4789 0.8925,0.6601 0.3005,0.1813 0.6143,0.3169 0.9454,0.2481 1.6748,-0.3481 2.0888,-1.0755 2.5644,-1.5879 0.2378,-0.2562 0.4931,-0.472 0.9981,-0.6426 C 29.9927,56.3721 31.0025,56.2706 32,56.25 Z" id="rtid-path1429-2-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.0814,3.1631 -0.7923,5.2367 -1.6016,6.8906 -0.2394,0.4893 -0.8275,1.7184 -1.3867,3.0371 -0.5592,1.3188 -1.0905,2.7074 -1.2187,3.5957 -0.267,1.8487 0.5366,3.6171 1.4629,5.045 0.4631,0.7139 0.9603,1.3462 1.3789,1.8613 0.4186,0.5151 0.7637,0.9246 0.8984,1.1426 0.8016,1.2965 0.8652,2.8447 1.0879,4.1484 0.1113,0.6518 0.2614,1.2487 0.6094,1.7168 0.348,0.4681 0.903,0.7746 1.6953,0.8281 h 0.0078 0.0078 c 0.3917,0 1.073,-0.0847 1.9648,-0.2285 0.8919,-0.1438 1.9831,-0.3485 3.1465,-0.5898 2.3264,-0.4825 4.9363,-1.1135 6.8028,-1.7188 3.96,-1.2617 5.5671,-1.409 9.3945,-1.4785 v -0.5 c -4.0916,0.0678 -5.455,0.1989 -9.5449,1.502 h -0.002 c -1.8333,0.5946 -4.4372,1.225 -6.7519,1.705 -1.1574,0.2401 -2.2431,0.4438 -3.125,0.586 -0.8755,0.1411 -1.5546,0.2195 -1.8711,0.2207 -0.6838,-0.0474 -1.06,-0.2696 -1.3242,-0.625 -0.265,-0.3565 -0.4108,-0.8787 -0.5176,-1.5039 -0.2136,-1.2505 -0.2687,-2.8906 -1.1563,-4.3262 -0.1815,-0.2937 -0.5209,-0.6852 -0.9355,-1.1953 -0.4146,-0.5102 -0.8983,-1.1266 -1.3457,-1.8164 -0.8949,-1.3797 -1.6286,-3.0396 -1.3887,-4.7012 0.1099,-0.7609 0.6319,-2.1669 1.1856,-3.4727 0.5537,-1.3057 1.139,-2.5316 1.375,-3.0136 C 39.4461,37.3754 40.2065,35.4289 40.25,32 Z" id="rtid-path1429-3-9-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccsccscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c -0.0032,2.801 -0.0472,2.5586 -0.6758,6.9707 -0.0738,0.5178 -0.5011,1.122 -0.9785,1.877 -0.4774,0.7549 -0.9906,1.671 -1.1562,2.8671 -0.2572,1.8565 -0.8222,2.6696 -1.3516,3.2872 -0.2647,0.3087 -0.5286,0.5682 -0.7422,0.8867 -0.2136,0.3185 -0.3654,0.6998 -0.3848,1.1972 -0.0204,0.5226 -0.1327,1.55 -0.1894,2.5528 -0.0284,0.5014 -0.043,0.9993 -0.0235,1.4355 0.0196,0.4362 0.0633,0.8064 0.1954,1.0918 0.2074,0.4483 0.2151,1.5997 0.123,2.7324 -0.0921,1.1328 -0.2531,2.2556 -0.2598,2.8575 -0.0109,0.9677 0.4244,1.628 1.0957,1.9687 0.6713,0.3407 1.5431,0.4053 2.4922,0.3711 1.8984,-0.0684 4.144,-0.5541 5.5469,-0.459 0.4439,0.0301 1.0705,-0.1419 1.8926,-0.4121 0.8221,-0.2702 1.815,-0.6496 2.8789,-1.0684 2.1264,-0.8369 4.5333,-1.8329 6.3516,-2.4277 l 0.0039,-0.0019 C 90.5648,56.4658 92.2928,56.2606 96,56.25 v -0.5 c -3.9621,0 -5.4573,0.1992 -9.5859,1.502 h -0.002 c -1.8515,0.6054 -4.2614,1.6044 -6.3828,2.4394 -1.0607,0.4175 -2.0477,0.7944 -2.8516,1.0586 -0.8038,0.2642 -1.4486,0.4059 -1.7031,0.3887 -1.5472,-0.105 -3.7727,0.3913 -5.5976,0.457 -0.9125,0.0329 -1.7151,-0.0479 -2.2481,-0.3184 -0.533,-0.2704 -0.8316,-0.6861 -0.8223,-1.5156 0.0058,-0.5136 0.1661,-1.67 0.2598,-2.8222 0.0937,-1.1523 0.1519,-2.2932 -0.168,-2.9844 -0.0741,-0.1603 -0.134,-0.4964 -0.1523,-0.9043 -0.0183,-0.408 -0.0044,-0.8907 0.0234,-1.3828 0.0557,-0.9843 0.1693,-1.9952 0.1914,-2.5625 0.016,-0.4109 0.1255,-0.676 0.3008,-0.9375 0.1754,-0.2615 0.4271,-0.5152 0.7071,-0.8418 0.5599,-0.6532 1.1982,-1.6047 1.4667,-3.543 0.1512,-1.092 0.6179,-1.9328 1.084,-2.6699 0.4662,-0.7372 0.9476,-1.3614 1.0489,-2.0723 C 72.2188,34.4749 72.25,35.1813 72.25,32 Z" id="rtid-path1429-3-6-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.01,1.3903 -0.281,2.2117 -0.703,2.707 -0.454,0.5321 -1.137,1.0722 -1.752,2.502 -0.863,2.0036 -1.6884,4.2596 -1.9669,6.2129 -0.0653,0.4591 0.13,0.874 0.4102,1.2402 0.2797,0.3662 0.6537,0.7069 1.0217,1.0606 0.735,0.7073 1.418,1.4408 1.39,2.3847 -0.041,1.4105 -0.495,2.7804 -0.937,3.8867 -0.221,0.5532 -0.438,1.0397 -0.6,1.4395 -0.162,0.3998 -0.286,0.6846 -0.261,0.9766 0.066,0.7929 0.57,1.5954 1.302,2.3769 0.732,0.7816 1.703,1.542 2.758,2.2149 2.11,1.3456 4.522,2.3476 6.088,2.3476 0.112,0 0.238,-0.0782 0.291,-0.1621 0.053,-0.0839 0.066,-0.162 0.074,-0.2402 0.017,-0.1565 0.001,-0.3311 -0.027,-0.543 -0.057,-0.4238 -0.172,-0.9818 -0.279,-1.5879 -0.215,-1.2122 -0.357,-2.6219 -0.026,-3.2949 0.576,-1.1684 1.765,-1.8992 3.121,-2.4238 1.356,-0.5247 2.856,-0.8346 4.006,-1.1993 0.396,-0.1256 0.609,-0.0525 0.819,0.1387 0.209,0.1912 0.393,0.5411 0.552,0.9512 0.16,0.4101 0.299,0.8737 0.469,1.2929 0.17,0.4193 0.366,0.8047 0.703,1.0372 0.281,0.1939 0.726,0.3476 1.307,0.498 0.58,0.1504 1.288,0.2854 2.045,0.3867 1.414,0.1893 3.205,0.2343 4.445,0.0469 v -0.5 c -1.174,0.2223 -2.9,0.1551 -4.379,-0.043 -0.739,-0.099 -1.431,-0.2311 -1.986,-0.375 -0.556,-0.1438 -0.985,-0.3109 -1.149,-0.4238 -0.185,-0.1281 -0.366,-0.4274 -0.523,-0.8144 -0.157,-0.3871 -0.297,-0.8511 -0.467,-1.2872 -0.169,-0.436 -0.365,-0.8498 -0.682,-1.1386 -0.317,-0.2889 -0.78,-0.4124 -1.304,-0.2461 -1.107,0.351 -2.628,0.6636 -4.037,1.209 -1.41,0.5453 -2.73,1.3324 -3.389,2.6699 -0.462,0.9376 -0.235,2.3721 -0.018,3.6015 0.109,0.6148 0.224,1.1772 0.276,1.5684 0.021,0.1596 0.023,0.2624 0.021,0.3457 -1.36,-0.0479 -3.679,-0.957 -5.681,-2.2344 -1.028,-0.6556 -1.971,-1.3984 -2.662,-2.1367 -0.692,-0.7383 -1.12,-1.4732 -1.17,-2.0762 -0.005,-0.0547 0.07,-0.362 0.226,-0.748 0.157,-0.386 0.376,-0.8771 0.602,-1.4414 0.451,-1.1286 0.928,-2.5515 0.972,-4.0586 0.035,-1.1881 -0.799,-2.0402 -1.545,-2.7578 -0.372,-0.3588 -0.729,-0.6911 -0.968,-1.0039 -0.2396,-0.3129 -0.3529,-0.5852 -0.3128,-0.8672 0.2668,-1.8693 1.0748,-4.0998 1.9298,-6.084 0.581,-1.3507 1.169,-1.7875 1.672,-2.377 0.502,-0.5894 0.859,-1.3225 0.824,-3.0312 z" id="rtid-path1429-3-6-7-2-8" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,23.75 c -1.652,-0.0497 -2.58,0.5216 -3.203,1.0195 -0.312,0.249 -0.551,0.4693 -0.75,0.5782 -0.199,0.1088 -0.329,0.1354 -0.578,0.0253 -1.422,-0.6283 -2.855,-0.8313 -5.045,-0.121 h -0.002 c -0.209,0.0678 -0.656,-0.0762 -1.127,-0.2657 -0.236,-0.0947 -0.477,-0.1915 -0.719,-0.248 -0.241,-0.0566 -0.495,-0.078 -0.732,0.0312 -1.414,0.652 -2.513,1.7213 -3.395,2.5996 -0.441,0.4392 -0.83,0.8311 -1.162,1.0977 -0.332,0.2666 -0.598,0.3855 -0.769,0.373 -0.267,-0.0193 -0.473,-0.1723 -0.696,-0.4726 -0.222,-0.3003 -0.432,-0.7336 -0.666,-1.2149 -0.467,-0.9625 -1.03,-2.1262 -2.138,-2.8105 -1.134,-0.6998 -2.701,-0.8763 -3.987,-1.0762 -0.642,-0.0999 -1.217,-0.2054 -1.607,-0.3574 -0.195,-0.076 -0.341,-0.1633 -0.432,-0.252 -0.091,-0.0886 -0.133,-0.1699 -0.142,-0.2871 0,0.0087 0.014,-0.0882 0.084,-0.2207 0.069,-0.1324 0.181,-0.3062 0.32,-0.5058 0.277,-0.3993 0.661,-0.908 1.053,-1.4922 0.783,-1.1684 1.605,-2.6388 1.652,-4.2051 0.035,-1.1613 -0.746,-2.2622 -1.461,-3.2598 -0.358,-0.4987 -0.704,-0.9721 -0.941,-1.3945 -0.237,-0.4224 -0.35,-0.7844 -0.309,-1.0527 0.056,-0.36926 0.198,-0.59839 0.397,-0.78127 0.198,-0.18288 0.463,-0.31486 0.755,-0.43555 0.293,-0.12068 0.61,-0.22798 0.901,-0.38671 0.29,-0.15874 0.563,-0.38099 0.713,-0.72071 0.453,-1.0275 0.491,-2.32339 0.435,-3.70508 C 104.393,2.8273 104.235,1.35423 104.25,0 h -0.5 c 0.004,1.32161 0.147,2.95144 0.199,4.22852 0.055,1.35795 0.001,2.59311 -0.392,3.48437 -0.094,0.21123 -0.259,0.35278 -0.496,0.48242 -0.238,0.12965 -0.539,0.23504 -0.85,0.36328 -0.311,0.12825 -0.635,0.28153 -0.906,0.53125 -0.272,0.24973 -0.482,0.60211 -0.553,1.07226 -0.069,0.4539 0.109,0.9088 0.369,1.3731 0.26,0.4642 0.616,0.9459 0.971,1.4414 0.71,0.9909 1.396,2.0367 1.369,2.9531 -0.042,1.3981 -0.804,2.8013 -1.568,3.9414 -0.383,0.5701 -0.763,1.0749 -1.049,1.4883 -0.144,0.2067 -0.264,0.3903 -0.352,0.5566 -0.087,0.1663 -0.156,0.3092 -0.14,0.4942 0.019,0.2365 0.129,0.4467 0.291,0.6035 0.161,0.1567 0.365,0.2683 0.599,0.3593 0.468,0.1822 1.062,0.2858 1.711,0.3868 1.298,0.2019 2.815,0.3993 3.801,1.0078 0.955,0.5896 1.485,1.643 1.951,2.6035 0.233,0.4803 0.45,0.9342 0.717,1.2949 0.267,0.3607 0.612,0.6413 1.06,0.6738 0.394,0.0285 0.75,-0.1857 1.12,-0.4824 0.369,-0.2966 0.76,-0.6977 1.199,-1.1347 0.877,-0.8742 1.938,-1.8922 3.252,-2.4981 0.084,-0.0389 0.221,-0.0438 0.408,0 0.187,0.0439 0.412,0.1305 0.646,0.2246 0.468,0.1883 0.975,0.4402 1.471,0.2793 2.105,-0.6821 3.34,-0.4946 4.69,0.1016 0.37,0.1634 0.729,0.1142 1.017,-0.043 0.288,-0.1572 0.531,-0.3925 0.824,-0.6269 0.548,-0.4374 1.555,-0.8873 2.891,-0.9102 z" id="rtid-path1429-3-6-7-5-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,0 c 0.0141,2.21123 -0.5181,3.78788 -1.1719,5.08594 -0.6822,1.35448 -1.4918,2.7313 -1.8261,5.07816 -0.0689,0.4829 0.1369,0.9762 0.4355,1.4921 0.2986,0.516 0.7066,1.0613 1.1133,1.6211 0.8133,1.1198 1.5987,2.3053 1.5722,3.2696 -0.036,1.3189 -0.8124,2.4014 -1.6425,3.3301 -0.4151,0.4643 -0.8408,0.8863 -1.1836,1.2832 -0.3428,0.3969 -0.6164,0.7663 -0.6836,1.1796 -0.0977,0.5998 -0.3105,2.0169 -0.2871,3.4493 0.0233,1.4323 0.2521,2.9131 1.2168,3.6015 1.2145,0.8668 3.0917,0.7818 4.8691,0.543 0.8887,-0.1194 1.7553,-0.2841 2.4981,-0.4102 0.7427,-0.126 1.3715,-0.2096 1.7324,-0.1836 0.2452,0.0177 0.4744,-0.0759 0.6777,-0.2207 0.2033,-0.1447 0.3914,-0.3426 0.584,-0.5781 0.3852,-0.471 0.7879,-1.0975 1.2598,-1.7558 0.9438,-1.3167 2.1539,-2.7477 3.9257,-3.3028 0.8452,-0.2647 1.3565,-0.8408 1.8145,-1.332 0.458,-0.4912 0.8506,-0.8908 1.4961,-0.9902 0.556,-0.0857 1.0082,0.0394 1.4805,0.2929 0.4722,0.2535 0.9536,0.6415 1.5097,1.0528 1.0641,0.7867 2.7158,1.671 4.8594,1.7441 v -0.5 c -2.1892,0 -3.4725,-0.8405 -4.5625,-1.6465 -0.545,-0.403 -1.0373,-0.8057 -1.5703,-1.0918 -0.5331,-0.2861 -1.1196,-0.4495 -1.793,-0.3457 -0.8179,0.1261 -1.3223,0.6482 -1.7851,1.1445 -0.4629,0.4964 -0.8942,0.973 -1.5977,1.1934 -1.9429,0.6086 -3.2225,2.1495 -4.1836,3.4902 -0.4805,0.6704 -0.8852,1.2963 -1.2402,1.7305 -0.1775,0.2171 -0.3426,0.384 -0.4864,0.4863 -0.1437,0.1024 -0.2546,0.1361 -0.3535,0.1289 -0.4686,-0.0338 -1.1014,0.0622 -1.8515,0.1895 -0.7502,0.1273 -1.6094,0.2912 -2.4805,0.4082 -1.7422,0.234 -3.5205,0.2557 -4.5137,-0.4531 -0.7006,-0.5001 -0.9834,-1.8278 -1.0058,-3.2051 -0.0225,-1.3773 0.1852,-2.7701 0.2812,-3.3594 0.0373,-0.2296 0.245,-0.5572 0.5684,-0.9316 0.3234,-0.3745 0.7483,-0.7992 1.1758,-1.2774 0.8548,-0.9562 1.7302,-2.1441 1.7714,-3.6504 0.0337,-1.228 -0.85,-2.452 -1.6679,-3.5781 -0.409,-0.563 -0.8081,-1.0994 -1.084,-1.5762 C 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z" id="rtid-path1429-3-6-7-5-3-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,0 c -0.3359,0.76718 -0.6117,1.75827 -0.8652,2.49023 -0.2953,0.85257 -0.7736,1.73886 -2.0371,2.8125 -0.0899,0.07641 -0.1225,0.14773 -0.17,0.24219 -0.0474,0.09447 -0.0972,0.20857 -0.1484,0.34375 -0.1025,0.27036 -0.2167,0.62378 -0.3398,1.03711 -0.2463,0.82667 -0.5254,1.89254 -0.7911,2.9707 -0.2656,1.07822 -0.5175,2.16932 -0.707,3.04692 -0.1895,0.8775 -0.316,1.5079 -0.3359,1.7851 -0.1397,1.937 0.3521,3.6412 0.8789,4.9746 0.2634,0.6668 0.5365,1.2422 0.7441,1.7051 0.2076,0.4629 0.341,0.8288 0.3516,0.9883 0.0189,0.2839 -0.0597,0.7845 -0.1719,1.3652 -0.1122,0.5807 -0.2521,1.251 -0.332,1.9258 -0.08,0.6748 -0.1028,1.3556 0.0332,1.9727 0.136,0.617 0.4448,1.1779 1.0078,1.539 1.17,0.7503 3.167,0.7102 5.082,0.5528 0.9575,-0.0788 1.8928,-0.1948 2.6778,-0.2852 0.7849,-0.0904 1.4326,-0.1503 1.7558,-0.127 0.4446,0.0321 1.7984,0.3583 3.3027,0.5254 1.5044,0.1671 3.199,0.1866 4.4942,-0.4511 0.3072,-0.1512 0.4947,-0.4545 0.666,-0.8028 0.1713,-0.3483 0.3191,-0.7578 0.4688,-1.1562 0.1496,-0.3985 0.3018,-0.7857 0.4648,-1.0781 0.163,-0.2925 0.3354,-0.4694 0.4727,-0.5137 2.0531,-0.6641 3.0053,-1.0705 3.9199,-1.3047 C 61.0267,24.3397 62.2522,24.2595 64,24.25 v -0.5 c -2.022,0 -2.984,0.0765 -3.9512,0.3242 -0.9672,0.2477 -1.9119,0.6529 -3.9511,1.3125 -0.3424,0.1107 -0.5666,0.4063 -0.7559,0.7461 -0.1894,0.3398 -0.3452,0.7448 -0.4961,1.1465 -0.1509,0.4017 -0.2965,0.8008 -0.4492,1.1113 -0.1527,0.3105 -0.3217,0.5172 -0.4375,0.5742 -1.132,0.5574 -2.7537,0.5651 -4.2188,0.4024 -1.465,-0.1628 -2.7313,-0.4847 -3.3222,-0.5274 -0.4216,-0.0304 -1.0588,0.0381 -1.8477,0.129 -0.7889,0.0908 -1.7186,0.2075 -2.6621,0.2851 -1.8871,0.1552 -3.842,0.1195 -4.7715,-0.4766 -0.4383,-0.2811 -0.6726,-0.6961 -0.789,-1.2246 -0.1165,-0.5284 -0.1019,-1.1612 -0.0254,-1.8066 0.0764,-0.6455 0.2129,-1.3026 0.3261,-1.8887 0.1132,-0.586 0.2084,-1.0932 0.1817,-1.4941 -0.0219,-0.3283 -0.1854,-0.6894 -0.3965,-1.1602 -0.2112,-0.4707 -0.4783,-1.0352 -0.7344,-1.6836 -0.5122,-1.2967 -0.9758,-2.9217 -0.8437,-4.7539 0.0112,-0.1567 0.1379,-0.8449 0.3261,-1.7168 0.1883,-0.8718 0.4387,-1.9599 0.7032,-3.0332 C 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z" id="rtid-path1429-3-6-7-5-3-5-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,23.75 c -1.3299,0 -2.8706,0.7213 -3.8457,1.7207 -0.3945,0.4044 -0.6149,0.8586 -0.8398,1.2031 -0.225,0.3445 -0.4227,0.5676 -0.8028,0.6485 -0.1454,0.0309 -0.3936,-0.0511 -0.6992,-0.2559 -0.3056,-0.2047 -0.6543,-0.5102 -1.0195,-0.8144 -0.3653,-0.3043 -0.748,-0.6092 -1.1465,-0.8184 -0.3986,-0.2092 -0.8334,-0.3266 -1.2617,-0.1914 -0.7564,0.2386 -1.2942,0.779 -1.7754,1.3066 -0.4813,0.5277 -0.9146,1.0441 -1.4141,1.3125 -1.8557,0.9973 -3.9321,1.0397 -4.7773,0.9785 -0.0087,-6e-4 -0.0233,4e-4 -0.0684,-0.0546 -0.0451,-0.0551 -0.1028,-0.1587 -0.1562,-0.293 -0.107,-0.2686 -0.2055,-0.6574 -0.3145,-1.0645 -0.109,-0.4071 -0.2287,-0.8339 -0.3984,-1.2031 C 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 c 0.02452,-0.1264 0.06508,-0.2136 0.11328,-0.2675 0.0482,-0.054 0.10401,-0.0869 0.21484,-0.1016 -0.00851,0.0011 0.04556,0.0038 0.13672,0.0644 0.09116,0.0607 0.20973,0.1666 0.33984,0.3028 0.26022,0.2723 0.56755,0.6647 0.88086,1.0781 0.31331,0.4134 0.63375,0.848 0.93555,1.2149 0.3018,0.3668 0.56991,0.6661 0.85742,0.8242 0.33213,0.1826 0.70718,0.1503 1.0293,0.0136 0.32211,-0.1366 0.6131,-0.3706 0.87109,-0.6289 0.258,-0.2582 0.48087,-0.5423 0.64649,-0.7949 C 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 c -0.12698,0.1422 -0.19631,0.3178 -0.23242,0.5039 -0.07223,0.3724 -0.02356,0.8037 0.05664,1.25 0.08019,0.4463 0.19809,0.9069 0.29297,1.3086 0.09487,0.4018 0.1615,0.7548 0.15625,0.92 -0.04886,1.536 0.08969,3.3032 0.24805,4.7792 0.15835,1.4761 0.33813,2.6827 0.36523,3.0079 0.04642,0.5571 0.38432,2.0296 0.89648,3.4765 0.25609,0.7235 0.55414,1.4323 0.88868,1.9961 0.33453,0.5638 0.69503,1.0073 1.17578,1.1348 0.1745,0.0463 0.36547,0.0224 0.50781,-0.0684 0.14234,-0.0907 0.23291,-0.2248 0.30273,-0.3711 0.13964,-0.2925 0.20818,-0.6624 0.28516,-1.0644 0.15395,-0.8041 0.33801,-1.7199 0.77734,-2.1465 0.11912,-0.1157 0.33078,-0.1858 0.61719,-0.1973 0.28642,-0.0115 0.63462,0.037 0.98632,0.1172 0.7034,0.1604 1.4158,0.444 1.752,0.582 0.1713,0.0704 0.3411,0.278 0.4863,0.5938 0.1452,0.3158 0.2635,0.721 0.3711,1.123 0.1076,0.4021 0.2041,0.8 0.332,1.1211 0.064,0.1606 0.1357,0.3033 0.2344,0.4239 0.0987,0.1205 0.2438,0.2254 0.4199,0.2382 0.9174,0.0665 3.0632,0.03 5.0488,-1.0371 0.6228,-0.3347 1.0775,-0.9033 1.5469,-1.4179 0.4694,-0.5147 0.9439,-0.9727 1.5567,-1.166 0.2553,-0.0806 0.5432,-0.0181 0.8789,0.1582 0.3357,0.1762 0.6996,0.4606 1.0586,0.7597 0.3589,0.2991 0.7145,0.6107 1.0625,0.8438 0.3479,0.2331 0.7032,0.4101 1.08,0.33 0.5421,-0.1152 0.8678,-0.4813 1.1172,-0.8632 0.2494,-0.3819 0.4521,-0.7915 0.7793,-1.127 C 29.3257,24.986 30.9022,24.3358 32,24.25 Z" id="rtid-path1429-3-6-7-5-3-5-6-3-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="rotate(180,64,63.9999)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.3179448,2.629688 -0.582,3.43 -0.2869452,0.86969 -0.596576,1.66993 -0.652,2.97 -0.025576,0.59993 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.1418312,0.36527 -1.867,0.4 -1.3641026,0.0653 -3.0512,-0.1502 -3.891,-0.1502 v 0.5 c 0.7015,0 2.3841866,0.21695 3.914,0.1502 0.7632739,-0.0333 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.9956043,-0.8001 1.03,-1.6 0.051604,-1.20011 0.330547,-1.90176 0.627,-2.81 C 7.9275579,98.718205 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssssccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.111341,0.789242 -0.19,0.93 -0.111347,0.199253 -0.250835,0.32855 -0.46,0.45 -0.410843,0.238554 -1.076139,0.434611 -1.78,1.02 -0.30619,0.254653 -0.444444,0.599521 -0.48,0.95 -0.03445,0.339578 0.0044,0.6506 0.05,1.05 0.03437,0.3007 0.0718,0.60142 0.03,0.9 -0.02828,0.20199 -0.144384,0.37417 -0.34,0.5 -1.516168,0.97531 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.1498 -1.7,0.1498 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.2498 0.644302,-0.24592 1.454216,-0.722 2.98,-1.8 0.315153,-0.22266 0.492991,-0.50094 0.55,-0.9 0.04301,-0.30108 0.01936,-0.60081 -0.02,-1 -0.03067,-0.311062 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.108796,-0.461441 0.3,-0.62 0.628803,-0.521447 1.208261,-0.672918 1.71,-0.97 0.258286,-0.152932 0.487901,-0.341129 0.65,-0.64 0.157909,-0.291144 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssssssssccsssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.2498 c 0.8,0 1.49,-0.2498 2.04,-0.7498 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.510743,0.39477 0.89,0.4 0.379257,0.005 0.797893,-0.0921 1.2,-0.5 0.288077,-0.29225 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.109947,-0.350068 0.35,-0.54 0.669947,-0.530068 1.062471,-0.787804 1.32,-1.08 0.262489,-0.297824 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.09774,0.641967 -0.22,0.78 -0.187769,0.211997 -0.578636,0.491722 -1.26,1.03 -0.318643,0.251728 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.5498 -1.7,0.6498 z" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="csssszssssssccsssssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.2498 c 0.85,0 1.48214,-0.47902 2.11,-1.0498 0.583615,-0.53056 1.198107,-1.18653 1.87,-1.6 0.62838,-0.3867 1.32,-0.3 2.12,-0.3 0.3,0 0.68695,-0.12111 1,-0.3 0.38829,-0.22188 0.70482,-0.5981 0.9,-1.1 0.50483,-1.298132 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.0812,0.7413 -0.5,2.02 -0.219,0.48181 -0.35746,0.74448 -0.6,0.89 -0.27116,0.1627 -0.5,0.2 -0.9,0.2 -0.6,0 -1.47604,-0.061 -2.27,0.4 -0.75806,0.44016 -1.390125,1.07718 -1.96,1.6 -0.521048,0.47803 -1.24,0.8498 -1.77,0.9498" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssssssccssssssc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,72.25 c 0.3994,0.01 0.67853397,-0.03994 0.9004,-0.16 0.221634,-0.119937 0.3573779,-0.300157 0.4706,-0.46 0.2267781,-0.320157 0.3894808,-0.626129 1.152,-0.92 0.2235241,-0.08614 0.387,-0.18 0.51,-0.3 0.124,-0.12 0.1974041,-0.290008 0.194,-0.45 -0.0066,-0.310009 -0.2023569,-0.518297 -0.368,-0.75 -0.1703739,-0.238321 -0.335719,-0.48035 -0.41,-0.75 -0.071721,-0.260356 -0.068968,-0.55053 0.145,-0.94 0.2310333,-0.420533 0.407,-0.64 0.533,-0.75 0.126,-0.11 0.198,-0.12 0.33,-0.15 0.132,-0.03 0.326,-0.05 0.553,-0.17 0.227,-0.12 0.4771786,-0.331534 0.789,-0.7 0.255187,-0.301544 0.5529236,-0.435083 0.885,-0.5 0.3329961,-0.0651 0.6980353,-0.065 1.052,-0.06 0.3541059,0.005 0.702,0.01 1.008,-0.16 C 8.05,64.86 8.242,64.5 8.25,64 h -0.5 c -0.042,0.12 -0.1614379,0.547111 -0.244,0.59 -0.1485152,0.07715 -0.4228908,0.105009 -0.766,0.1 -0.3419636,-0.005 -0.7429782,-0.01521 -1.154,0.07 -0.4090342,0.0848 -0.8348261,0.269307 -1.17,0.67 -0.2838277,0.339309 -0.486,0.49 -0.639,0.57 -0.153,0.08 -0.2620175,0.09991 -0.42,0.13 -0.1570175,0.02991 -0.3584979,0.09278 -0.558,0.27 -0.1945375,0.172813 -0.3983177,0.438146 -0.643,0.88 -0.2703309,0.48817 -0.2882642,0.939521 -0.187,1.31 0.103738,0.379529 0.311617,0.671706 0.484,0.91 0.1676344,0.23173 0.2727494,0.419976 0.274,0.47 7.498e-4,0.02999 0.00626,0.03025 -0.041,0.08 -0.047738,0.05025 -0.1588766,0.117714 -0.344,0.19 -0.8648936,0.33772 -1.1716383,0.808826 -1.3791,1.1 -0.10604807,0.148839 -0.17772513,0.241876 -0.2988,0.31 -0.0744636,0.0419 -0.5115,0.08 -0.6641,0.1 v 0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssscsssssssssssccssssssssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.138729,0.85995 0.13,1.1 -0.01127,0.309956 -0.153353,0.737345 -0.81,1.57 -0.31337,0.397366 -0.570864,0.5465 -0.78,0.6 -0.220921,0.05652 -0.420233,0.02106 -0.65,-0.03 -0.220238,-0.04894 -0.471716,-0.125979 -0.76,-0.04 -0.281841,0.08406 -0.4969,0.34121 -0.67,0.78 -0.686905,1.741224 -0.87379,2.498613 -0.96,2.74 -0.01387,0.03883 -2.99e-4,0.03758 -0.01,0.04 -0.03881,0.0097 -0.169135,-0.0044 -0.41,0.03 -0.949217,0.135602 -1.372393,0.416622 -1.67,0.63 -0.232437,0.166653 -0.76,0.3 -1.16,0.33 v 0.5 c 0.79,0.02 1.152349,-0.206684 1.45,-0.42 0.302385,-0.21671 0.570148,-0.428919 1.45,-0.55 0.210151,-0.02892 0.299944,-0.01043 0.45,-0.03 0.07994,-0.01043 0.18038,-0.04967 0.25,-0.13 0.06038,-0.06967 0.09126,-0.149538 0.12,-0.23 0.121268,-0.33955 0.26392,-1.002402 0.95,-2.73 0.143945,-0.362464 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.269781,0.001 0.5,0.05 0.239786,0.05102 0.541144,0.114714 0.88,0.03 0.341209,-0.0853 0.691251,-0.329002 1.05,-0.78 0.691253,-0.869004 0.899781,-1.41001 0.92,-1.87 0.01978,-0.45001 -0.14,-0.73 -0.13,-1.11 h -0.5" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssssssssssccssssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.937562,5.172427 -2.55,6.79 -1.527566,1.53243 -3.67,1.04 -5.2,0.96 v 0.5 c 1.43,0.04 3.755064,0.695105 5.55,-1.11 1.735078,-1.744908 2.65,-3.75 2.7,-7.14 h -0.5" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="csccscc" ns1:connector-curvature="0" />
- <ns0:path d="m 103.8,64 c -0.1,0.54 -0.18955,1.249546 -0.3,1.36 -0.0905,0.09055 -0.10061,0.105092 -0.2,0.12 -0.10085,0.01513 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.50292,-0.122107 -0.9,-0.02 -0.30334,0.078 -0.64634,0.365298 -0.8,0.93 -0.2472,0.908456 -1.20484,2.30505 -2.35,3.43 -0.554874,0.545082 -1.140678,1.048976 -1.67,1.4 -0.42068,0.278977 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.989224,-0.231166 1.56,-0.61 0.559227,-0.371168 1.16341,-0.886666 1.75,-1.46 1.18347,-1.156722 2.2051,-2.535994 2.49,-3.64 0.11519,-0.446354 0.30464,-0.521392 0.5,-0.58 0.10709,-0.03213 0.4,0 0.7,0.03 0.1,0.01 0.29593,0.0078 0.4,-0.02 0.19707,-0.05255 0.39848,-0.140958 0.5,-0.3 0.19849,-0.310969 0.25,-0.81 0.35,-1.67 z" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="csssssssccssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask4786)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g4258"
+ transform="rotate(-180,64,64)">
+ <g
+ id="rtid-g1931"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="m 7.75,96 c -0.00587,0.0179 -0.0794,0.2775 -0.08594,0.2969 -0.06287,0.1867 -0.15724,0.4398 -0.27148,0.748 -0.22848,0.6164 -0.5424,1.4486 -0.87696,2.4121 -0.6691,1.927 -1.42334,4.379 -1.75585,6.707 v 0.002 c -0.4895,3.547 -0.50594,10.988 -0.43555,12.248 0.04495,0.797 0.53639,1.591 1.25781,2.357 0.72142,0.767 1.6859,1.508 2.73633,2.167 2.10084,1.316 4.52494,2.305 6.09574,2.412 h 0.0078 0.0078 c 0.8428,0 1.9229,-0.63 3.3125,-1.379 1.3891,-0.75 3.0513,-1.642 4.873,-2.233 3.8849,-1.238 8.5466,-1.473 9.3848,-1.488 v -0.5 c -0.6737,0 -5.4086,0.197 -9.5352,1.512 h -0.0019 c -1.8776,0.609 -3.5686,1.517 -4.959,2.267 -1.3879,0.749 -2.5101,1.317 -3.0684,1.319 -1.3907,-0.098 -3.8082,-1.054 -5.85152,-2.334 -1.02381,-0.642 -1.95783,-1.365 -2.63671,-2.086 -0.67889,-0.721 -1.08901,-1.438 -1.12305,-2.041 -0.06365,-1.14 -0.04486,-8.7 0.43164,-12.153 0.32446,-2.271 1.06828,-4.7 1.73242,-6.6129 0.33207,-0.9564 0.64375,-1.7838 0.87305,-2.4023 0.11465,-0.3093 0.20882,-0.566 0.27539,-0.7637 C 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z"
+ id="rtid-path1429-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c 0.0089,0.1209 0.0315,0.4553 0.0449,0.6895 0.0208,0.3642 0.0397,0.8497 0.0352,1.3984 -0.009,1.0974 -0.1159,2.4471 -0.4844,3.5551 -0.277,0.832 -0.8162,1.42 -1.3555,2.074 -0.5392,0.653 -1.0752,1.379 -1.2285,2.447 -0.124,0.865 0.4155,1.821 0.9258,2.846 0.5103,1.024 1.0125,2.103 0.9824,3.058 -0.0931,2.95 -0.2835,4.626 -0.2383,5.397 0.0402,0.689 -0.003,1.719 0.2188,2.754 0.2218,1.034 0.7276,2.092 1.8555,2.789 1.0846,0.67 2.3097,0.781 3.4277,0.746 1.118,-0.036 2.1488,-0.212 2.8184,-0.166 0.4636,0.031 1.2531,0.344 2.2265,0.562 0.9735,0.219 2.1547,0.334 3.4668,-0.062 0.2381,-0.072 0.6346,-0.269 1.1777,-0.543 0.5432,-0.274 1.2055,-0.621 1.8711,-0.969 0.6656,-0.348 1.3341,-0.698 1.8848,-0.976 0.5508,-0.278 1.0031,-0.488 1.1602,-0.539 2.0231,-0.657 3.2292,-0.856 3.9961,-0.895 0.636,-0.032 1.1544,0.056 1.4648,0.084 v -0.5 c -0.249,0 -0.6636,-0.126 -1.4902,-0.084 -0.8266,0.042 -2.0748,0.253 -4.125,0.918 -0.2505,0.081 -0.6745,0.288 -1.2305,0.568 -0.556,0.281 -1.225,0.633 -1.8906,0.981 -0.6657,0.348 -1.3293,0.693 -1.8672,0.965 -0.5379,0.271 -0.9777,0.476 -1.0957,0.511 -1.2077,0.365 -2.2846,0.261 -3.211,0.053 -0.9263,-0.208 -1.6793,-0.532 -2.3046,-0.574 -0.7836,-0.053 -1.7942,0.132 -2.8672,0.166 -1.0731,0.034 -2.1885,-0.077 -3.1504,-0.672 -0.9944,-0.615 -1.4244,-1.515 -1.6289,-2.469 -0.2045,-0.953 -0.1642,-1.942 -0.2071,-2.677 -0.0373,-0.636 0.1447,-2.388 0.2383,-5.352 0.0358,-1.135 -0.5223,-2.267 -1.0351,-3.297 -0.5129,-1.029 -0.9607,-1.967 -0.877,-2.551 0.1349,-0.939 0.5899,-1.562 1.1172,-2.201 0.5273,-0.639 1.1294,-1.285 1.4453,-2.234 0.3972,-1.195 0.5006,-2.5836 0.5098,-3.7092 C 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z"
+ id="rtid-path1429-3-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,119.75 c -0.1304,0 -0.5351,-0.025 -1.0996,-0.043 -0.5645,-0.018 -1.302,-0.03 -2.1484,0 -1.693,0.061 -3.8238,0.285 -5.9004,0.945 h -0.002 c -3.6497,1.184 -4.7776,0.294 -6.8574,0.266 -0.5416,-0.007 -1.2305,0.196 -2.0371,0.434 -0.8067,0.237 -1.7191,0.517 -2.6367,0.685 -0.9177,0.168 -1.837,0.223 -2.6524,0.033 -0.8154,-0.19 -1.5294,-0.612 -2.0879,-1.445 -0.6269,-0.935 -0.6556,-2.243 -0.4902,-3.582 0.1654,-1.339 0.5189,-2.685 0.5723,-3.715 0.0328,-0.631 -0.0207,-1.793 -0.0176,-3.25 0.003,-1.457 0.0602,-3.196 0.3086,-4.928 0.3283,-2.288 0.3163,-2.713 0.9746,-4.619 0.3416,-0.9886 0.4135,-1.5254 0.3984,-2.1033 C 72.3091,97.8498 72.219,97.2389 72.25,96 h -0.5 c -0.0072,1.0234 0.0617,1.9639 0.0742,2.4414 0.0139,0.5333 -0.0401,0.9676 -0.3711,1.9256 -0.6667,1.93 -0.6692,2.435 -0.9961,4.713 -0.2535,1.767 -0.3113,3.527 -0.3144,4.996 -0.0031,1.469 0.0472,2.658 0.0176,3.227 -0.0485,0.935 -0.3976,2.296 -0.5684,3.679 -0.1708,1.384 -0.1701,2.816 0.5703,3.92 0.6263,0.934 1.4723,1.443 2.3887,1.657 0.9163,0.213 1.9017,0.144 2.8574,-0.032 0.9557,-0.175 1.8845,-0.458 2.6875,-0.695 0.803,-0.237 1.4918,-0.419 1.8906,-0.414 1.934,0.026 3.2675,0.925 7.0176,-0.291 l -0.0019,0.002 c 2.0133,-0.64 4.1038,-0.862 5.7675,-0.922 0.8319,-0.03 1.5565,-0.018 2.1133,0 0.4322,0.014 0.9081,0.036 1.1172,0.043 z"
+ id="rtid-path1429-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccscsccccscccccscccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,119.75 c -2.032,0.034 -2.99,-0.085 -3.885,-0.125 -0.894,-0.04 -1.718,0.006 -3.396,0.369 -0.152,0.033 -0.481,0.04 -0.871,0.02 -0.391,-0.021 -0.851,-0.063 -1.313,-0.102 -0.462,-0.039 -0.927,-0.077 -1.334,-0.088 -0.406,-0.011 -0.746,-0.002 -1.013,0.082 -0.88,0.279 -1.573,0.216 -2.168,-0.025 -0.596,-0.242 -1.097,-0.674 -1.54,-1.156 -0.442,-0.482 -0.823,-1.011 -1.193,-1.434 -0.37,-0.423 -0.741,-0.779 -1.226,-0.779 -1.489,-0.1 -3.036,0.177 -4.178,0.133 -0.573,-0.023 -1.03,-0.127 -1.332,-0.352 -0.302,-0.225 -0.493,-0.574 -0.516,-1.225 v -0.006 -0.005 c -0.056,-0.678 -0.431,-1.705 -0.721,-3.034 -0.289,-1.328 -0.495,-2.929 -0.236,-4.634 0.146,-0.962 0.46,-1.673 0.776,-2.418 0.315,-0.746 0.628,-1.526 0.73,-2.575 0.131,-1.344 0.047,-2.12 -0.07,-2.9585 C 104.397,98.5986 104.25,97.6918 104.25,96 h -0.5 c 0.019,1.4996 0.16,2.7336 0.268,3.5059 0.115,0.8311 0.197,1.5361 0.07,2.8421 -0.095,0.974 -0.383,1.687 -0.695,2.427 -0.313,0.741 -0.654,1.509 -0.811,2.539 -0.272,1.791 -0.052,3.454 0.244,4.815 0.297,1.361 0.668,2.449 0.711,2.971 v -0.012 c 0.027,0.749 0.284,1.286 0.715,1.607 0.431,0.322 0.991,0.426 1.611,0.45 1.241,0.047 2.774,-0.23 4.18,-0.133 h 0.01 0.008 c 0.214,0 0.504,0.214 0.849,0.609 0.345,0.395 0.734,0.931 1.203,1.441 0.469,0.511 1.023,0.999 1.719,1.282 0.696,0.282 1.531,0.348 2.506,0.039 0.14,-0.044 0.463,-0.069 0.85,-0.059 0.386,0.011 0.844,0.047 1.304,0.086 0.46,0.039 0.923,0.081 1.328,0.102 0.405,0.021 0.744,0.027 1.004,-0.03 1.654,-0.358 2.403,-0.395 3.268,-0.357 0.809,0.036 2.112,0.139 3.908,0.125 z"
+ id="rtid-path1429-3-6-7-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c 0.002,0.7276 0.023,5.8956 -0.648,10.3066 v 0.002 c -0.256,1.793 -0.027,3.1727 0.277,4.2422 0.303,1.066 0.664,1.8347 0.709,2.3496 0.02,0.5969 -0.337,1.2518 -0.912,1.9297 -0.576,0.6792 -1.353,1.3705 -2.086,2.0527 -0.734,0.6822 -1.4243,1.3525 -1.838,2.0371 -0.2069,0.3423 -0.3472,0.6931 -0.3672,1.0547 -0.0201,0.3616 0.0895,0.7282 0.3398,1.0586 0.006,0.0079 0.072,0.1314 0.1406,0.2988 0.0687,0.1674 0.1525,0.3892 0.2539,0.6446 0.2029,0.5106 0.4739,1.1595 0.8339,1.8242 0.72,1.3293 1.805,2.7405 3.459,3.1797 1.606,0.4262 3.696,-0.0673 5.443,-0.7051 0.874,-0.3189 1.661,-0.6768 2.252,-0.9902 0.296,-0.1568 0.543,-0.3019 0.731,-0.4278 0.188,-0.1259 0.307,-0.1971 0.402,-0.3574 0.099,-0.1671 0.126,-0.3547 0.141,-0.5762 0.015,-0.2215 0.009,-0.4762 -0.004,-0.7578 -0.027,-0.5631 -0.088,-1.229 -0.107,-1.8808 -0.02,-0.6519 0.006,-1.2899 0.134,-1.7715 0.129,-0.4817 0.333,-0.7786 0.686,-0.8907 0.16,-0.0505 0.572,0.0163 1.064,0.2168 0.493,0.2006 1.071,0.5074 1.645,0.8204 0.574,0.3129 1.142,0.6338 1.633,0.8671 0.245,0.1167 0.471,0.2115 0.675,0.2735 0.204,0.062 0.385,0.0994 0.575,0.0547 2.151,-0.5079 6.23,-0.5709 8.818,-0.6055 v -0.5 c -2.583,0.0344 -6.596,0.0678 -8.932,0.6191 -0.029,0.0069 -0.152,0.0031 -0.316,-0.0468 -0.164,-0.05 -0.373,-0.1374 -0.606,-0.2481 -0.465,-0.2214 -1.03,-0.5385 -1.607,-0.8535 -0.577,-0.315 -1.166,-0.6281 -1.695,-0.8437 -0.53,-0.2157 -0.995,-0.3602 -1.405,-0.2305 -0.553,0.1754 -0.865,0.6692 -1.017,1.2383 -0.152,0.5691 -0.172,1.2413 -0.152,1.914 0.019,0.6727 0.081,1.3451 0.107,1.8907 0.013,0.2727 0.018,0.514 0.006,0.7011 -0.013,0.1871 -0.052,0.321 -0.072,0.3555 0.021,-0.0365 -0.085,0.0835 -0.252,0.1953 -0.167,0.1118 -0.401,0.2516 -0.686,0.4024 -0.569,0.3014 -1.338,0.6523 -2.189,0.9628 -1.702,0.6212 -3.741,1.0637 -5.143,0.6914 -1.448,-0.3842 -2.459,-1.6617 -3.148,-2.9355 -0.345,-0.6369 -0.609,-1.2675 -0.809,-1.7715 -0.1001,-0.252 -0.1834,-0.4718 -0.2559,-0.6484 -0.0724,-0.1767 -0.1202,-0.3002 -0.2051,-0.4121 -0.1885,-0.2489 -0.2521,-0.4784 -0.2382,-0.7285 0.0138,-0.2502 0.1154,-0.5273 0.2949,-0.8243 0.3593,-0.594 1.0243,-1.251 1.7523,-1.9277 0.727,-0.6767 1.514,-1.3756 2.125,-2.0957 0.61,-0.7201 1.06,-1.4733 1.031,-2.2754 V 80.873 80.8672 c -0.057,-0.685 -0.437,-1.4281 -0.729,-2.4531 -0.291,-1.0246 -0.507,-2.3174 -0.263,-4.0332 v -0.002 C 104.3,69.7492 104.25,64.3795 104.25,64 Z"
+ id="rtid-path1429-3-6-7-5-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c 0.0091,1.5714 0.0802,3.0066 0.0508,3.8496 -0.0315,0.9016 -0.1655,1.4906 -0.5938,2.1231 -0.0813,0.12 -0.1758,0.1465 -0.4023,0.125 -0.2265,-0.0216 -0.5386,-0.1187 -0.8731,-0.2325 -0.3344,-0.1137 -0.6932,-0.242 -1.0527,-0.3066 -0.3595,-0.0646 -0.7329,-0.0682 -1.0625,0.1094 -0.7224,0.3889 -1.0902,1.3135 -1.3437,2.25 -0.2536,0.9365 -0.3718,1.9133 -0.4512,2.4355 -0.5429,3.5676 -0.1219,10.334 -0.0195,11.5664 0.0143,0.4008 0.1568,0.7426 0.3984,0.9942 0.2416,0.2515 0.5685,0.4126 0.9434,0.5156 0.7497,0.206 1.7106,0.1921 2.7539,0.1035 2.0864,-0.1771 4.5154,-0.6677 5.8886,-0.5684 h 0.0078 0.0098 c 0.5933,0 1.6161,0.4351 2.9297,0.7422 1.3136,0.3071 2.9464,0.4678 4.8516,-0.1347 0.7431,-0.2351 1.6039,-0.0972 2.4882,0.0937 0.8844,0.191 1.7831,0.4364 2.627,0.3125 1.13,-0.1658 1.9125,-0.1031 2.9199,0.0039 0.9472,0.1006 2.4274,0.2512 4.1797,0.2676 v -0.5 c -1.923,0 -3.1125,-0.1579 -4.127,-0.2656 -1.0144,-0.1077 -1.8632,-0.1754 -3.0449,-0.002 -0.6935,0.1018 -1.5511,-0.1108 -2.4492,-0.3047 -0.8981,-0.1939 -1.8455,-0.3682 -2.7441,-0.0839 -1.8035,0.5703 -3.3254,0.422 -4.5879,0.1269 -1.26,-0.2946 -2.2315,-0.7521 -3.0371,-0.7539 -1.5273,-0.1078 -3.9177,0.3956 -5.9532,0.5684 -1.0197,0.0865 -1.9451,0.0866 -2.58,-0.0879 C 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 c -0.0983,-1.1791 -0.5076,-8.0227 0.0156,-11.4609 0.082,-0.5395 0.1986,-1.4914 0.4395,-2.3809 0.2408,-0.8894 0.626,-1.6874 1.0976,-1.9414 0.1846,-0.0994 0.4341,-0.1109 0.7364,-0.0566 0.3022,0.0543 0.6451,0.1723 0.9824,0.2871 0.3373,0.1147 0.6668,0.2276 0.9844,0.2578 0.3175,0.0302 0.6678,-0.0505 0.8652,-0.3418 0.485,-0.7161 0.6447,-1.4407 0.6777,-2.3867 C 72.3318,66.9211 72.25,65.7359 72.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c -0.0041,0.9064 -0.0406,2.456 -0.1562,3.8125 -0.1239,1.4517 -0.3471,2.9029 -0.6954,3.7305 -0.2745,0.6512 -1.1623,1.8818 -1.8222,3.1386 -0.3302,0.6288 -0.6057,1.269 -0.7207,1.8848 -0.1151,0.6158 -0.0627,1.2254 0.3007,1.7129 1.8782,2.519 2.099,4.6977 2.2754,6.1465 0.0882,0.7244 0.1304,1.2888 0.4961,1.6465 0.1829,0.1788 0.4495,0.2624 0.7461,0.248 0.2967,-0.0144 0.6388,-0.1102 1.0723,-0.2832 0.3027,-0.1208 0.5185,-0.1488 0.6601,-0.1289 0.1417,0.0199 0.2229,0.0743 0.3067,0.1816 0.1676,0.2147 0.2739,0.6831 0.375,1.2168 0.1011,0.5338 0.2085,1.1316 0.5059,1.6368 0.2973,0.5051 0.8174,0.9003 1.6113,0.955 h 0.0097 0.0079 c 1.5002,0 3.8757,-0.8548 7.58,-2.0293 0.4296,-0.1362 1.3992,0.0301 2.3633,0.25 0.9642,0.2199 1.9177,0.4843 2.5957,0.3575 1.4727,-0.2759 2.3173,-0.3205 3.2188,-0.3028 0.8364,0.0164 2.0711,0.0852 3.5195,0.0762 v -0.5 c -1.6384,0.0238 -2.5854,-0.058 -3.5098,-0.0762 -0.9243,-0.0181 -1.8225,0.03 -3.3203,0.3106 -0.4404,0.0824 -1.4225,-0.1304 -2.3926,-0.3516 -0.97,-0.2212 -1.9332,-0.4596 -2.625,-0.2402 -3.7043,1.1745 -6.1187,2.001 -7.4199,2.0039 -0.648,-0.0477 -0.9743,-0.3117 -1.207,-0.707 -0.2342,-0.3978 -0.3463,-0.9436 -0.4473,-1.4766 -0.1009,-0.533 -0.1785,-1.0529 -0.4726,-1.4297 -0.1471,-0.1884 -0.3663,-0.3319 -0.6309,-0.3691 -0.2645,-0.0372 -0.5615,0.0175 -0.9141,0.1582 -0.4063,0.1621 -0.7088,0.2381 -0.9121,0.248 -0.2032,0.0099 -0.2927,-0.0288 -0.3711,-0.1055 -0.1567,-0.1533 -0.26,-0.6297 -0.3476,-1.3496 -0.1753,-1.4398 -0.4227,-3.769 -2.3731,-6.3847 -0.2593,-0.3479 -0.3106,-0.787 -0.2109,-1.3203 0.0997,-0.5334 0.3558,-1.1405 0.6738,-1.7461 0.636,-1.2112 1.5089,-2.3916 1.8399,-3.1778 0.3973,-0.944 0.6088,-2.4081 0.7344,-3.8808 C 40.2193,66.3827 40.25,64.9102 40.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-93"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,64 c -0.04455,2.0095 -0.50495,3.1644 -1.06641,4.0684 -0.59076,0.9511 -1.3019,1.981 -1.63476,4.3222 -0.07485,0.5267 0.05132,1.266 0.11523,2.125 0.06392,0.859 0.07194,1.8168 -0.18359,2.6719 -0.34551,1.1561 -0.98076,2.2856 -1.54102,3.3262 -0.56026,1.0405 -1.05846,1.9842 -1.0664,2.8574 -0.00812,0.8929 -0.34393,2.0452 -0.6836,3.0254 -0.16983,0.4901 -0.33901,0.9388 -0.46679,1.3008 -0.06389,0.1809 -0.11776,0.3407 -0.15625,0.4765 -0.03849,0.1359 -0.066886,0.2378 -0.0625,0.3614 0.04964,1.4001 1.46483,3.1567 4.05468,4.6152 1.74164,0.9807 4.63358,1.2487 7.31641,1.3164 1.3414,0.0338 2.6274,0.012 3.6797,-0.0098 1.0523,-0.0218 1.8815,-0.0428 2.2578,-0.0156 0.4216,0.0305 0.7577,-0.1608 1,-0.4297 0.2423,-0.2689 0.4327,-0.6083 0.6895,-0.9746 0.5134,-0.7325 1.267,-1.5879 3.0703,-2.1582 0.7753,-0.2452 1.2151,-0.9249 1.6211,-1.5117 0.4059,-0.5868 0.7667,-1.068 1.3007,-1.1582 C 28.5462,87.7778 29.872,88.1744 32,88.25 v -0.5 c -2.2695,-0.0472 -3.35,-0.4977 -6.0879,-0.0352 -0.7758,0.1311 -1.222,0.7762 -1.6309,1.3672 -0.4088,0.5911 -0.7925,1.1411 -1.3593,1.3203 -1.9053,0.6026 -2.7864,1.5721 -3.3301,2.3477 -0.2718,0.3878 -0.4663,0.7234 -0.6504,0.9277 -0.1841,0.2044 -0.3172,0.2857 -0.5937,0.2657 -0.4427,-0.0321 -1.2523,-0.0081 -2.3028,0.0136 -1.0504,0.0218 -2.33,0.0433 -3.6582,0.0098 C 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 c -1e-5,-3e-4 0.00983,-0.092 0.04297,-0.209 0.03313,-0.117 0.08414,-0.2687 0.14648,-0.4453 C 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,55.75 c -1.2294,0 -2.0383,0.1059 -2.6211,0.3027 -0.5828,0.1969 -0.936,0.4856 -1.2051,0.7754 -0.538,0.5797 -0.7334,1.1122 -2.2988,1.4375 -0.1225,0.0255 -0.3311,-0.0318 -0.5859,-0.1855 -0.2549,-0.1538 -0.5432,-0.3874 -0.8379,-0.6231 -0.2947,-0.2356 -0.5961,-0.474 -0.8985,-0.6445 -0.3024,-0.1705 -0.6278,-0.2879 -0.955,-0.1836 -0.8753,0.279 -1.2921,1.0415 -1.6368,1.7617 -0.3446,0.7203 -0.6429,1.4116 -1.1836,1.7481 -0.835,0.5196 -2.0538,0.8639 -3.1093,0.9902 -0.5278,0.0632 -1.0151,0.0718 -1.3868,0.0293 C 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 h -0.5 c -0.01831,1.7885 0.15046,3.2142 0.23633,4.1387 0.09152,0.9853 0.08839,1.806 -0.35352,3.2773 -0.17622,0.5868 -0.74629,0.8555 -1.39062,1.168 -0.32217,0.1562 -0.65494,0.3186 -0.9336,0.5566 -0.27866,0.2381 -0.49995,0.5665 -0.55859,0.9961 -0.14313,1.0488 0.13219,2.3446 0.42188,3.7188 0.28968,1.3742 0.60026,2.8218 0.57812,4.1054 -0.01731,1.0036 -0.36797,1.9455 -0.71875,2.7071 -0.17539,0.3808 -0.34908,0.7143 -0.48242,0.9961 -0.13334,0.2817 -0.24291,0.4882 -0.22852,0.7402 0.02151,0.3765 0.09621,0.6678 0.25196,0.8926 0.15574,0.2248 0.38663,0.3594 0.63671,0.4375 0.50018,0.1561 1.11445,0.1491 1.91602,0.3086 1.60315,0.3189 3.9558,1.2492 7.1094,5.2129 0.2124,0.267 0.5629,0.3515 0.9902,0.4003 0.4273,0.0489 0.9443,0.0355 1.502,-0.0312 1.1152,-0.1334 2.3831,-0.4817 3.3164,-1.0625 0.721,-0.4487 1.0331,-1.2549 1.3691,-1.957 0.336,-0.7021 0.6699,-1.2871 1.3379,-1.5 0.1189,-0.0379 0.3094,0.002 0.5586,0.1425 0.2492,0.1406 0.5368,0.3651 0.8301,0.5997 0.2933,0.2345 0.5921,0.4789 0.8925,0.6601 0.3005,0.1813 0.6143,0.3169 0.9454,0.2481 1.6748,-0.3481 2.0888,-1.0755 2.5644,-1.5879 0.2378,-0.2562 0.4931,-0.472 0.9981,-0.6426 C 29.9927,56.3721 31.0025,56.2706 32,56.25 Z"
+ id="rtid-path1429-2-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.0814,3.1631 -0.7923,5.2367 -1.6016,6.8906 -0.2394,0.4893 -0.8275,1.7184 -1.3867,3.0371 -0.5592,1.3188 -1.0905,2.7074 -1.2187,3.5957 -0.267,1.8487 0.5366,3.6171 1.4629,5.045 0.4631,0.7139 0.9603,1.3462 1.3789,1.8613 0.4186,0.5151 0.7637,0.9246 0.8984,1.1426 0.8016,1.2965 0.8652,2.8447 1.0879,4.1484 0.1113,0.6518 0.2614,1.2487 0.6094,1.7168 0.348,0.4681 0.903,0.7746 1.6953,0.8281 h 0.0078 0.0078 c 0.3917,0 1.073,-0.0847 1.9648,-0.2285 0.8919,-0.1438 1.9831,-0.3485 3.1465,-0.5898 2.3264,-0.4825 4.9363,-1.1135 6.8028,-1.7188 3.96,-1.2617 5.5671,-1.409 9.3945,-1.4785 v -0.5 c -4.0916,0.0678 -5.455,0.1989 -9.5449,1.502 h -0.002 c -1.8333,0.5946 -4.4372,1.225 -6.7519,1.705 -1.1574,0.2401 -2.2431,0.4438 -3.125,0.586 -0.8755,0.1411 -1.5546,0.2195 -1.8711,0.2207 -0.6838,-0.0474 -1.06,-0.2696 -1.3242,-0.625 -0.265,-0.3565 -0.4108,-0.8787 -0.5176,-1.5039 -0.2136,-1.2505 -0.2687,-2.8906 -1.1563,-4.3262 -0.1815,-0.2937 -0.5209,-0.6852 -0.9355,-1.1953 -0.4146,-0.5102 -0.8983,-1.1266 -1.3457,-1.8164 -0.8949,-1.3797 -1.6286,-3.0396 -1.3887,-4.7012 0.1099,-0.7609 0.6319,-2.1669 1.1856,-3.4727 0.5537,-1.3057 1.139,-2.5316 1.375,-3.0136 C 39.4461,37.3754 40.2065,35.4289 40.25,32 Z"
+ id="rtid-path1429-3-9-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccsccscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c -0.0032,2.801 -0.0472,2.5586 -0.6758,6.9707 -0.0738,0.5178 -0.5011,1.122 -0.9785,1.877 -0.4774,0.7549 -0.9906,1.671 -1.1562,2.8671 -0.2572,1.8565 -0.8222,2.6696 -1.3516,3.2872 -0.2647,0.3087 -0.5286,0.5682 -0.7422,0.8867 -0.2136,0.3185 -0.3654,0.6998 -0.3848,1.1972 -0.0204,0.5226 -0.1327,1.55 -0.1894,2.5528 -0.0284,0.5014 -0.043,0.9993 -0.0235,1.4355 0.0196,0.4362 0.0633,0.8064 0.1954,1.0918 0.2074,0.4483 0.2151,1.5997 0.123,2.7324 -0.0921,1.1328 -0.2531,2.2556 -0.2598,2.8575 -0.0109,0.9677 0.4244,1.628 1.0957,1.9687 0.6713,0.3407 1.5431,0.4053 2.4922,0.3711 1.8984,-0.0684 4.144,-0.5541 5.5469,-0.459 0.4439,0.0301 1.0705,-0.1419 1.8926,-0.4121 0.8221,-0.2702 1.815,-0.6496 2.8789,-1.0684 2.1264,-0.8369 4.5333,-1.8329 6.3516,-2.4277 l 0.0039,-0.0019 C 90.5648,56.4658 92.2928,56.2606 96,56.25 v -0.5 c -3.9621,0 -5.4573,0.1992 -9.5859,1.502 h -0.002 c -1.8515,0.6054 -4.2614,1.6044 -6.3828,2.4394 -1.0607,0.4175 -2.0477,0.7944 -2.8516,1.0586 -0.8038,0.2642 -1.4486,0.4059 -1.7031,0.3887 -1.5472,-0.105 -3.7727,0.3913 -5.5976,0.457 -0.9125,0.0329 -1.7151,-0.0479 -2.2481,-0.3184 -0.533,-0.2704 -0.8316,-0.6861 -0.8223,-1.5156 0.0058,-0.5136 0.1661,-1.67 0.2598,-2.8222 0.0937,-1.1523 0.1519,-2.2932 -0.168,-2.9844 -0.0741,-0.1603 -0.134,-0.4964 -0.1523,-0.9043 -0.0183,-0.408 -0.0044,-0.8907 0.0234,-1.3828 0.0557,-0.9843 0.1693,-1.9952 0.1914,-2.5625 0.016,-0.4109 0.1255,-0.676 0.3008,-0.9375 0.1754,-0.2615 0.4271,-0.5152 0.7071,-0.8418 0.5599,-0.6532 1.1982,-1.6047 1.4667,-3.543 0.1512,-1.092 0.6179,-1.9328 1.084,-2.6699 0.4662,-0.7372 0.9476,-1.3614 1.0489,-2.0723 C 72.2188,34.4749 72.25,35.1813 72.25,32 Z"
+ id="rtid-path1429-3-6-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.01,1.3903 -0.281,2.2117 -0.703,2.707 -0.454,0.5321 -1.137,1.0722 -1.752,2.502 -0.863,2.0036 -1.6884,4.2596 -1.9669,6.2129 -0.0653,0.4591 0.13,0.874 0.4102,1.2402 0.2797,0.3662 0.6537,0.7069 1.0217,1.0606 0.735,0.7073 1.418,1.4408 1.39,2.3847 -0.041,1.4105 -0.495,2.7804 -0.937,3.8867 -0.221,0.5532 -0.438,1.0397 -0.6,1.4395 -0.162,0.3998 -0.286,0.6846 -0.261,0.9766 0.066,0.7929 0.57,1.5954 1.302,2.3769 0.732,0.7816 1.703,1.542 2.758,2.2149 2.11,1.3456 4.522,2.3476 6.088,2.3476 0.112,0 0.238,-0.0782 0.291,-0.1621 0.053,-0.0839 0.066,-0.162 0.074,-0.2402 0.017,-0.1565 0.001,-0.3311 -0.027,-0.543 -0.057,-0.4238 -0.172,-0.9818 -0.279,-1.5879 -0.215,-1.2122 -0.357,-2.6219 -0.026,-3.2949 0.576,-1.1684 1.765,-1.8992 3.121,-2.4238 1.356,-0.5247 2.856,-0.8346 4.006,-1.1993 0.396,-0.1256 0.609,-0.0525 0.819,0.1387 0.209,0.1912 0.393,0.5411 0.552,0.9512 0.16,0.4101 0.299,0.8737 0.469,1.2929 0.17,0.4193 0.366,0.8047 0.703,1.0372 0.281,0.1939 0.726,0.3476 1.307,0.498 0.58,0.1504 1.288,0.2854 2.045,0.3867 1.414,0.1893 3.205,0.2343 4.445,0.0469 v -0.5 c -1.174,0.2223 -2.9,0.1551 -4.379,-0.043 -0.739,-0.099 -1.431,-0.2311 -1.986,-0.375 -0.556,-0.1438 -0.985,-0.3109 -1.149,-0.4238 -0.185,-0.1281 -0.366,-0.4274 -0.523,-0.8144 -0.157,-0.3871 -0.297,-0.8511 -0.467,-1.2872 -0.169,-0.436 -0.365,-0.8498 -0.682,-1.1386 -0.317,-0.2889 -0.78,-0.4124 -1.304,-0.2461 -1.107,0.351 -2.628,0.6636 -4.037,1.209 -1.41,0.5453 -2.73,1.3324 -3.389,2.6699 -0.462,0.9376 -0.235,2.3721 -0.018,3.6015 0.109,0.6148 0.224,1.1772 0.276,1.5684 0.021,0.1596 0.023,0.2624 0.021,0.3457 -1.36,-0.0479 -3.679,-0.957 -5.681,-2.2344 -1.028,-0.6556 -1.971,-1.3984 -2.662,-2.1367 -0.692,-0.7383 -1.12,-1.4732 -1.17,-2.0762 -0.005,-0.0547 0.07,-0.362 0.226,-0.748 0.157,-0.386 0.376,-0.8771 0.602,-1.4414 0.451,-1.1286 0.928,-2.5515 0.972,-4.0586 0.035,-1.1881 -0.799,-2.0402 -1.545,-2.7578 -0.372,-0.3588 -0.729,-0.6911 -0.968,-1.0039 -0.2396,-0.3129 -0.3529,-0.5852 -0.3128,-0.8672 0.2668,-1.8693 1.0748,-4.0998 1.9298,-6.084 0.581,-1.3507 1.169,-1.7875 1.672,-2.377 0.502,-0.5894 0.859,-1.3225 0.824,-3.0312 z"
+ id="rtid-path1429-3-6-7-2-8"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,23.75 c -1.652,-0.0497 -2.58,0.5216 -3.203,1.0195 -0.312,0.249 -0.551,0.4693 -0.75,0.5782 -0.199,0.1088 -0.329,0.1354 -0.578,0.0253 -1.422,-0.6283 -2.855,-0.8313 -5.045,-0.121 h -0.002 c -0.209,0.0678 -0.656,-0.0762 -1.127,-0.2657 -0.236,-0.0947 -0.477,-0.1915 -0.719,-0.248 -0.241,-0.0566 -0.495,-0.078 -0.732,0.0312 -1.414,0.652 -2.513,1.7213 -3.395,2.5996 -0.441,0.4392 -0.83,0.8311 -1.162,1.0977 -0.332,0.2666 -0.598,0.3855 -0.769,0.373 -0.267,-0.0193 -0.473,-0.1723 -0.696,-0.4726 -0.222,-0.3003 -0.432,-0.7336 -0.666,-1.2149 -0.467,-0.9625 -1.03,-2.1262 -2.138,-2.8105 -1.134,-0.6998 -2.701,-0.8763 -3.987,-1.0762 -0.642,-0.0999 -1.217,-0.2054 -1.607,-0.3574 -0.195,-0.076 -0.341,-0.1633 -0.432,-0.252 -0.091,-0.0886 -0.133,-0.1699 -0.142,-0.2871 0,0.0087 0.014,-0.0882 0.084,-0.2207 0.069,-0.1324 0.181,-0.3062 0.32,-0.5058 0.277,-0.3993 0.661,-0.908 1.053,-1.4922 0.783,-1.1684 1.605,-2.6388 1.652,-4.2051 0.035,-1.1613 -0.746,-2.2622 -1.461,-3.2598 -0.358,-0.4987 -0.704,-0.9721 -0.941,-1.3945 -0.237,-0.4224 -0.35,-0.7844 -0.309,-1.0527 0.056,-0.36926 0.198,-0.59839 0.397,-0.78127 0.198,-0.18288 0.463,-0.31486 0.755,-0.43555 0.293,-0.12068 0.61,-0.22798 0.901,-0.38671 0.29,-0.15874 0.563,-0.38099 0.713,-0.72071 0.453,-1.0275 0.491,-2.32339 0.435,-3.70508 C 104.393,2.8273 104.235,1.35423 104.25,0 h -0.5 c 0.004,1.32161 0.147,2.95144 0.199,4.22852 0.055,1.35795 0.001,2.59311 -0.392,3.48437 -0.094,0.21123 -0.259,0.35278 -0.496,0.48242 -0.238,0.12965 -0.539,0.23504 -0.85,0.36328 -0.311,0.12825 -0.635,0.28153 -0.906,0.53125 -0.272,0.24973 -0.482,0.60211 -0.553,1.07226 -0.069,0.4539 0.109,0.9088 0.369,1.3731 0.26,0.4642 0.616,0.9459 0.971,1.4414 0.71,0.9909 1.396,2.0367 1.369,2.9531 -0.042,1.3981 -0.804,2.8013 -1.568,3.9414 -0.383,0.5701 -0.763,1.0749 -1.049,1.4883 -0.144,0.2067 -0.264,0.3903 -0.352,0.5566 -0.087,0.1663 -0.156,0.3092 -0.14,0.4942 0.019,0.2365 0.129,0.4467 0.291,0.6035 0.161,0.1567 0.365,0.2683 0.599,0.3593 0.468,0.1822 1.062,0.2858 1.711,0.3868 1.298,0.2019 2.815,0.3993 3.801,1.0078 0.955,0.5896 1.485,1.643 1.951,2.6035 0.233,0.4803 0.45,0.9342 0.717,1.2949 0.267,0.3607 0.612,0.6413 1.06,0.6738 0.394,0.0285 0.75,-0.1857 1.12,-0.4824 0.369,-0.2966 0.76,-0.6977 1.199,-1.1347 0.877,-0.8742 1.938,-1.8922 3.252,-2.4981 0.084,-0.0389 0.221,-0.0438 0.408,0 0.187,0.0439 0.412,0.1305 0.646,0.2246 0.468,0.1883 0.975,0.4402 1.471,0.2793 2.105,-0.6821 3.34,-0.4946 4.69,0.1016 0.37,0.1634 0.729,0.1142 1.017,-0.043 0.288,-0.1572 0.531,-0.3925 0.824,-0.6269 0.548,-0.4374 1.555,-0.8873 2.891,-0.9102 z"
+ id="rtid-path1429-3-6-7-5-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,0 c 0.0141,2.21123 -0.5181,3.78788 -1.1719,5.08594 -0.6822,1.35448 -1.4918,2.7313 -1.8261,5.07816 -0.0689,0.4829 0.1369,0.9762 0.4355,1.4921 0.2986,0.516 0.7066,1.0613 1.1133,1.6211 0.8133,1.1198 1.5987,2.3053 1.5722,3.2696 -0.036,1.3189 -0.8124,2.4014 -1.6425,3.3301 -0.4151,0.4643 -0.8408,0.8863 -1.1836,1.2832 -0.3428,0.3969 -0.6164,0.7663 -0.6836,1.1796 -0.0977,0.5998 -0.3105,2.0169 -0.2871,3.4493 0.0233,1.4323 0.2521,2.9131 1.2168,3.6015 1.2145,0.8668 3.0917,0.7818 4.8691,0.543 0.8887,-0.1194 1.7553,-0.2841 2.4981,-0.4102 0.7427,-0.126 1.3715,-0.2096 1.7324,-0.1836 0.2452,0.0177 0.4744,-0.0759 0.6777,-0.2207 0.2033,-0.1447 0.3914,-0.3426 0.584,-0.5781 0.3852,-0.471 0.7879,-1.0975 1.2598,-1.7558 0.9438,-1.3167 2.1539,-2.7477 3.9257,-3.3028 0.8452,-0.2647 1.3565,-0.8408 1.8145,-1.332 0.458,-0.4912 0.8506,-0.8908 1.4961,-0.9902 0.556,-0.0857 1.0082,0.0394 1.4805,0.2929 0.4722,0.2535 0.9536,0.6415 1.5097,1.0528 1.0641,0.7867 2.7158,1.671 4.8594,1.7441 v -0.5 c -2.1892,0 -3.4725,-0.8405 -4.5625,-1.6465 -0.545,-0.403 -1.0373,-0.8057 -1.5703,-1.0918 -0.5331,-0.2861 -1.1196,-0.4495 -1.793,-0.3457 -0.8179,0.1261 -1.3223,0.6482 -1.7851,1.1445 -0.4629,0.4964 -0.8942,0.973 -1.5977,1.1934 -1.9429,0.6086 -3.2225,2.1495 -4.1836,3.4902 -0.4805,0.6704 -0.8852,1.2963 -1.2402,1.7305 -0.1775,0.2171 -0.3426,0.384 -0.4864,0.4863 -0.1437,0.1024 -0.2546,0.1361 -0.3535,0.1289 -0.4686,-0.0338 -1.1014,0.0622 -1.8515,0.1895 -0.7502,0.1273 -1.6094,0.2912 -2.4805,0.4082 -1.7422,0.234 -3.5205,0.2557 -4.5137,-0.4531 -0.7006,-0.5001 -0.9834,-1.8278 -1.0058,-3.2051 -0.0225,-1.3773 0.1852,-2.7701 0.2812,-3.3594 0.0373,-0.2296 0.245,-0.5572 0.5684,-0.9316 0.3234,-0.3745 0.7483,-0.7992 1.1758,-1.2774 0.8548,-0.9562 1.7302,-2.1441 1.7714,-3.6504 0.0337,-1.228 -0.85,-2.452 -1.6679,-3.5781 -0.409,-0.563 -0.8081,-1.0994 -1.084,-1.5762 C 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z"
+ id="rtid-path1429-3-6-7-5-3-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,0 c -0.3359,0.76718 -0.6117,1.75827 -0.8652,2.49023 -0.2953,0.85257 -0.7736,1.73886 -2.0371,2.8125 -0.0899,0.07641 -0.1225,0.14773 -0.17,0.24219 -0.0474,0.09447 -0.0972,0.20857 -0.1484,0.34375 -0.1025,0.27036 -0.2167,0.62378 -0.3398,1.03711 -0.2463,0.82667 -0.5254,1.89254 -0.7911,2.9707 -0.2656,1.07822 -0.5175,2.16932 -0.707,3.04692 -0.1895,0.8775 -0.316,1.5079 -0.3359,1.7851 -0.1397,1.937 0.3521,3.6412 0.8789,4.9746 0.2634,0.6668 0.5365,1.2422 0.7441,1.7051 0.2076,0.4629 0.341,0.8288 0.3516,0.9883 0.0189,0.2839 -0.0597,0.7845 -0.1719,1.3652 -0.1122,0.5807 -0.2521,1.251 -0.332,1.9258 -0.08,0.6748 -0.1028,1.3556 0.0332,1.9727 0.136,0.617 0.4448,1.1779 1.0078,1.539 1.17,0.7503 3.167,0.7102 5.082,0.5528 0.9575,-0.0788 1.8928,-0.1948 2.6778,-0.2852 0.7849,-0.0904 1.4326,-0.1503 1.7558,-0.127 0.4446,0.0321 1.7984,0.3583 3.3027,0.5254 1.5044,0.1671 3.199,0.1866 4.4942,-0.4511 0.3072,-0.1512 0.4947,-0.4545 0.666,-0.8028 0.1713,-0.3483 0.3191,-0.7578 0.4688,-1.1562 0.1496,-0.3985 0.3018,-0.7857 0.4648,-1.0781 0.163,-0.2925 0.3354,-0.4694 0.4727,-0.5137 2.0531,-0.6641 3.0053,-1.0705 3.9199,-1.3047 C 61.0267,24.3397 62.2522,24.2595 64,24.25 v -0.5 c -2.022,0 -2.984,0.0765 -3.9512,0.3242 -0.9672,0.2477 -1.9119,0.6529 -3.9511,1.3125 -0.3424,0.1107 -0.5666,0.4063 -0.7559,0.7461 -0.1894,0.3398 -0.3452,0.7448 -0.4961,1.1465 -0.1509,0.4017 -0.2965,0.8008 -0.4492,1.1113 -0.1527,0.3105 -0.3217,0.5172 -0.4375,0.5742 -1.132,0.5574 -2.7537,0.5651 -4.2188,0.4024 -1.465,-0.1628 -2.7313,-0.4847 -3.3222,-0.5274 -0.4216,-0.0304 -1.0588,0.0381 -1.8477,0.129 -0.7889,0.0908 -1.7186,0.2075 -2.6621,0.2851 -1.8871,0.1552 -3.842,0.1195 -4.7715,-0.4766 -0.4383,-0.2811 -0.6726,-0.6961 -0.789,-1.2246 -0.1165,-0.5284 -0.1019,-1.1612 -0.0254,-1.8066 0.0764,-0.6455 0.2129,-1.3026 0.3261,-1.8887 0.1132,-0.586 0.2084,-1.0932 0.1817,-1.4941 -0.0219,-0.3283 -0.1854,-0.6894 -0.3965,-1.1602 -0.2112,-0.4707 -0.4783,-1.0352 -0.7344,-1.6836 -0.5122,-1.2967 -0.9758,-2.9217 -0.8437,-4.7539 0.0112,-0.1567 0.1379,-0.8449 0.3261,-1.7168 0.1883,-0.8718 0.4387,-1.9599 0.7032,-3.0332 C 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z"
+ id="rtid-path1429-3-6-7-5-3-5-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,23.75 c -1.3299,0 -2.8706,0.7213 -3.8457,1.7207 -0.3945,0.4044 -0.6149,0.8586 -0.8398,1.2031 -0.225,0.3445 -0.4227,0.5676 -0.8028,0.6485 -0.1454,0.0309 -0.3936,-0.0511 -0.6992,-0.2559 -0.3056,-0.2047 -0.6543,-0.5102 -1.0195,-0.8144 -0.3653,-0.3043 -0.748,-0.6092 -1.1465,-0.8184 -0.3986,-0.2092 -0.8334,-0.3266 -1.2617,-0.1914 -0.7564,0.2386 -1.2942,0.779 -1.7754,1.3066 -0.4813,0.5277 -0.9146,1.0441 -1.4141,1.3125 -1.8557,0.9973 -3.9321,1.0397 -4.7773,0.9785 -0.0087,-6e-4 -0.0233,4e-4 -0.0684,-0.0546 -0.0451,-0.0551 -0.1028,-0.1587 -0.1562,-0.293 -0.107,-0.2686 -0.2055,-0.6574 -0.3145,-1.0645 -0.109,-0.4071 -0.2287,-0.8339 -0.3984,-1.2031 C 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 c 0.02452,-0.1264 0.06508,-0.2136 0.11328,-0.2675 0.0482,-0.054 0.10401,-0.0869 0.21484,-0.1016 -0.00851,0.0011 0.04556,0.0038 0.13672,0.0644 0.09116,0.0607 0.20973,0.1666 0.33984,0.3028 0.26022,0.2723 0.56755,0.6647 0.88086,1.0781 0.31331,0.4134 0.63375,0.848 0.93555,1.2149 0.3018,0.3668 0.56991,0.6661 0.85742,0.8242 0.33213,0.1826 0.70718,0.1503 1.0293,0.0136 0.32211,-0.1366 0.6131,-0.3706 0.87109,-0.6289 0.258,-0.2582 0.48087,-0.5423 0.64649,-0.7949 C 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 c -0.12698,0.1422 -0.19631,0.3178 -0.23242,0.5039 -0.07223,0.3724 -0.02356,0.8037 0.05664,1.25 0.08019,0.4463 0.19809,0.9069 0.29297,1.3086 0.09487,0.4018 0.1615,0.7548 0.15625,0.92 -0.04886,1.536 0.08969,3.3032 0.24805,4.7792 0.15835,1.4761 0.33813,2.6827 0.36523,3.0079 0.04642,0.5571 0.38432,2.0296 0.89648,3.4765 0.25609,0.7235 0.55414,1.4323 0.88868,1.9961 0.33453,0.5638 0.69503,1.0073 1.17578,1.1348 0.1745,0.0463 0.36547,0.0224 0.50781,-0.0684 0.14234,-0.0907 0.23291,-0.2248 0.30273,-0.3711 0.13964,-0.2925 0.20818,-0.6624 0.28516,-1.0644 0.15395,-0.8041 0.33801,-1.7199 0.77734,-2.1465 0.11912,-0.1157 0.33078,-0.1858 0.61719,-0.1973 0.28642,-0.0115 0.63462,0.037 0.98632,0.1172 0.7034,0.1604 1.4158,0.444 1.752,0.582 0.1713,0.0704 0.3411,0.278 0.4863,0.5938 0.1452,0.3158 0.2635,0.721 0.3711,1.123 0.1076,0.4021 0.2041,0.8 0.332,1.1211 0.064,0.1606 0.1357,0.3033 0.2344,0.4239 0.0987,0.1205 0.2438,0.2254 0.4199,0.2382 0.9174,0.0665 3.0632,0.03 5.0488,-1.0371 0.6228,-0.3347 1.0775,-0.9033 1.5469,-1.4179 0.4694,-0.5147 0.9439,-0.9727 1.5567,-1.166 0.2553,-0.0806 0.5432,-0.0181 0.8789,0.1582 0.3357,0.1762 0.6996,0.4606 1.0586,0.7597 0.3589,0.2991 0.7145,0.6107 1.0625,0.8438 0.3479,0.2331 0.7032,0.4101 1.08,0.33 0.5421,-0.1152 0.8678,-0.4813 1.1172,-0.8632 0.2494,-0.3819 0.4521,-0.7915 0.7793,-1.127 C 29.3257,24.986 30.9022,24.3358 32,24.25 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-3-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="rotate(180,64,63.9999)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.3179448,2.629688 -0.582,3.43 -0.2869452,0.86969 -0.596576,1.66993 -0.652,2.97 -0.025576,0.59993 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.1418312,0.36527 -1.867,0.4 C 2.5268974,103.9653 0.8398,103.7498 0,103.7498 v 0.5 c 0.7015,0 2.3841866,0.21695 3.914,0.1502 0.7632739,-0.0333 1.4948937,-0.1002 2.072,-0.4 0.5778938,-0.3002 0.9956043,-0.8001 1.03,-1.6 0.051604,-1.20011 0.330547,-1.90176 0.627,-2.81 C 7.9275579,98.718205 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssssccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.111341,0.789242 -0.19,0.93 -0.111347,0.199253 -0.250835,0.32855 -0.46,0.45 -0.410843,0.238554 -1.076139,0.434611 -1.78,1.02 -0.30619,0.254653 -0.444444,0.599521 -0.48,0.95 -0.03445,0.339578 0.0044,0.6506 0.05,1.05 0.03437,0.3007 0.0718,0.60142 0.03,0.9 -0.02828,0.20199 -0.144384,0.37417 -0.34,0.5 -1.516168,0.97531 -2.28841,1.52356 -2.88,1.8 -0.479478,0.22406 -1.14,0.1498 -1.7,0.1498 v 0.5 c 0.75,0 1.21117,0.005 1.88,-0.2498 0.644302,-0.24592 1.454216,-0.722 2.98,-1.8 0.315153,-0.22266 0.492991,-0.50094 0.55,-0.9 0.04301,-0.30108 0.01936,-0.60081 -0.02,-1 -0.03067,-0.311062 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.108796,-0.461441 0.3,-0.62 0.628803,-0.521447 1.208261,-0.672918 1.71,-0.97 0.258286,-0.152932 0.487901,-0.341129 0.65,-0.64 0.157909,-0.291144 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssssssssccsssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.2498 c 0.8,0 1.49,-0.2498 2.04,-0.7498 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.510743,0.39477 0.89,0.4 0.379257,0.005 0.797893,-0.0921 1.2,-0.5 0.288077,-0.29225 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.109947,-0.350068 0.35,-0.54 0.669947,-0.530068 1.062471,-0.787804 1.32,-1.08 0.262489,-0.297824 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.09774,0.641967 -0.22,0.78 -0.187769,0.211997 -0.578636,0.491722 -1.26,1.03 -0.318643,0.251728 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.5498 -1.7,0.6498 z"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="csssszssssssccsssssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.2498 c 0.85,0 1.48214,-0.47902 2.11,-1.0498 0.583615,-0.53056 1.198107,-1.18653 1.87,-1.6 0.62838,-0.3867 1.32,-0.3 2.12,-0.3 0.3,0 0.68695,-0.12111 1,-0.3 0.38829,-0.22188 0.70482,-0.5981 0.9,-1.1 0.50483,-1.298132 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.20382,1.4037 0.25,1.69 0.0549,0.340419 0.0812,0.7413 -0.5,2.02 -0.219,0.48181 -0.35746,0.74448 -0.6,0.89 -0.27116,0.1627 -0.5,0.2 -0.9,0.2 -0.6,0 -1.47604,-0.061 -2.27,0.4 -0.75806,0.44016 -1.390125,1.07718 -1.96,1.6 -0.521048,0.47803 -1.24,0.8498 -1.77,0.9498"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssssssccssssssc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.67853397,72.21006 0.9004,72.09 1.122034,71.970063 1.2577779,71.789843 1.371,71.63 1.5977781,71.309843 1.7604808,71.003871 2.523,70.71 2.7465241,70.62386 2.91,70.53 3.033,70.41 3.157,70.29 3.2304041,70.119992 3.227,69.96 3.2204,69.649991 3.0246431,69.441703 2.859,69.21 2.6886261,68.971679 2.523281,68.72965 2.449,68.46 2.377279,68.199644 2.380032,67.90947 2.594,67.52 2.8250333,67.099467 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.4871786,66.118466 4.799,65.75 5.054187,65.448456 5.3519236,65.314917 5.684,65.25 6.0169961,65.1849 6.3820353,65.185 6.736,65.19 7.0901059,65.195 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 H 7.75 C 7.708,64.12 7.5885621,64.547111 7.506,64.59 7.3574848,64.66715 7.0831092,64.695009 6.74,64.69 6.3980364,64.685 5.9970218,64.67479 5.586,64.76 5.1769658,64.8448 4.7511739,65.029307 4.416,65.43 4.1321723,65.769309 3.93,65.92 3.777,66 c -0.153,0.08 -0.2620175,0.09991 -0.42,0.13 -0.1570175,0.02991 -0.3584979,0.09278 -0.558,0.27 -0.1945375,0.172813 -0.3983177,0.438146 -0.643,0.88 -0.2703309,0.48817 -0.2882642,0.939521 -0.187,1.31 0.103738,0.379529 0.311617,0.671706 0.484,0.91 0.1676344,0.23173 0.2727494,0.419976 0.274,0.47 7.498e-4,0.02999 0.00626,0.03025 -0.041,0.08 -0.047738,0.05025 -0.1588766,0.117714 -0.344,0.19 -0.8648936,0.33772 -1.1716383,0.808826 -1.3791,1.1 C 0.85685193,71.488839 0.78517487,71.581876 0.6641,71.65 0.5896364,71.6919 0.1526,71.73 0,71.75 v 0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssscsssssssssssccssssssssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.138729,0.85995 0.13,1.1 -0.01127,0.309956 -0.153353,0.737345 -0.81,1.57 -0.31337,0.397366 -0.570864,0.5465 -0.78,0.6 -0.220921,0.05652 -0.420233,0.02106 -0.65,-0.03 -0.220238,-0.04894 -0.471716,-0.125979 -0.76,-0.04 -0.281841,0.08406 -0.4969,0.34121 -0.67,0.78 -0.686905,1.741224 -0.87379,2.498613 -0.96,2.74 -0.01387,0.03883 -2.99e-4,0.03758 -0.01,0.04 -0.03881,0.0097 -0.169135,-0.0044 -0.41,0.03 -0.949217,0.135602 -1.372393,0.416622 -1.67,0.63 -0.232437,0.166653 -0.76,0.3 -1.16,0.33 v 0.5 c 0.79,0.02 1.152349,-0.206684 1.45,-0.42 0.302385,-0.21671 0.570148,-0.428919 1.45,-0.55 0.210151,-0.02892 0.299944,-0.01043 0.45,-0.03 0.07994,-0.01043 0.18038,-0.04967 0.25,-0.13 0.06038,-0.06967 0.09126,-0.149538 0.12,-0.23 0.121268,-0.33955 0.26392,-1.002402 0.95,-2.73 0.143945,-0.362464 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.269781,10e-4 0.5,0.05 0.239786,0.05102 0.541144,0.114714 0.88,0.03 0.341209,-0.0853 0.691251,-0.329002 1.05,-0.78 0.691253,-0.869004 0.899781,-1.41001 0.92,-1.87 0.01978,-0.45001 -0.14,-0.73 -0.13,-1.11 h -0.5"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssssssssssccssssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.937562,5.172427 -2.55,6.79 -1.527566,1.53243 -3.67,1.04 -5.2,0.96 v 0.5 c 1.43,0.04 3.755064,0.695105 5.55,-1.11 1.735078,-1.744908 2.65,-3.75 2.7,-7.14 h -0.5"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="csccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.8,64 c -0.1,0.54 -0.18955,1.249546 -0.3,1.36 -0.0905,0.09055 -0.10061,0.105092 -0.2,0.12 -0.10085,0.01513 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.50292,-0.122107 -0.9,-0.02 -0.30334,0.078 -0.64634,0.365298 -0.8,0.93 -0.2472,0.908456 -1.20484,2.30505 -2.35,3.43 -0.554874,0.545082 -1.140678,1.048976 -1.67,1.4 -0.42068,0.278977 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.989224,-0.231166 1.56,-0.61 0.559227,-0.371168 1.16341,-0.886666 1.75,-1.46 1.18347,-1.156722 2.2051,-2.535994 2.49,-3.64 0.11519,-0.446354 0.30464,-0.521392 0.5,-0.58 0.10709,-0.03213 0.4,0 0.7,0.03 0.1,0.01 0.29593,0.0078 0.4,-0.02 0.19707,-0.05255 0.39848,-0.140958 0.5,-0.3 0.19849,-0.310969 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="csssssssccssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/40.svg b/src/asset/tile/frontier/basic/40.svg
index 9c1dbbf..68eb8f2 100644
--- a/src/asset/tile/frontier/basic/40.svg
+++ b/src/asset/tile/frontier/basic/40.svg
@@ -1,73 +1,313 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopborder.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1476" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1510" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path1478" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path1480" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path1482" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path1484" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path1486" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path1488" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path1490" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path1492" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path1494" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path1496" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path1498" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path1500" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path1502" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path1504" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path1506" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path1508" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="284.58" ns1:cy="193.577" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="1.28">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1476)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219" transform="matrix(1,0,0,-1,0,128.187)">
- <ns0:path d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="40.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1476"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1510"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path1478"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path1480"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path1482"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path1484"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path1486"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path1488"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path1490"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path1492"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path1494"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path1496"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path1498"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path1500"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path1502"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path1504"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path1506"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path1508"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="147.47062"
+ inkscape:cy="193.577"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.28">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1476)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g1219"
+ transform="matrix(1,0,0,-1,0,128.187)">
+ <path
+ d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/41.svg b/src/asset/tile/frontier/basic/41.svg
index 0fe2ac2..96a1716 100644
--- a/src/asset/tile/frontier/basic/41.svg
+++ b/src/asset/tile/frontier/basic/41.svg
@@ -1,92 +1,422 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2457" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g2527" transform="scale(1)">
- <ns0:g id="rtid-g2491" transform="translate(0,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2459" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2461" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2463" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2465" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2467" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2469" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2471" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2473" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2475" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2477" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2479" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2481" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2483" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2485" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2487" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2489" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2525" transform="matrix(-1,0,0,1,128,0)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2493" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2495" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2497" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2499" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2501" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2503" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2505" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2507" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2509" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2511" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2513" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2515" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2517" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2519" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2521" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2523" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="257.8228" ns1:cy="97.623722" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="3.9032294" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="41.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2457"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g2527"
+ transform="scale(1)">
+ <g
+ id="rtid-g2491"
+ transform="translate(0,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2459"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2461"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2463"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2465"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2467"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2469"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2471"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2473"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2475"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2477"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2479"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2481"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2483"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2485"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2487"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2489"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2525"
+ transform="matrix(-1,0,0,1,128,0)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2493"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2495"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2497"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2499"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2501"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2503"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2505"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2507"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2509"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2511"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2513"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2515"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2517"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2519"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2521"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2523"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="212.86003"
+ inkscape:cy="97.623722"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="3.9032294" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2457)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.491023,-0.27722 2.04,-0.75 0.662389,-0.57046 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.797893,-0.0921 1.2,-0.5 0.288077,-0.29225 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.109947,-0.350068 0.35,-0.54 0.669947,-0.530068 1.062471,-0.787804 1.32,-1.08 0.262489,-0.297824 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.09774,0.641967 -0.22,0.78 -0.187769,0.211997 -0.578636,0.491722 -1.26,1.03 -0.318643,0.251728 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cacsssssssssccsssssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use2110" transform="matrix(-1,0,0,1,128,0)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2457)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.491023,-0.27722 2.04,-0.75 0.662389,-0.57046 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.797893,-0.0921 1.2,-0.5 0.288077,-0.29225 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.109947,-0.350068 0.35,-0.54 0.669947,-0.530068 1.062471,-0.787804 1.32,-1.08 0.262489,-0.297824 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.09774,0.641967 -0.22,0.78 -0.187769,0.211997 -0.578636,0.491722 -1.26,1.03 -0.318643,0.251728 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.684011,1.68477 -1.12,2.1 -0.404546,0.38528 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cacsssssssssccsssssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use2110"
+ transform="matrix(-1,0,0,1,128,0)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/42.svg b/src/asset/tile/frontier/basic/42.svg
index 57b4408..39cb6c7 100644
--- a/src/asset/tile/frontier/basic/42.svg
+++ b/src/asset/tile/frontier/basic/42.svg
@@ -1,92 +1,422 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopleftbottomrightcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2656" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g2726" transform="scale(1)">
- <ns0:g id="rtid-g2690" transform="translate(0,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2658" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2660" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2662" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2664" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2666" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2668" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2670" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2672" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2674" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2676" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2678" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2680" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2682" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2684" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2686" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2688" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g2724" transform="rotate(180,64,64)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2692" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2694" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2696" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2698" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2700" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2702" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2704" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2706" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2708" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2710" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2712" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2714" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2716" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2718" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2720" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2722" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="347.89107" ns1:cy="35.365165" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="11.04" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="42.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2656"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g2726"
+ transform="scale(1)">
+ <g
+ id="rtid-g2690"
+ transform="translate(0,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2658"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2660"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2662"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2664"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2666"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2668"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2670"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2672"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2674"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2676"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2678"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2680"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2682"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2684"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2686"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2688"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g2724"
+ transform="rotate(180,64,64)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2692"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2694"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2696"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2698"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2700"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2702"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2704"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2706"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2708"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2710"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2712"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2714"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2716"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2718"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2720"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2722"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="331.99433"
+ inkscape:cy="35.365165"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="11.04" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2656)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.797893,-0.0921 1.2,-0.5 0.288077,-0.29225 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.109947,-0.350068 0.35,-0.54 0.669947,-0.530068 1.062471,-0.787804 1.32,-1.08 0.262489,-0.297824 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.09774,0.641967 -0.22,0.78 -0.187769,0.211997 -0.578636,0.491722 -1.26,1.03 -0.318643,0.251728 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="csssssssssssccsssssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="rotate(-180,64,63.99)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2656)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.227779,0.10247 0.45,0.3 0.227807,0.20249 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.797893,-0.0921 1.2,-0.5 0.288077,-0.29225 0.403654,-0.69966 0.43,-1 0.02366,-0.269704 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.109947,-0.350068 0.35,-0.54 0.669947,-0.530068 1.062471,-0.787804 1.32,-1.08 0.262489,-0.297824 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.09774,0.641967 -0.22,0.78 -0.187769,0.211997 -0.578636,0.491722 -1.26,1.03 -0.318643,0.251728 -0.485855,0.560602 -0.53,0.85 -0.04586,0.30066 0.01,0.57 0.06,0.83 0.05,0.26 0.100944,0.490088 0.08,0.71 -0.01906,0.20009 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.191534,0.19955 -0.25,0.4 -0.291536,0.99955 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="csssssssssssccsssssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="rotate(-180,64,63.99)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/43.svg b/src/asset/tile/frontier/basic/43.svg
index 1d88635..49d2954 100644
--- a/src/asset/tile/frontier/basic/43.svg
+++ b/src/asset/tile/frontier/basic/43.svg
@@ -1,69 +1,307 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btopleftcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask977" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1011" transform="scale(1)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path979" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path981" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path983" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path985" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path987" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path989" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path991" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path993" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path995" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path997" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path999" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path1001" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path1003" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path1005" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path1007" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path1009" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="343.93993" ns1:cy="8.1346804" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="7.8064589" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="43.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask977"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1011"
+ transform="scale(1)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path979"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path981"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path983"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path985"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path987"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path989"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path991"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path993"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path995"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path997"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path999"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path1001"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path1003"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path1005"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path1007"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path1009"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="321.45855"
+ inkscape:cy="8.1346804"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="7.8064589" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask977)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask977)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/44.svg b/src/asset/tile/frontier/basic/44.svg
index bd7dd24..35e0fa4 100644
--- a/src/asset/tile/frontier/basic/44.svg
+++ b/src/asset/tile/frontier/basic/44.svg
@@ -1,92 +1,423 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btoprightbottomleftcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask2944" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g3014" transform="scale(1)">
- <ns0:g id="rtid-g2978" transform="matrix(-1,0,0,1,128,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2946" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2948" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2950" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2952" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2954" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2956" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2958" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2960" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2962" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2964" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path2966" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path2968" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path2970" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path2972" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path2974" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path2976" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g3012" transform="matrix(1,0,0,-1,0,128)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path2980" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path2982" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path2984" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path2986" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path2988" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path2990" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path2992" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path2994" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path2996" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path2998" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path3000" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path3002" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path3004" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path3006" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path3008" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path3010" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="373.97962" ns1:cy="41.227525" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="7.8064589" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="44.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask2944"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g3014"
+ transform="scale(1)">
+ <g
+ id="rtid-g2978"
+ transform="matrix(-1,0,0,1,128,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2946"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2948"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2950"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2952"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2954"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2956"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2958"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2960"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2962"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2964"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path2966"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path2968"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path2970"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path2972"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path2974"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path2976"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g3012"
+ transform="matrix(1,0,0,-1,0,128)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path2980"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path2982"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path2984"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path2986"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path2988"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path2990"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path2992"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path2994"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path2996"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path2998"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path3000"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path3002"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path3004"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path3006"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path3008"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path3010"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="351.49824"
+ inkscape:cy="41.227525"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="7.8064589" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask2944)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046" transform="matrix(-1,0,0,1,128,0)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use1484" transform="rotate(-180,63.98,64)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask2944)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046"
+ transform="matrix(-1,0,0,1,128,0)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use1484"
+ transform="rotate(-180,63.98,64)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/45.svg b/src/asset/tile/frontier/basic/45.svg
index 0cbb416..ea39755 100644
--- a/src/asset/tile/frontier/basic/45.svg
+++ b/src/asset/tile/frontier/basic/45.svg
@@ -1,71 +1,311 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Btoprightcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1048" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1082" transform="matrix(-1,0,0,1,128,0)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path1050" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path1052" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path1054" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path1056" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path1058" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path1060" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path1062" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path1064" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path1066" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path1068" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path1070" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path1072" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path1074" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path1076" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path1078" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path1080" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="false" ns1:current-layer="rtid-layer3" ns1:cx="414.63463" ns1:cy="59.654785" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="7.8064589" />
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="45.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1048"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1082"
+ transform="matrix(-1,0,0,1,128,0)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path1050"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path1052"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path1054"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path1056"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path1058"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path1060"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path1062"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path1064"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path1066"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path1068"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path1070"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path1072"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path1074"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path1076"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path1078"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path1080"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="392.15325"
+ inkscape:cy="8.4151634"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="7.8064589" />
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1048)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1046" transform="matrix(-1,0,0,1,128,0)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscsccccsscccccccscccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1048)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1046"
+ transform="matrix(-1,0,0,1,128,0)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75 0,103.75 v 0.5 c 0.7015,0 2.386,0.25 3.914,0.15 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15 -1.7,0.15 v 0.5 c 0.75,0 1.23,0.05 1.88,-0.25 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25 c 0.8,0 1.49,-0.25 2.04,-0.75 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.52,0.4 0.89,0.4 0.37,0.1 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.57,0.5 -0.77,0.4 -0.21,0 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.37,-0.4 -0.65,-0.4 -0.14,-0.1 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55 -1.7,0.65 v 0.5"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscsccccsscccccccscccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25 c 0.85,0 1.51,-0.45 2.11,-1.05 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85 -1.77,0.95 v 0.5"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 h -0.5"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/5.svg b/src/asset/tile/frontier/basic/5.svg
index 1c3df05..153a778 100644
--- a/src/asset/tile/frontier/basic/5.svg
+++ b/src/asset/tile/frontier/basic/5.svg
@@ -1,73 +1,312 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomandrightborders.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1933" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1967" transform="matrix(-1,0,0,1,128,0)">
- <ns0:path d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z" id="rtid-path1935" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z" id="rtid-path1937" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z" id="rtid-path1939" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z" id="rtid-path1941" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z" id="rtid-path1943" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z" id="rtid-path1945" style="fill:#ffffff;stroke-width:0.5216" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z" id="rtid-path1947" style="fill:#ffffff;stroke-width:0.5215" ns2:nodetypes="cccssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z" id="rtid-path1949" style="fill:#ffffff;stroke-width:0.5214" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z" id="rtid-path1951" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z" id="rtid-path1953" style="fill:#ffffff;stroke-width:0.5221" ns2:nodetypes="cccsssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z" id="rtid-path1955" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z" id="rtid-path1957" style="fill:#ffffff;stroke-width:0.5232" ns2:nodetypes="cccssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z" id="rtid-path1959" style="fill:#ffffff;stroke-width:0.5231" ns2:nodetypes="cccsssssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z" id="rtid-path1961" style="fill:#ffffff;stroke-width:0.5212" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z" id="rtid-path1963" style="fill:#ffffff;stroke-width:0.5217" ns2:nodetypes="cccsssssssccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z" id="rtid-path1965" style="fill:#ffffff;stroke-width:0.5213" ns2:nodetypes="cccssssssssssssssccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="94.0703" ns1:cy="230.083" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="0.975807">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1933)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1931" transform="matrix(-1,0,0,1,128,0)">
- <ns0:path d="M 7.75,96 C 7.74413,96.0179 7.6706,96.2775 7.66406,96.2969 7.60119,96.4836 7.50682,96.7367 7.39258,97.0449 7.1641,97.6613 6.85018,98.4935 6.51562,99.457 5.84652,101.384 5.09228,103.836 4.75977,106.164 V 106.166 C 4.27027,109.713 4.25383,117.154 4.32422,118.414 4.36917,119.211 4.86061,120.005 5.58203,120.771 6.30345,121.538 7.26793,122.279 8.31836,122.938 10.4192,124.254 12.8433,125.243 14.4141,125.35 H 14.4219 14.4297 C 15.2725,125.35 16.3526,124.72 17.7422,123.971 19.1313,123.221 20.7935,122.329 22.6152,121.738 26.5001,120.5 31.1618,120.265 32,120.25 V 119.75 C 31.3263,119.75 26.5914,119.947 22.4648,121.262 H 22.4629 C 20.5853,121.871 18.8943,122.779 17.5039,123.529 16.116,124.278 14.9938,124.846 14.4355,124.848 13.0448,124.75 10.6273,123.794 8.58398,122.514 7.56017,121.872 6.62615,121.149 5.94727,120.428 5.26838,119.707 4.85826,118.99 4.82422,118.387 4.76057,117.247 4.77936,109.687 5.25586,106.234 5.58032,103.963 6.32414,101.534 6.98828,99.6211 7.32035,98.6647 7.63203,97.8373 7.86133,97.2188 7.97598,96.9095 8.07015,96.6528 8.13672,96.4551 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z" id="rtid-path1429-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccccccscccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,96 C 39.7589,96.1209 39.7815,96.4553 39.7949,96.6895 39.8157,97.0537 39.8346,97.5392 39.8301,98.0879 39.8211,99.1853 39.7142,100.535 39.3457,101.643 39.0687,102.475 38.5295,103.063 37.9902,103.717 37.451,104.37 36.915,105.096 36.7617,106.164 36.6377,107.029 37.1772,107.985 37.6875,109.01 38.1978,110.034 38.7,111.113 38.6699,112.068 38.5768,115.018 38.3864,116.694 38.4316,117.465 38.4718,118.154 38.4286,119.184 38.6504,120.219 38.8722,121.253 39.378,122.311 40.5059,123.008 41.5905,123.678 42.8156,123.789 43.9336,123.754 45.0516,123.718 46.0824,123.542 46.752,123.588 47.2156,123.619 48.0051,123.932 48.9785,124.15 49.952,124.369 51.1332,124.484 52.4453,124.088 52.6834,124.016 53.0799,123.819 53.623,123.545 54.1662,123.271 54.8285,122.924 55.4941,122.576 56.1597,122.228 56.8282,121.878 57.3789,121.6 57.9297,121.322 58.382,121.112 58.5391,121.061 60.5622,120.404 61.7683,120.205 62.5352,120.166 63.1712,120.134 63.6896,120.222 64,120.25 V 119.75 C 63.751,119.75 63.3364,119.624 62.5098,119.666 61.6832,119.708 60.435,119.919 58.3848,120.584 58.1343,120.665 57.7103,120.872 57.1543,121.152 56.5983,121.433 55.9293,121.785 55.2637,122.133 54.598,122.481 53.9344,122.826 53.3965,123.098 52.8586,123.369 52.4188,123.574 52.3008,123.609 51.0931,123.974 50.0162,123.87 49.0898,123.662 48.1635,123.454 47.4105,123.13 46.7852,123.088 46.0016,123.035 44.991,123.22 43.918,123.254 42.8449,123.288 41.7295,123.177 40.7676,122.582 39.7732,121.967 39.3432,121.067 39.1387,120.113 38.9342,119.16 38.9745,118.171 38.9316,117.436 38.8943,116.8 39.0763,115.048 39.1699,112.084 39.2057,110.949 38.6476,109.817 38.1348,108.787 37.6219,107.758 37.1741,106.82 37.2578,106.236 37.3927,105.297 37.8477,104.674 38.375,104.035 38.9023,103.396 39.5044,102.75 39.8203,101.801 40.2175,100.606 40.3209,99.2174 40.3301,98.0918 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z" id="rtid-path1429-3-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,119.75 C 95.8696,119.75 95.4649,119.725 94.9004,119.707 94.3359,119.689 93.5984,119.677 92.752,119.707 91.059,119.768 88.9282,119.992 86.8516,120.652 H 86.8496 C 83.1999,121.836 82.072,120.946 79.9922,120.918 79.4506,120.911 78.7617,121.114 77.9551,121.352 77.1484,121.589 76.236,121.869 75.3184,122.037 74.4007,122.205 73.4814,122.26 72.666,122.07 71.8506,121.88 71.1366,121.458 70.5781,120.625 69.9512,119.69 69.9225,118.382 70.0879,117.043 70.2533,115.704 70.6068,114.358 70.6602,113.328 70.693,112.697 70.6395,111.535 70.6426,110.078 70.6456,108.621 70.7028,106.882 70.9512,105.15 71.2795,102.862 71.2675,102.437 71.9258,100.531 72.2674,99.5424 72.3393,99.0056 72.3242,98.4277 72.3091,97.8498 72.219,97.2389 72.25,96 H 71.75 C 71.7428,97.0234 71.8117,97.9639 71.8242,98.4414 71.8381,98.9747 71.7841,99.409 71.4531,100.367 70.7864,102.297 70.7839,102.802 70.457,105.08 70.2035,106.847 70.1457,108.607 70.1426,110.076 70.1395,111.545 70.1898,112.734 70.1602,113.303 70.1117,114.238 69.7626,115.599 69.5918,116.982 69.421,118.366 69.4217,119.798 70.1621,120.902 70.7884,121.836 71.6344,122.345 72.5508,122.559 73.4671,122.772 74.4525,122.703 75.4082,122.527 76.3639,122.352 77.2927,122.069 78.0957,121.832 78.8987,121.595 79.5875,121.413 79.9863,121.418 81.9203,121.444 83.2538,122.343 87.0039,121.127 L 87.002,121.129 C 89.0153,120.489 91.1058,120.267 92.7695,120.207 93.6014,120.177 94.326,120.189 94.8828,120.207 95.315,120.221 95.7909,120.243 96,120.25 Z" id="rtid-path1429-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="csccccccscsccccscccccscccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,119.75 C 125.968,119.784 125.01,119.665 124.115,119.625 123.221,119.585 122.397,119.631 120.719,119.994 120.567,120.027 120.238,120.034 119.848,120.014 119.457,119.993 118.997,119.951 118.535,119.912 118.073,119.873 117.608,119.835 117.201,119.824 116.795,119.813 116.455,119.822 116.188,119.906 115.308,120.185 114.615,120.122 114.02,119.881 113.424,119.639 112.923,119.207 112.48,118.725 112.038,118.243 111.657,117.714 111.287,117.291 110.917,116.868 110.546,116.512 110.061,116.512 108.572,116.412 107.025,116.689 105.883,116.645 105.31,116.622 104.853,116.518 104.551,116.293 104.249,116.068 104.058,115.719 104.035,115.068 V 115.062 115.057 C 103.979,114.379 103.604,113.352 103.314,112.023 103.025,110.695 102.819,109.094 103.078,107.389 103.224,106.427 103.538,105.716 103.854,104.971 104.169,104.225 104.482,103.445 104.584,102.396 104.715,101.052 104.631,100.276 104.514,99.4375 104.397,98.5986 104.25,97.6918 104.25,96 H 103.75 C 103.769,97.4996 103.91,98.7336 104.018,99.5059 104.133,100.337 104.215,101.042 104.088,102.348 103.993,103.322 103.705,104.035 103.393,104.775 103.08,105.516 102.739,106.284 102.582,107.314 102.31,109.105 102.53,110.768 102.826,112.129 103.123,113.49 103.494,114.578 103.537,115.1 V 115.088 C 103.564,115.837 103.821,116.374 104.252,116.695 104.683,117.017 105.243,117.121 105.863,117.145 107.104,117.192 108.637,116.915 110.043,117.012 H 110.053 110.061 C 110.275,117.012 110.565,117.226 110.91,117.621 111.255,118.016 111.644,118.552 112.113,119.062 112.582,119.573 113.136,120.061 113.832,120.344 114.528,120.626 115.363,120.692 116.338,120.383 116.478,120.339 116.801,120.314 117.188,120.324 117.574,120.335 118.032,120.371 118.492,120.41 118.952,120.449 119.415,120.491 119.82,120.512 120.225,120.533 120.564,120.539 120.824,120.482 122.478,120.124 123.227,120.087 124.092,120.125 124.901,120.161 126.204,120.264 128,120.25 Z" id="rtid-path1429-3-6-7-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,64 C 103.752,64.7276 103.773,69.8956 103.102,74.3066 V 74.3086 C 102.846,76.1016 103.075,77.4813 103.379,78.5508 103.682,79.6168 104.043,80.3855 104.088,80.9004 104.108,81.4973 103.751,82.1522 103.176,82.8301 102.6,83.5093 101.823,84.2006 101.09,84.8828 100.356,85.565 99.6657,86.2353 99.252,86.9199 99.0451,87.2622 98.9048,87.613 98.8848,87.9746 98.8647,88.3362 98.9743,88.7028 99.2246,89.0332 99.2306,89.0411 99.2966,89.1646 99.3652,89.332 99.4339,89.4994 99.5177,89.7212 99.6191,89.9766 99.822,90.4872 100.093,91.1361 100.453,91.8008 101.173,93.1301 102.258,94.5413 103.912,94.9805 105.518,95.4067 107.608,94.9132 109.355,94.2754 110.229,93.9565 111.016,93.5986 111.607,93.2852 111.903,93.1284 112.15,92.9833 112.338,92.8574 112.526,92.7315 112.645,92.6603 112.74,92.5 112.839,92.3329 112.866,92.1453 112.881,91.9238 112.896,91.7023 112.89,91.4476 112.877,91.166 112.85,90.6029 112.789,89.937 112.77,89.2852 112.75,88.6333 112.776,87.9953 112.904,87.5137 113.033,87.032 113.237,86.7351 113.59,86.623 113.75,86.5725 114.162,86.6393 114.654,86.8398 115.147,87.0404 115.725,87.3472 116.299,87.6602 116.873,87.9731 117.441,88.294 117.932,88.5273 118.177,88.644 118.403,88.7388 118.607,88.8008 118.811,88.8628 118.992,88.9002 119.182,88.8555 121.333,88.3476 125.412,88.2846 128,88.25 V 87.75 C 125.417,87.7844 121.404,87.8178 119.068,88.3691 119.039,88.376 118.916,88.3722 118.752,88.3223 118.588,88.2723 118.379,88.1849 118.146,88.0742 117.681,87.8528 117.116,87.5357 116.539,87.2207 115.962,86.9057 115.373,86.5926 114.844,86.377 114.314,86.1613 113.849,86.0168 113.439,86.1465 112.886,86.3219 112.574,86.8157 112.422,87.3848 112.27,87.9539 112.25,88.6261 112.27,89.2988 112.289,89.9715 112.351,90.6439 112.377,91.1895 112.39,91.4622 112.395,91.7035 112.383,91.8906 112.37,92.0777 112.331,92.2116 112.311,92.2461 112.332,92.2096 112.226,92.3296 112.059,92.4414 111.892,92.5532 111.658,92.693 111.373,92.8438 110.804,93.1452 110.035,93.4961 109.184,93.8066 107.482,94.4278 105.443,94.8703 104.041,94.498 102.593,94.1138 101.582,92.8363 100.893,91.5625 100.548,90.9256 100.284,90.295 100.084,89.791 99.9839,89.539 99.9006,89.3192 99.8281,89.1426 99.7557,88.9659 99.7079,88.8424 99.623,88.7305 99.4345,88.4816 99.3709,88.2521 99.3848,88.002 99.3986,87.7518 99.5002,87.4747 99.6797,87.1777 100.039,86.5837 100.704,85.9267 101.432,85.25 102.159,84.5733 102.946,83.8744 103.557,83.1543 104.167,82.4342 104.617,81.681 104.588,80.8789 V 80.873 80.8672 C 104.531,80.1822 104.151,79.4391 103.859,78.4141 103.568,77.3895 103.352,76.0967 103.596,74.3809 V 74.3789 C 104.3,69.7492 104.25,64.3795 104.25,64 Z" id="rtid-path1429-3-6-7-5-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,64 C 71.7591,65.5714 71.8302,67.0066 71.8008,67.8496 71.7693,68.7512 71.6353,69.3402 71.207,69.9727 71.1257,70.0927 71.0312,70.1192 70.8047,70.0977 70.5782,70.0761 70.2661,69.979 69.9316,69.8652 69.5972,69.7515 69.2384,69.6232 68.8789,69.5586 68.5194,69.494 68.146,69.4904 67.8164,69.668 67.094,70.0569 66.7262,70.9815 66.4727,71.918 66.2191,72.8545 66.1009,73.8313 66.0215,74.3535 65.4786,77.9211 65.8996,84.6875 66.002,85.9199 66.0163,86.3207 66.1588,86.6625 66.4004,86.9141 66.642,87.1656 66.9689,87.3267 67.3438,87.4297 68.0935,87.6357 69.0544,87.6218 70.0977,87.5332 72.1841,87.3561 74.6131,86.8655 75.9863,86.9648 H 75.9941 76.0039 C 76.5972,86.9648 77.62,87.3999 78.9336,87.707 80.2472,88.0141 81.88,88.1748 83.7852,87.5723 84.5283,87.3372 85.3891,87.4751 86.2734,87.666 87.1578,87.857 88.0565,88.1024 88.9004,87.9785 90.0304,87.8127 90.8129,87.8754 91.8203,87.9824 92.7675,88.083 94.2477,88.2336 96,88.25 V 87.75 C 94.077,87.75 92.8875,87.5921 91.873,87.4844 90.8586,87.3767 90.0098,87.309 88.8281,87.4824 88.1346,87.5842 87.277,87.3716 86.3789,87.1777 85.4808,86.9838 84.5334,86.8095 83.6348,87.0938 81.8313,87.6641 80.3094,87.5158 79.0469,87.2207 77.7869,86.9261 76.8154,86.4686 76.0098,86.4668 74.4825,86.359 72.0921,86.8624 70.0566,87.0352 69.0369,87.1217 68.1115,87.1218 67.4766,86.9473 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 C 66.4017,84.7115 65.9924,77.8679 66.5156,74.4297 66.5976,73.8902 66.7142,72.9383 66.9551,72.0488 67.1959,71.1594 67.5811,70.3614 68.0527,70.1074 68.2373,70.008 68.4868,69.9965 68.7891,70.0508 69.0913,70.1051 69.4342,70.2231 69.7715,70.3379 70.1088,70.4526 70.4383,70.5655 70.7559,70.5957 71.0734,70.6259 71.4237,70.5452 71.6211,70.2539 72.1061,69.5378 72.2658,68.8132 72.2988,67.8672 72.3318,66.9211 72.25,65.7359 72.25,64 Z" id="rtid-path1429-3-6-7-5-3-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,64 C 39.7459,64.9064 39.7094,66.456 39.5938,67.8125 39.4699,69.2642 39.2467,70.7154 38.8984,71.543 38.6239,72.1942 37.7361,73.4248 37.0762,74.6816 36.746,75.3104 36.4705,75.9506 36.3555,76.5664 36.2404,77.1822 36.2928,77.7918 36.6562,78.2793 38.5344,80.7983 38.7552,82.977 38.9316,84.4258 39.0198,85.1502 39.062,85.7146 39.4277,86.0723 39.6106,86.2511 39.8772,86.3347 40.1738,86.3203 40.4705,86.3059 40.8126,86.2101 41.2461,86.0371 41.5488,85.9163 41.7646,85.8883 41.9062,85.9082 42.0479,85.9281 42.1291,85.9825 42.2129,86.0898 42.3805,86.3045 42.4868,86.7729 42.5879,87.3066 42.689,87.8404 42.7964,88.4382 43.0938,88.9434 43.3911,89.4485 43.9112,89.8437 44.7051,89.8984 H 44.7148 44.7227 C 46.2229,89.8984 48.5984,89.0436 52.3027,87.8691 52.7323,87.7329 53.7019,87.8992 54.666,88.1191 55.6302,88.339 56.5837,88.6034 57.2617,88.4766 58.7344,88.2007 59.579,88.1561 60.4805,88.1738 61.3169,88.1902 62.5516,88.259 64,88.25 V 87.75 C 62.3616,87.7738 61.4146,87.692 60.4902,87.6738 59.5659,87.6557 58.6677,87.7038 57.1699,87.9844 56.7295,88.0668 55.7474,87.854 54.7773,87.6328 53.8073,87.4116 52.8441,87.1732 52.1523,87.3926 48.448,88.5671 46.0336,89.3936 44.7324,89.3965 44.0844,89.3488 43.7581,89.0848 43.5254,88.6895 43.2912,88.2917 43.1791,87.7459 43.0781,87.2129 42.9772,86.6799 42.8996,86.16 42.6055,85.7832 42.4584,85.5948 42.2392,85.4513 41.9746,85.4141 41.7101,85.3769 41.4131,85.4316 41.0605,85.5723 40.6542,85.7344 40.3517,85.8104 40.1484,85.8203 39.9452,85.8302 39.8557,85.7915 39.7773,85.7148 39.6206,85.5615 39.5173,85.0851 39.4297,84.3652 39.2544,82.9254 39.007,80.5962 37.0566,77.9805 36.7973,77.6326 36.746,77.1935 36.8457,76.6602 36.9454,76.1268 37.2015,75.5197 37.5195,74.9141 38.1555,73.7029 39.0284,72.5225 39.3594,71.7363 39.7567,70.7923 39.9682,69.3282 40.0938,67.8555 40.2193,66.3827 40.25,64.9102 40.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-93" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 7.75,64 C 7.70545,66.0095 7.24505,67.1644 6.68359,68.0684 6.09283,69.0195 5.38169,70.0494 5.04883,72.3906 4.97398,72.9173 5.10015,73.6566 5.16406,74.5156 5.22798,75.3746 5.236,76.3324 4.98047,77.1875 4.63496,78.3436 3.99971,79.4731 3.43945,80.5137 2.87919,81.5542 2.38099,82.4979 2.37305,83.3711 2.36493,84.264 2.02912,85.4163 1.68945,86.3965 1.51962,86.8866 1.35044,87.3353 1.22266,87.6973 1.15877,87.8782 1.1049,88.038 1.06641,88.1738 1.02792,88.3097 0.999524,88.4116 1.00391,88.5352 1.05355,89.9353 2.46874,91.6919 5.05859,93.1504 6.80023,94.1311 9.69217,94.3991 12.375,94.4668 13.7164,94.5006 15.0024,94.4788 16.0547,94.457 17.107,94.4352 17.9362,94.4142 18.3125,94.4414 18.7341,94.4719 19.0702,94.2806 19.3125,94.0117 19.5548,93.7428 19.7452,93.4034 20.002,93.0371 20.5154,92.3046 21.269,91.4492 23.0723,90.8789 23.8476,90.6337 24.2874,89.954 24.6934,89.3672 25.0993,88.7804 25.4601,88.2992 25.9941,88.209 28.5462,87.7778 29.872,88.1744 32,88.25 V 87.75 C 29.7305,87.7028 28.65,87.2523 25.9121,87.7148 25.1363,87.8459 24.6901,88.491 24.2812,89.082 23.8724,89.6731 23.4887,90.2231 22.9219,90.4023 21.0166,91.0049 20.1355,91.9744 19.5918,92.75 19.32,93.1378 19.1255,93.4734 18.9414,93.6777 18.7573,93.8821 18.6242,93.9634 18.3477,93.9434 17.905,93.9113 17.0954,93.9353 16.0449,93.957 14.9945,93.9788 13.7149,94.0003 12.3867,93.9668 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 1.5039,88.5173 1.51374,88.4256 1.54688,88.3086 1.58001,88.1916 1.63102,88.0399 1.69336,87.8633 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z" id="rtid-path1429-3-6-7-5-3-5-6-1" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,55.75 C 30.7706,55.75 29.9617,55.8559 29.3789,56.0527 28.7961,56.2496 28.4429,56.5383 28.1738,56.8281 27.6358,57.4078 27.4404,57.9403 25.875,58.2656 25.7525,58.2911 25.5439,58.2338 25.2891,58.0801 25.0342,57.9263 24.7459,57.6927 24.4512,57.457 24.1565,57.2214 23.8551,56.983 23.5527,56.8125 23.2503,56.642 22.9249,56.5246 22.5977,56.6289 21.7224,56.9079 21.3056,57.6704 20.9609,58.3906 20.6163,59.1109 20.318,59.8022 19.7773,60.1387 18.9423,60.6583 17.7235,61.0026 16.668,61.1289 16.1402,61.1921 15.6529,61.2007 15.2812,61.1582 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 H 7.75 C 7.73169,33.7885 7.90046,35.2142 7.98633,36.1387 8.07785,37.124 8.07472,37.9447 7.63281,39.416 7.45659,40.0028 6.88652,40.2715 6.24219,40.584 5.92002,40.7402 5.58725,40.9026 5.30859,41.1406 5.02993,41.3787 4.80864,41.7071 4.75,42.1367 4.60687,43.1855 4.88219,44.4813 5.17188,45.8555 5.46156,47.2297 5.77214,48.6773 5.75,49.9609 5.73269,50.9645 5.38203,51.9064 5.03125,52.668 4.85586,53.0488 4.68217,53.3823 4.54883,53.6641 4.41549,53.9458 4.30592,54.1523 4.32031,54.4043 4.34182,54.7808 4.41652,55.0721 4.57227,55.2969 4.72801,55.5217 4.9589,55.6563 5.20898,55.7344 5.70916,55.8905 6.32343,55.8835 7.125,56.043 8.72815,56.3619 11.0808,57.2922 14.2344,61.2559 14.4468,61.5229 14.7973,61.6074 15.2246,61.6562 15.6519,61.7051 16.1689,61.6917 16.7266,61.625 17.8418,61.4916 19.1097,61.1433 20.043,60.5625 20.764,60.1138 21.0761,59.3076 21.4121,58.6055 21.7481,57.9034 22.082,57.3184 22.75,57.1055 22.8689,57.0676 23.0594,57.1075 23.3086,57.248 23.5578,57.3886 23.8454,57.6131 24.1387,57.8477 24.432,58.0822 24.7308,58.3266 25.0312,58.5078 25.3317,58.6891 25.6455,58.8247 25.9766,58.7559 27.6514,58.4078 28.0654,57.6804 28.541,57.168 28.7788,56.9118 29.0341,56.696 29.5391,56.5254 29.9927,56.3721 31.0025,56.2706 32,56.25 Z" id="rtid-path1429-2-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,32 C 39.6686,35.1631 38.9577,37.2367 38.1484,38.8906 37.909,39.3799 37.3209,40.609 36.7617,41.9277 36.2025,43.2465 35.6712,44.6351 35.543,45.5234 35.276,47.3721 36.0796,49.1405 37.0059,50.5684 37.469,51.2823 37.9662,51.9146 38.3848,52.4297 38.8034,52.9448 39.1485,53.3543 39.2832,53.5723 40.0848,54.8688 40.1484,56.417 40.3711,57.7207 40.4824,58.3725 40.6325,58.9694 40.9805,59.4375 41.3285,59.9056 41.8835,60.2121 42.6758,60.2656 H 42.6836 42.6914 C 43.0831,60.2656 43.7644,60.1809 44.6562,60.0371 45.5481,59.8933 46.6393,59.6886 47.8027,59.4473 50.1291,58.9648 52.739,58.3338 54.6055,57.7285 58.5655,56.4668 60.1726,56.3195 64,56.25 V 55.75 C 59.9084,55.8178 58.545,55.9489 54.4551,57.252 H 54.4531 C 52.6198,57.8466 50.0159,58.477 47.7012,58.957 46.5438,59.1971 45.4581,59.4008 44.5762,59.543 43.7007,59.6841 43.0216,59.7625 42.7051,59.7637 42.0213,59.7163 41.6451,59.4941 41.3809,59.1387 41.1159,58.7822 40.9701,58.26 40.8633,57.6348 40.6497,56.3843 40.5946,54.7442 39.707,53.3086 39.5255,53.0149 39.1861,52.6234 38.7715,52.1133 38.3569,51.6031 37.8732,50.9867 37.4258,50.2969 36.5309,48.9172 35.7972,47.2573 36.0371,45.5957 36.147,44.8348 36.669,43.4288 37.2227,42.123 37.7764,40.8173 38.3617,39.5914 38.5977,39.1094 39.4461,37.3754 40.2065,35.4289 40.25,32 Z" id="rtid-path1429-3-9-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccsccscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,32 C 71.7468,34.801 71.7028,34.5586 71.0742,38.9707 71.0004,39.4885 70.5731,40.0927 70.0957,40.8477 69.6183,41.6026 69.1051,42.5187 68.9395,43.7148 68.6823,45.5713 68.1173,46.3844 67.5879,47.002 67.3232,47.3107 67.0593,47.5702 66.8457,47.8887 66.6321,48.2072 66.4803,48.5885 66.4609,49.0859 66.4405,49.6085 66.3282,50.6359 66.2715,51.6387 66.2431,52.1401 66.2285,52.638 66.248,53.0742 66.2676,53.5104 66.3113,53.8806 66.4434,54.166 66.6508,54.6143 66.6585,55.7657 66.5664,56.8984 66.4743,58.0312 66.3133,59.154 66.3066,59.7559 66.2957,60.7236 66.731,61.3839 67.4023,61.7246 68.0736,62.0653 68.9454,62.1299 69.8945,62.0957 71.7929,62.0273 74.0385,61.5416 75.4414,61.6367 75.8853,61.6668 76.5119,61.4948 77.334,61.2246 78.1561,60.9544 79.149,60.575 80.2129,60.1562 82.3393,59.3193 84.7462,58.3233 86.5645,57.7285 L 86.5684,57.7266 C 90.5648,56.4658 92.2928,56.2606 96,56.25 V 55.75 C 92.0379,55.75 90.5427,55.9492 86.4141,57.252 H 86.4121 C 84.5606,57.8574 82.1507,58.8564 80.0293,59.6914 78.9686,60.1089 77.9816,60.4858 77.1777,60.75 76.3739,61.0142 75.7291,61.1559 75.4746,61.1387 73.9274,61.0337 71.7019,61.53 69.877,61.5957 68.9645,61.6286 68.1619,61.5478 67.6289,61.2773 67.0959,61.0069 66.7973,60.5912 66.8066,59.7617 66.8124,59.2481 66.9727,58.0917 67.0664,56.9395 67.1601,55.7872 67.2183,54.6463 66.8984,53.9551 66.8243,53.7948 66.7644,53.4587 66.7461,53.0508 66.7278,52.6428 66.7417,52.1601 66.7695,51.668 66.8252,50.6837 66.9388,49.6728 66.9609,49.1055 66.9769,48.6946 67.0864,48.4295 67.2617,48.168 67.4371,47.9065 67.6888,47.6528 67.9688,47.3262 68.5287,46.673 69.167,45.7215 69.4355,43.7832 69.5867,42.6912 70.0534,41.8504 70.5195,41.1133 70.9857,40.3761 71.4671,39.7519 71.5684,39.041 72.2188,34.4749 72.25,35.1813 72.25,32 Z" id="rtid-path1429-3-6-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 103.75,32 C 103.74,33.3903 103.469,34.2117 103.047,34.707 102.593,35.2391 101.91,35.7792 101.295,37.209 100.432,39.2126 99.6066,41.4686 99.3281,43.4219 99.2628,43.881 99.4581,44.2959 99.7383,44.6621 100.018,45.0283 100.392,45.369 100.76,45.7227 101.495,46.43 102.178,47.1635 102.15,48.1074 102.109,49.5179 101.655,50.8878 101.213,51.9941 100.992,52.5473 100.775,53.0338 100.613,53.4336 100.451,53.8334 100.327,54.1182 100.352,54.4102 100.418,55.2031 100.922,56.0056 101.654,56.7871 102.386,57.5687 103.357,58.3291 104.412,59.002 106.522,60.3476 108.934,61.3496 110.5,61.3496 110.612,61.3496 110.738,61.2714 110.791,61.1875 110.844,61.1036 110.857,61.0255 110.865,60.9473 110.882,60.7908 110.866,60.6162 110.838,60.4043 110.781,59.9805 110.666,59.4225 110.559,58.8164 110.344,57.6042 110.202,56.1945 110.533,55.5215 111.109,54.3531 112.298,53.6223 113.654,53.0977 115.01,52.573 116.51,52.2631 117.66,51.8984 118.056,51.7728 118.269,51.8459 118.479,52.0371 118.688,52.2283 118.872,52.5782 119.031,52.9883 119.191,53.3984 119.33,53.862 119.5,54.2812 119.67,54.7005 119.866,55.0859 120.203,55.3184 120.484,55.5123 120.929,55.666 121.51,55.8164 122.09,55.9668 122.798,56.1018 123.555,56.2031 124.969,56.3924 126.76,56.4374 128,56.25 V 55.75 C 126.826,55.9723 125.1,55.9051 123.621,55.707 122.882,55.608 122.19,55.4759 121.635,55.332 121.079,55.1882 120.65,55.0211 120.486,54.9082 120.301,54.7801 120.12,54.4808 119.963,54.0938 119.806,53.7067 119.666,53.2427 119.496,52.8066 119.327,52.3706 119.131,51.9568 118.814,51.668 118.497,51.3791 118.034,51.2556 117.51,51.4219 116.403,51.7729 114.882,52.0855 113.473,52.6309 112.063,53.1762 110.743,53.9633 110.084,55.3008 109.622,56.2384 109.849,57.6729 110.066,58.9023 110.175,59.5171 110.29,60.0795 110.342,60.4707 110.363,60.6303 110.365,60.7331 110.363,60.8164 109.003,60.7685 106.684,59.8594 104.682,58.582 103.654,57.9264 102.711,57.1836 102.02,56.4453 101.328,55.707 100.9,54.9721 100.85,54.3691 100.845,54.3144 100.92,54.0071 101.076,53.6211 101.233,53.2351 101.452,52.744 101.678,52.1797 102.129,51.0511 102.606,49.6282 102.65,48.1211 102.685,46.933 101.851,46.0809 101.105,45.3633 100.733,45.0045 100.376,44.6722 100.137,44.3594 99.8974,44.0465 99.7841,43.7742 99.8242,43.4922 100.091,41.6229 100.899,39.3924 101.754,37.4082 102.335,36.0575 102.923,35.6207 103.426,35.0312 103.928,34.4418 104.285,33.7087 104.25,32 Z" id="rtid-path1429-3-6-7-2-8" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,23.75 C 126.348,23.7003 125.42,24.2716 124.797,24.7695 124.485,25.0185 124.246,25.2388 124.047,25.3477 123.848,25.4565 123.718,25.4831 123.469,25.373 122.047,24.7447 120.614,24.5417 118.424,25.252 H 118.422 C 118.213,25.3198 117.766,25.1758 117.295,24.9863 117.059,24.8916 116.818,24.7948 116.576,24.7383 116.335,24.6817 116.081,24.6603 115.844,24.7695 114.43,25.4215 113.331,26.4908 112.449,27.3691 112.008,27.8083 111.619,28.2002 111.287,28.4668 110.955,28.7334 110.689,28.8523 110.518,28.8398 110.251,28.8205 110.045,28.6675 109.822,28.3672 109.6,28.0669 109.39,27.6336 109.156,27.1523 108.689,26.1898 108.126,25.0261 107.018,24.3418 105.884,23.642 104.317,23.4655 103.031,23.2656 102.389,23.1657 101.814,23.0602 101.424,22.9082 101.229,22.8322 101.083,22.7449 100.992,22.6562 100.901,22.5676 100.859,22.4863 100.85,22.3691 100.85,22.3778 100.864,22.2809 100.934,22.1484 101.003,22.016 101.115,21.8422 101.254,21.6426 101.531,21.2433 101.915,20.7346 102.307,20.1504 103.09,18.982 103.912,17.5116 103.959,15.9453 103.994,14.784 103.213,13.6831 102.498,12.6855 102.14,12.1868 101.794,11.7134 101.557,11.291 101.32,10.8686 101.207,10.5066 101.248,10.2383 101.304,9.86904 101.446,9.63991 101.645,9.45703 101.843,9.27415 102.108,9.14217 102.4,9.02148 102.693,8.9008 103.01,8.7935 103.301,8.63477 103.591,8.47603 103.864,8.25378 104.014,7.91406 104.467,6.88656 104.505,5.59067 104.449,4.20898 104.393,2.8273 104.235,1.35423 104.25,0 H 103.75 C 103.754,1.32161 103.897,2.95144 103.949,4.22852 104.004,5.58647 103.95,6.82163 103.557,7.71289 103.463,7.92412 103.298,8.06567 103.061,8.19531 102.823,8.32496 102.522,8.43035 102.211,8.55859 101.9,8.68684 101.576,8.84012 101.305,9.08984 101.033,9.33957 100.823,9.69195 100.752,10.1621 100.683,10.616 100.861,11.0709 101.121,11.5352 101.381,11.9994 101.737,12.4811 102.092,12.9766 102.802,13.9675 103.488,15.0133 103.461,15.9297 103.419,17.3278 102.657,18.731 101.893,19.8711 101.51,20.4412 101.13,20.946 100.844,21.3594 100.7,21.5661 100.58,21.7497 100.492,21.916 100.405,22.0823 100.336,22.2252 100.352,22.4102 100.371,22.6467 100.481,22.8569 100.643,23.0137 100.804,23.1704 101.008,23.282 101.242,23.373 101.71,23.5552 102.304,23.6588 102.953,23.7598 104.251,23.9617 105.768,24.1591 106.754,24.7676 107.709,25.3572 108.239,26.4106 108.705,27.3711 108.938,27.8514 109.155,28.3053 109.422,28.666 109.689,29.0267 110.034,29.3073 110.482,29.3398 110.876,29.3683 111.232,29.1541 111.602,28.8574 111.971,28.5608 112.362,28.1597 112.801,27.7227 113.678,26.8485 114.739,25.8305 116.053,25.2246 116.137,25.1857 116.274,25.1808 116.461,25.2246 116.648,25.2685 116.873,25.3551 117.107,25.4492 117.575,25.6375 118.082,25.8894 118.578,25.7285 120.683,25.0464 121.918,25.2339 123.268,25.8301 123.638,25.9935 123.997,25.9443 124.285,25.7871 124.573,25.6299 124.816,25.3946 125.109,25.1602 125.657,24.7228 126.664,24.2729 128,24.25 Z" id="rtid-path1429-3-6-7-5-7-4" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 71.75,0 C 71.7641,2.21123 71.2319,3.78788 70.5781,5.08594 69.8959,6.44042 69.0863,7.81724 68.752,10.1641 68.6831,10.647 68.8889,11.1403 69.1875,11.6562 69.4861,12.1722 69.8941,12.7175 70.3008,13.2773 71.1141,14.3971 71.8995,15.5826 71.873,16.5469 71.837,17.8658 71.0606,18.9483 70.2305,19.877 69.8154,20.3413 69.3897,20.7633 69.0469,21.1602 68.7041,21.5571 68.4305,21.9265 68.3633,22.3398 68.2656,22.9396 68.0528,24.3567 68.0762,25.7891 68.0995,27.2214 68.3283,28.7022 69.293,29.3906 70.5075,30.2574 72.3847,30.1724 74.1621,29.9336 75.0508,29.8142 75.9174,29.6495 76.6602,29.5234 77.4029,29.3974 78.0317,29.3138 78.3926,29.3398 78.6378,29.3575 78.867,29.2639 79.0703,29.1191 79.2736,28.9744 79.4617,28.7765 79.6543,28.541 80.0395,28.07 80.4422,27.4435 80.9141,26.7852 81.8579,25.4685 83.068,24.0375 84.8398,23.4824 85.685,23.2177 86.1963,22.6416 86.6543,22.1504 87.1123,21.6592 87.5049,21.2596 88.1504,21.1602 88.7064,21.0745 89.1586,21.1996 89.6309,21.4531 90.1031,21.7066 90.5845,22.0946 91.1406,22.5059 92.2047,23.2926 93.8564,24.1769 96,24.25 V 23.75 C 93.8108,23.75 92.5275,22.9095 91.4375,22.1035 90.8925,21.7005 90.4002,21.2978 89.8672,21.0117 89.3341,20.7256 88.7476,20.5622 88.0742,20.666 87.2563,20.7921 86.7519,21.3142 86.2891,21.8105 85.8262,22.3069 85.3949,22.7835 84.6914,23.0039 82.7485,23.6125 81.4689,25.1534 80.5078,26.4941 80.0273,27.1645 79.6226,27.7904 79.2676,28.2246 79.0901,28.4417 78.925,28.6086 78.7812,28.7109 78.6375,28.8133 78.5266,28.847 78.4277,28.8398 77.9591,28.806 77.3263,28.902 76.5762,29.0293 75.826,29.1566 74.9668,29.3205 74.0957,29.4375 72.3535,29.6715 70.5752,29.6932 69.582,28.9844 68.8814,28.4843 68.5986,27.1566 68.5762,25.7793 68.5537,24.402 68.7614,23.0092 68.8574,22.4199 68.8947,22.1903 69.1024,21.8627 69.4258,21.4883 69.7492,21.1138 70.1741,20.6891 70.6016,20.2109 71.4564,19.2547 72.3318,18.0668 72.373,16.5605 72.4067,15.3325 71.523,14.1085 70.7051,12.9824 70.2961,12.4194 69.897,11.883 69.6211,11.4062 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z" id="rtid-path1429-3-6-7-5-3-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 39.75,0 C 39.4141,0.76718 39.1383,1.75827 38.8848,2.49023 38.5895,3.3428 38.1112,4.22909 36.8477,5.30273 36.7578,5.37914 36.7252,5.45046 36.6777,5.54492 36.6303,5.63939 36.5805,5.75349 36.5293,5.88867 36.4268,6.15903 36.3126,6.51245 36.1895,6.92578 35.9432,7.75245 35.6641,8.81832 35.3984,9.89648 35.1328,10.9747 34.8809,12.0658 34.6914,12.9434 34.5019,13.8209 34.3754,14.4513 34.3555,14.7285 34.2158,16.6655 34.7076,18.3697 35.2344,19.7031 35.4978,20.3699 35.7709,20.9453 35.9785,21.4082 36.1861,21.8711 36.3195,22.237 36.3301,22.3965 36.349,22.6804 36.2704,23.181 36.1582,23.7617 36.046,24.3424 35.9061,25.0127 35.8262,25.6875 35.7462,26.3623 35.7234,27.0431 35.8594,27.6602 35.9954,28.2772 36.3042,28.8381 36.8672,29.1992 38.0372,29.9495 40.0342,29.9094 41.9492,29.752 42.9067,29.6732 43.842,29.5572 44.627,29.4668 45.4119,29.3764 46.0596,29.3165 46.3828,29.3398 46.8274,29.3719 48.1812,29.6981 49.6855,29.8652 51.1899,30.0323 52.8845,30.0518 54.1797,29.4141 54.4869,29.2629 54.6744,28.9596 54.8457,28.6113 55.017,28.263 55.1648,27.8535 55.3145,27.4551 55.4641,27.0566 55.6163,26.6694 55.7793,26.377 55.9423,26.0845 56.1147,25.9076 56.252,25.8633 58.3051,25.1992 59.2573,24.7928 60.1719,24.5586 61.0267,24.3397 62.2522,24.2595 64,24.25 V 23.75 C 61.978,23.75 61.016,23.8265 60.0488,24.0742 59.0816,24.3219 58.1369,24.7271 56.0977,25.3867 55.7553,25.4974 55.5311,25.793 55.3418,26.1328 55.1524,26.4726 54.9966,26.8776 54.8457,27.2793 54.6948,27.681 54.5492,28.0801 54.3965,28.3906 54.2438,28.7011 54.0748,28.9078 53.959,28.9648 52.827,29.5222 51.2053,29.5299 49.7402,29.3672 48.2752,29.2044 47.0089,28.8825 46.418,28.8398 45.9964,28.8094 45.3592,28.8779 44.5703,28.9688 43.7814,29.0596 42.8517,29.1763 41.9082,29.2539 40.0211,29.4091 38.0662,29.3734 37.1367,28.7773 36.6984,28.4962 36.4641,28.0812 36.3477,27.5527 36.2312,27.0243 36.2458,26.3915 36.3223,25.7461 36.3987,25.1006 36.5352,24.4435 36.6484,23.8574 36.7616,23.2714 36.8568,22.7642 36.8301,22.3633 36.8082,22.035 36.6447,21.6739 36.4336,21.2031 36.2224,20.7324 35.9553,20.1679 35.6992,19.5195 35.187,18.2228 34.7234,16.5978 34.8555,14.7656 34.8667,14.6089 34.9934,13.9207 35.1816,13.0488 35.3699,12.177 35.6203,11.0889 35.8848,10.0156 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z" id="rtid-path1429-3-6-7-5-3-5-9-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,23.75 C 30.6701,23.75 29.1294,24.4713 28.1543,25.4707 27.7598,25.8751 27.5394,26.3293 27.3145,26.6738 27.0895,27.0183 26.8918,27.2414 26.5117,27.3223 26.3663,27.3532 26.1181,27.2712 25.8125,27.0664 25.5069,26.8617 25.1582,26.5562 24.793,26.252 24.4277,25.9477 24.045,25.6428 23.6465,25.4336 23.2479,25.2244 22.8131,25.107 22.3848,25.2422 21.6284,25.4808 21.0906,26.0212 20.6094,26.5488 20.1281,27.0765 19.6948,27.5929 19.1953,27.8613 17.3396,28.8586 15.2632,28.901 14.418,28.8398 14.4093,28.8392 14.3947,28.8402 14.3496,28.7852 14.3045,28.7301 14.2468,28.6265 14.1934,28.4922 14.0864,28.2236 13.9879,27.8348 13.8789,27.4277 13.7699,27.0206 13.6502,26.5938 13.4805,26.2246 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 3.74718,11.0845 3.78774,10.9973 3.83594,10.9434 3.88414,10.8894 3.93995,10.8565 4.05078,10.8418 4.04227,10.8429 4.09634,10.8456 4.1875,10.9062 4.27866,10.9669 4.39723,11.0728 4.52734,11.209 4.78756,11.4813 5.09489,11.8737 5.4082,12.2871 5.72151,12.7005 6.04195,13.1351 6.34375,13.502 6.64555,13.8688 6.91366,14.1681 7.20117,14.3262 7.5333,14.5088 7.90835,14.4765 8.23047,14.3398 8.55258,14.2032 8.84357,13.9692 9.10156,13.7109 9.35956,13.4527 9.58243,13.1686 9.74805,12.916 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 3.33591,10.7535 3.26658,10.9291 3.23047,11.1152 3.15824,11.4876 3.20691,11.9189 3.28711,12.3652 3.3673,12.8115 3.4852,13.2721 3.58008,13.6738 3.67495,14.0756 3.74158,14.4286 3.73633,14.5938 3.68747,16.1298 3.82602,17.897 3.98438,19.373 4.14273,20.8491 4.32251,22.0557 4.34961,22.3809 4.39603,22.938 4.73393,24.4105 5.24609,25.8574 5.50218,26.5809 5.80023,27.2897 6.13477,27.8535 6.4693,28.4173 6.8298,28.8608 7.31055,28.9883 7.48505,29.0346 7.67602,29.0107 7.81836,28.9199 7.9607,28.8292 8.05127,28.6951 8.12109,28.5488 8.26073,28.2563 8.32927,27.8864 8.40625,27.4844 8.5602,26.6803 8.74426,25.7645 9.18359,25.3379 9.30271,25.2222 9.51437,25.1521 9.80078,25.1406 10.0872,25.1291 10.4354,25.1776 10.7871,25.2578 11.4905,25.4182 12.2029,25.7018 12.5391,25.8398 12.7104,25.9102 12.8802,26.1178 13.0254,26.4336 13.1706,26.7494 13.2889,27.1546 13.3965,27.5566 13.5041,27.9587 13.6006,28.3566 13.7285,28.6777 13.7925,28.8383 13.8642,28.981 13.9629,29.1016 14.0616,29.2221 14.2067,29.327 14.3828,29.3398 15.3002,29.4063 17.446,29.3698 19.4316,28.3027 20.0544,27.968 20.5091,27.3994 20.9785,26.8848 21.4479,26.3701 21.9224,25.9121 22.5352,25.7188 22.7905,25.6382 23.0784,25.7007 23.4141,25.877 23.7498,26.0532 24.1137,26.3376 24.4727,26.6367 24.8316,26.9358 25.1872,27.2474 25.5352,27.4805 25.8831,27.7136 26.2384,27.8906 26.6152,27.8105 27.1573,27.6953 27.483,27.3292 27.7324,26.9473 27.9818,26.5654 28.1845,26.1558 28.5117,25.8203 29.3257,24.986 30.9022,24.3358 32,24.25 Z" id="rtid-path1429-3-6-7-5-3-5-6-3-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="5.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1933"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1967"
+ transform="matrix(-1,0,0,1,128,0)">
+ <path
+ d="M 0,128 H 32 V 120 C 31.38,120 26.62,120.2 22.54,121.5 18.84,122.7 15.83,125.1 14.43,125.1 11.47,124.9 4.732,121.2 4.574,118.4 4.507,117.2 4.525,109.7 5.008,106.2 5.665,101.6 8.006,96.44 8,96 H 0 Z"
+ id="rtid-path1935"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 63.37,120 62.5348,119.501 58.4616,120.822 57.6462,121.087 53.0851,123.633 52.3728,123.848 49.8529,124.609 47.8579,123.411 46.7689,123.338 45.3157,123.239 42.6833,124.06 40.6367,122.795 38.5147,121.483 38.7645,118.876 38.6814,117.451 38.6403,116.748 38.826,115.034 38.9194,112.077 38.9854,109.987 36.8021,107.649 37.01,106.2 37.298,104.193 38.9905,103.502 39.5834,101.721 40.3493,99.419 40.0056,96.248 40,96 H 32 Z"
+ id="rtid-path1937"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 95.37,120 91.0167,119.59 86.9267,120.89 83.2267,122.09 81.996,121.195 79.9891,121.168 78.1081,121.144 72.7398,124.298 70.3704,120.764 69.003,118.725 70.3083,115.281 70.4102,113.316 70.4725,112.116 70.2027,108.614 70.7046,105.115 71.0322,102.832 71.028,102.367 71.6905,100.449 72.3629,98.5019 71.9373,98.5062 72,96 H 64 Z"
+ id="rtid-path1939"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 123.914,120.068 124.104,119.518 120.772,120.239 119.947,120.417 117.077,119.886 116.263,120.144 112.555,121.32 111.461,116.762 110.061,116.762 107.161,116.562 103.886,117.878 103.786,115.078 103.686,113.878 102.298,110.848 102.83,107.352 103.133,105.36 104.139,104.395 104.336,102.372 104.595,99.7225 104,99.4127 104,96 H 96 Z"
+ id="rtid-path1941"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,96 H 128 V 88 C 125.416,88.0346 121.399,88.0757 119.125,88.6127 118.251,88.819 114.653,86.0236 113.515,86.3844 111.702,86.9593 113.004,91.5663 112.526,92.3732 112.233,92.8684 106.984,95.5382 103.976,94.7396 100.874,93.9163 99.7868,89.3613 99.4236,88.882 97.6681,86.5651 104.439,83.6879 104.339,80.8879 104.239,79.6879 102.849,77.8538 103.349,74.3438 104.049,69.7438 104,64.4 104,64 H 96 Z"
+ id="rtid-path1943"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,96 H 96 V 87.99 C 92.1285,87.99 91.1761,87.3911 88.8645,87.7303 87.3271,87.9559 85.3516,86.8138 83.71,87.3331 80.0013,88.5061 77.4034,86.7151 76.0034,86.7151 73.1034,86.5051 66.3513,88.7107 66.2513,85.9107 66.1513,84.7107 65.7345,77.8968 66.2679,74.3917 66.4295,73.3299 66.7405,70.5305 67.9347,69.8874 68.9631,69.3335 70.857,70.9362 71.4144,70.1132 72.3279,68.7646 72,67.4875 72,64 H 64 Z"
+ id="rtid-path1945"
+ style="fill:#ffffff;stroke-width:0.5216"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64 V 88 C 60.7041,88.0479 60.1859,87.6742 57.2152,88.2305 56.097,88.4399 53.3484,87.2752 52.2272,87.6307 48.5194,88.8063 46.1224,89.6489 44.7224,89.6489 41.8224,89.4489 43.7744,84.7591 41.1535,85.8048 37.7942,87.1452 40.6846,83.2652 36.8562,78.1304 35.6105,76.4596 38.5233,73.0762 39.1283,71.639 39.8741,69.8675 40,65.8086 40,64 H 32 Z"
+ id="rtid-path1947"
+ style="fill:#ffffff;stroke-width:0.5215"
+ sodipodi:nodetypes="cccssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 87.99 C 29.7004,87.9421 28.6543,87.5055 25.9528,87.9619 24.643,88.1831 24.3393,90.2159 22.9972,90.6404 19.2886,91.8134 19.7267,94.2935 18.3304,94.1924 16.6926,94.0738 8.48571,94.7943 5.18068,92.9332 2.63376,91.499 1.2973,89.7543 1.25378,88.5269 1.23621,88.0315 2.60618,85.2779 2.62348,83.3745 2.63755,81.8274 4.50757,79.6457 5.22095,77.2585 5.76177,75.4487 5.169,73.317 5.29559,72.4265 5.95049,67.8199 8.007,68.5701 8.007,64 H 0 Z"
+ id="rtid-path1949"
+ style="fill:#ffffff;stroke-width:0.5214"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 55.99 C 27.146,55.99 29.1657,57.8376 25.9255,58.511 25.0184,58.6995 23.5662,56.5825 22.6738,56.8669 21.1306,57.3586 21.1718,59.5648 19.9101,60.35 18.1418,61.4505 14.9387,61.7394 14.43,61.1 8.07047,53.1068 4.729,57.19 4.569,54.39 4.53857,53.8574 5.96325,52.0823 5.99977,49.9656 6.04553,47.3123 4.73156,44.1224 4.998,42.17 5.19821,40.7029 7.44786,40.9007 7.87216,39.4878 8.77102,36.4949 7.90214,35.9829 7.998,32 H 0 Z"
+ id="rtid-path1951"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64 V 55.99 C 59.9129,56.0578 58.61,56.19 54.53,57.49 50.83,58.69 44.1018,60.0154 42.6918,60.0154 39.7318,59.8154 41.1839,56.1732 39.4948,53.441 38.8624,52.418 35.2829,49.0697 35.7899,45.5593 36.028,43.9102 37.897,39.9715 38.3724,39.0001 39.2144,37.2796 39.9467,35.3942 39.99,32 H 32 Z"
+ id="rtid-path1953"
+ style="fill:#ffffff;stroke-width:0.5221"
+ sodipodi:nodetypes="cccsssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,64 H 96 V 55.99 C 92.0463,55.99 90.61,56.19 86.49,57.49 82.82,58.69 76.8551,61.4823 75.4583,61.3876 72.5083,61.1876 66.5166,63.3528 66.5569,59.7584 66.5694,58.643 67.1982,55.2006 66.6709,54.0609 66.2585,53.1696 66.6682,50.1862 66.7106,49.0964 66.7814,47.2796 68.662,47.5437 69.1876,43.7491 69.5045,41.4609 71.1457,40.2351 71.3207,39.0065 71.9719,34.4352 72.01,35.1792 72.01,32 H 64 Z"
+ id="rtid-path1955"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,64 H 128 V 55.99 C 125.552,56.4532 121.235,55.727 120.345,55.1135 119.299,54.3924 119.427,51.0764 117.585,51.6604 115.328,52.3761 111.543,52.9053 110.308,55.4112 109.515,57.0218 111.048,61.1 110.5,61.1 107.593,61.1 100.833,57.1821 100.6,54.39 100.542,53.6967 102.314,51.0324 102.4,48.1148 102.463,45.9827 99.3654,44.9399 99.5765,43.4579 99.8488,41.5464 100.665,39.3029 101.524,37.3089 102.721,34.5283 104.068,35.3511 104,32 H 96 Z"
+ id="rtid-path1957"
+ style="fill:#ffffff;stroke-width:0.5232"
+ sodipodi:nodetypes="cccssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,32 H 128 V 23.99 C 124.815,23.8941 124.606,26.1492 123.368,25.6023 121.982,24.9899 120.648,24.7934 118.5,25.49 117.795,25.7188 116.591,24.7008 115.948,24.9971 113.22,26.255 111.63,29.1718 110.5,29.09 109.069,28.9864 108.95,25.829 106.886,24.5551 104.766,23.2468 100.718,23.8046 100.6,22.39 100.541,21.6845 103.621,18.9024 103.71,15.938 103.772,13.8603 100.78,11.6443 101,10.2 101.255,8.52123 103.299,8.91583 103.785,7.81393 104.631,5.89519 103.97,2.75058 104,0 H 96 Z"
+ id="rtid-path1959"
+ style="fill:#ffffff;stroke-width:0.5231"
+ sodipodi:nodetypes="cccsssssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,32 H 96 V 23.98 C 91.4941,23.98 90.5719,20.5337 88.1132,20.9126 86.6497,21.1381 86.3139,22.758 84.7654,23.2431 81.0505,24.4068 79.7864,29.1893 78.41,29.09 76.7512,28.9703 71.6452,30.7636 69.4374,29.188 67.7721,27.9996 68.4165,23.569 68.61,22.38 68.8192,21.0942 72.0459,19.3798 72.1233,16.5546 72.1834,14.3623 68.7815,11.7337 69,10.2 69.6567,5.59009 72.1456,4.87376 72.01,0 H 64 Z"
+ id="rtid-path1961"
+ style="fill:#ffffff;stroke-width:0.5212"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32 H 64 V 24 C 59.9685,24 60.2671,24.3019 56.1746,25.6256 55.2157,25.9357 54.9161,28.7731 54.0701,29.1896 51.6429,30.3848 47.4355,29.1647 46.4,29.09 44.9106,28.9825 39.1008,30.3348 37.0013,28.9882 34.9987,27.7037 36.6713,23.7498 36.58,22.38 36.515,21.4045 34.3337,18.5164 34.6053,14.7472 34.6679,13.8795 36.5042,5.92246 37.01,5.49269 39.5946,3.29642 39.0594,1.7307 39.99,0 H 32 Z"
+ id="rtid-path1963"
+ style="fill:#ffffff;stroke-width:0.5217"
+ sodipodi:nodetypes="cccsssssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32 H 32 V 23.98 C 30.7673,23.98 29.2577,24.6987 28.3335,25.6459 27.6117,26.3857 27.485,27.3706 26.5629,27.5666 25.5183,27.7886 23.8274,25.0485 22.46,25.48 21.0909,25.912 20.4353,27.4791 19.313,28.0823 17.3923,29.1145 15.2813,29.1538 14.4,29.09 13.6609,29.0365 13.6939,26.0443 12.6344,25.6092 11.9567,25.3309 9.74179,24.4492 9.01022,25.1595 7.94585,26.193 8.35591,29.0065 7.37477,28.7462 5.94753,28.3675 4.67985,23.3302 4.599,22.36 4.53881,21.6377 3.88971,17.632 3.98607,14.6026 4.01505,13.6915 2.7376,10.7639 4.01722,10.594 4.72238,10.5004 6.45214,13.6293 7.32115,14.1071 8.34265,14.6688 9.74739,12.6445 9.81079,12.2336 10.138,10.1127 8.90276,7.11966 9.52231,5.2736 10.2471,3.11389 7.72686,3.06261 7.998,0 H 0 Z"
+ id="rtid-path1965"
+ style="fill:#ffffff;stroke-width:0.5213"
+ sodipodi:nodetypes="cccssssssssssssssccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-85.780839"
+ inkscape:cy="230.083"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.975807">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1933)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g1931"
+ transform="matrix(-1,0,0,1,128,0)">
+ <path
+ d="M 7.75,96 C 7.74413,96.0179 7.6706,96.2775 7.66406,96.2969 7.60119,96.4836 7.50682,96.7367 7.39258,97.0449 7.1641,97.6613 6.85018,98.4935 6.51562,99.457 5.84652,101.384 5.09228,103.836 4.75977,106.164 V 106.166 C 4.27027,109.713 4.25383,117.154 4.32422,118.414 4.36917,119.211 4.86061,120.005 5.58203,120.771 6.30345,121.538 7.26793,122.279 8.31836,122.938 10.4192,124.254 12.8433,125.243 14.4141,125.35 H 14.4219 14.4297 C 15.2725,125.35 16.3526,124.72 17.7422,123.971 19.1313,123.221 20.7935,122.329 22.6152,121.738 26.5001,120.5 31.1618,120.265 32,120.25 V 119.75 C 31.3263,119.75 26.5914,119.947 22.4648,121.262 H 22.4629 C 20.5853,121.871 18.8943,122.779 17.5039,123.529 16.116,124.278 14.9938,124.846 14.4355,124.848 13.0448,124.75 10.6273,123.794 8.58398,122.514 7.56017,121.872 6.62615,121.149 5.94727,120.428 5.26838,119.707 4.85826,118.99 4.82422,118.387 4.76057,117.247 4.77936,109.687 5.25586,106.234 5.58032,103.963 6.32414,101.534 6.98828,99.6211 7.32035,98.6647 7.63203,97.8373 7.86133,97.2188 7.97598,96.9095 8.07015,96.6528 8.13672,96.4551 8.17,96.3562 8.19754,96.2727 8.2168,96.2012 8.23606,96.1296 8.25116,96.0846 8.25,96 Z"
+ id="rtid-path1429-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccccccscccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,96 C 39.7589,96.1209 39.7815,96.4553 39.7949,96.6895 39.8157,97.0537 39.8346,97.5392 39.8301,98.0879 39.8211,99.1853 39.7142,100.535 39.3457,101.643 39.0687,102.475 38.5295,103.063 37.9902,103.717 37.451,104.37 36.915,105.096 36.7617,106.164 36.6377,107.029 37.1772,107.985 37.6875,109.01 38.1978,110.034 38.7,111.113 38.6699,112.068 38.5768,115.018 38.3864,116.694 38.4316,117.465 38.4718,118.154 38.4286,119.184 38.6504,120.219 38.8722,121.253 39.378,122.311 40.5059,123.008 41.5905,123.678 42.8156,123.789 43.9336,123.754 45.0516,123.718 46.0824,123.542 46.752,123.588 47.2156,123.619 48.0051,123.932 48.9785,124.15 49.952,124.369 51.1332,124.484 52.4453,124.088 52.6834,124.016 53.0799,123.819 53.623,123.545 54.1662,123.271 54.8285,122.924 55.4941,122.576 56.1597,122.228 56.8282,121.878 57.3789,121.6 57.9297,121.322 58.382,121.112 58.5391,121.061 60.5622,120.404 61.7683,120.205 62.5352,120.166 63.1712,120.134 63.6896,120.222 64,120.25 V 119.75 C 63.751,119.75 63.3364,119.624 62.5098,119.666 61.6832,119.708 60.435,119.919 58.3848,120.584 58.1343,120.665 57.7103,120.872 57.1543,121.152 56.5983,121.433 55.9293,121.785 55.2637,122.133 54.598,122.481 53.9344,122.826 53.3965,123.098 52.8586,123.369 52.4188,123.574 52.3008,123.609 51.0931,123.974 50.0162,123.87 49.0898,123.662 48.1635,123.454 47.4105,123.13 46.7852,123.088 46.0016,123.035 44.991,123.22 43.918,123.254 42.8449,123.288 41.7295,123.177 40.7676,122.582 39.7732,121.967 39.3432,121.067 39.1387,120.113 38.9342,119.16 38.9745,118.171 38.9316,117.436 38.8943,116.8 39.0763,115.048 39.1699,112.084 39.2057,110.949 38.6476,109.817 38.1348,108.787 37.6219,107.758 37.1741,106.82 37.2578,106.236 37.3927,105.297 37.8477,104.674 38.375,104.035 38.9023,103.396 39.5044,102.75 39.8203,101.801 40.2175,100.606 40.3209,99.2174 40.3301,98.0918 40.3347,97.529 40.3162,97.0321 40.2949,96.6602 40.2737,96.2882 40.2504,96.0161 40.25,96 Z"
+ id="rtid-path1429-3-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccscccccccccccccscccccsccccccccccccccscsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,119.75 C 95.8696,119.75 95.4649,119.725 94.9004,119.707 94.3359,119.689 93.5984,119.677 92.752,119.707 91.059,119.768 88.9282,119.992 86.8516,120.652 H 86.8496 C 83.1999,121.836 82.072,120.946 79.9922,120.918 79.4506,120.911 78.7617,121.114 77.9551,121.352 77.1484,121.589 76.236,121.869 75.3184,122.037 74.4007,122.205 73.4814,122.26 72.666,122.07 71.8506,121.88 71.1366,121.458 70.5781,120.625 69.9512,119.69 69.9225,118.382 70.0879,117.043 70.2533,115.704 70.6068,114.358 70.6602,113.328 70.693,112.697 70.6395,111.535 70.6426,110.078 70.6456,108.621 70.7028,106.882 70.9512,105.15 71.2795,102.862 71.2675,102.437 71.9258,100.531 72.2674,99.5424 72.3393,99.0056 72.3242,98.4277 72.3091,97.8498 72.219,97.2389 72.25,96 H 71.75 C 71.7428,97.0234 71.8117,97.9639 71.8242,98.4414 71.8381,98.9747 71.7841,99.409 71.4531,100.367 70.7864,102.297 70.7839,102.802 70.457,105.08 70.2035,106.847 70.1457,108.607 70.1426,110.076 70.1395,111.545 70.1898,112.734 70.1602,113.303 70.1117,114.238 69.7626,115.599 69.5918,116.982 69.421,118.366 69.4217,119.798 70.1621,120.902 70.7884,121.836 71.6344,122.345 72.5508,122.559 73.4671,122.772 74.4525,122.703 75.4082,122.527 76.3639,122.352 77.2927,122.069 78.0957,121.832 78.8987,121.595 79.5875,121.413 79.9863,121.418 81.9203,121.444 83.2538,122.343 87.0039,121.127 L 87.002,121.129 C 89.0153,120.489 91.1058,120.267 92.7695,120.207 93.6014,120.177 94.326,120.189 94.8828,120.207 95.315,120.221 95.7909,120.243 96,120.25 Z"
+ id="rtid-path1429-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="csccccccscsccccscccccscccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,119.75 C 125.968,119.784 125.01,119.665 124.115,119.625 123.221,119.585 122.397,119.631 120.719,119.994 120.567,120.027 120.238,120.034 119.848,120.014 119.457,119.993 118.997,119.951 118.535,119.912 118.073,119.873 117.608,119.835 117.201,119.824 116.795,119.813 116.455,119.822 116.188,119.906 115.308,120.185 114.615,120.122 114.02,119.881 113.424,119.639 112.923,119.207 112.48,118.725 112.038,118.243 111.657,117.714 111.287,117.291 110.917,116.868 110.546,116.512 110.061,116.512 108.572,116.412 107.025,116.689 105.883,116.645 105.31,116.622 104.853,116.518 104.551,116.293 104.249,116.068 104.058,115.719 104.035,115.068 V 115.062 115.057 C 103.979,114.379 103.604,113.352 103.314,112.023 103.025,110.695 102.819,109.094 103.078,107.389 103.224,106.427 103.538,105.716 103.854,104.971 104.169,104.225 104.482,103.445 104.584,102.396 104.715,101.052 104.631,100.276 104.514,99.4375 104.397,98.5986 104.25,97.6918 104.25,96 H 103.75 C 103.769,97.4996 103.91,98.7336 104.018,99.5059 104.133,100.337 104.215,101.042 104.088,102.348 103.993,103.322 103.705,104.035 103.393,104.775 103.08,105.516 102.739,106.284 102.582,107.314 102.31,109.105 102.53,110.768 102.826,112.129 103.123,113.49 103.494,114.578 103.537,115.1 V 115.088 C 103.564,115.837 103.821,116.374 104.252,116.695 104.683,117.017 105.243,117.121 105.863,117.145 107.104,117.192 108.637,116.915 110.043,117.012 H 110.053 110.061 C 110.275,117.012 110.565,117.226 110.91,117.621 111.255,118.016 111.644,118.552 112.113,119.062 112.582,119.573 113.136,120.061 113.832,120.344 114.528,120.626 115.363,120.692 116.338,120.383 116.478,120.339 116.801,120.314 117.188,120.324 117.574,120.335 118.032,120.371 118.492,120.41 118.952,120.449 119.415,120.491 119.82,120.512 120.225,120.533 120.564,120.539 120.824,120.482 122.478,120.124 123.227,120.087 124.092,120.125 124.901,120.161 126.204,120.264 128,120.25 Z"
+ id="rtid-path1429-3-6-7-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsccccsccscccccccccccccccccccccssccccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,64 C 103.752,64.7276 103.773,69.8956 103.102,74.3066 V 74.3086 C 102.846,76.1016 103.075,77.4813 103.379,78.5508 103.682,79.6168 104.043,80.3855 104.088,80.9004 104.108,81.4973 103.751,82.1522 103.176,82.8301 102.6,83.5093 101.823,84.2006 101.09,84.8828 100.356,85.565 99.6657,86.2353 99.252,86.9199 99.0451,87.2622 98.9048,87.613 98.8848,87.9746 98.8647,88.3362 98.9743,88.7028 99.2246,89.0332 99.2306,89.0411 99.2966,89.1646 99.3652,89.332 99.4339,89.4994 99.5177,89.7212 99.6191,89.9766 99.822,90.4872 100.093,91.1361 100.453,91.8008 101.173,93.1301 102.258,94.5413 103.912,94.9805 105.518,95.4067 107.608,94.9132 109.355,94.2754 110.229,93.9565 111.016,93.5986 111.607,93.2852 111.903,93.1284 112.15,92.9833 112.338,92.8574 112.526,92.7315 112.645,92.6603 112.74,92.5 112.839,92.3329 112.866,92.1453 112.881,91.9238 112.896,91.7023 112.89,91.4476 112.877,91.166 112.85,90.6029 112.789,89.937 112.77,89.2852 112.75,88.6333 112.776,87.9953 112.904,87.5137 113.033,87.032 113.237,86.7351 113.59,86.623 113.75,86.5725 114.162,86.6393 114.654,86.8398 115.147,87.0404 115.725,87.3472 116.299,87.6602 116.873,87.9731 117.441,88.294 117.932,88.5273 118.177,88.644 118.403,88.7388 118.607,88.8008 118.811,88.8628 118.992,88.9002 119.182,88.8555 121.333,88.3476 125.412,88.2846 128,88.25 V 87.75 C 125.417,87.7844 121.404,87.8178 119.068,88.3691 119.039,88.376 118.916,88.3722 118.752,88.3223 118.588,88.2723 118.379,88.1849 118.146,88.0742 117.681,87.8528 117.116,87.5357 116.539,87.2207 115.962,86.9057 115.373,86.5926 114.844,86.377 114.314,86.1613 113.849,86.0168 113.439,86.1465 112.886,86.3219 112.574,86.8157 112.422,87.3848 112.27,87.9539 112.25,88.6261 112.27,89.2988 112.289,89.9715 112.351,90.6439 112.377,91.1895 112.39,91.4622 112.395,91.7035 112.383,91.8906 112.37,92.0777 112.331,92.2116 112.311,92.2461 112.332,92.2096 112.226,92.3296 112.059,92.4414 111.892,92.5532 111.658,92.693 111.373,92.8438 110.804,93.1452 110.035,93.4961 109.184,93.8066 107.482,94.4278 105.443,94.8703 104.041,94.498 102.593,94.1138 101.582,92.8363 100.893,91.5625 100.548,90.9256 100.284,90.295 100.084,89.791 99.9839,89.539 99.9006,89.3192 99.8281,89.1426 99.7557,88.9659 99.7079,88.8424 99.623,88.7305 99.4345,88.4816 99.3709,88.2521 99.3848,88.002 99.3986,87.7518 99.5002,87.4747 99.6797,87.1777 100.039,86.5837 100.704,85.9267 101.432,85.25 102.159,84.5733 102.946,83.8744 103.557,83.1543 104.167,82.4342 104.617,81.681 104.588,80.8789 V 80.873 80.8672 C 104.531,80.1822 104.151,79.4391 103.859,78.4141 103.568,77.3895 103.352,76.0967 103.596,74.3809 V 74.3789 C 104.3,69.7492 104.25,64.3795 104.25,64 Z"
+ id="rtid-path1429-3-6-7-5-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccscscccccccsccccccsccsccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,64 C 71.7591,65.5714 71.8302,67.0066 71.8008,67.8496 71.7693,68.7512 71.6353,69.3402 71.207,69.9727 71.1257,70.0927 71.0312,70.1192 70.8047,70.0977 70.5782,70.0761 70.2661,69.979 69.9316,69.8652 69.5972,69.7515 69.2384,69.6232 68.8789,69.5586 68.5194,69.494 68.146,69.4904 67.8164,69.668 67.094,70.0569 66.7262,70.9815 66.4727,71.918 66.2191,72.8545 66.1009,73.8313 66.0215,74.3535 65.4786,77.9211 65.8996,84.6875 66.002,85.9199 66.0163,86.3207 66.1588,86.6625 66.4004,86.9141 66.642,87.1656 66.9689,87.3267 67.3438,87.4297 68.0935,87.6357 69.0544,87.6218 70.0977,87.5332 72.1841,87.3561 74.6131,86.8655 75.9863,86.9648 H 75.9941 76.0039 C 76.5972,86.9648 77.62,87.3999 78.9336,87.707 80.2472,88.0141 81.88,88.1748 83.7852,87.5723 84.5283,87.3372 85.3891,87.4751 86.2734,87.666 87.1578,87.857 88.0565,88.1024 88.9004,87.9785 90.0304,87.8127 90.8129,87.8754 91.8203,87.9824 92.7675,88.083 94.2477,88.2336 96,88.25 V 87.75 C 94.077,87.75 92.8875,87.5921 91.873,87.4844 90.8586,87.3767 90.0098,87.309 88.8281,87.4824 88.1346,87.5842 87.277,87.3716 86.3789,87.1777 85.4808,86.9838 84.5334,86.8095 83.6348,87.0938 81.8313,87.6641 80.3094,87.5158 79.0469,87.2207 77.7869,86.9261 76.8154,86.4686 76.0098,86.4668 74.4825,86.359 72.0921,86.8624 70.0566,87.0352 69.0369,87.1217 68.1115,87.1218 67.4766,86.9473 67.1591,86.86 66.9179,86.731 66.7598,86.5664 66.6016,86.4018 66.5126,86.2016 66.502,85.9023 V 85.8965 L 66.5,85.8906 C 66.4017,84.7115 65.9924,77.8679 66.5156,74.4297 66.5976,73.8902 66.7142,72.9383 66.9551,72.0488 67.1959,71.1594 67.5811,70.3614 68.0527,70.1074 68.2373,70.008 68.4868,69.9965 68.7891,70.0508 69.0913,70.1051 69.4342,70.2231 69.7715,70.3379 70.1088,70.4526 70.4383,70.5655 70.7559,70.5957 71.0734,70.6259 71.4237,70.5452 71.6211,70.2539 72.1061,69.5378 72.2658,68.8132 72.2988,67.8672 72.3318,66.9211 72.25,65.7359 72.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccscccccccccssccccccccsccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,64 C 39.7459,64.9064 39.7094,66.456 39.5938,67.8125 39.4699,69.2642 39.2467,70.7154 38.8984,71.543 38.6239,72.1942 37.7361,73.4248 37.0762,74.6816 36.746,75.3104 36.4705,75.9506 36.3555,76.5664 36.2404,77.1822 36.2928,77.7918 36.6562,78.2793 38.5344,80.7983 38.7552,82.977 38.9316,84.4258 39.0198,85.1502 39.062,85.7146 39.4277,86.0723 39.6106,86.2511 39.8772,86.3347 40.1738,86.3203 40.4705,86.3059 40.8126,86.2101 41.2461,86.0371 41.5488,85.9163 41.7646,85.8883 41.9062,85.9082 42.0479,85.9281 42.1291,85.9825 42.2129,86.0898 42.3805,86.3045 42.4868,86.7729 42.5879,87.3066 42.689,87.8404 42.7964,88.4382 43.0938,88.9434 43.3911,89.4485 43.9112,89.8437 44.7051,89.8984 H 44.7148 44.7227 C 46.2229,89.8984 48.5984,89.0436 52.3027,87.8691 52.7323,87.7329 53.7019,87.8992 54.666,88.1191 55.6302,88.339 56.5837,88.6034 57.2617,88.4766 58.7344,88.2007 59.579,88.1561 60.4805,88.1738 61.3169,88.1902 62.5516,88.259 64,88.25 V 87.75 C 62.3616,87.7738 61.4146,87.692 60.4902,87.6738 59.5659,87.6557 58.6677,87.7038 57.1699,87.9844 56.7295,88.0668 55.7474,87.854 54.7773,87.6328 53.8073,87.4116 52.8441,87.1732 52.1523,87.3926 48.448,88.5671 46.0336,89.3936 44.7324,89.3965 44.0844,89.3488 43.7581,89.0848 43.5254,88.6895 43.2912,88.2917 43.1791,87.7459 43.0781,87.2129 42.9772,86.6799 42.8996,86.16 42.6055,85.7832 42.4584,85.5948 42.2392,85.4513 41.9746,85.4141 41.7101,85.3769 41.4131,85.4316 41.0605,85.5723 40.6542,85.7344 40.3517,85.8104 40.1484,85.8203 39.9452,85.8302 39.8557,85.7915 39.7773,85.7148 39.6206,85.5615 39.5173,85.0851 39.4297,84.3652 39.2544,82.9254 39.007,80.5962 37.0566,77.9805 36.7973,77.6326 36.746,77.1935 36.8457,76.6602 36.9454,76.1268 37.2015,75.5197 37.5195,74.9141 38.1555,73.7029 39.0284,72.5225 39.3594,71.7363 39.7567,70.7923 39.9682,69.3282 40.0938,67.8555 40.2193,66.3827 40.25,64.9102 40.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-93"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccscccccccccscccccccccccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.75,64 C 7.70545,66.0095 7.24505,67.1644 6.68359,68.0684 6.09283,69.0195 5.38169,70.0494 5.04883,72.3906 4.97398,72.9173 5.10015,73.6566 5.16406,74.5156 5.22798,75.3746 5.236,76.3324 4.98047,77.1875 4.63496,78.3436 3.99971,79.4731 3.43945,80.5137 2.87919,81.5542 2.38099,82.4979 2.37305,83.3711 2.36493,84.264 2.02912,85.4163 1.68945,86.3965 1.51962,86.8866 1.35044,87.3353 1.22266,87.6973 1.15877,87.8782 1.1049,88.038 1.06641,88.1738 1.02792,88.3097 0.999524,88.4116 1.00391,88.5352 1.05355,89.9353 2.46874,91.6919 5.05859,93.1504 6.80023,94.1311 9.69217,94.3991 12.375,94.4668 13.7164,94.5006 15.0024,94.4788 16.0547,94.457 17.107,94.4352 17.9362,94.4142 18.3125,94.4414 18.7341,94.4719 19.0702,94.2806 19.3125,94.0117 19.5548,93.7428 19.7452,93.4034 20.002,93.0371 20.5154,92.3046 21.269,91.4492 23.0723,90.8789 23.8476,90.6337 24.2874,89.954 24.6934,89.3672 25.0993,88.7804 25.4601,88.2992 25.9941,88.209 28.5462,87.7778 29.872,88.1744 32,88.25 V 87.75 C 29.7305,87.7028 28.65,87.2523 25.9121,87.7148 25.1363,87.8459 24.6901,88.491 24.2812,89.082 23.8724,89.6731 23.4887,90.2231 22.9219,90.4023 21.0166,91.0049 20.1355,91.9744 19.5918,92.75 19.32,93.1378 19.1255,93.4734 18.9414,93.6777 18.7573,93.8821 18.6242,93.9634 18.3477,93.9434 17.905,93.9113 17.0954,93.9353 16.0449,93.957 14.9945,93.9788 13.7149,94.0003 12.3867,93.9668 9.7304,93.8998 6.86615,93.5952 5.30273,92.7148 2.79877,91.3047 1.5413,89.5722 1.50391,88.5176 1.5039,88.5173 1.51374,88.4256 1.54688,88.3086 1.58001,88.1916 1.63102,88.0399 1.69336,87.8633 1.81805,87.5101 1.98948,87.0587 2.16211,86.5605 2.50736,85.5642 2.86386,84.3876 2.87305,83.377 2.87918,82.7031 3.32425,81.7838 3.88086,80.75 4.43747,79.7162 5.09308,78.561 5.46094,77.3301 5.74624,76.3754 5.72773,75.3604 5.66211,74.4785 5.59649,73.5966 5.49124,72.8249 5.54297,72.4609 5.86503,70.1956 6.50816,69.3 7.10938,68.332 7.71059,67.3641 8.25,66.3225 8.25,64 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-1"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccscscccccccccccccsccccccscscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,55.75 C 30.7706,55.75 29.9617,55.8559 29.3789,56.0527 28.7961,56.2496 28.4429,56.5383 28.1738,56.8281 27.6358,57.4078 27.4404,57.9403 25.875,58.2656 25.7525,58.2911 25.5439,58.2338 25.2891,58.0801 25.0342,57.9263 24.7459,57.6927 24.4512,57.457 24.1565,57.2214 23.8551,56.983 23.5527,56.8125 23.2503,56.642 22.9249,56.5246 22.5977,56.6289 21.7224,56.9079 21.3056,57.6704 20.9609,58.3906 20.6163,59.1109 20.318,59.8022 19.7773,60.1387 18.9423,60.6583 17.7235,61.0026 16.668,61.1289 16.1402,61.1921 15.6529,61.2007 15.2812,61.1582 14.9096,61.1157 14.6669,60.996 14.625,60.9434 11.419,56.9139 8.92012,55.8905 7.22266,55.5527 6.37392,55.3839 5.72751,55.3733 5.35742,55.2578 5.17238,55.2 5.06488,55.1307 4.98242,55.0117 4.89997,54.8927 4.83685,54.6985 4.81836,54.375 4.81754,54.3607 4.87363,54.1459 5,53.8789 5.12637,53.6119 5.30479,53.2711 5.48633,52.877 5.84941,52.0886 6.2308,51.0821 6.25,49.9688 6.27363,48.5992 5.9494,47.126 5.66016,45.7539 5.37091,44.3818 5.12279,43.1066 5.24609,42.2031 5.28756,41.8992 5.42205,41.7032 5.63477,41.5215 5.84748,41.3398 6.14263,41.1876 6.46094,41.0332 7.09755,40.7245 7.86324,40.3847 8.11133,39.5586 8.56827,38.0372 8.57861,37.1064 8.48438,36.0918 8.39014,35.0772 8.20251,33.9729 8.25,32 H 7.75 C 7.73169,33.7885 7.90046,35.2142 7.98633,36.1387 8.07785,37.124 8.07472,37.9447 7.63281,39.416 7.45659,40.0028 6.88652,40.2715 6.24219,40.584 5.92002,40.7402 5.58725,40.9026 5.30859,41.1406 5.02993,41.3787 4.80864,41.7071 4.75,42.1367 4.60687,43.1855 4.88219,44.4813 5.17188,45.8555 5.46156,47.2297 5.77214,48.6773 5.75,49.9609 5.73269,50.9645 5.38203,51.9064 5.03125,52.668 4.85586,53.0488 4.68217,53.3823 4.54883,53.6641 4.41549,53.9458 4.30592,54.1523 4.32031,54.4043 4.34182,54.7808 4.41652,55.0721 4.57227,55.2969 4.72801,55.5217 4.9589,55.6563 5.20898,55.7344 5.70916,55.8905 6.32343,55.8835 7.125,56.043 8.72815,56.3619 11.0808,57.2922 14.2344,61.2559 14.4468,61.5229 14.7973,61.6074 15.2246,61.6562 15.6519,61.7051 16.1689,61.6917 16.7266,61.625 17.8418,61.4916 19.1097,61.1433 20.043,60.5625 20.764,60.1138 21.0761,59.3076 21.4121,58.6055 21.7481,57.9034 22.082,57.3184 22.75,57.1055 22.8689,57.0676 23.0594,57.1075 23.3086,57.248 23.5578,57.3886 23.8454,57.6131 24.1387,57.8477 24.432,58.0822 24.7308,58.3266 25.0312,58.5078 25.3317,58.6891 25.6455,58.8247 25.9766,58.7559 27.6514,58.4078 28.0654,57.6804 28.541,57.168 28.7788,56.9118 29.0341,56.696 29.5391,56.5254 29.9927,56.3721 31.0025,56.2706 32,56.25 Z"
+ id="rtid-path1429-2-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccccccccccsccccccccccccccccsscccccccccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,32 C 39.6686,35.1631 38.9577,37.2367 38.1484,38.8906 37.909,39.3799 37.3209,40.609 36.7617,41.9277 36.2025,43.2465 35.6712,44.6351 35.543,45.5234 35.276,47.3721 36.0796,49.1405 37.0059,50.5684 37.469,51.2823 37.9662,51.9146 38.3848,52.4297 38.8034,52.9448 39.1485,53.3543 39.2832,53.5723 40.0848,54.8688 40.1484,56.417 40.3711,57.7207 40.4824,58.3725 40.6325,58.9694 40.9805,59.4375 41.3285,59.9056 41.8835,60.2121 42.6758,60.2656 H 42.6836 42.6914 C 43.0831,60.2656 43.7644,60.1809 44.6562,60.0371 45.5481,59.8933 46.6393,59.6886 47.8027,59.4473 50.1291,58.9648 52.739,58.3338 54.6055,57.7285 58.5655,56.4668 60.1726,56.3195 64,56.25 V 55.75 C 59.9084,55.8178 58.545,55.9489 54.4551,57.252 H 54.4531 C 52.6198,57.8466 50.0159,58.477 47.7012,58.957 46.5438,59.1971 45.4581,59.4008 44.5762,59.543 43.7007,59.6841 43.0216,59.7625 42.7051,59.7637 42.0213,59.7163 41.6451,59.4941 41.3809,59.1387 41.1159,58.7822 40.9701,58.26 40.8633,57.6348 40.6497,56.3843 40.5946,54.7442 39.707,53.3086 39.5255,53.0149 39.1861,52.6234 38.7715,52.1133 38.3569,51.6031 37.8732,50.9867 37.4258,50.2969 36.5309,48.9172 35.7972,47.2573 36.0371,45.5957 36.147,44.8348 36.669,43.4288 37.2227,42.123 37.7764,40.8173 38.3617,39.5914 38.5977,39.1094 39.4461,37.3754 40.2065,35.4289 40.25,32 Z"
+ id="rtid-path1429-3-9-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccsccscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,32 C 71.7468,34.801 71.7028,34.5586 71.0742,38.9707 71.0004,39.4885 70.5731,40.0927 70.0957,40.8477 69.6183,41.6026 69.1051,42.5187 68.9395,43.7148 68.6823,45.5713 68.1173,46.3844 67.5879,47.002 67.3232,47.3107 67.0593,47.5702 66.8457,47.8887 66.6321,48.2072 66.4803,48.5885 66.4609,49.0859 66.4405,49.6085 66.3282,50.6359 66.2715,51.6387 66.2431,52.1401 66.2285,52.638 66.248,53.0742 66.2676,53.5104 66.3113,53.8806 66.4434,54.166 66.6508,54.6143 66.6585,55.7657 66.5664,56.8984 66.4743,58.0312 66.3133,59.154 66.3066,59.7559 66.2957,60.7236 66.731,61.3839 67.4023,61.7246 68.0736,62.0653 68.9454,62.1299 69.8945,62.0957 71.7929,62.0273 74.0385,61.5416 75.4414,61.6367 75.8853,61.6668 76.5119,61.4948 77.334,61.2246 78.1561,60.9544 79.149,60.575 80.2129,60.1562 82.3393,59.3193 84.7462,58.3233 86.5645,57.7285 L 86.5684,57.7266 C 90.5648,56.4658 92.2928,56.2606 96,56.25 V 55.75 C 92.0379,55.75 90.5427,55.9492 86.4141,57.252 H 86.4121 C 84.5606,57.8574 82.1507,58.8564 80.0293,59.6914 78.9686,60.1089 77.9816,60.4858 77.1777,60.75 76.3739,61.0142 75.7291,61.1559 75.4746,61.1387 73.9274,61.0337 71.7019,61.53 69.877,61.5957 68.9645,61.6286 68.1619,61.5478 67.6289,61.2773 67.0959,61.0069 66.7973,60.5912 66.8066,59.7617 66.8124,59.2481 66.9727,58.0917 67.0664,56.9395 67.1601,55.7872 67.2183,54.6463 66.8984,53.9551 66.8243,53.7948 66.7644,53.4587 66.7461,53.0508 66.7278,52.6428 66.7417,52.1601 66.7695,51.668 66.8252,50.6837 66.9388,49.6728 66.9609,49.1055 66.9769,48.6946 67.0864,48.4295 67.2617,48.168 67.4371,47.9065 67.6888,47.6528 67.9688,47.3262 68.5287,46.673 69.167,45.7215 69.4355,43.7832 69.5867,42.6912 70.0534,41.8504 70.5195,41.1133 70.9857,40.3761 71.4671,39.7519 71.5684,39.041 72.2188,34.4749 72.25,35.1813 72.25,32 Z"
+ id="rtid-path1429-3-6-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccsccccccsccscccccccsccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103.75,32 C 103.74,33.3903 103.469,34.2117 103.047,34.707 102.593,35.2391 101.91,35.7792 101.295,37.209 100.432,39.2126 99.6066,41.4686 99.3281,43.4219 99.2628,43.881 99.4581,44.2959 99.7383,44.6621 100.018,45.0283 100.392,45.369 100.76,45.7227 101.495,46.43 102.178,47.1635 102.15,48.1074 102.109,49.5179 101.655,50.8878 101.213,51.9941 100.992,52.5473 100.775,53.0338 100.613,53.4336 100.451,53.8334 100.327,54.1182 100.352,54.4102 100.418,55.2031 100.922,56.0056 101.654,56.7871 102.386,57.5687 103.357,58.3291 104.412,59.002 106.522,60.3476 108.934,61.3496 110.5,61.3496 110.612,61.3496 110.738,61.2714 110.791,61.1875 110.844,61.1036 110.857,61.0255 110.865,60.9473 110.882,60.7908 110.866,60.6162 110.838,60.4043 110.781,59.9805 110.666,59.4225 110.559,58.8164 110.344,57.6042 110.202,56.1945 110.533,55.5215 111.109,54.3531 112.298,53.6223 113.654,53.0977 115.01,52.573 116.51,52.2631 117.66,51.8984 118.056,51.7728 118.269,51.8459 118.479,52.0371 118.688,52.2283 118.872,52.5782 119.031,52.9883 119.191,53.3984 119.33,53.862 119.5,54.2812 119.67,54.7005 119.866,55.0859 120.203,55.3184 120.484,55.5123 120.929,55.666 121.51,55.8164 122.09,55.9668 122.798,56.1018 123.555,56.2031 124.969,56.3924 126.76,56.4374 128,56.25 V 55.75 C 126.826,55.9723 125.1,55.9051 123.621,55.707 122.882,55.608 122.19,55.4759 121.635,55.332 121.079,55.1882 120.65,55.0211 120.486,54.9082 120.301,54.7801 120.12,54.4808 119.963,54.0938 119.806,53.7067 119.666,53.2427 119.496,52.8066 119.327,52.3706 119.131,51.9568 118.814,51.668 118.497,51.3791 118.034,51.2556 117.51,51.4219 116.403,51.7729 114.882,52.0855 113.473,52.6309 112.063,53.1762 110.743,53.9633 110.084,55.3008 109.622,56.2384 109.849,57.6729 110.066,58.9023 110.175,59.5171 110.29,60.0795 110.342,60.4707 110.363,60.6303 110.365,60.7331 110.363,60.8164 109.003,60.7685 106.684,59.8594 104.682,58.582 103.654,57.9264 102.711,57.1836 102.02,56.4453 101.328,55.707 100.9,54.9721 100.85,54.3691 100.845,54.3144 100.92,54.0071 101.076,53.6211 101.233,53.2351 101.452,52.744 101.678,52.1797 102.129,51.0511 102.606,49.6282 102.65,48.1211 102.685,46.933 101.851,46.0809 101.105,45.3633 100.733,45.0045 100.376,44.6722 100.137,44.3594 99.8974,44.0465 99.7841,43.7742 99.8242,43.4922 100.091,41.6229 100.899,39.3924 101.754,37.4082 102.335,36.0575 102.923,35.6207 103.426,35.0312 103.928,34.4418 104.285,33.7087 104.25,32 Z"
+ id="rtid-path1429-3-6-7-2-8"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccscccssccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,23.75 C 126.348,23.7003 125.42,24.2716 124.797,24.7695 124.485,25.0185 124.246,25.2388 124.047,25.3477 123.848,25.4565 123.718,25.4831 123.469,25.373 122.047,24.7447 120.614,24.5417 118.424,25.252 H 118.422 C 118.213,25.3198 117.766,25.1758 117.295,24.9863 117.059,24.8916 116.818,24.7948 116.576,24.7383 116.335,24.6817 116.081,24.6603 115.844,24.7695 114.43,25.4215 113.331,26.4908 112.449,27.3691 112.008,27.8083 111.619,28.2002 111.287,28.4668 110.955,28.7334 110.689,28.8523 110.518,28.8398 110.251,28.8205 110.045,28.6675 109.822,28.3672 109.6,28.0669 109.39,27.6336 109.156,27.1523 108.689,26.1898 108.126,25.0261 107.018,24.3418 105.884,23.642 104.317,23.4655 103.031,23.2656 102.389,23.1657 101.814,23.0602 101.424,22.9082 101.229,22.8322 101.083,22.7449 100.992,22.6562 100.901,22.5676 100.859,22.4863 100.85,22.3691 100.85,22.3778 100.864,22.2809 100.934,22.1484 101.003,22.016 101.115,21.8422 101.254,21.6426 101.531,21.2433 101.915,20.7346 102.307,20.1504 103.09,18.982 103.912,17.5116 103.959,15.9453 103.994,14.784 103.213,13.6831 102.498,12.6855 102.14,12.1868 101.794,11.7134 101.557,11.291 101.32,10.8686 101.207,10.5066 101.248,10.2383 101.304,9.86904 101.446,9.63991 101.645,9.45703 101.843,9.27415 102.108,9.14217 102.4,9.02148 102.693,8.9008 103.01,8.7935 103.301,8.63477 103.591,8.47603 103.864,8.25378 104.014,7.91406 104.467,6.88656 104.505,5.59067 104.449,4.20898 104.393,2.8273 104.235,1.35423 104.25,0 H 103.75 C 103.754,1.32161 103.897,2.95144 103.949,4.22852 104.004,5.58647 103.95,6.82163 103.557,7.71289 103.463,7.92412 103.298,8.06567 103.061,8.19531 102.823,8.32496 102.522,8.43035 102.211,8.55859 101.9,8.68684 101.576,8.84012 101.305,9.08984 101.033,9.33957 100.823,9.69195 100.752,10.1621 100.683,10.616 100.861,11.0709 101.121,11.5352 101.381,11.9994 101.737,12.4811 102.092,12.9766 102.802,13.9675 103.488,15.0133 103.461,15.9297 103.419,17.3278 102.657,18.731 101.893,19.8711 101.51,20.4412 101.13,20.946 100.844,21.3594 100.7,21.5661 100.58,21.7497 100.492,21.916 100.405,22.0823 100.336,22.2252 100.352,22.4102 100.371,22.6467 100.481,22.8569 100.643,23.0137 100.804,23.1704 101.008,23.282 101.242,23.373 101.71,23.5552 102.304,23.6588 102.953,23.7598 104.251,23.9617 105.768,24.1591 106.754,24.7676 107.709,25.3572 108.239,26.4106 108.705,27.3711 108.938,27.8514 109.155,28.3053 109.422,28.666 109.689,29.0267 110.034,29.3073 110.482,29.3398 110.876,29.3683 111.232,29.1541 111.602,28.8574 111.971,28.5608 112.362,28.1597 112.801,27.7227 113.678,26.8485 114.739,25.8305 116.053,25.2246 116.137,25.1857 116.274,25.1808 116.461,25.2246 116.648,25.2685 116.873,25.3551 117.107,25.4492 117.575,25.6375 118.082,25.8894 118.578,25.7285 120.683,25.0464 121.918,25.2339 123.268,25.8301 123.638,25.9935 123.997,25.9443 124.285,25.7871 124.573,25.6299 124.816,25.3946 125.109,25.1602 125.657,24.7228 126.664,24.2729 128,24.25 Z"
+ id="rtid-path1429-3-6-7-5-7-4"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccscccccccscccccsccccccccccccccccccccsccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 71.75,0 C 71.7641,2.21123 71.2319,3.78788 70.5781,5.08594 69.8959,6.44042 69.0863,7.81724 68.752,10.1641 68.6831,10.647 68.8889,11.1403 69.1875,11.6562 69.4861,12.1722 69.8941,12.7175 70.3008,13.2773 71.1141,14.3971 71.8995,15.5826 71.873,16.5469 71.837,17.8658 71.0606,18.9483 70.2305,19.877 69.8154,20.3413 69.3897,20.7633 69.0469,21.1602 68.7041,21.5571 68.4305,21.9265 68.3633,22.3398 68.2656,22.9396 68.0528,24.3567 68.0762,25.7891 68.0995,27.2214 68.3283,28.7022 69.293,29.3906 70.5075,30.2574 72.3847,30.1724 74.1621,29.9336 75.0508,29.8142 75.9174,29.6495 76.6602,29.5234 77.4029,29.3974 78.0317,29.3138 78.3926,29.3398 78.6378,29.3575 78.867,29.2639 79.0703,29.1191 79.2736,28.9744 79.4617,28.7765 79.6543,28.541 80.0395,28.07 80.4422,27.4435 80.9141,26.7852 81.8579,25.4685 83.068,24.0375 84.8398,23.4824 85.685,23.2177 86.1963,22.6416 86.6543,22.1504 87.1123,21.6592 87.5049,21.2596 88.1504,21.1602 88.7064,21.0745 89.1586,21.1996 89.6309,21.4531 90.1031,21.7066 90.5845,22.0946 91.1406,22.5059 92.2047,23.2926 93.8564,24.1769 96,24.25 V 23.75 C 93.8108,23.75 92.5275,22.9095 91.4375,22.1035 90.8925,21.7005 90.4002,21.2978 89.8672,21.0117 89.3341,20.7256 88.7476,20.5622 88.0742,20.666 87.2563,20.7921 86.7519,21.3142 86.2891,21.8105 85.8262,22.3069 85.3949,22.7835 84.6914,23.0039 82.7485,23.6125 81.4689,25.1534 80.5078,26.4941 80.0273,27.1645 79.6226,27.7904 79.2676,28.2246 79.0901,28.4417 78.925,28.6086 78.7812,28.7109 78.6375,28.8133 78.5266,28.847 78.4277,28.8398 77.9591,28.806 77.3263,28.902 76.5762,29.0293 75.826,29.1566 74.9668,29.3205 74.0957,29.4375 72.3535,29.6715 70.5752,29.6932 69.582,28.9844 68.8814,28.4843 68.5986,27.1566 68.5762,25.7793 68.5537,24.402 68.7614,23.0092 68.8574,22.4199 68.8947,22.1903 69.1024,21.8627 69.4258,21.4883 69.7492,21.1138 70.1741,20.6891 70.6016,20.2109 71.4564,19.2547 72.3318,18.0668 72.373,16.5605 72.4067,15.3325 71.523,14.1085 70.7051,12.9824 70.2961,12.4194 69.897,11.883 69.6211,11.4062 69.3452,10.9295 69.2076,10.5183 69.248,10.2344 69.5704,7.97127 70.333,6.68515 71.0254,5.31055 71.7178,3.93594 72.3289,2.47972 72.26,0 Z"
+ id="rtid-path1429-3-6-7-5-3-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccscccscccsccscccccscccccscccscccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 39.75,0 C 39.4141,0.76718 39.1383,1.75827 38.8848,2.49023 38.5895,3.3428 38.1112,4.22909 36.8477,5.30273 36.7578,5.37914 36.7252,5.45046 36.6777,5.54492 36.6303,5.63939 36.5805,5.75349 36.5293,5.88867 36.4268,6.15903 36.3126,6.51245 36.1895,6.92578 35.9432,7.75245 35.6641,8.81832 35.3984,9.89648 35.1328,10.9747 34.8809,12.0658 34.6914,12.9434 34.5019,13.8209 34.3754,14.4513 34.3555,14.7285 34.2158,16.6655 34.7076,18.3697 35.2344,19.7031 35.4978,20.3699 35.7709,20.9453 35.9785,21.4082 36.1861,21.8711 36.3195,22.237 36.3301,22.3965 36.349,22.6804 36.2704,23.181 36.1582,23.7617 36.046,24.3424 35.9061,25.0127 35.8262,25.6875 35.7462,26.3623 35.7234,27.0431 35.8594,27.6602 35.9954,28.2772 36.3042,28.8381 36.8672,29.1992 38.0372,29.9495 40.0342,29.9094 41.9492,29.752 42.9067,29.6732 43.842,29.5572 44.627,29.4668 45.4119,29.3764 46.0596,29.3165 46.3828,29.3398 46.8274,29.3719 48.1812,29.6981 49.6855,29.8652 51.1899,30.0323 52.8845,30.0518 54.1797,29.4141 54.4869,29.2629 54.6744,28.9596 54.8457,28.6113 55.017,28.263 55.1648,27.8535 55.3145,27.4551 55.4641,27.0566 55.6163,26.6694 55.7793,26.377 55.9423,26.0845 56.1147,25.9076 56.252,25.8633 58.3051,25.1992 59.2573,24.7928 60.1719,24.5586 61.0267,24.3397 62.2522,24.2595 64,24.25 V 23.75 C 61.978,23.75 61.016,23.8265 60.0488,24.0742 59.0816,24.3219 58.1369,24.7271 56.0977,25.3867 55.7553,25.4974 55.5311,25.793 55.3418,26.1328 55.1524,26.4726 54.9966,26.8776 54.8457,27.2793 54.6948,27.681 54.5492,28.0801 54.3965,28.3906 54.2438,28.7011 54.0748,28.9078 53.959,28.9648 52.827,29.5222 51.2053,29.5299 49.7402,29.3672 48.2752,29.2044 47.0089,28.8825 46.418,28.8398 45.9964,28.8094 45.3592,28.8779 44.5703,28.9688 43.7814,29.0596 42.8517,29.1763 41.9082,29.2539 40.0211,29.4091 38.0662,29.3734 37.1367,28.7773 36.6984,28.4962 36.4641,28.0812 36.3477,27.5527 36.2312,27.0243 36.2458,26.3915 36.3223,25.7461 36.3987,25.1006 36.5352,24.4435 36.6484,23.8574 36.7616,23.2714 36.8568,22.7642 36.8301,22.3633 36.8082,22.035 36.6447,21.6739 36.4336,21.2031 36.2224,20.7324 35.9553,20.1679 35.6992,19.5195 35.187,18.2228 34.7234,16.5978 34.8555,14.7656 34.8667,14.6089 34.9934,13.9207 35.1816,13.0488 35.3699,12.177 35.6203,11.0889 35.8848,10.0156 36.1492,8.94234 36.4277,7.88163 36.6699,7.06836 36.791,6.66173 36.9031,6.31684 36.998,6.06641 37.0455,5.94119 37.088,5.83926 37.123,5.76953 37.1581,5.6998 37.1986,5.66091 37.1719,5.68359 38.4931,4.56096 39.0415,3.56634 39.3574,2.6543 39.6733,1.74225 39.8091,0.82005 40.25,0 Z"
+ id="rtid-path1429-3-6-7-5-3-5-9-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscsccccccccsccccccsccsscccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,23.75 C 30.6701,23.75 29.1294,24.4713 28.1543,25.4707 27.7598,25.8751 27.5394,26.3293 27.3145,26.6738 27.0895,27.0183 26.8918,27.2414 26.5117,27.3223 26.3663,27.3532 26.1181,27.2712 25.8125,27.0664 25.5069,26.8617 25.1582,26.5562 24.793,26.252 24.4277,25.9477 24.045,25.6428 23.6465,25.4336 23.2479,25.2244 22.8131,25.107 22.3848,25.2422 21.6284,25.4808 21.0906,26.0212 20.6094,26.5488 20.1281,27.0765 19.6948,27.5929 19.1953,27.8613 17.3396,28.8586 15.2632,28.901 14.418,28.8398 14.4093,28.8392 14.3947,28.8402 14.3496,28.7852 14.3045,28.7301 14.2468,28.6265 14.1934,28.4922 14.0864,28.2236 13.9879,27.8348 13.8789,27.4277 13.7699,27.0206 13.6502,26.5938 13.4805,26.2246 13.3108,25.8554 13.087,25.5242 12.7285,25.377 12.387,25.2367 11.6548,24.942 10.8984,24.7695 10.5203,24.6833 10.1351,24.6264 9.7793,24.6406 9.42348,24.6549 9.08261,24.741 8.83594,24.9805 8.2109,25.5874 8.06841,26.5947 7.91602,27.3906 7.83982,27.7886 7.7626,28.1399 7.66992,28.334 7.62358,28.4311 7.57602,28.4807 7.54883,28.498 7.52164,28.5154 7.51023,28.5227 7.43945,28.5039 7.20658,28.4421 6.87155,28.1152 6.56445,27.5977 6.25735,27.0801 5.96615,26.3959 5.7168,25.6914 5.21809,24.2825 4.88207,22.7529 4.84766,22.3398 4.81456,21.9427 4.63957,20.7851 4.48242,19.3203 4.32527,17.8556 4.18883,16.1047 4.23633,14.6113 4.24556,14.321 4.16292,13.9673 4.06641,13.5586 3.96989,13.1499 3.85489,12.6961 3.7793,12.2754 3.7037,11.8547 3.6736,11.4638 3.72266,11.2109 3.74718,11.0845 3.78774,10.9973 3.83594,10.9434 3.88414,10.8894 3.93995,10.8565 4.05078,10.8418 4.04227,10.8429 4.09634,10.8456 4.1875,10.9062 4.27866,10.9669 4.39723,11.0728 4.52734,11.209 4.78756,11.4813 5.09489,11.8737 5.4082,12.2871 5.72151,12.7005 6.04195,13.1351 6.34375,13.502 6.64555,13.8688 6.91366,14.1681 7.20117,14.3262 7.5333,14.5088 7.90835,14.4765 8.23047,14.3398 8.55258,14.2032 8.84357,13.9692 9.10156,13.7109 9.35956,13.4527 9.58243,13.1686 9.74805,12.916 9.91366,12.6634 10.0262,12.4811 10.0586,12.2715 10.2321,11.1467 9.99453,9.85337 9.80469,8.61328 9.61484,7.3732 9.47889,6.1904 9.75977,5.35352 9.95496,4.77187 9.93526,4.28857 9.78711,3.88281 9.63896,3.47706 9.3803,3.15519 9.12891,2.82422 8.62612,2.16228 8.12044,1.46341 8.25,0 H 7.75 C 7.7138,1.3942 8.25802,2.50495 8.73047,3.12695 8.98465,3.46159 9.20432,3.7477 9.31641,4.05469 9.42849,4.36167 9.45235,4.69514 9.28516,5.19336 8.94645,6.20254 9.11946,7.43932 9.31055,8.6875 9.50163,9.93568 9.71812,11.1992 9.56445,12.1953 9.5651,12.1911 9.4776,12.4156 9.33008,12.6406 9.18255,12.8656 8.97685,13.1284 8.74805,13.3574 8.51924,13.5864 8.26571,13.7811 8.03516,13.8789 7.8046,13.9767 7.62003,13.9869 7.44141,13.8887 7.29442,13.8079 7.01944,13.5349 6.73047,13.1836 6.4415,12.8323 6.12254,12.4012 5.80664,11.9844 5.49074,11.5675 5.17827,11.1663 4.88867,10.8633 4.74387,10.7118 4.60665,10.5846 4.46484,10.4902 4.32304,10.3959 4.16918,10.3212 3.98438,10.3457 3.7753,10.3735 3.58987,10.4691 3.46289,10.6113 3.33591,10.7535 3.26658,10.9291 3.23047,11.1152 3.15824,11.4876 3.20691,11.9189 3.28711,12.3652 3.3673,12.8115 3.4852,13.2721 3.58008,13.6738 3.67495,14.0756 3.74158,14.4286 3.73633,14.5938 3.68747,16.1298 3.82602,17.897 3.98438,19.373 4.14273,20.8491 4.32251,22.0557 4.34961,22.3809 4.39603,22.938 4.73393,24.4105 5.24609,25.8574 5.50218,26.5809 5.80023,27.2897 6.13477,27.8535 6.4693,28.4173 6.8298,28.8608 7.31055,28.9883 7.48505,29.0346 7.67602,29.0107 7.81836,28.9199 7.9607,28.8292 8.05127,28.6951 8.12109,28.5488 8.26073,28.2563 8.32927,27.8864 8.40625,27.4844 8.5602,26.6803 8.74426,25.7645 9.18359,25.3379 9.30271,25.2222 9.51437,25.1521 9.80078,25.1406 10.0872,25.1291 10.4354,25.1776 10.7871,25.2578 11.4905,25.4182 12.2029,25.7018 12.5391,25.8398 12.7104,25.9102 12.8802,26.1178 13.0254,26.4336 13.1706,26.7494 13.2889,27.1546 13.3965,27.5566 13.5041,27.9587 13.6006,28.3566 13.7285,28.6777 13.7925,28.8383 13.8642,28.981 13.9629,29.1016 14.0616,29.2221 14.2067,29.327 14.3828,29.3398 15.3002,29.4063 17.446,29.3698 19.4316,28.3027 20.0544,27.968 20.5091,27.3994 20.9785,26.8848 21.4479,26.3701 21.9224,25.9121 22.5352,25.7188 22.7905,25.6382 23.0784,25.7007 23.4141,25.877 23.7498,26.0532 24.1137,26.3376 24.4727,26.6367 24.8316,26.9358 25.1872,27.2474 25.5352,27.4805 25.8831,27.7136 26.2384,27.8906 26.6152,27.8105 27.1573,27.6953 27.483,27.3292 27.7324,26.9473 27.9818,26.5654 28.1845,26.1558 28.5117,25.8203 29.3257,24.986 30.9022,24.3358 32,24.25 Z"
+ id="rtid-path1429-3-6-7-5-3-5-6-3-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/6.svg b/src/asset/tile/frontier/basic/6.svg
index 6500ebd..5dd476f 100644
--- a/src/asset/tile/frontier/basic/6.svg
+++ b/src/asset/tile/frontier/basic/6.svg
@@ -1,132 +1,633 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomborderandtopcorners.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask7559" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g7665">
- <ns0:g id="rtid-g7593">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path7561" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path7563" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path7565" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path7567" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path7569" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path7571" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path7573" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path7575" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path7577" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path7579" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path7581" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path7583" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path7585" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path7587" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path7589" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path7591" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g7663">
- <ns0:g id="rtid-g7627" transform="translate(0,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path7595" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path7597" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path7599" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path7601" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path7603" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path7605" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path7607" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path7609" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path7611" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path7613" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path7615" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path7617" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path7619" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path7621" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path7623" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path7625" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g7661" transform="matrix(-1,0,0,1,128,0)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path7629" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path7631" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path7633" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path7635" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path7637" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path7639" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path7641" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path7643" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path7645" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path7647" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path7649" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path7651" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path7653" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path7655" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path7657" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path7659" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="466.87186" ns1:cy="472.0814" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="28.963104">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="6.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask7559"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g7665">
+ <g
+ id="rtid-g7593">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path7561"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path7563"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path7565"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path7567"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path7569"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path7571"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path7573"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path7575"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path7577"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path7579"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path7581"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path7583"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path7585"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path7587"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path7589"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path7591"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g7663">
+ <g
+ id="rtid-g7627"
+ transform="translate(0,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path7595"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path7597"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path7599"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path7601"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path7603"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path7605"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path7607"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path7609"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path7611"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path7613"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path7615"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path7617"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path7619"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path7621"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path7623"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path7625"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g7661"
+ transform="matrix(-1,0,0,1,128,0)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path7629"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path7631"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path7633"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path7635"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path7637"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path7639"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path7641"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path7643"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path7645"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path7647"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path7649"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path7651"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path7653"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path7655"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path7657"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path7659"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="229.85247"
+ inkscape:cy="339.26935"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="2.5600009">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask7559)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="translate(0,-1.25e-4)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25012 c 0.8,0 1.49,-0.25012 2.04,-0.75012 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 z" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscscsccsscccccccscssssscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25012 c 0.85,0 1.51,-0.45012 2.11,-1.05012 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85012 -1.77,0.95012" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 h -0.5 c 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.519725,9.4264298 66.36,9.395 66.209712,9.3654272 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 v 0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccscscsscscccccscccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:use height="100%" id="rtid-use2110" transform="matrix(-1,0,0,1,128,0)" width="100%" x="0" y="0" ns6:href="#rtid-g1046" />
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask7559)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="translate(0,-1.25e-4)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.3090912,0.8602 -0.758,1.1 -0.4903252,0.26193 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25012 c 0.8,0 1.49,-0.25012 2.04,-0.75012 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.106,0.38444 -0.3,0.6 -0.346895,0.38544 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 z"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscscsccsscccccccscssssscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25012 c 0.85,0 1.51,-0.45012 2.11,-1.05012 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85012 -1.77,0.95012"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 h -0.5 c 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.519725,9.4264298 66.36,9.395 66.209712,9.3654272 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 v 0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccscscsscscccccscccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ height="100%"
+ id="rtid-use2110"
+ transform="matrix(-1,0,0,1,128,0)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-g1046" />
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/7.svg b/src/asset/tile/frontier/basic/7.svg
index 029436c..8b5b145 100644
--- a/src/asset/tile/frontier/basic/7.svg
+++ b/src/asset/tile/frontier/basic/7.svg
@@ -1,111 +1,523 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomborderandtopleftcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask7861" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g7931">
- <ns0:g id="rtid-g7895">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path7863" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path7865" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path7867" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path7869" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path7871" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path7873" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path7875" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path7877" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path7879" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path7881" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path7883" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path7885" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path7887" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path7889" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path7891" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path7893" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g7929" transform="translate(0,0.0054)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path7897" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path7899" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path7901" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path7903" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path7905" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path7907" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path7909" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path7911" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path7913" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path7915" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path7917" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path7919" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path7921" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path7923" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path7925" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path7927" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="-29.817792" ns1:cy="113.79335" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="1.2800005">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="7.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask7861"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g7931">
+ <g
+ id="rtid-g7895">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path7863"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path7865"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path7867"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path7869"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path7871"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path7873"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path7875"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path7877"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path7879"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path7881"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path7883"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path7885"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path7887"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path7889"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path7891"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path7893"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g7929"
+ transform="translate(0,0.0054)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path7897"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path7899"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path7901"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path7903"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path7905"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path7907"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path7909"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path7911"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path7913"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path7915"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path7917"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path7919"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path7921"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path7923"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path7925"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path7927"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="-166.92711"
+ inkscape:cy="113.79335"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.2800005">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask7861)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g1046" transform="translate(0,-1.25e-4)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-frontier-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-frontier-3-8" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25012 c 0.8,0 1.49,-0.25012 2.04,-0.75012 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 z" id="rtid-frontier-3-6-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cscscsccsscccccccsccsssscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25012 c 0.85,0 1.51,-0.45012 2.11,-1.05012 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85012 -1.77,0.95012" id="rtid-frontier-3-6-7-0" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccsccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-frontier-5-30" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87379,2.498613 -0.96,2.74 -0.01387,0.03883 -2.99e-4,0.03758 -0.01,0.04 -0.03881,0.0097 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 v 0.5 c 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 C 40.4,64.66 40.24,64.38 40.25,64 h -0.5" id="rtid-frontier-3-62-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccssccccccccccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-9-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.30464,-0.521392 0.5,-0.58 0.10709,-0.03213 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z" id="rtid-frontier-3-6-7-1-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccscccccccccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-frontier-2-4" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-7-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-frontier-3-6-0-6" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z" id="rtid-frontier-3-6-7-9-3" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.7970156,6.4615879 2.35,6.143 2.3919955,6.1188054 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 H 7.75 C 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 v 0.5" id="rtid-frontier-5-3-1" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccccccsccscccccccccccscccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-frontier-3-62-6-7" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-frontier-3-6-9-0-5" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-frontier-3-6-7-1-6-9" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask7861)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g1046"
+ transform="translate(0,-1.25e-4)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-frontier-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-frontier-3-8"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25012 c 0.8,0 1.49,-0.25012 2.04,-0.75012 0.55,-0.5 0.96,-1.3 1.26,-2.3 0.05,-0.2 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 z"
+ id="rtid-frontier-3-6-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cscscsccsscccccccsccsssscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25012 c 0.85,0 1.51,-0.45012 2.11,-1.05012 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85012 -1.77,0.95012"
+ id="rtid-frontier-3-6-7-0"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccsccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-5-30"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87379,2.498613 -0.96,2.74 -0.01387,0.03883 -2.99e-4,0.03758 -0.01,0.04 -0.03881,0.0097 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 v 0.5 c 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 C 40.4,64.66 40.24,64.38 40.25,64 h -0.5"
+ id="rtid-frontier-3-62-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccssccccccccccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-9-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,64 c -0.1,0.54 -0.15,1.24 -0.25,1.36 -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.6,0.38 -0.8,0.93 -0.2,0.92 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.19,-2.54 2.49,-3.64 0.1,-0.45 0.30464,-0.521392 0.5,-0.58 0.10709,-0.03213 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 z"
+ id="rtid-frontier-3-6-7-1-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccscccccccccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-2-4"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-7-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-frontier-3-6-0-6"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z"
+ id="rtid-frontier-3-6-7-9-3"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.7970156,6.4615879 2.35,6.143 2.3919955,6.1188054 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 H 7.75 C 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 v 0.5"
+ id="rtid-frontier-5-3-1"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccccccsccscccccccccccscccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-frontier-3-62-6-7"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-frontier-3-6-9-0-5"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-frontier-3-6-7-1-6-9"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/8.svg b/src/asset/tile/frontier/basic/8.svg
index e80972a..555b603 100644
--- a/src/asset/tile/frontier/basic/8.svg
+++ b/src/asset/tile/frontier/basic/8.svg
@@ -1,111 +1,521 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomborderandtoprightcorner.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask8022" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g8092">
- <ns0:g id="rtid-g8056">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path8024" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path8026" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path8028" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path8030" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path8032" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path8034" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path8036" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path8038" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path8040" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path8042" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path8044" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path8046" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path8048" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path8050" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path8052" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path8054" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-g8090" transform="matrix(-1,0,0,1,128,0)">
- <ns0:path d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z" id="rtid-path8058" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z" id="rtid-path8060" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z" id="rtid-path8062" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z" id="rtid-path8064" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z" id="rtid-path8066" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z" id="rtid-path8068" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z" id="rtid-path8070" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z" id="rtid-path8072" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z" id="rtid-path8074" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczzzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z" id="rtid-path8076" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z" id="rtid-path8078" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z" id="rtid-path8080" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z" id="rtid-path8082" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cczcc" ns1:connector-curvature="0" />
- <ns0:path d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z" id="rtid-path8084" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccsscc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z" id="rtid-path8086" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z" id="rtid-path8088" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccszcc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-layer3" ns1:cx="469.77225" ns1:cy="471.53669" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1059" ns1:window-maximized="0" ns1:window-width="1918" ns1:window-x="1" ns1:window-y="20" ns1:zoom="28.963104">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="8.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask8022"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g8092">
+ <g
+ id="rtid-g8056">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path8024"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path8026"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path8028"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path8030"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path8032"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path8034"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path8036"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path8038"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path8040"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path8042"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path8044"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path8046"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path8048"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path8050"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path8052"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path8054"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-g8090"
+ transform="matrix(-1,0,0,1,128,0)">
+ <path
+ d="M 0,-0.0054 H 8.001 C 7.977,1.625 7.879,1.353 7.075,2.201 6.636,2.665 8.133,3.662 7.072,4.451 6.644,4.768 6.122,6.681 5.114,6.914 4.053,7.16 2.507,5.723 2.252,5.879 0.9546,6.676 1.496,8.033 0,7.996 Z"
+ id="rtid-path8058"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,-0.0054 H 40 C 39.98,1.961 38.36,7.173 37.02,6.694 35.67,6.213 36.17,5.276 33.92,5.9 31.67,6.522 33.5,8.033 31.99,7.996 Z"
+ id="rtid-path8060"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,-0.0054 H 71.99 C 71.99,1.13 72.42,2.491 70.46,2.763 68.53,3.035 67.92,1.883 67.26,3.189 66.6,4.493 68.58,7.874 67.18,9.245 65.8,10.61 65.51,8.033 64,7.996 Z"
+ id="rtid-path8062"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,-0.0054 H 104 C 103.9,3.345 100.6,4.858 98.5,3.919 96.33,2.982 97.5,8.033 95.99,7.996 Z"
+ id="rtid-path8064"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,31.98 H 8.001 C 7.977,33.46 5.371,33.67 6.63,34.62 8.268,35.84 7.49,35.87 7.443,36.95 7.361,38.83 8.276,38.25 7.064,39.6 5.747,41.08 4.31,40.55 2.608,39.81 1.054,39.15 0.3768,39.99 0,39.99 Z"
+ id="rtid-path8066"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,31.98 H 40 C 39.95,35.34 37.17,35.39 35.88,36.42 34.61,37.45 33.5,40.02 31.99,39.99 Z"
+ id="rtid-path8068"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,31.98 H 71.99 C 71.94,35.34 75.14,33.49 73.55,35.26 71.99,37.03 65.51,40.02 64,39.99 Z"
+ id="rtid-path8070"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,31.98 H 104 C 103.9,35.34 99.72,32.27 98.05,34.44 96.33,36.61 97.5,40.02 95.99,39.99 Z"
+ id="rtid-path8072"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,63.99 H 8.001 C 7.972,65.79 5.794,64.18 4.609,65.58 3.421,66.98 3.336,65.66 2.376,67.38 1.416,69.13 4.061,69.84 2.433,70.45 0.8043,71.11 1.496,72.04 0,71.98 Z"
+ id="rtid-path8074"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczzzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,63.99 H 40 C 39.98,64.87 40.61,65.1 39.26,66.8 37.94,68.52 37.07,66.48 36.43,68.07 35.06,71.53 35.8,70.9 34.87,71.03 33.02,71.27 33.5,72.04 31.99,71.98 Z"
+ id="rtid-path8076"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,63.99 H 71.99 C 71.94,67.35 71.07,69.26 69.37,70.95 67.68,72.67 65.51,72.04 64,71.98 Z"
+ id="rtid-path8078"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,63.99 H 104 C 103.9,67.35 102.1,64.47 101.6,66.45 101,68.46 97.5,72.04 95.99,71.98 Z"
+ id="rtid-path8080"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,95.98 H 8.001 C 7.948,99.34 6.879,99.87 6.765,102.4 6.654,105 1.496,104 0,104 Z"
+ id="rtid-path8082"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cczcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 31.99,95.98 H 40 C 39.98,97.91 38.81,97.46 37.49,98.57 36.49,99.42 37.84,101.3 36.72,102 33.71,104.1 33.5,104 31.99,104 Z"
+ id="rtid-path8084"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,95.98 H 71.99 C 71.99,96.93 71.78,96.93 70.43,97.99 69.29,98.89 70.75,99.95 69.77,101 68.29,102.6 67.5,99.63 67.07,101.1 66.46,103.1 65.51,104 64,104 Z"
+ id="rtid-path8086"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 95.99,95.98 H 104 C 104,97.86 104.8,97.22 103.8,99.79 102.9,101.8 101.3,100.5 99.85,101.4 98.42,102.3 97.5,104 95.99,104 Z"
+ id="rtid-path8088"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccszcc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="47.100993"
+ inkscape:cy="231.02977"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="1.2800005">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
<rdf:RDF>
- <ns4:Work rdf:about="">
+ <cc:Work
+ rdf:about="">
<dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
- </ns4:Work>
+ </cc:Work>
</rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask8022)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219">
- <ns0:path d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- <ns0:g id="rtid-use2110" transform="matrix(-1,0,0,1,128,-1.25e-4)">
- <ns0:path d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5" id="rtid-path7952" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5" id="rtid-path7954" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 64,104.25012 c 0.8,0 1.49,-0.25012 2.04,-0.75012 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 z" id="rtid-path7956" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cssscsccsscccccccsccsssscccc" ns1:connector-curvature="0" />
- <ns0:path d="m 96,104.25012 c 0.85,0 1.51,-0.45012 2.11,-1.05012 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85012 -1.77,0.95012 z" id="rtid-path7958" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccsccscccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5" id="rtid-path7960" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0" id="rtid-path7962" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0" id="rtid-path7964" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.5,65.36 c -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.64634,0.365298 -0.8,0.93 -0.2472,0.908456 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.2051,-2.535994 2.49,-3.64 0.11519,-0.446354 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5 z" id="rtid-path7966" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccscsccccccscsccccc" ns1:connector-curvature="0" />
- <ns0:path d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0" id="rtid-path7968" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0" id="rtid-path7970" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0" id="rtid-path7972" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z" id="rtid-path7974" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="ccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5" id="rtid-path7976" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75" id="rtid-path7978" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5" id="rtid-path7980" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns1:connector-curvature="0" />
- <ns0:path d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5" id="rtid-path7982" mask="none" style="color:#000000;fill:#000000;stroke-width:0.18709999" ns2:nodetypes="cccccccccccccscsc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask8022)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ inkscape:groupmode="layer"
+ inkscape:label="borders"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-g1219">
+ <path
+ d="m 0,120.25 c 1.67453,0.094 2.87331,0.9 3.80273,1.477 0.49248,0.305 1.0068,0.552 1.62696,0.533 0.62015,-0.019 1.31158,-0.299 2.17383,-0.953 1.6392,-1.244 2.86008,-1.437 3.65238,-1.229 0.7922,0.209 1.19,0.83 1.2168,1.309 0.0215,0.381 0.1082,0.681 0.2832,0.902 0.1749,0.221 0.4365,0.337 0.707,0.363 0.541,0.052 1.161,-0.174 1.8652,-0.463 1.4085,-0.576 3.1352,-1.438 4.502,-1.345 h 0.0078 0.0078 c 0.3002,0 0.4543,0.076 0.625,0.197 0.1707,0.121 0.3494,0.304 0.625,0.459 0.2756,0.155 0.6432,0.263 1.1621,0.25 0.5184,-0.013 1.1929,-0.139 2.1309,-0.443 3.9302,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5329,0 -3.6729,-0.223 -7.7617,1.08 h -0.002 v 0.002 c -0.9107,0.295 -1.5434,0.409 -1.9902,0.42 -0.4469,0.011 -0.7025,-0.075 -0.9063,-0.19 -0.2037,-0.114 -0.36,-0.273 -0.58,-0.429 -0.2186,-0.155 -0.5123,-0.286 -0.9082,-0.287 -1.5902,-0.103 -3.3422,0.819 -4.7129,1.381 -0.687,0.281 -1.2819,0.461 -1.6289,0.427 -0.1736,-0.016 -0.2754,-0.067 -0.3614,-0.175 -0.0859,-0.109 -0.1578,-0.303 -0.1757,-0.622 -0.0403,-0.721 -0.6025,-1.503 -1.5899,-1.763 -0.9874,-0.26 -2.36714,0.014 -4.08202,1.314 -0.81477,0.618 -1.40387,0.837 -1.88476,0.852 -0.4809,0.014 -0.88681,-0.172 -1.34961,-0.459 C 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,119.75 c -0.8689,0 -1.4109,-0.091 -1.752,-0.203 -0.341,-0.112 -0.4798,-0.235 -0.5918,-0.352 -0.0559,-0.058 -0.103,-0.118 -0.1718,-0.183 -0.0688,-0.065 -0.1697,-0.134 -0.293,-0.16 -0.2466,-0.053 -0.4922,0.032 -0.916,0.228 -3.4453,1.593 -4.5198,-0.086 -6.1192,-0.09 -1.5568,-0.101 -2.8388,0.582 -3.6894,0.903 -0.4265,0.16 -0.7158,0.2 -0.8457,0.132 -0.065,-0.033 -0.1258,-0.093 -0.1856,-0.246 -0.0597,-0.152 -0.1061,-0.392 -0.125,-0.726 -0.011,-0.198 -0.0971,-0.394 -0.2558,-0.502 -0.1587,-0.108 -0.3391,-0.125 -0.5313,-0.117 -0.3843,0.014 -0.8668,0.139 -1.4941,0.275 -1.2547,0.273 -3.0581,0.601 -5.3711,0.252 -2.3835,-0.359 -3.8604,-0.153 -5.2012,0.139 -1.3407,0.291 -2.5352,0.658 -4.457,0.65 v 0.5 c 1.8038,-0.031 3.3217,-0.39 4.5645,-0.66 1.3153,-0.286 2.6931,-0.484 5.0195,-0.133 2.3969,0.361 4.2801,0.018 5.5508,-0.258 0.6353,-0.138 1.1254,-0.257 1.4062,-0.267 0.1404,-0.006 0.2143,0.021 0.2324,0.033 0.0182,0.012 0.0315,0.013 0.0371,0.115 v 0.002 c 0.0207,0.366 0.0703,0.65 0.1602,0.879 0.0899,0.229 0.2315,0.41 0.4199,0.508 0.3769,0.196 0.7956,0.064 1.252,-0.108 0.9127,-0.343 2.0951,-0.967 3.4922,-0.873 h 0.0078 0.0078 c 1.1977,0 2.7238,1.715 6.3359,0.045 0.3961,-0.183 0.5695,-0.2 0.6016,-0.193 0.016,0.003 0.0201,0.004 0.0527,0.035 0.0327,0.031 0.0818,0.092 0.1543,0.168 0.145,0.151 0.3833,0.344 0.7969,0.48 0.3594,0.119 1.1924,0.207 1.9082,0.227 z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,120.25 c 1.7156,0.06 3.1333,0.516 4.2324,0.697 1.1687,0.193 2.3383,0.03 4.0488,-1.267 l -0.0117,0.008 c 0.5395,-0.361 1.4213,-0.397 2.5547,-0.211 1.1335,0.185 2.5,0.579 3.9844,0.98 2.9687,0.801 6.4197,1.642 9.5664,0.855 l 0.0078,-10e-4 0.0059,-0.004 c 3.9301,-1.253 4.4094,-1.071 7.6113,-1.057 v -0.5 c -3.5262,0 -3.6802,-0.218 -7.7461,1.076 -2.9805,0.745 -6.3579,-0.053 -9.3164,-0.851 -1.4792,-0.4 -2.8505,-0.797 -4.0313,-0.991 -0.5903,-0.096 -1.1387,-0.147 -1.6289,-0.111 -0.4901,0.036 -0.9222,0.156 -1.2851,0.398 l -0.0078,0.004 -0.0059,0.006 c -1.6435,1.247 -2.5832,1.351 -3.664,1.172 C 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,120.25 c 1.8522,0.039 4.078,0.414 6.025,0.496 2.033,0.085 4.043,-0.156 5.782,-1.475 1.634,-1.239 3.538,-1.841 5.007,-1.867 0.735,-0.013 1.36,0.12 1.78,0.364 0.42,0.243 0.644,0.567 0.658,1.035 0.02,0.644 0.433,1.128 1.072,1.4 0.64,0.272 1.515,0.39 2.615,0.43 2.138,0.076 5.442,-0.178 9.061,-0.383 v -0.5 c -3.773,0.21 -6.897,0.46 -9.043,0.383 -1.073,-0.039 -1.905,-0.163 -2.437,-0.389 -0.533,-0.226 -0.756,-0.496 -0.77,-0.955 -0.02,-0.635 -0.373,-1.144 -0.906,-1.453 -0.533,-0.309 -1.239,-0.446 -2.037,-0.432 -1.598,0.028 -3.583,0.664 -5.303,1.969 -1.615,1.225 -3.478,1.458 -5.457,1.375 -1.98,-0.083 -4.059,-0.489 -6.047,-0.498 z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,88.25 c 1.6356,0.0815 2.56777,0.722 3.16992,1.4121 0.32074,0.3676 0.6332,0.7603 1.08203,1.0684 0.44883,0.308 1.03099,0.5169 1.8418,0.5254 1.62154,0.0166 3.09547,-0.7386 4.29885,-1.4336 0.6017,-0.3476 1.1377,-0.6817 1.5801,-0.9024 0.4423,-0.2207 0.7818,-0.3034 0.9531,-0.2558 1.6787,0.4658 3.5802,2.2781 6.6328,2.4843 h 0.0078 0.0098 c 0.8036,0 1.5659,-0.4573 2.6133,-0.8281 1.0473,-0.3708 2.3728,-0.6826 4.2636,-0.4609 1.0052,0.1178 1.656,0.078 2.1309,-0.0664 0.4749,-0.1445 0.7597,-0.4032 0.9883,-0.6407 0.2285,-0.2374 0.4058,-0.4464 0.7363,-0.6113 C 30.5903,88.4005 31.3535,88.28 32,88.25 v -0.5 c -0.9103,0 -1.4942,0.1343 -1.9141,0.3438 -0.4199,0.2094 -0.6602,0.4897 -0.875,0.7128 -0.2147,0.2232 -0.3978,0.3955 -0.7734,0.5098 -0.3756,0.1143 -0.9588,0.1603 -1.9258,0.0469 -1.9725,-0.2313 -3.3996,0.1002 -4.4902,0.4863 -1.0872,0.3849 -1.842,0.7943 -2.4375,0.7969 -2.862,-0.1968 -4.6344,-1.9407 -6.5235,-2.4649 -0.4077,-0.1131 -0.8329,0.0528 -1.3105,0.2911 -0.4776,0.2382 -1.0151,0.5738 -1.6074,0.916 C 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,88.25 c 1.6614,0.0515 2.8395,0.394 3.7109,0.5488 0.9349,0.1662 1.9076,0.0837 3.8477,-0.8203 1.873,-0.8725 2.7449,-0.6502 3.5996,-0.3945 0.8547,0.2556 1.741,0.5613 3.207,-0.2363 1.3454,-0.7321 2.392,-0.5489 3.252,-0.375 0.43,0.0869 0.8079,0.1854 1.1777,0.1308 0.3698,-0.0546 0.6991,-0.3222 0.8731,-0.7949 0.1508,-0.4096 0.3742,-0.6683 0.6699,-0.8398 0.2957,-0.1716 0.6744,-0.254 1.1269,-0.2559 0.9052,-0.0038 2.0861,0.3212 3.3418,0.7676 1.2558,0.4464 2.5897,1.0104 3.8379,1.4648 1.1552,0.4206 2.4485,0.7575 3.3555,0.8047 v -0.5 c -0.8222,0 -1.9528,-0.3273 -3.1836,-0.7754 -1.2308,-0.4481 -2.5664,-1.0114 -3.8418,-1.4648 -1.2754,-0.4534 -2.4886,-0.8012 -3.5117,-0.7969 -0.5116,0.0021 -0.9801,0.095 -1.375,0.3242 -0.395,0.2292 -0.7042,0.5966 -0.8887,1.0977 -0.1347,0.366 -0.2568,0.4402 -0.4765,0.4726 -0.2198,0.0325 -0.571,-0.0366 -1.0079,-0.125 -0.8737,-0.1767 -2.112,-0.3772 -3.5878,0.4258 -1.355,0.7372 -1.9481,0.4599 -2.8262,0.1973 -0.8782,-0.2627 -1.9908,-0.4943 -3.9531,0.4199 -1.8953,0.883 -2.6955,0.9332 -3.5508,0.7812 C 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,88.25 c 1.6431,0.0424 2.6083,0.3196 3.7871,0.4668 1.2628,0.1577 3.1233,0.1558 7.4961,-0.4473 4.3319,-0.5975 5.9023,0.0068 7.125,0.4473 0.6114,0.2203 1.1608,0.4118 1.8848,0.3613 0.724,-0.0505 1.5985,-0.3333 2.914,-1.0058 1.2844,-0.6566 2.2355,-0.9733 3,-1.0801 0.7646,-0.1068 1.3434,-0.005 1.8848,0.1719 1.0223,0.334 2.2596,1.012 3.9082,1.0859 v -0.5 c -1.7058,0 -2.5701,-0.6738 -3.7539,-1.0605 -0.5919,-0.1934 -1.2504,-0.2959 -2.0899,-0.1817 -0.8394,0.1143 -1.8587,0.4458 -3.1757,1.1192 -1.2859,0.6573 -2.1016,0.9098 -2.7227,0.9531 -0.6211,0.0433 -1.071,-0.1147 -1.6797,-0.334 -1.2174,-0.4386 -2.9682,-1.077 -7.3633,-0.4707 -4.3539,0.6005 -6.1645,0.5955 -7.3671,0.4453 C 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128,87.75 c -1.808,0 -2.574,0.4233 -3.318,0.9785 -0.745,0.5552 -1.488,1.2254 -3.496,1.8653 -3.662,1.1872 -7.353,1.41 -8.727,1.4101 -2.947,-0.2 -7.095,-0.7279 -9.277,-2.4219 -1.158,-0.8985 -2.01,-1.3359 -3.041,-1.5488 C 99.1088,87.8203 97.9077,87.8221 96,87.75 v 0.5 c 1.7061,0.0605 3.1471,0.089 4.041,0.2734 0.955,0.1971 1.707,0.5785 2.834,1.4532 2.384,1.8499 6.592,2.3264 9.564,2.5273 h 0.01 0.008 c 1.426,0 5.144,-0.2219 8.881,-1.4336 2.072,-0.6602 2.924,-1.4059 3.642,-1.9414 0.671,-0.5001 1.538,-0.8371 3.02,-0.8789 z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,56.25 c 1.67091,0.0674 2.72111,0.6 3.50977,0.8887 0.41879,0.1532 0.86845,0.2288 1.40625,0.084 0.53779,-0.1449 1.1584,-0.491 2.00976,-1.1368 0.81026,-0.6145 1.43359,-0.8128 1.89649,-0.789 0.46289,0.0237 0.79905,0.2575 1.07812,0.623 0.55811,0.7311 0.77911,1.9885 0.81051,2.5508 0.0231,0.4092 0.1966,0.7672 0.4707,1.0449 0.2742,0.2778 0.6426,0.4824 1.0723,0.6406 0.8595,0.3166 1.9779,0.4479 3.1797,0.4844 2.4036,0.073 5.137,-0.2465 6.6094,-0.4082 0.4785,-0.0525 0.8272,-0.1352 1.0918,-0.2558 0.2645,-0.1206 0.4533,-0.2942 0.5371,-0.5078 0.1675,-0.4273 -0.0499,-0.8359 -0.2071,-1.2149 -0.1571,-0.379 -0.2768,-0.7308 -0.1953,-1.0117 0.0815,-0.2809 0.3684,-0.597 1.2559,-0.8848 v 0.002 c 2.0196,-0.6436 2.9603,-0.6673 3.8652,-0.5391 0.8423,0.1193 2.0457,0.3929 3.6094,0.4297 v -0.5 c -1.7442,0 -2.5746,-0.2891 -3.5391,-0.4258 -0.9645,-0.1366 -2.0274,-0.098 -4.0879,0.5586 h -0.0019 c -0.9625,0.3121 -1.4392,0.7284 -1.582,1.2207 -0.1429,0.4924 0.0548,0.9559 0.2148,1.3418 0.16,0.386 0.2591,0.6921 0.2012,0.8399 -0.029,0.0738 -0.0902,0.151 -0.2774,0.2363 -0.1871,0.0853 -0.4918,0.1637 -0.9394,0.2129 -1.4766,0.1622 -4.1917,0.4794 -6.5391,0.4082 -1.1737,-0.0356 -2.256,-0.1724 -3.0234,-0.4551 -0.3837,-0.1414 -0.6864,-0.3185 -0.8887,-0.5234 -0.2023,-0.205 -0.3117,-0.43 -0.3281,-0.7207 C 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,55.75 c -1.8207,0 -2.5052,0.5856 -3.0684,1.1152 -0.5631,0.5297 -1.0053,1.0001 -2.7246,1.0391 -1.8591,0.042 -3.1295,-0.8728 -4.1425,-1.832 -0.5065,-0.4796 -0.9412,-0.9677 -1.3516,-1.3496 -0.4097,-0.3813 -0.805,-0.6806 -1.2715,-0.6817 -1.4889,-0.0993 -2.6736,-0.026 -3.7148,-0.1484 -1.0457,-0.123 -1.9509,-0.4292 -2.9746,-1.3184 -0.451,-0.3916 -0.9219,-0.615 -1.42,-0.709 -0.4981,-0.0939 -1.0234,-0.058 -1.5898,0.0664 -1.1329,0.249 -2.4637,0.8235 -4.2656,1.4141 -1.8501,0.6064 -2.3484,1.289 -2.7715,1.7227 -0.2116,0.2168 -0.3932,0.37 -0.7735,0.4902 C 33.5514,55.6788 32.9639,55.7542 32,55.75 v 0.5 c 0.7969,-0.0126 1.6766,-0.0866 2.082,-0.2148 0.4612,-0.1459 0.7452,-0.376 0.9805,-0.6172 0.4706,-0.4824 0.7951,-1.0158 2.5703,-1.5977 1.8233,-0.5976 3.1613,-1.1688 4.2149,-1.4004 0.5267,-0.1157 0.9738,-0.156 1.3867,-0.0801 0.4129,0.076 0.7933,0.2674 1.1894,0.6114 1.0934,0.9496 2.1328,1.3068 3.2442,1.4375 1.1114,0.1307 2.2934,0.0516 3.7558,0.1504 h 0.0078 0.0079 c 0.2323,0 0.5487,0.1924 0.9316,0.5488 0.3829,0.3563 0.8242,0.8502 1.3496,1.3476 1.0508,0.995 2.4663,2.0146 4.4961,1.9688 1.8183,-0.0412 2.4979,-0.6485 3.0586,-1.1758 C 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,56.25 c 1.6948,0.0321 2.9702,0.2347 3.8379,0.4316 0.9287,0.2108 1.8203,0.4218 3.4824,0.4043 1.0076,-0.0106 2.3427,-0.6517 3.9609,-1.2988 1.6183,-0.6471 3.4928,-1.3135 5.4317,-1.4297 1.5984,-0.0957 3.3039,0.374 4.9433,0.8399 1.6395,0.4658 3.2089,0.9338 4.586,0.7636 1.6923,-0.2089 2.1973,-0.139 2.7617,-0.0175 0.5173,0.1113 1.5251,0.2798 2.9961,0.3066 v -0.5 c -1.7553,0 -2.2997,-0.1678 -2.8906,-0.2949 -0.5909,-0.1271 -1.2086,-0.2025 -2.9278,0.0097 -1.2156,0.1503 -2.7473,-0.2816 -4.3886,-0.748 -1.6413,-0.4664 -3.3959,-0.9601 -5.1114,-0.8574 -2.0329,0.1217 -3.9542,0.8104 -5.5859,1.4629 -1.6316,0.6525 -3.0003,1.2554 -3.7812,1.2636 -1.6187,0.017 -2.4328,-0.1809 -3.3653,-0.3925 C 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,56.25 c 1.6526,0.0279 2.7778,0.174 3.5117,0.0176 0.7903,-0.1685 1.4643,-0.6707 3.1423,-1.9434 0.808,-0.6123 1.398,-0.7677 1.866,-0.7148 0.467,0.0528 0.851,0.3225 1.22,0.6777 0.369,0.3552 0.705,0.7861 1.094,1.1055 0.389,0.3194 0.889,0.5227 1.436,0.3144 0.599,-0.2287 1.02,-0.1668 1.425,0.0508 0.405,0.2177 0.787,0.6185 1.19,1.0762 0.806,0.9153 1.725,2.0702 3.318,2.1777 l 0.008,0.002 h 0.008 c 0.482,0 0.899,-0.3334 1.363,-0.75 0.464,-0.4166 0.974,-0.9471 1.551,-1.4492 1.154,-1.0043 2.544,-1.8788 4.353,-1.5333 1.556,0.2971 2.275,0.5351 3.075,0.7051 0.741,0.1577 1.908,0.2512 3.439,0.2637 v -0.5 c -1.763,0 -2.571,-0.0892 -3.336,-0.252 -0.765,-0.1627 -1.508,-0.408 -3.084,-0.7089 -2.01,-0.3839 -3.578,0.6066 -4.775,1.6484 -0.599,0.5209 -1.115,1.0588 -1.557,1.4551 -0.438,0.3934 -0.803,0.6139 -1.021,0.6172 -1.36,-0.0971 -2.151,-1.0796 -2.967,-2.0059 -0.409,-0.4645 -0.818,-0.9114 -1.328,-1.1855 -0.511,-0.2741 -1.13,-0.3491 -1.84,-0.0782 -0.369,0.1406 -0.616,0.0333 -0.94,-0.2324 -0.323,-0.2657 -0.664,-0.6926 -1.066,-1.0801 -0.402,-0.3874 -0.884,-0.7456 -1.51,-0.8164 -0.626,-0.0707 -1.354,0.1548 -2.224,0.8145 -1.676,1.2712 -2.299,1.7141 -2.9438,1.8515 C 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 0,24.25 c 1.2389,0.0666 2.33902,0.5247 3.05469,0.9883 0.77062,0.4992 1.44515,1.0494 2.375,1.0215 0.28703,-0.0086 0.46999,-0.1914 0.68554,-0.4063 0.21556,-0.2149 0.44349,-0.493 0.67969,-0.7871 0.4724,-0.5882 0.98803,-1.2457 1.35156,-1.5215 0.36302,-0.2754 0.61651,-0.3494 0.79688,-0.3379 0.18037,0.0115 0.32711,0.1047 0.48633,0.2735 0.31843,0.3374 0.57111,0.9539 1.04101,1.3066 0.5013,0.3763 1.0804,0.4106 1.4902,0.4453 0.205,0.0174 0.3704,0.0401 0.4453,0.0703 0.075,0.0302 0.0619,0.0037 0.0665,0.084 0.0022,0.0402 -0.0234,0.2781 -0.0665,0.5488 -0.043,0.2708 -0.0985,0.598 -0.1367,0.918 -0.0381,0.3201 -0.0618,0.6312 -0.0332,0.8965 0.0143,0.1326 0.0396,0.2549 0.1035,0.3711 0.064,0.1162 0.1938,0.2297 0.3477,0.25 0.2947,0.0387 0.5473,-0.1311 0.7227,-0.3359 0.1753,-0.2049 0.32,-0.463 0.4843,-0.7344 0.3286,-0.5428 0.7199,-1.1303 1.3907,-1.4317 0.6112,-0.2745 1.6026,-0.2915 2.5644,-0.2109 0.9618,0.0806 1.8836,0.2467 2.457,0.2754 1.1358,0.0569 1.9286,0.5113 2.625,0.9844 0.6965,0.473 1.2894,0.9916 2.0489,1.0429 0.1098,0.0075 0.2119,0.0023 0.3125,-0.0371 0.1005,-0.0394 0.1964,-0.1278 0.2382,-0.2285 0.0837,-0.2013 0.0225,-0.3686 -0.039,-0.5449 -0.123,-0.3527 -0.3575,-0.7798 -0.5156,-1.2363 -0.1582,-0.4565 -0.2329,-0.9192 -0.086,-1.3125 0.1468,-0.393 0.5174,-0.7711 1.3965,-1.0567 1.0076,-0.321 1.6373,-0.4314 2.0488,-0.4277 0.4115,0.0037 0.6029,0.1014 0.8301,0.2558 0.2272,0.1545 0.4835,0.3842 0.9102,0.5665 0.3712,0.1585 1.203,0.2824 1.9238,0.3105 v -0.5 c -0.8625,0 -1.3732,-0.1205 -1.7266,-0.2715 -0.3534,-0.1509 -0.5592,-0.3381 -0.8261,-0.5195 -0.267,-0.1814 -0.6029,-0.3373 -1.1055,-0.3418 -0.5026,-0.0045 -1.1746,0.1222 -2.207,0.4512 -0.9692,0.3143 -1.5018,0.7993 -1.711,1.3593 -0.2092,0.56 -0.0955,1.1418 0.0801,1.6485 0.1756,0.5067 0.421,0.9613 0.5176,1.2383 0.0374,0.1072 0.0325,0.1341 0.0371,0.1464 -0.0159,0.0015 -0.0133,0.004 -0.043,0.002 -0.5351,-0.0362 -1.0844,-0.4698 -1.8047,-0.959 -0.7202,-0.4892 -1.6203,-1.0072 -2.8789,-1.0703 -0.4994,-0.025 -1.4499,-0.1904 -2.4414,-0.2734 -0.9915,-0.0831 -2.0339,-0.095 -2.8105,0.2539 -0.8249,0.3706 -1.2773,1.0739 -1.6133,1.6289 -0.168,0.2775 -0.3107,0.5202 -0.4356,0.666 -0.116,0.1355 -0.1769,0.1594 -0.2578,0.1543 -0.0125,-0.0278 -0.0298,-0.0822 -0.039,-0.168 -0.0204,-0.1894 -0.005,-0.4795 0.0312,-0.7832 0.0362,-0.3037 0.0912,-0.6244 0.1348,-0.8984 0.0435,-0.274 0.0823,-0.4789 0.0723,-0.6563 -0.0136,-0.2397 -0.1914,-0.442 -0.3789,-0.5176 C 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,23.75 c -3.533,0 -3.673,-0.2227 -7.7617,1.0801 l -0.002,0.0019 c -1.8234,0.5914 -2.4978,0.4804 -2.9023,0.2637 -0.2023,-0.1083 -0.3563,-0.262 -0.5723,-0.4199 -0.2159,-0.1579 -0.5011,-0.3052 -0.8984,-0.332 -1.0652,-0.072 -2.1977,0.3259 -3.2481,0.7578 -1.0732,0.4414 -1.4451,0.8717 -1.7129,0.9453 -0.1338,0.0368 -0.2805,0.0297 -0.5957,-0.0996 -0.3151,-0.1294 -0.7717,-0.3807 -1.455,-0.7891 C 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 v 0.5 c 1.9017,0.0604 4.5065,0.0106 6.7598,0.125 2.3431,0.119 4.5392,0.437 5.834,1.2109 0.6897,0.4123 1.1572,0.6739 1.5234,0.8243 0.3662,0.1503 0.6573,0.1908 0.918,0.1191 0.5213,-0.1433 0.7707,-0.5541 1.7695,-0.9648 1.0308,-0.4238 2.1116,-0.7824 3.0254,-0.7207 0.3011,0.0203 0.4603,0.1068 0.6347,0.2343 0.1745,0.1276 0.3554,0.3104 0.6329,0.459 0.5546,0.2971 1.4159,0.3773 3.291,-0.2305 C 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,23.75 c -1.1619,0 -2.014,0.605 -2.7051,1.1992 -0.6911,0.5943 -1.2545,1.1588 -1.7578,1.2481 -0.0857,0.0152 -0.294,-0.0484 -0.5605,-0.2129 -0.2666,-0.1646 -0.584,-0.4057 -0.9336,-0.6406 -0.6994,-0.47 -1.5619,-0.9418 -2.4825,-0.6485 -1.8428,0.5872 -2.8964,0.7921 -3.6582,0.9258 -0.7617,0.1337 -1.259,0.1989 -1.9238,0.5078 l -0.0097,0.0059 -0.0079,0.0039 c -1.8645,1.0656 -3.2117,1.4014 -4.2695,1.3906 -1.0578,-0.0108 -1.8442,-0.3651 -2.6133,-0.7441 -0.769,-0.379 -1.5217,-0.7912 -2.4648,-0.8243 -0.9431,-0.033 -2.0388,0.3233 -3.4785,1.3848 l -0.002,0.002 c -0.4049,0.3071 -0.7208,0.4733 -0.9473,0.5371 -0.2264,0.0638 -0.3498,0.0397 -0.4628,-0.0293 C 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 v 0.5 c 0.7309,0.0683 1.4705,0.3948 1.8066,0.8242 0.3795,0.4848 0.5994,1.1365 0.8067,1.7403 0.2073,0.6037 0.3813,1.1808 0.8496,1.4667 0.2341,0.143 0.5368,0.1769 0.8594,0.086 C 68.6437,28.2766 69,28.0749 69.4316,27.748 l 0.0039,-0.0019 c 1.3837,-1.0193 2.3555,-1.3133 3.1602,-1.2852 0.8056,0.0282 1.4821,0.3892 2.2617,0.7735 0.7797,0.3842 1.662,0.783 2.8301,0.7949 1.1635,0.0119 2.5977,-0.3604 4.502,-1.4453 0.6045,-0.2809 1.0305,-0.3356 1.8007,-0.4707 0.7702,-0.1352 1.8573,-0.3477 3.7207,-0.9414 0.6821,-0.2173 1.3846,0.1388 2.0528,0.5879 0.3341,0.2245 0.6498,0.4655 0.9492,0.6504 0.2994,0.1848 0.5892,0.3365 0.9121,0.2793 0.7603,-0.1349 1.3314,-0.7899 1.9961,-1.3614 C 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,24.25 c 0.7357,0.0538 1.5679,0.2812 1.9395,0.5527 0.427,0.3121 0.7017,0.7126 0.9843,1.0703 0.2826,0.3578 0.6078,0.7015 1.1112,0.7286 0.504,0.027 1.084,-0.2388 1.942,-0.8887 0.019,-0.015 0.033,-0.0227 0.099,-0.0117 0.067,0.0109 0.17,0.0512 0.289,0.1191 0.238,0.1359 0.536,0.3748 0.832,0.625 0.297,0.2502 0.592,0.5101 0.865,0.6973 0.137,0.0936 0.268,0.1705 0.407,0.2168 0.139,0.0463 0.314,0.0644 0.465,-0.0313 1.155,-0.7319 1.742,-1.8167 2.199,-2.334 0.114,-0.1293 0.217,-0.2189 0.301,-0.2656 0.084,-0.0467 0.14,-0.0571 0.218,-0.041 0.158,0.0322 0.455,0.2518 0.866,0.8301 0.218,0.3078 0.438,0.5176 0.683,0.6328 0.245,0.1152 0.511,0.1173 0.746,0.041 0.47,-0.1526 0.851,-0.556 1.272,-0.998 0.841,-0.8842 1.774,-1.9327 3.119,-1.8418 l 0.008,0.0019 h 0.009 c 0.634,0 1.037,0.2654 1.797,0.4043 0.76,0.1389 1.819,0.1137 3.696,-0.4844 l 0.101,-0.0312 0.047,-0.0957 c 0,0 0.337,-0.682 0.797,-1.293 0.23,-0.3055 0.491,-0.591 0.732,-0.7558 0.242,-0.1649 0.422,-0.2061 0.592,-0.127 0.035,0.0163 0.057,0.0378 0.084,0.1035 0.028,0.0657 0.049,0.1716 0.057,0.3008 0.016,0.2583 -0.015,0.6024 -0.031,0.9336 -0.016,0.3312 -0.034,0.6505 0.109,0.9297 0.071,0.1396 0.208,0.2669 0.379,0.3125 0.17,0.0456 0.352,0.0218 0.555,-0.0469 0.647,-0.2191 1.178,-0.0616 1.9,0.1816 0.658,0.2218 1.766,0.5157 2.83,0.5645 v -0.5 c -1.14,0 -1.94,-0.2909 -2.67,-0.5371 -0.73,-0.2462 -1.421,-0.4544 -2.221,-0.1836 -0.146,0.0497 -0.231,0.0481 -0.265,0.0391 -0.034,-0.0091 -0.039,-0.0126 -0.063,-0.0586 -0.047,-0.0922 -0.071,-0.365 -0.056,-0.6778 0.015,-0.3127 0.053,-0.6654 0.033,-0.9882 -0.01,-0.1615 -0.034,-0.3167 -0.096,-0.4629 -0.061,-0.1463 -0.173,-0.2882 -0.334,-0.3633 -0.368,-0.1712 -0.765,-0.0499 -1.084,0.1679 -0.319,0.2179 -0.603,0.5374 -0.851,0.8672 -0.454,0.6026 -0.72,1.1465 -0.774,1.2539 -1.751,0.5456 -2.718,0.579 -3.375,0.459 -0.668,-0.122 -1.12,-0.4072 -1.879,-0.4101 -1.611,-0.1051 -2.681,1.121 -3.51,1.9922 -0.415,0.4362 -0.786,0.7794 -1.062,0.8691 -0.138,0.0448 -0.244,0.0438 -0.379,-0.0195 -0.135,-0.0633 -0.301,-0.2047 -0.488,-0.4688 -0.437,-0.616 -0.778,-0.9502 -1.174,-1.0312 -0.198,-0.0405 -0.397,0.0029 -0.561,0.0937 -0.163,0.0908 -0.299,0.2216 -0.433,0.3731 -0.535,0.6059 -1.062,1.5894 -2.092,2.2421 0.02,-0.0124 0.024,0.0014 -0.039,-0.0195 -0.063,-0.0209 -0.165,-0.0766 -0.281,-0.1562 -0.233,-0.1592 -0.526,-0.4123 -0.826,-0.666 -0.301,-0.2538 -0.608,-0.5073 -0.907,-0.6778 -0.149,-0.0852 -0.296,-0.1515 -0.455,-0.1777 -0.158,-0.0262 -0.341,-0.0028 -0.484,0.1055 -0.82,0.6218 -1.319,0.8047 -1.612,0.789 C 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rtid-use2110"
+ transform="matrix(-1,0,0,1,128,-1.25e-4)">
+ <path
+ d="m 7.75,96 c -0.056,1.43 -0.317,2.63 -0.582,3.43 -0.286,0.87 -0.595,1.67 -0.652,2.97 -0.024,0.6 -0.29,0.9 -0.758,1.1 -0.468,0.3 -1.141,0.4 -1.867,0.4 C 2.529,104 0.8398,103.75012 0,103.75012 v 0.5 c 0.7015,0 2.386,0.24988 3.914,0.14988 0.764,0 1.495,-0.1 2.072,-0.4 0.578,-0.3 0.998,-0.8 1.03,-1.6 0.054,-1.2 0.336,-1.9 0.627,-2.81 C 7.933,98.72 8.224,97.7 8.25,96 h -0.5"
+ id="rtid-path7952"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,96 c -0.03,0.27 -0.11,0.79 -0.19,0.93 -0.11,0.2 -0.25,0.33 -0.46,0.45 -0.41,0.24 -1.08,0.43 -1.78,1.02 -0.31,0.25 -0.44,0.6 -0.48,0.95 -0.03,0.34 0.01,0.65 0.05,1.05 0.04,0.3 0.06,0.6 0.03,0.9 -0.04,0.2 -0.13,0.4 -0.34,0.5 -1.5,1 -2.3,1.5 -2.88,1.8 -0.49,0.2 -1.14,0.15012 -1.7,0.15012 v 0.5 c 0.75,0 1.23,0.0499 1.88,-0.25012 0.66,-0.2 1.47,-0.7 2.98,-1.8 0.33,-0.2 0.5,-0.5 0.55,-0.9 0.05,-0.3 0.01,-0.6 -0.02,-1 -0.04,-0.31 -0.08,-0.64 -0.05,-0.9 0.03,-0.26 0.11,-0.46 0.3,-0.62 0.63,-0.52 1.21,-0.67 1.71,-0.97 0.26,-0.15 0.49,-0.34 0.65,-0.64 0.16,-0.29 0.24,-0.67 0.25,-1.17 h -0.5"
+ id="rtid-path7954"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,104.25012 c 0.8,0 1.49,-0.25012 2.04,-0.75012 0.55,-0.5 0.967671,-1.29773 1.26,-2.3 0.05772,-0.19791 0.09,-0.2 0.11,-0.2 0.04,0 0.23,0.1 0.45,0.3 0.23,0.2 0.523333,0.35045 0.89,0.4 0.379823,0.0513 0.79,-0.1 1.2,-0.5 0.28,-0.3 0.4,-0.7 0.43,-1 0.02,-0.27 -0.04,-0.56 -0.09,-0.81 -0.05,-0.25 -0.09,-0.47 -0.06,-0.65 0.03,-0.18 0.11,-0.35 0.35,-0.54 0.67,-0.53 1.06,-0.79 1.32,-1.08 0.26,-0.3 0.34,-0.64 0.35,-1.12 h -0.5 c -0.02,0.19 -0.1,0.64 -0.22,0.78 -0.19,0.21 -0.58,0.49 -1.26,1.03 -0.32,0.25 -0.49,0.56 -0.53,0.85 -0.05,0.3 0.01,0.57 0.06,0.83 0.05,0.26 0.1,0.49 0.08,0.71 -0.02,0.2 -0.09,0.4 -0.3,0.6 -0.33,0.4 -0.552761,0.45299 -0.77,0.4 -0.204019,-0.0498 -0.42,-0.1 -0.63,-0.3 -0.21,-0.2 -0.377614,-0.33515 -0.65,-0.4 -0.167368,-0.0399 -0.34,0 -0.46,0.1 -0.12,0.1 -0.19,0.2 -0.25,0.4 -0.29,1 -0.67,1.7 -1.12,2.1 -0.39,0.4 -1.14,0.55012 -1.7,0.65012 z"
+ id="rtid-path7956"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cssscsccsscccccccsccsssscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,104.25012 c 0.85,0 1.51,-0.45012 2.11,-1.05012 0.61,-0.5 1.19,-1.2 1.87,-1.6 0.62,-0.4 1.32,-0.3 2.12,-0.3 0.3,0 0.7,-0.1 1,-0.3 0.4,-0.2 0.7,-0.6 0.9,-1.1 0.5,-1.3 0.6,-1.86 0.5,-2.31 -0.1,-0.45 -0.25,-0.7 -0.25,-1.59 h -0.5 c 0.1,0.68 0.25,1.4 0.25,1.69 0.1,0.33 0.1,0.75 -0.5,2.02 -0.2,0.49 -0.4,0.69 -0.6,0.89 -0.3,0.1 -0.5,0.2 -0.9,0.2 -0.6,0 -1.5,-0.1 -2.27,0.4 -0.78,0.4 -1.37,1.1 -1.96,1.6 -0.5,0.5 -1.24,0.85012 -1.77,0.95012 z"
+ id="rtid-path7958"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccsccscccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,72.25 C 0.3994,72.26 0.6785,72.21 0.9004,72.09 1.122,71.97 1.258,71.79 1.371,71.63 1.598,71.31 1.759,71 2.523,70.71 2.745,70.62 2.91,70.53 3.033,70.41 3.157,70.29 3.23,70.12 3.227,69.96 3.22,69.65 3.027,69.44 2.859,69.21 2.691,68.97 2.522,68.73 2.449,68.46 2.376,68.2 2.381,67.91 2.594,67.52 2.826,67.1 3.001,66.88 3.127,66.77 3.253,66.66 3.325,66.65 3.457,66.62 3.589,66.59 3.783,66.57 4.01,66.45 4.237,66.33 4.489,66.12 4.799,65.75 5.056,65.45 5.351,65.31 5.684,65.25 6.016,65.18 6.382,65.19 6.736,65.19 7.09,65.2 7.438,65.2 7.744,65.03 8.05,64.86 8.242,64.5 8.25,64 c 0,0 -0.5,0 -0.5,0 -0.042,0.12 -0.16,0.55 -0.244,0.59 -0.147,0.08 -0.423,0.11 -0.766,0.1 -0.342,0 -0.744,-0.02 -1.154,0.07 -0.41,0.08 -0.834,0.27 -1.17,0.67 C 4.133,65.77 3.93,65.92 3.777,66 3.624,66.08 3.515,66.1 3.357,66.13 3.2,66.16 2.996,66.22 2.799,66.4 c -0.197,0.17 -0.395,0.44 -0.643,0.88 -0.267,0.49 -0.29,0.94 -0.187,1.31 0.102,0.38 0.314,0.67 0.484,0.91 0.17,0.23 0.272,0.42 0.274,0.47 0,0.03 0.006,0.03 -0.041,0.08 -0.048,0.05 -0.158,0.12 -0.344,0.19 -0.864,0.34 -1.17,0.81 -1.3791,1.1 -0.1044,0.15 -0.1788,0.24 -0.2988,0.31 -0.0755,0.04 -0.5115,0.08 -0.6641,0.1 0,0 0,0.5 0,0.5"
+ id="rtid-path7960"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,64 c 0.04,0.32 0.14,0.86 0.13,1.1 -0.01,0.31 -0.15,0.74 -0.81,1.57 -0.31,0.4 -0.57,0.55 -0.78,0.6 -0.22,0.06 -0.42,0.02 -0.65,-0.03 -0.22,-0.05 -0.47,-0.12 -0.76,-0.04 -0.28,0.09 -0.5,0.34 -0.67,0.78 -0.69,1.74 -0.87,2.5 -0.96,2.74 -0.01,0.04 -0.01,0.03 -0.01,0.04 -0.04,0 -0.17,-0.01 -0.41,0.03 -0.95,0.13 -1.37,0.42 -1.67,0.63 -0.23,0.17 -0.76,0.3 -1.16,0.33 0,0 0,0.5 0,0.5 0.79,0.02 1.15,-0.21 1.45,-0.42 0.3,-0.22 0.57,-0.43 1.45,-0.55 0.21,-0.03 0.3,-0.01 0.45,-0.03 0.08,-0.01 0.18,-0.05 0.25,-0.13 0.06,-0.07 0.09,-0.15 0.12,-0.23 0.12,-0.34 0.27,-1 0.95,-2.73 0.15,-0.36 0.26,-0.45 0.36,-0.48 0.1,-0.03 0.27,0 0.5,0.05 0.24,0.05 0.54,0.11 0.88,0.03 0.34,-0.09 0.69,-0.33 1.05,-0.78 0.69,-0.87 0.9,-1.41 0.92,-1.87 0.02,-0.45 -0.14,-0.73 -0.13,-1.11 0,0 -0.5,0 -0.5,0"
+ id="rtid-path7962"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,64 c -0.1,3.11 -0.94,5.17 -2.55,6.79 -1.53,1.53 -3.67,1.04 -5.2,0.96 0,0 0,0.5 0,0.5 1.43,0.04 3.76,0.7 5.55,-1.11 1.74,-1.74 2.65,-3.75 2.7,-7.14 0,0 -0.5,0 -0.5,0"
+ id="rtid-path7964"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.5,65.36 c -0.1,0.08 -0.1,0.11 -0.2,0.12 -0.1,0.02 -0.2,0.02 -0.3,0.01 -0.2,-0.02 -0.5,-0.11 -0.9,-0.02 -0.3,0.09 -0.64634,0.365298 -0.8,0.93 -0.2472,0.908456 -1.2,2.31 -2.35,3.43 -0.55,0.55 -1.14,1.05 -1.67,1.4 -0.42,0.28 -1,0.47 -1.28,0.52 v 0.5 c 0.48,0.01 0.99,-0.23 1.56,-0.61 0.56,-0.37 1.17,-0.88 1.75,-1.46 1.19,-1.15 2.2051,-2.535994 2.49,-3.64 0.11519,-0.446354 0.3,-0.54 0.5,-0.58 0.1,-0.05 0.4,0 0.7,0.03 0.1,0.01 0.3,0.02 0.4,-0.02 0.2,-0.04 0.4,-0.14 0.5,-0.3 0.2,-0.31 0.25,-0.81 0.35,-1.67 h -0.5 z"
+ id="rtid-path7966"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccscsccccccscsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 7.75,32 c -0.055,0.16 -0.201,0.58 -0.332,0.72 -0.201,0.21 -0.475,0.4 -0.729,0.58 -0.253,0.18 -0.502,0.34 -0.613,0.63 -0.055,0.15 -0.048,0.33 0.028,0.48 0.075,0.15 0.201,0.28 0.376,0.42 0.402,0.3 0.648,0.52 0.782,0.69 0.134,0.16 0.155,0.25 0.156,0.33 0.002,0.17 -0.199,0.49 -0.225,1.09 -0.042,0.98 0.192,1.42 0.241,1.61 C 7.458,38.64 7.466,38.66 7.4,38.79 7.335,38.91 7.175,39.12 6.877,39.46 6.258,40.15 5.669,40.34 4.994,40.31 4.319,40.27 3.554,39.97 2.707,39.6 1.882,39.24 1.243,39.29 0.7871,39.43 0.5641,39.5 0.1369,39.68 0,39.75 c 0,0 0,0.5 0,0.5 0.1904,0.01 0.3136,-0.07 0.457,-0.14 C 0.6005,40.04 0.7549,39.96 0.9375,39.9 1.303,39.79 1.778,39.74 2.508,40.06 3.362,40.43 4.166,40.76 4.965,40.8 5.763,40.85 6.551,40.57 7.25,39.79 7.557,39.45 7.737,39.22 7.844,39.01 7.95,38.81 7.96,38.59 7.918,38.43 7.833,38.09 7.654,37.87 7.693,36.96 7.714,36.49 7.924,36.26 7.918,35.85 7.915,35.64 7.828,35.42 7.648,35.2 7.469,34.98 7.199,34.74 6.781,34.43 6.642,34.32 6.574,34.24 6.551,34.19 6.528,34.15 6.533,34.14 6.545,34.11 6.569,34.04 6.737,33.88 6.98,33.71 7.224,33.53 7.527,33.33 7.781,33.06 8.035,32.79 8.243,32.44 8.25,32 c 0,0 -0.5,0 -0.5,0"
+ id="rtid-path7968"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 39.75,32 c -0.1,1.39 -0.72,2.38 -1.48,2.88 -0.82,0.53 -1.83,0.79 -2.54,1.36 -0.69,0.55 -1.28,1.46 -1.9,2.22 -0.3,0.37 -0.61,0.71 -0.92,0.94 -0.23,0.17 -0.69,0.31 -0.91,0.35 0,0 0,0.5 0,0.5 0.45,0.01 0.85,-0.17 1.21,-0.45 0.36,-0.27 0.69,-0.64 1.01,-1.03 0.64,-0.78 1.24,-1.67 1.82,-2.14 0.58,-0.46 1.6,-0.74 2.5,-1.33 0.91,-0.59 1.68,-1.56 1.71,-3.3 0,0 -0.5,0 -0.5,0"
+ id="rtid-path7970"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 71.75,32 c 0.04,0.69 0.23,1.5 0.49,1.83 0.31,0.38 0.71,0.54 1.03,0.64 0.15,0.04 0.29,0.08 0.38,0.11 0.09,0.03 0.11,0.06 0.09,0.03 -0.02,-0.03 0.01,-0.05 -0.04,0.04 -0.04,0.09 -0.15,0.24 -0.34,0.46 -0.71,0.81 -2.73,2.02 -4.72,2.98 -0.99,0.48 -1.99,0.9 -2.82,1.2 -0.72,0.26 -1.48,0.43 -1.82,0.46 0,0 0,0.5 0,0.5 0.46,0.01 1.13,-0.18 1.99,-0.49 0.85,-0.3 1.86,-0.73 2.87,-1.22 2.02,-0.97 4.03,-2.14 4.87,-3.1 0.2,-0.23 0.34,-0.4 0.42,-0.57 0.08,-0.16 0.11,-0.36 0.02,-0.51 -0.09,-0.16 -0.23,-0.21 -0.36,-0.25 -0.13,-0.05 -0.26,-0.08 -0.4,-0.12 -0.28,-0.09 -0.56,-0.2 -0.78,-0.47 -0.22,-0.27 -0.39,-0.72 -0.38,-1.52 0,0 -0.5,0 -0.5,0"
+ id="rtid-path7972"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 103.75,32 c -0.1,1.16 -0.35,1.13 -0.55,1.27 -0.4,0.17 -0.9,0.18 -1.5,0.14 -0.7,-0.04 -1.4,-0.12 -2.05,-0.05 -0.68,0.08 -1.34,0.32 -1.81,0.92 -0.91,1.16 -1.04,2.62 -1.15,3.74 -0.05,0.57 -0.11,1.05 -0.22,1.35 -0.05,0.15 -0.11,0.24 -0.18,0.3 -0.01,0.01 -0.28,0.07 -0.29,0.08 v 0.5 c 0.23,0.01 0.44,-0.06 0.61,-0.2 0.16,-0.13 0.26,-0.31 0.34,-0.51 0.14,-0.4 0.18,-0.91 0.24,-1.47 0.11,-1.12 0.25,-2.46 1.04,-3.48 0.38,-0.48 0.88,-0.67 1.47,-0.73 0.6,-0.06 1.3,0.01 1.9,0.05 0.7,0.04 1.7,0.06 2.2,-0.2 0.5,-0.25 0.35,-0.82 0.45,-1.71 z"
+ id="rtid-path7974"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="ccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,8.25 C 0.4114,8.261 0.7186,8.171 0.9493,7.998 1.18,7.826 1.312,7.593 1.424,7.365 1.64,6.926 1.817,6.494 2.35,6.143 2.395,6.161 2.456,6.188 2.537,6.233 2.724,6.335 2.975,6.494 3.258,6.652 3.823,6.969 4.511,7.315 5.172,7.162 5.813,7.014 6.209,6.404 6.527,5.842 6.687,5.561 6.827,5.283 6.947,5.063 7.068,4.842 7.19,4.679 7.221,4.656 7.529,4.427 7.688,4.138 7.709,3.856 7.73,3.574 7.635,3.321 7.535,3.104 7.435,2.886 7.323,2.693 7.273,2.557 7.249,2.489 7.241,2.438 7.242,2.414 7.243,2.39 7.243,2.393 7.258,2.377 7.646,1.967 7.886,1.826 8.051,1.514 8.216,1.201 8.237,0.8203 8.25,0 8.25,0 7.75,0 7.75,0 7.731,0.5006 7.68,1.142 7.607,1.279 7.517,1.45 7.308,1.596 6.895,2.033 6.8,2.133 6.749,2.27 6.744,2.393 6.739,2.515 6.767,2.624 6.805,2.727 6.879,2.932 6.994,3.124 7.08,3.313 7.167,3.501 7.22,3.677 7.209,3.818 7.198,3.96 7.145,4.09 6.922,4.256 6.738,4.392 6.637,4.587 6.508,4.822 6.379,5.057 6.244,5.33 6.094,5.596 5.793,6.127 5.425,6.591 5.059,6.676 4.658,6.768 4.041,6.518 3.504,6.217 3.235,6.066 2.986,5.91 2.777,5.795 2.673,5.738 2.581,5.689 2.486,5.656 2.392,5.623 2.274,5.576 2.121,5.67 1.405,6.109 1.18,6.731 0.9766,7.145 0.8749,7.351 0.7795,7.501 0.6504,7.598 0.5702,7.658 0.1443,7.725 0,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-path7976"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32,8.25 c 0.21,0.005 0.37,-0.014 0.51,-0.072 0.15,-0.058 0.26,-0.167 0.33,-0.289 0.12,-0.245 0.08,-0.476 0.08,-0.684 0.01,-0.208 0.03,-0.386 0.16,-0.556 0.12,-0.171 0.37,-0.356 0.9,-0.502 0.56,-0.153 0.93,-0.206 1.18,-0.2 0.25,0.007 0.37,0.062 0.5,0.149 0.26,0.173 0.53,0.577 1.27,0.838 0.24,0.086 0.51,0.038 0.72,-0.088 0.22,-0.126 0.41,-0.322 0.6,-0.565 0.36,-0.485 0.69,-1.166 0.99,-1.923 0.58,-1.515 0.99,-3.31 1.01,-4.358 0,0 -0.5,0 -0.5,0 C 39.69,0.9592 39.3,2.803 38.77,4.178 38.49,4.909 38.16,5.562 37.85,5.98 37.69,6.19 37.53,6.337 37.4,6.412 37.28,6.487 37.19,6.497 37.1,6.463 36.48,6.243 36.33,5.939 35.94,5.68 35.75,5.55 35.5,5.458 35.17,5.449 34.84,5.44 34.43,5.505 33.85,5.664 c -0.6,0.165 -0.96,0.401 -1.18,0.688 -0.21,0.286 -0.24,0.601 -0.25,0.843 0,0.243 -0.01,0.422 -0.03,0.469 C 32.38,7.687 32.38,7.695 32.33,7.715 32.31,7.72 32.02,7.745 32,7.75"
+ id="rtid-path7978"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64,8.25 c 0.3,0.008 0.53,0.14 0.77,0.344 0.23,0.204 0.45,0.478 0.68,0.728 0.23,0.251 0.47,0.494 0.82,0.563 0.34,0.069 0.72,-0.083 1.1,-0.457 0.41,-0.4 0.56,-0.944 0.58,-1.512 C 67.97,7.348 67.87,6.742 67.74,6.147 67.62,5.551 67.48,4.965 67.41,4.463 67.34,3.961 67.36,3.551 67.48,3.309 c 0.16,-0.3 0.28,-0.417 0.39,-0.465 0.11,-0.048 0.25,-0.048 0.47,-0.006 0.44,0.084 1.14,0.321 2.16,0.178 0.52,-0.072 0.9,-0.221 1.18,-0.44 C 71.96,2.357 72.12,2.069 72.2,1.771 72.36,1.177 72.24,0.534 72.25,0 c 0,0 -0.5,0 -0.5,0 0.01,0.5068 0.07,1.273 -0.03,1.643 -0.06,0.218 -0.16,0.392 -0.35,0.541 -0.19,0.148 -0.48,0.272 -0.94,0.336 -0.92,0.128 -1.49,-0.075 -2,-0.172 -0.25,-0.049 -0.51,-0.073 -0.76,0.039 -0.25,0.111 -0.45,0.34 -0.63,0.693 -0.21,0.41 -0.2,0.91 -0.12,1.451 0.07,0.542 0.22,1.132 0.34,1.715 0.12,0.584 0.21,1.16 0.19,1.652 C 67.43,8.391 67.31,8.784 67.02,9.07 66.7,9.383 66.52,9.425 66.36,9.395 66.21,9.364 66.03,9.216 65.82,8.986 65.61,8.757 65.38,8.465 65.1,8.217 64.88,8.024 64.32,7.821 64,7.75 c 0,0 0,0.5 0,0.5"
+ id="rtid-path7980"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 96,8.25 c 0.26,0.007 0.48,-0.113 0.64,-0.289 0.15,-0.176 0.24,-0.397 0.31,-0.642 0.15,-0.492 0.2,-1.095 0.28,-1.659 0.08,-0.563 0.19,-1.086 0.36,-1.355 0.09,-0.135 0.17,-0.203 0.28,-0.233 0.1,-0.029 0.26,-0.02 0.5,0.082 2.33,1.015 5.88,-0.641 5.88,-4.154 h -0.5 C 103.55,2.977 100.5,4.531 98.57,3.695 98.26,3.563 97.98,3.523 97.74,3.59 97.49,3.657 97.3,3.831 97.17,4.037 96.91,4.45 96.82,5.012 96.74,5.59 96.66,6.167 96.59,6.762 96.47,7.178 96.41,7.386 96.33,7.544 96.26,7.633 96.26,7.636 96,7.747 96,7.75 v 0.5"
+ id="rtid-path7982"
+ mask="none"
+ style="color:#000000;fill:#000000;stroke-width:0.18709999"
+ sodipodi:nodetypes="cccccccccccccscsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/tile/frontier/basic/9.svg b/src/asset/tile/frontier/basic/9.svg
index 2b5f7de..fe34280 100644
--- a/src/asset/tile/frontier/basic/9.svg
+++ b/src/asset/tile/frontier/basic/9.svg
@@ -1,73 +1,311 @@
-<ns0:svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://www.w3.org/2000/svg" xmlns:ns1="http://www.inkscape.org/namespaces/inkscape" xmlns:ns2="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns4="http://creativecommons.org/ns#" xmlns:ns6="http://www.w3.org/1999/xlink" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" height="128mm" id="base_svg" version="1.1" viewBox="0 0 128 128" width="128mm" ns2:docname="Bbottomborder.svg" ns1:version="0.92.2 5c3e80d, 2017-08-06">
- <ns0:defs id="rtid-defs921">
- <ns0:mask id="rtid-mask1239" maskUnits="userSpaceOnUse">
- <ns0:g id="rtid-g1273">
- <ns0:path d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z" id="rtid-path1241" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z" id="rtid-path1243" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z" id="rtid-path1245" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z" id="rtid-path1247" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z" id="rtid-path1249" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z" id="rtid-path1251" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccszzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z" id="rtid-path1253" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="ccczzcc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z" id="rtid-path1255" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z" id="rtid-path1257" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z" id="rtid-path1259" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z" id="rtid-path1261" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z" id="rtid-path1263" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z" id="rtid-path1265" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssssscc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z" id="rtid-path1267" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssszcc" ns1:connector-curvature="0" />
- <ns0:path d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z" id="rtid-path1269" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccsscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z" id="rtid-path1271" style="fill:#ffffff;stroke-width:0.5218" ns2:nodetypes="cccssssssscc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:mask>
- </ns0:defs>
- <ns2:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="rtid-namedview3444" objecttolerance="10" pagecolor="#ffffff" showgrid="true" showguides="false" ns1:current-layer="rtid-bg_b_layer" ns1:cx="467.082" ns1:cy="173.3" ns1:document-units="mm" ns1:pageopacity="0" ns1:pageshadow="2" ns1:window-height="1029" ns1:window-maximized="0" ns1:window-width="1678" ns1:window-x="1" ns1:window-y="516" ns1:zoom="0.905097">
- <ns1:grid id="rtid-grid1541" spacingx="32" spacingy="32" type="xygrid" units="mm" />
- </ns2:namedview>
- <ns0:metadata id="rtid-metadata1919">
- <rdf:RDF>
- <ns4:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </ns4:Work>
- </rdf:RDF>
- </ns0:metadata>
- <ns0:g id="rtid-models_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Models">
- <ns0:g id="rtid-bg_a_model">
- <ns0:rect height="128" id="rtid-rect2648" style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-text2652" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-tspan2650" x="12.47" y="19.64" ns2:role="line">A</ns0:tspan></ns0:text>
- </ns0:g>
- <ns0:g id="rtid-bg_b_model">
- <ns0:rect height="128" id="rtid-rtid-rect2648-6" style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" width="128" x="0" y="0" />
- <ns0:text id="rtid-rtid-text2652-2" style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.2646" x="12.47" y="19.64" xml:space="preserve"><ns0:tspan id="rtid-rtid-tspan2650-6" x="12.47" y="19.64" ns2:role="line">B</ns0:tspan></ns0:text>
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-bg_a_layer" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="Background A">
- <ns0:use height="100%" id="rtid-bga30" width="100%" x="0" y="0" ns6:href="#rtid-bg_a_model" />
- </ns0:g>
- <ns0:g id="rtid-bg_b_layer" ns1:groupmode="layer" ns1:label="Background B">
- <ns0:use height="100%" id="rtid-bgb30" mask="url(#rtid-mask1239)" width="100%" x="0" y="0" ns6:href="#rtid-bg_b_model" />
- </ns0:g>
- <ns0:g id="rtid-layer3" ns2:insensitive="true" ns1:groupmode="layer" ns1:label="borders">
- <ns0:g id="rtid-g1219">
- <ns0:path d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z" id="rtid-path1862-36" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccsccccscccssscccccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z" id="rtid-path1862-1-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccscccccccscccccccccccccsccccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z" id="rtid-path1862-0-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z" id="rtid-path1862-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z" id="rtid-path1862-3-5" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccscccccccccsccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z" id="rtid-path1862-1-2-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccsccsccccssccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z" id="rtid-path1862-0-0-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccccsscscc" ns1:connector-curvature="0" />
- <ns0:path d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z" id="rtid-path1862-6-6-91" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccccscccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z" id="rtid-path1862-15-2" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccccscccccccccccccsccccsccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z" id="rtid-path1862-1-5-7" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccsccccccscccccsccccsccscccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z" id="rtid-path1862-0-4-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscssccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z" id="rtid-path1862-6-7-9" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccsscccccsscccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z" id="rtid-path1862-3-6-3" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z" id="rtid-path1862-1-2-5-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccsccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z" id="rtid-path1862-0-0-6-0" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="ccccccccccscccccccccccccccccccccccccccc" ns1:connector-curvature="0" />
- <ns0:path d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z" id="rtid-path1862-6-6-9-6" style="color:#000000;fill:#000000;stroke-width:0.5" ns2:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc" ns1:connector-curvature="0" />
- </ns0:g>
- </ns0:g>
- <ns0:g id="rtid-details" ns1:groupmode="layer" ns1:label="rtid-details" />
-</ns0:svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ height="128mm"
+ id="base_svg"
+ version="1.1"
+ viewBox="0 0 128 128"
+ width="128mm"
+ sodipodi:docname="9.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="rtid-defs921">
+ <mask
+ id="rtid-mask1239"
+ maskUnits="userSpaceOnUse">
+ <g
+ id="rtid-g1273">
+ <path
+ d="M 0,128 H 32 V 120 C 28.4562,120 28.3935,119.769 24.3135,121.069 20.6135,122.269 21.2463,120.594 19.8463,120.594 16.8863,120.394 12.8804,124.172 12.7224,121.372 12.6554,120.172 10.8066,118.563 7.45252,121.107 4.09847,123.651 3.90873,120.017 0,120 Z"
+ id="rtid-path1241"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,128 H 64 V 120 C 60.4562,120 62.0203,118.549 60.3806,119.307 56.8496,120.939 55.551,119.238 54.151,119.238 51.191,119.038 49.2187,121.867 49.0607,119.067 48.9937,117.867 46.3315,119.919 41.6216,119.209 36.9118,118.499 35.9087,120.017 32,120 Z"
+ id="rtid-path1243"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,128 H 96 V 120 C 92.4562,120 92.3935,119.769 88.3135,121.069 82.1864,122.601 74.6608,117.79 72.1304,119.48 68.7764,122.024 67.9087,120.017 64,120 Z"
+ id="rtid-path1245"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,128 H 128 V 120 C 120.461,120.42 115.569,121.001 115.501,118.796 115.433,116.591 111.01,116.529 107.655,119.073 104.301,121.617 99.9087,120.017 96,120 Z"
+ id="rtid-path1247"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,96 H 32 V 88 C 28.4562,88 30.4271,90.0737 26.4826,89.6113 22.6194,89.1584 20.9752,90.8987 19.5752,90.8987 16.6152,90.6987 14.7784,88.9183 12.9935,88.423 11.8354,88.1016 9.17974,91.0369 6.09678,91.005 3.01383,90.9731 3.9088,88.017 0,88 Z"
+ id="rtid-path1249"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,96 H 64.0001 V 88 C 60.4562,88 52.774,82.5794 51.4331,86.222 50.8156,87.8994 49.0674,85.592 46.2463,87.127 43.4252,88.662 43.2879,85.9645 39.4525,87.7513 35.6171,89.5381 35.9087,88.017 32,88 Z"
+ id="rtid-path1251"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccszzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,96 H 96.0001 V 88 C 92.4563,88 92.2963,85.189 87.0936,87.8489 81.8909,90.5088 83.9754,86.8187 75.2486,88.0224 66.5218,89.2261 67.9088,88.017 64.0001,88 Z"
+ id="rtid-path1253"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="ccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,96 H 128 V 88 C 124.456,88 125.342,89.5314 121.262,90.8314 117.562,92.0314 113.857,92.2544 112.457,92.2544 109.497,92.0544 105.313,91.5519 103.028,89.7787 100.743,88.0055 99.823,88.1444 96.0001,88 Z"
+ id="rtid-path1255"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,64 H 32 V 56 C 28.4562,56 28.5291,54.8201 24.4491,56.1202 20.7491,57.32 25.7201,59.5766 22.0154,59.9833 19.0664,60.3071 11.118,61.2566 10.96,58.4568 10.893,57.2566 10.1287,53.343 6.77474,55.887 3.42064,58.4309 3.9088,56.017 0,56 Z"
+ id="rtid-path1257"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,64 H 64.0001 V 56 C 60.4562,56 61.7492,58.0738 58.2117,58.1538 54.3228,58.2417 52.8396,54.2893 51.4397,54.2893 48.4796,54.0893 46.7041,54.6016 44.5869,52.7628 42.8929,51.2914 41.1798,52.394 37.5545,53.5822 33.9292,54.7705 35.9087,56.017 32,56 Z"
+ id="rtid-path1259"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,64 H 96.0001 V 56 C 92.4563,56 93.6234,55.2922 90.2117,55.7135 87.6191,56.0337 84.0111,53.9101 80.6972,54.1084 76.7252,54.3462 73.1056,56.8173 71.317,56.836 68.0362,56.8703 67.9088,56.017 64.0001,56 Z"
+ id="rtid-path1261"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,64 H 128 V 56 C 124.456,56 124.664,55.6335 121.533,55.0356 117.713,54.306 115.619,58.7631 114.219,58.7631 111.259,58.5631 110.8,54.4748 108.18,55.4742 106.35,56.172 105.858,51.5805 102.503,54.1245 99.149,56.6684 99.9088,56.017 96.0001,56 Z"
+ id="rtid-path1263"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,32.0001 H 32 V 24.0001 C 28.4562,24.0001 30.2915,22.0067 26.2115,23.3067 22.5115,24.5067 26.3948,27.8066 24.998,27.7122 23.7034,27.6248 22.7144,25.8039 20.3201,25.6839 19.2473,25.6302 16.5709,25.018 15.1831,25.6415 13.6874,26.3135 13.4914,28.2236 12.7208,28.1222 12.1538,28.0476 12.747,25.8073 12.7224,25.3721 12.6863,24.732 11.4845,25.2364 10.6207,24.588 9.86527,24.0209 9.55968,22.1577 7.99479,23.3447 7.15573,23.9811 5.97241,25.9933 5.42165,26.0098 3.77083,26.0593 2.93095,24.0128 0,24.0001 Z"
+ id="rtid-path1265"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssssscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,32.0001 H 64.0001 V 24.0001 C 60.4562,24.0001 60.3935,23.7691 56.3137,25.0691 52.6135,26.2691 53.2431,24.6885 51.8464,24.5941 50.8568,24.5272 49.7503,24.905 48.7097,25.3329 46.6379,26.185 47.4685,27.0135 44.7225,25.3721 41.9765,23.7307 35.8441,24.1453 32,24.0001 Z"
+ id="rtid-path1267"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssszcc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64.0001,32.0001 H 96.0001 V 24.0001 C 93.8482,24.0001 92.8443,26.2196 91.5806,26.4438 90.7633,26.5888 89.2383,24.4229 87.6358,24.9335 83.9295,26.1145 83.3536,25.7667 82.0841,26.3565 74.5242,30.6775 74.9351,23.3807 69.2835,27.5474 65.9294,30.0914 67.9088,24.0171 64.0001,24.0001 Z"
+ id="rtid-path1269"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccsscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96.0001,32.0001 H 128 V 24.0001 C 125.634,24.0001 124.637,22.7765 123.19,23.2664 121.791,23.74 123.007,21.1102 122.222,20.7445 121.146,20.244 119.771,23.0355 119.771,23.0355 116.065,24.2164 115.755,23.1028 114.355,23.1028 111.395,22.9028 110.344,27.6598 108.722,25.3721 107.028,22.9837 106.984,25.732 104.799,27.1166 104.274,27.4494 102.475,25.0209 101.825,25.5138 98.4708,28.0573 99.9088,24.0171 96.0001,24.0001 Z"
+ id="rtid-path1271"
+ style="fill:#ffffff;stroke-width:0.5218"
+ sodipodi:nodetypes="cccssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ bordercolor="#666666"
+ borderopacity="1"
+ gridtolerance="10"
+ guidetolerance="10"
+ id="rtid-namedview3444"
+ objecttolerance="10"
+ pagecolor="#ffffff"
+ showgrid="true"
+ showguides="false"
+ inkscape:current-layer="rtid-models_layer"
+ inkscape:cx="273.18013"
+ inkscape:cy="173.3"
+ inkscape:document-units="mm"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-height="1059"
+ inkscape:window-maximized="0"
+ inkscape:window-width="1918"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:zoom="0.905097">
+ <inkscape:grid
+ id="rtid-grid1541"
+ spacingx="32"
+ spacingy="32"
+ type="xygrid"
+ units="mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="rtid-metadata1919">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="rtid-models_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Models"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="rtid-bg_b_model">
+ <rect
+ height="128"
+ id="rtid-rtid-rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke"
+ width="128"
+ x="0"
+ y="0" />
+ <text
+ id="rtid-rtid-text2652-2"
+ style="font-size:10.58329964px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-width:0.26460001"
+ x="12.47"
+ y="19.639999"
+ xml:space="preserve"><tspan
+ id="rtid-rtid-tspan2650-6"
+ x="12.47"
+ y="19.639999"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ id="rtid-bg_b_layer"
+ inkscape:groupmode="layer"
+ inkscape:label="Background B"
+ sodipodi:insensitive="true">
+ <use
+ height="100%"
+ id="rtid-bgb30"
+ mask="url(#rtid-mask1239)"
+ width="100%"
+ x="0"
+ y="0"
+ xlink:href="#rtid-bg_b_model" />
+ </g>
+ <g
+ id="rtid-layer3"
+ sodipodi:insensitive="true"
+ inkscape:groupmode="layer"
+ inkscape:label="borders">
+ <g
+ id="rtid-g1219">
+ <path
+ d="M 0,120.25 C 1.67453,120.344 2.87331,121.15 3.80273,121.727 4.29521,122.032 4.80953,122.279 5.42969,122.26 6.04984,122.241 6.74127,121.961 7.60352,121.307 9.24272,120.063 10.4636,119.87 11.2559,120.078 12.0481,120.287 12.4459,120.908 12.4727,121.387 12.4942,121.768 12.5809,122.068 12.7559,122.289 12.9308,122.51 13.1924,122.626 13.4629,122.652 14.0039,122.704 14.6239,122.478 15.3281,122.189 16.7366,121.613 18.4633,120.751 19.8301,120.844 H 19.8379 19.8457 C 20.1459,120.844 20.3,120.92 20.4707,121.041 20.6414,121.162 20.8201,121.345 21.0957,121.5 21.3713,121.655 21.7389,121.763 22.2578,121.75 22.7762,121.737 23.4507,121.611 24.3887,121.307 28.3189,120.054 28.7981,120.236 32,120.25 V 119.75 C 28.4671,119.75 28.3271,119.527 24.2383,120.83 H 24.2363 V 120.832 C 23.3256,121.127 22.6929,121.241 22.2461,121.252 21.7992,121.263 21.5436,121.177 21.3398,121.062 21.1361,120.948 20.9798,120.789 20.7598,120.633 20.5412,120.478 20.2475,120.347 19.8516,120.346 18.2614,120.243 16.5094,121.165 15.1387,121.727 14.4517,122.008 13.8568,122.188 13.5098,122.154 13.3362,122.138 13.2344,122.087 13.1484,121.979 13.0625,121.87 12.9906,121.676 12.9727,121.357 12.9324,120.636 12.3702,119.854 11.3828,119.594 10.3954,119.334 9.01566,119.608 7.30078,120.908 6.48601,121.526 5.89691,121.745 5.41602,121.76 4.93512,121.774 4.52921,121.588 4.06641,121.301 3.14079,120.727 2.03183,119.759 0,119.75 Z"
+ id="rtid-path1862-36"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccsccccscccssscccccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,119.75 C 63.1311,119.75 62.5891,119.659 62.248,119.547 61.907,119.435 61.7682,119.312 61.6562,119.195 61.6003,119.137 61.5532,119.077 61.4844,119.012 61.4156,118.947 61.3147,118.878 61.1914,118.852 60.9448,118.799 60.6992,118.884 60.2754,119.08 56.8301,120.673 55.7556,118.994 54.1562,118.99 52.5994,118.889 51.3174,119.572 50.4668,119.893 50.0403,120.053 49.751,120.093 49.6211,120.025 49.5561,119.992 49.4953,119.932 49.4355,119.779 49.3758,119.627 49.3294,119.387 49.3105,119.053 49.2995,118.855 49.2134,118.659 49.0547,118.551 48.896,118.443 48.7156,118.426 48.5234,118.434 48.1391,118.448 47.6566,118.573 47.0293,118.709 45.7746,118.982 43.9712,119.31 41.6582,118.961 39.2747,118.602 37.7978,118.808 36.457,119.1 35.1163,119.391 33.9218,119.758 32,119.75 V 120.25 C 33.8038,120.219 35.3217,119.86 36.5645,119.59 37.8798,119.304 39.2576,119.106 41.584,119.457 43.9809,119.818 45.8641,119.475 47.1348,119.199 47.7701,119.061 48.2602,118.942 48.541,118.932 48.6814,118.926 48.7553,118.953 48.7734,118.965 48.7916,118.977 48.8049,118.978 48.8105,119.08 V 119.082 C 48.8312,119.448 48.8808,119.732 48.9707,119.961 49.0606,120.19 49.2022,120.371 49.3906,120.469 49.7675,120.665 50.1862,120.533 50.6426,120.361 51.5553,120.018 52.7377,119.394 54.1348,119.488 H 54.1426 54.1504 C 55.3481,119.488 56.8742,121.203 60.4863,119.533 60.8824,119.35 61.0558,119.333 61.0879,119.34 61.1039,119.343 61.108,119.344 61.1406,119.375 61.1733,119.406 61.2224,119.467 61.2949,119.543 61.4399,119.694 61.6782,119.887 62.0918,120.023 62.4512,120.142 63.2842,120.23 64,120.25 Z"
+ id="rtid-path1862-1-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccscccccccscccccccccccccsccccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,120.25 C 65.7156,120.31 67.1333,120.766 68.2324,120.947 69.4011,121.14 70.5707,120.977 72.2812,119.68 L 72.2695,119.688 C 72.809,119.327 73.6908,119.291 74.8242,119.477 75.9577,119.662 77.3242,120.056 78.8086,120.457 81.7773,121.258 85.2283,122.099 88.375,121.312 L 88.3828,121.311 88.3887,121.307 C 92.3188,120.054 92.7981,120.236 96,120.25 V 119.75 C 92.4738,119.75 92.3198,119.532 88.2539,120.826 85.2734,121.571 81.896,120.773 78.9375,119.975 77.4583,119.575 76.087,119.178 74.9062,118.984 74.3159,118.888 73.7675,118.837 73.2773,118.873 72.7872,118.909 72.3551,119.029 71.9922,119.271 L 71.9844,119.275 71.9785,119.281 C 70.335,120.528 69.3953,120.632 68.3145,120.453 67.2337,120.275 65.997,119.759 64,119.75 Z"
+ id="rtid-path1862-0-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,120.25 C 97.8522,120.289 100.078,120.664 102.025,120.746 104.058,120.831 106.068,120.59 107.807,119.271 109.441,118.032 111.345,117.43 112.814,117.404 113.549,117.391 114.174,117.524 114.594,117.768 115.014,118.011 115.238,118.335 115.252,118.803 115.272,119.447 115.685,119.931 116.324,120.203 116.964,120.475 117.839,120.593 118.939,120.633 121.077,120.709 124.381,120.455 128,120.25 V 119.75 C 124.227,119.96 121.103,120.21 118.957,120.133 117.884,120.094 117.052,119.97 116.52,119.744 115.987,119.518 115.764,119.248 115.75,118.789 115.73,118.154 115.377,117.645 114.844,117.336 114.311,117.027 113.605,116.89 112.807,116.904 111.209,116.932 109.224,117.568 107.504,118.873 105.889,120.098 104.026,120.331 102.047,120.248 100.067,120.165 97.988,119.759 96,119.75 Z"
+ id="rtid-path1862-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,88.25 C 1.6356,88.3315 2.56777,88.972 3.16992,89.6621 3.49066,90.0297 3.80312,90.4224 4.25195,90.7305 4.70078,91.0385 5.28294,91.2474 6.09375,91.2559 7.71529,91.2725 9.18922,90.5173 10.3926,89.8223 10.9943,89.4747 11.5303,89.1406 11.9727,88.9199 12.415,88.6992 12.7545,88.6165 12.9258,88.6641 14.6045,89.1299 16.506,90.9422 19.5586,91.1484 H 19.5664 19.5762 C 20.3798,91.1484 21.1421,90.6911 22.1895,90.3203 23.2368,89.9495 24.5623,89.6377 26.4531,89.8594 27.4583,89.9772 28.1091,89.9374 28.584,89.793 29.0589,89.6485 29.3437,89.3898 29.5723,89.1523 29.8008,88.9149 29.9781,88.7059 30.3086,88.541 30.5903,88.4005 31.3535,88.28 32,88.25 V 87.75 C 31.0897,87.75 30.5058,87.8843 30.0859,88.0938 29.666,88.3032 29.4257,88.5835 29.2109,88.8066 28.9962,89.0298 28.8131,89.2021 28.4375,89.3164 28.0619,89.4307 27.4787,89.4767 26.5117,89.3633 24.5392,89.132 23.1121,89.4635 22.0215,89.8496 20.9343,90.2345 20.1795,90.6439 19.584,90.6465 16.722,90.4497 14.9496,88.7058 13.0605,88.1816 12.6528,88.0685 12.2276,88.2344 11.75,88.4727 11.2724,88.7109 10.7349,89.0465 10.1426,89.3887 8.95785,90.073 7.56102,90.7709 6.09961,90.7559 5.36894,90.7483 4.90775,90.5741 4.53516,90.3184 4.16256,90.0626 3.87637,89.7096 3.54688,89.332 2.88789,88.5768 2.01751,87.7587 0,87.75 Z"
+ id="rtid-path1862-3-5"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccscccccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 32,88.25 C 33.6614,88.3015 34.8395,88.644 35.7109,88.7988 36.6458,88.965 37.6185,88.8825 39.5586,87.9785 41.4316,87.106 42.3035,87.3283 43.1582,87.584 44.0129,87.8396 44.8992,88.1453 46.3652,87.3477 47.7106,86.6156 48.7572,86.7988 49.6172,86.9727 50.0472,87.0596 50.4251,87.1581 50.7949,87.1035 51.1647,87.0489 51.494,86.7813 51.668,86.3086 51.8188,85.899 52.0422,85.6403 52.3379,85.4688 52.6336,85.2972 53.0123,85.2148 53.4648,85.2129 54.37,85.2091 55.5509,85.5341 56.8066,85.9805 58.0624,86.4269 59.3963,86.9909 60.6445,87.4453 61.7997,87.8659 63.093,88.2028 64,88.25 V 87.75 C 63.1778,87.75 62.0472,87.4227 60.8164,86.9746 59.5856,86.5265 58.25,85.9632 56.9746,85.5098 55.6992,85.0564 54.486,84.7086 53.4629,84.7129 52.9513,84.715 52.4828,84.8079 52.0879,85.0371 51.6929,85.2663 51.3837,85.6337 51.1992,86.1348 51.0645,86.5008 50.9424,86.575 50.7227,86.6074 50.5029,86.6399 50.1517,86.5708 49.7148,86.4824 48.8411,86.3057 47.6028,86.1052 46.127,86.9082 44.772,87.6454 44.1789,87.3681 43.3008,87.1055 42.4226,86.8428 41.31,86.6112 39.3477,87.5254 37.4524,88.4084 36.6522,88.4586 35.7969,88.3066 34.9415,88.1546 33.9868,87.7586 32,87.75 Z"
+ id="rtid-path1862-1-2-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccsccsccccssccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,88.25 C 65.6431,88.2924 66.6083,88.5696 67.7871,88.7168 69.0499,88.8745 70.9104,88.8726 75.2832,88.2695 79.6151,87.672 81.1855,88.2763 82.4082,88.7168 83.0196,88.9371 83.569,89.1286 84.293,89.0781 85.017,89.0276 85.8915,88.7448 87.207,88.0723 88.4914,87.4157 89.4425,87.099 90.207,86.9922 90.9716,86.8854 91.5504,86.9872 92.0918,87.1641 93.1141,87.4981 94.3514,88.1761 96,88.25 V 87.75 C 94.2942,87.75 93.4299,87.0762 92.2461,86.6895 91.6542,86.4961 90.9957,86.3936 90.1562,86.5078 89.3168,86.6221 88.2975,86.9536 86.9805,87.627 85.6946,88.2843 84.8789,88.5368 84.2578,88.5801 83.6367,88.6234 83.1868,88.4654 82.5781,88.2461 81.3607,87.8075 79.6099,87.1691 75.2148,87.7754 70.8609,88.3759 69.0503,88.3709 67.8477,88.2207 66.6451,88.0705 65.9802,87.7586 64,87.75 Z"
+ id="rtid-path1862-0-0-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccccsscscc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 128,87.75 C 126.192,87.75 125.426,88.1733 124.682,88.7285 123.937,89.2837 123.194,89.9539 121.186,90.5938 117.524,91.781 113.833,92.0038 112.459,92.0039 109.512,91.8039 105.364,91.276 103.182,89.582 102.024,88.6835 101.172,88.2461 100.141,88.0332 99.1088,87.8203 97.9077,87.8221 96,87.75 V 88.25 C 97.7061,88.3105 99.1471,88.339 100.041,88.5234 100.996,88.7205 101.748,89.1019 102.875,89.9766 105.259,91.8265 109.467,92.303 112.439,92.5039 H 112.449 112.457 C 113.883,92.5039 117.601,92.282 121.338,91.0703 123.41,90.4101 124.262,89.6644 124.98,89.1289 125.651,88.6288 126.518,88.2918 128,88.25 Z"
+ id="rtid-path1862-6-6-91"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccccscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,56.25 C 1.67091,56.3174 2.72111,56.85 3.50977,57.1387 3.92856,57.2919 4.37822,57.3675 4.91602,57.2227 5.45381,57.0778 6.07442,56.7317 6.92578,56.0859 7.73604,55.4714 8.35937,55.2731 8.82227,55.2969 9.28516,55.3206 9.62132,55.5544 9.90039,55.9199 10.4585,56.651 10.6795,57.9084 10.7109,58.4707 10.734,58.8799 10.9075,59.2379 11.1816,59.5156 11.4558,59.7934 11.8242,59.998 12.2539,60.1562 13.1134,60.4728 14.2318,60.6041 15.4336,60.6406 17.8372,60.7136 20.5706,60.3941 22.043,60.2324 22.5215,60.1799 22.8702,60.0972 23.1348,59.9766 23.3993,59.856 23.5881,59.6824 23.6719,59.4688 23.8394,59.0415 23.622,58.6329 23.4648,58.2539 23.3077,57.8749 23.188,57.5231 23.2695,57.2422 23.351,56.9613 23.6379,56.6452 24.5254,56.3574 V 56.3594 C 26.545,55.7158 27.4857,55.6921 28.3906,55.8203 29.2329,55.9396 30.4363,56.2132 32,56.25 V 55.75 C 30.2558,55.75 29.4254,55.4609 28.4609,55.3242 27.4964,55.1876 26.4335,55.2262 24.373,55.8828 H 24.3711 C 23.4086,56.1949 22.9319,56.6112 22.7891,57.1035 22.6462,57.5959 22.8439,58.0594 23.0039,58.4453 23.1639,58.8313 23.263,59.1374 23.2051,59.2852 23.1761,59.359 23.1149,59.4362 22.9277,59.5215 22.7406,59.6068 22.4359,59.6852 21.9883,59.7344 20.5117,59.8966 17.7966,60.2138 15.4492,60.1426 14.2755,60.107 13.1932,59.9702 12.4258,59.6875 12.0421,59.5461 11.7394,59.369 11.5371,59.1641 11.3348,58.9591 11.2254,58.7341 11.209,58.4434 11.1734,57.8056 10.9781,56.507 10.2988,55.6172 9.9592,55.1723 9.47346,54.829 8.84766,54.7969 8.22185,54.7648 7.48977,55.0301 6.62305,55.6875 5.79736,56.3138 5.22132,56.6208 4.78516,56.7383 4.34899,56.8558 4.04866,56.8042 3.68164,56.6699 2.94759,56.4013 2.00591,55.7588 0,55.75 Z"
+ id="rtid-path1862-15-2"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccccscccccccccccccsccccsccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,55.75 C 62.1793,55.75 61.4948,56.3356 60.9316,56.8652 60.3685,57.3949 59.9263,57.8653 58.207,57.9043 56.3479,57.9463 55.0775,57.0315 54.0645,56.0723 53.558,55.5927 53.1233,55.1046 52.7129,54.7227 52.3032,54.3414 51.9079,54.0421 51.4414,54.041 49.9525,53.9417 48.7678,54.015 47.7266,53.8926 46.6809,53.7696 45.7757,53.4634 44.752,52.5742 44.301,52.1826 43.8301,51.9592 43.332,51.8652 42.8339,51.7713 42.3086,51.8072 41.7422,51.9316 40.6093,52.1806 39.2785,52.7551 37.4766,53.3457 35.6265,53.9521 35.1282,54.6347 34.7051,55.0684 34.4935,55.2852 34.3119,55.4384 33.9316,55.5586 33.5514,55.6788 32.9639,55.7542 32,55.75 V 56.25 C 32.7969,56.2374 33.6766,56.1634 34.082,56.0352 34.5432,55.8893 34.8272,55.6592 35.0625,55.418 35.5331,54.9356 35.8576,54.4022 37.6328,53.8203 39.4561,53.2227 40.7941,52.6515 41.8477,52.4199 42.3744,52.3042 42.8215,52.2639 43.2344,52.3398 43.6473,52.4158 44.0277,52.6072 44.4238,52.9512 45.5172,53.9008 46.5566,54.258 47.668,54.3887 48.7794,54.5194 49.9614,54.4403 51.4238,54.5391 H 51.4316 51.4395 C 51.6718,54.5391 51.9882,54.7315 52.3711,55.0879 52.754,55.4442 53.1953,55.9381 53.7207,56.4355 54.7715,57.4305 56.187,58.4501 58.2168,58.4043 60.0351,58.3631 60.7147,57.7558 61.2754,57.2285 61.7971,56.7379 62.5561,56.3068 64,56.25 Z"
+ id="rtid-path1862-1-5-7"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccsccccccscccccsccccsccscccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,56.25 C 65.6948,56.2821 66.9702,56.4847 67.8379,56.6816 68.7666,56.8924 69.6582,57.1034 71.3203,57.0859 72.3279,57.0753 73.663,56.4342 75.2812,55.7871 76.8995,55.14 78.774,54.4736 80.7129,54.3574 82.3113,54.2617 84.0168,54.7314 85.6562,55.1973 87.2957,55.6631 88.8651,56.1311 90.2422,55.9609 91.9345,55.752 92.4395,55.8219 93.0039,55.9434 93.5212,56.0547 94.529,56.2232 96,56.25 V 55.75 C 94.2447,55.75 93.7003,55.5822 93.1094,55.4551 92.5185,55.328 91.9008,55.2526 90.1816,55.4648 88.966,55.6151 87.4343,55.1832 85.793,54.7168 84.1517,54.2504 82.3971,53.7567 80.6816,53.8594 78.6487,53.9811 76.7274,54.6698 75.0957,55.3223 73.4641,55.9748 72.0954,56.5777 71.3145,56.5859 69.6958,56.6029 68.8817,56.405 67.9492,56.1934 67.0168,55.9818 65.9725,55.7587 64,55.75 Z"
+ id="rtid-path1862-0-4-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscssccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,56.25 C 97.6526,56.2779 98.7778,56.424 99.5117,56.2676 100.302,56.0991 100.976,55.5969 102.654,54.3242 103.462,53.7119 104.052,53.5565 104.52,53.6094 104.987,53.6622 105.371,53.9319 105.74,54.2871 106.109,54.6423 106.445,55.0732 106.834,55.3926 107.223,55.712 107.723,55.9153 108.27,55.707 108.869,55.4783 109.29,55.5402 109.695,55.7578 110.1,55.9755 110.482,56.3763 110.885,56.834 111.691,57.7493 112.61,58.9042 114.203,59.0117 L 114.211,59.0137 H 114.219 C 114.701,59.0137 115.118,58.6803 115.582,58.2637 116.046,57.8471 116.556,57.3166 117.133,56.8145 118.287,55.8102 119.677,54.9357 121.486,55.2812 123.042,55.5783 123.761,55.8163 124.561,55.9863 125.302,56.144 126.469,56.2375 128,56.25 V 55.75 C 126.237,55.75 125.429,55.6608 124.664,55.498 123.899,55.3353 123.156,55.09 121.58,54.7891 119.57,54.4052 118.002,55.3957 116.805,56.4375 116.206,56.9584 115.69,57.4963 115.248,57.8926 114.81,58.286 114.445,58.5065 114.227,58.5098 112.867,58.4127 112.076,57.4302 111.26,56.5039 110.851,56.0394 110.442,55.5925 109.932,55.3184 109.421,55.0443 108.802,54.9693 108.092,55.2402 107.723,55.3808 107.476,55.2735 107.152,55.0078 106.829,54.7421 106.488,54.3152 106.086,53.9277 105.684,53.5403 105.202,53.1821 104.576,53.1113 103.95,53.0406 103.222,53.2661 102.352,53.9258 100.676,55.197 100.053,55.6399 99.4082,55.7773 98.763,55.9148 97.9683,55.7587 96,55.75 Z"
+ id="rtid-path1862-6-7-9"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccsscccccsscccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 0,24.25 C 1.2389,24.3166 2.33902,24.7747 3.05469,25.2383 3.82531,25.7375 4.49984,26.2877 5.42969,26.2598 5.71672,26.2512 5.89968,26.0684 6.11523,25.8535 6.33079,25.6386 6.55872,25.3605 6.79492,25.0664 7.26732,24.4782 7.78295,23.8207 8.14648,23.5449 8.5095,23.2695 8.76299,23.1955 8.94336,23.207 9.12373,23.2185 9.27047,23.3117 9.42969,23.4805 9.74812,23.8179 10.0008,24.4344 10.4707,24.7871 10.972,25.1634 11.5511,25.1977 11.9609,25.2324 12.1659,25.2498 12.3313,25.2725 12.4062,25.3027 12.4812,25.3329 12.4681,25.3064 12.4727,25.3867 12.4749,25.4269 12.4493,25.6648 12.4062,25.9355 12.3632,26.2063 12.3077,26.5335 12.2695,26.8535 12.2314,27.1736 12.2077,27.4847 12.2363,27.75 12.2506,27.8826 12.2759,28.0049 12.3398,28.1211 12.4038,28.2373 12.5336,28.3508 12.6875,28.3711 12.9822,28.4098 13.2348,28.24 13.4102,28.0352 13.5855,27.8303 13.7302,27.5722 13.8945,27.3008 14.2231,26.758 14.6144,26.1705 15.2852,25.8691 15.8964,25.5946 16.8878,25.5776 17.8496,25.6582 18.8114,25.7388 19.7332,25.9049 20.3066,25.9336 21.4424,25.9905 22.2352,26.4449 22.9316,26.918 23.6281,27.391 24.221,27.9096 24.9805,27.9609 25.0903,27.9684 25.1924,27.9632 25.293,27.9238 25.3935,27.8844 25.4894,27.796 25.5312,27.6953 25.6149,27.494 25.5537,27.3267 25.4922,27.1504 25.3692,26.7977 25.1347,26.3706 24.9766,25.9141 24.8184,25.4576 24.7437,24.9949 24.8906,24.6016 25.0374,24.2086 25.408,23.8305 26.2871,23.5449 27.2947,23.2239 27.9244,23.1135 28.3359,23.1172 28.7474,23.1209 28.9388,23.2186 29.166,23.373 29.3932,23.5275 29.6495,23.7572 30.0762,23.9395 30.4474,24.098 31.2792,24.2219 32,24.25 V 23.75 C 31.1375,23.75 30.6268,23.6295 30.2734,23.4785 29.92,23.3276 29.7142,23.1404 29.4473,22.959 29.1803,22.7776 28.8444,22.6217 28.3418,22.6172 27.8392,22.6127 27.1672,22.7394 26.1348,23.0684 25.1656,23.3827 24.633,23.8677 24.4238,24.4277 24.2146,24.9877 24.3283,25.5695 24.5039,26.0762 24.6795,26.5829 24.9249,27.0375 25.0215,27.3145 25.0589,27.4217 25.054,27.4486 25.0586,27.4609 25.0427,27.4624 25.0453,27.4649 25.0156,27.4629 24.4805,27.4267 23.9312,26.9931 23.2109,26.5039 22.4907,26.0147 21.5906,25.4967 20.332,25.4336 19.8326,25.4086 18.8821,25.2432 17.8906,25.1602 16.8991,25.0771 15.8567,25.0652 15.0801,25.4141 14.2552,25.7847 13.8028,26.488 13.4668,27.043 13.2988,27.3205 13.1561,27.5632 13.0312,27.709 12.9152,27.8445 12.8543,27.8684 12.7734,27.8633 12.7609,27.8355 12.7436,27.7811 12.7344,27.6953 12.714,27.5059 12.7294,27.2158 12.7656,26.9121 12.8018,26.6084 12.8568,26.2877 12.9004,26.0137 12.9439,25.7397 12.9827,25.5348 12.9727,25.3574 12.9591,25.1177 12.7813,24.9154 12.5938,24.8398 12.4062,24.7643 12.2119,24.752 12.0039,24.7344 11.5879,24.6992 11.134,24.6607 10.7715,24.3887 10.486,24.1743 10.2074,23.5759 9.79297,23.1367 9.58575,22.9171 9.31528,22.7307 8.97461,22.709 8.63394,22.6873 8.26319,22.8283 7.84375,23.1465 7.36824,23.5072 6.87101,24.1728 6.4043,24.7539 6.17094,25.0445 5.94916,25.3112 5.76172,25.498 5.57428,25.6849 5.40241,25.7601 5.41406,25.7598 4.69309,25.7814 4.12093,25.3332 3.32617,24.8184 2.53141,24.3035 1.52356,23.7566 0,23.75 Z"
+ id="rtid-path1862-3-6-3"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccscscccccccccccscscccccccccsccccccscssccccccsscccscccsccsccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 64,23.75 C 60.467,23.75 60.327,23.5273 56.2383,24.8301 L 56.2363,24.832 C 54.4129,25.4234 53.7385,25.3124 53.334,25.0957 53.1317,24.9874 52.9777,24.8337 52.7617,24.6758 52.5458,24.5179 52.2606,24.3706 51.8633,24.3438 50.7981,24.2718 49.6656,24.6697 48.6152,25.1016 47.542,25.543 47.1701,25.9733 46.9023,26.0469 46.7685,26.0837 46.6218,26.0766 46.3066,25.9473 45.9915,25.8179 45.5349,25.5666 44.8516,25.1582 43.4002,24.2907 41.1557,23.9954 38.7852,23.875 36.4147,23.7546 33.9081,23.8221 32,23.75 V 24.25 C 33.9017,24.3104 36.5065,24.2606 38.7598,24.375 41.1029,24.494 43.299,24.812 44.5938,25.5859 45.2835,25.9982 45.751,26.2598 46.1172,26.4102 46.4834,26.5605 46.7745,26.601 47.0352,26.5293 47.5565,26.386 47.8059,25.9752 48.8047,25.5645 49.8355,25.1407 50.9163,24.7821 51.8301,24.8438 52.1312,24.8641 52.2904,24.9506 52.4648,25.0781 52.6393,25.2057 52.8202,25.3885 53.0977,25.5371 53.6523,25.8342 54.5136,25.9144 56.3887,25.3066 60.3187,24.0544 60.798,24.236 64,24.25 Z"
+ id="rtid-path1862-1-2-5-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccsccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,23.75 C 94.8381,23.75 93.986,24.355 93.2949,24.9492 92.6038,25.5435 92.0404,26.108 91.5371,26.1973 91.4514,26.2125 91.2431,26.1489 90.9766,25.9844 90.71,25.8198 90.3926,25.5787 90.043,25.3438 89.3436,24.8738 88.4811,24.402 87.5605,24.6953 85.7177,25.2825 84.6641,25.4874 83.9023,25.6211 83.1406,25.7548 82.6433,25.82 81.9785,26.1289 L 81.9688,26.1348 81.9609,26.1387 C 80.0964,27.2043 78.7492,27.5401 77.6914,27.5293 76.6336,27.5185 75.8472,27.1642 75.0781,26.7852 74.3091,26.4062 73.5564,25.994 72.6133,25.9609 71.6702,25.9279 70.5745,26.2842 69.1348,27.3457 L 69.1328,27.3477 C 68.7279,27.6548 68.412,27.821 68.1855,27.8848 67.9591,27.9486 67.8357,27.9245 67.7227,27.8555 67.4966,27.7174 67.2916,27.2513 67.0859,26.6523 66.8803,26.0534 66.6528,25.3451 66.1992,24.7656 65.7457,24.1862 65.042,23.7545 64,23.75 V 24.25 C 64.7309,24.3183 65.4705,24.6448 65.8066,25.0742 66.1861,25.559 66.406,26.2107 66.6133,26.8145 66.8206,27.4182 66.9946,27.9953 67.4629,28.2812 67.697,28.4242 67.9997,28.4581 68.3223,28.3672 68.6437,28.2766 69,28.0749 69.4316,27.748 L 69.4355,27.7461 C 70.8192,26.7268 71.791,26.4328 72.5957,26.4609 73.4013,26.4891 74.0778,26.8501 74.8574,27.2344 75.6371,27.6186 76.5194,28.0174 77.6875,28.0293 78.851,28.0412 80.2852,27.6689 82.1895,26.584 82.794,26.3031 83.22,26.2484 83.9902,26.1133 84.7604,25.9781 85.8475,25.7656 87.7109,25.1719 88.393,24.9546 89.0955,25.3107 89.7637,25.7598 90.0978,25.9843 90.4135,26.2253 90.7129,26.4102 91.0123,26.595 91.3021,26.7467 91.625,26.6895 92.3853,26.5546 92.9564,25.8996 93.6211,25.3281 94.2224,24.8111 95.1483,24.3336 96,24.25 Z"
+ id="rtid-path1862-0-0-6-0"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="ccccccccccscccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 96,24.25 C 96.7357,24.3038 97.5679,24.5312 97.9395,24.8027 98.3665,25.1148 98.6412,25.5153 98.9238,25.873 99.2064,26.2308 99.5316,26.5745 100.035,26.6016 100.539,26.6286 101.119,26.3628 101.977,25.7129 101.996,25.6979 102.01,25.6902 102.076,25.7012 102.143,25.7121 102.246,25.7524 102.365,25.8203 102.603,25.9562 102.901,26.1951 103.197,26.4453 103.494,26.6955 103.789,26.9554 104.062,27.1426 104.199,27.2362 104.33,27.3131 104.469,27.3594 104.608,27.4057 104.783,27.4238 104.934,27.3281 106.089,26.5962 106.676,25.5114 107.133,24.9941 107.247,24.8648 107.35,24.7752 107.434,24.7285 107.518,24.6818 107.574,24.6714 107.652,24.6875 107.81,24.7197 108.107,24.9393 108.518,25.5176 108.736,25.8254 108.956,26.0352 109.201,26.1504 109.446,26.2656 109.712,26.2677 109.947,26.1914 110.417,26.0388 110.798,25.6354 111.219,25.1934 112.06,24.3092 112.993,23.2607 114.338,23.3516 L 114.346,23.3535 H 114.355 C 114.989,23.3535 115.392,23.6189 116.152,23.7578 116.912,23.8967 117.971,23.8715 119.848,23.2734 L 119.949,23.2422 119.996,23.1465 C 119.996,23.1465 120.333,22.4645 120.793,21.8535 121.023,21.548 121.284,21.2625 121.525,21.0977 121.767,20.9328 121.947,20.8916 122.117,20.9707 122.152,20.987 122.174,21.0085 122.201,21.0742 122.229,21.1399 122.25,21.2458 122.258,21.375 122.274,21.6333 122.243,21.9774 122.227,22.3086 122.211,22.6398 122.193,22.9591 122.336,23.2383 122.407,23.3779 122.544,23.5052 122.715,23.5508 122.885,23.5964 123.067,23.5726 123.27,23.5039 123.917,23.2848 124.448,23.4423 125.17,23.6855 125.828,23.9073 126.936,24.2012 128,24.25 V 23.75 C 126.86,23.75 126.06,23.4591 125.33,23.2129 124.6,22.9667 123.909,22.7585 123.109,23.0293 122.963,23.079 122.878,23.0774 122.844,23.0684 122.81,23.0593 122.805,23.0558 122.781,23.0098 122.734,22.9176 122.71,22.6448 122.725,22.332 122.74,22.0193 122.778,21.6666 122.758,21.3438 122.748,21.1823 122.724,21.0271 122.662,20.8809 122.601,20.7346 122.489,20.5927 122.328,20.5176 121.96,20.3464 121.563,20.4677 121.244,20.6855 120.925,20.9034 120.641,21.2229 120.393,21.5527 119.939,22.1553 119.673,22.6992 119.619,22.8066 117.868,23.3522 116.901,23.3856 116.244,23.2656 115.576,23.1436 115.124,22.8584 114.365,22.8555 112.754,22.7504 111.684,23.9765 110.855,24.8477 110.44,25.2839 110.069,25.6271 109.793,25.7168 109.655,25.7616 109.549,25.7606 109.414,25.6973 109.279,25.634 109.113,25.4926 108.926,25.2285 108.489,24.6125 108.148,24.2783 107.752,24.1973 107.554,24.1568 107.355,24.2002 107.191,24.291 107.028,24.3818 106.892,24.5126 106.758,24.6641 106.223,25.27 105.696,26.2535 104.666,26.9062 104.686,26.8938 104.69,26.9076 104.627,26.8867 104.564,26.8658 104.462,26.8101 104.346,26.7305 104.113,26.5713 103.82,26.3182 103.52,26.0645 103.219,25.8107 102.912,25.5572 102.613,25.3867 102.464,25.3015 102.317,25.2352 102.158,25.209 102,25.1828 101.817,25.2062 101.674,25.3145 100.854,25.9363 100.355,26.1192 100.062,26.1035 99.7702,26.0878 99.5822,25.899 99.3164,25.5625 99.0506,25.226 98.7418,24.7712 98.2344,24.4004 97.7269,24.0296 97.0203,23.7544 96,23.75 Z"
+ id="rtid-path1862-6-6-9-6"
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ sodipodi:nodetypes="cccccccccsccsccsscccsscccsccccsccccccsccccccccccccccscscccsccccccsccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/asset/www/data/tiles.json.m4 b/src/asset/www/data/tiles.json.m4
index fcbbd39..641a80f 100644
--- a/src/asset/www/data/tiles.json.m4
+++ b/src/asset/www/data/tiles.json.m4
@@ -1,7 +1,10 @@
[
m4_include(__MAKEFILE_DATA_DIR/tile/global.m4.conf)m4_dnl
__TILE_CLASS_USE_JSON_STYLE
+m4_include(__MAKEFILE_DATA_DIR/tile/error.m4d)m4_dnl
m4_include(__MAKEFILE_DATA_DIR/tile/grassland.m4d)m4_dnl
+m4_include(__MAKEFILE_DATA_DIR/tile/mud.m4d)m4_dnl
+m4_include(__MAKEFILE_DATA_DIR/tile/water.m4d)m4_dnl
{
"msg": "okay"
}