Add villain support

This commit is contained in:
Adam Goldsmith 2017-07-13 23:21:58 -04:00
parent 78ac4d1da3
commit a4c65413da
4 changed files with 2820 additions and 22 deletions

View File

@ -42,6 +42,10 @@ def makeSVG(base, properties):
if "hp" not in properties:
removeElement(tree, "hpMark")
# remove setup box if there is no setup
if "setup" not in properties:
removeElement(tree, "setupBox")
if "art" in properties:
art = tree.find('.//*[@id="art"]')
if art is not None:
@ -71,19 +75,41 @@ def makeFaces(deckJson, outfile):
cardType = deckJson["type"]
cardNum = 0
# Make a card for each character card
# Make a card for each hero character card
if cardType == "hero":
for card in deckJson['character']:
makeFace(baseImage, baseX, cardNum,
os.path.join("images", cardType, "charFront.svg"), card)
cardNum += 1
makeFace(baseImage, baseX, cardNum,
os.path.join("images", cardType, "charBack.svg"), card)
cardNum += 1
if cardType == "villain":
pass
# Make a character and instructions card for each villain card
elif cardType == "villain":
for card in deckJson['character']:
front = card["front"]
front["name"] = card["name"]
back = card["back"]
back["name"] = card["name"]
makeFace(baseImage, baseX, cardNum,
os.path.join("images", cardType, "character.svg"),
front)
cardNum += 1
makeFace(baseImage, baseX, cardNum,
os.path.join("images", cardType, "character.svg"),
back)
cardNum += 1
makeFace(baseImage, baseX, cardNum,
os.path.join("images", cardType, "instructions.svg"),
front)
cardNum += 1
makeFace(baseImage, baseX, cardNum,
os.path.join("images", cardType, "instructions.svg"),
back)
cardNum += 1
# Make a card for each card
for card in deckJson['deck']:
@ -94,6 +120,24 @@ def makeFaces(deckJson, outfile):
baseImage.save(outfile + ".png", "PNG")
return baseX
def makeCardJson(template, nickname, description, cardID):
card = template.copy()
card.update({"Nickname": nickname,
"Description": description,
"CardID": cardID})
return card
def makeDoubleSidedCardJson(template, nickname, descriptionFront,
descriptionBack, cardID):
cardBack = makeCardJson(template, nickname, descriptionBack, cardID + 1)
card = template.copy()
card.update({"Nickname": nickname,
"Description": descriptionFront,
"CardID": cardID,
"States": {"2": cardBack}})
return card
def makeJson(deckJson, imgWidth, outfile):
with open(bundle_dir + "/templates/deck.json") as f:
outJson = json.load(f)
@ -110,31 +154,35 @@ def makeJson(deckJson, imgWidth, outfile):
# decks start at (10 * deck id)
cardNum = 100
for card in deckJson['character']:
outJson['ObjectStates'][0]['DeckIDs'].append(cardNum)
# add front card with back as second state
cardOutBack = cardTemplate.copy()
cardOutBack.update({"Nickname": card['name'],
"Description": "Incapacitated",
"CardID": cardNum + 1})
cardOut = cardTemplate.copy()
cardOut.update({"Nickname": card['name'],
"Description": "Active",
"CardID": cardNum,
"States": {"2": cardOutBack}})
outJson['ObjectStates'][0]['ContainedObjects'].append(cardOut)
cardNum += 2
if deckJson["type"] == "hero":
for card in deckJson['character']:
outJson['ObjectStates'][0]['DeckIDs'].append(cardNum)
cardOut = makeDoubleSidedCardJson(
cardTemplate, card['name'], "Active", "Incapacitated", cardNum)
outJson['ObjectStates'][0]['ContainedObjects'].append(cardOut)
cardNum += 2
elif deckJson["type"] == "villain":
for card in deckJson['character']:
outJson['ObjectStates'][0]['DeckIDs'].append(cardNum)
cardOut = makeDoubleSidedCardJson(
cardTemplate, card['name'], "Front", "Back", cardNum)
outJson['ObjectStates'][0]['ContainedObjects'].append(cardOut)
cardNum += 2
outJson['ObjectStates'][0]['DeckIDs'].append(cardNum)
cardOut = makeDoubleSidedCardJson(
cardTemplate, card['name'] + " instructions", "Front", "Back", cardNum)
outJson['ObjectStates'][0]['ContainedObjects'].append(cardOut)
cardNum += 2
for card in deckJson['deck']:
for i in range(0, card['count']):
outJson['ObjectStates'][0]['DeckIDs'].append(cardNum)
# add a card object thing for each card, and give it a name
cardOut = cardTemplate.copy()
cardOut.update({"Nickname": card['name'],
"Description": card.get('type', ""),
"CardID": cardNum})
cardOut = makeCardJson(cardTemplate, card['name'], card.get('keywords', ""), cardNum)
outJson['ObjectStates'][0]['ContainedObjects'].append(cardOut)
cardNum += 1

1626
images/villain/card.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 360 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 80 KiB

View File

@ -0,0 +1,916 @@
<?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="181pt"
height="253pt"
viewBox="0 0 181 253"
version="1.2"
id="svg904"
sodipodi:docname="instructions.svg"
inkscape:version="0.92.1 r">
<metadata
id="metadata908">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1676"
inkscape:window-height="491"
id="namedview906"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="112.12019"
inkscape:cy="157.91761"
inkscape:window-x="0"
inkscape:window-y="22"
inkscape:window-maximized="0"
inkscape:current-layer="surface401" />
<defs
id="defs185">
<g
id="g161">
<symbol
overflow="visible"
id="glyph0-0"
style="overflow:visible">
<path
style="stroke:none"
d="M 1.546875,-5.5 H 4.90625 L 3.734375,0.015625 H 0.390625 Z M 1.46875,-0.421875 H 2.875 l 1,-4.6875 H 2.46875 Z m 0,0"
id="path2"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-1"
style="overflow:visible">
<path
style="stroke:none"
d="m 5.328125,-5.359375 c 0,0.09375 -0.027344,0.183594 -0.078125,0.265625 -0.042969,0.085938 -0.085938,0.167969 -0.125,0.25 C 5.070312,-4.75 5.003906,-4.632812 4.921875,-4.5 4.835938,-4.375 4.75,-4.242188 4.65625,-4.109375 4.5625,-3.972656 4.46875,-3.835938 4.375,-3.703125 4.289062,-3.578125 4.226562,-3.46875 4.1875,-3.375 4.0625,-3.113281 3.941406,-2.859375 3.828125,-2.609375 3.722656,-2.359375 3.601562,-2.101562 3.46875,-1.84375 3.351562,-1.613281 3.234375,-1.378906 3.109375,-1.140625 2.992188,-0.910156 2.878906,-0.675781 2.765625,-0.4375 2.742188,-0.382812 2.707031,-0.300781 2.65625,-0.1875 2.601562,-0.0703125 2.539062,0.0390625 2.46875,0.15625 2.394531,0.28125 2.320312,0.382812 2.25,0.46875 2.175781,0.5625 2.109375,0.609375 2.046875,0.609375 1.960938,0.554688 1.910156,0.457031 1.890625,0.3125 1.878906,0.175781 1.859375,0.0625 1.828125,-0.03125 1.765625,-0.257812 1.707031,-0.488281 1.65625,-0.71875 1.601562,-0.945312 1.550781,-1.175781 1.5,-1.40625 1.425781,-1.832031 1.332031,-2.265625 1.21875,-2.703125 c -0.117188,-0.4375 -0.183594,-0.875 -0.203125,-1.3125 L 1,-4.109375 c -0.011719,-0.125 -0.03125,-0.242187 -0.0625,-0.359375 -0.023438,-0.125 -0.042969,-0.25 -0.0625,-0.375 0.050781,0 0.113281,0 0.1875,0 0.070312,-0.00781 0.140625,-0.019531 0.203125,-0.03125 0.082031,-0.00781 0.195313,-0.023438 0.34375,-0.046875 0.144531,-0.019531 0.257813,-0.035156 0.34375,-0.046875 0.125,-0.00781 0.203125,-0.00781 0.234375,0 0.03125,0 0.0625,0.054688 0.09375,0.15625 0.039062,0.15625 0.0625,0.320312 0.0625,0.484375 0.00781,0.15625 0.019531,0.320313 0.03125,0.484375 0.00781,0.167969 0.023438,0.328125 0.046875,0.484375 0.03125,0.15625 0.066406,0.320313 0.109375,0.484375 0.00781,0.0625 0.019531,0.140625 0.03125,0.234375 0.00781,0.085937 0.019531,0.179687 0.03125,0.28125 0.019531,0.09375 0.039062,0.183594 0.0625,0.265625 0.03125,0.074219 0.066406,0.132812 0.109375,0.171875 0.082031,-0.09375 0.148437,-0.207031 0.203125,-0.34375 0.0625,-0.132813 0.117188,-0.257813 0.171875,-0.375 0.0625,-0.132813 0.125,-0.265625 0.1875,-0.390625 0.070313,-0.132812 0.132813,-0.265625 0.1875,-0.390625 0.0625,-0.132813 0.132813,-0.28125 0.21875,-0.4375 0.09375,-0.164063 0.1875,-0.335937 0.28125,-0.515625 0.09375,-0.175781 0.1875,-0.347656 0.28125,-0.515625 0.09375,-0.164063 0.171875,-0.316406 0.234375,-0.453125 0.082031,0.011719 0.160156,0.011719 0.234375,0 0.082031,-0.019531 0.164063,-0.03125 0.25,-0.03125 0.050781,0 0.101563,0 0.15625,0 0.050781,0 0.101563,0.00781 0.15625,0.015625 z m 0,0"
id="path5"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-2"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.65625,-3.171875 c -0.0625,0.25 -0.121094,0.5 -0.171875,0.75 -0.054687,0.242187 -0.109375,0.492187 -0.171875,0.75 -0.054688,0.261719 -0.105469,0.515625 -0.15625,0.765625 -0.042969,0.25 -0.074219,0.496094 -0.09375,0.734375 -0.136719,0.03125 -0.273438,0.039063 -0.40625,0.015625 -0.125,-0.03125 -0.257812,-0.054688 -0.390625,-0.078125 0,-0.070313 0.003906,-0.144531 0.015625,-0.21875 C 0.300781,-0.535156 0.316406,-0.613281 0.328125,-0.6875 0.367188,-0.90625 0.425781,-1.125 0.5,-1.34375 0.570312,-1.5625 0.632812,-1.765625 0.6875,-1.953125 0.738281,-2.128906 0.773438,-2.300781 0.796875,-2.46875 0.828125,-2.644531 0.851562,-2.820312 0.875,-3 0.894531,-3.175781 0.914062,-3.363281 0.9375,-3.5625 0.96875,-3.757812 1.015625,-3.972656 1.078125,-4.203125 L 1.125,-4.421875 C 1.164062,-4.628906 1.203125,-4.8125 1.234375,-4.96875 c 0.039063,-0.164062 0.082031,-0.320312 0.125,-0.46875 0.019531,-0.050781 0.03125,-0.09375 0.03125,-0.125 0,-0.039062 0.00391,-0.078125 0.015625,-0.109375 C 1.425781,-5.703125 1.445312,-5.726562 1.46875,-5.75 1.5,-5.769531 1.546875,-5.789062 1.609375,-5.8125 1.660156,-5.820312 1.75,-5.816406 1.875,-5.796875 2,-5.785156 2.085938,-5.769531 2.140625,-5.75 c -0.105469,0.4375 -0.1875,0.871094 -0.25,1.296875 -0.0625,0.417969 -0.140625,0.84375 -0.234375,1.28125 z m 0,0"
id="path8"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-3"
style="overflow:visible">
<path
style="stroke:none"
d="M 3.984375,-1.65625 C 3.941406,-1.488281 3.90625,-1.3125 3.875,-1.125 3.851562,-0.9375 3.832031,-0.769531 3.8125,-0.625 3.664062,-0.59375 3.515625,-0.566406 3.359375,-0.546875 3.203125,-0.523438 3.039062,-0.507812 2.875,-0.5 c -0.167969,0.011719 -0.328125,0.015625 -0.484375,0.015625 -0.15625,0 -0.304687,0.007813 -0.4375,0.015625 -0.125,0 -0.277344,0.007812 -0.453125,0.015625 -0.167969,0.011719 -0.34375,0.023437 -0.53125,0.03125 -0.179688,0 -0.355469,0.007813 -0.53125,0.015625 -0.167969,0.011719 -0.308594,0.015625 -0.421875,0.015625 0.1875,-0.363281 0.347656,-0.757813 0.484375,-1.1875 0.144531,-0.425781 0.269531,-0.820313 0.375,-1.1875 0.132812,-0.476563 0.269531,-0.953125 0.40625,-1.421875 0.144531,-0.46875 0.304688,-0.960938 0.484375,-1.484375 0.019531,-0.019531 0.054687,-0.03125 0.109375,-0.03125 0.050781,-0.00781 0.109375,-0.00781 0.171875,0 0.0625,0 0.125,0.00781 0.1875,0.015625 0.0625,0.011719 0.109375,0.027344 0.140625,0.046875 -0.03125,0.085937 -0.0625,0.167969 -0.09375,0.25 -0.023438,0.074219 -0.046875,0.15625 -0.078125,0.25 -0.042969,0.125 -0.078125,0.25 -0.109375,0.375 C 2.0625,-4.648438 2.03125,-4.53125 2,-4.40625 c -0.03125,0.125 -0.058594,0.25 -0.078125,0.375 -0.023437,0.125 -0.046875,0.25 -0.078125,0.375 -0.085938,0.25 -0.164062,0.511719 -0.234375,0.78125 -0.0625,0.273438 -0.132813,0.542969 -0.203125,0.8125 -0.03125,0.117188 -0.0625,0.210938 -0.09375,0.28125 -0.023438,0.0625 -0.039062,0.121094 -0.046875,0.171875 0,0.042969 0.00781,0.074219 0.03125,0.09375 C 1.328125,-1.503906 1.378906,-1.5 1.453125,-1.5 c 0.113281,0.011719 0.253906,0.011719 0.421875,0 0.175781,-0.019531 0.316406,-0.035156 0.421875,-0.046875 0.289063,-0.039063 0.570313,-0.070313 0.84375,-0.09375 0.28125,-0.019531 0.5625,-0.023437 0.84375,-0.015625 z m 0,0"
id="path11"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-4"
style="overflow:visible">
<path
style="stroke:none"
d="M 4.046875,-0.03125 C 4.003906,-0.195312 3.957031,-0.359375 3.90625,-0.515625 3.863281,-0.679688 3.816406,-0.847656 3.765625,-1.015625 3.523438,-0.992188 3.28125,-0.976562 3.03125,-0.96875 c -0.25,0.011719 -0.507812,0.023438 -0.765625,0.03125 -0.25,0.011719 -0.5,0.027344 -0.75,0.046875 -0.25,0.011719 -0.492187,0.03125 -0.71875,0.0625 -0.179687,0.28125 -0.3125,0.546875 -0.40625,0.796875 -0.148437,0.0117188 -0.265625,0.0117188 -0.359375,0 -0.09375,-0.0078125 -0.222656,-0.0234375 -0.390625,-0.046875 0.054687,-0.082031 0.117187,-0.171875 0.1875,-0.265625 0.0742188,-0.101562 0.1523438,-0.210938 0.234375,-0.328125 0.144531,-0.226563 0.296875,-0.472656 0.453125,-0.734375 0.15625,-0.257812 0.300781,-0.492188 0.4375,-0.703125 0.164063,-0.269531 0.34375,-0.53125 0.53125,-0.78125 0.1875,-0.257813 0.367187,-0.519531 0.546875,-0.78125 0.226562,-0.375 0.460938,-0.765625 0.703125,-1.171875 0.25,-0.40625 0.519531,-0.769531 0.8125,-1.09375 0.070313,0.054688 0.125,0.148438 0.15625,0.28125 0.039063,0.125 0.070313,0.265625 0.09375,0.421875 0.03125,0.148437 0.054687,0.292969 0.078125,0.4375 0.019531,0.148437 0.046875,0.265625 0.078125,0.359375 0.101563,0.25 0.195313,0.507812 0.28125,0.765625 0.082031,0.261719 0.164063,0.515625 0.25,0.765625 0.132813,0.460938 0.257813,0.914062 0.375,1.359375 0.125,0.4375 0.242187,0.875 0.359375,1.3125 -0.21875,0.011719 -0.421875,0.03125 -0.609375,0.0625 -0.179687,0.03125 -0.367187,0.078125 -0.5625,0.140625 z m -1.15625,-3.671875 c -0.167969,0.125 -0.3125,0.273437 -0.4375,0.4375 -0.125,0.15625 -0.246094,0.324219 -0.359375,0.5 C 1.988281,-2.597656 1.878906,-2.425781 1.765625,-2.25 1.660156,-2.082031 1.535156,-1.921875 1.390625,-1.765625 1.535156,-1.804688 1.695312,-1.835938 1.875,-1.859375 2.050781,-1.890625 2.226562,-1.914062 2.40625,-1.9375 2.59375,-1.96875 2.78125,-1.988281 2.96875,-2 3.15625,-2.019531 3.328125,-2.035156 3.484375,-2.046875 3.429688,-2.304688 3.347656,-2.59375 3.234375,-2.90625 3.128906,-3.21875 3.015625,-3.484375 2.890625,-3.703125 Z m 0,0"
id="path14"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-5"
style="overflow:visible">
<path
style="stroke:none"
d="m 5.625,-2.875 c -0.0625,0.355469 -0.148438,0.726562 -0.25,1.109375 -0.105469,0.375 -0.195312,0.742187 -0.265625,1.09375 C 5.085938,-0.535156 5.0625,-0.40625 5.03125,-0.28125 5.007812,-0.164062 4.992188,-0.046875 4.984375,0.078125 4.890625,0.109375 4.804688,0.09375 4.734375,0.03125 4.660156,-0.0195312 4.59375,-0.0859375 4.53125,-0.171875 4.46875,-0.265625 4.410156,-0.359375 4.359375,-0.453125 4.316406,-0.554688 4.28125,-0.632812 4.25,-0.6875 4.125,-0.863281 3.984375,-1.023438 3.828125,-1.171875 c -0.15625,-0.144531 -0.3125,-0.289063 -0.46875,-0.4375 -0.292969,-0.257813 -0.585937,-0.550781 -0.875,-0.875 -0.28125,-0.320313 -0.542969,-0.613281 -0.78125,-0.875 -0.117187,0.125 -0.195313,0.3125 -0.234375,0.5625 C 1.414062,-2.585938 1.378906,-2.375 1.359375,-2.15625 1.347656,-1.9375 1.320312,-1.765625 1.28125,-1.640625 c -0.054688,0.25 -0.109375,0.5 -0.171875,0.75 -0.054687,0.25 -0.105469,0.507813 -0.15625,0.765625 -0.15625,0.03125 -0.292969,0.0546875 -0.40625,0.0625 -0.105469,0 -0.230469,0.015625 -0.375,0.046875 0.070313,-0.144531 0.128906,-0.332031 0.171875,-0.5625 C 0.375,-0.710938 0.398438,-0.84375 0.421875,-0.96875 0.441406,-1.101562 0.46875,-1.234375 0.5,-1.359375 c 0.007812,-0.070313 0.019531,-0.144531 0.03125,-0.21875 0.019531,-0.082031 0.046875,-0.21875 0.078125,-0.40625 0.03125,-0.195313 0.0625,-0.394531 0.09375,-0.59375 0.03125,-0.195313 0.066406,-0.394531 0.109375,-0.59375 0.0625,-0.320313 0.132812,-0.644531 0.21875,-0.96875 0.082031,-0.320313 0.15625,-0.644531 0.21875,-0.96875 0.019531,-0.070313 0.035156,-0.148437 0.046875,-0.234375 0.019531,-0.09375 0.039063,-0.175781 0.0625,-0.25 0.164063,0.074219 0.304687,0.1875 0.421875,0.34375 0.125,0.15625 0.242188,0.304688 0.359375,0.4375 0.144531,0.167969 0.296875,0.328125 0.453125,0.484375 0.164062,0.15625 0.332031,0.3125 0.5,0.46875 C 3.394531,-3.597656 3.664062,-3.3125 3.90625,-3 c 0.238281,0.3125 0.488281,0.601562 0.75,0.859375 0.070312,-0.101563 0.128906,-0.21875 0.171875,-0.34375 0.039063,-0.125 0.082031,-0.257813 0.125,-0.40625 0.03125,-0.195313 0.054687,-0.390625 0.078125,-0.578125 0.03125,-0.195312 0.054688,-0.359375 0.078125,-0.484375 0.050781,-0.320313 0.113281,-0.660156 0.1875,-1.015625 0.070313,-0.363281 0.128906,-0.695312 0.171875,-1 0.132812,0.011719 0.265625,0 0.390625,-0.03125 0.132813,-0.03125 0.269531,-0.050781 0.40625,-0.0625 -0.023437,0.167969 -0.046875,0.339844 -0.078125,0.515625 -0.03125,0.167969 -0.070312,0.34375 -0.109375,0.53125 -0.054687,0.261719 -0.109375,0.523437 -0.171875,0.78125 -0.054688,0.25 -0.109375,0.5 -0.171875,0.75 -0.023437,0.105469 -0.042969,0.210937 -0.0625,0.3125 C 5.648438,-3.078125 5.632812,-2.976562 5.625,-2.875 Z m 0,0"
id="path17"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-6"
style="overflow:visible">
<path
style="stroke:none"
d=""
id="path20"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-7"
style="overflow:visible">
<path
style="stroke:none"
d="M 4.96875,-6.015625 C 4.9375,-5.847656 4.890625,-5.675781 4.828125,-5.5 c -0.0625,0.179688 -0.105469,0.359375 -0.125,0.546875 C 4.648438,-4.960938 4.59375,-4.972656 4.53125,-4.984375 4.46875,-4.992188 4.40625,-5 4.34375,-5 4.238281,-5 4.132812,-4.992188 4.03125,-4.984375 3.9375,-4.972656 3.84375,-4.960938 3.75,-4.953125 3.601562,-4.929688 3.457031,-4.914062 3.3125,-4.90625 c -0.148438,0 -0.292969,0.023438 -0.4375,0.0625 -0.105469,0.367188 -0.203125,0.730469 -0.296875,1.09375 -0.085937,0.367188 -0.167969,0.734375 -0.25,1.109375 -0.074219,0.40625 -0.148437,0.8125 -0.21875,1.21875 C 2.035156,-1.015625 1.976562,-0.613281 1.9375,-0.21875 1.832031,-0.25 1.710938,-0.253906 1.578125,-0.234375 c -0.125,0.023437 -0.242187,0.027344 -0.34375,0.015625 0.00781,-0.082031 0.019531,-0.160156 0.03125,-0.234375 C 1.285156,-0.523438 1.300781,-0.601562 1.3125,-0.6875 1.375,-0.9375 1.4375,-1.195312 1.5,-1.46875 c 0.0625,-0.269531 0.117188,-0.519531 0.171875,-0.75 L 1.6875,-2.421875 c 0.0625,-0.25 0.109375,-0.492187 0.140625,-0.734375 0.039063,-0.25 0.09375,-0.5 0.15625,-0.75 0.00781,-0.082031 0.023437,-0.171875 0.046875,-0.265625 0.03125,-0.09375 0.050781,-0.1875 0.0625,-0.28125 C 2.113281,-4.566406 2.125,-4.65625 2.125,-4.71875 c 0.00781,-0.0625 -0.039062,-0.101562 -0.140625,-0.125 -0.105469,-0.00781 -0.210937,-0.00391 -0.3125,0.015625 -0.09375,0.011719 -0.1875,0.015625 -0.28125,0.015625 -0.023437,0 -0.0625,0 -0.125,0 -0.054687,0 -0.109375,0.00781 -0.171875,0.015625 -0.0625,0 -0.121094,0 -0.171875,0 -0.054687,0 -0.085937,-0.00391 -0.09375,-0.015625 -0.042969,-0.019531 -0.058594,-0.078125 -0.046875,-0.171875 0.007812,-0.101563 0.03125,-0.207031 0.0625,-0.3125 0.019531,-0.125 0.046875,-0.238281 0.078125,-0.34375 C 0.953125,-5.753906 0.976562,-5.84375 1,-5.90625 1.0625,-5.882812 1.132812,-5.875 1.21875,-5.875 c 0.09375,0 0.179688,0 0.265625,0 C 1.578125,-5.882812 1.664062,-5.894531 1.75,-5.90625 1.84375,-5.925781 1.925781,-5.941406 2,-5.953125 c 0.238281,-0.019531 0.46875,-0.03125 0.6875,-0.03125 0.09375,0 0.1875,0.00781 0.28125,0.015625 0.09375,0 0.179688,0 0.265625,0 0.144531,0 0.296875,0 0.453125,0 C 3.84375,-5.976562 3.992188,-5.988281 4.140625,-6 c 0.070313,0 0.144531,0 0.21875,0 0.082031,0 0.164063,0 0.25,0 0.0625,0 0.117187,0 0.171875,0 0.0625,0 0.125,-0.00391 0.1875,-0.015625 z m 0,0"
id="path23"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-8"
style="overflow:visible">
<path
style="stroke:none"
d="m 4.953125,-5.8125 c -0.023437,0.167969 -0.0625,0.339844 -0.125,0.515625 -0.0625,0.179687 -0.105469,0.367187 -0.125,0.5625 C 4.648438,-4.753906 4.59375,-4.765625 4.53125,-4.765625 4.46875,-4.773438 4.398438,-4.78125 4.328125,-4.78125 c -0.09375,0 -0.195313,0.00781 -0.296875,0.015625 -0.105469,0 -0.203125,0.011719 -0.296875,0.03125 -0.148437,0.011719 -0.292969,0.023437 -0.4375,0.03125 -0.148437,0 -0.292969,0.023437 -0.4375,0.0625 C 2.753906,-4.273438 2.65625,-3.90625 2.5625,-3.53125 2.476562,-3.164062 2.398438,-2.800781 2.328125,-2.4375 2.242188,-2.019531 2.164062,-1.609375 2.09375,-1.203125 c -0.074219,0.398437 -0.132812,0.792969 -0.171875,1.1875 -0.105469,-0.03125 -0.21875,-0.03125 -0.34375,0 -0.125,0.01953125 -0.246094,0.01953125 -0.359375,0 0.019531,-0.0703125 0.035156,-0.144531 0.046875,-0.21875 C 1.273438,-0.316406 1.289062,-0.394531 1.3125,-0.46875 1.363281,-0.726562 1.421875,-0.988281 1.484375,-1.25 1.546875,-1.519531 1.601562,-1.773438 1.65625,-2.015625 L 1.6875,-2.21875 c 0.050781,-0.238281 0.09375,-0.484375 0.125,-0.734375 0.039062,-0.25 0.09375,-0.5 0.15625,-0.75 C 1.976562,-3.785156 1.992188,-3.875 2.015625,-3.96875 2.046875,-4.0625 2.066406,-4.15625 2.078125,-4.25 2.097656,-4.351562 2.113281,-4.4375 2.125,-4.5 2.132812,-4.570312 2.082031,-4.613281 1.96875,-4.625 c -0.105469,-0.019531 -0.210938,-0.019531 -0.3125,0 -0.09375,0.023438 -0.1875,0.027344 -0.28125,0.015625 -0.023438,0 -0.0625,0.00781 -0.125,0.015625 -0.054688,0 -0.109375,0 -0.171875,0 -0.0625,0 -0.121094,0 -0.171875,0 -0.054688,0 -0.085938,0 -0.09375,0 C 0.78125,-4.625 0.769531,-4.6875 0.78125,-4.78125 0.789062,-4.875 0.804688,-4.976562 0.828125,-5.09375 c 0.03125,-0.125 0.054687,-0.238281 0.078125,-0.34375 0.03125,-0.113281 0.054688,-0.203125 0.078125,-0.265625 0.070313,0.023437 0.148437,0.03125 0.234375,0.03125 0.082031,0 0.164062,0 0.25,0 0.09375,-0.00781 0.179688,-0.019531 0.265625,-0.03125 0.09375,-0.019531 0.175781,-0.03125 0.25,-0.03125 0.25,-0.03125 0.484375,-0.046875 0.703125,-0.046875 0.082031,0 0.171875,0.00781 0.265625,0.015625 0.09375,0 0.179687,0 0.265625,0 0.144531,0.011719 0.296875,0.011719 0.453125,0 0.15625,-0.00781 0.304687,-0.015625 0.453125,-0.015625 0.082031,-0.00781 0.160156,-0.00781 0.234375,0 0.082031,0 0.160156,0 0.234375,0 0.0625,0 0.117188,0 0.171875,0 0.0625,0 0.125,-0.00781 0.1875,-0.03125 z m 0,0"
id="path26"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-9"
style="overflow:visible">
<path
style="stroke:none"
d="m 4.59375,-1.296875 c -0.023438,0.0625 -0.039062,0.125 -0.046875,0.1875 -0.011719,0.0625 -0.023437,0.132813 -0.03125,0.203125 -0.023437,0.074219 -0.03125,0.125 -0.03125,0.15625 0,0.023438 -0.054687,0.042969 -0.15625,0.0625 -0.117187,0.023438 -0.230469,0.039062 -0.34375,0.046875 -0.117187,0 -0.230469,0 -0.34375,0 -0.117187,0 -0.230469,0 -0.34375,0 C 3.179688,-0.648438 3.070312,-0.65625 2.96875,-0.65625 c -0.292969,0 -0.578125,0.007812 -0.859375,0.015625 -0.28125,0.011719 -0.574219,0.03125 -0.875,0.0625 -0.40625,0.0625 -0.78125,0.085937 -1.125,0.0625 -0.0117188,-0.050781 -0.0117188,-0.117187 0,-0.203125 0.019531,-0.082031 0.046875,-0.164062 0.078125,-0.25 0.03125,-0.082031 0.054688,-0.160156 0.078125,-0.234375 0.03125,-0.082031 0.0625,-0.15625 0.09375,-0.21875 C 0.429688,-1.648438 0.5,-1.878906 0.5625,-2.109375 0.625,-2.347656 0.6875,-2.582031 0.75,-2.8125 0.789062,-2.945312 0.835938,-3.097656 0.890625,-3.265625 0.953125,-3.429688 1.007812,-3.601562 1.0625,-3.78125 1.125,-3.957031 1.1875,-4.128906 1.25,-4.296875 c 0.0625,-0.175781 0.125,-0.332031 0.1875,-0.46875 0.039062,-0.125 0.085938,-0.25 0.140625,-0.375 0.050781,-0.125 0.097656,-0.25 0.140625,-0.375 C 1.75,-5.578125 1.773438,-5.644531 1.796875,-5.71875 1.816406,-5.800781 1.84375,-5.867188 1.875,-5.921875 1.945312,-5.941406 2.015625,-5.945312 2.078125,-5.9375 c 0.070313,0.011719 0.140625,0.015625 0.203125,0.015625 0.15625,-0.019531 0.300781,-0.03125 0.4375,-0.03125 0.144531,-0.00781 0.285156,-0.019531 0.421875,-0.03125 C 3.316406,-5.992188 3.484375,-6 3.640625,-6 c 0.164063,0 0.332031,-0.00781 0.5,-0.03125 0.101563,-0.00781 0.175781,-0.019531 0.21875,-0.03125 0.050781,-0.00781 0.128906,-0.00781 0.234375,0 l 0.234375,-0.015625 c 0.039063,-0.019531 0.078125,-0.03125 0.109375,-0.03125 0.039062,0 0.082031,0 0.125,0 0.050781,0 0.113281,0 0.1875,0 0.082031,-0.00781 0.128906,0 0.140625,0.03125 0.03125,0.03125 0.035156,0.09375 0.015625,0.1875 -0.023438,0.09375 -0.042969,0.167969 -0.0625,0.21875 -0.011719,0.074219 -0.042969,0.179687 -0.09375,0.3125 -0.042969,0.136719 -0.085938,0.246094 -0.125,0.328125 -0.023438,0.042969 -0.03125,0.070312 -0.03125,0.078125 0.00781,0 -0.011719,0.011719 -0.0625,0.03125 C 5,-4.921875 4.96875,-4.925781 4.9375,-4.9375 4.914062,-4.945312 4.890625,-4.953125 4.859375,-4.953125 H 4.40625 c -0.125,0 -0.246094,0 -0.359375,0 -0.105469,0 -0.21875,0.011719 -0.34375,0.03125 -0.15625,0 -0.320313,0 -0.484375,0 -0.15625,0 -0.320312,0.011719 -0.484375,0.03125 -0.042969,0 -0.09375,0.011719 -0.15625,0.03125 -0.0625,0.011719 -0.125,0.023437 -0.1875,0.03125 C 2.335938,-4.816406 2.28125,-4.8125 2.21875,-4.8125 c -0.054688,0 -0.09375,-0.00781 -0.125,-0.03125 -0.0625,0.042969 -0.105469,0.117188 -0.125,0.21875 -0.023438,0.09375 -0.042969,0.183594 -0.0625,0.265625 -0.023438,0.054687 -0.046875,0.117187 -0.078125,0.1875 -0.023437,0.074219 -0.042969,0.152344 -0.0625,0.234375 -0.023437,0.085938 -0.042969,0.164062 -0.0625,0.234375 -0.011719,0.074219 -0.015625,0.136719 -0.015625,0.1875 0.101562,0.042969 0.226562,0.054687 0.375,0.03125 0.144531,-0.019531 0.28125,-0.03125 0.40625,-0.03125 0.1875,-0.00781 0.375,-0.00781 0.5625,0 0.195312,0 0.390625,-0.00781 0.578125,-0.03125 0.082031,0 0.171875,-0.00391 0.265625,-0.015625 0.09375,-0.019531 0.179688,-0.03125 0.265625,-0.03125 0.050781,0.023438 0.082031,0.042969 0.09375,0.0625 C 4.242188,-3.519531 4.25,-3.488281 4.25,-3.4375 c 0,0.042969 -0.00781,0.089844 -0.015625,0.140625 -0.011719,0.054687 -0.023437,0.117187 -0.03125,0.1875 -0.023437,0.105469 -0.046875,0.210937 -0.078125,0.3125 -0.03125,0.09375 -0.058594,0.167969 -0.078125,0.21875 -0.09375,0 -0.183594,0 -0.265625,0 -0.085938,0 -0.171875,0 -0.265625,0 h -0.53125 c -0.167969,0 -0.335937,0.00781 -0.5,0.015625 -0.15625,0 -0.324219,0.00781 -0.5,0.015625 -0.09375,0 -0.199219,0.015625 -0.3125,0.046875 -0.117187,0.023438 -0.214844,0.027344 -0.296875,0.015625 -0.054688,0.0625 -0.089844,0.125 -0.109375,0.1875 -0.011719,0.054687 -0.027344,0.105469 -0.046875,0.15625 -0.011719,0.085937 -0.027344,0.164063 -0.046875,0.234375 -0.011719,0.074219 -0.039063,0.152344 -0.078125,0.234375 0.101562,0.011719 0.210938,0.011719 0.328125,0 0.113281,-0.019531 0.222656,-0.03125 0.328125,-0.03125 0.164062,0 0.332031,0 0.5,0 0.164062,0 0.332031,0.00781 0.5,0.015625 0.082031,0 0.160156,0.00781 0.234375,0.015625 0.082031,0 0.164063,0 0.25,0 0.195313,0 0.398437,-0.00781 0.609375,-0.03125 0.144531,-0.019531 0.296875,-0.039063 0.453125,-0.0625 0.15625,-0.019531 0.300781,-0.03125 0.4375,-0.03125 -0.011719,0.0625 -0.039063,0.148437 -0.078125,0.25 -0.03125,0.105469 -0.054688,0.1875 -0.0625,0.25 z m 0,0"
id="path29"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-0"
style="overflow:visible">
<path
style="stroke:none"
d="M 1.40625,-5 H 4.453125 L 3.40625,0.015625 h -3.0625 z m -0.078125,4.609375 h 1.28125 l 0.90625,-4.25 h -1.28125 z m 0,0"
id="path32"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-1"
style="overflow:visible">
<path
style="stroke:none"
d="M 3.6875,-0.03125 C 3.644531,-0.175781 3.597656,-0.320312 3.546875,-0.46875 3.503906,-0.613281 3.460938,-0.765625 3.421875,-0.921875 3.203125,-0.898438 2.976562,-0.882812 2.75,-0.875 2.519531,-0.875 2.289062,-0.867188 2.0625,-0.859375 1.832031,-0.847656 1.601562,-0.832031 1.375,-0.8125 1.144531,-0.800781 0.925781,-0.78125 0.71875,-0.75 0.5625,-0.5 0.441406,-0.257812 0.359375,-0.03125 c -0.136719,0.0117188 -0.246094,0.0117188 -0.328125,0 -0.0820312,-0.0078125 -0.195312,-0.0195312 -0.34375,-0.03125 0.042969,-0.082031 0.09375,-0.164062 0.15625,-0.25 0.0625,-0.09375 0.1328125,-0.191406 0.203125,-0.296875 C 0.179688,-0.828125 0.320312,-1.050781 0.46875,-1.28125 0.613281,-1.507812 0.75,-1.722656 0.875,-1.921875 c 0.144531,-0.25 0.300781,-0.488281 0.46875,-0.71875 0.164062,-0.226563 0.332031,-0.460937 0.5,-0.703125 0.207031,-0.332031 0.421875,-0.679688 0.640625,-1.046875 0.21875,-0.375 0.460937,-0.710937 0.734375,-1.015625 0.0625,0.0625 0.109375,0.152344 0.140625,0.265625 0.039063,0.117187 0.070313,0.242187 0.09375,0.375 0.019531,0.136719 0.039063,0.273437 0.0625,0.40625 0.019531,0.136719 0.046875,0.242187 0.078125,0.3125 0.09375,0.230469 0.175781,0.464844 0.25,0.703125 0.070312,0.242188 0.144531,0.476562 0.21875,0.703125 C 4.195312,-2.222656 4.316406,-1.8125 4.421875,-1.40625 4.535156,-1.007812 4.644531,-0.613281 4.75,-0.21875 4.550781,-0.207031 4.367188,-0.1875 4.203125,-0.15625 4.035156,-0.125 3.863281,-0.0820312 3.6875,-0.03125 Z M 2.625,-3.375 c -0.148438,0.125 -0.277344,0.261719 -0.390625,0.40625 -0.117187,0.148438 -0.226563,0.296875 -0.328125,0.453125 -0.09375,0.148437 -0.195312,0.304687 -0.296875,0.46875 -0.105469,0.15625 -0.21875,0.304687 -0.34375,0.4375 0.125,-0.03125 0.265625,-0.054687 0.421875,-0.078125 0.164062,-0.03125 0.332031,-0.054688 0.5,-0.078125 C 2.363281,-1.785156 2.535156,-1.800781 2.703125,-1.8125 2.867188,-1.832031 3.023438,-1.847656 3.171875,-1.859375 3.117188,-2.097656 3.039062,-2.359375 2.9375,-2.640625 2.84375,-2.921875 2.738281,-3.164062 2.625,-3.375 Z m 0,0"
id="path35"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-2"
style="overflow:visible">
<path
style="stroke:none"
d="m 5.765625,-4.15625 c 0.050781,0.1875 0.070313,0.375 0.0625,0.5625 0,0.1875 -0.015625,0.371094 -0.046875,0.546875 -0.054688,0.230469 -0.132812,0.460937 -0.234375,0.6875 -0.09375,0.230469 -0.210937,0.464844 -0.34375,0.703125 -0.09375,0.179688 -0.214844,0.335938 -0.359375,0.46875 -0.148438,0.136719 -0.308594,0.25 -0.484375,0.34375 C 4.191406,-0.75 4.007812,-0.671875 3.8125,-0.609375 3.625,-0.546875 3.4375,-0.5 3.25,-0.46875 c -0.230469,0.042969 -0.464844,0.101562 -0.703125,0.171875 -0.230469,0.074219 -0.460937,0.136719 -0.6875,0.1875 -0.117187,0.03125 -0.226563,0.046875 -0.328125,0.046875 -0.09375,0 -0.199219,0 -0.3125,0 C 1.144531,-0.0703125 1.050781,-0.078125 0.9375,-0.078125 0.820312,-0.0859375 0.734375,-0.109375 0.671875,-0.140625 0.722656,-0.273438 0.75,-0.429688 0.75,-0.609375 0.757812,-0.785156 0.773438,-0.957031 0.796875,-1.125 V -1.265625 C 0.816406,-1.453125 0.832031,-1.632812 0.84375,-1.8125 0.851562,-2 0.867188,-2.1875 0.890625,-2.375 0.910156,-2.582031 0.941406,-2.785156 0.984375,-2.984375 1.023438,-3.179688 1.0625,-3.382812 1.09375,-3.59375 1.101562,-3.695312 1.125,-3.804688 1.15625,-3.921875 1.1875,-4.035156 1.210938,-4.15625 1.234375,-4.28125 c -0.09375,-0.00781 -0.1875,-0.015625 -0.28125,-0.015625 -0.085937,-0.00781 -0.171875,0 -0.265625,0.03125 C 0.71875,-4.359375 0.738281,-4.457031 0.75,-4.5625 0.769531,-4.664062 0.789062,-4.769531 0.8125,-4.875 0.851562,-5.019531 0.894531,-5.160156 0.9375,-5.296875 1.03125,-5.328125 1.148438,-5.34375 1.296875,-5.34375 H 1.59375 c 0.039062,0 0.085938,0 0.140625,0 0.050781,0 0.101563,0 0.15625,0 0.050781,0 0.101563,0 0.15625,0 0.050781,0 0.097656,0.00781 0.140625,0.015625 0.195312,-0.019531 0.40625,-0.03125 0.625,-0.03125 0.457031,0 0.882812,0.054687 1.28125,0.15625 0.164062,0.03125 0.335938,0.074219 0.515625,0.125 0.175781,0.042969 0.34375,0.101563 0.5,0.171875 0.15625,0.074219 0.289063,0.171875 0.40625,0.296875 0.113281,0.117187 0.195313,0.265625 0.25,0.453125 z M 2.21875,-1.203125 c 0.269531,-0.019531 0.554688,-0.0625 0.859375,-0.125 C 3.378906,-1.398438 3.664062,-1.5 3.9375,-1.625 4.207031,-1.75 4.441406,-1.910156 4.640625,-2.109375 4.847656,-2.304688 4.984375,-2.550781 5.046875,-2.84375 5.054688,-2.894531 5.0625,-2.945312 5.0625,-3 c 0.00781,-0.0625 0.00781,-0.125 0,-0.1875 0,-0.164062 -0.03125,-0.304688 -0.09375,-0.421875 -0.0625,-0.125 -0.148438,-0.226563 -0.25,-0.3125 -0.105469,-0.082031 -0.226562,-0.144531 -0.359375,-0.1875 -0.136719,-0.050781 -0.28125,-0.09375 -0.4375,-0.125 C 3.765625,-4.273438 3.601562,-4.300781 3.4375,-4.3125 c -0.167969,-0.00781 -0.328125,-0.00781 -0.484375,0 -0.1875,0.011719 -0.375,0.039062 -0.5625,0.078125 -0.1875,0.03125 -0.371094,0.054687 -0.546875,0.0625 -0.074219,0.324219 -0.136719,0.648437 -0.1875,0.96875 -0.054688,0.3125 -0.085938,0.625 -0.09375,0.9375 l -0.015625,0.1875 C 1.535156,-2.035156 1.519531,-1.96875 1.5,-1.875 1.488281,-1.78125 1.472656,-1.679688 1.453125,-1.578125 1.441406,-1.484375 1.4375,-1.394531 1.4375,-1.3125 c 0,0.085938 0.00781,0.136719 0.03125,0.15625 0.101562,-0.00781 0.226562,-0.019531 0.375,-0.03125 C 2,-1.195312 2.125,-1.203125 2.21875,-1.203125 Z m 0,0"
id="path38"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-3"
style="overflow:visible">
<path
style="stroke:none"
d="m 4.875,-5.34375 c 0,0.085938 -0.023438,0.164062 -0.0625,0.234375 C 4.769531,-5.035156 4.726562,-4.957031 4.6875,-4.875 4.632812,-4.789062 4.566406,-4.691406 4.484375,-4.578125 4.410156,-4.460938 4.332031,-4.34375 4.25,-4.21875 4.164062,-4.09375 4.082031,-3.972656 4,-3.859375 3.925781,-3.742188 3.867188,-3.640625 3.828125,-3.546875 3.710938,-3.316406 3.601562,-3.085938 3.5,-2.859375 3.40625,-2.628906 3.300781,-2.394531 3.1875,-2.15625 3.070312,-1.945312 2.957031,-1.734375 2.84375,-1.515625 2.738281,-1.304688 2.640625,-1.09375 2.546875,-0.875 2.523438,-0.832031 2.488281,-0.753906 2.4375,-0.640625 2.382812,-0.535156 2.328125,-0.429688 2.265625,-0.328125 2.203125,-0.222656 2.132812,-0.128906 2.0625,-0.046875 2,0.0351562 1.9375,0.078125 1.875,0.078125 1.800781,0.0351562 1.753906,-0.046875 1.734375,-0.171875 1.722656,-0.304688 1.707031,-0.421875 1.6875,-0.515625 1.625,-0.710938 1.566406,-0.914062 1.515625,-1.125 1.472656,-1.332031 1.429688,-1.546875 1.390625,-1.765625 1.316406,-2.148438 1.226562,-2.539062 1.125,-2.9375 1.019531,-3.332031 0.960938,-3.726562 0.953125,-4.125 L 0.9375,-4.203125 C 0.914062,-4.316406 0.894531,-4.425781 0.875,-4.53125 0.851562,-4.644531 0.832031,-4.757812 0.8125,-4.875 c 0.050781,-0.00781 0.109375,-0.015625 0.171875,-0.015625 0.070313,-0.00781 0.132813,-0.015625 0.1875,-0.015625 0.082031,-0.00781 0.1875,-0.023438 0.3125,-0.046875 0.132813,-0.019531 0.242187,-0.03125 0.328125,-0.03125 0.09375,-0.00781 0.15625,-0.00781 0.1875,0 0.03125,0 0.0625,0.046875 0.09375,0.140625 0.039062,0.136719 0.0625,0.277344 0.0625,0.421875 0.00781,0.148437 0.019531,0.296875 0.03125,0.453125 0,0.15625 0.00781,0.308594 0.03125,0.453125 0.03125,0.136719 0.0625,0.277344 0.09375,0.421875 0.00781,0.054688 0.019531,0.121094 0.03125,0.203125 0.019531,0.085937 0.035156,0.171875 0.046875,0.265625 0.00781,0.085938 0.023437,0.164062 0.046875,0.234375 0.03125,0.074219 0.066406,0.125 0.109375,0.15625 0.070313,-0.082031 0.128906,-0.1875 0.171875,-0.3125 C 2.769531,-2.671875 2.820312,-2.78125 2.875,-2.875 2.925781,-3 2.984375,-3.117188 3.046875,-3.234375 3.109375,-3.359375 3.164062,-3.476562 3.21875,-3.59375 3.269531,-3.707031 3.332031,-3.84375 3.40625,-4 3.476562,-4.15625 3.554688,-4.316406 3.640625,-4.484375 3.722656,-4.648438 3.800781,-4.804688 3.875,-4.953125 3.957031,-5.109375 4.03125,-5.25 4.09375,-5.375 c 0.070312,0.011719 0.148438,0.015625 0.234375,0.015625 0.082031,0 0.164063,0 0.25,0 0.050781,0 0.097656,0 0.140625,0 0.050781,0 0.101562,0.00781 0.15625,0.015625 z m 0,0"
id="path41"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-4"
style="overflow:visible">
<path
style="stroke:none"
d="m 5.109375,-2.609375 c -0.054687,0.324219 -0.125,0.65625 -0.21875,1 -0.09375,0.34375 -0.171875,0.679687 -0.234375,1 C 4.625,-0.492188 4.597656,-0.378906 4.578125,-0.265625 4.554688,-0.148438 4.539062,-0.0390625 4.53125,0.0625 4.445312,0.101562 4.367188,0.09375 4.296875,0.03125 4.234375,-0.0195312 4.171875,-0.0859375 4.109375,-0.171875 4.054688,-0.253906 4.007812,-0.335938 3.96875,-0.421875 3.925781,-0.503906 3.890625,-0.570312 3.859375,-0.625 3.742188,-0.78125 3.613281,-0.925781 3.46875,-1.0625 3.332031,-1.195312 3.191406,-1.332031 3.046875,-1.46875 2.785156,-1.695312 2.523438,-1.957031 2.265625,-2.25 c -0.261719,-0.300781 -0.5,-0.566406 -0.71875,-0.796875 -0.105469,0.105469 -0.179687,0.273437 -0.21875,0.5 -0.042969,0.1875 -0.074219,0.386719 -0.09375,0.59375 -0.011719,0.199219 -0.03125,0.355469 -0.0625,0.46875 C 1.117188,-1.265625 1.066406,-1.039062 1.015625,-0.8125 0.960938,-0.582031 0.910156,-0.351562 0.859375,-0.125 0.722656,-0.0820312 0.601562,-0.0625 0.5,-0.0625 c -0.09375,0 -0.210938,0.015625 -0.34375,0.046875 C 0.21875,-0.148438 0.269531,-0.320312 0.3125,-0.53125 0.332031,-0.644531 0.351562,-0.757812 0.375,-0.875 0.394531,-1 0.421875,-1.117188 0.453125,-1.234375 c 0.007813,-0.0625 0.019531,-0.128906 0.03125,-0.203125 0.019531,-0.070312 0.039063,-0.195312 0.0625,-0.375 0.03125,-0.164062 0.0625,-0.335938 0.09375,-0.515625 0.03125,-0.1875 0.0625,-0.367187 0.09375,-0.546875 0.0625,-0.300781 0.128906,-0.597656 0.203125,-0.890625 0.070312,-0.289063 0.140625,-0.582031 0.203125,-0.875 C 1.160156,-4.710938 1.175781,-4.785156 1.1875,-4.859375 1.195312,-4.941406 1.210938,-5.019531 1.234375,-5.09375 1.378906,-5.019531 1.507812,-4.910156 1.625,-4.765625 1.738281,-4.628906 1.847656,-4.5 1.953125,-4.375 c 0.132813,0.148438 0.269531,0.292969 0.40625,0.4375 0.144531,0.148438 0.296875,0.289062 0.453125,0.421875 0.269531,0.242187 0.515625,0.507813 0.734375,0.796875 0.21875,0.28125 0.445313,0.539062 0.6875,0.765625 0.0625,-0.09375 0.113281,-0.195313 0.15625,-0.3125 C 4.429688,-2.378906 4.46875,-2.5 4.5,-2.625 4.53125,-2.8125 4.554688,-2.992188 4.578125,-3.171875 4.597656,-3.347656 4.617188,-3.488281 4.640625,-3.59375 4.691406,-3.882812 4.75,-4.191406 4.8125,-4.515625 4.882812,-4.847656 4.9375,-5.15625 4.96875,-5.4375 c 0.125,0.023438 0.242188,0.015625 0.359375,-0.015625 0.125,-0.03125 0.25,-0.050781 0.375,-0.0625 -0.023437,0.15625 -0.046875,0.3125 -0.078125,0.46875 -0.03125,0.15625 -0.0625,0.320313 -0.09375,0.484375 -0.054688,0.242188 -0.105469,0.476562 -0.15625,0.703125 -0.054688,0.230469 -0.105469,0.460937 -0.15625,0.6875 -0.023438,0.09375 -0.042969,0.1875 -0.0625,0.28125 -0.023438,0.09375 -0.039062,0.1875 -0.046875,0.28125 z m 0,0"
id="path44"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-5"
style="overflow:visible">
<path
style="stroke:none"
d="m 4.625,-1.53125 c 0.019531,0.136719 0.035156,0.261719 0.046875,0.375 0.019531,0.105469 0.019531,0.203125 0,0.296875 -0.03125,0.125 -0.09375,0.242187 -0.1875,0.34375 -0.09375,0.09375 -0.242187,0.1875 -0.4375,0.28125 -0.210937,0.09375 -0.4375,0.1796875 -0.6875,0.25 C 3.117188,0.0859375 2.894531,0.144531 2.6875,0.1875 2.425781,0.21875 2.1875,0.203125 1.96875,0.140625 1.75,0.078125 1.523438,0.0234375 1.296875,-0.015625 1.054688,-0.0664062 0.875,-0.195312 0.75,-0.40625 0.625,-0.613281 0.535156,-0.851562 0.484375,-1.125 0.441406,-1.40625 0.429688,-1.691406 0.453125,-1.984375 0.472656,-2.285156 0.507812,-2.550781 0.5625,-2.78125 0.625,-3.039062 0.71875,-3.285156 0.84375,-3.515625 c 0.125,-0.226563 0.273438,-0.4375 0.453125,-0.625 0.1875,-0.1875 0.394531,-0.347656 0.625,-0.484375 0.226563,-0.144531 0.476563,-0.265625 0.75,-0.359375 0.144531,-0.050781 0.316406,-0.085937 0.515625,-0.109375 0.195312,-0.03125 0.40625,-0.046875 0.625,-0.046875 0.15625,0 0.3125,0.011719 0.46875,0.03125 0.164062,0.023437 0.316406,0.054687 0.453125,0.09375 0.132813,0.042969 0.25,0.101563 0.34375,0.171875 0.101563,0.074219 0.179687,0.164062 0.234375,0.265625 L 5.171875,-4.34375 C 5.097656,-4.25 5.019531,-4.15625 4.9375,-4.0625 4.863281,-3.976562 4.800781,-3.890625 4.75,-3.796875 4.550781,-3.867188 4.363281,-3.925781 4.1875,-3.96875 c -0.179688,-0.039062 -0.375,-0.0625 -0.59375,-0.0625 -0.125,0 -0.273438,0.011719 -0.4375,0.03125 -0.3125,0.042969 -0.621094,0.148438 -0.921875,0.3125 -0.292969,0.15625 -0.546875,0.375 -0.765625,0.65625 -0.179688,0.242188 -0.292969,0.484375 -0.34375,0.734375 -0.023438,0.105469 -0.039062,0.210937 -0.046875,0.3125 0,0.09375 0.00781,0.195313 0.03125,0.296875 0.019531,0.09375 0.050781,0.195312 0.09375,0.296875 0.039063,0.09375 0.09375,0.1875 0.15625,0.28125 0.0625,0.085937 0.132813,0.15625 0.21875,0.21875 0.082031,0.0625 0.175781,0.101563 0.28125,0.109375 0.101563,0.023438 0.226563,0.03125 0.375,0.03125 0.164063,0 0.34375,-0.007812 0.53125,-0.03125 0.1875,-0.03125 0.363281,-0.0625 0.53125,-0.09375 0.125,-0.03125 0.238281,-0.066406 0.34375,-0.109375 0.113281,-0.050781 0.222656,-0.109375 0.328125,-0.171875 0.101562,-0.0625 0.207031,-0.125 0.3125,-0.1875 0.101562,-0.0625 0.21875,-0.125 0.34375,-0.1875 z m 0,0"
id="path47"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-6"
style="overflow:visible">
<path
style="stroke:none"
d="M 4.171875,-1.1875 C 4.160156,-1.125 4.148438,-1.0625 4.140625,-1 4.128906,-0.945312 4.113281,-0.890625 4.09375,-0.828125 4.082031,-0.753906 4.070312,-0.707031 4.0625,-0.6875 c 0,0.023438 -0.042969,0.042969 -0.125,0.0625 -0.105469,0.023438 -0.210938,0.039062 -0.3125,0.046875 -0.105469,0 -0.210938,0 -0.3125,0 -0.105469,0 -0.210938,0 -0.3125,0 C 2.894531,-0.585938 2.796875,-0.59375 2.703125,-0.59375 c -0.273437,0 -0.539063,0.007812 -0.796875,0.015625 -0.25,0.011719 -0.511719,0.03125 -0.78125,0.0625 -0.375,0.054687 -0.71875,0.070313 -1.03125,0.046875 -0.0117188,-0.050781 -0.0117188,-0.113281 0,-0.1875 C 0.113281,-0.726562 0.132812,-0.800781 0.15625,-0.875 0.1875,-0.945312 0.21875,-1.019531 0.25,-1.09375 0.28125,-1.164062 0.300781,-1.234375 0.3125,-1.296875 0.382812,-1.503906 0.445312,-1.710938 0.5,-1.921875 0.5625,-2.128906 0.625,-2.34375 0.6875,-2.5625 0.71875,-2.675781 0.757812,-2.8125 0.8125,-2.96875 0.863281,-3.125 0.914062,-3.28125 0.96875,-3.4375 1.019531,-3.601562 1.070312,-3.765625 1.125,-3.921875 c 0.0625,-0.15625 0.117188,-0.289063 0.171875,-0.40625 0.050781,-0.113281 0.097656,-0.226563 0.140625,-0.34375 0.050781,-0.113281 0.09375,-0.226563 0.125,-0.34375 0.019531,-0.050781 0.039062,-0.113281 0.0625,-0.1875 0.019531,-0.070313 0.046875,-0.132813 0.078125,-0.1875 0.070313,-0.00781 0.132813,-0.00781 0.1875,0 0.0625,0.011719 0.125,0.011719 0.1875,0 0.132813,-0.00781 0.265625,-0.019531 0.390625,-0.03125 0.132812,-0.00781 0.265625,-0.015625 0.390625,-0.015625 0.15625,-0.00781 0.304687,-0.015625 0.453125,-0.015625 0.15625,0 0.304688,-0.00781 0.453125,-0.03125 C 3.859375,-5.492188 3.925781,-5.5 3.96875,-5.5 4.019531,-5.507812 4.085938,-5.515625 4.171875,-5.515625 l 0.21875,-0.015625 c 0.03125,-0.00781 0.0625,-0.015625 0.09375,-0.015625 0.039063,0 0.078125,0 0.109375,0 0.0625,-0.00781 0.125,-0.015625 0.1875,-0.015625 0.0625,0 0.101562,0.011719 0.125,0.03125 0.019531,0.03125 0.019531,0.089844 0,0.171875 C 4.882812,-5.273438 4.867188,-5.207031 4.859375,-5.15625 4.847656,-5.082031 4.816406,-4.984375 4.765625,-4.859375 4.722656,-4.742188 4.6875,-4.648438 4.65625,-4.578125 4.632812,-4.535156 4.628906,-4.507812 4.640625,-4.5 c 0.00781,0 -0.015625,0.00781 -0.078125,0.015625 -0.023438,0.011719 -0.046875,0.011719 -0.078125,0 C 4.460938,-4.492188 4.441406,-4.5 4.421875,-4.5 H 4 c -0.105469,0 -0.210938,0 -0.3125,0 -0.105469,0 -0.210938,0.00781 -0.3125,0.015625 -0.148438,0.011719 -0.292969,0.015625 -0.4375,0.015625 -0.148438,0 -0.296875,0.00781 -0.453125,0.015625 -0.03125,0 -0.078125,0.011719 -0.140625,0.03125 -0.054688,0.011719 -0.109375,0.023437 -0.171875,0.03125 C 2.117188,-4.378906 2.066406,-4.375 2.015625,-4.375 c -0.054687,0 -0.089844,-0.00781 -0.109375,-0.03125 -0.0625,0.042969 -0.105469,0.109375 -0.125,0.203125 -0.011719,0.09375 -0.027344,0.171875 -0.046875,0.234375 -0.023437,0.054688 -0.042969,0.117188 -0.0625,0.1875 -0.023437,0.0625 -0.042969,0.132812 -0.0625,0.203125 -0.023437,0.074219 -0.042969,0.148437 -0.0625,0.21875 C 1.535156,-3.296875 1.53125,-3.238281 1.53125,-3.1875 1.632812,-3.15625 1.75,-3.148438 1.875,-3.171875 2,-3.191406 2.117188,-3.203125 2.234375,-3.203125 c 0.175781,0 0.347656,0 0.515625,0 0.175781,0 0.351562,-0.00391 0.53125,-0.015625 0.070312,-0.00781 0.148438,-0.019531 0.234375,-0.03125 0.09375,-0.00781 0.175781,-0.015625 0.25,-0.015625 0.050781,0.023437 0.078125,0.039063 0.078125,0.046875 0.00781,0.011719 0.015625,0.042969 0.015625,0.09375 0.00781,0.042969 0.00781,0.089844 0,0.140625 -0.011719,0.042969 -0.027344,0.09375 -0.046875,0.15625 -0.011719,0.09375 -0.03125,0.1875 -0.0625,0.28125 -0.03125,0.085937 -0.054688,0.152344 -0.0625,0.203125 -0.09375,0 -0.183594,0 -0.265625,0 -0.074219,0 -0.148437,0 -0.21875,0 H 2.71875 c -0.15625,0 -0.308594,0.00781 -0.453125,0.015625 -0.148437,0 -0.296875,0.00781 -0.453125,0.015625 -0.09375,0 -0.195312,0.011719 -0.296875,0.03125 C 1.421875,-2.257812 1.332031,-2.253906 1.25,-2.265625 1.207031,-2.203125 1.175781,-2.144531 1.15625,-2.09375 1.132812,-2.039062 1.117188,-1.988281 1.109375,-1.9375 1.097656,-1.863281 1.082031,-1.789062 1.0625,-1.71875 1.050781,-1.65625 1.03125,-1.585938 1,-1.515625 c 0.082031,0.011719 0.175781,0.011719 0.28125,0 0.113281,-0.019531 0.21875,-0.03125 0.3125,-0.03125 0.144531,0 0.289062,0 0.4375,0 0.15625,0 0.3125,0.00781 0.46875,0.015625 0.070312,0 0.144531,0.00781 0.21875,0.015625 0.070312,0 0.144531,0 0.21875,0 0.175781,0 0.363281,-0.00781 0.5625,-0.03125 C 3.632812,-1.554688 3.769531,-1.570312 3.90625,-1.59375 4.050781,-1.613281 4.1875,-1.628906 4.3125,-1.640625 4.300781,-1.578125 4.273438,-1.5 4.234375,-1.40625 4.203125,-1.3125 4.179688,-1.238281 4.171875,-1.1875 Z m 0,0"
id="path50"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-7"
style="overflow:visible">
<path
style="stroke:none"
d="M 5.703125,-1.109375 C 5.671875,-0.816406 5.644531,-0.53125 5.625,-0.25 5.613281,0.0195312 5.59375,0.300781 5.5625,0.59375 5.445312,0.601562 5.34375,0.597656 5.25,0.578125 5.164062,0.554688 5.066406,0.550781 4.953125,0.5625 c 0.03125,-0.117188 0.039063,-0.25 0.03125,-0.40625 0,-0.1484375 -0.00781,-0.273438 -0.015625,-0.390625 -0.03125,0.023437 -0.078125,0.042969 -0.140625,0.0625 C 4.765625,-0.160156 4.695312,-0.144531 4.625,-0.125 4.5625,-0.101562 4.5,-0.0820312 4.4375,-0.0625 4.375,-0.0390625 4.320312,-0.0234375 4.28125,-0.015625 4.1875,0.0234375 4.082031,0.0664062 3.96875,0.109375 3.851562,0.148438 3.726562,0.1875 3.59375,0.21875 3.46875,0.257812 3.34375,0.289062 3.21875,0.3125 3.101562,0.34375 3,0.363281 2.90625,0.375 2.8125,0.394531 2.675781,0.394531 2.5,0.375 2.332031,0.363281 2.15625,0.34375 1.96875,0.3125 1.78125,0.289062 1.601562,0.257812 1.4375,0.21875 1.28125,0.1875 1.160156,0.15625 1.078125,0.125 0.847656,0.03125 0.675781,-0.0976562 0.5625,-0.265625 0.457031,-0.429688 0.382812,-0.625 0.34375,-0.84375 0.3125,-1.0625 0.3125,-1.289062 0.34375,-1.53125 0.375,-1.78125 0.414062,-2.019531 0.46875,-2.25 0.519531,-2.5 0.597656,-2.75 0.703125,-3 c 0.101563,-0.25 0.226563,-0.484375 0.375,-0.703125 0.15625,-0.226563 0.332031,-0.4375 0.53125,-0.625 0.195313,-0.195313 0.414063,-0.359375 0.65625,-0.484375 0.21875,-0.113281 0.457031,-0.21875 0.71875,-0.3125 0.269531,-0.09375 0.519531,-0.148438 0.75,-0.171875 0.09375,0 0.195313,0.00781 0.3125,0.015625 0.125,0 0.238281,0.015625 0.34375,0.046875 0.113281,0.023437 0.222656,0.054687 0.328125,0.09375 0.101562,0.042969 0.1875,0.09375 0.25,0.15625 l 0.109375,0.078125 c 0.00781,0 0.035156,0.023438 0.078125,0.0625 0.050781,0.042969 0.101562,0.089844 0.15625,0.140625 0.0625,0.054687 0.113281,0.109375 0.15625,0.171875 0.039062,0.054688 0.054688,0.101562 0.046875,0.140625 -0.011719,0.042969 -0.054687,0.09375 -0.125,0.15625 -0.0625,0.054687 -0.136719,0.117187 -0.21875,0.1875 -0.085937,0.0625 -0.167969,0.121094 -0.25,0.171875 C 4.835938,-3.820312 4.78125,-3.78125 4.75,-3.75 4.707031,-3.863281 4.644531,-3.9375 4.5625,-3.96875 4.476562,-4.007812 4.378906,-4.050781 4.265625,-4.09375 4.046875,-4.164062 3.832031,-4.203125 3.625,-4.203125 c -0.261719,0 -0.523438,0.054687 -0.78125,0.15625 -0.261719,0.09375 -0.539062,0.234375 -0.828125,0.421875 -0.28125,0.1875 -0.523437,0.429688 -0.71875,0.71875 -0.1875,0.292969 -0.3125,0.589844 -0.375,0.890625 C 0.878906,-1.847656 0.863281,-1.675781 0.875,-1.5 c 0.019531,0.15625 0.09375,0.304688 0.21875,0.4375 0.125,0.125 0.253906,0.21875 0.390625,0.28125 0.070313,0.03125 0.191406,0.058594 0.359375,0.078125 0.175781,0.011719 0.375,0.015625 0.59375,0.015625 0.238281,0 0.472656,-0.003906 0.703125,-0.015625 0.238281,-0.019531 0.410156,-0.039063 0.515625,-0.0625 0.195312,-0.03125 0.382812,-0.070313 0.5625,-0.125 0.175781,-0.0625 0.332031,-0.140625 0.46875,-0.234375 0.144531,-0.09375 0.265625,-0.210938 0.359375,-0.359375 0.09375,-0.15625 0.148437,-0.351563 0.171875,-0.59375 0,-0.00781 -0.00781,-0.015625 -0.015625,-0.015625 -0.1875,-0.00781 -0.417969,-0.00391 -0.6875,0.015625 C 4.253906,-2.054688 3.984375,-2.03125 3.703125,-2 3.421875,-1.976562 3.144531,-1.953125 2.875,-1.921875 2.601562,-1.898438 2.375,-1.882812 2.1875,-1.875 2.207031,-2 2.226562,-2.140625 2.25,-2.296875 2.269531,-2.453125 2.296875,-2.601562 2.328125,-2.75 c 0.125,0 0.28125,0 0.46875,0 0.1875,-0.00781 0.378906,-0.015625 0.578125,-0.015625 0.207031,0 0.40625,0 0.59375,0 0.195312,0 0.359375,0 0.484375,0 0.164063,-0.00781 0.34375,-0.019531 0.53125,-0.03125 0.1875,-0.00781 0.367187,-0.015625 0.546875,-0.015625 0.082031,0 0.164062,0 0.25,0 0.082031,0 0.160156,0.00781 0.234375,0.015625 -0.03125,0.074219 -0.0625,0.152344 -0.09375,0.234375 -0.023437,0.085938 -0.042969,0.171875 -0.0625,0.265625 -0.042969,0.199219 -0.074219,0.402344 -0.09375,0.609375 -0.011719,0.210938 -0.03125,0.402344 -0.0625,0.578125 z m 0,0"
id="path53"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-8"
style="overflow:visible">
<path
style="stroke:none"
d="M 5.984375,-4.3125 C 5.960938,-4.1875 5.929688,-4.046875 5.890625,-3.890625 5.847656,-3.734375 5.800781,-3.570312 5.75,-3.40625 5.707031,-3.25 5.664062,-3.09375 5.625,-2.9375 5.582031,-2.78125 5.546875,-2.640625 5.515625,-2.515625 5.484375,-2.296875 5.4375,-2.082031 5.375,-1.875 5.320312,-1.664062 5.273438,-1.457031 5.234375,-1.25 v 0.1875 c -0.011719,0 -0.027344,0.039062 -0.046875,0.109375 -0.011719,0.074219 -0.027344,0.15625 -0.046875,0.25 -0.023437,0.09375 -0.042969,0.183594 -0.0625,0.265625 -0.023437,0.085938 -0.03125,0.140625 -0.03125,0.171875 C 5.023438,-0.210938 5.007812,-0.175781 5,-0.15625 c -0.011719,0.023438 -0.027344,0.039062 -0.046875,0.046875 -0.011719,0 -0.03125,0 -0.0625,0 C 4.859375,-0.117188 4.816406,-0.125 4.765625,-0.125 c -0.074219,0 -0.148437,0.007812 -0.21875,0.015625 C 4.472656,-0.0976562 4.394531,-0.09375 4.3125,-0.09375 4.332031,-0.226562 4.359375,-0.351562 4.390625,-0.46875 4.429688,-0.582031 4.46875,-0.703125 4.5,-0.828125 4.53125,-0.960938 4.554688,-1.09375 4.578125,-1.21875 4.609375,-1.34375 4.632812,-1.472656 4.65625,-1.609375 4.675781,-1.742188 4.703125,-1.878906 4.734375,-2.015625 4.773438,-2.148438 4.8125,-2.285156 4.84375,-2.421875 4.851562,-2.460938 4.875,-2.550781 4.90625,-2.6875 c 0.039062,-0.144531 0.082031,-0.296875 0.125,-0.453125 0.039062,-0.15625 0.078125,-0.300781 0.109375,-0.4375 0.03125,-0.144531 0.050781,-0.238281 0.0625,-0.28125 C 5.222656,-3.921875 5.25,-4.007812 5.28125,-4.125 5.320312,-4.238281 5.351562,-4.320312 5.375,-4.375 5.15625,-4.207031 4.941406,-4.007812 4.734375,-3.78125 4.523438,-3.5625 4.300781,-3.335938 4.0625,-3.109375 3.976562,-3.023438 3.882812,-2.9375 3.78125,-2.84375 3.675781,-2.757812 3.550781,-2.632812 3.40625,-2.46875 3.375,-2.425781 3.332031,-2.367188 3.28125,-2.296875 3.226562,-2.234375 3.175781,-2.164062 3.125,-2.09375 3.070312,-2.019531 3.015625,-1.953125 2.953125,-1.890625 2.898438,-1.828125 2.851562,-1.78125 2.8125,-1.75 2.78125,-1.769531 2.734375,-1.800781 2.671875,-1.84375 2.617188,-1.882812 2.5625,-1.929688 2.5,-1.984375 2.445312,-2.035156 2.390625,-2.082031 2.328125,-2.125 2.273438,-2.175781 2.238281,-2.210938 2.21875,-2.234375 2.175781,-2.285156 2.128906,-2.34375 2.078125,-2.40625 2.035156,-2.46875 1.988281,-2.519531 1.9375,-2.5625 1.875,-2.613281 1.820312,-2.660156 1.78125,-2.703125 1.75,-2.753906 1.71875,-2.800781 1.6875,-2.84375 1.664062,-2.894531 1.640625,-2.941406 1.609375,-2.984375 1.578125,-3.023438 1.539062,-3.070312 1.5,-3.125 1.40625,-2.90625 1.328125,-2.675781 1.265625,-2.4375 1.210938,-2.207031 1.148438,-1.972656 1.078125,-1.734375 1.046875,-1.617188 1.007812,-1.5 0.96875,-1.375 0.925781,-1.25 0.890625,-1.125 0.859375,-1 0.847656,-0.945312 0.832031,-0.882812 0.8125,-0.8125 0.800781,-0.75 0.789062,-0.679688 0.78125,-0.609375 0.769531,-0.546875 0.753906,-0.488281 0.734375,-0.4375 0.710938,-0.382812 0.6875,-0.335938 0.65625,-0.296875 c -0.023438,0 -0.058594,0 -0.109375,0 -0.042969,0 -0.09375,0 -0.15625,0 -0.054687,0 -0.105469,0.007813 -0.15625,0.015625 -0.054687,0 -0.089844,0.007812 -0.109375,0.015625 C 0.175781,-0.472656 0.226562,-0.6875 0.28125,-0.90625 0.332031,-1.125 0.382812,-1.335938 0.4375,-1.546875 0.507812,-1.867188 0.582031,-2.1875 0.65625,-2.5 0.738281,-2.820312 0.832031,-3.140625 0.9375,-3.453125 1.050781,-3.785156 1.144531,-4.113281 1.21875,-4.4375 1.300781,-4.769531 1.390625,-5.109375 1.484375,-5.453125 1.523438,-5.472656 1.5625,-5.46875 1.59375,-5.4375 c 0.039062,0.023438 0.070312,0.058594 0.09375,0.109375 0.03125,0.054687 0.054688,0.109375 0.078125,0.171875 0.03125,0.054688 0.050781,0.089844 0.0625,0.109375 0.050781,0.09375 0.109375,0.1875 0.171875,0.28125 0.0625,0.09375 0.125,0.1875 0.1875,0.28125 0.0625,0.105469 0.125,0.203125 0.1875,0.296875 0.070312,0.09375 0.15625,0.183594 0.25,0.265625 0.03125,0.03125 0.070312,0.085937 0.125,0.15625 0.050781,0.0625 0.101562,0.132813 0.15625,0.203125 0.050781,0.074219 0.101562,0.140625 0.15625,0.203125 0.0625,0.0625 0.109375,0.105469 0.140625,0.125 0.039063,-0.019531 0.09375,-0.054687 0.15625,-0.109375 0.0625,-0.050781 0.125,-0.101562 0.1875,-0.15625 0.0625,-0.0625 0.117187,-0.117188 0.171875,-0.171875 0.0625,-0.050781 0.113281,-0.09375 0.15625,-0.125 C 3.957031,-3.847656 4.046875,-3.914062 4.140625,-4 4.234375,-4.09375 4.328125,-4.1875 4.421875,-4.28125 4.515625,-4.382812 4.601562,-4.484375 4.6875,-4.578125 4.78125,-4.671875 4.867188,-4.75 4.953125,-4.8125 5.085938,-4.9375 5.210938,-5.046875 5.328125,-5.140625 5.441406,-5.242188 5.550781,-5.335938 5.65625,-5.421875 5.757812,-5.515625 5.867188,-5.601562 5.984375,-5.6875 6.097656,-5.769531 6.226562,-5.851562 6.375,-5.9375 6.351562,-5.820312 6.320312,-5.691406 6.28125,-5.546875 6.25,-5.410156 6.210938,-5.269531 6.171875,-5.125 6.140625,-4.988281 6.101562,-4.847656 6.0625,-4.703125 6.03125,-4.566406 6.003906,-4.4375 5.984375,-4.3125 Z m 0,0"
id="path56"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-9"
style="overflow:visible">
<path
style="stroke:none"
d=""
id="path59"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-10"
style="overflow:visible">
<path
style="stroke:none"
d="m 5.359375,-4.9375 c 0.070313,0.117188 0.113281,0.246094 0.125,0.390625 0.019531,0.148437 0.00781,0.296875 -0.03125,0.453125 -0.03125,0.148438 -0.085937,0.292969 -0.15625,0.4375 -0.0625,0.148438 -0.140625,0.277344 -0.234375,0.390625 -0.230469,0.261719 -0.5,0.460937 -0.8125,0.59375 C 3.9375,-2.546875 3.625,-2.445312 3.3125,-2.375 3.03125,-2.300781 2.742188,-2.238281 2.453125,-2.1875 2.160156,-2.144531 1.875,-2.097656 1.59375,-2.046875 1.5625,-2.003906 1.535156,-1.945312 1.515625,-1.875 c -0.023437,0.074219 -0.042969,0.148438 -0.0625,0.21875 -0.03125,0.167969 -0.058594,0.339844 -0.078125,0.515625 -0.023438,0.179687 -0.03125,0.3125 -0.03125,0.40625 -0.011719,0.0625 -0.023438,0.125 -0.03125,0.1875 0,0.0625 0,0.132813 0,0.203125 H 0.65625 C 0.664062,-0.40625 0.671875,-0.457031 0.671875,-0.5 0.679688,-0.539062 0.6875,-0.582031 0.6875,-0.625 l 0.21875,-1.453125 c 0.039062,-0.238281 0.082031,-0.472656 0.125,-0.703125 0.039062,-0.226562 0.082031,-0.457031 0.125,-0.6875 0.019531,-0.15625 0.035156,-0.316406 0.046875,-0.484375 0.019531,-0.164063 0.039063,-0.335937 0.0625,-0.515625 -0.085937,0.011719 -0.167969,0.015625 -0.25,0.015625 -0.074219,0 -0.148437,0.00781 -0.21875,0.015625 0.007813,-0.15625 0.023437,-0.316406 0.046875,-0.484375 0.03125,-0.175781 0.0625,-0.34375 0.09375,-0.5 0.132812,0.011719 0.269531,0.011719 0.40625,0 0.144531,-0.00781 0.285156,-0.023437 0.421875,-0.046875 0.03125,-0.00781 0.0625,-0.015625 0.09375,-0.015625 0.03125,-0.00781 0.0625,-0.019531 0.09375,-0.03125 0.25,-0.019531 0.5,-0.03125 0.75,-0.03125 0.09375,0.011719 0.179687,0.015625 0.265625,0.015625 0.082031,0 0.164062,0 0.25,0 0.082031,0 0.164062,0 0.25,0 0.082031,0 0.164062,0.00781 0.25,0.015625 0.164062,0 0.328125,0.00781 0.484375,0.015625 0.15625,0.011719 0.300781,0.039062 0.4375,0.078125 0.144531,0.03125 0.273437,0.085937 0.390625,0.15625 0.125,0.074219 0.234375,0.183594 0.328125,0.328125 z M 4.21875,-3.515625 C 4.351562,-3.566406 4.457031,-3.632812 4.53125,-3.71875 4.613281,-3.800781 4.632812,-3.910156 4.59375,-4.046875 4.570312,-4.148438 4.519531,-4.226562 4.4375,-4.28125 4.351562,-4.332031 4.25,-4.375 4.125,-4.40625 3.957031,-4.445312 3.773438,-4.476562 3.578125,-4.5 3.378906,-4.53125 3.175781,-4.546875 2.96875,-4.546875 c -0.199219,0 -0.382812,0.011719 -0.546875,0.03125 -0.011719,0 -0.042969,0.00781 -0.09375,0.015625 -0.042969,0 -0.089844,0.00781 -0.140625,0.015625 -0.054688,0 -0.101562,0.00781 -0.140625,0.015625 -0.042969,0 -0.070313,0.00781 -0.078125,0.015625 -0.03125,0.023437 -0.054688,0.078125 -0.0625,0.171875 0,0.085938 -0.00781,0.148438 -0.015625,0.1875 -0.011719,0.105469 -0.03125,0.230469 -0.0625,0.375 -0.023437,0.148438 -0.042969,0.261719 -0.0625,0.34375 v 0.171875 c 0.050781,0.011719 0.113281,0.015625 0.1875,0.015625 0.082031,0 0.160156,0 0.234375,0 0.070312,0 0.144531,0 0.21875,0 0.070312,0 0.132812,-0.00391 0.1875,-0.015625 C 2.875,-3.210938 3.148438,-3.238281 3.421875,-3.28125 3.703125,-3.320312 3.96875,-3.398438 4.21875,-3.515625 Z m 0,0"
id="path62"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-11"
style="overflow:visible">
<path
style="stroke:none"
d="M 3.625,-1.5 C 3.582031,-1.351562 3.546875,-1.191406 3.515625,-1.015625 3.492188,-0.847656 3.476562,-0.695312 3.46875,-0.5625 c -0.136719,0.03125 -0.277344,0.058594 -0.421875,0.078125 -0.136719,0.011719 -0.28125,0.023437 -0.4375,0.03125 -0.148437,0.011719 -0.292969,0.015625 -0.4375,0.015625 -0.148437,0 -0.277344,0 -0.390625,0 -0.117188,0 -0.257812,0.007812 -0.421875,0.015625 C 1.203125,-0.410156 1.039062,-0.398438 0.875,-0.390625 0.71875,-0.378906 0.5625,-0.367188 0.40625,-0.359375 0.25,-0.347656 0.117188,-0.34375 0.015625,-0.34375 c 0.164063,-0.332031 0.3125,-0.691406 0.4375,-1.078125 0.132813,-0.394531 0.25,-0.757813 0.34375,-1.09375 0.125,-0.4375 0.25,-0.867187 0.375,-1.296875 0.132813,-0.425781 0.273437,-0.875 0.421875,-1.34375 0.019531,-0.019531 0.054688,-0.03125 0.109375,-0.03125 0.050781,-0.00781 0.101563,-0.00781 0.15625,0 0.0625,0 0.117187,0.00781 0.171875,0.015625 C 2.082031,-5.160156 2.125,-5.144531 2.15625,-5.125 2.132812,-5.050781 2.109375,-4.976562 2.078125,-4.90625 2.054688,-4.832031 2.03125,-4.753906 2,-4.671875 1.957031,-4.554688 1.921875,-4.441406 1.890625,-4.328125 1.867188,-4.222656 1.84375,-4.113281 1.8125,-4 1.789062,-3.882812 1.769531,-3.769531 1.75,-3.65625 c -0.023438,0.105469 -0.046875,0.214844 -0.078125,0.328125 -0.074219,0.230469 -0.140625,0.46875 -0.203125,0.71875 -0.0625,0.25 -0.125,0.496094 -0.1875,0.734375 -0.03125,0.105469 -0.0625,0.1875 -0.09375,0.25 -0.023438,0.0625 -0.03125,0.117188 -0.03125,0.15625 0,0.042969 0.00781,0.070312 0.03125,0.078125 0.019531,0.011719 0.0625,0.023437 0.125,0.03125 0.113281,0.011719 0.242188,0.011719 0.390625,0 C 1.859375,-1.378906 1.988281,-1.394531 2.09375,-1.40625 2.351562,-1.4375 2.609375,-1.460938 2.859375,-1.484375 3.109375,-1.503906 3.363281,-1.507812 3.625,-1.5 Z m 0,0"
id="path65"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-12"
style="overflow:visible">
<path
style="stroke:none"
d="m 4.484375,-4.921875 c 0.019531,-0.019531 0.0625,-0.023437 0.125,-0.015625 0.070313,0 0.148437,0 0.234375,0 0.09375,0 0.1875,0.00781 0.28125,0.015625 0.09375,0.011719 0.171875,0.00781 0.234375,-0.015625 -0.03125,0.085938 -0.074219,0.167969 -0.125,0.25 -0.054687,0.085938 -0.117187,0.164062 -0.1875,0.234375 -0.074219,0.074219 -0.148437,0.148437 -0.21875,0.21875 -0.074219,0.074219 -0.136719,0.136719 -0.1875,0.1875 -0.148437,0.15625 -0.28125,0.320313 -0.40625,0.484375 -0.117187,0.15625 -0.230469,0.3125 -0.34375,0.46875 -0.042969,0.054688 -0.085937,0.105469 -0.125,0.15625 -0.042969,0.042969 -0.085937,0.089844 -0.125,0.140625 -0.136719,0.1875 -0.28125,0.367187 -0.4375,0.53125 C 3.054688,-2.097656 2.910156,-1.925781 2.765625,-1.75 L 2.375,-1.21875 C 2.351562,-1.195312 2.332031,-1.175781 2.3125,-1.15625 2.300781,-1.144531 2.289062,-1.128906 2.28125,-1.109375 2.144531,-0.890625 2.007812,-0.664062 1.875,-0.4375 1.738281,-0.207031 1.613281,0.0234375 1.5,0.265625 1.363281,0.273438 1.21875,0.269531 1.0625,0.25 0.914062,0.226562 0.78125,0.238281 0.65625,0.28125 0.75,0.1875 0.828125,0.0820312 0.890625,-0.03125 c 0.0625,-0.125 0.128906,-0.238281 0.203125,-0.34375 0.070312,-0.113281 0.144531,-0.222656 0.21875,-0.328125 0.082031,-0.113281 0.164062,-0.222656 0.25,-0.328125 0.082031,-0.101562 0.175781,-0.226562 0.28125,-0.375 0.101562,-0.15625 0.191406,-0.289062 0.265625,-0.40625 -0.011719,-0.00781 -0.023437,-0.019531 -0.03125,-0.03125 0,-0.019531 -0.00781,-0.039062 -0.015625,-0.0625 C 2.007812,-2.0625 1.945312,-2.203125 1.875,-2.328125 1.800781,-2.453125 1.734375,-2.597656 1.671875,-2.765625 1.597656,-2.941406 1.519531,-3.113281 1.4375,-3.28125 1.351562,-3.457031 1.273438,-3.632812 1.203125,-3.8125 1.128906,-3.96875 1.035156,-4.128906 0.921875,-4.296875 0.804688,-4.472656 0.738281,-4.644531 0.71875,-4.8125 c 0.09375,0 0.179688,0.00781 0.265625,0.015625 0.082031,0.011719 0.171875,0.011719 0.265625,0 0.09375,0 0.1875,0 0.28125,0 0.101562,-0.00781 0.207031,-0.015625 0.3125,-0.015625 0.039062,0.199219 0.097656,0.386719 0.171875,0.5625 0.070313,0.179688 0.15625,0.351562 0.25,0.515625 0.09375,0.167969 0.1875,0.335937 0.28125,0.5 0.101563,0.167969 0.191406,0.335937 0.265625,0.5 C 2.976562,-3.003906 3.164062,-3.269531 3.375,-3.53125 3.59375,-3.789062 3.800781,-4.046875 4,-4.296875 c 0.082031,-0.09375 0.164062,-0.195313 0.25,-0.3125 0.09375,-0.125 0.171875,-0.226563 0.234375,-0.3125 z m 0,0"
id="path68"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-13"
style="overflow:visible">
<path
style="stroke:none"
d="m 3.8125,-3.359375 c 0.113281,0.03125 0.234375,0.070313 0.359375,0.109375 0.132813,0.03125 0.253906,0.074219 0.359375,0.125 0.113281,0.042969 0.207031,0.109375 0.28125,0.203125 0.082031,0.085937 0.117188,0.195313 0.109375,0.328125 0,0.1875 -0.023437,0.371094 -0.0625,0.546875 C 4.816406,-1.835938 4.75,-1.632812 4.65625,-1.4375 4.5625,-1.238281 4.441406,-1.050781 4.296875,-0.875 c -0.136719,0.148438 -0.3125,0.265625 -0.53125,0.359375 -0.210937,0.09375 -0.398437,0.179687 -0.5625,0.25 C 2.992188,-0.179688 2.789062,-0.125 2.59375,-0.09375 2.394531,-0.0625 2.195312,-0.0390625 2,-0.03125 1.269531,-0.0078125 0.671875,-0.226562 0.203125,-0.6875 0.148438,-0.738281 0.113281,-0.78125 0.09375,-0.8125 0.0703125,-0.84375 0.0820312,-0.890625 0.125,-0.953125 0.144531,-1.003906 0.171875,-1.050781 0.203125,-1.09375 c 0.03125,-0.039062 0.0625,-0.078125 0.09375,-0.109375 0.019531,-0.03125 0.050781,-0.078125 0.09375,-0.140625 0.039063,-0.070312 0.085937,-0.144531 0.140625,-0.21875 0.0625,-0.082031 0.117188,-0.148438 0.171875,-0.203125 0.050781,-0.0625 0.097656,-0.09375 0.140625,-0.09375 0.03125,-0.00781 0.0625,0.011719 0.09375,0.0625 0.039062,0.042969 0.078125,0.089844 0.109375,0.140625 C 1.085938,-1.601562 1.125,-1.550781 1.15625,-1.5 c 0.03125,0.054688 0.054688,0.089844 0.078125,0.109375 0.144531,0.125 0.289063,0.214844 0.4375,0.265625 0.15625,0.054688 0.332031,0.078125 0.53125,0.078125 0.144531,0 0.316406,-0.00391 0.515625,-0.015625 0.207031,-0.019531 0.410156,-0.050781 0.609375,-0.09375 0.195313,-0.050781 0.375,-0.128906 0.53125,-0.234375 0.15625,-0.101563 0.253906,-0.238281 0.296875,-0.40625 C 4.1875,-1.898438 4.160156,-1.988281 4.078125,-2.0625 3.992188,-2.132812 3.882812,-2.191406 3.75,-2.234375 3.613281,-2.285156 3.46875,-2.332031 3.3125,-2.375 3.164062,-2.414062 3.050781,-2.445312 2.96875,-2.46875 2.757812,-2.53125 2.550781,-2.5625 2.34375,-2.5625 2.144531,-2.5625 1.941406,-2.582031 1.734375,-2.625 1.617188,-2.644531 1.5,-2.671875 1.375,-2.703125 1.257812,-2.742188 1.144531,-2.804688 1.03125,-2.890625 0.925781,-2.953125 0.894531,-3.070312 0.9375,-3.25 0.957031,-3.382812 1.019531,-3.535156 1.125,-3.703125 c 0.101562,-0.175781 0.21875,-0.34375 0.34375,-0.5 C 1.601562,-4.367188 1.738281,-4.507812 1.875,-4.625 2.007812,-4.75 2.125,-4.84375 2.21875,-4.90625 2.375,-4.976562 2.550781,-5.046875 2.75,-5.109375 2.945312,-5.171875 3.144531,-5.21875 3.34375,-5.25 3.550781,-5.28125 3.75,-5.300781 3.9375,-5.3125 c 0.195312,-0.019531 0.378906,-0.019531 0.546875,0 0.132813,0.011719 0.242187,0.042969 0.328125,0.09375 0.09375,0.042969 0.175781,0.09375 0.25,0.15625 l 0.09375,0.109375 c 0,0 0.00781,0.015625 0.03125,0.046875 0.03125,0.03125 0.0625,0.070312 0.09375,0.109375 0.03125,0.03125 0.054688,0.0625 0.078125,0.09375 0.03125,0.03125 0.050781,0.046875 0.0625,0.046875 -0.011719,0.03125 -0.023437,0.058594 -0.03125,0.078125 -0.011719,0.011719 -0.027344,0.023437 -0.046875,0.03125 -0.054688,0.085937 -0.132812,0.1875 -0.234375,0.3125 -0.105469,0.125 -0.195313,0.230469 -0.265625,0.3125 -0.042969,0.0625 -0.078125,0.105469 -0.109375,0.125 -0.023437,0.023437 -0.042969,0.027344 -0.0625,0.015625 C 4.648438,-3.789062 4.625,-3.8125 4.59375,-3.84375 4.570312,-3.875 4.546875,-3.910156 4.515625,-3.953125 4.460938,-4.023438 4.414062,-4.09375 4.375,-4.15625 4.332031,-4.21875 4.28125,-4.269531 4.21875,-4.3125 4.164062,-4.351562 4.097656,-4.390625 4.015625,-4.421875 3.929688,-4.453125 3.820312,-4.476562 3.6875,-4.5 c -0.0625,-0.00781 -0.15625,-0.00781 -0.28125,0 -0.117188,0.011719 -0.242188,0.027344 -0.375,0.046875 -0.136719,0.011719 -0.265625,0.03125 -0.390625,0.0625 -0.117187,0.03125 -0.199219,0.0625 -0.25,0.09375 C 2.316406,-4.253906 2.257812,-4.195312 2.21875,-4.125 2.175781,-4.0625 2.144531,-3.992188 2.125,-3.921875 c -0.023438,0.125 0,0.21875 0.0625,0.28125 0.101562,0.074219 0.222656,0.125 0.359375,0.15625 0.144531,0.023437 0.289063,0.03125 0.4375,0.03125 0.144531,0 0.289063,0.00781 0.4375,0.015625 0.144531,0.011719 0.273437,0.039062 0.390625,0.078125 z m 0,0"
id="path71"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-14"
style="overflow:visible">
<path
style="stroke:none"
d="M 4.5,-5.28125 C 4.476562,-5.125 4.4375,-4.960938 4.375,-4.796875 4.320312,-4.640625 4.285156,-4.476562 4.265625,-4.3125 4.222656,-4.320312 4.171875,-4.328125 4.109375,-4.328125 4.054688,-4.335938 4,-4.34375 3.9375,-4.34375 c -0.09375,0 -0.1875,0.00781 -0.28125,0.015625 -0.09375,0 -0.179688,0.00781 -0.25,0.015625 C 3.269531,-4.300781 3.132812,-4.289062 3,-4.28125 2.863281,-4.269531 2.726562,-4.25 2.59375,-4.21875 2.5,-3.882812 2.410156,-3.550781 2.328125,-3.21875 2.253906,-2.882812 2.179688,-2.546875 2.109375,-2.203125 2.035156,-1.835938 1.96875,-1.46875 1.90625,-1.09375 1.84375,-0.726562 1.789062,-0.367188 1.75,-0.015625 c -0.09375,-0.0195312 -0.199219,-0.0195312 -0.3125,0 -0.117188,0.01953125 -0.226562,0.01953125 -0.328125,0 0.00781,-0.0703125 0.019531,-0.140625 0.03125,-0.203125 0.019531,-0.0625 0.035156,-0.132812 0.046875,-0.21875 0.050781,-0.226562 0.101562,-0.460938 0.15625,-0.703125 0.0625,-0.25 0.117188,-0.476563 0.171875,-0.6875 l 0.015625,-0.1875 c 0.050781,-0.21875 0.09375,-0.4375 0.125,-0.65625 0.03125,-0.226563 0.078125,-0.457031 0.140625,-0.6875 0.00781,-0.082031 0.023437,-0.164063 0.046875,-0.25 0.019531,-0.082031 0.035156,-0.164063 0.046875,-0.25 0.019531,-0.101563 0.03125,-0.179687 0.03125,-0.234375 0.00781,-0.0625 -0.03125,-0.097656 -0.125,-0.109375 -0.09375,-0.019531 -0.1875,-0.019531 -0.28125,0 C 1.421875,-4.191406 1.332031,-4.1875 1.25,-4.1875 c -0.023438,0 -0.058594,0 -0.109375,0 -0.054687,0 -0.105469,0.00781 -0.15625,0.015625 -0.054687,0 -0.105469,0 -0.15625,0 -0.054687,0 -0.085937,-0.00391 -0.09375,-0.015625 C 0.703125,-4.207031 0.691406,-4.257812 0.703125,-4.34375 0.710938,-4.4375 0.726562,-4.53125 0.75,-4.625 c 0.03125,-0.113281 0.054688,-0.21875 0.078125,-0.3125 0.03125,-0.101562 0.054687,-0.1875 0.078125,-0.25 0.050781,0.023438 0.113281,0.03125 0.1875,0.03125 0.082031,0 0.164062,0 0.25,0 C 1.425781,-5.164062 1.503906,-5.175781 1.578125,-5.1875 1.660156,-5.195312 1.738281,-5.207031 1.8125,-5.21875 2.03125,-5.238281 2.238281,-5.25 2.4375,-5.25 c 0.082031,0 0.164062,0.00781 0.25,0.015625 0.082031,0 0.164062,0 0.25,0 0.125,0 0.253906,0 0.390625,0 0.144531,-0.00781 0.285156,-0.019531 0.421875,-0.03125 0.070312,0 0.140625,0 0.203125,0 0.070313,0 0.148437,0 0.234375,0 0.050781,0 0.101562,0 0.15625,0 0.050781,0 0.101562,-0.00391 0.15625,-0.015625 z m 0,0"
id="path74"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-15"
style="overflow:visible">
<path
style="stroke:none"
d="m 5.515625,-5.34375 c -0.023437,0.074219 -0.039063,0.140625 -0.046875,0.203125 -0.011719,0.054687 -0.023438,0.117187 -0.03125,0.1875 -0.09375,0.386719 -0.167969,0.773437 -0.21875,1.15625 -0.042969,0.375 -0.105469,0.757813 -0.1875,1.140625 -0.0625,0.273438 -0.136719,0.542969 -0.21875,0.8125 -0.011719,0.0625 -0.027344,0.136719 -0.046875,0.21875 -0.023437,0.085938 -0.042969,0.171875 -0.0625,0.265625 C 4.679688,-1.273438 4.65625,-1.191406 4.625,-1.109375 4.601562,-1.023438 4.570312,-0.957031 4.53125,-0.90625 4.4375,-0.789062 4.316406,-0.691406 4.171875,-0.609375 4.023438,-0.523438 3.894531,-0.445312 3.78125,-0.375 3.5625,-0.269531 3.34375,-0.191406 3.125,-0.140625 2.90625,-0.0859375 2.6875,-0.0625 2.46875,-0.0625 2.070312,-0.0625 1.703125,-0.140625 1.359375,-0.296875 1.179688,-0.367188 1.039062,-0.453125 0.9375,-0.546875 0.832031,-0.648438 0.75,-0.765625 0.6875,-0.890625 0.632812,-1.023438 0.597656,-1.175781 0.578125,-1.34375 0.566406,-1.507812 0.5625,-1.691406 0.5625,-1.890625 0.5625,-2.003906 0.570312,-2.113281 0.59375,-2.21875 0.613281,-2.332031 0.632812,-2.445312 0.65625,-2.5625 0.6875,-2.675781 0.710938,-2.785156 0.734375,-2.890625 0.753906,-3.003906 0.78125,-3.117188 0.8125,-3.234375 l 0.453125,-1.96875 c 0.00781,-0.0625 0.019531,-0.109375 0.03125,-0.140625 0.00781,-0.039062 0.019531,-0.078125 0.03125,-0.109375 0.00781,-0.03125 0.03125,-0.050781 0.0625,-0.0625 0.039063,-0.019531 0.09375,-0.03125 0.15625,-0.03125 0.050781,-0.00781 0.125,-0.019531 0.21875,-0.03125 0.101563,-0.00781 0.164063,0 0.1875,0.03125 0.019531,0.023437 0.023437,0.054687 0.015625,0.09375 -0.011719,0.03125 -0.023438,0.070313 -0.03125,0.109375 0,0.03125 -0.011719,0.070312 -0.03125,0.109375 -0.011719,0.03125 -0.023438,0.058594 -0.03125,0.078125 -0.042969,0.167969 -0.085938,0.335938 -0.125,0.5 -0.03125,0.167969 -0.0625,0.335938 -0.09375,0.5 C 1.613281,-4 1.566406,-3.832031 1.515625,-3.65625 1.472656,-3.476562 1.4375,-3.300781 1.40625,-3.125 1.375,-2.957031 1.347656,-2.796875 1.328125,-2.640625 c -0.023437,0.15625 -0.03125,0.308594 -0.03125,0.453125 0.00781,0.167969 0.039063,0.304688 0.09375,0.40625 0.0625,0.09375 0.140625,0.179688 0.234375,0.25 0.101562,0.0625 0.21875,0.109375 0.34375,0.140625 0.132812,0.03125 0.273438,0.058594 0.421875,0.078125 0.144531,0.023438 0.296875,0.03125 0.453125,0.03125 0.21875,0 0.425781,-0.023438 0.625,-0.078125 C 3.664062,-1.410156 3.820312,-1.503906 3.9375,-1.640625 4.0625,-1.773438 4.160156,-1.925781 4.234375,-2.09375 4.304688,-2.269531 4.363281,-2.453125 4.40625,-2.640625 4.425781,-2.773438 4.441406,-2.910156 4.453125,-3.046875 4.472656,-3.191406 4.488281,-3.320312 4.5,-3.4375 4.539062,-3.769531 4.585938,-4.082031 4.640625,-4.375 4.691406,-4.675781 4.753906,-5 4.828125,-5.34375 c 0.039063,0 0.09375,-0.00391 0.15625,-0.015625 0.0625,-0.00781 0.125,-0.015625 0.1875,-0.015625 0.070313,0 0.132813,0 0.1875,0 0.0625,0 0.113281,0.011719 0.15625,0.03125 z m 0,0"
id="path77"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-16"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.5,-2.875 c -0.054688,0.21875 -0.105469,0.445312 -0.15625,0.671875 -0.042969,0.21875 -0.089844,0.449219 -0.140625,0.6875 -0.054687,0.230469 -0.101563,0.460937 -0.140625,0.6875 -0.042969,0.230469 -0.074219,0.453125 -0.09375,0.671875 -0.125,0.03125 -0.25,0.039062 -0.375,0.015625 -0.117188,-0.03125 -0.234375,-0.050781 -0.359375,-0.0625 0,-0.070313 0.003906,-0.140625 0.015625,-0.203125 0.019531,-0.070312 0.035156,-0.144531 0.046875,-0.21875 0.039063,-0.195312 0.09375,-0.394531 0.15625,-0.59375 0.0625,-0.195312 0.117187,-0.382812 0.171875,-0.5625 0.050781,-0.15625 0.085938,-0.3125 0.109375,-0.46875 0.019531,-0.15625 0.035156,-0.3125 0.046875,-0.46875 0.019531,-0.164062 0.046875,-0.335938 0.078125,-0.515625 0.03125,-0.1875 0.070313,-0.378906 0.125,-0.578125 l 0.03125,-0.203125 c 0.039063,-0.195313 0.078125,-0.363281 0.109375,-0.5 0.039062,-0.144531 0.078125,-0.285156 0.109375,-0.421875 0.019531,-0.050781 0.03125,-0.09375 0.03125,-0.125 0,-0.039062 0.00391,-0.070312 0.015625,-0.09375 0.00781,-0.03125 0.023438,-0.054688 0.046875,-0.078125 0.03125,-0.019531 0.070313,-0.035156 0.125,-0.046875 0.0625,-0.00781 0.144531,-0.00391 0.25,0.015625 0.113281,0.011719 0.191406,0.023437 0.234375,0.03125 -0.09375,0.40625 -0.171875,0.804687 -0.234375,1.1875 C 1.648438,-3.671875 1.582031,-3.28125 1.5,-2.875 Z m 0,0"
id="path80"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-0"
style="overflow:visible">
<path
style="stroke:none"
d="M 0.515625,-4.5 H 3.125 V 0.015625 H 0.515625 Z m 0.78125,4.15625 h 1.09375 v -3.828125 h -1.09375 z m 0,0"
id="path83"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-1"
style="overflow:visible">
<path
style="stroke:none"
d="m 3.109375,-4.921875 c 0.00781,0.136719 0.00391,0.277344 -0.015625,0.421875 -0.011719,0.148438 -0.011719,0.296875 0,0.453125 -0.042969,-0.00781 -0.089844,-0.019531 -0.140625,-0.03125 -0.054687,-0.00781 -0.105469,-0.015625 -0.15625,-0.015625 -0.074219,0 -0.152344,0.00781 -0.234375,0.015625 -0.074219,0.011719 -0.148438,0.023437 -0.21875,0.03125 -0.105469,0.011719 -0.214844,0.023437 -0.328125,0.03125 C 1.898438,-4.015625 1.789062,-4 1.6875,-3.96875 1.644531,-3.375 1.625,-2.769531 1.625,-2.15625 c 0,0.335938 0.00391,0.667969 0.015625,1 0.019531,0.324219 0.046875,0.648438 0.078125,0.96875 -0.085938,-0.019531 -0.171875,-0.019531 -0.265625,0 -0.09375,0.023438 -0.1875,0.023438 -0.28125,0 C 1.160156,-0.25 1.15625,-0.304688 1.15625,-0.359375 c 0,-0.0625 0,-0.128906 0,-0.203125 0,-0.207031 0.00391,-0.421875 0.015625,-0.640625 C 1.179688,-1.421875 1.1875,-1.625 1.1875,-1.8125 L 1.171875,-1.984375 c 0,-0.195313 -0.00781,-0.394531 -0.015625,-0.59375 C 1.144531,-2.785156 1.140625,-2.988281 1.140625,-3.1875 c 0,-0.070312 0,-0.144531 0,-0.21875 0.00781,-0.082031 0.00781,-0.160156 0,-0.234375 0,-0.09375 -0.00781,-0.164063 -0.015625,-0.21875 0,-0.050781 -0.046875,-0.082031 -0.140625,-0.09375 -0.074219,-0.019531 -0.148437,-0.019531 -0.21875,0 C 0.691406,-3.941406 0.613281,-3.9375 0.53125,-3.9375 c -0.023438,0 -0.054688,0 -0.09375,0 -0.042969,0 -0.089844,0.00781 -0.140625,0.015625 -0.042969,0 -0.085937,0 -0.125,0 -0.042969,0 -0.0625,-0.00391 -0.0625,-0.015625 C 0.078125,-3.957031 0.0546875,-4.003906 0.046875,-4.078125 0.0351562,-4.160156 0.03125,-4.25 0.03125,-4.34375 c 0,-0.09375 0,-0.1875 0,-0.28125 0.0078125,-0.09375 0.015625,-0.160156 0.015625,-0.203125 0.113281,0.03125 0.242187,0.039063 0.390625,0.015625 0.144531,-0.019531 0.273438,-0.039062 0.390625,-0.0625 0.175781,-0.00781 0.351563,-0.015625 0.53125,-0.015625 0.070313,0 0.140625,0 0.203125,0 0.070312,0 0.144531,0 0.21875,0 C 1.894531,-4.878906 2.007812,-4.875 2.125,-4.875 c 0.125,-0.00781 0.242188,-0.019531 0.359375,-0.03125 0.0625,0 0.117187,0 0.171875,0 0.0625,0 0.125,0 0.1875,0 0.050781,0 0.097656,0 0.140625,0 0.039063,0 0.082031,-0.00391 0.125,-0.015625 z m 0,0"
id="path86"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-2"
style="overflow:visible">
<path
style="stroke:none"
d="m 3.609375,-1.0625 c 0,0.054688 0,0.105469 0,0.15625 0,0.054688 0.00391,0.105469 0.015625,0.15625 0,0.074219 0,0.121094 0,0.140625 0,0.023437 -0.039062,0.039063 -0.109375,0.046875 C 3.429688,-0.550781 3.34375,-0.539062 3.25,-0.53125 c -0.085938,0.011719 -0.171875,0.015625 -0.265625,0.015625 -0.085937,0 -0.171875,0 -0.265625,0 -0.085938,-0.007813 -0.167969,-0.015625 -0.25,-0.015625 -0.230469,0 -0.453125,0.007812 -0.671875,0.015625 -0.21875,0 -0.445313,0.015625 -0.671875,0.046875 -0.148438,0.023438 -0.292969,0.039062 -0.4375,0.046875 -0.136719,0.011719 -0.277344,0.011719 -0.421875,0 -0.023437,-0.039063 -0.03125,-0.09375 -0.03125,-0.15625 0,-0.070313 0.003906,-0.140625 0.015625,-0.203125 0.007812,-0.070312 0.019531,-0.140625 0.03125,-0.203125 0.007812,-0.070313 0.019531,-0.128906 0.03125,-0.171875 0.007812,-0.195312 0.019531,-0.390625 0.03125,-0.578125 0.019531,-0.1875 0.035156,-0.375 0.046875,-0.5625 0.007813,-0.113281 0.019531,-0.238281 0.03125,-0.375 0.007813,-0.132813 0.023437,-0.273437 0.046875,-0.421875 0.019531,-0.144531 0.039062,-0.285156 0.0625,-0.421875 0.019531,-0.144531 0.039062,-0.269531 0.0625,-0.375 0.019531,-0.101563 0.035156,-0.207031 0.046875,-0.3125 C 0.660156,-4.304688 0.675781,-4.410156 0.6875,-4.515625 0.695312,-4.566406 0.703125,-4.625 0.703125,-4.6875 0.710938,-4.75 0.726562,-4.800781 0.75,-4.84375 0.800781,-4.863281 0.851562,-4.867188 0.90625,-4.859375 0.957031,-4.847656 1.007812,-4.84375 1.0625,-4.84375 1.175781,-4.863281 1.285156,-4.875 1.390625,-4.875 1.503906,-4.882812 1.613281,-4.890625 1.71875,-4.890625 1.851562,-4.898438 1.984375,-4.90625 2.109375,-4.90625 c 0.125,0 0.253906,-0.00781 0.390625,-0.03125 0.070312,-0.00781 0.125,-0.015625 0.15625,-0.015625 0.039062,-0.00781 0.097656,-0.00781 0.171875,0 l 0.1875,-0.03125 C 3.046875,-4.992188 3.078125,-5 3.109375,-5 c 0.03125,0 0.0625,0 0.09375,0 0.039063,0 0.085937,0 0.140625,0 0.050781,-0.00781 0.085938,-0.00391 0.109375,0.015625 0.03125,0.03125 0.039063,0.089844 0.03125,0.171875 0,0.074219 0,0.132812 0,0.171875 0,0.0625 -0.011719,0.152344 -0.03125,0.265625 -0.011719,0.105469 -0.023437,0.1875 -0.03125,0.25 -0.011719,0.042969 -0.015625,0.070312 -0.015625,0.078125 0.00781,0 -0.00781,0.00781 -0.046875,0.015625 -0.023437,0.011719 -0.042969,0.011719 -0.0625,0 -0.023437,-0.00781 -0.042969,-0.015625 -0.0625,-0.015625 H 2.875 c -0.09375,0 -0.1875,0 -0.28125,0 -0.085938,0 -0.171875,0.00781 -0.265625,0.015625 -0.125,0.011719 -0.25,0.015625 -0.375,0.015625 -0.117187,0 -0.234375,0.00781 -0.359375,0.015625 -0.042969,0 -0.085938,0.00781 -0.125,0.015625 -0.042969,0.011719 -0.089844,0.023437 -0.140625,0.03125 -0.042969,0.011719 -0.085937,0.015625 -0.125,0.015625 -0.042969,0 -0.078125,-0.00391 -0.109375,-0.015625 -0.042969,0.03125 -0.0625,0.089844 -0.0625,0.171875 0,0.085938 0,0.152344 0,0.203125 C 1.019531,-3.484375 1.007812,-3.363281 1,-3.21875 0.988281,-3.070312 0.988281,-2.957031 1,-2.875 1.09375,-2.84375 1.191406,-2.832031 1.296875,-2.84375 1.398438,-2.863281 1.5,-2.875 1.59375,-2.875 c 0.15625,-0.00781 0.304688,-0.00781 0.453125,0 0.144531,0 0.289063,-0.00391 0.4375,-0.015625 0.0625,-0.00781 0.128906,-0.019531 0.203125,-0.03125 C 2.757812,-2.929688 2.828125,-2.9375 2.890625,-2.9375 2.929688,-2.925781 2.957031,-2.910156 2.96875,-2.890625 2.976562,-2.878906 2.988281,-2.851562 3,-2.8125 c 0.00781,0.03125 0.015625,0.074219 0.015625,0.125 0,0.042969 0,0.089844 0,0.140625 0,0.085937 0,0.167969 0,0.25 0,0.085937 -0.011719,0.148437 -0.03125,0.1875 -0.074219,0 -0.140625,0 -0.203125,0 -0.0625,0 -0.132812,0 -0.203125,0 h -0.40625 c -0.136719,0 -0.265625,0.00781 -0.390625,0.015625 -0.125,0 -0.257812,0 -0.390625,0 -0.074219,0.011719 -0.152344,0.027344 -0.234375,0.046875 -0.085938,0.011719 -0.164062,0.015625 -0.234375,0.015625 -0.03125,0.054688 -0.054687,0.105469 -0.0625,0.15625 0,0.042969 0,0.085938 0,0.125 0,0.074219 0,0.140625 0,0.203125 0.007813,0.054687 0.003906,0.109375 -0.015625,0.171875 0.082031,0.023438 0.164062,0.027344 0.25,0.015625 0.09375,-0.019531 0.175781,-0.03125 0.25,-0.03125 0.132812,0 0.265625,0 0.390625,0 0.132813,0 0.265625,0.00781 0.390625,0.015625 0.0625,0 0.125,0 0.1875,0 0.0625,0 0.125,0 0.1875,0 0.15625,0 0.316406,-0.00391 0.484375,-0.015625 0.113281,-0.00781 0.226563,-0.023437 0.34375,-0.046875 0.113281,-0.019531 0.222656,-0.03125 0.328125,-0.03125 0,0.054688 -0.011719,0.121094 -0.03125,0.203125 -0.011719,0.085937 -0.015625,0.152344 -0.015625,0.203125 z m 0,0"
id="path89"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-3"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.28125,-2.390625 c 0.0625,0.125 0.128906,0.25 0.203125,0.375 0.1875,0.304687 0.367187,0.609375 0.546875,0.921875 0.175781,0.3125 0.363281,0.625 0.5625,0.9375 -0.085938,-0.019531 -0.179688,-0.023438 -0.28125,-0.015625 -0.09375,0.011719 -0.183594,0.023437 -0.265625,0.03125 -0.0625,0.023437 -0.136719,0.03125 -0.21875,0.03125 -0.085937,0 -0.15625,0.007813 -0.21875,0.015625 C 2.597656,-0.125 2.582031,-0.160156 2.5625,-0.203125 2.539062,-0.242188 2.519531,-0.28125 2.5,-0.3125 L 2.484375,-0.390625 C 2.429688,-0.429688 2.390625,-0.476562 2.359375,-0.53125 2.335938,-0.59375 2.3125,-0.648438 2.28125,-0.703125 2.21875,-0.816406 2.148438,-0.925781 2.078125,-1.03125 2.015625,-1.144531 1.945312,-1.253906 1.875,-1.359375 1.863281,-1.390625 1.847656,-1.414062 1.828125,-1.4375 1.816406,-1.457031 1.800781,-1.484375 1.78125,-1.515625 c -0.023438,0.0625 -0.054688,0.125 -0.09375,0.1875 -0.03125,0.0625 -0.070312,0.121094 -0.109375,0.171875 -0.042969,0.085938 -0.085937,0.164062 -0.125,0.234375 C 1.410156,-0.847656 1.363281,-0.769531 1.3125,-0.6875 1.269531,-0.632812 1.234375,-0.570312 1.203125,-0.5 c -0.023437,0.0625 -0.054687,0.121094 -0.09375,0.171875 -0.011719,0.011719 -0.023437,0.027344 -0.03125,0.046875 0,0.011719 -0.00781,0.023438 -0.015625,0.03125 -0.054688,-0.007812 -0.105469,-0.015625 -0.15625,-0.015625 -0.042969,0 -0.089844,0 -0.140625,0 -0.085937,0 -0.167969,0 -0.25,0 C 0.441406,-0.265625 0.375,-0.257812 0.3125,-0.25 0.40625,-0.382812 0.492188,-0.519531 0.578125,-0.65625 0.660156,-0.789062 0.75,-0.921875 0.84375,-1.046875 0.863281,-1.085938 0.894531,-1.144531 0.9375,-1.21875 c 0.039062,-0.070312 0.082031,-0.144531 0.125,-0.21875 0.039062,-0.082031 0.082031,-0.15625 0.125,-0.21875 0.039062,-0.0625 0.078125,-0.101562 0.109375,-0.125 L 1.40625,-1.921875 C 1.414062,-1.941406 1.425781,-1.960938 1.4375,-1.984375 1.445312,-2.015625 1.457031,-2.039062 1.46875,-2.0625 1.382812,-2.21875 1.300781,-2.375 1.21875,-2.53125 1.132812,-2.695312 1.050781,-2.859375 0.96875,-3.015625 0.800781,-3.304688 0.640625,-3.597656 0.484375,-3.890625 0.328125,-4.191406 0.175781,-4.488281 0.03125,-4.78125 h 0.421875 c 0.09375,0 0.179687,0 0.265625,0 0.082031,-0.00781 0.160156,-0.019531 0.234375,-0.03125 0.070313,0.074219 0.128906,0.152344 0.171875,0.234375 0.050781,0.085937 0.101562,0.164063 0.15625,0.234375 0.070312,0.117188 0.144531,0.234375 0.21875,0.359375 0.070312,0.117187 0.132812,0.230469 0.1875,0.34375 0.0625,0.117187 0.117188,0.230469 0.171875,0.34375 0.050781,0.105469 0.101563,0.214844 0.15625,0.328125 0.070313,-0.125 0.140625,-0.242188 0.203125,-0.359375 0.070312,-0.125 0.148438,-0.25 0.234375,-0.375 0.125,-0.195313 0.257813,-0.394531 0.40625,-0.59375 0.144531,-0.207031 0.265625,-0.40625 0.359375,-0.59375 0.113281,0 0.234375,-0.00781 0.359375,-0.03125 0.050781,-0.00781 0.101563,-0.00781 0.15625,0 0.050781,0.011719 0.101563,0.00781 0.15625,-0.015625 -0.136719,0.199219 -0.261719,0.398438 -0.375,0.59375 -0.105469,0.199219 -0.226563,0.398438 -0.359375,0.59375 -0.148438,0.230469 -0.292969,0.460938 -0.4375,0.6875 -0.148438,0.21875 -0.292969,0.445312 -0.4375,0.671875 z m 0,0"
id="path92"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-4"
style="overflow:visible">
<path
style="stroke:none"
d="m 3.125,-4.75 c 0.00781,0.136719 0.00391,0.277344 -0.015625,0.421875 -0.023437,0.148437 -0.023437,0.296875 0,0.453125 C 3.054688,-3.882812 3.003906,-3.894531 2.953125,-3.90625 2.910156,-3.914062 2.863281,-3.921875 2.8125,-3.921875 c -0.085938,0 -0.164062,0.00781 -0.234375,0.015625 -0.074219,0.011719 -0.148437,0.023438 -0.21875,0.03125 -0.105469,0.011719 -0.214844,0.023438 -0.328125,0.03125 -0.117188,0 -0.230469,0.015625 -0.34375,0.046875 -0.03125,0.59375 -0.046875,1.199219 -0.046875,1.8125 0,0.335937 0.00391,0.667969 0.015625,1 0.019531,0.324219 0.039062,0.648437 0.0625,0.96875 -0.074219,-0.0195312 -0.164062,-0.0195312 -0.265625,0 -0.09375,0.01953125 -0.1875,0.01953125 -0.28125,0 0,-0.0625 0,-0.117187 0,-0.171875 0,-0.0625 0,-0.128906 0,-0.203125 0,-0.207031 0.00391,-0.421875 0.015625,-0.640625 C 1.195312,-1.25 1.203125,-1.453125 1.203125,-1.640625 L 1.171875,-1.8125 c 0,-0.195312 -0.00781,-0.394531 -0.015625,-0.59375 0,-0.207031 0,-0.414062 0,-0.625 0,-0.0625 0,-0.128906 0,-0.203125 0,-0.082031 0,-0.160156 0,-0.234375 C 1.144531,-3.5625 1.140625,-3.632812 1.140625,-3.6875 1.140625,-3.738281 1.09375,-3.769531 1,-3.78125 c -0.085938,-0.019531 -0.164062,-0.019531 -0.234375,0 -0.074219,0.011719 -0.152344,0.015625 -0.234375,0.015625 -0.011719,0 -0.039062,0 -0.078125,0 -0.042969,0 -0.089844,0.00781 -0.140625,0.015625 -0.042969,0 -0.085938,0 -0.125,0 -0.042969,0 -0.070312,-0.00391 -0.078125,-0.015625 C 0.078125,-3.785156 0.0546875,-3.832031 0.046875,-3.90625 0.0351562,-3.988281 0.03125,-4.078125 0.03125,-4.171875 c 0,-0.09375 0,-0.1875 0,-0.28125 0.0078125,-0.09375 0.0195312,-0.160156 0.03125,-0.203125 0.113281,0.03125 0.242188,0.039062 0.390625,0.015625 0.144531,-0.03125 0.273437,-0.050781 0.390625,-0.0625 0.175781,-0.00781 0.351562,-0.015625 0.53125,-0.015625 0.0625,0 0.128906,0 0.203125,0 0.070313,0 0.140625,0 0.203125,0 0.113281,0.011719 0.226562,0.015625 0.34375,0.015625 0.125,-0.00781 0.242188,-0.019531 0.359375,-0.03125 0.0625,-0.00781 0.125,-0.00781 0.1875,0 0.0625,0 0.125,0 0.1875,0 0.039063,0 0.082031,0 0.125,0 0.039063,0 0.085937,-0.00391 0.140625,-0.015625 z m 0,0"
id="path95"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-5"
style="overflow:visible">
<path
style="stroke:none"
d=""
id="path98"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-6"
style="overflow:visible">
<path
style="stroke:none"
d="m 3.390625,-4.9375 c 0.00781,0.125 0.015625,0.257812 0.015625,0.390625 0.00781,0.125 0.00781,0.257813 0,0.390625 -0.011719,0.304688 -0.027344,0.605469 -0.046875,0.90625 -0.023437,0.304688 -0.027344,0.605469 -0.015625,0.90625 0.00781,0.355469 0.015625,0.703125 0.015625,1.046875 0,0.34375 0.00781,0.6875 0.03125,1.03125 -0.042969,-0.019531 -0.089844,-0.019531 -0.140625,0 -0.054688,0.011719 -0.101562,0.023437 -0.140625,0.03125 -0.042969,0.011719 -0.085937,0.015625 -0.125,0.015625 -0.042969,0 -0.085937,0.011719 -0.125,0.03125 0.00781,-0.039062 0.015625,-0.082031 0.015625,-0.125 0,-0.039062 0,-0.082031 0,-0.125 V -0.875 c 0,-0.113281 -0.00781,-0.234375 -0.015625,-0.359375 0,-0.125 0,-0.25 0,-0.375 -0.011719,-0.132813 -0.015625,-0.269531 -0.015625,-0.40625 0,-0.144531 0,-0.285156 0,-0.421875 -0.0625,0 -0.132812,0 -0.203125,0 -0.074219,0 -0.140625,0 -0.203125,0 -0.105469,0.023438 -0.214844,0.039062 -0.328125,0.046875 -0.105469,0 -0.214844,0.00781 -0.328125,0.015625 -0.148438,0.011719 -0.292969,0.027344 -0.4375,0.046875 -0.148438,0.023437 -0.296875,0.039063 -0.453125,0.046875 0.019531,0.15625 0.035156,0.308594 0.046875,0.453125 0.007812,0.148437 0.019531,0.292969 0.03125,0.4375 0,0.085937 0,0.164063 0,0.234375 0,0.074219 0,0.152344 0,0.234375 0,0.074219 0,0.148437 0,0.21875 0.007812,0.074219 0.019531,0.148437 0.03125,0.21875 -0.085938,-0.019531 -0.167969,-0.03125 -0.25,-0.03125 -0.074219,0 -0.148438,0.007813 -0.21875,0.015625 -0.0625,0 -0.121094,0.007812 -0.171875,0.015625 C 0.367188,-0.546875 0.375,-0.613281 0.375,-0.6875 c 0,-0.070312 0,-0.140625 0,-0.203125 0,-0.0625 0,-0.128906 0,-0.203125 0,-0.070312 0,-0.140625 0,-0.203125 0,-0.03125 0,-0.082031 0,-0.15625 0,-0.070313 -0.007812,-0.15625 -0.015625,-0.25 C 0.347656,-1.796875 0.34375,-1.882812 0.34375,-1.96875 c 0,-0.082031 0.007812,-0.160156 0.03125,-0.234375 0,-0.113281 0,-0.21875 0,-0.3125 0,-0.09375 0,-0.1875 0,-0.28125 C 0.351562,-2.992188 0.335938,-3.1875 0.328125,-3.375 c 0,-0.1875 0,-0.375 0,-0.5625 0,-0.15625 0.003906,-0.3125 0.015625,-0.46875 0.007812,-0.15625 0.015625,-0.3125 0.015625,-0.46875 0,-0.039062 0,-0.082031 0,-0.125 0,-0.039062 -0.007813,-0.082031 -0.015625,-0.125 0.050781,0 0.097656,0 0.140625,0 0.050781,-0.00781 0.097656,-0.019531 0.140625,-0.03125 0.050781,-0.00781 0.097656,-0.00781 0.140625,0 0.050781,0.011719 0.09375,0.00781 0.125,-0.015625 -0.011719,0.199219 -0.007813,0.398437 0.015625,0.59375 0.019531,0.199219 0.023438,0.398437 0.015625,0.59375 -0.011719,0.117187 -0.023437,0.230469 -0.03125,0.34375 0,0.117187 0,0.234375 0,0.359375 0.226563,-0.03125 0.457031,-0.054688 0.6875,-0.078125 0.238281,-0.019531 0.476563,-0.03125 0.71875,-0.03125 0.050781,0 0.097656,0.00781 0.140625,0.015625 0.050781,0 0.097656,0 0.140625,0 0.050781,0.011719 0.097656,0.015625 0.140625,0.015625 C 2.757812,-3.367188 2.804688,-3.375 2.859375,-3.375 c 0,-0.332031 0,-0.664062 0,-1 0,-0.332031 0.00391,-0.6875 0.015625,-1.0625 0.070312,0 0.148438,0.00781 0.234375,0.015625 0.09375,0 0.175781,-0.015625 0.25,-0.046875 0.019531,0.085938 0.023437,0.171875 0.015625,0.265625 0,0.09375 0.00391,0.183594 0.015625,0.265625 z m 0,0"
id="path101"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-7"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.296875,-1.9375 c 0.1875,0.09375 0.367187,0.199219 0.546875,0.3125 0.1875,0.105469 0.375,0.210938 0.5625,0.3125 0.1875,0.105469 0.378906,0.203125 0.578125,0.296875 0.195313,0.09375 0.40625,0.171875 0.625,0.234375 C 4.578125,-0.707031 4.539062,-0.640625 4.5,-0.578125 4.457031,-0.515625 4.414062,-0.445312 4.375,-0.375 4.332031,-0.300781 4.289062,-0.226562 4.25,-0.15625 4.21875,-0.09375 4.191406,-0.0234375 4.171875,0.046875 4.066406,0.00390625 3.941406,-0.0546875 3.796875,-0.140625 3.648438,-0.222656 3.5,-0.3125 3.34375,-0.40625 3.195312,-0.507812 3.050781,-0.601562 2.90625,-0.6875 2.769531,-0.78125 2.644531,-0.851562 2.53125,-0.90625 2.425781,-0.957031 2.3125,-1.019531 2.1875,-1.09375 2.0625,-1.175781 1.929688,-1.253906 1.796875,-1.328125 c -0.125,-0.082031 -0.257813,-0.15625 -0.390625,-0.21875 -0.125,-0.0625 -0.25,-0.109375 -0.375,-0.140625 -0.054688,0.042969 -0.078125,0.117188 -0.078125,0.21875 0,0.09375 0,0.179688 0,0.25 v 1 H 0.4375 c 0,-0.113281 -0.007812,-0.242188 -0.015625,-0.390625 0,-0.15625 -0.007813,-0.375 -0.015625,-0.65625 0,-0.113281 0,-0.226563 0,-0.34375 0.007812,-0.125 0.019531,-0.234375 0.03125,-0.328125 0.007812,-0.132812 0.015625,-0.265625 0.015625,-0.390625 0.007813,-0.125 0.015625,-0.253906 0.015625,-0.390625 v -0.390625 c 0,-0.144531 0,-0.28125 0,-0.40625 0,-0.125 0,-0.253906 0,-0.390625 h -0.3125 c 0.007812,-0.101562 0.007812,-0.203125 0,-0.296875 -0.011719,-0.101563 -0.015625,-0.207031 -0.015625,-0.3125 0,-0.09375 0.007813,-0.195313 0.03125,-0.3125 0.050781,-0.00781 0.101563,-0.015625 0.15625,-0.015625 0.0625,0 0.125,0 0.1875,0 0.164063,0 0.332031,0.00781 0.5,0.015625 0.3125,0.03125 0.625,0.054687 0.9375,0.0625 0.320313,0 0.640625,0 0.953125,0 0.144531,0 0.285156,0.023437 0.421875,0.0625 0.144531,0.03125 0.273437,0.089844 0.390625,0.171875 C 3.832031,-4.457031 3.925781,-4.359375 4,-4.234375 4.070312,-4.117188 4.113281,-3.976562 4.125,-3.8125 4.144531,-3.519531 4.101562,-3.269531 4,-3.0625 3.90625,-2.851562 3.769531,-2.671875 3.59375,-2.515625 3.414062,-2.367188 3.210938,-2.25 2.984375,-2.15625 2.765625,-2.070312 2.535156,-2 2.296875,-1.9375 Z m -0.8125,-0.71875 c 0.070313,-0.00781 0.144531,-0.015625 0.21875,-0.015625 0.082031,-0.00781 0.164063,-0.015625 0.25,-0.015625 0.40625,-0.019531 0.800781,-0.125 1.1875,-0.3125 0.039063,-0.019531 0.082031,-0.039062 0.125,-0.0625 0.050781,-0.03125 0.09375,-0.066406 0.125,-0.109375 0.039063,-0.039063 0.066406,-0.082031 0.078125,-0.125 C 3.488281,-3.347656 3.492188,-3.40625 3.484375,-3.46875 3.472656,-3.539062 3.453125,-3.59375 3.421875,-3.625 3.390625,-3.664062 3.347656,-3.691406 3.296875,-3.703125 3.253906,-3.722656 3.207031,-3.738281 3.15625,-3.75 3.113281,-3.757812 3.070312,-3.769531 3.03125,-3.78125 2.8125,-3.832031 2.585938,-3.859375 2.359375,-3.859375 c -0.230469,-0.00781 -0.460937,-0.019531 -0.6875,-0.03125 -0.074219,0 -0.140625,0.00781 -0.203125,0.015625 -0.0625,0.011719 -0.136719,0.027344 -0.21875,0.046875 -0.03125,0 -0.058594,0 -0.078125,0 -0.023437,0 -0.039063,0.00781 -0.046875,0.015625 -0.011719,0 -0.023438,0.011719 -0.03125,0.03125 0,0.023438 0,0.054688 0,0.09375 -0.011719,0.105469 -0.023438,0.226562 -0.03125,0.359375 -0.011719,0.136719 -0.015625,0.277344 -0.015625,0.421875 0,0.011719 0,0.046875 0,0.109375 0,0.054687 0,0.09375 0,0.125 0.070313,-0.00781 0.144531,-0.00391 0.21875,0.015625 0.070313,0.011719 0.144531,0.011719 0.21875,0 z m 0,0"
id="path104"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-0"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.59375,0 v -35.78125 h 9.609375 V 0 Z M 3.203125,-2 H 9.59375 V -33.78125 H 3.203125 Z m 0,0"
id="path107"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-1"
style="overflow:visible">
<path
style="stroke:none"
d="M 8.265625,-31.875 6.15625,-6.96875 H 2.203125 l -2.125,-24.90625 2.875,-0.40625 1.21875,14.25 1.234375,-14.25 z m 0,0"
id="path110"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-2"
style="overflow:visible">
<path
style="stroke:none"
d="m 0,-7.09375 v -25.0625 h 2.875 v 25.0625 z m 0,0"
id="path113"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-3"
style="overflow:visible">
<path
style="stroke:none"
d="m 0.03125,-32.15625 h 2.890625 v 21.4375 h 4.25 v 3.625 H 0.03125 Z m 0,0"
id="path116"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-4"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.71875,-32.15625 h 4.078125 l 2.671875,25.0625 h -2.25 L 6.03125,-8.96875 3,-8.65625 2.875,-7.09375 H 0 Z m 3.953125,19.9375 -1.46875,-13.84375 -0.984375,14.125 z m 0,0"
id="path119"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-5"
style="overflow:visible">
<path
style="stroke:none"
d="m 0,-32.15625 h 2.90625 c 1.394531,0 2.425781,0.117188 3.09375,0.34375 1.226562,0.417969 1.878906,1.261719 1.953125,2.53125 h -0.03125 v 22.1875 H 5.03125 v -21.5625 C 4.695312,-29.132812 4.1875,-29.375 3.5,-29.375 c -0.21875,0 -0.417969,0.04297 -0.59375,0.125 V -7.09375 H 0 Z m 0,0"
id="path122"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-6"
style="overflow:visible">
<path
style="stroke:none"
d=""
id="path125"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-7"
style="overflow:visible">
<path
style="stroke:none"
d="m 0,-32.15625 h 2.90625 c 1.394531,0 2.425781,0.117188 3.09375,0.34375 1.226562,0.417969 1.878906,1.261719 1.953125,2.53125 h -0.03125 v 22.1875 H 5.03125 v -21.5625 C 4.695312,-29.132812 4.1875,-29.375 3.5,-29.375 c -0.21875,0 -0.417969,0.04297 -0.59375,0.125 V -7.09375 H 0 Z m 0,0"
id="path128"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-8"
style="overflow:visible">
<path
style="stroke:none"
d="m -0.03125,-32.15625 h 2.875 v 0.03125 c 0.582031,0 1.332031,-0.0078 2.25,-0.03125 2.15625,-0.03906 3.804688,0.292969 4.953125,1 0.632813,0.417969 0.96875,1.042969 1,1.875 0,1.648438 0,1.929688 0,0.84375 0,1.085938 0,1.898438 0,2.4375 v 18.90625 h -2.90625 v -21.5625 c -0.117187,-0.5 -0.492187,-0.71875 -1.125,-0.65625 V -7.09375 H 4.125 v -21.5625 C 3.707031,-29.132812 3.28125,-29.332031 2.84375,-29.25 v 22.15625 h -2.875 z m 0,0"
id="path131"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-9"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.921875,-12.75 v 2 H 6.71875 v 3.625 H 2.921875 v 0.03125 H 0.03125 v -25.0625 h 6.6875 v 3.625 H 2.921875 v 12.5 L 5.09375,-16.25 v 3.28125 z m 0,0"
id="path134"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph3-10"
style="overflow:visible">
<path
style="stroke:none"
d="M 1.828125,-32.1875 H 5.46875 c 0.5,0 0.925781,0.226562 1.28125,0.671875 0.363281,0.449219 0.546875,0.984375 0.546875,1.609375 V -9.3125 c 0,0.625 -0.183594,1.164062 -0.546875,1.609375 C 6.394531,-7.253906 5.96875,-7.03125 5.46875,-7.03125 H 1.828125 C 1.304688,-7.03125 0.867188,-7.25 0.515625,-7.6875 0.171875,-8.125 0,-8.664062 0,-9.3125 v -20.59375 c 0,-0.644531 0.171875,-1.1875 0.515625,-1.625 0.351563,-0.4375 0.789063,-0.65625 1.3125,-0.65625 z m 0.890625,2.625 v 19.875 h 1.859375 v -19.875 z m 0,0"
id="path137"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph4-0"
style="overflow:visible">
<path
style="stroke:none"
d="M 0.328125,-2.65625 H 1.9375 V 0.015625 H 0.328125 Z m 0.46875,2.453125 h 0.6875 v -2.25 h -0.6875 z m 0,0"
id="path140"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph4-1"
style="overflow:visible">
<path
style="stroke:none"
d="M 2.09375,-0.015625 C 2.0625,-0.0859375 2.023438,-0.160156 1.984375,-0.234375 c -0.042969,-0.082031 -0.085937,-0.164063 -0.125,-0.25 -0.230469,0.023437 -0.46875,0.03125 -0.71875,0.03125 -0.25,0 -0.484375,0.023437 -0.703125,0.0625 -0.042969,0.136719 -0.074219,0.261719 -0.09375,0.375 -0.074219,0 -0.136719,0 -0.1875,0 -0.042969,0 -0.1015625,-0.0039062 -0.171875,-0.015625 0.01171875,-0.0390625 0.0234375,-0.082031 0.046875,-0.125 0.0195312,-0.050781 0.046875,-0.109375 0.078125,-0.171875 0.039063,-0.113281 0.085937,-0.226563 0.140625,-0.34375 0.050781,-0.125 0.097656,-0.238281 0.140625,-0.34375 0.0625,-0.132813 0.117187,-0.257813 0.171875,-0.375 0.0625,-0.125 0.125,-0.25 0.1875,-0.375 0.070312,-0.1875 0.144531,-0.375 0.21875,-0.5625 0.070312,-0.195313 0.164062,-0.375 0.28125,-0.53125 0.039062,0.03125 0.078125,0.078125 0.109375,0.140625 0.03125,0.0625 0.054687,0.132812 0.078125,0.203125 0.03125,0.0625 0.054688,0.132813 0.078125,0.203125 0.03125,0.074219 0.054687,0.132812 0.078125,0.171875 0.070312,0.125 0.140625,0.25 0.203125,0.375 0.070313,0.125 0.140625,0.25 0.203125,0.375 0.113281,0.21875 0.222656,0.4375 0.328125,0.65625 0.101563,0.210937 0.207031,0.417969 0.3125,0.625 -0.105469,0 -0.199219,0.0117188 -0.28125,0.03125 -0.085937,0.0117188 -0.171875,0.03125 -0.265625,0.0625 z M 1.171875,-1.78125 C 1.097656,-1.71875 1.039062,-1.644531 1,-1.5625 0.957031,-1.488281 0.914062,-1.410156 0.875,-1.328125 0.84375,-1.253906 0.804688,-1.175781 0.765625,-1.09375 c -0.03125,0.085938 -0.074219,0.164062 -0.125,0.234375 0.0625,-0.007813 0.132813,-0.019531 0.21875,-0.03125 0.082031,-0.019531 0.164063,-0.035156 0.25,-0.046875 C 1.203125,-0.945312 1.289062,-0.953125 1.375,-0.953125 1.46875,-0.960938 1.550781,-0.972656 1.625,-0.984375 1.59375,-1.046875 1.554688,-1.113281 1.515625,-1.1875 1.484375,-1.257812 1.445312,-1.332031 1.40625,-1.40625 1.363281,-1.476562 1.320312,-1.546875 1.28125,-1.609375 1.238281,-1.671875 1.203125,-1.726562 1.171875,-1.78125 Z m 0,0"
id="path143"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph4-2"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.421875,-1.140625 c 0.113281,0.0625 0.226563,0.125 0.34375,0.1875 0.113281,0.0625 0.226563,0.125 0.34375,0.1875 0.113281,0.054687 0.234375,0.109375 0.359375,0.171875 0.125,0.054688 0.253906,0.101562 0.390625,0.140625 C 2.835938,-0.410156 2.8125,-0.367188 2.78125,-0.328125 2.757812,-0.296875 2.734375,-0.257812 2.703125,-0.21875 2.679688,-0.175781 2.65625,-0.132812 2.625,-0.09375 2.601562,-0.0507812 2.585938,-0.0078125 2.578125,0.03125 2.515625,0 2.4375,-0.0351562 2.34375,-0.078125 2.257812,-0.128906 2.171875,-0.179688 2.078125,-0.234375 1.984375,-0.296875 1.890625,-0.351562 1.796875,-0.40625 1.710938,-0.457031 1.632812,-0.5 1.5625,-0.53125 1.5,-0.5625 1.425781,-0.597656 1.34375,-0.640625 1.269531,-0.691406 1.191406,-0.738281 1.109375,-0.78125 1.035156,-0.832031 0.957031,-0.875 0.875,-0.90625 0.789062,-0.945312 0.710938,-0.976562 0.640625,-1 0.609375,-0.96875 0.59375,-0.921875 0.59375,-0.859375 c 0,0.054687 0,0.101563 0,0.140625 V -0.125 H 0.265625 c 0.007813,-0.070312 0.007813,-0.148438 0,-0.234375 0,-0.09375 -0.007813,-0.21875 -0.015625,-0.375 0,-0.070313 0,-0.140625 0,-0.203125 0.007812,-0.070312 0.015625,-0.140625 0.015625,-0.203125 0.007813,-0.070313 0.015625,-0.144531 0.015625,-0.21875 0,-0.082031 0,-0.160156 0,-0.234375 v -0.234375 c 0,-0.082031 0,-0.160156 0,-0.234375 0,-0.082031 0.003906,-0.160156 0.015625,-0.234375 H 0.09375 c 0.007812,-0.0625 0.007812,-0.117187 0,-0.171875 -0.0117188,-0.0625 -0.015625,-0.125 -0.015625,-0.1875 0,-0.050781 0.0078125,-0.113281 0.03125,-0.1875 0.03125,-0.00781 0.0625,-0.015625 0.09375,-0.015625 0.039063,0 0.078125,0 0.109375,0 0.113281,0 0.21875,0.00781 0.3125,0.015625 0.195312,0.023438 0.394531,0.039062 0.59375,0.046875 0.195312,0 0.390625,0 0.578125,0 0.09375,0 0.179687,0.011719 0.265625,0.03125 0.09375,0.023437 0.171875,0.054687 0.234375,0.09375 0.070313,0.042969 0.128906,0.101563 0.171875,0.171875 0.050781,0.074219 0.082031,0.164062 0.09375,0.265625 0.00781,0.167969 -0.015625,0.3125 -0.078125,0.4375 -0.0625,0.125 -0.152344,0.230469 -0.265625,0.3125 -0.105469,0.085937 -0.230469,0.15625 -0.375,0.21875 -0.136719,0.054687 -0.277344,0.09375 -0.421875,0.125 z m -0.5,-0.421875 c 0.039063,-0.00781 0.085937,-0.015625 0.140625,-0.015625 0.050781,0 0.097656,0 0.140625,0 0.257813,-0.00781 0.507813,-0.070313 0.75,-0.1875 C 1.972656,-1.773438 2,-1.785156 2.03125,-1.796875 2.0625,-1.816406 2.085938,-1.835938 2.109375,-1.859375 2.128906,-1.890625 2.144531,-1.914062 2.15625,-1.9375 c 0.00781,-0.03125 0.00781,-0.066406 0,-0.109375 0,-0.039063 -0.011719,-0.070313 -0.03125,-0.09375 C 2.101562,-2.160156 2.078125,-2.175781 2.046875,-2.1875 2.015625,-2.195312 1.984375,-2.203125 1.953125,-2.203125 1.929688,-2.210938 1.90625,-2.21875 1.875,-2.21875 1.738281,-2.25 1.597656,-2.265625 1.453125,-2.265625 1.316406,-2.273438 1.175781,-2.28125 1.03125,-2.28125 c -0.042969,-0.00781 -0.085938,-0.00781 -0.125,0 -0.042969,0.011719 -0.085938,0.023438 -0.125,0.03125 -0.023438,0 -0.042969,0 -0.0625,0 -0.011719,0 -0.023438,0 -0.03125,0 0,0 -0.007812,0.011719 -0.015625,0.03125 0,0.011719 0,0.027344 0,0.046875 0,0.0625 -0.007813,0.136719 -0.015625,0.21875 -0.011719,0.074219 -0.011719,0.15625 0,0.25 0,0 0,0.023437 0,0.0625 0,0.03125 -0.007812,0.054687 -0.015625,0.0625 0.050781,0 0.097656,0.00781 0.140625,0.015625 0.039062,0.011719 0.085938,0.011719 0.140625,0 z m 0,0"
id="path146"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph4-3"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.9375,-2.796875 c 0,0.085937 -0.00781,0.167969 -0.015625,0.25 -0.011719,0.085937 -0.011719,0.171875 0,0.265625 -0.03125,-0.00781 -0.0625,-0.015625 -0.09375,-0.015625 -0.023437,0 -0.046875,0 -0.078125,0 -0.054688,0 -0.105469,0 -0.15625,0 -0.042969,0 -0.085938,0.00781 -0.125,0.015625 -0.074219,0.011719 -0.148438,0.015625 -0.21875,0.015625 -0.0625,0 -0.132812,0.011719 -0.203125,0.03125 -0.023437,0.355469 -0.03125,0.710937 -0.03125,1.0625 0,0.199219 0.00391,0.398437 0.015625,0.59375 C 1.039062,-0.390625 1.050781,-0.195312 1.0625,0 1.019531,-0.0195312 0.96875,-0.0234375 0.90625,-0.015625 0.84375,-0.00390625 0.785156,0 0.734375,0 0.722656,-0.0390625 0.71875,-0.078125 0.71875,-0.109375 c 0,-0.039063 0,-0.082031 0,-0.125 0,-0.113281 0,-0.234375 0,-0.359375 0.007812,-0.132812 0.015625,-0.257812 0.015625,-0.375 V -1.0625 c 0,-0.125 -0.007813,-0.242188 -0.015625,-0.359375 0,-0.113281 0,-0.234375 0,-0.359375 0,-0.039062 0,-0.082031 0,-0.125 0,-0.039062 0,-0.085938 0,-0.140625 -0.011719,-0.050781 -0.015625,-0.09375 -0.015625,-0.125 0,-0.03125 -0.027344,-0.050781 -0.078125,-0.0625 -0.054688,0 -0.105469,0.00781 -0.15625,0.015625 -0.042969,0 -0.089844,0 -0.140625,0 -0.011719,0 -0.03125,0 -0.0625,0 -0.023437,0 -0.046875,0.00781 -0.078125,0.015625 -0.023438,0 -0.046875,0 -0.078125,0 -0.0234375,0 -0.0390625,-0.00391 -0.046875,-0.015625 -0.0117188,-0.00781 -0.0234375,-0.035156 -0.03125,-0.078125 -0.0117188,-0.050781 -0.015625,-0.101563 -0.015625,-0.15625 0,-0.0625 0,-0.117187 0,-0.171875 0.0078125,-0.050781 0.015625,-0.09375 0.015625,-0.125 0.070312,0.023438 0.148438,0.027344 0.234375,0.015625 0.09375,-0.00781 0.175781,-0.019531 0.25,-0.03125 0.113281,-0.00781 0.222656,-0.015625 0.328125,-0.015625 0.039062,0 0.082031,0 0.125,0 0.050781,0 0.097656,0 0.140625,0 0.070313,0.011719 0.144531,0.015625 0.21875,0.015625 0.070313,-0.00781 0.144531,-0.015625 0.21875,-0.015625 0.03125,-0.00781 0.0625,-0.00781 0.09375,0 0.039063,0 0.082031,0 0.125,0 0.03125,0 0.054687,0 0.078125,0 0.03125,0 0.0625,-0.00391 0.09375,-0.015625 z m 0,0"
id="path149"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph4-4"
style="overflow:visible">
<path
style="stroke:none"
d=""
id="path152"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph4-5"
style="overflow:visible">
<path
style="stroke:none"
d="M 2.421875,-1.359375 C 2.453125,-1.335938 2.476562,-1.3125 2.5,-1.28125 c 0.03125,0.03125 0.054688,0.070312 0.078125,0.109375 0.03125,0.042969 0.054687,0.085937 0.078125,0.125 0.019531,0.042969 0.03125,0.078125 0.03125,0.109375 0,0.074219 -0.023438,0.15625 -0.0625,0.25 -0.03125,0.085938 -0.070312,0.15625 -0.109375,0.21875 -0.117187,0.148438 -0.261719,0.234375 -0.4375,0.265625 C 1.929688,-0.171875 1.78125,-0.144531 1.625,-0.125 1.476562,-0.101562 1.328125,-0.0820312 1.171875,-0.0625 1.097656,-0.0507812 1.019531,-0.0390625 0.9375,-0.03125 0.863281,-0.0195312 0.785156,-0.015625 0.703125,-0.015625 H 0.1875 v -0.0625 c -0.011719,-0.125 -0.011719,-0.25 0,-0.375 0.019531,-0.125 0.035156,-0.25 0.046875,-0.375 0.019531,-0.125 0.035156,-0.25 0.046875,-0.375 0.019531,-0.132813 0.03125,-0.265625 0.03125,-0.390625 0,-0.101562 0.003906,-0.203125 0.015625,-0.296875 C 0.347656,-1.992188 0.351562,-2.09375 0.34375,-2.1875 v -0.09375 c -0.042969,-0.00781 -0.078125,-0.015625 -0.109375,-0.015625 -0.03125,0 -0.0625,0.011719 -0.09375,0.03125 0,-0.050781 -0.007813,-0.101563 -0.015625,-0.15625 0,-0.050781 0,-0.101563 0,-0.15625 0,-0.0625 0.003906,-0.128906 0.015625,-0.203125 C 0.191406,-2.789062 0.25,-2.800781 0.3125,-2.8125 0.382812,-2.820312 0.445312,-2.828125 0.5,-2.828125 c 0.019531,0 0.054688,-0.00391 0.109375,-0.015625 C 0.660156,-2.863281 0.695312,-2.875 0.71875,-2.875 0.789062,-2.882812 0.847656,-2.890625 0.890625,-2.890625 0.929688,-2.898438 0.96875,-2.90625 1,-2.90625 c 0.0625,0 0.125,0 0.1875,0 0.0625,0 0.125,0 0.1875,0 0.070312,0 0.132812,0 0.1875,0 0.0625,0 0.128906,0 0.203125,0 0.082031,0 0.171875,0.015625 0.265625,0.046875 0.101562,0.023437 0.191406,0.058594 0.265625,0.109375 0.082031,0.042969 0.148437,0.101562 0.203125,0.171875 0.0625,0.074219 0.09375,0.164063 0.09375,0.265625 0,0.085938 -0.015625,0.167969 -0.046875,0.25 -0.03125,0.074219 -0.078125,0.148438 -0.140625,0.21875 -0.0625,0.0625 -0.132812,0.121094 -0.203125,0.171875 -0.0625,0.054687 -0.136719,0.101563 -0.21875,0.140625 0.070313,0.03125 0.144531,0.058594 0.21875,0.078125 0.070313,0.023437 0.144531,0.054687 0.21875,0.09375 z m -1.25,-1.046875 c -0.074219,0 -0.152344,0.00781 -0.234375,0.015625 -0.074219,0 -0.148438,0.015625 -0.21875,0.046875 0,0.09375 -0.007812,0.195312 -0.015625,0.296875 -0.011719,0.09375 -0.015625,0.1875 -0.015625,0.28125 0.039062,0 0.082031,0 0.125,0 0.050781,-0.00781 0.097656,-0.015625 0.140625,-0.015625 0.039063,-0.00781 0.082031,-0.015625 0.125,-0.015625 C 1.117188,-1.804688 1.148438,-1.8125 1.171875,-1.8125 H 1.3125 C 1.375,-1.820312 1.445312,-1.832031 1.53125,-1.84375 1.613281,-1.863281 1.6875,-1.882812 1.75,-1.90625 1.820312,-1.914062 1.890625,-1.929688 1.953125,-1.953125 2.023438,-1.972656 2.09375,-2.007812 2.15625,-2.0625 2.207031,-2.101562 2.226562,-2.140625 2.21875,-2.171875 2.21875,-2.203125 2.203125,-2.226562 2.171875,-2.25 2.140625,-2.28125 2.09375,-2.304688 2.03125,-2.328125 1.976562,-2.347656 1.921875,-2.363281 1.859375,-2.375 1.804688,-2.382812 1.75,-2.390625 1.6875,-2.390625 1.632812,-2.398438 1.597656,-2.40625 1.578125,-2.40625 c -0.074219,0 -0.148437,0 -0.21875,0 -0.0625,-0.00781 -0.125,-0.00781 -0.1875,0 z M 1.9375,-0.6875 c 0.03125,0 0.066406,-0.003906 0.109375,-0.015625 0.039063,-0.007813 0.082031,-0.019531 0.125,-0.03125 C 2.210938,-0.753906 2.25,-0.773438 2.28125,-0.796875 2.3125,-0.828125 2.328125,-0.851562 2.328125,-0.875 2.328125,-0.90625 2.3125,-0.929688 2.28125,-0.953125 2.25,-0.972656 2.210938,-0.992188 2.171875,-1.015625 2.140625,-1.035156 2.101562,-1.054688 2.0625,-1.078125 2.019531,-1.097656 1.984375,-1.113281 1.953125,-1.125 1.796875,-1.175781 1.632812,-1.210938 1.46875,-1.234375 1.300781,-1.253906 1.117188,-1.265625 0.921875,-1.265625 c -0.042969,0 -0.085937,0.00781 -0.125,0.015625 -0.042969,0 -0.085937,0 -0.125,0 -0.011719,0.054688 -0.015625,0.109375 -0.015625,0.171875 0,0.0625 0,0.121094 0,0.171875 -0.011719,0.054688 -0.023438,0.117188 -0.03125,0.1875 0,0.0625 0,0.121094 0,0.171875 h 0.109375 c 0.113281,0 0.226563,-0.007813 0.34375,-0.03125 C 1.191406,-0.597656 1.289062,-0.613281 1.375,-0.625 1.46875,-0.632812 1.5625,-0.640625 1.65625,-0.640625 1.75,-0.648438 1.84375,-0.664062 1.9375,-0.6875 Z m 0,0"
id="path155"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph4-6"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.953125,-2.609375 c 0,-0.00781 0.019531,-0.00781 0.0625,0 0.039063,0 0.082031,0 0.125,0 0.050781,0 0.097656,0.00781 0.140625,0.015625 0.050781,0 0.09375,-0.00391 0.125,-0.015625 0,0.042969 -0.011719,0.085937 -0.03125,0.125 -0.023438,0.042969 -0.046875,0.085937 -0.078125,0.125 -0.03125,0.042969 -0.0625,0.085937 -0.09375,0.125 -0.03125,0.03125 -0.058594,0.0625 -0.078125,0.09375 -0.054688,0.085937 -0.105469,0.167969 -0.15625,0.25 -0.042969,0.085937 -0.085938,0.167969 -0.125,0.25 -0.023438,0.03125 -0.042969,0.0625 -0.0625,0.09375 C 1.769531,-1.523438 1.757812,-1.503906 1.75,-1.484375 1.6875,-1.378906 1.625,-1.28125 1.5625,-1.1875 1.507812,-1.101562 1.453125,-1.015625 1.390625,-0.921875 L 1.25,-0.640625 c -0.011719,0.011719 -0.023438,0.023437 -0.03125,0.03125 0,0 0,0.007813 0,0.015625 -0.054688,0.125 -0.105469,0.25 -0.15625,0.375 C 1.019531,-0.101562 0.984375,0.015625 0.953125,0.140625 0.878906,0.140625 0.800781,0.132812 0.71875,0.125 0.644531,0.113281 0.578125,0.117188 0.515625,0.140625 c 0.03125,-0.0429688 0.054687,-0.09375 0.078125,-0.15625 0.019531,-0.0625 0.046875,-0.125 0.078125,-0.1875 0.019531,-0.050781 0.046875,-0.101563 0.078125,-0.15625 0.03125,-0.0625 0.0625,-0.125 0.09375,-0.1875 C 0.875,-0.597656 0.90625,-0.664062 0.9375,-0.75 0.976562,-0.832031 1.015625,-0.898438 1.046875,-0.953125 1.023438,-0.972656 1.015625,-0.992188 1.015625,-1.015625 0.960938,-1.097656 0.910156,-1.171875 0.859375,-1.234375 0.804688,-1.296875 0.753906,-1.375 0.703125,-1.46875 0.648438,-1.5625 0.585938,-1.648438 0.515625,-1.734375 c -0.0625,-0.09375 -0.125,-0.1875 -0.1875,-0.28125 C 0.273438,-2.097656 0.207031,-2.1875 0.125,-2.28125 0.0507812,-2.375 0,-2.460938 -0.03125,-2.546875 c 0.0507812,0 0.0976562,0.00781 0.140625,0.015625 0.039063,0 0.085937,0 0.140625,0 0.050781,-0.00781 0.101562,-0.015625 0.15625,-0.015625 0.050781,0 0.101562,0 0.15625,0 0.039062,0.105469 0.09375,0.203125 0.15625,0.296875 0.0625,0.09375 0.125,0.1875 0.1875,0.28125 0.070312,0.085938 0.140625,0.171875 0.203125,0.265625 0.070313,0.085937 0.140625,0.167969 0.203125,0.25 0.0625,-0.132813 0.128906,-0.269531 0.203125,-0.40625 0.082031,-0.144531 0.164063,-0.28125 0.25,-0.40625 0.03125,-0.0625 0.0625,-0.117187 0.09375,-0.171875 0.03125,-0.0625 0.0625,-0.117188 0.09375,-0.171875 z m 0,0"
id="path158"
inkscape:connector-curvature="0" />
</symbol>
</g>
</defs>
<g
id="surface401"
transform="translate(-11.546875,-260.48828)">
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
d="m -90.001953,126.00049 h 180 v -252 h -180 z m 0,0"
id="path195"
inkscape:connector-curvature="0"
transform="translate(102.04883,386.98779)" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
d="m -81.001953,117.00049 h 162 v -234 h -162 z m 0,0"
transform="translate(102.04883,386.98779)"
id="path197"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
d="M 21.050781,270.01172 H 183.04687 v 234 H 21.050781 Z m 0,0"
transform="matrix(1,0,0,-1,0,774)"
id="path205"
inkscape:connector-curvature="0" />
<path
style="fill:#cfd1d4;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 179.33984,274.05078 H 24.757812 v 17.53906 H 179.33984 Z m 0,0"
transform="matrix(1,0,0,-1,0,774)"
id="path215"
inkscape:connector-curvature="0" />
<path
style="fill:#cfd1d4;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 179.33984,301.05078 H 24.757812 v 85.53906 H 179.33984 Z m 0,0"
transform="matrix(1,0,0,-1,0,774)"
id="path217"
inkscape:connector-curvature="0" />
<path
style="fill:#cfd1d4;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 171.34766,458.83984 H 34.003906 v 9.5 H 171.34766 Z m 0,0"
transform="matrix(1,0,0,-1,0,774)"
id="path251"
inkscape:connector-curvature="0" />
<path
style="fill:#ebe130;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 111.42188,289.58984 H 29.671875 v 8.5 h 81.750005 z m 0,0"
transform="matrix(1,0,0,-1,0,774)"
id="path389"
inkscape:connector-curvature="0" />
<g
style="fill:#000000;fill-opacity:1"
id="g393">
<use
xlink:href="#glyph1-1"
x="51.171902"
y="482.76999"
id="use391"
width="100%"
height="100%" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g399">
<use
xlink:href="#glyph1-2"
x="55.691898"
y="482.76999"
id="use395"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="61.311901"
y="482.76999"
id="use397"
width="100%"
height="100%" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g411">
<use
xlink:href="#glyph1-1"
x="64.591904"
y="482.76999"
id="use401"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-4"
x="69.411903"
y="482.76999"
id="use403"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-5"
x="74.631897"
y="482.76999"
id="use405"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-6"
x="79.671898"
y="482.76999"
id="use407"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-2"
x="84.211899"
y="482.76999"
id="use409"
width="100%"
height="100%" />
</g>
<path
style="fill:#ebe130;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 111.42188,384.58984 H 29.671875 v 8.5 h 81.750005 z m 0,0"
transform="matrix(1,0,0,-1,0,774)"
id="path413"
inkscape:connector-curvature="0" />
<g
style="fill:#000000;fill-opacity:1"
id="g431">
<use
xlink:href="#glyph1-7"
x="49.1362"
y="387.771"
id="use415"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-1"
x="55.336201"
y="387.771"
id="use417"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-8"
x="60.1562"
y="387.771"
id="use419"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-6"
x="65.866203"
y="387.771"
id="use421"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-9"
x="70.406197"
y="387.771"
id="use423"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-10"
x="74.686203"
y="387.771"
id="use425"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-11"
x="79.686203"
y="387.771"
id="use427"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-1"
x="83.446198"
y="387.771"
id="use429"
width="100%"
height="100%" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g435">
<use
xlink:href="#glyph1-12"
x="87.576202"
y="387.771"
id="use433"
width="100%"
height="100%" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:29.1107502px;line-height:18.19421959px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.72776878"
x="26.345028"
y="296.78983"
id="name"
transform="scale(0.97035846,1.030547)"
inkscape:label="#text1468"><tspan
sodipodi:role="line"
id="tspan1466"
x="26.345028"
y="296.78983"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:29.1107502px;font-family:'Armor Piercing';-inkscape-font-specification:'Armor Piercing, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.72776878;stroke-opacity:1">Villain Name</tspan></text>
<text
y="313.05707"
x="77.036797"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.99999905px;font-family:'RedStateBlueState BB';-inkscape-font-specification:RedStateBlueStateBB-Italic;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994"
id="title"
inkscape:label="#text116">
<tspan
style="stroke-width:0.99999994"
x="77.036797"
y="313.05707"
sodipodi:role="line"
id="tspan114">Villain Title</tspan>
</text>
<text
y="508.04547"
x="180.13741"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29999971px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:end;writing-mode:lr-tb;text-anchor:end;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994"
id="artist"
inkscape:label="#text558">
<tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29999971px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:end;writing-mode:lr-tb;text-anchor:end;fill:#ffffff;stroke-width:0.99999994"
x="180.13741"
y="508.04547"
sodipodi:role="line"
id="tspan556">art by</tspan>
</text>
<flowRoot
xml:space="preserve"
id="gameplay"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:11.7329998px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="matrix(0.75,0,0,0.75,165.16747,248.25061)"
inkscape:label="#flowRoot4789"><flowRegion
id="flowRegion4791"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"><rect
id="rect4793"
width="197.69621"
height="107.04834"
x="-183.20657"
y="189.68585"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start" /></flowRegion><flowPara
id="flowPara4795">Text Here</flowPara><flowPara
id="flowPara4797" /></flowRoot> <g
id="setupBox"
inkscape:label="#g4855">
<path
inkscape:connector-curvature="0"
id="path219"
transform="matrix(1,0,0,-1,0,774)"
d="M 179.33984,396.05078 H 24.757812 v 50.53906 H 179.33984 Z m 0,0"
style="fill:#cfd1d4;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path437"
transform="matrix(1,0,0,-1,0,774)"
d="M 111.42188,444.58984 H 29.671875 v 8.5 h 81.750005 z m 0,0"
style="fill:#ebe130;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1" />
<g
id="g449"
style="fill:#000000;fill-opacity:1">
<use
height="100%"
width="100%"
id="use439"
y="327.771"
x="58.896"
xlink:href="#glyph1-13" />
<use
height="100%"
width="100%"
id="use441"
y="327.771"
x="63.855999"
xlink:href="#glyph1-6" />
<use
height="100%"
width="100%"
id="use443"
y="327.771"
x="68.396004"
xlink:href="#glyph1-14" />
<use
height="100%"
width="100%"
id="use445"
y="327.771"
x="72.066002"
xlink:href="#glyph1-15" />
<use
height="100%"
width="100%"
id="use447"
y="327.771"
x="77.195999"
xlink:href="#glyph1-10" />
</g>
<flowRoot
inkscape:label="#flowRoot4789"
transform="matrix(0.75,0,0,0.75,165.16747,188.24761)"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:11.7329998px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="setup"
xml:space="preserve"><flowRegion
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="flowRegion4791-9"><rect
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"
y="189.68585"
x="-183.20657"
height="107.04834"
width="197.69621"
id="rect4793-7" /></flowRegion><flowPara
id="flowPara4795-4">Text Here</flowPara><flowPara
id="flowPara4797-3" /></flowRoot> </g>
<flowRoot
xml:space="preserve"
id="advanced"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:11.7329998px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="matrix(0.75,0,0,0.75,165.16747,343.2456)"
inkscape:label="#flowRoot4789"><flowRegion
id="flowRegion4791-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start"><rect
id="rect4793-1"
width="197.69621"
height="107.04834"
x="-183.20657"
y="189.68585"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;font-family:'RedStateBlueState BB';-inkscape-font-specification:'RedStateBlueState BB, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start" /></flowRegion><flowPara
id="flowPara4795-40">Text Here</flowPara><flowPara
id="flowPara4797-31" /></flowRoot> </g>
</svg>

After

Width:  |  Height:  |  Size: 125 KiB