summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2018-08-01 17:03:19 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2018-08-01 17:03:19 +0200
commitc7c45738d7f7a514247eb099d43544031899e454 (patch)
tree422bfb5d094d371acae3c20dc13f009ea3bd76f0 /src
parent85faaa16362e9bca184bd65aadca8e16b77caf7c (diff)
Tile extras are no longer cut on frontiers.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/asset/src/generate_frontier_tiles.py41
-rw-r--r--src/asset/tile/0/background.svg543
-rw-r--r--src/asset/tile/1/background.svg448
-rw-r--r--src/asset/tile/Ballborders.svg660
-rw-r--r--src/asset/tile/Ballcorners.svg4
-rw-r--r--src/asset/tile/Bbottomandleftborders.svg4
-rw-r--r--src/asset/tile/Bbottomandleftbordersandcorner.svg4
-rw-r--r--src/asset/tile/Bbottomandrightborders.svg4
-rw-r--r--src/asset/tile/Bbottomandrightbordersandcorner.svg4
-rw-r--r--src/asset/tile/Bbottomborder.svg4
-rw-r--r--src/asset/tile/Bbottomborderandtopcorners.svg4
-rw-r--r--src/asset/tile/Bbottomborderandtopleftcorner.svg4
-rw-r--r--src/asset/tile/Bbottomborderandtoprightcorner.svg4
-rw-r--r--src/asset/tile/Bbottomcorners.svg4
-rw-r--r--src/asset/tile/Bbottomleftcorner.svg4
-rw-r--r--src/asset/tile/Bbottomrightcorner.svg4
-rw-r--r--src/asset/tile/Bleftborder.svg4
-rw-r--r--src/asset/tile/Bleftborderandbottomrightcorner.svg4
-rw-r--r--src/asset/tile/Bleftborderandrightcorners.svg4
-rw-r--r--src/asset/tile/Bleftborderandtoprightcorner.svg4
-rw-r--r--src/asset/tile/Bleftcorners.svg4
-rw-r--r--src/asset/tile/Bnotbottomborder.svg4
-rw-r--r--src/asset/tile/Bnotbottomleftcorner.svg4
-rw-r--r--src/asset/tile/Bnotbottomrightcorner.svg4
-rw-r--r--src/asset/tile/Bnotleftborder.svg4
-rw-r--r--src/asset/tile/Bnotrightborder.svg4
-rw-r--r--src/asset/tile/Bnottopborder.svg4
-rw-r--r--src/asset/tile/Bnottopleftcorner.svg4
-rw-r--r--src/asset/tile/Bnottoprightcorner.svg4
-rw-r--r--src/asset/tile/Brightandleftborders.svg4
-rw-r--r--src/asset/tile/Brightborder.svg4
-rw-r--r--src/asset/tile/Brightborderandbottomleftcorner.svg4
-rw-r--r--src/asset/tile/Brightborderandleftcorners.svg4
-rw-r--r--src/asset/tile/Brightborderandtopleftcorner.svg4
-rw-r--r--src/asset/tile/Brightcorners.svg4
-rw-r--r--src/asset/tile/Btopandbottomborders.svg4
-rw-r--r--src/asset/tile/Btopandleftborders.svg4
-rw-r--r--src/asset/tile/Btopandleftbordersandcorner.svg4
-rw-r--r--src/asset/tile/Btopandrightborders.svg4
-rw-r--r--src/asset/tile/Btopandrightbordersandcorner.svg4
-rw-r--r--src/asset/tile/Btopborder.svg4
-rw-r--r--src/asset/tile/Btopborderandbottomcorners.svg4
-rw-r--r--src/asset/tile/Btopborderandbottomleftcorner.svg4
-rw-r--r--src/asset/tile/Btopborderandbottomrightcorner.svg4
-rw-r--r--src/asset/tile/Btopcorners.svg4
-rw-r--r--src/asset/tile/Btopleftbottomrightcorners.svg4
-rw-r--r--src/asset/tile/Btopleftcorner.svg4
-rw-r--r--src/asset/tile/Btoprightbottomleftcorners.svg4
-rw-r--r--src/asset/tile/Btoprightcorner.svg4
49 files changed, 1045 insertions, 827 deletions
diff --git a/src/asset/src/generate_frontier_tiles.py b/src/asset/src/generate_frontier_tiles.py
index a1f89c8..0281a00 100755
--- a/src/asset/src/generate_frontier_tiles.py
+++ b/src/asset/src/generate_frontier_tiles.py
@@ -10,7 +10,7 @@ def get_xml (filename):
model_root = XML.parse(filename)
if (model_root == None):
- print("Could not open SVG file " + filename + ".")
+ print("[F] Could not open SVG file " + filename + ".")
exit(-1)
return model_root
@@ -18,19 +18,33 @@ def get_xml (filename):
def get_model (filename):
model_root = get_xml(filename)
- result = model_root.findall(G_TAG+"[1]/*")
+ background = model_root.findall(G_TAG+"[@id='background']/*")
- if (len(result) == 0):
- print("Could not find content in model file (" + filename + ")")
+ if (len(background) == 0):
+ print(
+ "[F] Could not find 'background' layer in model file ("
+ + filename
+ + ")"
+ )
exit(-1)
- return result
+ extras = model_root.findall(G_TAG+"[@id='details']/*")
+
+ if (len(extras) == 0):
+ if (model_root.find(G_TAG+"[@id='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("Could not find group " + group_name + " in " + filename)
+ print("[F] Could not find group " + group_name + " in " + filename)
exit(-1)
for e in target_group:
@@ -43,12 +57,8 @@ if (len(sys.argv) < 3):
print("Usage: <A> <B> <TEMPLATES>")
exit(-1)
-model_a = get_model(sys.argv[1])
-model_b = get_model(sys.argv[2])
-
-if ((model_b == None) or (len(model_b) == 0)):
- print("Could not find content in model B (" + sys.argv[2] + ")")
- exit(-1)
+(model_a_bg, model_a_details) = get_model(sys.argv[1])
+(model_b_bg, model_b_details) = get_model(sys.argv[2])
current_arg = 3
@@ -61,9 +71,10 @@ while (current_arg < len(sys.argv)):
models_layer = template_root.find(G_TAG+"[@id='models_layer']")
if (models_layer == None):
- print("Could not find model layer in file " + filename + ".")
+ print("[F] Could not find model layer in file " + filename + ".")
- replace_group_by(models_layer, "bg_a_model", model_a, filename)
- replace_group_by(models_layer, "bg_b_model", model_b, filename)
+ replace_group_by(models_layer, "bg_a_model", model_a_bg, filename)
+ replace_group_by(models_layer, "bg_b_model", model_b_bg, filename)
+ replace_group_by(template_root, "details", model_a_details, filename)
template_root.write("/tmp/test" + str(current_arg) + ".svg")
diff --git a/src/asset/tile/0/background.svg b/src/asset/tile/0/background.svg
index 2c825e6..173e4f8 100644
--- a/src/asset/tile/0/background.svg
+++ b/src/asset/tile/0/background.svg
@@ -2,268 +2,283 @@
<!-- 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: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"
- width="128mm"
- height="128mm"
- viewBox="0 0 128 128"
- version="1.1"
- id="svg8"
- inkscape:version="0.92.2 5c3e80d, 2017-08-06"
- sodipodi:docname="background.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.315"
- inkscape:cx="70.52"
- inkscape:cy="285.6"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- 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="layer1"
- inkscape:label="background">
- <g
- id="0_base">
- <rect
- style="fill:#bcd35f;stroke-width:3.1368;stroke-linejoin:bevel"
- id="0_greenbg"
- width="32"
- height="32"
- x="0"
- y="0" />
- </g>
- <use
- x="32"
- y="0"
- xlink:href="#0_base"
- id="0b00"
- width="100%"
- height="100%" />
- <use
- x="64"
- y="0"
- xlink:href="#0_base"
- id="0b01"
- width="100%"
- height="100%" />
- <use
- x="96"
- y="0"
- xlink:href="#0_base"
- id="0b02"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="32"
- xlink:href="#0_base"
- id="0b10"
- width="100%"
- height="100%" />
- <use
- x="32"
- y="32"
- xlink:href="#0_base"
- id="0b11"
- width="100%"
- height="100%" />
- <use
- x="64"
- y="32"
- xlink:href="#0_base"
- id="0b12"
- width="100%"
- height="100%" />
- <use
- x="96"
- y="32"
- xlink:href="#0_base"
- id="0b13"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="64"
- xlink:href="#0_base"
- id="0b20"
- width="100%"
- height="100%" />
- <use
- x="32"
- y="64"
- xlink:href="#0_base"
- id="0b21"
- width="100%"
- height="100%" />
- <use
- x="64"
- y="64"
- xlink:href="#0_base"
- id="0b22"
- width="100%"
- height="100%" />
- <use
- x="96"
- y="64"
- xlink:href="#0_base"
- id="0b23"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="96"
- xlink:href="#0_base"
- id="0b30"
- width="100%"
- height="100%" />
- <use
- x="32"
- y="96"
- xlink:href="#0_base"
- id="0b31"
- width="100%"
- height="100%" />
- <use
- x="64"
- y="96"
- xlink:href="#0_base"
- id="0b32"
- width="100%"
- height="100%" />
- <use
- x="96"
- y="96"
- xlink:href="#0_base"
- id="0b33"
- width="100%"
- height="100%" />
- <g
- transform="translate(29.98,-3.372)"
- id="g5465-3">
- <path
- style="fill:#cdde87;fill-rule:evenodd;stroke-width:0.403px"
- 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="path4744-67"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- <path
- style="fill:#cdde87;fill-rule:evenodd;stroke-width:0.403px"
- 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="path4744-6-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
- </g>
- <use
- x="0"
- y="0"
- xlink:href="#g5465-3"
- id="use2461"
- transform="translate(18.61,13.88)"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="0"
- xlink:href="#g5465-3"
- id="use2463"
- transform="translate(42.14,16.6)"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="0"
- xlink:href="#g5465-3"
- id="use2465"
- transform="translate(68.2,11.06)"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="0"
- xlink:href="#use2465"
- id="use2467"
- transform="translate(-62.56,22.13)"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="0"
- xlink:href="#use2467"
- id="use2469"
- transform="translate(33.6,18.11)"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="0"
- xlink:href="#use2469"
- id="use2471"
- transform="translate(-69.61,32.99)"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="0"
- xlink:href="#use2471"
- id="use2473"
- transform="translate(48.68,-18.31)"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="0"
- xlink:href="#use2473"
- id="use2475"
- transform="translate(32.99,19.11)"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="0"
- xlink:href="#use2475"
- id="use2477"
- transform="translate(15.69,-10.66)"
- width="100%"
- height="100%" />
- </g>
+ 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"
+ width="128mm"
+ height="128mm"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06"
+ sodipodi:docname="background.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.315"
+ inkscape:cx="70.52"
+ inkscape:cy="285.6"
+ inkscape:document-units="mm"
+ inkscape:current-layer="details"
+ showgrid="true"
+ showguides="false"
+ inkscape:window-width="1918"
+ inkscape:window-height="1059"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ 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 />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="background"
+ inkscape:label="background">
+ <g
+ id="0_base">
+ <rect
+ style="fill:#bcd35f;stroke-width:3.1368;stroke-linejoin:bevel"
+ id="0_greenbg"
+ width="32"
+ height="32"
+ x="0"
+ y="0" />
+ </g>
+ <use
+ x="32"
+ y="0"
+ xlink:href="#0_base"
+ id="0b00"
+ width="100%"
+ height="100%" />
+ <use
+ x="64"
+ y="0"
+ xlink:href="#0_base"
+ id="0b01"
+ width="100%"
+ height="100%" />
+ <use
+ x="96"
+ y="0"
+ xlink:href="#0_base"
+ id="0b02"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="32"
+ xlink:href="#0_base"
+ id="0b10"
+ width="100%"
+ height="100%" />
+ <use
+ x="32"
+ y="32"
+ xlink:href="#0_base"
+ id="0b11"
+ width="100%"
+ height="100%" />
+ <use
+ x="64"
+ y="32"
+ xlink:href="#0_base"
+ id="0b12"
+ width="100%"
+ height="100%" />
+ <use
+ x="96"
+ y="32"
+ xlink:href="#0_base"
+ id="0b13"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="64"
+ xlink:href="#0_base"
+ id="0b20"
+ width="100%"
+ height="100%" />
+ <use
+ x="32"
+ y="64"
+ xlink:href="#0_base"
+ id="0b21"
+ width="100%"
+ height="100%" />
+ <use
+ x="64"
+ y="64"
+ xlink:href="#0_base"
+ id="0b22"
+ width="100%"
+ height="100%" />
+ <use
+ x="96"
+ y="64"
+ xlink:href="#0_base"
+ id="0b23"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="96"
+ xlink:href="#0_base"
+ id="0b30"
+ width="100%"
+ height="100%" />
+ <use
+ x="32"
+ y="96"
+ xlink:href="#0_base"
+ id="0b31"
+ width="100%"
+ height="100%" />
+ <use
+ x="64"
+ y="96"
+ xlink:href="#0_base"
+ id="0b32"
+ width="100%"
+ height="100%" />
+ <use
+ x="96"
+ y="96"
+ xlink:href="#0_base"
+ id="0b33"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details">
+ <g
+ style=""
+ transform="translate(29.980001,-3.372)"
+ id="g5465-3">
+ <path
+ style="fill:#cdde87;fill-rule:evenodd;stroke-width:0.403px"
+ 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="path4744-67"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccc" />
+ <path
+ style="fill:#cdde87;fill-rule:evenodd;stroke-width:0.403px"
+ 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="path4744-6-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccc" />
+ </g>
+ <use
+ style=""
+ x="0"
+ y="0"
+ xlink:href="#g5465-3"
+ id="use2461"
+ transform="translate(18.61,13.88)"
+ width="100%"
+ height="100%" />
+ <use
+ style=""
+ x="0"
+ y="0"
+ xlink:href="#g5465-3"
+ id="use2463"
+ transform="translate(42.14,16.6)"
+ width="100%"
+ height="100%" />
+ <use
+ style=""
+ x="0"
+ y="0"
+ xlink:href="#g5465-3"
+ id="use2465"
+ transform="translate(68.2,11.06)"
+ width="100%"
+ height="100%" />
+ <use
+ style=""
+ x="0"
+ y="0"
+ xlink:href="#use2465"
+ id="use2467"
+ transform="translate(-62.559999,22.13)"
+ width="100%"
+ height="100%" />
+ <use
+ style=""
+ x="0"
+ y="0"
+ xlink:href="#use2467"
+ id="use2469"
+ transform="translate(33.600001,18.11)"
+ width="100%"
+ height="100%" />
+ <use
+ style=""
+ x="0"
+ y="0"
+ xlink:href="#use2469"
+ id="use2471"
+ transform="translate(-69.609999,32.989999)"
+ width="100%"
+ height="100%" />
+ <use
+ style=""
+ x="0"
+ y="0"
+ xlink:href="#use2471"
+ id="use2473"
+ transform="translate(48.68,-18.31)"
+ width="100%"
+ height="100%" />
+ <use
+ style=""
+ x="0"
+ y="0"
+ xlink:href="#use2473"
+ id="use2475"
+ transform="translate(32.989999,19.11)"
+ width="100%"
+ height="100%" />
+ <use
+ style=""
+ x="0"
+ y="0"
+ xlink:href="#use2475"
+ id="use2477"
+ transform="translate(15.69,-10.66)"
+ width="100%"
+ height="100%" />
+ </g>
</svg>
diff --git a/src/asset/tile/1/background.svg b/src/asset/tile/1/background.svg
index 07cb933..3d9a194 100644
--- a/src/asset/tile/1/background.svg
+++ b/src/asset/tile/1/background.svg
@@ -2,226 +2,230 @@
<!-- 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: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"
- width="128mm"
- height="128mm"
- viewBox="0 0 128 128"
- version="1.1"
- id="svg8"
- inkscape:version="0.92.2 5c3e80d, 2017-08-06"
- sodipodi:docname="background.svg">
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2"
- inkscape:cx="67.18"
- inkscape:cy="427.4"
- inkscape:document-units="mm"
- inkscape:current-layer="g4802"
- 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
- spacingy="31.999999"
- spacingx="31.999999"
- units="mm"
- id="grid882"
- type="xygrid" />
- </sodipodi:namedview>
- <defs
- id="defs2" />
- <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 />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:groupmode="layer"
- id="layer2"
- inkscape:label="background 1">
- <g
- id="1_base">
- <rect
- style="fill:#6c5353;stroke-width:1.1739;stroke-linejoin:bevel"
- id="1_base_bg"
- width="32"
- height="32"
- x="0"
- y="0" />
- <path
- style="fill:#916f6f;stroke-width:0.099"
- 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_base_p0"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#916f6f;stroke-width:0.099"
- d="M 32,32 H 31 C 31.21,31.57 31.56,31.24 32,31 V 32"
- id="1_base_p1"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:#916f6f;stroke-width:0.099"
- 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_base_p2"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#916f6f;stroke-width:0.099"
- 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_base_p3"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#916f6f;stroke-width:0.099"
- 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_base_p4"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#916f6f;stroke-width:0.099"
- 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_base_p5"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#916f6f;stroke-width:0.099"
- 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_base_p6"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#916f6f;stroke-width:0.099"
- 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_base_p7"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#916f6f;stroke-width:0.099"
- 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_base_p8"
- inkscape:connector-curvature="0" />
- </g>
- <use
- x="32"
- y="0"
- xlink:href="#1_base"
- id="1i_00"
- width="100%"
- height="100%" />
- <use
- x="64"
- y="0"
- xlink:href="#1_base"
- id="1i_01"
- width="100%"
- height="100%" />
- <use
- x="96"
- y="0"
- xlink:href="#1_base"
- id="1i_02"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="32"
- xlink:href="#1_base"
- id="1i_10"
- width="100%"
- height="100%" />
- <use
- x="32"
- y="32"
- xlink:href="#1_base"
- id="1i_11"
- width="100%"
- height="100%" />
- <use
- x="64"
- y="32"
- xlink:href="#1_base"
- id="1i_12"
- width="100%"
- height="100%" />
- <use
- x="96"
- y="32"
- xlink:href="#1_base"
- id="1i_13"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="64"
- xlink:href="#1_base"
- id="1i_20"
- width="100%"
- height="100%" />
- <use
- x="32"
- y="64"
- xlink:href="#1_base"
- id="1i_21"
- width="100%"
- height="100%" />
- <use
- x="64"
- y="64"
- xlink:href="#1_base"
- id="1i_22"
- width="100%"
- height="100%" />
- <use
- x="96"
- y="64"
- xlink:href="#1_base"
- id="1i_23"
- width="100%"
- height="100%" />
- <use
- x="0"
- y="96"
- xlink:href="#1_base"
- id="1i_30"
- width="100%"
- height="100%" />
- <use
- x="32"
- y="96"
- xlink:href="#1_base"
- id="1i_31"
- width="100%"
- height="100%" />
- <use
- x="64"
- y="96"
- xlink:href="#1_base"
- id="1i_32"
- width="100%"
- height="100%" />
- <use
- x="96"
- y="96"
- xlink:href="#1_base"
- id="1i_33"
- width="100%"
- height="100%" />
- </g>
+ 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"
+ width="128mm"
+ height="128mm"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06"
+ sodipodi:docname="background.svg">
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2"
+ inkscape:cx="-20.57"
+ inkscape:cy="427.4"
+ inkscape:document-units="mm"
+ inkscape:current-layer="background"
+ showgrid="true"
+ showguides="false"
+ inkscape:window-width="1918"
+ inkscape:window-height="1059"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:window-maximized="0"
+ inkscape:snap-global="false">
+ <inkscape:grid
+ spacingy="31.999999"
+ spacingx="31.999999"
+ units="mm"
+ id="grid882"
+ type="xygrid" />
+ </sodipodi:namedview>
+ <defs
+ id="defs2" />
+ <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 />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="background"
+ inkscape:label="background">
+ <g
+ id="1_base">
+ <rect
+ style="fill:#6c5353;stroke-width:1.1739;stroke-linejoin:bevel"
+ id="1_base_bg"
+ width="32"
+ height="32"
+ x="0"
+ y="0" />
+ <path
+ style="fill:#916f6f;stroke-width:0.099"
+ 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_base_p0"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#916f6f;stroke-width:0.099"
+ d="M 32,32 H 31 C 31.21,31.57 31.56,31.24 32,31 V 32"
+ id="1_base_p1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:#916f6f;stroke-width:0.099"
+ 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_base_p2"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#916f6f;stroke-width:0.099"
+ 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_base_p3"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#916f6f;stroke-width:0.099"
+ 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_base_p4"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#916f6f;stroke-width:0.099"
+ 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_base_p5"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#916f6f;stroke-width:0.099"
+ 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_base_p6"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#916f6f;stroke-width:0.099"
+ 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_base_p7"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#916f6f;stroke-width:0.099"
+ 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_base_p8"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ x="32"
+ y="0"
+ xlink:href="#1_base"
+ id="1i_00"
+ width="100%"
+ height="100%" />
+ <use
+ x="64"
+ y="0"
+ xlink:href="#1_base"
+ id="1i_01"
+ width="100%"
+ height="100%" />
+ <use
+ x="96"
+ y="0"
+ xlink:href="#1_base"
+ id="1i_02"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="32"
+ xlink:href="#1_base"
+ id="1i_10"
+ width="100%"
+ height="100%" />
+ <use
+ x="32"
+ y="32"
+ xlink:href="#1_base"
+ id="1i_11"
+ width="100%"
+ height="100%" />
+ <use
+ x="64"
+ y="32"
+ xlink:href="#1_base"
+ id="1i_12"
+ width="100%"
+ height="100%" />
+ <use
+ x="96"
+ y="32"
+ xlink:href="#1_base"
+ id="1i_13"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="64"
+ xlink:href="#1_base"
+ id="1i_20"
+ width="100%"
+ height="100%" />
+ <use
+ x="32"
+ y="64"
+ xlink:href="#1_base"
+ id="1i_21"
+ width="100%"
+ height="100%" />
+ <use
+ x="64"
+ y="64"
+ xlink:href="#1_base"
+ id="1i_22"
+ width="100%"
+ height="100%" />
+ <use
+ x="96"
+ y="64"
+ xlink:href="#1_base"
+ id="1i_23"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="96"
+ xlink:href="#1_base"
+ id="1i_30"
+ width="100%"
+ height="100%" />
+ <use
+ x="32"
+ y="96"
+ xlink:href="#1_base"
+ id="1i_31"
+ width="100%"
+ height="100%" />
+ <use
+ x="64"
+ y="96"
+ xlink:href="#1_base"
+ id="1i_32"
+ width="100%"
+ height="100%" />
+ <use
+ x="96"
+ y="96"
+ xlink:href="#1_base"
+ id="1i_33"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Ballborders.svg b/src/asset/tile/Ballborders.svg
index d83d36f..746ac73 100644
--- a/src/asset/tile/Ballborders.svg
+++ b/src/asset/tile/Ballborders.svg
@@ -1,331 +1,339 @@
<?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"
- width="128mm"
- height="128mm"
- viewBox="0 0 128 128"
- version="1.1"
- id="base_svg"
- sodipodi:docname="Ballborders.svg"
- inkscape:version="0.92.2 5c3e80d, 2017-08-06">
- <defs
- id="defs921">
- <mask
- maskUnits="userSpaceOnUse"
- id="mask1629">
- <g
- id="g1663">
- <path
- sodipodi:nodetypes="cccccsssssssss"
- inkscape:connector-curvature="0"
- id="path1631"
- 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"
- style="fill:#ffffff;stroke-width:0.521799" />
- <path
- sodipodi:nodetypes="cccccssssssss"
- id="path1633"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccssssssssss"
- id="path1635"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccssssssssssss"
- id="path1637"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccsssssssss"
- id="path1639"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccczzzzz"
- id="path1641"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccsssssssssssss"
- id="path1643"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccsssssssss"
- id="path1645"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccszsssss"
- id="path1647"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccssssssssss"
- id="path1649"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccssssssss"
- id="path1651"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccssssszs"
- id="path1653"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccssssssssss"
- id="path1655"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccssszsss"
- id="path1657"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccsssssss"
- id="path1659"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cccccsssssssss"
- id="path1661"
- 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"
- style="fill:#ffffff;stroke-width:0.521799"
- inkscape:connector-curvature="0" />
- </g>
- </mask>
- </defs>
- <sodipodi:namedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:window-width="1678"
- inkscape:window-height="1029"
- id="namedview3444"
- showgrid="false"
- inkscape:zoom="1.38"
- inkscape:cx="220.713"
- inkscape:cy="265.022"
- inkscape:window-x="1"
- inkscape:window-y="516"
- inkscape:window-maximized="0"
- inkscape:current-layer="bg_b_layer"
- inkscape:document-units="mm" />
- <metadata
- id="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
- inkscape:groupmode="layer"
- id="models_layer"
- inkscape:label="Models"
- sodipodi:insensitive="true">
+ 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"
+ width="128mm"
+ height="128mm"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="base_svg"
+ sodipodi:docname="Ballborders.svg"
+ inkscape:version="0.92.2 5c3e80d, 2017-08-06">
+ <defs
+ id="defs921">
+ <mask
+ maskUnits="userSpaceOnUse"
+ id="mask1629">
<g
- id="bg_a_model">
- <rect
- y="0"
- x="0"
- height="128"
- width="128"
- id="rect2648"
- style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" />
- <text
- id="text2652"
- y="19.64"
- x="12.47"
- 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"
- xml:space="preserve"><tspan
- y="19.64"
- x="12.47"
- id="tspan2650"
- sodipodi:role="line">A</tspan></text>
+ id="g1663">
+ <path
+ sodipodi:nodetypes="cccccsssssssss"
+ inkscape:connector-curvature="0"
+ id="path1631"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799" />
+ <path
+ sodipodi:nodetypes="cccccssssssss"
+ id="path1633"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccssssssssss"
+ id="path1635"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccssssssssssss"
+ id="path1637"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccsssssssss"
+ id="path1639"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccczzzzz"
+ id="path1641"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccsssssssssssss"
+ id="path1643"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccsssssssss"
+ id="path1645"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccszsssss"
+ id="path1647"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccssssssssss"
+ id="path1649"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccssssssss"
+ id="path1651"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccssssszs"
+ id="path1653"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccssssssssss"
+ id="path1655"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccssszsss"
+ id="path1657"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccsssssss"
+ id="path1659"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccsssssssss"
+ id="path1661"
+ 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"
+ style="fill:#ffffff;stroke-width:0.521799"
+ inkscape:connector-curvature="0" />
</g>
- <g
- id="bg_b_model">
- <rect
- y="0"
- x="0"
- height="128"
- width="128"
- id="rect2648-6"
- style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" />
- <text
- id="text2652-2"
- y="19.64"
- x="12.47"
- 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"
- xml:space="preserve"><tspan
- y="19.64"
- x="12.47"
- id="tspan2650-6"
- sodipodi:role="line">B</tspan></text>
- </g>
- </g>
- <g
- inkscape:groupmode="layer"
- id="bg_a_layer"
- inkscape:label="Background A"
- sodipodi:insensitive="true">
- <use
- x="0"
- y="0"
- xlink:href="#bg_a_model"
- id="bga30"
- width="100%"
- height="100%" />
- </g>
- <g
- inkscape:groupmode="layer"
- id="bg_b_layer"
- inkscape:label="Background B">
- <use
- x="0"
- y="0"
- xlink:href="#bg_b_model"
- id="bgb30"
- width="100%"
- height="100%"
- mask="url(#mask1629)" />
- </g>
- <g
- inkscape:groupmode="layer"
- id="layer3"
- inkscape:label="borders"
- sodipodi:insensitive="true">
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 15.1113,101.881 C 13.6867,101.93 12.3801,101.888 11.1641,102.096 9.94801,102.304 8.81883,102.775 7.81836,103.828 6.85079,104.846 5.63746,105.53 4.63477,106.346 3.63208,107.161 2.83566,108.15 2.83398,109.697 2.83224,111.308 3.59776,113.415 4.5957,115.387 5.59364,117.358 6.82324,119.179 7.82227,120.178 8.38158,120.737 8.90192,120.965 9.42188,121.021 9.94183,121.077 10.4407,120.983 11.0449,120.951 12.2533,120.887 13.9296,121.031 17.0215,122.994 18.2445,123.771 19.6585,123.453 20.9219,122.764 22.1853,122.074 23.347,121.008 24.1777,120.178 26.5314,117.824 28.6594,113.113 28.1406,109.369 27.7964,106.885 25.5513,105.423 24.1895,103.838 23.1925,102.677 21.7109,102.167 20.0977,101.955 18.4844,101.744 16.7236,101.826 15.1113,101.881 Z M 15.1289,102.379 C 16.7454,102.324 18.4836,102.246 20.0332,102.449 21.5828,102.652 22.9264,103.132 23.8105,104.162 25.2447,105.831 27.338,107.226 27.6445,109.438 28.1291,112.934 26.0448,117.602 23.8242,119.822 23.0072,120.639 21.8687,121.679 20.6836,122.326 19.4985,122.973 18.3142,123.223 17.2891,122.572 14.1361,120.57 12.2967,120.384 11.0195,120.451 10.381,120.485 9.89462,120.571 9.47461,120.525 9.0546,120.48 8.68026,120.325 8.17773,119.822 7.24978,118.894 6.01975,117.093 5.04102,115.16 4.06228,113.227 3.33242,111.147 3.33398,109.699 3.33548,108.318 3.99718,107.51 4.95117,106.734 5.90516,105.959 7.14875,105.258 8.18164,104.172 9.10564,103.2 10.1026,102.784 11.248,102.588 12.3935,102.392 13.685,102.428 15.1289,102.379 Z"
- id="path1003-61"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccccccsccccccccscccsccccccccsc" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 48.0039,98.5547 C 46.3207,98.5089 44.7638,99.3543 43.3867,100.436 42.0096,101.517 40.7995,102.845 39.8223,103.822 37.9002,105.744 36.4957,108.332 36.0449,110.939 35.5941,113.547 36.111,116.193 38.0605,118.143 40.6978,120.779 45.9554,121.802 49.9707,120.9 50.8209,120.71 52.3628,120.969 53.8242,121.148 54.5549,121.238 55.2692,121.306 55.8984,121.27 56.5277,121.233 57.088,121.096 57.4648,120.719 58.0023,120.181 58.2584,119.506 58.334,118.777 58.4096,118.049 58.3129,117.261 58.1562,116.445 57.8429,114.814 57.2843,113.06 57.2422,111.52 57.2031,110.087 57.4058,108.661 57.3926,107.342 57.3794,106.023 57.1382,104.785 56.1777,103.824 55.277,102.923 53.998,101.635 52.5684,100.557 51.1387,99.4785 49.5559,98.5969 48.0039,98.5547 Z M 47.9902,99.0547 C 49.3585,99.0919 50.8765,99.9061 52.2676,100.955 53.6586,102.004 54.9224,103.274 55.8242,104.176 V 104.178 C 56.6649,105.018 56.8799,106.084 56.8926,107.348 56.9052,108.611 56.7016,110.046 56.7422,111.533 56.7872,113.182 57.3613,114.953 57.666,116.539 57.8184,117.332 57.9032,118.077 57.8359,118.725 57.7687,119.372 57.5585,119.918 57.1113,120.365 56.8728,120.604 56.4402,120.736 55.8691,120.77 55.2981,120.803 54.6053,120.741 53.8848,120.652 52.4436,120.475 50.9144,120.176 49.8613,120.412 46.0196,121.275 40.8576,120.232 38.4141,117.789 36.5924,115.968 36.1067,113.515 36.5371,111.025 36.9675,108.536 38.3286,106.027 40.1777,104.178 41.1692,103.186 42.3633,101.874 43.6953,100.828 45.0273,99.7823 46.484,99.0137 47.9902,99.0547 Z"
- id="path1003-6-8"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccccccccccscccccccccccccccccscc" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 80.8379,99.3398 C 78.6392,99.3705 76.5264,99.5894 75.3672,99.6855 74.6748,99.7432 74.1766,99.9388 73.8184,100.24 73.4598,100.542 73.2516,100.935 73.0879,101.344 72.7605,102.162 72.5835,103.061 71.8223,103.822 V 103.824 C 71.4081,104.238 70.6285,104.679 69.8691,105.195 69.1097,105.712 68.3555,106.313 68.0098,107.143 67.0174,109.525 66.8233,112.48 67.2305,115.211 67.6376,117.942 68.6415,120.452 70.1289,121.939 72.1195,123.93 76.5777,124.974 81.043,125.111 85.5082,125.248 89.9738,124.481 91.9727,122.482 92.1966,122.259 92.2926,121.948 92.3086,121.613 92.3246,121.278 92.2669,120.904 92.166,120.496 91.9642,119.681 91.5842,118.725 91.1953,117.732 90.8064,116.74 90.4085,115.712 90.168,114.783 89.9275,113.854 89.8542,113.028 90.0586,112.451 90.3836,111.534 91.11,110.83 91.7598,110.143 92.0846,109.799 92.3904,109.46 92.6055,109.084 92.8206,108.708 92.9427,108.285 92.8711,107.824 92.7008,106.728 92.713,105.494 92.5898,104.34 92.4667,103.185 92.2048,102.09 91.4297,101.314 90.9764,100.861 90.1868,100.773 89.3301,100.654 88.4734,100.536 87.543,100.423 86.8848,100.137 V 100.135 C 85.3192,99.4546 83.0365,99.3092 80.8379,99.3398 Z M 80.8438,99.8398 C 83.0138,99.8096 85.2626,99.9755 86.6855,100.594 87.4525,100.927 88.4132,101.033 89.2617,101.15 90.1103,101.268 90.8394,101.431 91.0762,101.668 91.7228,102.315 91.9731,103.28 92.0918,104.393 92.2105,105.505 92.1975,106.748 92.377,107.902 92.429,108.237 92.3491,108.526 92.1719,108.836 91.9947,109.145 91.7149,109.462 91.3965,109.799 90.7597,110.472 89.9633,111.226 89.5879,112.285 89.324,113.03 89.432,113.936 89.6836,114.908 89.9351,115.88 90.3412,116.921 90.7305,117.914 91.1197,118.907 91.4913,119.856 91.6797,120.617 91.7739,120.998 91.8209,121.33 91.8086,121.588 91.7963,121.846 91.7312,122.017 91.6191,122.129 89.8468,123.901 85.453,124.746 81.0586,124.611 76.6642,124.477 72.2636,123.367 70.4824,121.586 69.1163,120.22 68.1205,117.792 67.7246,115.137 67.3288,112.482 67.5281,109.602 68.4727,107.334 68.7499,106.669 69.4155,106.109 70.1504,105.609 70.8853,105.11 71.6742,104.68 72.1777,104.176 73.0493,103.303 73.2521,102.281 73.5527,101.529 73.7031,101.153 73.8725,100.849 74.1406,100.623 74.4088,100.397 74.7883,100.235 75.4102,100.184 76.5814,100.086 78.6737,99.8701 80.8438,99.8398 Z"
- id="path1003-7-79"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccsccccccscsccsccscccccccccccccccccccsccccccccccc" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 105.729,97.5391 C 103.935,97.7776 102.659,98.3265 101.902,99.0566 101.146,99.7868 100.937,100.736 101.332,101.596 101.682,102.358 101.485,103.326 101.09,104.455 100.695,105.584 100.117,106.848 99.8223,108.184 99.3041,110.53 98.7793,112.993 98.6895,115.195 98.5996,117.397 98.9424,119.364 100.23,120.652 100.311,120.733 100.448,120.775 100.555,120.762 100.661,120.748 100.741,120.704 100.816,120.652 100.966,120.55 101.107,120.402 101.273,120.217 101.606,119.846 102.022,119.324 102.531,118.795 103.549,117.736 104.911,116.672 106.615,116.742 106.873,116.753 107.15,116.9 107.447,117.166 107.745,117.432 108.052,117.808 108.367,118.215 108.998,119.029 109.651,119.974 110.482,120.443 111.518,121.028 112.697,121.155 113.768,121.182 114.839,121.208 115.82,121.142 116.408,121.271 119.518,121.953 120.489,122.591 120.939,123.062 121.165,123.298 121.271,123.516 121.484,123.73 121.698,123.945 122.012,124.106 122.541,124.18 122.863,124.224 123.168,124.121 123.322,123.889 123.476,123.656 123.495,123.373 123.48,123.045 123.451,122.389 123.245,121.511 123.08,120.5 122.751,118.479 122.581,115.992 124.166,114.072 125.604,112.331 125.992,109.825 125.807,107.527 125.621,105.229 124.882,103.135 123.887,102.139 123.555,101.807 123.044,101.676 122.43,101.605 121.815,101.535 121.084,101.537 120.295,101.555 118.716,101.59 116.901,101.688 115.412,101.441 113.715,101.16 112.011,100.116 110.387,99.166 108.762,98.2164 107.212,97.3417 105.729,97.5391 Z M 105.795,98.0352 C 107.032,97.8706 108.518,98.6526 110.135,99.5977 111.751,100.543 113.491,101.631 115.33,101.936 116.904,102.196 118.74,102.09 120.307,102.055 121.09,102.037 121.805,102.037 122.373,102.102 122.941,102.167 123.348,102.307 123.533,102.492 124.359,103.319 125.13,105.356 125.309,107.568 125.487,109.78 125.096,112.162 123.781,113.754 122.05,115.85 122.252,118.522 122.588,120.58 122.756,121.609 122.955,122.501 122.98,123.068 122.993,123.352 122.953,123.543 122.906,123.613 122.859,123.684 122.825,123.713 122.611,123.684 H 122.609 C 122.143,123.619 121.979,123.52 121.838,123.379 121.697,123.237 121.573,123.003 121.301,122.719 120.757,122.15 119.666,121.474 116.514,120.783 115.788,120.624 114.819,120.707 113.779,120.682 112.74,120.656 111.649,120.527 110.729,120.008 110.058,119.63 109.404,118.737 108.764,117.91 108.443,117.497 108.124,117.1 107.781,116.793 107.439,116.486 107.064,116.26 106.637,116.242 104.716,116.163 103.226,117.349 102.17,118.447 101.642,118.997 101.215,119.532 100.9,119.883 100.748,120.052 100.624,120.173 100.547,120.229 99.4523,119.088 99.1036,117.318 99.1895,115.215 99.2767,113.077 99.7929,110.635 100.311,108.291 100.59,107.026 101.156,105.783 101.562,104.621 101.969,103.459 102.231,102.353 101.787,101.387 101.473,100.703 101.606,100.036 102.248,99.416 102.89,98.7964 104.071,98.2644 105.795,98.0352 Z"
- id="path1003-6-5-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccccccccccccccccccccccccccccccscccsccccccccccccccccccccc" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 6.69141,66.3984 C 5.77677,66.3791 4.97009,66.5416 4.43359,67.0781 3.43127,68.0805 2.69017,69.8069 2.16211,71.8984 1.63405,73.9899 1.32995,76.4485 1.26172,78.9082 1.19349,81.368 1.36147,83.8285 1.78711,85.9219 2.21275,88.0153 2.88601,89.7454 3.89258,90.752 4.08194,90.9413 4.37451,91.0865 4.76758,91.2676 5.16065,91.4486 5.64368,91.6463 6.1543,91.8516 7.17554,92.262 8.31256,92.7073 9.02148,93.0918 10.4704,93.8776 12.1938,93.3266 13.8027,92.4941 15.4117,91.6616 16.9577,90.5218 18.0508,90 20.4288,88.8647 22.0953,89.4183 23.543,89.9922 24.2668,90.2792 24.9277,90.5803 25.5957,90.6602 26.2637,90.74 26.944,90.5619 27.5664,89.9395 28.1346,89.3713 28.2104,88.5063 28.0566,87.5449 27.9029,86.5835 27.5169,85.4896 27.0723,84.3613 26.1831,82.1048 25.0695,79.692 25.043,78.2344 25.0166,76.7876 25.3064,75.1803 25.3789,73.6875 25.4514,72.1947 25.3032,70.7798 24.3125,69.7891 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 6.68164,66.8984 C 7.52943,66.9163 8.54808,67.1091 9.60938,67.3633 11.732,67.8715 14.004,68.6242 15.5938,68.6094 17.1518,68.5949 18.8003,68.5185 20.2812,68.6816 21.7622,68.8448 23.0606,69.2442 23.959,70.1426 24.7983,70.9819 24.951,72.2199 24.8809,73.6641 24.8107,75.1082 24.5153,76.7229 24.543,78.2422 24.5737,79.9309 25.7272,82.3092 26.6074,84.543 27.0475,85.6598 27.4222,86.7352 27.5645,87.625 27.7067,88.5148 27.6153,89.1835 27.2129,89.5859 26.678,90.1209 26.2108,90.2304 25.6562,90.1641 25.1017,90.0977 24.4644,89.8191 23.7285,89.5273 22.2568,88.9439 20.3567,88.3454 17.8359,89.5488 16.656,90.1121 15.1328,91.2443 13.5742,92.0508 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="path1003-3-0"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccscsccccccccscccssccccscccscccccccccccccccccs" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 48,68.9219 C 44.8914,68.9219 41.7739,69.8706 39.8223,71.8223 37.8706,73.7739 36.9219,76.8914 36.9219,80 36.9219,83.1086 37.8706,86.2261 39.8223,88.1777 41.7739,90.1294 44.8914,91.0781 48,91.0781 51.1086,91.0781 54.2261,90.1294 56.1777,88.1777 58.1294,86.2261 59.0781,83.1086 59.0781,80 59.0781,76.8914 58.1294,73.7739 56.1777,71.8223 54.2261,69.8706 51.1086,68.9219 48,68.9219 Z M 48,69.4219 C 51.0058,69.4219 54.0047,70.3582 55.8242,72.1777 57.6437,73.9973 58.5781,76.9942 58.5781,80 58.5781,83.0058 57.6437,86.0027 55.8242,87.8223 54.0047,89.6418 51.0058,90.5781 48,90.5781 44.9942,90.5781 41.9973,89.6418 40.1777,87.8223 38.3582,86.0027 37.4219,83.0058 37.4219,80 37.4219,76.9942 38.3582,73.9973 40.1777,72.1777 41.9973,70.3582 44.9942,69.4219 48,69.4219 Z"
- id="path1003-6-56-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="scscscscsscscscscs" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 83.4004,68.3203 C 80.9386,68.2446 78.568,68.3843 77.5156,68.543 76.8699,68.6403 76.4056,69.0338 76.0879,69.541 75.7701,70.0482 75.5746,70.6717 75.4004,71.3105 75.052,72.5882 74.7615,73.9157 74.082,74.4473 73.177,75.1554 72.6496,75.8322 72.377,76.4961 72.1043,77.16 72.0943,77.8004 72.1895,78.4004 72.3798,79.6004 72.9364,80.6604 72.7871,81.7227 72.5358,83.511 71.8402,84.7304 71.6992,86.0742 71.5582,87.4181 72.0417,88.8278 74.0605,90.8223 74.3961,91.1538 74.8001,91.2604 75.166,91.1895 75.5319,91.1185 75.8587,90.908 76.1797,90.6699 76.8216,90.1939 77.4626,89.6022 78.0449,89.5059 78.2123,89.4782 78.3825,89.5242 78.584,89.6406 78.7855,89.757 79.0053,89.9422 79.2363,90.1484 79.6984,90.5609 80.1992,91.0695 80.8496,91.2227 81.4555,91.3654 82.0642,91.1061 82.6484,90.8145 83.2327,90.5228 83.8091,90.1811 84.2969,90.0488 84.9931,89.8601 86.2082,90.2999 87.3672,90.707 87.9467,90.9106 88.5145,91.0993 89.0352,91.166 89.5558,91.2327 90.062,91.1724 90.4141,90.8203 91.1591,90.0753 91.2765,89.0726 91.3145,88.0488 91.3524,87.025 91.3177,85.9531 91.6641,84.9668 92.025,83.9392 92.7897,82.9203 93.4023,81.8867 94.015,80.8531 94.4882,79.7668 94.1367,78.6211 93.8777,77.7769 93.1871,77.0038 92.4473,76.2988 91.7075,75.5939 90.9063,74.959 90.4141,74.4668 90.2263,74.279 90.1932,74.0143 90.252,73.623 90.3107,73.2318 90.4691,72.7549 90.5996,72.2598 90.7301,71.7646 90.836,71.2457 90.7539,70.7422 90.6719,70.2386 90.3726,69.7597 89.7832,69.4355 88.385,68.6667 85.8621,68.396 83.4004,68.3203 Z M 83.3848,68.8203 C 85.8172,68.8951 88.3325,69.2094 89.543,69.875 90.0223,70.1386 90.1982,70.4448 90.2598,70.8223 90.3213,71.1998 90.24,71.6594 90.1152,72.1328 89.9905,72.6062 89.8268,73.0898 89.7578,73.5488 89.6888,74.0078 89.7222,74.482 90.0605,74.8203 90.5911,75.3509 91.3861,75.9785 92.1035,76.6621 92.8209,77.3457 93.4492,78.0865 93.6582,78.7676 93.9467,79.7078 93.5644,80.6346 92.9727,81.6328 92.381,82.6311 91.5922,83.6652 91.1934,84.8008 90.8067,85.9016 90.8514,87.034 90.8145,88.0312 90.7775,89.0285 90.6652,89.8622 90.0605,90.4668 89.8574,90.6699 89.546,90.7271 89.0996,90.6699 88.6532,90.6127 88.1039,90.4355 87.5312,90.2344 86.386,89.832 85.1535,89.2987 84.166,89.5664 83.5712,89.7277 82.9828,90.0882 82.4238,90.3672 81.8648,90.6462 81.3535,90.8279 80.9648,90.7363 80.5126,90.6298 80.0413,90.1976 79.5684,89.7754 79.3319,89.5643 79.0946,89.3576 78.834,89.207 78.5734,89.0565 78.2765,88.9599 77.9629,89.0117 77.1411,89.1477 76.481,89.8225 75.8809,90.2676 75.5808,90.4901 75.3004,90.6546 75.0703,90.6992 74.8403,90.7438 74.6577,90.7075 74.4121,90.4648 72.4463,88.5227 72.0716,87.3248 72.1973,86.127 72.3229,84.9292 73.019,83.6734 73.2832,81.793 73.4611,80.5266 72.8557,79.4075 72.6836,78.3223 72.5975,77.7796 72.6079,77.2503 72.8398,76.6855 73.0718,76.1208 73.533,75.5109 74.3906,74.8398 75.3093,74.121 75.5399,72.6937 75.8809,71.4434 76.0513,70.8182 76.2442,70.2336 76.5117,69.8066 76.7792,69.3797 77.0979,69.1132 77.5898,69.0391 78.574,68.8907 80.9523,68.7456 83.3848,68.8203 Z"
- id="path1003-7-2-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccccccccccsccccccscccscscccccccccssscccccsccscccccccccccccccc" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 113.588,67.0371 C 112.44,66.9554 111.197,67.1172 109.959,67.457 107.483,68.1366 105.008,69.5366 103.297,71.248 102.413,72.132 101.965,73.6296 101.674,75.1738 101.383,76.718 101.264,78.3184 101.125,79.3828 100.938,80.8223 100.912,81.8641 101.523,82.9746 102.135,84.0852 103.34,85.239 105.568,87.043 107.336,88.4735 108.796,88.4534 109.988,88.084 111.181,87.7146 112.122,87.0841 112.984,87.1914 114.163,87.3381 115.366,88.1094 116.564,88.6113 117.164,88.8623 117.768,89.0465 118.383,89.0195 118.997,88.9926 119.614,88.7417 120.178,88.1777 120.682,87.6735 121.815,87.0488 122.92,86.3027 124.025,85.5567 125.124,84.6742 125.57,83.5117 126.569,80.9104 126.637,77.78 126.127,74.957 125.617,72.1341 124.537,69.6175 123.148,68.2285 122.987,68.067 122.833,68.0698 122.621,68.043 122.409,68.0161 122.146,68.0042 121.844,68 121.239,67.9917 120.479,68.0175 119.721,68.0469 118.963,68.0763 118.207,68.1084 117.621,68.1152 117.328,68.1186 117.076,68.1161 116.895,68.1035 116.804,68.0972 116.73,68.0874 116.682,68.0781 116.634,68.0689 116.609,68.0486 116.646,68.0762 115.789,67.4434 114.736,67.1188 113.588,67.0371 Z M 113.543,67.5391 C 114.618,67.6149 115.585,67.9142 116.35,68.4785 H 116.352 C 116.44,68.5439 116.508,68.5549 116.588,68.5703 116.668,68.5857 116.756,68.5944 116.859,68.6016 117.066,68.6158 117.327,68.6187 117.627,68.6152 118.227,68.6082 118.984,68.5762 119.74,68.5469 120.496,68.5175 121.251,68.492 121.836,68.5 122.128,68.504 122.38,68.5164 122.559,68.5391 122.738,68.5617 122.851,68.6378 122.795,68.582 124.059,69.8463 125.138,72.2958 125.635,75.0469 126.132,77.7979 126.057,80.8497 125.104,83.332 124.727,84.3116 123.717,85.1586 122.639,85.8867 121.56,86.6148 120.436,87.2085 119.822,87.8223 119.331,88.3136 118.86,88.4976 118.361,88.5195 117.862,88.5414 117.326,88.3881 116.758,88.1504 115.622,87.6749 114.389,86.8626 113.045,86.6953 111.923,86.5557 110.938,87.2673 109.84,87.6074 108.742,87.9475 107.549,88.0048 105.883,86.6562 103.667,84.863 102.51,83.7276 101.963,82.7344 101.416,81.7411 101.435,80.8635 101.619,79.4473 101.761,78.3563 101.882,76.7724 102.166,75.2656 102.45,73.7588 102.912,72.3396 103.65,71.6016 105.287,69.9647 107.701,68.5949 110.09,67.9395 111.284,67.6117 112.468,67.4632 113.543,67.5391 Z"
- id="path1003-6-5-9-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="sscsccccccccccccccsscccscccscsccccccccsccscccsccc" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 11.8145,35.0859 C 11.1577,35.1502 10.5516,35.3457 10.0117,35.707 8.93189,36.4297 8.16146,37.7867 7.75391,39.9531 7.31483,42.2871 6.04042,45.5567 4.97461,48.5664 4.44171,50.0713 3.96231,51.5134 3.66406,52.7559 3.36582,53.9983 3.23522,55.0367 3.46875,55.791 3.56687,56.1079 3.77362,56.3471 4.03711,56.4863 4.3006,56.6256 4.60919,56.6758 4.94336,56.6797 5.61169,56.6874 6.40371,56.5126 7.2207,56.3301 8.0377,56.1475 8.87586,55.9541 9.5918,55.9102 10.3077,55.8662 10.8737,55.9733 11.2129,56.3125 11.9751,57.0748 13.0056,58.358 14.123,59.5723 15.2404,60.7865 16.4386,61.9381 17.625,62.457 19.2641,63.1739 20.8701,63.0802 22.3242,62.5234 23.7784,61.9667 25.0906,60.9583 26.2109,59.8379 28.1817,57.8672 29.4867,53.7883 29.418,49.7246 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 11.8711,35.582 C 12.4596,35.5255 13.1087,35.5855 13.8125,35.7383 16.6277,36.3495 20.2311,38.4681 23.8926,40.2246 27.4309,41.922 28.8512,45.7838 28.918,49.7324 28.9848,53.6811 27.6579,57.6839 25.8574,59.4844 24.7692,60.5726 23.5033,61.5364 22.1445,62.0566 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 10.7542,35.8117 11.2826,35.6386 11.8711,35.582 Z"
- id="path1003-1-5"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccscccccccccscccscccsssscccscssccccccc" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 48.5762,32.8945 C 45.4675,32.8945 42.3501,33.8452 40.3984,35.7969 39.8529,36.3424 39.6186,37.2267 39.5039,38.3105 39.3892,39.3944 39.4054,40.6923 39.4395,42.0801 39.5076,44.8557 39.6479,47.9986 39.0391,50.4277 38.43,52.8582 37.0648,54.6415 36.0566,56.0801 35.5526,56.7994 35.1325,57.4291 34.9551,58.0469 34.7777,58.6646 34.8908,59.2971 35.4141,59.8203 35.9215,60.3277 36.4112,60.5576 36.916,60.5781 37.4208,60.5987 37.9097,60.4305 38.4863,60.2266 39.6395,59.8187 41.168,59.231 43.8496,59.3828 46.4375,59.5294 50.2094,60.4521 53.5605,61.1113 55.2361,61.441 56.8071,61.7048 58.0938,61.7695 59.3804,61.8342 60.4023,61.7305 60.9707,61.1621 61.1266,61.0062 61.2015,60.7933 61.2168,60.5742 61.2321,60.3551 61.1951,60.1205 61.1289,59.8633 60.9965,59.3489 60.7376,58.739 60.4316,58.0371 59.8198,56.6333 59.017,54.8714 58.6348,52.9648 58.474,52.1628 58.7748,51.453 59.0742,50.5352 59.3736,49.6173 59.6468,48.5044 59.3184,47 59.1507,46.2319 59.7556,44.9952 60.4453,43.7422 61.135,42.4892 61.8995,41.2315 61.8008,40.1484 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 48.5762,33.3945 C 51.582,33.3945 54.5789,34.3308 56.3984,36.1504 57.1248,36.8768 58.3298,37.3937 59.3652,38.0039 59.8829,38.309 60.3564,38.6325 60.7012,38.9922 61.0459,39.3519 61.2611,39.7368 61.3027,40.1934 61.3747,40.9828 60.7002,42.2421 60.0078,43.5 59.3154,44.7579 58.5938,46.025 58.8301,47.1074 59.1357,48.5072 58.8907,49.4886 58.5996,50.3809 58.3086,51.2731 57.9495,52.0894 58.1445,53.0625 58.5416,55.043 59.3659,56.8397 59.9746,58.2363 60.279,58.9347 60.5279,59.5354 60.6445,59.9883 60.7028,60.2147 60.7263,60.403 60.7168,60.5391 60.7073,60.6751 60.6746,60.7512 60.6172,60.8086 60.2589,61.1669 59.3577,61.3318 58.1191,61.2695 56.8806,61.2072 55.3231,60.949 53.6562,60.6211 50.3226,59.9652 46.5566,59.0345 43.8789,58.8828 41.1124,58.7262 39.4626,59.3519 38.3203,59.7559 37.7492,59.9578 37.3106,60.0934 36.9355,60.0781 36.5604,60.0628 36.219,59.9182 35.7676,59.4668 35.3478,59.047 35.2925,58.6836 35.4355,58.1855 35.5786,57.6875 35.9662,57.0787 36.4648,56.3672 37.4621,54.9441 38.8855,53.0941 39.5234,50.5488 40.161,48.0048 40.0074,44.8336 39.9395,42.0664 39.9055,40.6828 39.8921,39.4006 40.002,38.3633 40.1118,37.3259 40.3548,36.5475 40.752,36.1504 42.5715,34.3309 45.5703,33.3945 48.5762,33.3945 Z"
- id="path1003-6-2-9"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="sscccccccccccsssccccsccccsscsccsccccccsccccssccccccs" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 76.9355,34.4082 C 76.3493,34.5429 75.8005,35.0641 75.2188,35.7578 74.637,36.4515 74.0378,37.3332 73.4609,38.2383 72.8841,39.1434 72.3297,40.0707 71.8457,40.8438 71.3617,41.6168 70.9357,42.244 70.6719,42.5078 68.7366,44.4431 67.5375,47.2622 67.293,50.0879 67.0485,52.9136 67.7646,55.7607 69.7148,57.7109 70.7263,58.7224 72.6227,59.7199 74.6738,60.4863 76.7249,61.2528 78.9159,61.7769 80.5254,61.7617 82.0709,61.7471 84.3942,61.3566 86.584,60.7363 88.7738,60.116 90.8168,59.2887 91.8203,58.2852 93.0387,57.0668 93.6526,55.1791 93.9121,53.1426 94.1716,51.106 94.0724,48.9125 93.8086,47.0566 93.6273,45.7816 92.5682,44.3696 91.3906,43.0566 90.213,41.7436 88.8983,40.5428 88.1777,39.8223 86.8912,38.5357 85.1123,36.9608 83.1426,35.8125 81.1728,34.6642 78.9992,33.9339 76.9355,34.4082 Z M 77.0469,34.8945 C 78.9251,34.4629 80.98,35.1303 82.8906,36.2441 84.8013,37.358 86.5564,38.9099 87.8242,40.1777 88.5633,40.9168 89.8625,42.1028 91.0176,43.3906 92.1726,44.6785 93.1639,46.0819 93.3125,47.127 93.571,48.9457 93.6678,51.1045 93.416,53.0801 93.1643,55.0557 92.5602,56.8383 91.4668,57.9316 90.6135,58.7849 88.6002,59.646 86.4473,60.2559 84.2943,60.8657 81.9862,61.2479 80.5215,61.2617 79.0272,61.2758 76.8604,60.769 74.8496,60.0176 72.8388,59.2662 70.9714,58.2605 70.0684,57.3574 68.2473,55.5363 67.5562,52.8443 67.791,50.1309 68.0258,47.4174 69.1913,44.6974 71.0273,42.8613 71.372,42.5167 71.7813,41.8892 72.2695,41.1094 72.7578,40.3296 73.3111,39.4049 73.8828,38.5078 74.4545,37.6108 75.0458,36.7409 75.6016,36.0781 76.1573,35.4154 76.6941,34.9756 77.0469,34.8945 Z"
- id="path1003-7-7-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccsssccssccscccscsccccccsccccccs" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 118.316,39.1035 C 117.653,39.1329 116.971,39.3715 116.264,39.668 114.849,40.261 113.322,41.0903 111.777,41.1523 110.45,41.2057 108.966,40.4446 107.582,39.8535 106.89,39.558 106.223,39.3047 105.584,39.2422 104.945,39.1796 104.317,39.3277 103.822,39.8223 101.875,41.7694 99.8387,45.8006 98.7266,49.8516 98.1705,51.877 97.849,53.9054 97.9082,55.6836 97.9674,57.4618 98.406,59.0037 99.4141,60.0117 100.427,61.0243 102.24,61.6781 104.455,62.082 106.67,62.486 109.292,62.6257 111.914,62.5293 114.536,62.4329 117.156,62.0995 119.369,61.5508 121.582,61.002 123.388,60.2507 124.395,59.2441 125.79,57.849 126.256,54.9426 126.16,51.7637 126.064,48.5848 125.373,45.1304 124.26,42.6523 123.724,41.4608 122.924,41.0079 122.166,40.7422 121.408,40.4765 120.714,40.3587 120.178,39.8223 119.63,39.2745 118.98,39.0741 118.316,39.1035 Z M 118.338,39.6035 C 118.894,39.5788 119.366,39.7214 119.822,40.1777 120.483,40.8384 121.296,40.9662 122,41.2129 122.704,41.4596 123.322,41.7851 123.805,42.8574 124.878,45.2468 125.566,48.6624 125.66,51.7793 125.754,54.8962 125.22,57.7117 124.041,58.8906 123.162,59.7697 121.419,60.5285 119.25,61.0664 117.081,61.6043 114.487,61.934 111.895,62.0293 109.303,62.1246 106.712,61.9849 104.545,61.5898 102.378,61.1948 100.641,60.5313 99.7676,59.6582 98.89,58.7806 98.465,57.3711 98.4082,55.666 98.3514,53.9609 98.6606,51.9747 99.207,49.9844 100.3,46.0036 102.354,42.0018 104.178,40.1777 104.565,39.7909 104.995,39.6874 105.535,39.7402 106.075,39.7931 106.709,40.0229 107.387,40.3125 108.742,40.8916 110.271,41.7117 111.797,41.6504 113.503,41.5818 115.08,40.706 116.457,40.1289 117.145,39.8403 117.781,39.6282 118.338,39.6035 Z"
- id="path1003-6-5-0-2"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccccsccsccscsccccscscssccsccccccc" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- 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 3.23758,16.6371 3.08269,16.8071 3.04688,17.0039 2.85988,18.0313 3.17181,19.0268 3.75391,19.9531 4.336,20.8794 5.18956,21.7508 6.13477,22.5742 8.02517,24.2211 10.2935,25.688 11.4668,26.8613 12.6922,28.0868 13.5129,28.1629 14.8613,28.2109 16.2097,28.259 18.1695,28.3144 21.9805,29.5508 23.1227,29.9214 24.2537,29.5783 25.248,28.9883 26.2424,28.3983 27.1244,27.5572 27.8203,26.8613 28.9416,25.74 29.4504,24.4466 29.6289,23.0176 29.8075,21.5885 29.668,20.0198 29.5098,18.2812 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 15.3418,2.17578 C 16.3166,2.05841 17.4407,2.15048 18.6094,2.41992 20.9467,2.95881 23.4321,4.18984 25.1602,5.6875 26.0153,6.42859 26.2528,7.32639 26.4414,8.25391 26.63,9.18142 26.7524,10.1469 27.4668,10.8613 28.2048,11.5993 28.5478,12.8001 28.7188,14.1582 28.8897,15.5163 28.8923,17.0149 29.0117,18.3262 29.1699,20.0637 29.3017,21.6034 29.1328,22.9551 28.9639,24.3068 28.5072,25.4674 27.4668,26.5078 26.778,27.1966 25.9196,28.0095 24.9941,28.5586 24.0687,29.1077 23.0995,29.3892 22.1348,29.0762 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 3.62898,17.0257 3.74839,17.012 3.91211,17.0234 4.23955,17.0463 4.72961,17.1454 5.28711,17.1836 6.40212,17.26 7.83977,17.0583 8.91016,15.5195 10.0812,13.8361 10.9161,10.9153 11.5703,8.31055 11.8974,7.00815 12.1748,5.78555 12.4141,4.85156 12.5337,4.38457 12.645,3.99023 12.7441,3.69727 12.8433,3.40431 12.9584,3.20373 12.9707,3.19141 13.542,2.62007 14.367,2.29315 15.3418,2.17578 Z"
- id="path1003-3-9-8"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccscccscccccccccsccccccccscccsccsscccscccscscccccs" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 47.1309,2.06055 C 45.7305,2.12339 43.465,2.10241 41.3242,2.28516 39.1835,2.46791 37.1622,2.81436 36.1797,3.79688 34.876,5.10058 34.306,7.64035 34.2383,10.4863 34.1706,13.3323 34.6303,16.4902 35.5254,19.0234 36.0559,20.5247 37.7207,22.0214 39.4102,23.3535 41.0996,24.6856 42.843,25.8527 43.4668,26.4766 45.4125,28.4223 48.3842,29.4258 51.3516,29.4746 54.3189,29.5234 57.2955,28.6186 59.2441,26.6699 61.2393,24.6748 61.3827,20.9157 60.6074,17.1953 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 47.1543,2.56055 C 48.6897,2.49164 50.3572,3.3692 51.8887,4.54102 53.4201,5.71283 54.8093,7.1628 55.8242,8.17773 57.6482,10.0018 59.3586,13.6566 60.1172,17.2969 60.8758,20.9371 60.6668,24.5403 58.8906,26.3164 57.0681,28.1389 54.2189,29.0217 51.3594,28.9746 48.4999,28.9276 45.6459,27.9486 43.8203,26.123 43.0951,25.3979 41.3875,24.2767 39.7188,22.9609 38.05,21.6452 36.4483,20.1372 35.9961,18.8574 35.1267,16.3971 34.6721,13.2812 34.7383,10.498 34.8045,7.7149 35.4146,5.26893 36.5332,4.15039 37.2994,3.38421 39.2577,2.96311 41.3652,2.7832 43.4727,2.60329 45.7251,2.62468 47.1543,2.56055 Z"
- id="path1003-6-56-3-9"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccscccsccccccccccccccscsc" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- 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 68.9219,19.1086 69.8705,22.226 71.8223,24.1777 72.826,25.1815 74.8326,26.5394 77.0762,27.6016 79.3198,28.6637 81.7869,29.4318 83.7402,29.1504 87.289,28.6393 90.0965,28.2003 92.0117,26.2852 94.0009,24.296 94.9614,19.9591 95.0098,15.6191 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 81.0637,2.82904 83.6847,2.87405 86.1289,3.23438 88.5731,3.5947 90.8442,4.2954 91.8496,5.30078 93.6287,7.0799 94.5573,11.3464 94.5098,15.6133 94.4622,19.8802 93.4403,24.1495 91.6582,25.9316 89.8902,27.6996 87.2145,28.1438 83.6699,28.6543 81.9071,28.9082 79.4868,28.1908 77.2891,27.1504 75.0913,26.11 73.1036,24.7481 72.1777,23.8223 70.3582,22.0027 69.4219,19.0058 69.4219,16 69.4219,12.9942 70.3582,9.99731 72.1777,8.17773 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="path1003-7-2-6-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccsccccccccccccscccsccc" />
- <path
- style="color:#000000;fill:#000000;stroke-width:0.5"
- d="M 111.805,1.86523 C 110.926,1.83191 110.183,2.17713 109.566,2.72266 108.95,3.26819 108.446,4.01 107.984,4.80664 107.062,6.39992 106.294,8.22913 105.357,9.16602 104.627,9.89707 102.638,10.8527 100.82,11.9102 99.9117,12.4389 99.0401,12.9996 98.3691,13.6074 97.6982,14.2153 97.213,14.8786 97.1465,15.625 97.0629,16.5632 97.4101,17.3561 97.9863,18.0078 98.5625,18.6595 99.3618,19.1889 100.227,19.6719 101.956,20.6378 103.962,21.4403 104.973,22.4512 105.747,23.2257 106.546,25.2356 107.453,27.0605 107.907,27.973 108.395,28.8442 108.963,29.5117 109.531,30.1792 110.195,30.6561 110.982,30.6992 111.887,30.7487 112.676,30.375 113.35,29.7852 114.023,29.1953 114.599,28.3884 115.131,27.5215 116.195,25.7877 117.105,23.7971 118.068,22.834 118.887,22.0152 120.816,21.0041 122.547,19.8652 123.412,19.2958 124.231,18.6893 124.854,18.0293 125.476,17.3693 125.909,16.6435 125.941,15.8457 126.012,14.1103 124.924,12.8184 123.617,11.7383 122.311,10.6582 120.76,9.74824 119.793,8.78125 118.938,7.92593 117.69,6.23494 116.301,4.74414 114.911,3.25334 113.378,1.92488 111.805,1.86523 Z M 111.787,2.36523 C 113.079,2.41421 114.571,3.62239 115.934,5.08398 117.296,6.54558 118.525,8.22019 119.439,9.13477 120.482,10.1774 122.037,11.08 123.299,12.123 124.56,13.1661 125.503,14.3086 125.441,15.8262 125.416,16.4539 125.066,17.0745 124.49,17.6855 123.914,18.2966 123.122,18.888 122.271,19.4473 120.571,20.5659 118.658,21.5375 117.715,22.4805 116.626,23.5698 115.745,25.5657 114.705,27.2598 114.185,28.1068 113.631,28.8749 113.021,29.4082 112.412,29.9415 111.764,30.2405 111.01,30.1992 110.408,30.1663 109.864,29.7984 109.344,29.1875 108.824,28.5766 108.346,27.7352 107.9,26.8379 107.008,25.0433 106.271,23.042 105.326,22.0977 104.181,20.9527 102.157,20.1759 100.471,19.2344 99.6277,18.7636 98.8733,18.2568 98.3613,17.6777 97.8494,17.0987 97.5736,16.4657 97.6445,15.6699 97.6938,15.117 98.0807,14.5442 98.7051,13.9785 99.3295,13.4129 100.177,12.8628 101.072,12.3418 102.863,11.2999 104.827,10.4039 105.711,9.51953 106.775,8.4552 107.518,6.60751 108.416,5.05664 108.865,4.28121 109.35,3.58308 109.898,3.09766 110.447,2.61224 111.046,2.33715 111.787,2.36523 Z"
- id="path1003-6-5-9-0-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccccscccsccsccccccccaccccccccccssccccccccca" />
- </g>
+ </mask>
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1918"
+ inkscape:window-height="1059"
+ id="namedview3444"
+ showgrid="false"
+ inkscape:zoom="1.38"
+ inkscape:cx="220.713"
+ inkscape:cy="265.022"
+ inkscape:window-x="1"
+ inkscape:window-y="20"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="layer1"
+ inkscape:document-units="mm" />
+ <metadata
+ id="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
+ inkscape:groupmode="layer"
+ id="models_layer"
+ inkscape:label="Models"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="bg_a_model">
+ <rect
+ y="0"
+ x="0"
+ height="128"
+ width="128"
+ id="rect2648"
+ style="fill:#008080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" />
+ <text
+ id="text2652"
+ y="19.639999"
+ x="12.47"
+ 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"
+ xml:space="preserve"><tspan
+ y="19.639999"
+ x="12.47"
+ id="tspan2650"
+ sodipodi:role="line">A</tspan></text>
+ </g>
+ <g
+ id="bg_b_model">
+ <rect
+ y="0"
+ x="0"
+ height="128"
+ width="128"
+ id="rect2648-6"
+ style="fill:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;paint-order:markers fill stroke" />
+ <text
+ id="text2652-2"
+ y="19.639999"
+ x="12.47"
+ 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"
+ xml:space="preserve"><tspan
+ y="19.639999"
+ x="12.47"
+ id="tspan2650-6"
+ sodipodi:role="line">B</tspan></text>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="bg_a_layer"
+ inkscape:label="Background A"
+ sodipodi:insensitive="true"
+ style="display:inline">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#bg_a_model"
+ id="bga30"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="bg_b_layer"
+ inkscape:label="Background B"
+ style="display:inline">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#bg_b_model"
+ id="bgb30"
+ width="100%"
+ height="100%"
+ mask="url(#mask1629)" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="borders"
+ sodipodi:insensitive="true"
+ style="display:inline">
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-61"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccsccccccccscccsccccccccsc" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-6-8"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccscccccccccccccccccscc" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-7-79"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccsccccccscsccsccscccccccccccccccccccsccccccccccc" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-6-5-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccscccccccccccccccccccccccccccccccscccsccccccccccccccccccccc" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-3-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccscsccccccccscccssccccscccscccccccccccccccccs" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-6-56-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="scscscscsscscscscs" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-7-2-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccsccccccscccscscccccccccssscccccsccscccccccccccccccc" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-6-5-9-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sscsccccccccccccccsscccscccscsccccccccsccscccsccc" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-1-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccscccccccccscccscccsssscccscssccccccc" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-6-2-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sscccccccccccsssccccsccccsscsccsccccccsccccssccccccs" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-7-7-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccsssccssccscccscsccccccsccccccs" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-6-5-0-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccsccsccscsccccscscssccsccccccc" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-3-9-8"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccscccscccccccccsccccccccscccsccsscccscccscscccccs" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-6-56-3-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccscccsccccccccccccccscsc" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-7-2-6-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccsccccccccccccscccsccc" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.5"
+ 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="path1003-6-5-9-0-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccscccsccsccccccccaccccccccccssccccccccca" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Ballcorners.svg b/src/asset/tile/Ballcorners.svg
index a2b23cb..a123a98 100644
--- a/src/asset/tile/Ballcorners.svg
+++ b/src/asset/tile/Ballcorners.svg
@@ -659,4 +659,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomandleftborders.svg b/src/asset/tile/Bbottomandleftborders.svg
index c7698ee..2441d14 100644
--- a/src/asset/tile/Bbottomandleftborders.svg
+++ b/src/asset/tile/Bbottomandleftborders.svg
@@ -335,4 +335,8 @@
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccssccccccccccccccccccccscccccccccccccccccccccscsccsccccccccccccccscscccccccccccsccc" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomandleftbordersandcorner.svg b/src/asset/tile/Bbottomandleftbordersandcorner.svg
index 017dc26..16f827c 100644
--- a/src/asset/tile/Bbottomandleftbordersandcorner.svg
+++ b/src/asset/tile/Bbottomandleftbordersandcorner.svg
@@ -548,4 +548,8 @@
</g>
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomandrightborders.svg b/src/asset/tile/Bbottomandrightborders.svg
index 93fcdd2..a74763e 100644
--- a/src/asset/tile/Bbottomandrightborders.svg
+++ b/src/asset/tile/Bbottomandrightborders.svg
@@ -340,4 +340,8 @@
style="color:#000000;fill:#000000;stroke-width:0.5" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomandrightbordersandcorner.svg b/src/asset/tile/Bbottomandrightbordersandcorner.svg
index e2b3085..c713c22 100644
--- a/src/asset/tile/Bbottomandrightbordersandcorner.svg
+++ b/src/asset/tile/Bbottomandrightbordersandcorner.svg
@@ -548,4 +548,8 @@
</g>
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomborder.svg b/src/asset/tile/Bbottomborder.svg
index 7d62aab..ee14a03 100644
--- a/src/asset/tile/Bbottomborder.svg
+++ b/src/asset/tile/Bbottomborder.svg
@@ -339,4 +339,8 @@
style="color:#000000;fill:#000000;stroke-width:0.5" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomborderandtopcorners.svg b/src/asset/tile/Bbottomborderandtopcorners.svg
index f8be912..c4c25a3 100644
--- a/src/asset/tile/Bbottomborderandtopcorners.svg
+++ b/src/asset/tile/Bbottomborderandtopcorners.svg
@@ -653,4 +653,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomborderandtopleftcorner.svg b/src/asset/tile/Bbottomborderandtopleftcorner.svg
index 4f624e0..fc3c1a2 100644
--- a/src/asset/tile/Bbottomborderandtopleftcorner.svg
+++ b/src/asset/tile/Bbottomborderandtopleftcorner.svg
@@ -542,4 +542,8 @@
id="frontier-3-6-7-1-6-9" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomborderandtoprightcorner.svg b/src/asset/tile/Bbottomborderandtoprightcorner.svg
index 25124e6..3e51004 100644
--- a/src/asset/tile/Bbottomborderandtoprightcorner.svg
+++ b/src/asset/tile/Bbottomborderandtoprightcorner.svg
@@ -542,4 +542,8 @@
mask="none" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomcorners.svg b/src/asset/tile/Bbottomcorners.svg
index 2d112c0..c50df5a 100644
--- a/src/asset/tile/Bbottomcorners.svg
+++ b/src/asset/tile/Bbottomcorners.svg
@@ -444,4 +444,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomleftcorner.svg b/src/asset/tile/Bbottomleftcorner.svg
index 747b7f2..165108e 100644
--- a/src/asset/tile/Bbottomleftcorner.svg
+++ b/src/asset/tile/Bbottomleftcorner.svg
@@ -332,4 +332,8 @@
id="frontier-3-6-7-1-6-9" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bbottomrightcorner.svg b/src/asset/tile/Bbottomrightcorner.svg
index 695de54..c23b3cd 100644
--- a/src/asset/tile/Bbottomrightcorner.svg
+++ b/src/asset/tile/Bbottomrightcorner.svg
@@ -332,4 +332,8 @@
id="frontier-3-6-7-1-6-9" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bleftborder.svg b/src/asset/tile/Bleftborder.svg
index 7fd47ed..c0aa2e7 100644
--- a/src/asset/tile/Bleftborder.svg
+++ b/src/asset/tile/Bleftborder.svg
@@ -341,4 +341,8 @@
style="color:#000000;fill:#000000;stroke-width:0.5" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bleftborderandbottomrightcorner.svg b/src/asset/tile/Bleftborderandbottomrightcorner.svg
index bcd8740..108ab5d 100644
--- a/src/asset/tile/Bleftborderandbottomrightcorner.svg
+++ b/src/asset/tile/Bleftborderandbottomrightcorner.svg
@@ -544,4 +544,8 @@
mask="none" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bleftborderandrightcorners.svg b/src/asset/tile/Bleftborderandrightcorners.svg
index a68b668..8ea268b 100644
--- a/src/asset/tile/Bleftborderandrightcorners.svg
+++ b/src/asset/tile/Bleftborderandrightcorners.svg
@@ -656,4 +656,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bleftborderandtoprightcorner.svg b/src/asset/tile/Bleftborderandtoprightcorner.svg
index 3907231..0c3131e 100644
--- a/src/asset/tile/Bleftborderandtoprightcorner.svg
+++ b/src/asset/tile/Bleftborderandtoprightcorner.svg
@@ -544,4 +544,8 @@
id="frontier-3-6-7-1-6-9" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bleftcorners.svg b/src/asset/tile/Bleftcorners.svg
index dad3970..f5bd877 100644
--- a/src/asset/tile/Bleftcorners.svg
+++ b/src/asset/tile/Bleftcorners.svg
@@ -443,4 +443,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bnotbottomborder.svg b/src/asset/tile/Bnotbottomborder.svg
index 9fbe818..021eb18 100644
--- a/src/asset/tile/Bnotbottomborder.svg
+++ b/src/asset/tile/Bnotbottomborder.svg
@@ -334,4 +334,8 @@
style="color:#000000;fill:#000000;stroke-width:0.5" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bnotbottomleftcorner.svg b/src/asset/tile/Bnotbottomleftcorner.svg
index e6f93e6..47020e4 100644
--- a/src/asset/tile/Bnotbottomleftcorner.svg
+++ b/src/asset/tile/Bnotbottomleftcorner.svg
@@ -551,4 +551,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bnotbottomrightcorner.svg b/src/asset/tile/Bnotbottomrightcorner.svg
index 196f435..26b3f5e 100644
--- a/src/asset/tile/Bnotbottomrightcorner.svg
+++ b/src/asset/tile/Bnotbottomrightcorner.svg
@@ -551,4 +551,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bnotleftborder.svg b/src/asset/tile/Bnotleftborder.svg
index d13105c..2ca4cbf 100644
--- a/src/asset/tile/Bnotleftborder.svg
+++ b/src/asset/tile/Bnotleftborder.svg
@@ -334,4 +334,8 @@
style="color:#000000;fill:#000000;stroke-width:0.5" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bnotrightborder.svg b/src/asset/tile/Bnotrightborder.svg
index 2f12644..11cba6b 100644
--- a/src/asset/tile/Bnotrightborder.svg
+++ b/src/asset/tile/Bnotrightborder.svg
@@ -334,4 +334,8 @@
style="color:#000000;fill:#000000;stroke-width:0.5" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bnottopborder.svg b/src/asset/tile/Bnottopborder.svg
index 155b6cb..d4ddb44 100644
--- a/src/asset/tile/Bnottopborder.svg
+++ b/src/asset/tile/Bnottopborder.svg
@@ -329,4 +329,8 @@
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccccccccccccscc" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bnottopleftcorner.svg b/src/asset/tile/Bnottopleftcorner.svg
index b8a2068..5551a7a 100644
--- a/src/asset/tile/Bnottopleftcorner.svg
+++ b/src/asset/tile/Bnottopleftcorner.svg
@@ -552,4 +552,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Bnottoprightcorner.svg b/src/asset/tile/Bnottoprightcorner.svg
index aca4640..38c0c6d 100644
--- a/src/asset/tile/Bnottoprightcorner.svg
+++ b/src/asset/tile/Bnottoprightcorner.svg
@@ -551,4 +551,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Brightandleftborders.svg b/src/asset/tile/Brightandleftborders.svg
index f2bcb62..2a5c3cd 100644
--- a/src/asset/tile/Brightandleftborders.svg
+++ b/src/asset/tile/Brightandleftborders.svg
@@ -452,4 +452,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Brightborder.svg b/src/asset/tile/Brightborder.svg
index 3c07f3f..2777b39 100644
--- a/src/asset/tile/Brightborder.svg
+++ b/src/asset/tile/Brightborder.svg
@@ -341,4 +341,8 @@
style="color:#000000;fill:#000000;stroke-width:0.5" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Brightborderandbottomleftcorner.svg b/src/asset/tile/Brightborderandbottomleftcorner.svg
index c3277e6..e50d5bf 100644
--- a/src/asset/tile/Brightborderandbottomleftcorner.svg
+++ b/src/asset/tile/Brightborderandbottomleftcorner.svg
@@ -544,4 +544,8 @@
mask="none" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Brightborderandleftcorners.svg b/src/asset/tile/Brightborderandleftcorners.svg
index 37f248b..5288cab 100644
--- a/src/asset/tile/Brightborderandleftcorners.svg
+++ b/src/asset/tile/Brightborderandleftcorners.svg
@@ -656,4 +656,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Brightborderandtopleftcorner.svg b/src/asset/tile/Brightborderandtopleftcorner.svg
index 6db1661..5806b6b 100644
--- a/src/asset/tile/Brightborderandtopleftcorner.svg
+++ b/src/asset/tile/Brightborderandtopleftcorner.svg
@@ -544,4 +544,8 @@
id="frontier-3-6-7-1-6-9" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Brightcorners.svg b/src/asset/tile/Brightcorners.svg
index 259d724..7167267 100644
--- a/src/asset/tile/Brightcorners.svg
+++ b/src/asset/tile/Brightcorners.svg
@@ -444,4 +444,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopandbottomborders.svg b/src/asset/tile/Btopandbottomborders.svg
index 192e055..4fd46c4 100644
--- a/src/asset/tile/Btopandbottomborders.svg
+++ b/src/asset/tile/Btopandbottomborders.svg
@@ -451,4 +451,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopandleftborders.svg b/src/asset/tile/Btopandleftborders.svg
index 723ac00..f13db46 100644
--- a/src/asset/tile/Btopandleftborders.svg
+++ b/src/asset/tile/Btopandleftborders.svg
@@ -340,4 +340,8 @@
style="color:#000000;fill:#000000;stroke-width:0.5" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopandleftbordersandcorner.svg b/src/asset/tile/Btopandleftbordersandcorner.svg
index 6df9d66..a52eb1b 100644
--- a/src/asset/tile/Btopandleftbordersandcorner.svg
+++ b/src/asset/tile/Btopandleftbordersandcorner.svg
@@ -545,4 +545,8 @@
</g>
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopandrightborders.svg b/src/asset/tile/Btopandrightborders.svg
index 995f434..a05b6ce 100644
--- a/src/asset/tile/Btopandrightborders.svg
+++ b/src/asset/tile/Btopandrightborders.svg
@@ -340,4 +340,8 @@
style="color:#000000;fill:#000000;stroke-width:0.5" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopandrightbordersandcorner.svg b/src/asset/tile/Btopandrightbordersandcorner.svg
index 4ca219b..7689c7f 100644
--- a/src/asset/tile/Btopandrightbordersandcorner.svg
+++ b/src/asset/tile/Btopandrightbordersandcorner.svg
@@ -548,4 +548,8 @@
</g>
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopborder.svg b/src/asset/tile/Btopborder.svg
index f615376..90510d2 100644
--- a/src/asset/tile/Btopborder.svg
+++ b/src/asset/tile/Btopborder.svg
@@ -341,4 +341,8 @@
style="color:#000000;fill:#000000;stroke-width:0.5" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopborderandbottomcorners.svg b/src/asset/tile/Btopborderandbottomcorners.svg
index 5f0bf56..e76b282 100644
--- a/src/asset/tile/Btopborderandbottomcorners.svg
+++ b/src/asset/tile/Btopborderandbottomcorners.svg
@@ -655,4 +655,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopborderandbottomleftcorner.svg b/src/asset/tile/Btopborderandbottomleftcorner.svg
index 806528d..c1d6ad9 100644
--- a/src/asset/tile/Btopborderandbottomleftcorner.svg
+++ b/src/asset/tile/Btopborderandbottomleftcorner.svg
@@ -544,4 +544,8 @@
id="frontier-3-6-7-1-6-9" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopborderandbottomrightcorner.svg b/src/asset/tile/Btopborderandbottomrightcorner.svg
index ace04db..80000a9 100644
--- a/src/asset/tile/Btopborderandbottomrightcorner.svg
+++ b/src/asset/tile/Btopborderandbottomrightcorner.svg
@@ -544,4 +544,8 @@
mask="none" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopcorners.svg b/src/asset/tile/Btopcorners.svg
index a329979..3c57228 100644
--- a/src/asset/tile/Btopcorners.svg
+++ b/src/asset/tile/Btopcorners.svg
@@ -443,4 +443,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopleftbottomrightcorners.svg b/src/asset/tile/Btopleftbottomrightcorners.svg
index 4aec517..b35ca79 100644
--- a/src/asset/tile/Btopleftbottomrightcorners.svg
+++ b/src/asset/tile/Btopleftbottomrightcorners.svg
@@ -443,4 +443,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btopleftcorner.svg b/src/asset/tile/Btopleftcorner.svg
index 5130a47..56a0e1f 100644
--- a/src/asset/tile/Btopleftcorner.svg
+++ b/src/asset/tile/Btopleftcorner.svg
@@ -328,4 +328,8 @@
inkscape:connector-curvature="0"
mask="none" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btoprightbottomleftcorners.svg b/src/asset/tile/Btoprightbottomleftcorners.svg
index 74bf8eb..9cf0905 100644
--- a/src/asset/tile/Btoprightbottomleftcorners.svg
+++ b/src/asset/tile/Btoprightbottomleftcorners.svg
@@ -444,4 +444,8 @@
width="100%"
height="100%" />
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>
diff --git a/src/asset/tile/Btoprightcorner.svg b/src/asset/tile/Btoprightcorner.svg
index 2364511..d64f87c 100644
--- a/src/asset/tile/Btoprightcorner.svg
+++ b/src/asset/tile/Btoprightcorner.svg
@@ -332,4 +332,8 @@
id="frontier-3-6-7-1-6-9" />
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="details"
+ inkscape:label="details" />
</svg>