pymdownx-mahjong 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. pymdownx_mahjong/__init__.py +23 -0
  2. pymdownx_mahjong/assets/dark/0m.svg +333 -0
  3. pymdownx_mahjong/assets/dark/0p.svg +491 -0
  4. pymdownx_mahjong/assets/dark/0s.svg +678 -0
  5. pymdownx_mahjong/assets/dark/1m.svg +273 -0
  6. pymdownx_mahjong/assets/dark/1p.svg +551 -0
  7. pymdownx_mahjong/assets/dark/1s.svg +764 -0
  8. pymdownx_mahjong/assets/dark/1z.svg +242 -0
  9. pymdownx_mahjong/assets/dark/2m.svg +283 -0
  10. pymdownx_mahjong/assets/dark/2p.svg +396 -0
  11. pymdownx_mahjong/assets/dark/2s.svg +369 -0
  12. pymdownx_mahjong/assets/dark/2z.svg +270 -0
  13. pymdownx_mahjong/assets/dark/3m.svg +289 -0
  14. pymdownx_mahjong/assets/dark/3p.svg +356 -0
  15. pymdownx_mahjong/assets/dark/3s.svg +462 -0
  16. pymdownx_mahjong/assets/dark/3z.svg +248 -0
  17. pymdownx_mahjong/assets/dark/4m.svg +289 -0
  18. pymdownx_mahjong/assets/dark/4p.svg +403 -0
  19. pymdownx_mahjong/assets/dark/4s.svg +570 -0
  20. pymdownx_mahjong/assets/dark/4z.svg +236 -0
  21. pymdownx_mahjong/assets/dark/5m.svg +313 -0
  22. pymdownx_mahjong/assets/dark/5p.svg +450 -0
  23. pymdownx_mahjong/assets/dark/5s.svg +608 -0
  24. pymdownx_mahjong/assets/dark/5z.svg +214 -0
  25. pymdownx_mahjong/assets/dark/6m.svg +294 -0
  26. pymdownx_mahjong/assets/dark/6p.svg +473 -0
  27. pymdownx_mahjong/assets/dark/6s.svg +695 -0
  28. pymdownx_mahjong/assets/dark/6z.svg +324 -0
  29. pymdownx_mahjong/assets/dark/7m.svg +283 -0
  30. pymdownx_mahjong/assets/dark/7p.svg +516 -0
  31. pymdownx_mahjong/assets/dark/7s.svg +628 -0
  32. pymdownx_mahjong/assets/dark/7z.svg +232 -0
  33. pymdownx_mahjong/assets/dark/8m.svg +283 -0
  34. pymdownx_mahjong/assets/dark/8p.svg +566 -0
  35. pymdownx_mahjong/assets/dark/8s.svg +712 -0
  36. pymdownx_mahjong/assets/dark/9m.svg +289 -0
  37. pymdownx_mahjong/assets/dark/9p.svg +609 -0
  38. pymdownx_mahjong/assets/dark/9s.svg +762 -0
  39. pymdownx_mahjong/assets/dark/back.svg +285 -0
  40. pymdownx_mahjong/assets/dark/blank.svg +225 -0
  41. pymdownx_mahjong/assets/dark/front.svg +334 -0
  42. pymdownx_mahjong/assets/light/0m.svg +319 -0
  43. pymdownx_mahjong/assets/light/0p.svg +460 -0
  44. pymdownx_mahjong/assets/light/0s.svg +614 -0
  45. pymdownx_mahjong/assets/light/1m.svg +276 -0
  46. pymdownx_mahjong/assets/light/1p.svg +544 -0
  47. pymdownx_mahjong/assets/light/1s.svg +764 -0
  48. pymdownx_mahjong/assets/light/1z.svg +242 -0
  49. pymdownx_mahjong/assets/light/2m.svg +286 -0
  50. pymdownx_mahjong/assets/light/2p.svg +400 -0
  51. pymdownx_mahjong/assets/light/2s.svg +372 -0
  52. pymdownx_mahjong/assets/light/2z.svg +270 -0
  53. pymdownx_mahjong/assets/light/3m.svg +292 -0
  54. pymdownx_mahjong/assets/light/3p.svg +362 -0
  55. pymdownx_mahjong/assets/light/3s.svg +462 -0
  56. pymdownx_mahjong/assets/light/3z.svg +248 -0
  57. pymdownx_mahjong/assets/light/4m.svg +292 -0
  58. pymdownx_mahjong/assets/light/4p.svg +407 -0
  59. pymdownx_mahjong/assets/light/4s.svg +573 -0
  60. pymdownx_mahjong/assets/light/4z.svg +236 -0
  61. pymdownx_mahjong/assets/light/5m.svg +313 -0
  62. pymdownx_mahjong/assets/light/5p.svg +454 -0
  63. pymdownx_mahjong/assets/light/5s.svg +608 -0
  64. pymdownx_mahjong/assets/light/5z.svg +214 -0
  65. pymdownx_mahjong/assets/light/6m.svg +297 -0
  66. pymdownx_mahjong/assets/light/6p.svg +477 -0
  67. pymdownx_mahjong/assets/light/6s.svg +688 -0
  68. pymdownx_mahjong/assets/light/6z.svg +309 -0
  69. pymdownx_mahjong/assets/light/7m.svg +283 -0
  70. pymdownx_mahjong/assets/light/7p.svg +567 -0
  71. pymdownx_mahjong/assets/light/7s.svg +628 -0
  72. pymdownx_mahjong/assets/light/7z.svg +232 -0
  73. pymdownx_mahjong/assets/light/8m.svg +286 -0
  74. pymdownx_mahjong/assets/light/8p.svg +570 -0
  75. pymdownx_mahjong/assets/light/8s.svg +712 -0
  76. pymdownx_mahjong/assets/light/9m.svg +292 -0
  77. pymdownx_mahjong/assets/light/9p.svg +623 -0
  78. pymdownx_mahjong/assets/light/9s.svg +748 -0
  79. pymdownx_mahjong/assets/light/back.svg +285 -0
  80. pymdownx_mahjong/assets/light/blank.svg +224 -0
  81. pymdownx_mahjong/assets/light/front.svg +334 -0
  82. pymdownx_mahjong/css/mahjong.css +416 -0
  83. pymdownx_mahjong/extension.py +206 -0
  84. pymdownx_mahjong/inline.py +78 -0
  85. pymdownx_mahjong/parser.py +363 -0
  86. pymdownx_mahjong/renderer.py +468 -0
  87. pymdownx_mahjong/superfences.py +126 -0
  88. pymdownx_mahjong/tiles.py +85 -0
  89. pymdownx_mahjong/utils.py +90 -0
  90. pymdownx_mahjong-1.0.0.dist-info/METADATA +44 -0
  91. pymdownx_mahjong-1.0.0.dist-info/RECORD +94 -0
  92. pymdownx_mahjong-1.0.0.dist-info/WHEEL +4 -0
  93. pymdownx_mahjong-1.0.0.dist-info/entry_points.txt +2 -0
  94. pymdownx_mahjong-1.0.0.dist-info/licenses/LICENSE +352 -0
@@ -0,0 +1,712 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
6
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+ xmlns:cc="http://creativecommons.org/ns#"
8
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+ xmlns:svg="http://www.w3.org/2000/svg"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="300"
14
+ height="400"
15
+ viewBox="0 0 300 400"
16
+ id="svg2"
17
+ version="1.1"
18
+ inkscape:version="0.91 r13725"
19
+ sodipodi:docname="Sou8.svg"
20
+ inkscape:export-filename="C:\Users\Fluffy\Documents\Projects\ExtraRiichi\Sou8.png"
21
+ inkscape:export-xdpi="180"
22
+ inkscape:export-ydpi="180">
23
+ <defs
24
+ id="defs4">
25
+ <inkscape:path-effect
26
+ effect="skeletal"
27
+ id="path-effect7963"
28
+ is_visible="true"
29
+ pattern="m -90.825902,-314.06958 23.03016,41.38503 13.798268,-41.38503 z"
30
+ copytype="repeated_stretched"
31
+ prop_scale="1"
32
+ scale_y_rel="false"
33
+ spacing="0"
34
+ normal_offset="0"
35
+ tang_offset="0"
36
+ prop_units="false"
37
+ vertical_pattern="false"
38
+ fuse_tolerance="0"
39
+ pattern-nodetypes="cccc" />
40
+ <inkscape:path-effect
41
+ effect="skeletal"
42
+ id="path-effect7830"
43
+ is_visible="true"
44
+ pattern="M -12.828427,33.715729 -17,-11 l 9.0000001,0 z"
45
+ copytype="repeated_stretched"
46
+ prop_scale="-1"
47
+ scale_y_rel="false"
48
+ spacing="5.1"
49
+ normal_offset="0"
50
+ tang_offset="0"
51
+ prop_units="false"
52
+ vertical_pattern="false"
53
+ fuse_tolerance="0"
54
+ pattern-nodetypes="cccc" />
55
+ <linearGradient
56
+ id="linearGradient10055"
57
+ osb:paint="solid">
58
+ <stop
59
+ style="stop-color:#000000;stop-opacity:1;"
60
+ offset="0"
61
+ id="stop10057" />
62
+ </linearGradient>
63
+ <marker
64
+ inkscape:stockid="Arrow1Lstart"
65
+ orient="auto"
66
+ refY="0"
67
+ refX="0"
68
+ id="Arrow1Lstart"
69
+ style="overflow:visible"
70
+ inkscape:isstock="true">
71
+ <path
72
+ id="path4978"
73
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
74
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ff5c00;stroke-width:1pt;stroke-opacity:1"
75
+ transform="matrix(0.8,0,0,0.8,10,0)"
76
+ inkscape:connector-curvature="0" />
77
+ </marker>
78
+ <clipPath
79
+ clipPathUnits="userSpaceOnUse"
80
+ id="clipPath4243">
81
+ <circle
82
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
83
+ id="circle4245"
84
+ cx="-264.65997"
85
+ cy="-198.20665"
86
+ r="293.95438" />
87
+ </clipPath>
88
+ <clipPath
89
+ clipPathUnits="userSpaceOnUse"
90
+ id="clipPath7847">
91
+ <ellipse
92
+ style="opacity:1;fill:#822600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
93
+ id="ellipse7849"
94
+ cx="394"
95
+ cy="552.36218"
96
+ rx="349.49533"
97
+ ry="216" />
98
+ </clipPath>
99
+ <clipPath
100
+ clipPathUnits="userSpaceOnUse"
101
+ id="clipPath4243-1">
102
+ <circle
103
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
104
+ id="circle4245-4"
105
+ cx="-264.65997"
106
+ cy="-198.20665"
107
+ r="293.95438" />
108
+ </clipPath>
109
+ <clipPath
110
+ clipPathUnits="userSpaceOnUse"
111
+ id="clipPath7876">
112
+ <circle
113
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
114
+ id="circle7878"
115
+ cx="-264.65997"
116
+ cy="-198.20665"
117
+ r="293.95438" />
118
+ </clipPath>
119
+ <clipPath
120
+ clipPathUnits="userSpaceOnUse"
121
+ id="clipPath14693">
122
+ <rect
123
+ style="opacity:1;fill:#a53c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
124
+ id="rect14695"
125
+ width="131.78395"
126
+ height="168.82127"
127
+ x="-332.59583"
128
+ y="383.49765"
129
+ rx="1.2551664"
130
+ ry="3.7514515"
131
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
132
+ </clipPath>
133
+ <clipPath
134
+ clipPathUnits="userSpaceOnUse"
135
+ id="clipPath14952">
136
+ <ellipse
137
+ style="opacity:1;fill:#a53c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
138
+ id="ellipse14954"
139
+ cx="-271.34384"
140
+ cy="647.25604"
141
+ rx="69.057365"
142
+ ry="116.91089"
143
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
144
+ </clipPath>
145
+ <pattern
146
+ y="0"
147
+ x="0"
148
+ height="6"
149
+ width="6"
150
+ patternUnits="userSpaceOnUse"
151
+ id="EMFhbasepattern" />
152
+ </defs>
153
+ <sodipodi:namedview
154
+ id="base"
155
+ pagecolor="#000000"
156
+ bordercolor="#666666"
157
+ borderopacity="1"
158
+ inkscape:pageopacity="0"
159
+ inkscape:pageshadow="2"
160
+ inkscape:zoom="1.8059126"
161
+ inkscape:cx="88.833598"
162
+ inkscape:cy="209.65688"
163
+ inkscape:document-units="px"
164
+ inkscape:current-layer="layer1"
165
+ showgrid="true"
166
+ inkscape:window-width="1920"
167
+ inkscape:window-height="1017"
168
+ inkscape:window-x="1912"
169
+ inkscape:window-y="-8"
170
+ inkscape:window-maximized="1"
171
+ showguides="true"
172
+ inkscape:guide-bbox="true"
173
+ units="px">
174
+ <inkscape:grid
175
+ type="xygrid"
176
+ id="grid4774"
177
+ visible="true"
178
+ dotted="false"
179
+ color="#3f3fff"
180
+ opacity="0.03921569"
181
+ empcolor="#3f3fff"
182
+ empopacity="0.07843137"
183
+ enabled="false" />
184
+ <sodipodi:guide
185
+ position="150,200"
186
+ orientation="0,1"
187
+ id="guide8231"
188
+ inkscape:label=""
189
+ inkscape:color="rgb(0,0,255)" />
190
+ <sodipodi:guide
191
+ position="150,200"
192
+ orientation="1,0"
193
+ id="guide8233"
194
+ inkscape:label=""
195
+ inkscape:color="rgb(0,0,255)" />
196
+ </sodipodi:namedview>
197
+ <metadata
198
+ id="metadata7">
199
+ <rdf:RDF>
200
+ <cc:Work
201
+ rdf:about="">
202
+ <dc:format>image/svg+xml</dc:format>
203
+ <dc:type
204
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
205
+ <dc:title></dc:title>
206
+ </cc:Work>
207
+ </rdf:RDF>
208
+ </metadata>
209
+ <g
210
+ inkscape:label="Layer 1"
211
+ inkscape:groupmode="layer"
212
+ id="layer1"
213
+ transform="translate(0,-652.36216)">
214
+ <g
215
+ id="g4397">
216
+ <ellipse
217
+ ry="18.317427"
218
+ rx="23.672094"
219
+ cy="679.60535"
220
+ cx="239.37206"
221
+ id="ellipse4373"
222
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
223
+ <ellipse
224
+ ry="18.317427"
225
+ rx="23.672094"
226
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
227
+ id="ellipse4377"
228
+ cx="238.20503"
229
+ cy="822.87726" />
230
+ <ellipse
231
+ ry="24.333958"
232
+ rx="31.447418"
233
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
234
+ id="ellipse4387"
235
+ cx="242.50696"
236
+ cy="745.21582" />
237
+ <ellipse
238
+ ry="18.317427"
239
+ rx="23.672094"
240
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
241
+ id="ellipse4375"
242
+ cx="267.15402"
243
+ cy="679.60535" />
244
+ <path
245
+ inkscape:connector-curvature="0"
246
+ id="path4379"
247
+ d="m 253.30864,812.34285 0,-129.17308"
248
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:52.75361252;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
249
+ <ellipse
250
+ cy="682.5849"
251
+ cx="253.30867"
252
+ id="ellipse4381"
253
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
254
+ rx="8.6247368"
255
+ ry="8.3422585" />
256
+ <path
257
+ sodipodi:nodetypes="cc"
258
+ inkscape:connector-curvature="0"
259
+ id="path6969"
260
+ d="m 73.60657,743.8728 63.17505,-0.0606"
261
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:34.7848587;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
262
+ <path
263
+ sodipodi:nodetypes="cc"
264
+ inkscape:connector-curvature="0"
265
+ id="path6941"
266
+ d="M 120.32426,780.51518 70.301832,767.60936"
267
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:46.37981033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
268
+ <path
269
+ sodipodi:nodetypes="cc"
270
+ inkscape:connector-curvature="0"
271
+ id="path6937"
272
+ d="M 66.18363,814.60579 170.64531,728.25421"
273
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:45;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
274
+ <ellipse
275
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
276
+ id="ellipse4273"
277
+ cx="33.681141"
278
+ cy="679.60535"
279
+ rx="23.672094"
280
+ ry="18.317427" />
281
+ <ellipse
282
+ cy="679.60535"
283
+ cx="61.463093"
284
+ id="ellipse4275"
285
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
286
+ rx="23.672094"
287
+ ry="18.317427" />
288
+ <ellipse
289
+ cy="822.87726"
290
+ cx="32.514114"
291
+ id="ellipse4277"
292
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
293
+ rx="23.672094"
294
+ ry="18.317427" />
295
+ <path
296
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:52.75361252;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
297
+ d="m 47.617723,812.34285 0,-129.17308"
298
+ id="path4279"
299
+ inkscape:connector-curvature="0" />
300
+ <ellipse
301
+ ry="8.3422585"
302
+ rx="8.6247368"
303
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
304
+ id="ellipse4291"
305
+ cx="47.61776"
306
+ cy="682.5849" />
307
+ <ellipse
308
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
309
+ id="ellipse4281"
310
+ cx="63.019115"
311
+ cy="822.87726"
312
+ rx="23.672094"
313
+ ry="18.317427" />
314
+ <ellipse
315
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
316
+ id="ellipse4283"
317
+ cx="58.561592"
318
+ cy="745.21582"
319
+ rx="31.447418"
320
+ ry="24.333958" />
321
+ <ellipse
322
+ cy="745.21582"
323
+ cx="36.816036"
324
+ id="ellipse4285"
325
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
326
+ rx="31.447418"
327
+ ry="24.333958" />
328
+ <path
329
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
330
+ d="m 47.617723,684.68605 0,36.2968"
331
+ id="path4287"
332
+ inkscape:connector-curvature="0" />
333
+ <path
334
+ inkscape:connector-curvature="0"
335
+ id="path4289"
336
+ d="m 47.617713,772.7737 0,44.82497"
337
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
338
+ <path
339
+ inkscape:connector-curvature="0"
340
+ id="path4293"
341
+ d="m 38.643557,757.67222 c 4.055553,-6.17768 14.924169,-5.91141 18.337365,0"
342
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
343
+ sodipodi:nodetypes="cc" />
344
+ <path
345
+ sodipodi:nodetypes="cc"
346
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
347
+ d="m 38.643557,740.13267 c 4.055553,-6.17769 14.924169,-5.91142 18.337365,0"
348
+ id="path4295"
349
+ inkscape:connector-curvature="0" />
350
+ <path
351
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:34.7848587;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
352
+ d="m 226.62683,743.8728 -63.17505,-0.0606"
353
+ id="path7498"
354
+ inkscape:connector-curvature="0"
355
+ sodipodi:nodetypes="cc" />
356
+ <ellipse
357
+ ry="18.317427"
358
+ rx="23.672094"
359
+ cy="822.87726"
360
+ cx="268.71002"
361
+ id="ellipse4383"
362
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
363
+ <path
364
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:45;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
365
+ d="M 234.04977,814.60579 129.58809,728.25421"
366
+ id="path7502"
367
+ inkscape:connector-curvature="0"
368
+ sodipodi:nodetypes="cc" />
369
+ <ellipse
370
+ ry="24.333958"
371
+ rx="31.447418"
372
+ cy="745.21582"
373
+ cx="264.2525"
374
+ id="ellipse4385"
375
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
376
+ <rect
377
+ ry="2.7680101"
378
+ rx="1.9463779"
379
+ y="708.35883"
380
+ x="122.3024"
381
+ height="74.040909"
382
+ width="55.249744"
383
+ id="rect6963"
384
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:40;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
385
+ <path
386
+ sodipodi:nodetypes="cc"
387
+ inkscape:connector-curvature="0"
388
+ id="path6975"
389
+ d="m 115.50532,764.14365 6.98247,6.83299"
390
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
391
+ <path
392
+ sodipodi:nodetypes="ccc"
393
+ inkscape:connector-curvature="0"
394
+ id="path6979"
395
+ d="m 136.49462,753.27628 13.38324,-10.62367 0.0495,-14.82294"
396
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
397
+ <path
398
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:46.37981033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
399
+ d="m 179.90914,780.51518 50.02243,-12.90582"
400
+ id="path7500"
401
+ inkscape:connector-curvature="0"
402
+ sodipodi:nodetypes="cc" />
403
+ <path
404
+ inkscape:connector-curvature="0"
405
+ id="path4389"
406
+ d="m 253.30864,684.68605 0,36.2968"
407
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
408
+ <path
409
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
410
+ d="M 230.51372,808.24494 197.53171,781.18239"
411
+ id="path7532"
412
+ inkscape:connector-curvature="0"
413
+ sodipodi:nodetypes="cc" />
414
+ <path
415
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
416
+ d="m 253.30863,772.7737 0,44.82497"
417
+ id="path4391"
418
+ inkscape:connector-curvature="0" />
419
+ <path
420
+ sodipodi:nodetypes="cc"
421
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
422
+ d="m 244.33447,757.67222 c 4.05555,-6.17768 14.92417,-5.91141 18.33737,0"
423
+ id="path4393"
424
+ inkscape:connector-curvature="0" />
425
+ <path
426
+ inkscape:connector-curvature="0"
427
+ id="path4395"
428
+ d="m 244.33447,740.13267 c 4.05555,-6.17769 14.92417,-5.91142 18.33737,0"
429
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
430
+ sodipodi:nodetypes="cc" />
431
+ <path
432
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
433
+ d="m 184.65325,764.06883 -6.83281,6.98263"
434
+ id="path7534"
435
+ inkscape:connector-curvature="0"
436
+ sodipodi:nodetypes="cc" />
437
+ <path
438
+ sodipodi:nodetypes="cc"
439
+ inkscape:connector-curvature="0"
440
+ id="path7536"
441
+ d="M 216.4052,761.71789 202.89881,750.89867"
442
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
443
+ <path
444
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
445
+ d="m 163.73878,753.27628 -13.38324,-10.62367 -0.0494,-14.82294"
446
+ id="path7538"
447
+ inkscape:connector-curvature="0"
448
+ sodipodi:nodetypes="ccc" />
449
+ <path
450
+ sodipodi:nodetypes="cc"
451
+ inkscape:connector-curvature="0"
452
+ id="path6971"
453
+ d="m 69.71968,808.24494 32.98201,-27.06255"
454
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
455
+ <path
456
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
457
+ d="M 83.828203,761.71789 97.334592,750.89867"
458
+ id="path6977"
459
+ inkscape:connector-curvature="0"
460
+ sodipodi:nodetypes="cc" />
461
+ </g>
462
+ <g
463
+ id="g4241"
464
+ transform="matrix(1,0,0,-1,0,1704.7746)">
465
+ <ellipse
466
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
467
+ id="ellipse4243"
468
+ cx="239.37206"
469
+ cy="679.60535"
470
+ rx="23.672094"
471
+ ry="18.317427" />
472
+ <ellipse
473
+ cy="822.87726"
474
+ cx="238.20503"
475
+ id="ellipse4245"
476
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
477
+ rx="23.672094"
478
+ ry="18.317427" />
479
+ <ellipse
480
+ cy="745.21582"
481
+ cx="242.50696"
482
+ id="ellipse4247"
483
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
484
+ rx="31.447418"
485
+ ry="24.333958" />
486
+ <ellipse
487
+ cy="679.60535"
488
+ cx="267.15402"
489
+ id="ellipse4249"
490
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
491
+ rx="23.672094"
492
+ ry="18.317427" />
493
+ <path
494
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:52.75361252;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
495
+ d="m 253.30864,812.34285 0,-129.17308"
496
+ id="path4251"
497
+ inkscape:connector-curvature="0" />
498
+ <ellipse
499
+ ry="8.3422585"
500
+ rx="8.6247368"
501
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
502
+ id="ellipse4253"
503
+ cx="253.30867"
504
+ cy="682.5849" />
505
+ <path
506
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:34.7848587;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
507
+ d="m 73.60657,743.8728 63.17505,-0.0606"
508
+ id="path4255"
509
+ inkscape:connector-curvature="0"
510
+ sodipodi:nodetypes="cc" />
511
+ <path
512
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:46.37981033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
513
+ d="M 120.32426,780.51518 70.301832,767.60936"
514
+ id="path4257"
515
+ inkscape:connector-curvature="0"
516
+ sodipodi:nodetypes="cc" />
517
+ <path
518
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:45;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
519
+ d="M 66.18363,814.60579 170.64531,728.25421"
520
+ id="path4259"
521
+ inkscape:connector-curvature="0"
522
+ sodipodi:nodetypes="cc" />
523
+ <ellipse
524
+ ry="18.317427"
525
+ rx="23.672094"
526
+ cy="679.60535"
527
+ cx="33.681141"
528
+ id="ellipse4261"
529
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
530
+ <ellipse
531
+ ry="18.317427"
532
+ rx="23.672094"
533
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
534
+ id="ellipse4263"
535
+ cx="61.463093"
536
+ cy="679.60535" />
537
+ <ellipse
538
+ ry="18.317427"
539
+ rx="23.672094"
540
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
541
+ id="ellipse4265"
542
+ cx="32.514114"
543
+ cy="822.87726" />
544
+ <path
545
+ inkscape:connector-curvature="0"
546
+ id="path4267"
547
+ d="m 47.617723,812.34285 0,-129.17308"
548
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:52.75361252;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
549
+ <ellipse
550
+ cy="682.5849"
551
+ cx="47.61776"
552
+ id="ellipse4269"
553
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
554
+ rx="8.6247368"
555
+ ry="8.3422585" />
556
+ <ellipse
557
+ ry="18.317427"
558
+ rx="23.672094"
559
+ cy="822.87726"
560
+ cx="63.019115"
561
+ id="ellipse4271"
562
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
563
+ <ellipse
564
+ ry="24.333958"
565
+ rx="31.447418"
566
+ cy="745.21582"
567
+ cx="58.561592"
568
+ id="ellipse4274"
569
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
570
+ <ellipse
571
+ ry="24.333958"
572
+ rx="31.447418"
573
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
574
+ id="ellipse4276"
575
+ cx="36.816036"
576
+ cy="745.21582" />
577
+ <path
578
+ inkscape:connector-curvature="0"
579
+ id="path4278"
580
+ d="m 47.617723,684.68605 0,36.2968"
581
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
582
+ <path
583
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
584
+ d="m 47.617713,772.7737 0,44.82497"
585
+ id="path4280"
586
+ inkscape:connector-curvature="0" />
587
+ <path
588
+ sodipodi:nodetypes="cc"
589
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
590
+ d="m 38.643557,757.67222 c 4.055553,-6.17768 14.924169,-5.91141 18.337365,0"
591
+ id="path4282"
592
+ inkscape:connector-curvature="0" />
593
+ <path
594
+ inkscape:connector-curvature="0"
595
+ id="path4284"
596
+ d="m 38.643557,740.13267 c 4.055553,-6.17769 14.924169,-5.91142 18.337365,0"
597
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
598
+ sodipodi:nodetypes="cc" />
599
+ <path
600
+ sodipodi:nodetypes="cc"
601
+ inkscape:connector-curvature="0"
602
+ id="path4286"
603
+ d="m 226.62683,743.8728 -63.17505,-0.0606"
604
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:34.7848587;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
605
+ <ellipse
606
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
607
+ id="ellipse4288"
608
+ cx="268.71002"
609
+ cy="822.87726"
610
+ rx="23.672094"
611
+ ry="18.317427" />
612
+ <path
613
+ sodipodi:nodetypes="cc"
614
+ inkscape:connector-curvature="0"
615
+ id="path4290"
616
+ d="M 234.04977,814.60579 129.58809,728.25421"
617
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:45;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
618
+ <ellipse
619
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
620
+ id="ellipse4292"
621
+ cx="264.2525"
622
+ cy="745.21582"
623
+ rx="31.447418"
624
+ ry="24.333958" />
625
+ <rect
626
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:40;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
627
+ id="rect4294"
628
+ width="55.249744"
629
+ height="74.040909"
630
+ x="122.3024"
631
+ y="708.35883"
632
+ rx="1.9463779"
633
+ ry="2.7680101" />
634
+ <path
635
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
636
+ d="m 115.50532,764.14365 6.98247,6.83299"
637
+ id="path4296"
638
+ inkscape:connector-curvature="0"
639
+ sodipodi:nodetypes="cc" />
640
+ <path
641
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
642
+ d="m 136.49462,753.27628 13.38324,-10.62367 0.0495,-14.82294"
643
+ id="path4298"
644
+ inkscape:connector-curvature="0"
645
+ sodipodi:nodetypes="ccc" />
646
+ <path
647
+ sodipodi:nodetypes="cc"
648
+ inkscape:connector-curvature="0"
649
+ id="path4300"
650
+ d="m 179.90914,780.51518 50.02243,-12.90582"
651
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:46.37981033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
652
+ <path
653
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
654
+ d="m 253.30864,684.68605 0,36.2968"
655
+ id="path4302"
656
+ inkscape:connector-curvature="0" />
657
+ <path
658
+ sodipodi:nodetypes="cc"
659
+ inkscape:connector-curvature="0"
660
+ id="path4304"
661
+ d="M 230.51372,808.24494 197.53171,781.18239"
662
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
663
+ <path
664
+ inkscape:connector-curvature="0"
665
+ id="path4306"
666
+ d="m 253.30863,772.7737 0,44.82497"
667
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
668
+ <path
669
+ inkscape:connector-curvature="0"
670
+ id="path4308"
671
+ d="m 244.33447,757.67222 c 4.05555,-6.17768 14.92417,-5.91141 18.33737,0"
672
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
673
+ sodipodi:nodetypes="cc" />
674
+ <path
675
+ sodipodi:nodetypes="cc"
676
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
677
+ d="m 244.33447,740.13267 c 4.05555,-6.17769 14.92417,-5.91142 18.33737,0"
678
+ id="path4310"
679
+ inkscape:connector-curvature="0" />
680
+ <path
681
+ sodipodi:nodetypes="cc"
682
+ inkscape:connector-curvature="0"
683
+ id="path4312"
684
+ d="m 184.65325,764.06883 -6.83281,6.98263"
685
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
686
+ <path
687
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
688
+ d="M 216.4052,761.71789 202.89881,750.89867"
689
+ id="path4314"
690
+ inkscape:connector-curvature="0"
691
+ sodipodi:nodetypes="cc" />
692
+ <path
693
+ sodipodi:nodetypes="ccc"
694
+ inkscape:connector-curvature="0"
695
+ id="path4316"
696
+ d="m 163.73878,753.27628 -13.38324,-10.62367 -0.0494,-14.82294"
697
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
698
+ <path
699
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
700
+ d="m 69.71968,808.24494 32.98201,-27.06255"
701
+ id="path4318"
702
+ inkscape:connector-curvature="0"
703
+ sodipodi:nodetypes="cc" />
704
+ <path
705
+ sodipodi:nodetypes="cc"
706
+ inkscape:connector-curvature="0"
707
+ id="path4320"
708
+ d="M 83.828203,761.71789 97.334592,750.89867"
709
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
710
+ </g>
711
+ </g>
712
+ </svg>